1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
/* $OpenBSD: scsi_scanner.h,v 1.3 1996/04/21 22:31:00 deraadt 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
*/
#ifndef _SCSI_SCANNER_H_
#define _SCSI_SCANNER_H_
/* SCSI scanner commands */
#define GET_IMAGE_STATUS 0x0f
#define READ_BIG 0x28
#define WRITE_BIG 0x2a
#define OBJECT_POSITION 0x31
#define GET_BUFFER_STATUS 0x34
/* generic scanner command formats */
struct scsi_rw_scanner {
#define READ 0x08
#define WRITE 0x0a
u_int8_t opcode;
u_int8_t byte2;
#define SRW_FIXED 0x01
u_int8_t len[3];
u_int8_t control;
};
struct scsi_start_stop {
u_int8_t opcode;
u_int8_t byte2;
u_int8_t unused[2];
u_int8_t how;
#define SSS_STOP 0x00
#define SSS_START 0x01
#define SSS_LOEJ 0x02
u_int8_t control;
};
struct scsi_set_window {
#define SET_WINDOW 0x24 /* set params of image area and windows */
#define GET_WINDOW 0x25
u_int8_t opcode;
u_int8_t byte2;
u_int8_t reserved[4];
u_int8_t len[3];
u_int8_t control;
};
struct scsi_window_header {
u_int8_t reserved[6];
u_int8_t len[2];
};
struct scsi_window_data {
u_int8_t window_id; /* must be zero */
u_int8_t res1:7;
u_int8_t auto_bit:1;
u_int8_t x_res[2];
u_int8_t y_res[2];
u_int8_t x_org[4];
u_int8_t y_org[4];
u_int8_t width[4];
u_int8_t length[4];
u_int8_t brightness;
u_int8_t threshold;
u_int8_t contrast;
u_int8_t image_comp; /* image composition (data type) */
u_int8_t bits_per_pixel;
u_int8_t halftone_pattern[2];
u_int8_t rif:1; /* reverse image format (mono negative) */
u_int8_t res2:4;
u_int8_t pad_type:3;
u_int8_t bit_ordering[2];
u_int8_t compression_type;
u_int8_t compression_arg;
u_int8_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 */
#endif /* _SCSI_SCANNER_H_ */
/*
* 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
*/
#ifndef _SCSI_SCANNER_H_
#define _SCSI_SCANNER_H_
/* SCSI scanner commands */
#define GET_IMAGE_STATUS 0x0f
#define READ_BIG 0x28
#define WRITE_BIG 0x2a
#define OBJECT_POSITION 0x31
#define GET_BUFFER_STATUS 0x34
/* generic scanner command formats */
struct scsi_rw_scanner {
#define READ 0x08
#define WRITE 0x0a
u_char opcode;
u_char byte2;
#define SRW_FIXED 0x01
u_char len[3];
u_char control;
};
struct scsi_start_stop {
u_char opcode;
u_char byte2;
u_char unused[2];
u_char how;
#define SSS_STOP 0x00
#define SSS_START 0x01
#define SSS_LOEJ 0x02
u_char control;
};
struct scsi_set_window {
#define SET_WINDOW 0x24 /* set params of image area and windows */
#define GET_WINDOW 0x25
u_char opcode;
u_char byte2;
u_char reserved[4];
u_char len[3];
u_char control;
};
struct scsi_window_header {
u_char reserved[6];
u_char len[2]; /* MSB-LSB */
};
struct scsi_window_data {
u_char window_id; /* must be zero */
u_char res1:7;
u_char auto_bit:1;
u_char x_res[2];
u_char y_res[2];
u_char x_org[4];
u_char y_org[4];
u_char width[4];
u_char length[4];
u_char brightness;
u_char threshold;
u_char contrast;
u_char image_comp; /* image composition (data type) */
u_char bits_per_pixel;
u_char halftone_pattern[2];
u_char rif:1; /* reverse image format (mono negative) */
u_char res2:4;
u_char pad_type:3;
u_char bit_ordering[2];
u_char compression_type;
u_char compression_arg;
u_char 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 */
#endif /* _SCSI_SCANNER_H_ */
|