2013-11-20 21:33:46 -05:00
|
|
|
/*
|
|
|
|
* Kodak 605 Photo Printer CUPS backend -- libusb-1.0 version
|
|
|
|
*
|
2015-01-05 21:39:22 -05:00
|
|
|
* (c) 2013-2015 Solomon Peachy <pizza@shaftnet.org>
|
2013-11-20 21:33:46 -05:00
|
|
|
*
|
|
|
|
* The latest version of this program can be found at:
|
2014-01-13 05:41:48 -05:00
|
|
|
*
|
2013-11-20 21:33:46 -05:00
|
|
|
* http://git.shaftnet.org/cgit/selphy_print.git
|
2014-01-13 05:41:48 -05:00
|
|
|
*
|
2013-11-20 21:33:46 -05:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 3 of the License, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* [http://www.gnu.org/licenses/gpl-3.0.html]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
2015-08-13 21:09:56 -04:00
|
|
|
#define BACKEND kodak605_backend
|
|
|
|
|
2013-11-20 21:33:46 -05:00
|
|
|
#include "backend_common.h"
|
|
|
|
|
|
|
|
#define USB_VID_KODAK 0x040A
|
|
|
|
#define USB_PID_KODAK_605 0x402E
|
|
|
|
|
2015-08-25 18:11:41 -04:00
|
|
|
/* Command Header */
|
|
|
|
struct kodak605_cmd {
|
|
|
|
uint16_t cmd; /* LE */
|
|
|
|
uint16_t len; /* LE, not counting this header */
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
struct kodak605_sts_hdr {
|
|
|
|
uint8_t result; /* RESULT_* */
|
|
|
|
uint8_t unk_1[5]; /* 00 00 00 00 00 */
|
|
|
|
uint8_t sts_1; /* 01/02 */
|
|
|
|
uint8_t sts_2; /* 00/61->6b ?? temperature? */
|
|
|
|
uint16_t length; /* LE, not counting this header */
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
#define RESULT_SUCCESS 0x01
|
|
|
|
#define RESULT_FAIL 0x02
|
|
|
|
|
2014-04-19 11:34:07 -04:00
|
|
|
/* Media structure */
|
|
|
|
struct kodak605_medium {
|
|
|
|
uint8_t index;
|
|
|
|
uint16_t cols; /* LE */
|
|
|
|
uint16_t rows; /* LE */
|
2015-08-25 18:11:41 -04:00
|
|
|
uint8_t type; /* MEDIA_TYPE_* */
|
|
|
|
uint8_t unk[4]; /* 00 00 00 00 */
|
2014-04-19 11:34:07 -04:00
|
|
|
} __attribute__((packed));
|
|
|
|
|
2015-08-25 18:11:41 -04:00
|
|
|
#define MEDIA_TYPE_UNKNOWN 0x00
|
|
|
|
#define MEDIA_TYPE_PAPER 0x01
|
|
|
|
|
2014-04-19 11:34:07 -04:00
|
|
|
struct kodak605_media_list {
|
2015-08-25 18:11:41 -04:00
|
|
|
struct kodak605_sts_hdr hdr;
|
|
|
|
uint8_t unk; /* always seen 02 */
|
|
|
|
uint8_t type; /* KODAK_MEDIA_* */
|
2014-04-19 11:34:07 -04:00
|
|
|
uint8_t count;
|
|
|
|
struct kodak605_medium entries[];
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
2015-08-25 18:11:41 -04:00
|
|
|
#define KODAK_MEDIA_6R 0x0b
|
|
|
|
#define KODAK_MEDIA_NONE 0x00
|
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
#define MAX_MEDIA_LEN 128
|
|
|
|
|
|
|
|
/* Status response */
|
|
|
|
struct kodak605_status {
|
2015-08-25 18:11:41 -04:00
|
|
|
struct kodak605_sts_hdr hdr;
|
|
|
|
/*@10*/ uint32_t ctr_life; /* Lifetime Prints */
|
|
|
|
uint32_t ctr_maint; /* Prints since last maintainence */
|
|
|
|
uint32_t ctr_media; /* Prints on current media */
|
|
|
|
uint32_t ctr_cut; /* Cutter Actuations */
|
|
|
|
uint32_t ctr_head; /* Prints on current head */
|
|
|
|
/*@30*/ uint8_t donor; /* Donor Percentage remaining */
|
2015-08-18 20:00:53 -04:00
|
|
|
/*@31*/ uint8_t null_1[7]; /* 00 00 00 00 00 00 00 */
|
2015-08-25 18:11:41 -04:00
|
|
|
/*@38*/ uint8_t b1_id; /* 00/01/02 */
|
|
|
|
uint16_t b1_remain;
|
|
|
|
uint16_t b1_complete;
|
|
|
|
uint16_t b1_total;
|
|
|
|
/*@45*/ uint8_t b1_sts; /* See BANK_STATUS_* */
|
|
|
|
uint8_t b2_id; /* 00/01/02 */
|
|
|
|
uint16_t b2_remain;
|
|
|
|
uint16_t b2_complete;
|
|
|
|
uint16_t b2_total;
|
|
|
|
/*@53*/ uint8_t b2_sts; /* see BANK_STATUS_* */
|
|
|
|
/*@54*/ uint8_t id; /* current job id ( 00/01/02 seen ) */
|
|
|
|
/*@55*/ uint16_t remain; /* in current job */
|
|
|
|
/*@57*/ uint16_t complete; /* in current job */
|
|
|
|
/*@59*/ uint16_t total; /* in current job */
|
|
|
|
/*@61*/ uint8_t null_2[9]; /* 00 00 00 00 00 00 00 00 00 */
|
|
|
|
/*@70*/ uint8_t unk_12[6]; /* 01 00 00 00 00 00 */
|
2015-08-18 00:13:50 -04:00
|
|
|
} __attribute__((packed));
|
|
|
|
|
2013-11-20 21:33:46 -05:00
|
|
|
/* File header */
|
|
|
|
struct kodak605_hdr {
|
|
|
|
uint8_t hdr[4]; /* 01 40 0a 00 */
|
2015-08-25 20:58:57 -04:00
|
|
|
uint8_t jobid;
|
2015-08-25 18:11:41 -04:00
|
|
|
uint16_t copies; /* LE, 0x0001 or more */
|
|
|
|
uint16_t columns; /* LE, always 0x0734 */
|
|
|
|
uint16_t rows; /* LE */
|
2014-01-13 05:41:48 -05:00
|
|
|
uint8_t media; /* 0x03 for 6x8, 0x01 for 6x4 */
|
2013-11-20 21:33:46 -05:00
|
|
|
uint8_t laminate; /* 0x02 to laminate, 0x01 for not */
|
2015-08-25 20:58:57 -04:00
|
|
|
uint8_t mode; /* Print mode -- 0x00, 0x01 seen */
|
2013-11-20 21:33:46 -05:00
|
|
|
} __attribute__((packed));
|
|
|
|
|
2015-08-25 18:11:41 -04:00
|
|
|
#define BANK_STATUS_FREE 0x00
|
|
|
|
#define BANK_STATUS_XFER 0x01
|
|
|
|
#define BANK_STATUS_FULL 0x02
|
|
|
|
#define BANK_STATUS_PRINTING 0x12
|
|
|
|
|
|
|
|
static char *bank_statuses(uint8_t v)
|
|
|
|
{
|
|
|
|
switch (v) {
|
|
|
|
case BANK_STATUS_FREE:
|
|
|
|
return "Free";
|
|
|
|
case BANK_STATUS_XFER:
|
|
|
|
return "Xfer";
|
|
|
|
case BANK_STATUS_FULL:
|
|
|
|
return "Full";
|
|
|
|
case BANK_STATUS_PRINTING:
|
|
|
|
return "Printing";
|
|
|
|
default:
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-20 21:33:46 -05:00
|
|
|
#define CMDBUF_LEN 4
|
|
|
|
|
|
|
|
/* Private data stucture */
|
|
|
|
struct kodak605_ctx {
|
|
|
|
struct libusb_device_handle *dev;
|
|
|
|
uint8_t endp_up;
|
|
|
|
uint8_t endp_down;
|
2015-08-12 22:56:29 -04:00
|
|
|
int type;
|
2015-08-25 18:11:41 -04:00
|
|
|
uint8_t jobid;
|
2013-11-20 21:33:46 -05:00
|
|
|
|
|
|
|
struct kodak605_hdr hdr;
|
2015-08-24 17:27:30 -04:00
|
|
|
|
|
|
|
struct kodak605_media_list *media;
|
|
|
|
|
2013-11-20 21:33:46 -05:00
|
|
|
uint8_t *databuf;
|
|
|
|
int datalen;
|
|
|
|
};
|
|
|
|
|
2015-08-24 17:27:30 -04:00
|
|
|
static int kodak605_get_media(struct kodak605_ctx *ctx, struct kodak605_media_list *media)
|
|
|
|
{
|
|
|
|
uint8_t cmdbuf[4];
|
|
|
|
|
|
|
|
int ret, num = 0;
|
|
|
|
|
|
|
|
/* Send Media Query */
|
|
|
|
cmdbuf[0] = 0x02;
|
|
|
|
cmdbuf[1] = 0x00;
|
|
|
|
cmdbuf[2] = 0x00;
|
|
|
|
cmdbuf[3] = 0x00;
|
|
|
|
if ((ret = send_data(ctx->dev, ctx->endp_down,
|
|
|
|
cmdbuf, sizeof(cmdbuf))))
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* Read in the printer status */
|
|
|
|
ret = read_data(ctx->dev, ctx->endp_up,
|
|
|
|
(uint8_t*) media, MAX_MEDIA_LEN, &num);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (num < (int)sizeof(*media)) {
|
|
|
|
ERROR("Short Read! (%d/%d)\n", num, (int)sizeof(*media));
|
2015-08-25 18:11:41 -04:00
|
|
|
return CUPS_BACKEND_FAILED;
|
2015-08-24 17:27:30 -04:00
|
|
|
}
|
|
|
|
|
2015-08-25 18:11:41 -04:00
|
|
|
if (media->hdr.result != RESULT_SUCCESS) {
|
|
|
|
ERROR("Unexpected response from media query (%x)!\n", media->hdr.result);
|
|
|
|
return CUPS_BACKEND_FAILED;
|
|
|
|
}
|
|
|
|
|
2015-08-24 17:27:30 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-20 21:33:46 -05:00
|
|
|
static void *kodak605_init(void)
|
|
|
|
{
|
|
|
|
struct kodak605_ctx *ctx = malloc(sizeof(struct kodak605_ctx));
|
2015-06-23 20:32:41 -04:00
|
|
|
if (!ctx) {
|
|
|
|
ERROR("Memory Allocation Failure!\n");
|
2013-11-20 21:33:46 -05:00
|
|
|
return NULL;
|
2015-06-23 20:32:41 -04:00
|
|
|
}
|
2013-11-20 21:33:46 -05:00
|
|
|
memset(ctx, 0, sizeof(struct kodak605_ctx));
|
|
|
|
|
2015-08-24 17:27:30 -04:00
|
|
|
ctx->media = malloc(MAX_MEDIA_LEN);
|
|
|
|
|
|
|
|
ctx->type = P_ANY;
|
|
|
|
|
2013-11-20 21:33:46 -05:00
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
2014-01-13 05:41:48 -05:00
|
|
|
static void kodak605_attach(void *vctx, struct libusb_device_handle *dev,
|
2013-11-20 21:33:46 -05:00
|
|
|
uint8_t endp_up, uint8_t endp_down, uint8_t jobid)
|
|
|
|
{
|
|
|
|
struct kodak605_ctx *ctx = vctx;
|
|
|
|
struct libusb_device *device;
|
|
|
|
struct libusb_device_descriptor desc;
|
|
|
|
|
2015-08-25 18:11:41 -04:00
|
|
|
ctx->dev = dev;
|
2013-11-20 21:33:46 -05:00
|
|
|
ctx->endp_up = endp_up;
|
|
|
|
ctx->endp_down = endp_down;
|
|
|
|
|
|
|
|
device = libusb_get_device(dev);
|
|
|
|
libusb_get_device_descriptor(device, &desc);
|
2015-08-25 18:11:41 -04:00
|
|
|
|
2015-08-12 22:56:29 -04:00
|
|
|
ctx->type = lookup_printer_type(&kodak605_backend,
|
2015-08-25 18:11:41 -04:00
|
|
|
desc.idVendor, desc.idProduct);
|
|
|
|
|
|
|
|
/* Make sure jobid is sane */
|
|
|
|
ctx->jobid = (jobid & 0x7f) + 1;
|
2015-08-24 17:27:30 -04:00
|
|
|
|
|
|
|
/* Query media info */
|
|
|
|
if (kodak605_get_media(ctx, ctx->media)) {
|
|
|
|
ERROR("Can't query media\n");
|
|
|
|
}
|
2013-11-20 21:33:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void kodak605_teardown(void *vctx) {
|
|
|
|
struct kodak605_ctx *ctx = vctx;
|
|
|
|
|
|
|
|
if (!ctx)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ctx->databuf)
|
|
|
|
free(ctx->databuf);
|
|
|
|
free(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int kodak605_read_parse(void *vctx, int data_fd) {
|
|
|
|
struct kodak605_ctx *ctx = vctx;
|
2014-01-13 18:30:30 -05:00
|
|
|
int ret;
|
2013-11-20 21:33:46 -05:00
|
|
|
|
|
|
|
if (!ctx)
|
2014-04-25 11:34:53 -04:00
|
|
|
return CUPS_BACKEND_CANCEL;
|
2013-11-20 21:33:46 -05:00
|
|
|
|
2014-01-21 20:34:00 -05:00
|
|
|
if (ctx->databuf) {
|
2014-01-17 22:54:25 -05:00
|
|
|
free(ctx->databuf);
|
2014-01-21 20:34:00 -05:00
|
|
|
ctx->databuf = NULL;
|
|
|
|
}
|
2014-01-17 22:54:25 -05:00
|
|
|
|
2013-11-20 21:33:46 -05:00
|
|
|
/* Read in then validate header */
|
2014-01-13 18:30:30 -05:00
|
|
|
ret = read(data_fd, &ctx->hdr, sizeof(ctx->hdr));
|
|
|
|
if (ret < 0 || ret != sizeof(ctx->hdr)) {
|
2014-01-20 19:41:52 -05:00
|
|
|
if (ret == 0)
|
2014-04-25 11:34:53 -04:00
|
|
|
return CUPS_BACKEND_CANCEL;
|
2014-01-13 18:30:30 -05:00
|
|
|
ERROR("Read failed (%d/%d/%d)\n",
|
|
|
|
ret, 0, (int)sizeof(ctx->hdr));
|
|
|
|
perror("ERROR: Read failed");
|
2014-04-25 11:34:53 -04:00
|
|
|
return CUPS_BACKEND_CANCEL;
|
2014-01-13 18:30:30 -05:00
|
|
|
}
|
|
|
|
|
2013-11-20 21:33:46 -05:00
|
|
|
if (ctx->hdr.hdr[0] != 0x01 ||
|
|
|
|
ctx->hdr.hdr[1] != 0x40 ||
|
|
|
|
ctx->hdr.hdr[2] != 0x0a ||
|
|
|
|
ctx->hdr.hdr[3] != 0x00) {
|
|
|
|
ERROR("Unrecognized data format!\n");
|
2014-04-25 11:34:53 -04:00
|
|
|
return CUPS_BACKEND_CANCEL;
|
2013-11-20 21:33:46 -05:00
|
|
|
}
|
|
|
|
|
2013-11-21 22:05:32 -05:00
|
|
|
ctx->datalen = le16_to_cpu(ctx->hdr.rows) * le16_to_cpu(ctx->hdr.columns) * 3;
|
2013-11-20 21:33:46 -05:00
|
|
|
ctx->databuf = malloc(ctx->datalen);
|
|
|
|
if (!ctx->databuf) {
|
|
|
|
ERROR("Memory allocation failure!\n");
|
2014-04-25 11:34:53 -04:00
|
|
|
return CUPS_BACKEND_FAILED;
|
2013-11-20 21:33:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
int remain = ctx->datalen;
|
|
|
|
uint8_t *ptr = ctx->databuf;
|
|
|
|
do {
|
|
|
|
ret = read(data_fd, ptr, remain);
|
|
|
|
if (ret < 0) {
|
2014-01-13 05:41:48 -05:00
|
|
|
ERROR("Read failed (%d/%d/%d)\n",
|
2013-11-20 21:33:46 -05:00
|
|
|
ret, remain, ctx->datalen);
|
|
|
|
perror("ERROR: Read failed");
|
2014-04-25 11:34:53 -04:00
|
|
|
return CUPS_BACKEND_CANCEL;
|
2013-11-20 21:33:46 -05:00
|
|
|
}
|
|
|
|
ptr += ret;
|
|
|
|
remain -= ret;
|
|
|
|
} while (remain);
|
|
|
|
}
|
|
|
|
|
2014-04-25 11:34:53 -04:00
|
|
|
return CUPS_BACKEND_OK;
|
2013-11-20 21:33:46 -05:00
|
|
|
}
|
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
static int kodak605_get_status(struct kodak605_ctx *ctx, struct kodak605_status *sts)
|
|
|
|
{
|
|
|
|
uint8_t cmdbuf[4];
|
2013-11-20 21:33:46 -05:00
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
int ret, num = 0;
|
2013-11-20 21:33:46 -05:00
|
|
|
|
|
|
|
/* Send Status Query */
|
|
|
|
cmdbuf[0] = 0x01;
|
|
|
|
cmdbuf[1] = 0x00;
|
|
|
|
cmdbuf[2] = 0x00;
|
|
|
|
cmdbuf[3] = 0x00;
|
|
|
|
if ((ret = send_data(ctx->dev, ctx->endp_down,
|
2015-08-18 00:13:50 -04:00
|
|
|
cmdbuf, sizeof(cmdbuf))))
|
|
|
|
return ret;
|
2013-11-20 21:33:46 -05:00
|
|
|
|
|
|
|
/* Read in the printer status */
|
2013-12-21 22:55:33 -05:00
|
|
|
ret = read_data(ctx->dev, ctx->endp_up,
|
2015-08-18 00:13:50 -04:00
|
|
|
(uint8_t*) sts, sizeof(*sts), &num);
|
2013-12-21 22:55:33 -05:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2014-01-13 05:41:48 -05:00
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
if (num < (int)sizeof(*sts)) {
|
|
|
|
ERROR("Short Read! (%d/%d)\n", num, (int)sizeof(*sts));
|
2014-04-25 11:34:53 -04:00
|
|
|
return CUPS_BACKEND_FAILED;
|
2013-11-20 21:33:46 -05:00
|
|
|
}
|
|
|
|
|
2015-08-25 18:11:41 -04:00
|
|
|
if (sts->hdr.result != RESULT_SUCCESS) {
|
|
|
|
ERROR("Unexpected response from status query (%x)!\n", sts->hdr.result);
|
2014-04-25 11:34:53 -04:00
|
|
|
return CUPS_BACKEND_FAILED;
|
2013-11-20 21:33:46 -05:00
|
|
|
}
|
2015-08-25 18:11:41 -04:00
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
return 0;
|
|
|
|
}
|
2013-11-20 21:33:46 -05:00
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
static int kodak605_main_loop(void *vctx, int copies) {
|
|
|
|
struct kodak605_ctx *ctx = vctx;
|
2013-11-20 21:33:46 -05:00
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
struct kodak605_status sts;
|
2013-11-23 14:45:56 -05:00
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
int num, ret;
|
2013-11-20 21:33:46 -05:00
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
if (!ctx)
|
|
|
|
return CUPS_BACKEND_FAILED;
|
2013-11-20 21:33:46 -05:00
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
/* Printer handles generating copies.. */
|
2015-08-25 18:11:41 -04:00
|
|
|
if (le16_to_cpu(ctx->hdr.copies) < copies)
|
|
|
|
ctx->hdr.copies = cpu_to_le16(copies);
|
2015-08-18 00:13:50 -04:00
|
|
|
|
|
|
|
/* Validate against supported media list */
|
2015-08-24 17:27:30 -04:00
|
|
|
for (num = 0 ; num < ctx->media->count; num++) {
|
|
|
|
if (ctx->media->entries[num].rows == ctx->hdr.rows &&
|
|
|
|
ctx->media->entries[num].cols == ctx->hdr.columns)
|
2013-11-20 21:33:46 -05:00
|
|
|
break;
|
2015-08-18 00:13:50 -04:00
|
|
|
}
|
2015-08-24 17:27:30 -04:00
|
|
|
if (num == ctx->media->count) {
|
2015-08-18 00:13:50 -04:00
|
|
|
ERROR("Print size unsupported by media!\n");
|
|
|
|
return CUPS_BACKEND_HOLD;
|
|
|
|
}
|
2015-08-25 18:11:41 -04:00
|
|
|
|
|
|
|
/* Use specified jobid */
|
|
|
|
ctx->hdr.jobid = ctx->jobid;
|
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
INFO("Waiting for printer idle\n");
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
if ((ret = kodak605_get_status(ctx, &sts)))
|
2014-04-25 11:34:53 -04:00
|
|
|
return CUPS_BACKEND_FAILED;
|
2013-11-20 21:33:46 -05:00
|
|
|
|
2015-08-25 18:11:41 -04:00
|
|
|
// XXX check for errors
|
|
|
|
|
|
|
|
/* Wait for a free buffer */
|
|
|
|
if (sts.b1_sts == BANK_STATUS_FREE ||
|
|
|
|
sts.b2_sts == BANK_STATUS_FREE) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
sleep(1);
|
|
|
|
}
|
2013-11-20 21:33:46 -05:00
|
|
|
|
2015-08-18 00:39:13 -04:00
|
|
|
{
|
|
|
|
INFO("Sending image header\n");
|
|
|
|
if ((ret = send_data(ctx->dev, ctx->endp_down,
|
|
|
|
(uint8_t*)&ctx->hdr, sizeof(ctx->hdr))))
|
|
|
|
return CUPS_BACKEND_FAILED;
|
|
|
|
|
2015-08-25 18:11:41 -04:00
|
|
|
struct kodak605_sts_hdr resp;
|
2015-08-18 00:39:13 -04:00
|
|
|
if ((ret = read_data(ctx->dev, ctx->endp_up,
|
2015-08-25 18:11:41 -04:00
|
|
|
(uint8_t*) &resp, sizeof(resp), &num)))
|
2015-08-18 00:39:13 -04:00
|
|
|
return CUPS_BACKEND_FAILED;
|
2015-08-25 18:11:41 -04:00
|
|
|
|
|
|
|
if (resp.result != RESULT_SUCCESS) {
|
|
|
|
ERROR("Unexpected response from print command (%x)!\n", resp.result);
|
2015-08-18 00:39:13 -04:00
|
|
|
return CUPS_BACKEND_FAILED;
|
|
|
|
}
|
2015-08-25 18:11:41 -04:00
|
|
|
// XXX what about resp.sts1 or resp.sts2?
|
2015-08-18 00:39:13 -04:00
|
|
|
}
|
2015-08-18 00:13:50 -04:00
|
|
|
sleep(1);
|
2015-08-25 18:11:41 -04:00
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
INFO("Sending image data\n");
|
|
|
|
if ((ret = send_data(ctx->dev, ctx->endp_down,
|
|
|
|
ctx->databuf, ctx->datalen)))
|
|
|
|
return CUPS_BACKEND_FAILED;
|
2013-11-20 21:33:46 -05:00
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
INFO("Image data sent\n");
|
|
|
|
|
|
|
|
INFO("Waiting for printer to acknowledge completion\n");
|
2015-08-25 18:11:41 -04:00
|
|
|
do {
|
|
|
|
sleep(1);
|
2015-08-18 00:13:50 -04:00
|
|
|
if ((ret = kodak605_get_status(ctx, &sts)))
|
|
|
|
return CUPS_BACKEND_FAILED;
|
|
|
|
|
2015-08-25 18:11:41 -04:00
|
|
|
// XXX check for errors ?
|
|
|
|
|
|
|
|
/* Wait for completion */
|
|
|
|
if (sts.b1_id == ctx->jobid && sts.b1_complete == sts.b1_total)
|
|
|
|
break;
|
|
|
|
if (sts.b2_id == ctx->jobid && sts.b2_complete == sts.b2_total)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (fast_return) {
|
|
|
|
INFO("Fast return mode enabled.\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while(1);
|
|
|
|
|
2015-08-20 23:13:52 -04:00
|
|
|
INFO("Print complete\n");
|
2013-11-20 21:33:46 -05:00
|
|
|
|
2014-04-25 11:34:53 -04:00
|
|
|
return CUPS_BACKEND_OK;
|
2013-11-20 21:33:46 -05:00
|
|
|
}
|
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
static void kodak605_dump_status(struct kodak605_status *sts)
|
2013-11-21 09:30:50 -05:00
|
|
|
{
|
2015-08-25 18:11:41 -04:00
|
|
|
INFO("Bank 1: %s Job %03u @ %03u/%03u\n",
|
|
|
|
bank_statuses(sts->b1_sts), sts->b1_id,
|
|
|
|
le16_to_cpu(sts->b1_complete), le16_to_cpu(sts->b1_complete));
|
|
|
|
INFO("Bank 2: %s Job %03u @ %03u/%03u\n",
|
|
|
|
bank_statuses(sts->b2_sts), sts->b2_id,
|
|
|
|
le16_to_cpu(sts->b2_complete), le16_to_cpu(sts->b2_complete));
|
|
|
|
|
|
|
|
INFO("Lifetime prints : %d\n", be32_to_cpu(sts->ctr_life));
|
|
|
|
INFO("Cutter actuations : %d\n", be32_to_cpu(sts->ctr_cut));
|
|
|
|
INFO("Head prints : %d\n", be32_to_cpu(sts->ctr_head));
|
|
|
|
INFO("Media prints : %d\n", be32_to_cpu(sts->ctr_media));
|
|
|
|
INFO("Donor : %d%%\n", sts->donor);
|
2013-11-21 09:30:50 -05:00
|
|
|
}
|
|
|
|
|
2014-04-19 11:34:07 -04:00
|
|
|
static void kodak605_dump_mediainfo(struct kodak605_media_list *media)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2015-08-25 18:11:41 -04:00
|
|
|
if (media->type == KODAK_MEDIA_NONE) {
|
|
|
|
DEBUG("No Media Loaded\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (media->type == KODAK_MEDIA_6R) {
|
|
|
|
DEBUG("Media type: 6R (Kodak 197-4096 or equivalent)\n");
|
|
|
|
} else {
|
|
|
|
DEBUG("Media type %02x (unknown, please report!)\n", media->type);
|
|
|
|
}
|
|
|
|
|
2014-04-19 11:34:07 -04:00
|
|
|
DEBUG("Legal print sizes:\n");
|
|
|
|
for (i = 0 ; i < media->count ; i++) {
|
2015-08-25 18:11:41 -04:00
|
|
|
DEBUG("\t%d: %dx%d\n", i,
|
2014-04-19 11:34:07 -04:00
|
|
|
le16_to_cpu(media->entries[i].cols),
|
|
|
|
le16_to_cpu(media->entries[i].rows));
|
|
|
|
}
|
|
|
|
DEBUG("\n");
|
|
|
|
}
|
|
|
|
|
2013-11-24 11:01:44 -05:00
|
|
|
#define UPDATE_SIZE 1536
|
|
|
|
static int kodak605_set_tonecurve(struct kodak605_ctx *ctx, char *fname)
|
|
|
|
{
|
|
|
|
libusb_device_handle *dev = ctx->dev;
|
|
|
|
uint8_t endp_down = ctx->endp_down;
|
|
|
|
uint8_t endp_up = ctx->endp_up;
|
|
|
|
|
|
|
|
uint8_t cmdbuf[16];
|
|
|
|
uint8_t respbuf[16];
|
|
|
|
int ret, num = 0;
|
|
|
|
|
|
|
|
uint16_t *data = malloc(UPDATE_SIZE);
|
|
|
|
|
|
|
|
INFO("Set Tone Curve from '%s'\n", fname);
|
|
|
|
|
|
|
|
/* Read in file */
|
|
|
|
int tc_fd = open(fname, O_RDONLY);
|
2014-02-11 20:11:33 -05:00
|
|
|
if (tc_fd < 0) {
|
|
|
|
ret = -1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (read(tc_fd, data, UPDATE_SIZE) != UPDATE_SIZE) {
|
|
|
|
ret = 4;
|
|
|
|
goto done;
|
|
|
|
}
|
2013-11-24 11:01:44 -05:00
|
|
|
close(tc_fd);
|
|
|
|
|
|
|
|
/* Byteswap data to printer's format */
|
|
|
|
for (ret = 0; ret < (UPDATE_SIZE/2) ; ret++) {
|
|
|
|
data[ret] = cpu_to_le16(be16_to_cpu(data[ret]));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initial Request */
|
|
|
|
cmdbuf[0] = 0x04;
|
|
|
|
cmdbuf[1] = 0xc0;
|
|
|
|
cmdbuf[2] = 0x0a;
|
|
|
|
cmdbuf[3] = 0x00;
|
|
|
|
cmdbuf[4] = 0x03;
|
|
|
|
cmdbuf[5] = 0x01;
|
|
|
|
cmdbuf[6] = 0x00;
|
|
|
|
cmdbuf[7] = 0x00;
|
|
|
|
cmdbuf[8] = 0x00;
|
|
|
|
cmdbuf[9] = 0x00;
|
|
|
|
cmdbuf[10] = 0x00; /* 00 06 in LE means 1536 bytes */
|
|
|
|
cmdbuf[11] = 0x06;
|
|
|
|
cmdbuf[12] = 0x00;
|
|
|
|
cmdbuf[13] = 0x00;
|
|
|
|
|
|
|
|
if ((ret = send_data(dev, endp_down,
|
|
|
|
cmdbuf, 14)))
|
2014-02-11 20:11:33 -05:00
|
|
|
goto done;
|
2013-11-24 11:01:44 -05:00
|
|
|
|
|
|
|
/* Get response back */
|
2013-12-21 22:55:33 -05:00
|
|
|
ret = read_data(dev, endp_up,
|
|
|
|
respbuf, sizeof(respbuf), &num);
|
|
|
|
if (ret < 0)
|
2014-02-11 20:11:33 -05:00
|
|
|
goto done;
|
2013-11-24 11:01:44 -05:00
|
|
|
|
2013-12-21 22:55:33 -05:00
|
|
|
if (num != 10) {
|
|
|
|
ERROR("Short Read! (%d/%d)\n", num, 10);
|
2014-02-11 20:11:33 -05:00
|
|
|
ret = 4;
|
|
|
|
goto done;
|
2013-11-24 11:01:44 -05:00
|
|
|
}
|
2013-12-21 22:55:33 -05:00
|
|
|
|
|
|
|
/* Send the data over! */
|
|
|
|
ret = send_data(dev, endp_up,
|
|
|
|
(uint8_t*)data, sizeof(data));
|
2014-01-13 05:41:48 -05:00
|
|
|
|
2014-02-11 20:11:33 -05:00
|
|
|
done:
|
2013-11-24 11:01:44 -05:00
|
|
|
/* We're done */
|
|
|
|
free(data);
|
2013-12-21 22:55:33 -05:00
|
|
|
return ret;
|
2013-11-24 11:01:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-10 20:10:36 -05:00
|
|
|
static void kodak605_cmdline(void)
|
2013-11-21 09:30:50 -05:00
|
|
|
{
|
2014-02-10 20:10:36 -05:00
|
|
|
DEBUG("\t\t[ -C filename ] # Set tone curve\n");
|
|
|
|
DEBUG("\t\t[ -m ] # Query media\n");
|
|
|
|
DEBUG("\t\t[ -s ] # Query status\n");
|
2013-11-21 09:30:50 -05:00
|
|
|
}
|
|
|
|
|
2014-02-10 20:10:36 -05:00
|
|
|
static int kodak605_cmdline_arg(void *vctx, int argc, char **argv)
|
2013-11-21 09:30:50 -05:00
|
|
|
{
|
|
|
|
struct kodak605_ctx *ctx = vctx;
|
2014-02-11 22:45:14 -05:00
|
|
|
int i, j = 0;
|
2014-02-10 20:10:36 -05:00
|
|
|
|
2015-08-24 17:28:10 -04:00
|
|
|
if (!ctx)
|
|
|
|
return -1;
|
|
|
|
|
2015-08-13 21:09:56 -04:00
|
|
|
while ((i = getopt(argc, argv, GETOPT_LIST_GLOBAL "C:ms")) >= 0) {
|
2014-02-10 20:10:36 -05:00
|
|
|
switch(i) {
|
2015-08-13 21:09:56 -04:00
|
|
|
GETOPT_PROCESS_GLOBAL
|
2014-02-10 20:10:36 -05:00
|
|
|
case 'C':
|
2015-08-24 17:28:10 -04:00
|
|
|
j = kodak605_set_tonecurve(ctx, optarg);
|
|
|
|
break;
|
2014-02-10 20:10:36 -05:00
|
|
|
case 'm':
|
2015-08-24 17:28:10 -04:00
|
|
|
kodak605_dump_mediainfo(ctx->media);
|
|
|
|
break;
|
|
|
|
case 's': {
|
|
|
|
struct kodak605_status sts;
|
|
|
|
|
|
|
|
j = kodak605_get_status(ctx, &sts);
|
|
|
|
if (!j)
|
|
|
|
kodak605_dump_status(&sts);
|
|
|
|
break;
|
|
|
|
}
|
2014-02-10 20:10:36 -05:00
|
|
|
default:
|
|
|
|
break; /* Ignore completely */
|
|
|
|
}
|
2014-02-11 22:45:14 -05:00
|
|
|
|
|
|
|
if (j) return j;
|
2014-02-10 20:10:36 -05:00
|
|
|
}
|
2013-11-21 09:30:50 -05:00
|
|
|
|
2014-02-10 20:10:36 -05:00
|
|
|
return 0;
|
2013-11-21 09:30:50 -05:00
|
|
|
}
|
|
|
|
|
2013-11-20 21:33:46 -05:00
|
|
|
/* Exported */
|
|
|
|
struct dyesub_backend kodak605_backend = {
|
|
|
|
.name = "Kodak 605",
|
2015-08-25 18:11:41 -04:00
|
|
|
.version = "0.24",
|
2013-11-20 21:33:46 -05:00
|
|
|
.uri_prefix = "kodak605",
|
2013-11-21 09:30:50 -05:00
|
|
|
.cmdline_usage = kodak605_cmdline,
|
|
|
|
.cmdline_arg = kodak605_cmdline_arg,
|
2013-11-20 21:33:46 -05:00
|
|
|
.init = kodak605_init,
|
|
|
|
.attach = kodak605_attach,
|
|
|
|
.teardown = kodak605_teardown,
|
|
|
|
.read_parse = kodak605_read_parse,
|
|
|
|
.main_loop = kodak605_main_loop,
|
|
|
|
.devices = {
|
|
|
|
{ USB_VID_KODAK, USB_PID_KODAK_605, P_KODAK_605, "Kodak"},
|
|
|
|
{ 0, 0, 0, ""}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Kodak 605 data format
|
|
|
|
|
|
|
|
Spool file consists of 14-byte header followed by plane-interleaved BGR data.
|
|
|
|
Native printer resolution is 1844 pixels per row, and 1240 or 2434 rows.
|
|
|
|
|
2015-08-25 20:58:57 -04:00
|
|
|
All fields are LITTLE ENDIAN unless otherwise specified
|
|
|
|
|
2013-11-20 21:33:46 -05:00
|
|
|
Header:
|
|
|
|
|
|
|
|
01 40 0a 00 Fixed header
|
2015-08-25 20:58:57 -04:00
|
|
|
XX Job ID
|
|
|
|
CC CC Number of copies (1-???)
|
|
|
|
WW WW Number of columns (Fixed at 1844)
|
|
|
|
HH HH Number of rows (1240 or 2434)
|
2014-01-13 05:41:48 -05:00
|
|
|
DD 0x01 (4x6) 0x03 (8x6)
|
2013-11-20 21:33:46 -05:00
|
|
|
LL Laminate, 0x01 (off) or 0x02 (on)
|
2015-08-25 20:58:57 -04:00
|
|
|
00 Print Mode (???)
|
2013-11-20 21:33:46 -05:00
|
|
|
|
2015-08-18 00:13:50 -04:00
|
|
|
************************************************************************
|
|
|
|
|
2015-08-25 20:58:57 -04:00
|
|
|
Note: Kodak 605 is actually a Shinko CHC-S1545-5A
|
2015-08-18 00:13:50 -04:00
|
|
|
|
2013-11-20 21:33:46 -05:00
|
|
|
************************************************************************
|
|
|
|
|
|
|
|
*/
|