NetBSD/sys/dev/scsipi/scsi_scanner.h
reinoud b220d67a3e Part of the cleanup of sys/scsipi's use of types; rename all u_int* to
uint* and change the u_long's to uint32_t's where possible. Note that the
iocl definitions/hooks have to be ulong (or u_long) or they'll bomb out.
2005-01-31 23:06:41 +00:00

101 lines
3.2 KiB
C

/* $NetBSD: scsi_scanner.h,v 1.9 2005/01/31 23:06:41 reinoud Exp $ */
/*
* Copyright (c) 1995 Kenneth Stailey. All rights reserved.
* modified for configurable scanner support by Joachim Koenig
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Kenneth Stailey.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* SCSI scanner interface description
*/
/* SCSI scanner commands */
#define GET_IMAGE_STATUS 0x0f
#define READ_10 0x28
#define WRITE_10 0x2a
#define OBJECT_POSITION 0x31
#define GET_BUFFER_STATUS 0x34
/* generic scanner command formats */
struct scsi_rw_scanner {
#define READ 0x08
#define WRITE 0x0a
uint8_t opcode;
uint8_t byte2;
#define SRW_FIXED 0x01
uint8_t len[3];
uint8_t control;
};
struct scsi_set_window {
#define SET_WINDOW 0x24 /* set params of image area and windows */
#define GET_WINDOW 0x25
uint8_t opcode;
uint8_t byte2;
uint8_t reserved[4];
uint8_t len[3];
uint8_t control;
};
struct scsi_window_header {
uint8_t reserved[6];
uint8_t len[2];
};
struct scsi_window_data {
uint8_t window_id; /* must be zero */
uint8_t res1:7;
uint8_t auto_bit:1;
uint8_t x_res[2];
uint8_t y_res[2];
uint8_t x_org[4];
uint8_t y_org[4];
uint8_t width[4];
uint8_t length[4];
uint8_t brightness;
uint8_t threshold;
uint8_t contrast;
uint8_t image_comp; /* image composition (data type) */
uint8_t bits_per_pixel;
uint8_t halftone_pattern[2];
uint8_t rif:1; /* reverse image format (mono negative) */
uint8_t res2:4;
uint8_t pad_type:3;
uint8_t bit_ordering[2];
uint8_t compression_type;
uint8_t compression_arg;
uint8_t res3[6];
};
/* mustek scsi commands */
#define MUSTEK_SET_WINDOW 0x04 /* set image area and windows */
#define MUSTEK_ADF 0x10 /* ADF and backtracking selection */
#define MUSTEK_LUT 0x55 /* look up table download */