kopia lustrzana https://gitlab.com/sane-project/backends
1082 wiersze
31 KiB
C
1082 wiersze
31 KiB
C
/* sane - Scanner Access Now Easy.
|
|
|
|
Copyright (C) 1997, 1998, 2001 Franck Schnefra, Michel Roelofs,
|
|
Emmanuel Blot, Mikko Tyolajarvi, David Mosberger-Tang, Wolfgang Goeller,
|
|
Petter Reinholdtsen, Gary Plewa, Sebastien Sable, Mikael Magnusson
|
|
and Kevin Charter
|
|
|
|
This file is part of the SANE package.
|
|
|
|
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 2 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.
|
|
|
|
As a special exception, the authors of SANE give permission for
|
|
additional uses of the libraries contained in this release of SANE.
|
|
|
|
The exception is that, if you link a SANE library with other files
|
|
to produce an executable, this does not by itself cause the
|
|
resulting executable to be covered by the GNU General Public
|
|
License. Your use of that executable is in no way restricted on
|
|
account of linking the SANE library code into it.
|
|
|
|
This exception does not, however, invalidate any other reasons why
|
|
the executable file might be covered by the GNU General Public
|
|
License.
|
|
|
|
If you submit changes to SANE to the maintainers to be included in
|
|
a subsequent release, you agree by submitting the changes that
|
|
those changes may be distributed with this exception intact.
|
|
|
|
If you write modifications of your own for SANE, it is your choice
|
|
whether to permit this exception to apply to your modifications.
|
|
If you do not wish that, delete this exception notice.
|
|
|
|
This file is a component of the implementation of a backend for many
|
|
of the the AGFA SnapScan and Acer Vuego/Prisa flatbed scanners. */
|
|
|
|
|
|
/* $Id$
|
|
SnapScan backend scsi command functions */
|
|
|
|
/* scanner scsi commands */
|
|
|
|
#include "snapscan-usb.h"
|
|
|
|
/* a sensible sense handler, courtesy of Franck;
|
|
the last argument is expected to be a pointer to the associated
|
|
SnapScan_Scanner structure */
|
|
static SANE_Status sense_handler (int scsi_fd, u_char * result, void *arg)
|
|
{
|
|
static char me[] = "sense_handler";
|
|
SnapScan_Scanner *pss = (SnapScan_Scanner *) arg;
|
|
u_char sense, asc, ascq;
|
|
char *sense_str = NULL, *as_str = NULL;
|
|
SANE_Status status = SANE_STATUS_GOOD;
|
|
|
|
DBG (DL_CALL_TRACE, "%s(%ld, %p, %p)\n", me, (long) scsi_fd,
|
|
(void *) result, (void *) arg);
|
|
|
|
sense = result[2] & 0x0f;
|
|
asc = result[12];
|
|
ascq = result[13];
|
|
if (pss)
|
|
{
|
|
pss->asi1 = result[18];
|
|
pss->asi2 = result[19];
|
|
}
|
|
|
|
if ((result[0] & 0x80) == 0)
|
|
{
|
|
DBG (DL_DATA_TRACE, "%s: sense key is invalid.\n", me);
|
|
return SANE_STATUS_GOOD; /* sense key invalid */
|
|
}
|
|
|
|
switch (sense)
|
|
{
|
|
case 0x00:
|
|
/* no sense */
|
|
sense_str = "No sense.";
|
|
break;
|
|
case 0x02:
|
|
/* not ready */
|
|
sense_str = "Not ready.";
|
|
if (asc == 0x04 && ascq == 0x01)
|
|
{
|
|
/* warming up; byte 18 contains remaining seconds */
|
|
as_str = "Logical unit is in process of becoming ready.";
|
|
status = SANE_STATUS_DEVICE_BUSY;
|
|
}
|
|
break;
|
|
case 0x04:
|
|
/* hardware error */
|
|
sense_str = "Hardware error.";
|
|
/* byte 18 and 19 detail the hardware problems */
|
|
status = SANE_STATUS_IO_ERROR;
|
|
break;
|
|
case 0x05:
|
|
/* illegal request */
|
|
sense_str = "Illegal request.";
|
|
if (asc == 0x25 && ascq == 0x00)
|
|
as_str = "Logical unit not supported.";
|
|
status = SANE_STATUS_IO_ERROR;
|
|
break;
|
|
case 0x09:
|
|
/* process error */
|
|
sense_str = "Process error.";
|
|
if (asc == 0x00 && ascq == 0x05)
|
|
{
|
|
/* no documents in ADF */
|
|
as_str = "End of data detected.";
|
|
status = SANE_STATUS_NO_DOCS;
|
|
}
|
|
else if (asc == 0x3b && ascq == 0x05)
|
|
{
|
|
/* paper jam in ADF */
|
|
as_str = "Paper jam.";
|
|
status = SANE_STATUS_JAMMED;
|
|
}
|
|
else if (asc == 0x3b && ascq == 0x09)
|
|
{
|
|
/* scanning area exceeds end of paper in ADF */
|
|
as_str = "Read past end of medium.";
|
|
status = SANE_STATUS_EOF;
|
|
}
|
|
break;
|
|
default:
|
|
DBG (DL_MINOR_ERROR, "%s: no handling for sense %x.\n", me, sense);
|
|
break;
|
|
}
|
|
|
|
if (pss)
|
|
{
|
|
pss->sense_str = sense_str;
|
|
pss->as_str = as_str;
|
|
}
|
|
return status;
|
|
}
|
|
|
|
|
|
static SANE_Status open_scanner (SnapScan_Scanner *pss)
|
|
{
|
|
SANE_Status status;
|
|
DBG (DL_CALL_TRACE, "open_scanner\n");
|
|
if (!pss->opens)
|
|
{
|
|
if(pss->pdev->bus == SCSI)
|
|
{
|
|
status = sanei_scsi_open (pss->devname, &(pss->fd),
|
|
sense_handler, (void *) pss);
|
|
}
|
|
else
|
|
{
|
|
status = snapscani_usb_open (pss->devname, &(pss->fd),
|
|
sense_handler, (void *) pss);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* already open */
|
|
status = SANE_STATUS_GOOD;
|
|
}
|
|
if (status == SANE_STATUS_GOOD)
|
|
pss->opens++;
|
|
return status;
|
|
}
|
|
|
|
static void close_scanner (SnapScan_Scanner *pss)
|
|
{
|
|
DBG (DL_CALL_TRACE, "close_scanner\n");
|
|
if (pss->opens)
|
|
{
|
|
pss->opens--;
|
|
if (!pss->opens)
|
|
{
|
|
if(pss->pdev->bus == SCSI)
|
|
{
|
|
sanei_scsi_close (pss->fd);
|
|
}
|
|
else if(pss->pdev->bus == USB)
|
|
{
|
|
snapscani_usb_close (pss->fd);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static SANE_Status snapscan_cmd(SnapScan_Bus bus, int fd, const void *src,
|
|
size_t src_size, void *dst, size_t * dst_size)
|
|
{
|
|
SANE_Status status;
|
|
DBG (DL_CALL_TRACE, "snapscan_cmd\n");
|
|
if(bus == USB)
|
|
{
|
|
status = snapscani_usb_cmd(fd, src, src_size, dst, dst_size);
|
|
}
|
|
else
|
|
{
|
|
status = sanei_scsi_cmd(fd, src, src_size, dst, dst_size);
|
|
}
|
|
return status;
|
|
}
|
|
|
|
/* SCSI commands */
|
|
#define TEST_UNIT_READY 0x00
|
|
#define INQUIRY 0x12
|
|
#define SEND 0x2A
|
|
#define SET_WINDOW 0x24
|
|
#define SCAN 0x1B
|
|
#define READ 0x28
|
|
#define REQUEST_SENSE 0x03
|
|
#define RESERVE_UNIT 0x16
|
|
#define RELEASE_UNIT 0x17
|
|
#define SEND_DIAGNOSTIC 0x1D
|
|
#define GET_DATA_BUFFER_STATUS 0x34
|
|
|
|
#define SCAN_LEN 6
|
|
#define READ_LEN 10
|
|
|
|
/* buffer tools */
|
|
|
|
static void zero_buf (u_char * buf, size_t len)
|
|
{
|
|
size_t i;
|
|
|
|
for (i = 0; i < len; i++)
|
|
buf[i] = 0x00;
|
|
}
|
|
|
|
|
|
#define BYTE_SIZE 8
|
|
|
|
static u_short u_char_to_u_short (u_char * pc)
|
|
{
|
|
u_short r = 0;
|
|
r |= pc[0];
|
|
r = r << BYTE_SIZE;
|
|
r |= pc[1];
|
|
return r;
|
|
}
|
|
|
|
static void u_short_to_u_charp (u_short x, u_char * pc)
|
|
{
|
|
pc[0] = (0xFF00 & x) >> BYTE_SIZE;
|
|
pc[1] = (0x00FF & x);
|
|
}
|
|
|
|
static void u_int_to_u_char3p (u_int x, u_char * pc)
|
|
{
|
|
pc[0] = (0xFF0000 & x) >> 2 * BYTE_SIZE;
|
|
pc[1] = (0x00FF00 & x) >> BYTE_SIZE;
|
|
pc[2] = (0x0000FF & x);
|
|
}
|
|
|
|
static void u_int_to_u_char4p (u_int x, u_char * pc)
|
|
{
|
|
pc[0] = (0xFF000000 & x) >> 3 * BYTE_SIZE;
|
|
pc[1] = (0x00FF0000 & x) >> 2 * BYTE_SIZE;
|
|
pc[2] = (0x0000FF00 & x) >> BYTE_SIZE;
|
|
pc[3] = (0x000000FF & x);
|
|
}
|
|
|
|
/* Convert 'STRING ' to 'STRING' by adding 0 after last non-space */
|
|
static void remove_trailing_space (char *s)
|
|
{
|
|
int position;
|
|
|
|
if (NULL == s)
|
|
return;
|
|
|
|
for (position = strlen (s);
|
|
position > 0 && ' ' == s[position - 1];
|
|
position--)
|
|
{
|
|
/* dummy */;
|
|
}
|
|
s[position] = 0;
|
|
}
|
|
|
|
static void check_range (int *v, SANE_Range r)
|
|
{
|
|
if (*v < r.min)
|
|
*v = r.min;
|
|
if (*v > r.max)
|
|
*v = r.max;
|
|
}
|
|
|
|
#define INQUIRY_LEN 6
|
|
#define INQUIRY_RET_LEN 120
|
|
|
|
#define INQUIRY_VENDOR 8 /* Offset in reply data to vendor name */
|
|
#define INQUIRY_PRODUCT 16 /* Offset in reply data to product id */
|
|
#define INQUIRY_REV 32 /* Offset in reply data to revision level */
|
|
#define INQUIRY_PRL2 36 /* Product Revision Level 2 (AGFA) */
|
|
#define INQUIRY_HCFG 37 /* Hardware Configuration (AGFA) */
|
|
#define INQUIRY_PIX_PER_LINE 42 /* Pixels per scan line (AGFA) */
|
|
#define INQUIRY_BYTE_PER_LINE 44 /* Bytes per scan line (AGFA) */
|
|
#define INQUIRY_NUM_LINES 46 /* number of scan lines (AGFA) */
|
|
#define INQUIRY_OPT_RES 48 /* optical resolution (AGFA) */
|
|
#define INQUIRY_SCAN_SPEED 51 /* scan speed (AGFA) */
|
|
#define INQUIRY_EXPTIME1 52 /* exposure time, first digit (AGFA) */
|
|
#define INQUIRY_EXPTIME2 53 /* exposure time, second digit (AGFA) */
|
|
#define INQUIRY_G2R_DIFF 54 /* green to red difference (AGFA) */
|
|
#define INQUIRY_B2R_DIFF 55 /* green to red difference (AGFA) */
|
|
#define INQUIRY_FIRMWARE 96 /* firmware date and time (AGFA) */
|
|
|
|
|
|
/* a mini-inquiry reads only the first 36 bytes of inquiry data, and
|
|
returns the vendor(7 chars) and model(16 chars); vendor and model
|
|
must point to character buffers of size at least 8 and 17
|
|
respectively */
|
|
|
|
static SANE_Status mini_inquiry (SnapScan_Bus bus, int fd, char *vendor, char *model)
|
|
{
|
|
static const char *me = "mini_inquiry";
|
|
size_t read_bytes;
|
|
char cmd[] = {INQUIRY, 0, 0, 0, 36, 0};
|
|
char data[36];
|
|
SANE_Status status;
|
|
|
|
read_bytes = 36;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
status = snapscan_cmd (bus, fd, cmd, sizeof (cmd), data, &read_bytes);
|
|
CHECK_STATUS (status, me, "snapscan_cmd");
|
|
|
|
memcpy (vendor, data + 8, 7);
|
|
vendor[7] = 0;
|
|
memcpy (model, data + 16, 16);
|
|
model[16] = 0;
|
|
|
|
remove_trailing_space (vendor);
|
|
remove_trailing_space (model);
|
|
|
|
return SANE_STATUS_GOOD;
|
|
}
|
|
|
|
static SANE_Status inquiry (SnapScan_Scanner *pss)
|
|
{
|
|
static const char *me = "inquiry";
|
|
|
|
SANE_Status status;
|
|
pss->read_bytes = INQUIRY_RET_LEN;
|
|
|
|
zero_buf (pss->cmd, MAX_SCSI_CMD_LEN);
|
|
pss->cmd[0] = INQUIRY;
|
|
pss->cmd[4] = INQUIRY_RET_LEN;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
status = snapscan_cmd (pss->pdev->bus,
|
|
pss->fd,
|
|
pss->cmd,
|
|
INQUIRY_LEN,
|
|
pss->buf,
|
|
&pss->read_bytes);
|
|
CHECK_STATUS (status, me, "snapscan_cmd");
|
|
|
|
/* record current parameters */
|
|
|
|
pss->actual_res =
|
|
u_char_to_u_short (pss->buf + INQUIRY_OPT_RES);
|
|
pss->pixels_per_line =
|
|
u_char_to_u_short (pss->buf + INQUIRY_PIX_PER_LINE);
|
|
pss->bytes_per_line =
|
|
u_char_to_u_short (pss->buf + INQUIRY_BYTE_PER_LINE);
|
|
pss->lines =
|
|
u_char_to_u_short (pss->buf + INQUIRY_NUM_LINES);
|
|
/* effective buffer size must be a whole number of scan lines */
|
|
if (pss->lines)
|
|
pss->buf_sz = (SCANNER_BUF_SZ/pss->bytes_per_line)*pss->bytes_per_line;
|
|
else
|
|
pss->buf_sz = 0;
|
|
pss->bytes_remaining = pss->bytes_per_line*pss->lines;
|
|
pss->expected_read_bytes = 0;
|
|
pss->read_bytes = 0;
|
|
pss->hconfig = pss->buf[INQUIRY_HCFG];
|
|
|
|
{
|
|
char exptime[4] = {' ', '.', ' ', 0};
|
|
exptime[0] = (char) (pss->buf[INQUIRY_EXPTIME1] + '0');
|
|
exptime[2] = (char) (pss->buf[INQUIRY_EXPTIME2] + '0');
|
|
pss->ms_per_line = atof (exptime)*(float) pss->buf[INQUIRY_SCAN_SPEED];
|
|
}
|
|
|
|
switch (pss->pdev->model)
|
|
{
|
|
case SNAPSCAN310:
|
|
case SNAPSCAN600:
|
|
case SNAPSCAN1236S:
|
|
case SNAPSCAN1212U:
|
|
case SNAPSCANE50:
|
|
case VUEGO310S: /* WG changed */
|
|
case VUEGO610S: /* SJU changed */
|
|
case PRISA620S: /* GP added */
|
|
{
|
|
signed char min_diff;
|
|
signed char g = (pss->buf[INQUIRY_G2R_DIFF] & 0x80) ? -(pss->buf[INQUIRY_G2R_DIFF] & 0x7F) : pss->buf[INQUIRY_G2R_DIFF];
|
|
signed char b = (pss->buf[INQUIRY_B2R_DIFF] & 0x80) ? -(pss->buf[INQUIRY_B2R_DIFF] & 0x7F) : pss->buf[INQUIRY_B2R_DIFF];
|
|
|
|
min_diff = MIN (MIN (b, g), 0);
|
|
|
|
pss->chroma_offset[R_CHAN] = (u_char) (0 - min_diff);
|
|
pss->chroma_offset[G_CHAN] = (u_char) (g - min_diff);
|
|
pss->chroma_offset[B_CHAN] = (u_char) (b - min_diff);
|
|
|
|
DBG (DL_VERBOSE,
|
|
"%s: Chroma offsets Red:%u, Green:%u Blue:%u\n",
|
|
me,
|
|
pss->chroma_offset[R_CHAN],
|
|
pss->chroma_offset[G_CHAN],
|
|
pss->chroma_offset[B_CHAN]);
|
|
}
|
|
break;
|
|
default:
|
|
pss->chroma_offset[R_CHAN] =
|
|
pss->chroma_offset[G_CHAN] =
|
|
pss->chroma_offset[B_CHAN] = 0;
|
|
break;
|
|
}
|
|
|
|
DBG (DL_DATA_TRACE,
|
|
"%s: pixels per scan line = %lu\n",
|
|
me,
|
|
(u_long) pss->pixels_per_line);
|
|
DBG (DL_DATA_TRACE,
|
|
"%s: bytes per scan line = %lu\n",
|
|
me,
|
|
(u_long) pss->bytes_per_line);
|
|
DBG (DL_DATA_TRACE,
|
|
"%s: number of scan lines = %lu\n",
|
|
me,
|
|
(u_long) pss->lines);
|
|
DBG (DL_DATA_TRACE,
|
|
"%s: effective buffer size = %lu bytes, %lu lines\n",
|
|
me,
|
|
(u_long) pss->buf_sz,
|
|
(u_long) (pss->buf_sz ? pss->buf_sz / pss->lines : 0));
|
|
DBG (DL_DATA_TRACE,
|
|
"%s: expected total scan data: %lu bytes\n",
|
|
me,
|
|
(u_long) pss->bytes_remaining);
|
|
|
|
return status;
|
|
}
|
|
|
|
static SANE_Status test_unit_ready (SnapScan_Scanner *pss)
|
|
{
|
|
static const char *me = "test_unit_ready";
|
|
char cmd[] =
|
|
{TEST_UNIT_READY, 0, 0, 0, 0, 0};
|
|
SANE_Status status;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
status = snapscan_cmd (pss->pdev->bus, pss->fd, cmd, sizeof (cmd), NULL, NULL);
|
|
CHECK_STATUS (status, me, "snapscan_cmd");
|
|
return status;
|
|
}
|
|
|
|
static void reserve_unit (SnapScan_Scanner *pss)
|
|
{
|
|
static const char *me = "reserve_unit";
|
|
char cmd[] = {RESERVE_UNIT, 0, 0, 0, 0, 0};
|
|
SANE_Status status;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
status = snapscan_cmd (pss->pdev->bus, pss->fd, cmd, sizeof (cmd), NULL, NULL);
|
|
if (status != SANE_STATUS_GOOD)
|
|
{
|
|
DBG (DL_MAJOR_ERROR,
|
|
"%s: scsi command error: %s\n",
|
|
me,
|
|
sane_strstatus (status));
|
|
}
|
|
}
|
|
|
|
static void release_unit (SnapScan_Scanner *pss)
|
|
{
|
|
static const char *me = "release_unit";
|
|
char cmd[] = {RELEASE_UNIT, 0, 0, 0, 0, 0};
|
|
SANE_Status status;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
status = snapscan_cmd (pss->pdev->bus, pss->fd, cmd, sizeof (cmd), NULL, NULL);
|
|
if (status != SANE_STATUS_GOOD)
|
|
{
|
|
DBG (DL_MAJOR_ERROR,
|
|
"%s: scsi command error: %s\n",
|
|
me, sane_strstatus (status));
|
|
}
|
|
}
|
|
|
|
#define SEND_LENGTH 10
|
|
#define DTC_HALFTONE 0x02
|
|
#define DTC_GAMMA 0x03
|
|
#define DTC_SPEED 0x81
|
|
#define DTC_CALIBRATION 0x82
|
|
#define DTCQ_HALFTONE_BW8 0x00
|
|
#define DTCQ_HALFTONE_COLOR8 0x01
|
|
#define DTCQ_HALFTONE_BW16 0x80
|
|
#define DTCQ_HALFTONE_COLOR16 0x81
|
|
#define DTCQ_GAMMA_GRAY8 0x00
|
|
#define DTCQ_GAMMA_RED8 0x01
|
|
#define DTCQ_GAMMA_GREEN8 0x02
|
|
#define DTCQ_GAMMA_BLUE8 0x03
|
|
#define DTCQ_GAMMA_GRAY10 0x80
|
|
#define DTCQ_GAMMA_RED10 0x81
|
|
#define DTCQ_GAMMA_GREEN10 0x82
|
|
#define DTCQ_GAMMA_BLUE10 0x83
|
|
|
|
static SANE_Status send (SnapScan_Scanner *pss, u_char dtc, u_char dtcq)
|
|
{
|
|
static char me[] = "send";
|
|
SANE_Status status;
|
|
u_short tl; /* transfer length */
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
|
|
zero_buf (pss->buf, SEND_LENGTH);
|
|
|
|
switch (dtc)
|
|
{
|
|
case DTC_HALFTONE: /* halftone mask */
|
|
switch (dtcq)
|
|
{
|
|
case DTCQ_HALFTONE_BW8:
|
|
tl = 64; /* bw 8x8 table */
|
|
break;
|
|
case DTCQ_HALFTONE_COLOR8:
|
|
tl = 3 * 64; /* rgb 8x8 tables */
|
|
break;
|
|
case DTCQ_HALFTONE_BW16:
|
|
tl = 256; /* bw 16x16 table */
|
|
break;
|
|
case DTCQ_HALFTONE_COLOR16:
|
|
tl = 3 * 256; /* rgb 16x16 tables */
|
|
break;
|
|
default:
|
|
DBG (DL_MAJOR_ERROR, "%s: bad halftone data type qualifier 0x%x\n",
|
|
me, dtcq);
|
|
return SANE_STATUS_INVAL;
|
|
}
|
|
break;
|
|
case DTC_GAMMA: /* gamma function */
|
|
switch (dtcq)
|
|
{
|
|
case DTCQ_GAMMA_GRAY8: /* 8-bit tables */
|
|
case DTCQ_GAMMA_RED8:
|
|
case DTCQ_GAMMA_GREEN8:
|
|
case DTCQ_GAMMA_BLUE8:
|
|
tl = 256;
|
|
break;
|
|
case DTCQ_GAMMA_GRAY10: /* 10-bit tables */
|
|
case DTCQ_GAMMA_RED10:
|
|
case DTCQ_GAMMA_GREEN10:
|
|
case DTCQ_GAMMA_BLUE10:
|
|
tl = 1024;
|
|
break;
|
|
default:
|
|
DBG (DL_MAJOR_ERROR, "%s: bad gamma data type qualifier 0x%x\n",
|
|
me, dtcq);
|
|
return SANE_STATUS_INVAL;
|
|
}
|
|
break;
|
|
case DTC_SPEED: /* static transfer speed */
|
|
tl = 2;
|
|
break;
|
|
case DTC_CALIBRATION:
|
|
tl = calibration_line_length(pss);
|
|
break;
|
|
default:
|
|
DBG (DL_MAJOR_ERROR, "%s: unsupported data type code 0x%x\n",
|
|
me, (unsigned) dtc);
|
|
return SANE_STATUS_INVAL;
|
|
}
|
|
|
|
pss->buf[0] = SEND;
|
|
pss->buf[2] = dtc;
|
|
pss->buf[5] = dtcq;
|
|
pss->buf[7] = (tl >> 8) & 0xff;
|
|
pss->buf[8] = tl & 0xff;
|
|
|
|
status = snapscan_cmd (pss->pdev->bus, pss->fd, pss->buf, SEND_LENGTH + tl,
|
|
NULL, NULL);
|
|
CHECK_STATUS (status, me, "snapscan_cmd");
|
|
return status;
|
|
}
|
|
|
|
#define SET_WINDOW_LEN 10
|
|
#define SET_WINDOW_HEADER 10 /* header starts */
|
|
#define SET_WINDOW_HEADER_LEN 8
|
|
#define SET_WINDOW_DESC 18 /* window descriptor starts */
|
|
#define SET_WINDOW_DESC_LEN 48
|
|
#define SET_WINDOW_TRANSFER_LEN 56
|
|
#define SET_WINDOW_TOTAL_LEN 66
|
|
#define SET_WINDOW_RET_LEN 0 /* no returned data */
|
|
|
|
#define SET_WINDOW_P_TRANSFER_LEN 6
|
|
#define SET_WINDOW_P_DESC_LEN 6
|
|
|
|
#define SET_WINDOW_P_WIN_ID 0
|
|
#define SET_WINDOW_P_XRES 2
|
|
#define SET_WINDOW_P_YRES 4
|
|
#define SET_WINDOW_P_TLX 6
|
|
#define SET_WINDOW_P_TLY 10
|
|
#define SET_WINDOW_P_WIDTH 14
|
|
#define SET_WINDOW_P_LENGTH 18
|
|
#define SET_WINDOW_P_BRIGHTNESS 22
|
|
#define SET_WINDOW_P_THRESHOLD 23
|
|
#define SET_WINDOW_P_CONTRAST 24
|
|
#define SET_WINDOW_P_COMPOSITION 25
|
|
#define SET_WINDOW_P_BITS_PER_PIX 26
|
|
#define SET_WINDOW_P_HALFTONE_PATTERN 27
|
|
#define SET_WINDOW_P_PADDING_TYPE 29
|
|
#define SET_WINDOW_P_BIT_ORDERING 30
|
|
#define SET_WINDOW_P_COMPRESSION_TYPE 32
|
|
#define SET_WINDOW_P_COMPRESSION_ARG 33
|
|
#define SET_WINDOW_P_HALFTONE_FLAG 35
|
|
#define SET_WINDOW_P_DEBUG_MODE 40
|
|
#define SET_WINDOW_P_GAMMA_NO 41
|
|
#define SET_WINDOW_P_OPERATION_MODE 42
|
|
#define SET_WINDOW_P_RED_UNDER_COLOR 43
|
|
#define SET_WINDOW_P_BLUE_UNDER_COLOR 45
|
|
#define SET_WINDOW_P_GREEN_UNDER_COLOR 44
|
|
|
|
static SANE_Status set_window (SnapScan_Scanner *pss)
|
|
{
|
|
static const char *me = "set_window";
|
|
SANE_Status status;
|
|
unsigned char source;
|
|
u_char *pc;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
zero_buf (pss->cmd, MAX_SCSI_CMD_LEN);
|
|
|
|
/* basic command */
|
|
pc = pss->cmd;
|
|
pc[0] = SET_WINDOW;
|
|
u_int_to_u_char3p ((u_int) SET_WINDOW_TRANSFER_LEN,
|
|
pc + SET_WINDOW_P_TRANSFER_LEN);
|
|
|
|
/* header; we support only one window */
|
|
pc += SET_WINDOW_LEN;
|
|
u_short_to_u_charp (SET_WINDOW_DESC_LEN, pc + SET_WINDOW_P_DESC_LEN);
|
|
|
|
/* the sole window descriptor */
|
|
pc += SET_WINDOW_HEADER_LEN;
|
|
pc[SET_WINDOW_P_WIN_ID] = 0;
|
|
u_short_to_u_charp (pss->res, pc + SET_WINDOW_P_XRES);
|
|
u_short_to_u_charp (pss->res, pc + SET_WINDOW_P_YRES);
|
|
|
|
/* it's an ugly sound if the scanner drives against the rear
|
|
wall, and with changing max values we better be sure */
|
|
check_range(&(pss->brx), pss->pdev->x_range);
|
|
check_range(&(pss->bry), pss->pdev->y_range);
|
|
{
|
|
int tlxp =
|
|
(int) (pss->actual_res*IN_PER_MM*SANE_UNFIX(pss->tlx));
|
|
int tlyp =
|
|
(int) (pss->actual_res*IN_PER_MM*SANE_UNFIX(pss->tly));
|
|
int brxp =
|
|
(int) (pss->actual_res*IN_PER_MM*SANE_UNFIX(pss->brx));
|
|
int bryp =
|
|
(int) (pss->actual_res*IN_PER_MM*SANE_UNFIX(pss->bry));
|
|
int tmp;
|
|
|
|
/* we don't guard against brx < tlx and bry < tly in the options */
|
|
if (brxp < tlxp)
|
|
{
|
|
tmp = tlxp;
|
|
tlxp = brxp;
|
|
brxp = tmp;
|
|
}
|
|
|
|
if (bryp < tlyp)
|
|
{
|
|
tmp = tlyp;
|
|
tlyp = bryp;
|
|
bryp = tmp;
|
|
}
|
|
u_int_to_u_char4p (tlxp, pc + SET_WINDOW_P_TLX);
|
|
u_int_to_u_char4p (tlyp, pc + SET_WINDOW_P_TLY);
|
|
u_int_to_u_char4p (MAX (((unsigned) (brxp - tlxp)), 75),
|
|
pc + SET_WINDOW_P_WIDTH);
|
|
u_int_to_u_char4p (MAX (((unsigned) (bryp - tlyp)), 75),
|
|
pc + SET_WINDOW_P_LENGTH);
|
|
}
|
|
pc[SET_WINDOW_P_BRIGHTNESS] = 128;
|
|
pc[SET_WINDOW_P_THRESHOLD] =
|
|
(u_char) (255.0*(pss->threshold / 100.0));
|
|
pc[SET_WINDOW_P_CONTRAST] = 128;
|
|
{
|
|
SnapScan_Mode mode = pss->mode;
|
|
u_char bpp;
|
|
|
|
if (pss->preview)
|
|
mode = pss->preview_mode;
|
|
|
|
bpp = pss->pdev->depths[mode];
|
|
|
|
switch (mode)
|
|
{
|
|
case MD_COLOUR:
|
|
pc[SET_WINDOW_P_COMPOSITION] = 0x05; /* multi-level RGB */
|
|
bpp *= 3;
|
|
break;
|
|
case MD_BILEVELCOLOUR:
|
|
if (pss->halftone)
|
|
pc[SET_WINDOW_P_COMPOSITION] = 0x04; /* halftone RGB */
|
|
else
|
|
pc[SET_WINDOW_P_COMPOSITION] = 0x03; /* bi-level RGB */
|
|
bpp *= 3;
|
|
break;
|
|
case MD_GREYSCALE:
|
|
pc[SET_WINDOW_P_COMPOSITION] = 0x02; /* grayscale */
|
|
break;
|
|
default:
|
|
if (pss->halftone)
|
|
pc[SET_WINDOW_P_COMPOSITION] = 0x01; /* b&w halftone */
|
|
else
|
|
pc[SET_WINDOW_P_COMPOSITION] = 0x00; /* b&w (lineart) */
|
|
break;
|
|
}
|
|
|
|
pc[SET_WINDOW_P_BITS_PER_PIX] = bpp;
|
|
DBG (DL_DATA_TRACE, "%s: bits-per-pixel set to %d\n", me, (int) bpp);
|
|
}
|
|
/* the RIF bit is the high bit of the padding type */
|
|
pc[SET_WINDOW_P_PADDING_TYPE] = 0x00 /*| (pss->negative ? 0x00 : 0x80) */ ;
|
|
pc[SET_WINDOW_P_HALFTONE_PATTERN] = 0;
|
|
pc[SET_WINDOW_P_HALFTONE_FLAG] = 0x80; /* always set; image
|
|
composition
|
|
determines whether
|
|
halftone is
|
|
actually used */
|
|
|
|
u_short_to_u_charp (0x0000, pc + SET_WINDOW_P_BIT_ORDERING); /* used? */
|
|
pc[SET_WINDOW_P_COMPRESSION_TYPE] = 0; /* none */
|
|
pc[SET_WINDOW_P_COMPRESSION_ARG] = 0; /* none applicable */
|
|
if(pss->pdev->model != ACER300F
|
|
&&
|
|
pss->pdev->model != SNAPSCAN310
|
|
&&
|
|
pss->pdev->model != SNAPSCAN1236S
|
|
&&
|
|
pss->pdev->model != SNAPSCANE50
|
|
&&
|
|
pss->pdev->model != VUEGO310S
|
|
&&
|
|
pss->pdev->model != VUEGO610S)
|
|
{
|
|
pc[SET_WINDOW_P_DEBUG_MODE] = 2; /* use full 128k buffer */
|
|
pc[SET_WINDOW_P_GAMMA_NO] = 0x01; /* downloaded table */
|
|
}
|
|
source = 0x20;
|
|
if (pss->preview)
|
|
source |= 0x40;
|
|
if (pss->source == SRC_TPO)
|
|
source |= 0x08;
|
|
pc[SET_WINDOW_P_OPERATION_MODE] = source;
|
|
pc[SET_WINDOW_P_RED_UNDER_COLOR] = 0xff; /* defaults */
|
|
pc[SET_WINDOW_P_BLUE_UNDER_COLOR] = 0xff;
|
|
pc[SET_WINDOW_P_GREEN_UNDER_COLOR] = 0xff;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
status = snapscan_cmd (pss->pdev->bus, pss->fd, pss->cmd,
|
|
SET_WINDOW_TOTAL_LEN, NULL, NULL);
|
|
CHECK_STATUS (status, me, "snapscan_cmd");
|
|
return status;
|
|
}
|
|
|
|
static SANE_Status scan (SnapScan_Scanner *pss)
|
|
{
|
|
static const char *me = "scan";
|
|
SANE_Status status;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
zero_buf (pss->cmd, MAX_SCSI_CMD_LEN);
|
|
pss->cmd[0] = SCAN;
|
|
status = snapscan_cmd (pss->pdev->bus, pss->fd, pss->cmd, SCAN_LEN, NULL, NULL);
|
|
CHECK_STATUS (status, me, "snapscan_cmd");
|
|
return status;
|
|
}
|
|
|
|
/* supported read operations */
|
|
|
|
#define READ_IMAGE 0x00
|
|
#define READ_TRANSTIME 0x80
|
|
|
|
/* number of bytes expected must be in pss->expected_read_bytes */
|
|
static SANE_Status scsi_read (SnapScan_Scanner *pss, u_char read_type)
|
|
{
|
|
static const char *me = "scsi_read";
|
|
SANE_Status status;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
zero_buf (pss->cmd, MAX_SCSI_CMD_LEN);
|
|
pss->cmd[0] = READ;
|
|
pss->cmd[2] = read_type;
|
|
u_int_to_u_char3p (pss->expected_read_bytes, pss->cmd + 6);
|
|
|
|
pss->read_bytes = pss->expected_read_bytes;
|
|
|
|
status = snapscan_cmd (pss->pdev->bus, pss->fd, pss->cmd,
|
|
READ_LEN, pss->buf, &pss->read_bytes);
|
|
CHECK_STATUS (status, me, "snapscan_cmd");
|
|
return status;
|
|
}
|
|
|
|
static SANE_Status request_sense (SnapScan_Scanner *pss)
|
|
{
|
|
static const char *me = "request_sense";
|
|
size_t read_bytes = 0;
|
|
u_char cmd[] = {REQUEST_SENSE, 0, 0, 0, 20, 0};
|
|
u_char data[20];
|
|
SANE_Status status;
|
|
|
|
read_bytes = 20;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
status = snapscan_cmd (pss->pdev->bus, pss->fd, cmd, sizeof (cmd),
|
|
data, &read_bytes);
|
|
if (status != SANE_STATUS_GOOD)
|
|
{
|
|
DBG (DL_MAJOR_ERROR, "%s: scsi command error: %s\n",
|
|
me, sane_strstatus (status));
|
|
}
|
|
else
|
|
{
|
|
status = sense_handler (pss->fd, data, (void *) pss);
|
|
}
|
|
return status;
|
|
}
|
|
|
|
static SANE_Status send_diagnostic (SnapScan_Scanner *pss)
|
|
{
|
|
static const char *me = "send_diagnostic";
|
|
u_char cmd[] = {SEND_DIAGNOSTIC, 0x04, 0, 0, 0, 0}; /* self-test */
|
|
SANE_Status status;
|
|
|
|
if (pss->pdev->model == PRISA620S /* GP added */
|
|
||
|
|
pss->pdev->model == VUEGO610S) /* SJU added */
|
|
{
|
|
return SANE_STATUS_GOOD;
|
|
}
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
|
|
status = snapscan_cmd (pss->pdev->bus, pss->fd, cmd, sizeof (cmd), NULL, NULL);
|
|
CHECK_STATUS (status, me, "snapscan_cmd");
|
|
return status;
|
|
}
|
|
|
|
#if 0
|
|
|
|
/* get_data_buffer_status: fetch the scanner's current data buffer
|
|
status. If wait == 0, the scanner must respond immediately;
|
|
otherwise it will wait until there is data available in the buffer
|
|
before reporting. */
|
|
|
|
#define GET_DATA_BUFFER_STATUS_LEN 10
|
|
#define DESCRIPTOR_LENGTH 12
|
|
|
|
static SANE_Status get_data_buffer_status (SnapScan_Scanner *pss, int wait)
|
|
{
|
|
static const char *me = "get_data_buffer_status";
|
|
SANE_Status status;
|
|
|
|
pss->read_bytes = DESCRIPTOR_LENGTH; /* one status descriptor only */
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
|
|
zero_buf (pss->cmd, MAX_SCSI_CMD_LEN);
|
|
pss->cmd[0] = GET_DATA_BUFFER_STATUS;
|
|
|
|
|
|
if (wait)
|
|
pss->cmd[1] = 0x01;
|
|
u_short_to_u_charp (DESCRIPTOR_LENGTH, pss->cmd + 7);
|
|
|
|
status = snapscan_cmd (pss->pdev->bus, pss->fd,
|
|
pss->cmd,
|
|
GET_DATA_BUFFER_STATUS_LEN,
|
|
pss->buf,
|
|
&pss->read_bytes);
|
|
CHECK_STATUS (status, me, "snapscan_cmd");
|
|
return status;
|
|
}
|
|
|
|
#endif
|
|
|
|
static SANE_Status wait_scanner_ready (SnapScan_Scanner *pss)
|
|
{
|
|
static char me[] = "wait_scanner_ready";
|
|
SANE_Status status;
|
|
int retries;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
|
|
for (retries = 5; retries; retries--)
|
|
{
|
|
status = test_unit_ready (pss);
|
|
if (status == SANE_STATUS_GOOD)
|
|
{
|
|
status = request_sense (pss);
|
|
switch (status)
|
|
{
|
|
case SANE_STATUS_GOOD:
|
|
return status;
|
|
case SANE_STATUS_DEVICE_BUSY:
|
|
/* first additional sense byte contains time to wait */
|
|
{
|
|
int delay = pss->asi1 + 1;
|
|
DBG (DL_INFO,
|
|
"%s: scanner warming up. Waiting %ld seconds.\n",
|
|
me, (long) delay);
|
|
sleep (delay);
|
|
}
|
|
break;
|
|
case SANE_STATUS_IO_ERROR:
|
|
/* hardware error; bail */
|
|
DBG (DL_MAJOR_ERROR, "%s: hardware error detected.\n", me);
|
|
return status;
|
|
default:
|
|
DBG (DL_MAJOR_ERROR,
|
|
"%s: unhandled request_sense result; trying again.\n",
|
|
me);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
#define READ_CALIBRATION 0x82
|
|
#define NUM_CALIBRATION_LINES 16
|
|
|
|
static SANE_Status read_calibration_data (SnapScan_Scanner *pss, void *buf, u_char num_lines)
|
|
{
|
|
static const char *me = "read_calibration_data";
|
|
SANE_Status status;
|
|
size_t expected_read_bytes = num_lines * calibration_line_length(pss);
|
|
size_t read_bytes;
|
|
|
|
DBG (DL_CALL_TRACE, "%s\n", me);
|
|
zero_buf (pss->cmd, MAX_SCSI_CMD_LEN);
|
|
pss->cmd[0] = READ;
|
|
pss->cmd[2] = READ_CALIBRATION;
|
|
pss->cmd[5] = num_lines;
|
|
u_int_to_u_char3p (expected_read_bytes, pss->cmd + 6);
|
|
read_bytes = expected_read_bytes;
|
|
|
|
status = snapscan_cmd (pss->pdev->bus, pss->fd, pss->cmd,
|
|
READ_LEN, buf, &read_bytes);
|
|
CHECK_STATUS (status, me, "snapscan_cmd");
|
|
|
|
if(read_bytes != expected_read_bytes) {
|
|
DBG (DL_MAJOR_ERROR, "%s: read %d of %d calibration data\n", me, read_bytes, expected_read_bytes);
|
|
return SANE_STATUS_IO_ERROR;
|
|
}
|
|
|
|
return SANE_STATUS_GOOD;
|
|
}
|
|
|
|
static SANE_Status calibrate (SnapScan_Scanner *pss)
|
|
{
|
|
int r;
|
|
int c;
|
|
u_char *buf;
|
|
static const char *me = "calibrate";
|
|
SANE_Status status;
|
|
int line_length = calibration_line_length(pss);
|
|
|
|
buf = (u_char *) malloc(NUM_CALIBRATION_LINES * line_length);
|
|
if (!buf)
|
|
{
|
|
DBG (DL_MAJOR_ERROR, "%s: out of memory allocating calibration, %d bytes.", me, NUM_CALIBRATION_LINES * line_length);
|
|
return SANE_STATUS_NO_MEM;
|
|
}
|
|
|
|
DBG (DL_MAJOR_ERROR, "%s: reading calibration data\n", me);
|
|
status = read_calibration_data(pss, buf, NUM_CALIBRATION_LINES);
|
|
CHECK_STATUS(status, me, "read_calibration_data");
|
|
|
|
/* status = test_unit_ready (pss);
|
|
CHECK_STATUS(status, me, "test unit ready");*/
|
|
|
|
for(c=0; c < line_length; c++) {
|
|
u_int sum = 0;
|
|
for(r=0; r < NUM_CALIBRATION_LINES; r++) {
|
|
sum += buf[c + r * line_length];
|
|
}
|
|
pss->buf[c + SEND_LENGTH] = sum / NUM_CALIBRATION_LINES;
|
|
}
|
|
|
|
status = send (pss, DTC_CALIBRATION, 1);
|
|
CHECK_STATUS(status, me, "send calibration");
|
|
|
|
/* status = test_unit_ready (pss);
|
|
CHECK_STATUS(status, me, "test unit ready");*/
|
|
|
|
return SANE_STATUS_GOOD;
|
|
}
|
|
|
|
/*
|
|
* $Log$
|
|
* Revision 1.4 2001/05/26 12:47:30 hmg
|
|
* Updated snapscan backend to version 1.2 (from
|
|
* Sebastien Sable <Sebastien.Sable@snv.jussieu.fr>).
|
|
* Henning Meier-Geinitz <henning@meier-geinitz.de>
|
|
*
|
|
* Revision 1.12 2001/04/10 13:00:31 sable
|
|
* Moving sanei_usb_* to snapscani_usb*
|
|
*
|
|
* Revision 1.11 2001/04/10 11:04:31 sable
|
|
* Adding support for snapscan e40 an e50 thanks to Giuseppe Tanzilli
|
|
*
|
|
* Revision 1.10 2001/03/17 22:53:21 sable
|
|
* Applying Mikael Magnusson patch concerning Gamma correction
|
|
* Support for 1212U_2
|
|
*
|
|
* Revision 1.3 2001/03/04 16:37:57 mikael
|
|
* Remove brightness and contrast settings in window.
|
|
*
|
|
* Revision 1.2 2001/02/16 18:32:28 mikael
|
|
* impl calibration, signed position, increased buffer size
|
|
*
|
|
* Revision 1.1.1.1 2001/02/10 17:09:29 mikael
|
|
* Imported from snapscan-11282000.tar.gz
|
|
*
|
|
* Revision 1.9 2000/11/10 01:01:59 sable
|
|
* USB (kind of) autodetection
|
|
*
|
|
* Revision 1.8 2000/11/01 01:26:43 sable
|
|
* Support for 1212U
|
|
*
|
|
* Revision 1.7 2000/10/30 22:32:20 sable
|
|
* Support for vuego310s vuego610s and 1236s
|
|
*
|
|
* Revision 1.6 2000/10/29 22:44:55 sable
|
|
* Bug correction for 1236s
|
|
*
|
|
* Revision 1.5 2000/10/28 14:16:10 sable
|
|
* Bug correction for SnapScan310
|
|
*
|
|
* Revision 1.4 2000/10/28 14:06:35 sable
|
|
* Add support for Acer300f
|
|
*
|
|
* Revision 1.3 2000/10/15 19:52:06 cbagwell
|
|
* Changed USB support to a 1 line modification instead of multi-file
|
|
* changes.
|
|
*
|
|
* Revision 1.2 2000/10/13 03:50:27 cbagwell
|
|
* Updating to source from SANE 1.0.3. Calling this versin 1.1
|
|
*
|
|
* Revision 1.3 2000/08/12 15:09:34 pere
|
|
* Merge devel (v1.0.3) into head branch.
|
|
*
|
|
* Revision 1.1.2.3 2000/07/17 21:37:27 hmg
|
|
* 2000-07-17 Henning Meier-Geinitz <hmg@gmx.de>
|
|
*
|
|
* * backend/snapscan.c backend/snapscan-scsi.c: Replace C++ comment
|
|
* with C comment.
|
|
*
|
|
* Revision 1.1.2.2 2000/07/13 04:47:44 pere
|
|
* New snapscan backend version dated 20000514 from Steve Underwood.
|
|
*
|
|
* Revision 1.2.1 2000/05/14 13:30:20 coppice
|
|
* Added history log to pre-existing code. Some reformatting and minor
|
|
* tidying.
|
|
* */
|