1
2
3
4
5
6
7
8
9 #ifndef _LINUX_CDROM_H
10 #define _LINUX_CDROM_H
11
12
13
14
15 #define CD_MINS 74
16 #define CD_SECS 60
17 #define CD_FRAMES 75
18
19 #define CD_SYNC_SIZE 12
20 #define CD_HEAD_SIZE 4
21 #define CD_SUBHEAD_SIZE 8
22 #define CD_XA_HEAD (CD_HEAD_SIZE+CD_SUBHEAD_SIZE)
23 #define CD_XA_SYNC_HEAD (CD_SYNC_SIZE+CD_XA_HEAD)
24
25 #define CD_FRAMESIZE 2048
26 #define CD_FRAMESIZE_RAW 2352
27
28 #define CD_FRAMESIZE_RAW1 (CD_FRAMESIZE_RAW-CD_SYNC_SIZE)
29 #define CD_FRAMESIZE_RAW0 (CD_FRAMESIZE_RAW-CD_SYNC_SIZE-CD_HEAD_SIZE)
30
31 #define CD_FRAMESIZE_RAWER 2646
32
33 #define CD_EDC_SIZE 4
34 #define CD_ZERO_SIZE 8
35 #define CD_ECC_SIZE 276
36 #define CD_XA_TAIL (CD_EDC_SIZE+CD_ECC_SIZE)
37
38 #define CD_FRAMESIZE_SUB 96
39 #define CD_MSF_OFFSET 150
40
41 #define CD_CHUNK_SIZE 24
42 #define CD_NUM_OF_CHUNKS 98
43
44 #define CD_FRAMESIZE_XA CD_FRAMESIZE_RAW1
45 #define CD_BLOCK_OFFSET CD_MSF_OFFSET
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 struct cdrom_blk
71 {
72 unsigned from;
73 unsigned short len;
74 };
75
76
77 struct cdrom_msf
78 {
79 u_char cdmsf_min0;
80 u_char cdmsf_sec0;
81 u_char cdmsf_frame0;
82 u_char cdmsf_min1;
83 u_char cdmsf_sec1;
84 u_char cdmsf_frame1;
85 };
86
87 struct cdrom_ti
88 {
89 u_char cdti_trk0;
90 u_char cdti_ind0;
91 u_char cdti_trk1;
92 u_char cdti_ind1;
93 };
94
95 struct cdrom_tochdr
96 {
97 u_char cdth_trk0;
98 u_char cdth_trk1;
99 };
100
101 struct cdrom_msf0
102 {
103 u_char minute;
104 u_char second;
105 u_char frame;
106 };
107
108 union cdrom_addr
109 {
110 struct cdrom_msf0 msf;
111 int lba;
112 };
113
114 struct cdrom_tocentry
115 {
116 u_char cdte_track;
117 u_char cdte_adr :4;
118 u_char cdte_ctrl :4;
119 u_char cdte_format;
120 union cdrom_addr cdte_addr;
121 u_char cdte_datamode;
122 };
123
124
125
126
127 #define CDROM_LBA 0x01
128 #define CDROM_MSF 0x02
129
130
131
132
133 #define CDROM_DATA_TRACK 0x04
134
135
136
137
138 #define CDROM_LEADOUT 0xAA
139
140 struct cdrom_subchnl
141 {
142 u_char cdsc_format;
143 u_char cdsc_audiostatus;
144 u_char cdsc_adr: 4;
145 u_char cdsc_ctrl: 4;
146 u_char cdsc_trk;
147 u_char cdsc_ind;
148 union cdrom_addr cdsc_absaddr;
149 union cdrom_addr cdsc_reladdr;
150 };
151
152
153
154
155 #define CDROM_AUDIO_INVALID 0x00
156 #define CDROM_AUDIO_PLAY 0x11
157 #define CDROM_AUDIO_PAUSED 0x12
158 #define CDROM_AUDIO_COMPLETED 0x13
159 #define CDROM_AUDIO_ERROR 0x14
160 #define CDROM_AUDIO_NO_STATUS 0x15
161
162 struct cdrom_volctrl
163 {
164 u_char channel0;
165 u_char channel1;
166 u_char channel2;
167 u_char channel3;
168 };
169
170 struct cdrom_read
171 {
172 int cdread_lba;
173 caddr_t cdread_bufaddr;
174 int cdread_buflen;
175 };
176
177
178
179
180
181 struct cdrom_read_audio
182 {
183 union cdrom_addr addr;
184 u_char addr_format;
185 int nframes;
186 u_char *buf;
187 };
188
189
190
191
192
193
194 struct cdrom_multisession
195 {
196 union cdrom_addr addr;
197 u_char xa_flag;
198 u_char addr_format;
199 };
200
201 #ifdef FIVETWELVE
202 #define CDROM_MODE1_SIZE 512
203 #else
204 #define CDROM_MODE1_SIZE 2048
205 #endif FIVETWELVE
206 #define CDROM_MODE2_SIZE 2336
207
208
209
210
211
212
213 #define CDROMPAUSE 0x5301
214 #define CDROMRESUME 0x5302
215 #define CDROMPLAYMSF 0x5303
216 #define CDROMPLAYTRKIND 0x5304
217
218 #define CDROMREADTOCHDR 0x5305
219 #define CDROMREADTOCENTRY 0x5306
220
221 #define CDROMSTOP 0x5307
222 #define CDROMSTART 0x5308
223
224 #define CDROMEJECT 0x5309
225
226 #define CDROMVOLCTRL 0x530a
227
228 #define CDROMSUBCHNL 0x530b
229
230 #define CDROMREADMODE2 0x530c
231
232
233 #define CDROMREADMODE1 0x530d
234
235
236 #define CDROMREADAUDIO 0x530e
237
238
239
240
241 #define CDROMEJECT_SW 0x530f
242
243
244
245
246 #define CDROMMULTISESSION 0x5310
247
248
249
250
251
252 #define CDROM_GET_UPC 0x5311
253
254 #define CDROMRESET 0x5312
255 #define CDROMVOLREAD 0x5313
256
257
258
259
260
261 #define CDROMREADRAW 0x5314
262 #define CDROMREADCOOKED 0x5315
263 #define CDROMSEEK 0x5316
264
265
266
267
268 #define CDROMPLAYBLK 0x5317
269
270
271
272
273 #define CDROMREADALL 0x5318
274 #define CDROMCLOSETRAY 0x5319
275
276
277
278
279
280
281
282
283
284 #define SCMD_READ_TOC 0x43
285 #define SCMD_PLAYAUDIO_MSF 0x47
286 #define SCMD_PLAYAUDIO_TI 0x48
287 #define SCMD_PAUSE_RESUME 0x4B
288 #define SCMD_READ_SUBCHANNEL 0x42
289 #define SCMD_PLAYAUDIO10 0x45
290 #define SCMD_READ_HEADER 0x44
291
292
293
294
295 #define SCMD_PLAYAUDIO12 0xA5
296 #define SCMD_PLAYTRACK_REL12 0xA9
297
298
299
300
301 #define SCMD_CD_PLAYBACK_CONTROL 0xC9
302 #define SCMD_CD_PLAYBACK_STATUS 0xC4
303
304
305
306
307 struct scsi_capacity
308 {
309 u_long capacity;
310 u_long lbasize;
311 };
312
313
314
315
316 #define ERR_RECOVERY_PARMS 0x01
317 #define DISCO_RECO_PARMS 0x02
318 #define FORMAT_PARMS 0x03
319 #define GEOMETRY_PARMS 0x04
320 #define CERTIFICATION_PARMS 0x06
321 #define CACHE_PARMS 0x38
322
323
324
325
326 struct ccs_modesel_head
327 {
328 u_char _r1;
329 u_char medium;
330 u_char _r2;
331 u_char block_desc_length;
332 u_char density;
333 u_char number_blocks_hi;
334 u_char number_blocks_med;
335 u_char number_blocks_lo;
336 u_char _r3;
337 u_char block_length_hi;
338 u_short block_length;
339 };
340
341
342
343
344 struct ccs_err_recovery
345 {
346 u_char _r1 : 2;
347 u_char page_code : 6;
348 u_char page_length;
349 u_char awre : 1;
350 u_char arre : 1;
351 u_char tb : 1;
352 u_char rc : 1;
353 u_char eec : 1;
354 u_char per : 1;
355 u_char dte : 1;
356 u_char dcr : 1;
357 u_char retry_count;
358 u_char correction_span;
359 u_char head_offset_count;
360 u_char strobe_offset_count;
361 u_char recovery_time_limit;
362 };
363
364
365
366
367 struct ccs_disco_reco
368 {
369 u_char _r1 : 2;
370 u_char page_code : 6;
371 u_char page_length;
372 u_char buffer_full_ratio;
373 u_char buffer_empty_ratio;
374 u_short bus_inactivity_limit;
375 u_short disconnect_time_limit;
376 u_short connect_time_limit;
377 u_short _r2;
378 };
379
380
381
382
383 struct ccs_geometry
384 {
385 u_char _r1 : 2;
386 u_char page_code : 6;
387 u_char page_length;
388 u_char cyl_ub;
389 u_char cyl_mb;
390 u_char cyl_lb;
391 u_char heads;
392 u_char precomp_cyl_ub;
393 u_char precomp_cyl_mb;
394 u_char precomp_cyl_lb;
395 u_char current_cyl_ub;
396 u_char current_cyl_mb;
397 u_char current_cyl_lb;
398 u_short step_rate;
399 u_char landing_cyl_ub;
400 u_char landing_cyl_mb;
401 u_char landing_cyl_lb;
402 u_char _r2;
403 u_char _r3;
404 u_char _r4;
405 };
406
407
408
409
410 struct ccs_cache
411 {
412 u_char _r1 : 2;
413 u_char page_code : 6;
414 u_char page_length;
415 u_char mode;
416 u_char threshold;
417 u_char max_prefetch;
418 u_char max_multiplier;
419 u_char min_prefetch;
420 u_char min_multiplier;
421 u_char _r2[8];
422 };
423
424 #endif _LINUX_CDROM_H
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441