cdrom.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:35k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * -- <linux/cdrom.h>
  3.  * General header file for linux CD-ROM drivers 
  4.  * Copyright (C) 1992         David Giller, rafetmad@oxy.edu
  5.  *               1994, 1995   Eberhard Moenkeberg, emoenke@gwdg.de
  6.  *               1996         David van Leeuwen, david@tm.tno.nl
  7.  *               1997, 1998   Erik Andersen, andersee@debian.org
  8.  *               1998-2002    Jens Axboe, axboe@suse.de
  9.  */
  10.  
  11. #ifndef _LINUX_CDROM_H
  12. #define _LINUX_CDROM_H
  13. #include <asm/byteorder.h>
  14. /*******************************************************
  15.  * As of Linux 2.1.x, all Linux CD-ROM application programs will use this 
  16.  * (and only this) include file.  It is my hope to provide Linux with
  17.  * a uniform interface between software accessing CD-ROMs and the various 
  18.  * device drivers that actually talk to the drives.  There may still be
  19.  * 23 different kinds of strange CD-ROM drives, but at least there will 
  20.  * now be one, and only one, Linux CD-ROM interface.
  21.  *
  22.  * Additionally, as of Linux 2.1.x, all Linux application programs 
  23.  * should use the O_NONBLOCK option when opening a CD-ROM device 
  24.  * for subsequent ioctl commands.  This allows for neat system errors 
  25.  * like "No medium found" or "Wrong medium type" upon attempting to 
  26.  * mount or play an empty slot, mount an audio disc, or play a data disc.
  27.  * Generally, changing an application program to support O_NONBLOCK
  28.  * is as easy as the following:
  29.  *       -    drive = open("/dev/cdrom", O_RDONLY);
  30.  *       +    drive = open("/dev/cdrom", O_RDONLY | O_NONBLOCK);
  31.  * It is worth the small change.
  32.  *
  33.  *  Patches for many common CD programs (provided by David A. van Leeuwen)
  34.  *  can be found at:  ftp://ftp.gwdg.de/pub/linux/cdrom/drivers/cm206/
  35.  * 
  36.  *******************************************************/
  37. /* When a driver supports a certain function, but the cdrom drive we are 
  38.  * using doesn't, we will return the error EDRIVE_CANT_DO_THIS.  We will 
  39.  * borrow the "Operation not supported" error from the network folks to 
  40.  * accomplish this.  Maybe someday we will get a more targeted error code, 
  41.  * but this will do for now... */
  42. #define EDRIVE_CANT_DO_THIS  EOPNOTSUPP
  43. /*******************************************************
  44.  * The CD-ROM IOCTL commands  -- these should be supported by 
  45.  * all the various cdrom drivers.  For the CD-ROM ioctls, we 
  46.  * will commandeer byte 0x53, or 'S'.
  47.  *******************************************************/
  48. #define CDROMPAUSE 0x5301 /* Pause Audio Operation */ 
  49. #define CDROMRESUME 0x5302 /* Resume paused Audio Operation */
  50. #define CDROMPLAYMSF 0x5303 /* Play Audio MSF (struct cdrom_msf) */
  51. #define CDROMPLAYTRKIND 0x5304 /* Play Audio Track/index 
  52.                                            (struct cdrom_ti) */
  53. #define CDROMREADTOCHDR 0x5305 /* Read TOC header 
  54.                                            (struct cdrom_tochdr) */
  55. #define CDROMREADTOCENTRY 0x5306 /* Read TOC entry 
  56.                                            (struct cdrom_tocentry) */
  57. #define CDROMSTOP 0x5307 /* Stop the cdrom drive */
  58. #define CDROMSTART 0x5308 /* Start the cdrom drive */
  59. #define CDROMEJECT 0x5309 /* Ejects the cdrom media */
  60. #define CDROMVOLCTRL 0x530a /* Control output volume 
  61.                                            (struct cdrom_volctrl) */
  62. #define CDROMSUBCHNL 0x530b /* Read subchannel data 
  63.                                            (struct cdrom_subchnl) */
  64. #define CDROMREADMODE2 0x530c /* Read CDROM mode 2 data (2336 Bytes) 
  65.                                            (struct cdrom_read) */
  66. #define CDROMREADMODE1 0x530d /* Read CDROM mode 1 data (2048 Bytes)
  67.                                            (struct cdrom_read) */
  68. #define CDROMREADAUDIO 0x530e /* (struct cdrom_read_audio) */
  69. #define CDROMEJECT_SW 0x530f /* enable(1)/disable(0) auto-ejecting */
  70. #define CDROMMULTISESSION 0x5310 /* Obtain the start-of-last-session 
  71.                                            address of multi session disks 
  72.                                            (struct cdrom_multisession) */
  73. #define CDROM_GET_MCN 0x5311 /* Obtain the "Universal Product Code" 
  74.                                            if available (struct cdrom_mcn) */
  75. #define CDROM_GET_UPC CDROM_GET_MCN  /* This one is depricated, 
  76.                                           but here anyway for compatibility */
  77. #define CDROMRESET 0x5312 /* hard-reset the drive */
  78. #define CDROMVOLREAD 0x5313 /* Get the drive's volume setting 
  79.                                           (struct cdrom_volctrl) */
  80. #define CDROMREADRAW 0x5314 /* read data in raw mode (2352 Bytes)
  81.                                            (struct cdrom_read) */
  82. /* 
  83.  * These ioctls are used only used in aztcd.c and optcd.c
  84.  */
  85. #define CDROMREADCOOKED 0x5315 /* read data in cooked mode */
  86. #define CDROMSEEK 0x5316  /* seek msf address */
  87.   
  88. /*
  89.  * This ioctl is only used by the scsi-cd driver.  
  90.    It is for playing audio in logical block addressing mode.
  91.  */
  92. #define CDROMPLAYBLK 0x5317 /* (struct cdrom_blk) */
  93. /* 
  94.  * These ioctls are only used in optcd.c
  95.  */
  96. #define CDROMREADALL 0x5318 /* read all 2646 bytes */
  97. /* 
  98.  * These ioctls are (now) only in ide-cd.c for controlling 
  99.  * drive spindown time.  They should be implemented in the
  100.  * Uniform driver, via generic packet commands, GPCMD_MODE_SELECT_10,
  101.  * GPCMD_MODE_SENSE_10 and the GPMODE_POWER_PAGE...
  102.  *  -Erik
  103.  */
  104. #define CDROMGETSPINDOWN        0x531d
  105. #define CDROMSETSPINDOWN        0x531e
  106. /* 
  107.  * These ioctls are implemented through the uniform CD-ROM driver
  108.  * They _will_ be adopted by all CD-ROM drivers, when all the CD-ROM
  109.  * drivers are eventually ported to the uniform CD-ROM driver interface.
  110.  */
  111. #define CDROMCLOSETRAY 0x5319 /* pendant of CDROMEJECT */
  112. #define CDROM_SET_OPTIONS 0x5320  /* Set behavior options */
  113. #define CDROM_CLEAR_OPTIONS 0x5321  /* Clear behavior options */
  114. #define CDROM_SELECT_SPEED 0x5322  /* Set the CD-ROM speed */
  115. #define CDROM_SELECT_DISC 0x5323  /* Select disc (for juke-boxes) */
  116. #define CDROM_MEDIA_CHANGED 0x5325  /* Check is media changed  */
  117. #define CDROM_DRIVE_STATUS 0x5326  /* Get tray position, etc. */
  118. #define CDROM_DISC_STATUS 0x5327  /* Get disc type, etc. */
  119. #define CDROM_CHANGER_NSLOTS    0x5328  /* Get number of slots */
  120. #define CDROM_LOCKDOOR 0x5329  /* lock or unlock door */
  121. #define CDROM_DEBUG 0x5330 /* Turn debug messages on/off */
  122. #define CDROM_GET_CAPABILITY 0x5331 /* get capabilities */
  123. /* Note that scsi/scsi_ioctl.h also uses 0x5382 - 0x5386.
  124.  * Future CDROM ioctls should be kept below 0x537F
  125.  */
  126. /* This ioctl is only used by sbpcd at the moment */
  127. #define CDROMAUDIOBUFSIZ        0x5382 /* set the audio buffer size */
  128. /* conflict with SCSI_IOCTL_GET_IDLUN */
  129. /* DVD-ROM Specific ioctls */
  130. #define DVD_READ_STRUCT 0x5390  /* Read structure */
  131. #define DVD_WRITE_STRUCT 0x5391  /* Write structure */
  132. #define DVD_AUTH 0x5392  /* Authentication */
  133. #define CDROM_SEND_PACKET 0x5393 /* send a packet to the drive */
  134. #define CDROM_NEXT_WRITABLE 0x5394 /* get next writable block */
  135. #define CDROM_LAST_WRITTEN 0x5395 /* get last block written on disc */
  136. /*******************************************************
  137.  * CDROM IOCTL structures
  138.  *******************************************************/
  139. /* Address in MSF format */
  140. struct cdrom_msf0
  141. {
  142. __u8 minute;
  143. __u8 second;
  144. __u8 frame;
  145. };
  146. /* Address in either MSF or logical format */
  147. union cdrom_addr
  148. {
  149. struct cdrom_msf0 msf;
  150. int lba;
  151. };
  152. /* This struct is used by the CDROMPLAYMSF ioctl */ 
  153. struct cdrom_msf 
  154. {
  155. __u8 cdmsf_min0; /* start minute */
  156. __u8 cdmsf_sec0; /* start second */
  157. __u8 cdmsf_frame0; /* start frame */
  158. __u8 cdmsf_min1; /* end minute */
  159. __u8 cdmsf_sec1; /* end second */
  160. __u8 cdmsf_frame1; /* end frame */
  161. };
  162. /* This struct is used by the CDROMPLAYTRKIND ioctl */
  163. struct cdrom_ti 
  164. {
  165. __u8 cdti_trk0; /* start track */
  166. __u8 cdti_ind0; /* start index */
  167. __u8 cdti_trk1; /* end track */
  168. __u8 cdti_ind1; /* end index */
  169. };
  170. /* This struct is used by the CDROMREADTOCHDR ioctl */
  171. struct cdrom_tochdr 
  172. {
  173. __u8 cdth_trk0; /* start track */
  174. __u8 cdth_trk1; /* end track */
  175. };
  176. /* This struct is used by the CDROMVOLCTRL and CDROMVOLREAD ioctls */
  177. struct cdrom_volctrl
  178. {
  179. __u8 channel0;
  180. __u8 channel1;
  181. __u8 channel2;
  182. __u8 channel3;
  183. };
  184. /* This struct is used by the CDROMSUBCHNL ioctl */
  185. struct cdrom_subchnl 
  186. {
  187. __u8 cdsc_format;
  188. __u8 cdsc_audiostatus;
  189. __u8 cdsc_adr: 4;
  190. __u8 cdsc_ctrl: 4;
  191. __u8 cdsc_trk;
  192. __u8 cdsc_ind;
  193. union cdrom_addr cdsc_absaddr;
  194. union cdrom_addr cdsc_reladdr;
  195. };
  196. /* This struct is used by the CDROMREADTOCENTRY ioctl */
  197. struct cdrom_tocentry 
  198. {
  199. __u8 cdte_track;
  200. __u8 cdte_adr :4;
  201. __u8 cdte_ctrl :4;
  202. __u8 cdte_format;
  203. union cdrom_addr cdte_addr;
  204. __u8 cdte_datamode;
  205. };
  206. /* This struct is used by the CDROMREADMODE1, and CDROMREADMODE2 ioctls */
  207. struct cdrom_read      
  208. {
  209. int cdread_lba;
  210. char  *cdread_bufaddr;
  211. int cdread_buflen;
  212. };
  213. /* This struct is used by the CDROMREADAUDIO ioctl */
  214. struct cdrom_read_audio
  215. {
  216. union cdrom_addr addr; /* frame address */
  217. __u8 addr_format;      /* CDROM_LBA or CDROM_MSF */
  218. int nframes;           /* number of 2352-byte-frames to read at once */
  219. __u8 __user *buf;      /* frame buffer (size: nframes*2352 bytes) */
  220. };
  221. /* This struct is used with the CDROMMULTISESSION ioctl */
  222. struct cdrom_multisession
  223. {
  224. union cdrom_addr addr; /* frame address: start-of-last-session 
  225.                            (not the new "frame 16"!).  Only valid
  226.                            if the "xa_flag" is true. */
  227. __u8 xa_flag;        /* 1: "is XA disk" */
  228. __u8 addr_format;    /* CDROM_LBA or CDROM_MSF */
  229. };
  230. /* This struct is used with the CDROM_GET_MCN ioctl.  
  231.  * Very few audio discs actually have Universal Product Code information, 
  232.  * which should just be the Medium Catalog Number on the box.  Also note 
  233.  * that the way the codeis written on CD is _not_ uniform across all discs!
  234.  */  
  235. struct cdrom_mcn 
  236. {
  237.   __u8 medium_catalog_number[14]; /* 13 ASCII digits, null-terminated */
  238. };
  239. /* This is used by the CDROMPLAYBLK ioctl */
  240. struct cdrom_blk 
  241. {
  242. unsigned from;
  243. unsigned short len;
  244. };
  245. #define CDROM_PACKET_SIZE 12
  246. #define CGC_DATA_UNKNOWN 0
  247. #define CGC_DATA_WRITE 1
  248. #define CGC_DATA_READ 2
  249. #define CGC_DATA_NONE 3
  250. /* for CDROM_PACKET_COMMAND ioctl */
  251. struct cdrom_generic_command
  252. {
  253. unsigned char  cmd[CDROM_PACKET_SIZE];
  254. unsigned char __user *buffer;
  255. unsigned int  buflen;
  256. int stat;
  257. struct request_sense __user *sense;
  258. unsigned char data_direction;
  259. int quiet;
  260. int timeout;
  261. void __user *reserved[1]; /* unused, actually */
  262. };
  263. /*
  264.  * A CD-ROM physical sector size is 2048, 2052, 2056, 2324, 2332, 2336, 
  265.  * 2340, or 2352 bytes long.  
  266. *         Sector types of the standard CD-ROM data formats:
  267.  *
  268.  * format   sector type               user data size (bytes)
  269.  * -----------------------------------------------------------------------------
  270.  *   1     (Red Book)    CD-DA          2352    (CD_FRAMESIZE_RAW)
  271.  *   2     (Yellow Book) Mode1 Form1    2048    (CD_FRAMESIZE)
  272.  *   3     (Yellow Book) Mode1 Form2    2336    (CD_FRAMESIZE_RAW0)
  273.  *   4     (Green Book)  Mode2 Form1    2048    (CD_FRAMESIZE)
  274.  *   5     (Green Book)  Mode2 Form2    2328    (2324+4 spare bytes)
  275.  *
  276.  *
  277.  *       The layout of the standard CD-ROM data formats:
  278.  * -----------------------------------------------------------------------------
  279.  * - audio (red):                  | audio_sample_bytes |
  280.  *                                 |        2352        |
  281.  *
  282.  * - data (yellow, mode1):         | sync - head - data - EDC - zero - ECC |
  283.  *                                 |  12  -   4  - 2048 -  4  -   8  - 276 |
  284.  *
  285.  * - data (yellow, mode2):         | sync - head - data |
  286.  *                                 |  12  -   4  - 2336 |
  287.  *
  288.  * - XA data (green, mode2 form1): | sync - head - sub - data - EDC - ECC |
  289.  *                                 |  12  -   4  -  8  - 2048 -  4  - 276 |
  290.  *
  291.  * - XA data (green, mode2 form2): | sync - head - sub - data - Spare |
  292.  *                                 |  12  -   4  -  8  - 2324 -  4    |
  293.  *
  294.  */
  295. /* Some generally useful CD-ROM information -- mostly based on the above */
  296. #define CD_MINS              74 /* max. minutes per CD, not really a limit */
  297. #define CD_SECS              60 /* seconds per minute */
  298. #define CD_FRAMES            75 /* frames per second */
  299. #define CD_SYNC_SIZE         12 /* 12 sync bytes per raw data frame */
  300. #define CD_MSF_OFFSET       150 /* MSF numbering offset of first frame */
  301. #define CD_CHUNK_SIZE        24 /* lowest-level "data bytes piece" */
  302. #define CD_NUM_OF_CHUNKS     98 /* chunks per frame */
  303. #define CD_FRAMESIZE_SUB     96 /* subchannel data "frame" size */
  304. #define CD_HEAD_SIZE          4 /* header (address) bytes per raw data frame */
  305. #define CD_SUBHEAD_SIZE       8 /* subheader bytes per raw XA data frame */
  306. #define CD_EDC_SIZE           4 /* bytes EDC per most raw data frame types */
  307. #define CD_ZERO_SIZE          8 /* bytes zero per yellow book mode 1 frame */
  308. #define CD_ECC_SIZE         276 /* bytes ECC per most raw data frame types */
  309. #define CD_FRAMESIZE       2048 /* bytes per frame, "cooked" mode */
  310. #define CD_FRAMESIZE_RAW   2352 /* bytes per frame, "raw" mode */
  311. #define CD_FRAMESIZE_RAWER 2646 /* The maximum possible returned bytes */ 
  312. /* most drives don't deliver everything: */
  313. #define CD_FRAMESIZE_RAW1 (CD_FRAMESIZE_RAW-CD_SYNC_SIZE) /*2340*/
  314. #define CD_FRAMESIZE_RAW0 (CD_FRAMESIZE_RAW-CD_SYNC_SIZE-CD_HEAD_SIZE) /*2336*/
  315. #define CD_XA_HEAD        (CD_HEAD_SIZE+CD_SUBHEAD_SIZE) /* "before data" part of raw XA frame */
  316. #define CD_XA_TAIL        (CD_EDC_SIZE+CD_ECC_SIZE) /* "after data" part of raw XA frame */
  317. #define CD_XA_SYNC_HEAD   (CD_SYNC_SIZE+CD_XA_HEAD) /* sync bytes + header of XA frame */
  318. /* CD-ROM address types (cdrom_tocentry.cdte_format) */
  319. #define CDROM_LBA 0x01 /* "logical block": first frame is #0 */
  320. #define CDROM_MSF 0x02 /* "minute-second-frame": binary, not bcd here! */
  321. /* bit to tell whether track is data or audio (cdrom_tocentry.cdte_ctrl) */
  322. #define CDROM_DATA_TRACK 0x04
  323. /* The leadout track is always 0xAA, regardless of # of tracks on disc */
  324. #define CDROM_LEADOUT 0xAA
  325. /* audio states (from SCSI-2, but seen with other drives, too) */
  326. #define CDROM_AUDIO_INVALID 0x00 /* audio status not supported */
  327. #define CDROM_AUDIO_PLAY 0x11 /* audio play operation in progress */
  328. #define CDROM_AUDIO_PAUSED 0x12 /* audio play operation paused */
  329. #define CDROM_AUDIO_COMPLETED 0x13 /* audio play successfully completed */
  330. #define CDROM_AUDIO_ERROR 0x14 /* audio play stopped due to error */
  331. #define CDROM_AUDIO_NO_STATUS 0x15 /* no current audio status to return */
  332. /* capability flags used with the uniform CD-ROM driver */ 
  333. #define CDC_CLOSE_TRAY 0x1     /* caddy systems _can't_ close */
  334. #define CDC_OPEN_TRAY 0x2     /* but _can_ eject.  */
  335. #define CDC_LOCK 0x4     /* disable manual eject */
  336. #define CDC_SELECT_SPEED  0x8     /* programmable speed */
  337. #define CDC_SELECT_DISC 0x10    /* select disc from juke-box */
  338. #define CDC_MULTI_SESSION  0x20    /* read sessions>1 */
  339. #define CDC_MCN 0x40    /* Medium Catalog Number */
  340. #define CDC_MEDIA_CHANGED  0x80    /* media changed */
  341. #define CDC_PLAY_AUDIO 0x100   /* audio functions */
  342. #define CDC_RESET               0x200   /* hard reset device */
  343. #define CDC_IOCTLS              0x400   /* driver has non-standard ioctls */
  344. #define CDC_DRIVE_STATUS        0x800   /* driver implements drive status */
  345. #define CDC_GENERIC_PACKET 0x1000 /* driver implements generic packets */
  346. #define CDC_CD_R 0x2000 /* drive is a CD-R */
  347. #define CDC_CD_RW 0x4000 /* drive is a CD-RW */
  348. #define CDC_DVD 0x8000 /* drive is a DVD */
  349. #define CDC_DVD_R 0x10000 /* drive can write DVD-R */
  350. #define CDC_DVD_RAM 0x20000 /* drive can write DVD-RAM */
  351. #define CDC_MO_DRIVE 0x40000 /* drive is an MO device */
  352. #define CDC_MRW 0x80000 /* drive can read MRW */
  353. #define CDC_MRW_W 0x100000 /* drive can write MRW */
  354. #define CDC_RAM 0x200000 /* ok to open for WRITE */
  355. /* drive status possibilities returned by CDROM_DRIVE_STATUS ioctl */
  356. #define CDS_NO_INFO 0 /* if not implemented */
  357. #define CDS_NO_DISC 1
  358. #define CDS_TRAY_OPEN 2
  359. #define CDS_DRIVE_NOT_READY 3
  360. #define CDS_DISC_OK 4
  361. /* return values for the CDROM_DISC_STATUS ioctl */
  362. /* can also return CDS_NO_[INFO|DISC], from above */
  363. #define CDS_AUDIO 100
  364. #define CDS_DATA_1 101
  365. #define CDS_DATA_2 102
  366. #define CDS_XA_2_1 103
  367. #define CDS_XA_2_2 104
  368. #define CDS_MIXED 105
  369. /* User-configurable behavior options for the uniform CD-ROM driver */
  370. #define CDO_AUTO_CLOSE 0x1     /* close tray on first open() */
  371. #define CDO_AUTO_EJECT 0x2     /* open tray on last release() */
  372. #define CDO_USE_FFLAGS 0x4     /* use O_NONBLOCK information on open */
  373. #define CDO_LOCK 0x8     /* lock tray on open files */
  374. #define CDO_CHECK_TYPE 0x10    /* check type on open for data */
  375. /* Special codes used when specifying changer slots. */
  376. #define CDSL_NONE        ((int) (~0U>>1)-1)
  377. #define CDSL_CURRENT     ((int) (~0U>>1))
  378. /* For partition based multisession access. IDE can handle 64 partitions
  379.  * per drive - SCSI CD-ROM's use minors to differentiate between the
  380.  * various drives, so we can't do multisessions the same way there.
  381.  * Use the -o session=x option to mount on them.
  382.  */
  383. #define CD_PART_MAX 64
  384. #define CD_PART_MASK (CD_PART_MAX - 1)
  385. /*********************************************************************
  386.  * Generic Packet commands, MMC commands, and such
  387.  *********************************************************************/
  388.  /* The generic packet command opcodes for CD/DVD Logical Units,
  389.  * From Table 57 of the SFF8090 Ver. 3 (Mt. Fuji) draft standard. */
  390. #define GPCMD_BLANK     0xa1
  391. #define GPCMD_CLOSE_TRACK     0x5b
  392. #define GPCMD_FLUSH_CACHE     0x35
  393. #define GPCMD_FORMAT_UNIT     0x04
  394. #define GPCMD_GET_CONFIGURATION     0x46
  395. #define GPCMD_GET_EVENT_STATUS_NOTIFICATION 0x4a
  396. #define GPCMD_GET_PERFORMANCE     0xac
  397. #define GPCMD_INQUIRY     0x12
  398. #define GPCMD_LOAD_UNLOAD     0xa6
  399. #define GPCMD_MECHANISM_STATUS     0xbd
  400. #define GPCMD_MODE_SELECT_10     0x55
  401. #define GPCMD_MODE_SENSE_10     0x5a
  402. #define GPCMD_PAUSE_RESUME     0x4b
  403. #define GPCMD_PLAY_AUDIO_10     0x45
  404. #define GPCMD_PLAY_AUDIO_MSF     0x47
  405. #define GPCMD_PLAY_AUDIO_TI     0x48
  406. #define GPCMD_PLAY_CD     0xbc
  407. #define GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL  0x1e
  408. #define GPCMD_READ_10     0x28
  409. #define GPCMD_READ_12     0xa8
  410. #define GPCMD_READ_BUFFER_CAPACITY     0x5c
  411. #define GPCMD_READ_CDVD_CAPACITY     0x25
  412. #define GPCMD_READ_CD     0xbe
  413. #define GPCMD_READ_CD_MSF     0xb9
  414. #define GPCMD_READ_DISC_INFO     0x51
  415. #define GPCMD_READ_DVD_STRUCTURE     0xad
  416. #define GPCMD_READ_FORMAT_CAPACITIES     0x23
  417. #define GPCMD_READ_HEADER     0x44
  418. #define GPCMD_READ_TRACK_RZONE_INFO     0x52
  419. #define GPCMD_READ_SUBCHANNEL     0x42
  420. #define GPCMD_READ_TOC_PMA_ATIP     0x43
  421. #define GPCMD_REPAIR_RZONE_TRACK     0x58
  422. #define GPCMD_REPORT_KEY     0xa4
  423. #define GPCMD_REQUEST_SENSE     0x03
  424. #define GPCMD_RESERVE_RZONE_TRACK     0x53
  425. #define GPCMD_SEND_CUE_SHEET     0x5d
  426. #define GPCMD_SCAN     0xba
  427. #define GPCMD_SEEK     0x2b
  428. #define GPCMD_SEND_DVD_STRUCTURE     0xbf
  429. #define GPCMD_SEND_EVENT     0xa2
  430. #define GPCMD_SEND_KEY     0xa3
  431. #define GPCMD_SEND_OPC     0x54
  432. #define GPCMD_SET_READ_AHEAD     0xa7
  433. #define GPCMD_SET_STREAMING     0xb6
  434. #define GPCMD_START_STOP_UNIT     0x1b
  435. #define GPCMD_STOP_PLAY_SCAN     0x4e
  436. #define GPCMD_TEST_UNIT_READY     0x00
  437. #define GPCMD_VERIFY_10     0x2f
  438. #define GPCMD_WRITE_10     0x2a
  439. #define GPCMD_WRITE_AND_VERIFY_10     0x2e
  440. /* This is listed as optional in ATAPI 2.6, but is (curiously) 
  441.  * missing from Mt. Fuji, Table 57.  It _is_ mentioned in Mt. Fuji
  442.  * Table 377 as an MMC command for SCSi devices though...  Most ATAPI
  443.  * drives support it. */
  444. #define GPCMD_SET_SPEED     0xbb
  445. /* This seems to be a SCSI specific CD-ROM opcode 
  446.  * to play data at track/index */
  447. #define GPCMD_PLAYAUDIO_TI     0x48
  448. /*
  449.  * From MS Media Status Notification Support Specification. For
  450.  * older drives only.
  451.  */
  452. #define GPCMD_GET_MEDIA_STATUS     0xda
  453. /* Mode page codes for mode sense/set */
  454. #define GPMODE_VENDOR_PAGE 0x00
  455. #define GPMODE_R_W_ERROR_PAGE 0x01
  456. #define GPMODE_WRITE_PARMS_PAGE 0x05
  457. #define GPMODE_WCACHING_PAGE 0x08
  458. #define GPMODE_AUDIO_CTL_PAGE 0x0e
  459. #define GPMODE_POWER_PAGE 0x1a
  460. #define GPMODE_FAULT_FAIL_PAGE 0x1c
  461. #define GPMODE_TO_PROTECT_PAGE 0x1d
  462. #define GPMODE_CAPABILITIES_PAGE 0x2a
  463. #define GPMODE_ALL_PAGES 0x3f
  464. /* Not in Mt. Fuji, but in ATAPI 2.6 -- depricated now in favor
  465.  * of MODE_SENSE_POWER_PAGE */
  466. #define GPMODE_CDROM_PAGE 0x0d
  467. /* DVD struct types */
  468. #define DVD_STRUCT_PHYSICAL 0x00
  469. #define DVD_STRUCT_COPYRIGHT 0x01
  470. #define DVD_STRUCT_DISCKEY 0x02
  471. #define DVD_STRUCT_BCA 0x03
  472. #define DVD_STRUCT_MANUFACT 0x04
  473. struct dvd_layer {
  474. __u8 book_version : 4;
  475. __u8 book_type : 4;
  476. __u8 min_rate : 4;
  477. __u8 disc_size : 4;
  478. __u8 layer_type : 4;
  479. __u8 track_path : 1;
  480. __u8 nlayers : 2;
  481. __u8 track_density : 4;
  482. __u8 linear_density : 4;
  483. __u8 bca : 1;
  484. __u32 start_sector;
  485. __u32 end_sector;
  486. __u32 end_sector_l0;
  487. };
  488. #define DVD_LAYERS 4
  489. struct dvd_physical {
  490. __u8 type;
  491. __u8 layer_num;
  492. struct dvd_layer layer[DVD_LAYERS];
  493. };
  494. struct dvd_copyright {
  495. __u8 type;
  496. __u8 layer_num;
  497. __u8 cpst;
  498. __u8 rmi;
  499. };
  500. struct dvd_disckey {
  501. __u8 type;
  502. unsigned agid : 2;
  503. __u8 value[2048];
  504. };
  505. struct dvd_bca {
  506. __u8 type;
  507. int len;
  508. __u8 value[188];
  509. };
  510. struct dvd_manufact {
  511. __u8 type;
  512. __u8 layer_num;
  513. int len;
  514. __u8 value[2048];
  515. };
  516. typedef union {
  517. __u8 type;
  518. struct dvd_physical physical;
  519. struct dvd_copyright copyright;
  520. struct dvd_disckey disckey;
  521. struct dvd_bca bca;
  522. struct dvd_manufact manufact;
  523. } dvd_struct;
  524. /*
  525.  * DVD authentication ioctl
  526.  */
  527. /* Authentication states */
  528. #define DVD_LU_SEND_AGID 0
  529. #define DVD_HOST_SEND_CHALLENGE 1
  530. #define DVD_LU_SEND_KEY1 2
  531. #define DVD_LU_SEND_CHALLENGE 3
  532. #define DVD_HOST_SEND_KEY2 4
  533. /* Termination states */
  534. #define DVD_AUTH_ESTABLISHED 5
  535. #define DVD_AUTH_FAILURE 6
  536. /* Other functions */
  537. #define DVD_LU_SEND_TITLE_KEY 7
  538. #define DVD_LU_SEND_ASF 8
  539. #define DVD_INVALIDATE_AGID 9
  540. #define DVD_LU_SEND_RPC_STATE 10
  541. #define DVD_HOST_SEND_RPC_STATE 11
  542. /* State data */
  543. typedef __u8 dvd_key[5]; /* 40-bit value, MSB is first elem. */
  544. typedef __u8 dvd_challenge[10]; /* 80-bit value, MSB is first elem. */
  545. struct dvd_lu_send_agid {
  546. __u8 type;
  547. unsigned agid : 2;
  548. };
  549. struct dvd_host_send_challenge {
  550. __u8 type;
  551. unsigned agid : 2;
  552. dvd_challenge chal;
  553. };
  554. struct dvd_send_key {
  555. __u8 type;
  556. unsigned agid : 2;
  557. dvd_key key;
  558. };
  559. struct dvd_lu_send_challenge {
  560. __u8 type;
  561. unsigned agid : 2;
  562. dvd_challenge chal;
  563. };
  564. #define DVD_CPM_NO_COPYRIGHT 0
  565. #define DVD_CPM_COPYRIGHTED 1
  566. #define DVD_CP_SEC_NONE 0
  567. #define DVD_CP_SEC_EXIST 1
  568. #define DVD_CGMS_UNRESTRICTED 0
  569. #define DVD_CGMS_SINGLE 2
  570. #define DVD_CGMS_RESTRICTED 3
  571. struct dvd_lu_send_title_key {
  572. __u8 type;
  573. unsigned agid : 2;
  574. dvd_key title_key;
  575. int lba;
  576. unsigned cpm : 1;
  577. unsigned cp_sec : 1;
  578. unsigned cgms : 2;
  579. };
  580. struct dvd_lu_send_asf {
  581. __u8 type;
  582. unsigned agid : 2;
  583. unsigned asf : 1;
  584. };
  585. struct dvd_host_send_rpcstate {
  586. __u8 type;
  587. __u8 pdrc;
  588. };
  589. struct dvd_lu_send_rpcstate {
  590. __u8 type : 2;
  591. __u8 vra : 3;
  592. __u8 ucca : 3;
  593. __u8 region_mask;
  594. __u8 rpc_scheme;
  595. };
  596. typedef union {
  597. __u8 type;
  598. struct dvd_lu_send_agid lsa;
  599. struct dvd_host_send_challenge hsc;
  600. struct dvd_send_key lsk;
  601. struct dvd_lu_send_challenge lsc;
  602. struct dvd_send_key hsk;
  603. struct dvd_lu_send_title_key lstk;
  604. struct dvd_lu_send_asf lsasf;
  605. struct dvd_host_send_rpcstate hrpcs;
  606. struct dvd_lu_send_rpcstate lrpcs;
  607. } dvd_authinfo;
  608. struct request_sense {
  609. #if defined(__BIG_ENDIAN_BITFIELD)
  610. __u8 valid : 1;
  611. __u8 error_code : 7;
  612. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  613. __u8 error_code : 7;
  614. __u8 valid : 1;
  615. #endif
  616. __u8 segment_number;
  617. #if defined(__BIG_ENDIAN_BITFIELD)
  618. __u8 reserved1 : 2;
  619. __u8 ili : 1;
  620. __u8 reserved2 : 1;
  621. __u8 sense_key : 4;
  622. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  623. __u8 sense_key : 4;
  624. __u8 reserved2 : 1;
  625. __u8 ili : 1;
  626. __u8 reserved1 : 2;
  627. #endif
  628. __u8 information[4];
  629. __u8 add_sense_len;
  630. __u8 command_info[4];
  631. __u8 asc;
  632. __u8 ascq;
  633. __u8 fruc;
  634. __u8 sks[3];
  635. __u8 asb[46];
  636. };
  637. /*
  638.  * feature profile
  639.  */
  640. #define CDF_RWRT 0x0020 /* "Random Writable" */
  641. #define CDF_HWDM 0x0024 /* "Hardware Defect Management" */
  642. #define CDF_MRW  0x0028
  643. /*
  644.  * media status bits
  645.  */
  646. #define CDM_MRW_NOTMRW 0
  647. #define CDM_MRW_BGFORMAT_INACTIVE 1
  648. #define CDM_MRW_BGFORMAT_ACTIVE 2
  649. #define CDM_MRW_BGFORMAT_COMPLETE 3
  650. /*
  651.  * mrw address spaces
  652.  */
  653. #define MRW_LBA_DMA 0
  654. #define MRW_LBA_GAA 1
  655. /*
  656.  * mrw mode pages (first is deprecated) -- probed at init time and
  657.  * cdi->mrw_mode_page is set
  658.  */
  659. #define MRW_MODE_PC_PRE1 0x2c
  660. #define MRW_MODE_PC 0x03
  661. struct mrw_feature_desc {
  662. __u16 feature_code;
  663. #if defined(__BIG_ENDIAN_BITFIELD)
  664. __u8 reserved1 : 2;
  665. __u8 feature_version : 4;
  666. __u8 persistent : 1;
  667. __u8 curr : 1;
  668. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  669. __u8 curr : 1;
  670. __u8 persistent : 1;
  671. __u8 feature_version : 4;
  672. __u8 reserved1 : 2;
  673. #endif
  674. __u8 add_len;
  675. #if defined(__BIG_ENDIAN_BITFIELD)
  676. __u8 reserved2 : 7;
  677. __u8 write : 1;
  678. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  679. __u8 write : 1;
  680. __u8 reserved2 : 7;
  681. #endif
  682. __u8 reserved3;
  683. __u8 reserved4;
  684. __u8 reserved5;
  685. };
  686. /* cf. mmc4r02g.pdf 5.3.10 Random Writable Feature (0020h) pg 197 of 635 */
  687. struct rwrt_feature_desc {
  688. __u16 feature_code;
  689. #if defined(__BIG_ENDIAN_BITFIELD)
  690. __u8 reserved1 : 2;
  691. __u8 feature_version : 4;
  692. __u8 persistent : 1;
  693. __u8 curr : 1;
  694. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  695. __u8 curr : 1;
  696. __u8 persistent : 1;
  697. __u8 feature_version : 4;
  698. __u8 reserved1 : 2;
  699. #endif
  700. __u8 add_len;
  701. __u32 last_lba;
  702. __u32 block_size;
  703. __u16 blocking;
  704. #if defined(__BIG_ENDIAN_BITFIELD)
  705. __u8 reserved2 : 7;
  706. __u8 page_present : 1;
  707. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  708. __u8 page_present : 1;
  709. __u8 reserved2 : 7;
  710. #endif
  711. __u8 reserved3;
  712. };
  713. typedef struct {
  714. __u16 disc_information_length;
  715. #if defined(__BIG_ENDIAN_BITFIELD)
  716. __u8 reserved1 : 3;
  717.         __u8 erasable : 1;
  718.         __u8 border_status : 2;
  719.         __u8 disc_status : 2;
  720. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  721.         __u8 disc_status : 2;
  722.         __u8 border_status : 2;
  723.         __u8 erasable : 1;
  724. __u8 reserved1 : 3;
  725. #else
  726. #error "Please fix <asm/byteorder.h>"
  727. #endif
  728. __u8 n_first_track;
  729. __u8 n_sessions_lsb;
  730. __u8 first_track_lsb;
  731. __u8 last_track_lsb;
  732. #if defined(__BIG_ENDIAN_BITFIELD)
  733. __u8 did_v : 1;
  734.         __u8 dbc_v : 1;
  735.         __u8 uru : 1;
  736.         __u8 reserved2 : 2;
  737. __u8 dbit : 1;
  738. __u8 mrw_status : 2;
  739. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  740. __u8 mrw_status : 2;
  741. __u8 dbit : 1;
  742.         __u8 reserved2 : 2;
  743.         __u8 uru : 1;
  744.         __u8 dbc_v : 1;
  745. __u8 did_v : 1;
  746. #endif
  747. __u8 disc_type;
  748. __u8 n_sessions_msb;
  749. __u8 first_track_msb;
  750. __u8 last_track_msb;
  751. __u32 disc_id;
  752. __u32 lead_in;
  753. __u32 lead_out;
  754. __u8 disc_bar_code[8];
  755. __u8 reserved3;
  756. __u8 n_opc;
  757. } disc_information;
  758. typedef struct {
  759. __u16 track_information_length;
  760. __u8 track_lsb;
  761. __u8 session_lsb;
  762. __u8 reserved1;
  763. #if defined(__BIG_ENDIAN_BITFIELD)
  764. __u8 reserved2 : 2;
  765.         __u8 damage : 1;
  766.         __u8 copy : 1;
  767.         __u8 track_mode : 4;
  768. __u8 rt : 1;
  769. __u8 blank : 1;
  770. __u8 packet : 1;
  771. __u8 fp : 1;
  772. __u8 data_mode : 4;
  773. __u8 reserved3 : 6;
  774. __u8 lra_v : 1;
  775. __u8 nwa_v : 1;
  776. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  777.         __u8 track_mode : 4;
  778.         __u8 copy : 1;
  779.         __u8 damage : 1;
  780. __u8 reserved2 : 2;
  781. __u8 data_mode : 4;
  782. __u8 fp : 1;
  783. __u8 packet : 1;
  784. __u8 blank : 1;
  785. __u8 rt : 1;
  786. __u8 nwa_v : 1;
  787. __u8 lra_v : 1;
  788. __u8 reserved3 : 6;
  789. #endif
  790. __u32 track_start;
  791. __u32 next_writable;
  792. __u32 free_blocks;
  793. __u32 fixed_packet_size;
  794. __u32 track_size;
  795. __u32 last_rec_address;
  796. } track_information;
  797. struct feature_header {
  798. __u32 data_len;
  799. __u8 reserved1;
  800. __u8 reserved2;
  801. __u16 curr_profile;
  802. };
  803. struct mode_page_header {
  804. __u16 mode_data_length;
  805. __u8 medium_type;
  806. __u8 reserved1;
  807. __u8 reserved2;
  808. __u8 reserved3;
  809. __u16 desc_length;
  810. };
  811. #ifdef __KERNEL__
  812. #include <linux/fs.h> /* not really needed, later.. */
  813. #include <linux/device.h>
  814. struct packet_command
  815. {
  816. unsigned char  cmd[CDROM_PACKET_SIZE];
  817. unsigned char  *buffer;
  818. unsigned int  buflen;
  819. int stat;
  820. struct request_sense *sense;
  821. unsigned char data_direction;
  822. int quiet;
  823. int timeout;
  824. void *reserved[1];
  825. };
  826. /*
  827.  * _OLD will use PIO transfer on atapi devices, _BPC_* will use DMA
  828.  */
  829. #define CDDA_OLD 0 /* old style */
  830. #define CDDA_BPC_SINGLE 1 /* single frame block pc */
  831. #define CDDA_BPC_FULL 2 /* multi frame block pc */
  832. /* Uniform cdrom data structures for cdrom.c */
  833. struct cdrom_device_info {
  834. struct cdrom_device_ops  *ops;  /* link to device_ops */
  835. struct cdrom_device_info *next; /* next device_info for this major */
  836. struct gendisk *disk; /* matching block layer disk */
  837. void *handle;         /* driver-dependent data */
  838. /* specifications */
  839. int mask;                       /* mask of capability: disables them */
  840. int speed; /* maximum speed for reading data */
  841. int capacity; /* number of discs in jukebox */
  842. /* device-related storage */
  843. int options : 30; /* options flags */
  844. unsigned mc_flags : 2; /* media change buffer flags */
  845.      int use_count;                  /* number of times device opened */
  846.      char name[20];                  /* name of the device type */
  847. /* per-device flags */
  848.         __u8 sanyo_slot : 2; /* Sanyo 3 CD changer support */
  849.         __u8 reserved : 6; /* not used yet */
  850. int cdda_method; /* see flags */
  851. __u8 last_sense;
  852. __u8 media_written; /* dirty flag, DVD+RW bookkeeping */
  853. unsigned short mmc3_profile; /* current MMC3 profile */
  854. int for_data;
  855. int (*exit)(struct cdrom_device_info *);
  856. int mrw_mode_page;
  857. };
  858. struct cdrom_device_ops {
  859. /* routines */
  860. int (*open) (struct cdrom_device_info *, int);
  861. void (*release) (struct cdrom_device_info *);
  862. int (*drive_status) (struct cdrom_device_info *, int);
  863. int (*media_changed) (struct cdrom_device_info *, int);
  864. int (*tray_move) (struct cdrom_device_info *, int);
  865. int (*lock_door) (struct cdrom_device_info *, int);
  866. int (*select_speed) (struct cdrom_device_info *, int);
  867. int (*select_disc) (struct cdrom_device_info *, int);
  868. int (*get_last_session) (struct cdrom_device_info *,
  869.  struct cdrom_multisession *);
  870. int (*get_mcn) (struct cdrom_device_info *,
  871. struct cdrom_mcn *);
  872. /* hard reset device */
  873. int (*reset) (struct cdrom_device_info *);
  874. /* play stuff */
  875. int (*audio_ioctl) (struct cdrom_device_info *,unsigned int, void *);
  876. /* dev-specific */
  877.   int (*dev_ioctl) (struct cdrom_device_info *,
  878.   unsigned int, unsigned long);
  879. /* driver specifications */
  880. const int capability;   /* capability flags */
  881. int n_minors;           /* number of active minor devices */
  882. /* handle uniform packets for scsi type devices (scsi,atapi) */
  883. int (*generic_packet) (struct cdrom_device_info *,
  884.        struct packet_command *);
  885. };
  886. /* the general block_device operations structure: */
  887. extern int cdrom_open(struct cdrom_device_info *cdi, struct inode *ip,
  888. struct file *fp);
  889. extern int cdrom_release(struct cdrom_device_info *cdi, struct file *fp);
  890. extern int cdrom_ioctl(struct file *file, struct cdrom_device_info *cdi,
  891. struct inode *ip, unsigned int cmd, unsigned long arg);
  892. extern int cdrom_media_changed(struct cdrom_device_info *);
  893. extern int register_cdrom(struct cdrom_device_info *cdi);
  894. extern int unregister_cdrom(struct cdrom_device_info *cdi);
  895. typedef struct {
  896.     int data;
  897.     int audio;
  898.     int cdi;
  899.     int xa;
  900.     long error;
  901. } tracktype;
  902. extern int cdrom_get_last_written(struct cdrom_device_info *cdi, long *last_written);
  903. extern int cdrom_number_of_slots(struct cdrom_device_info *cdi);
  904. extern int cdrom_mode_select(struct cdrom_device_info *cdi,
  905.      struct packet_command *cgc);
  906. extern int cdrom_mode_sense(struct cdrom_device_info *cdi,
  907.     struct packet_command *cgc,
  908.     int page_code, int page_control);
  909. extern void init_cdrom_command(struct packet_command *cgc,
  910.        void *buffer, int len, int type);
  911. /* The SCSI spec says there could be 256 slots. */
  912. #define CDROM_MAX_SLOTS 256
  913. struct cdrom_mechstat_header {
  914. #if defined(__BIG_ENDIAN_BITFIELD)
  915. __u8 fault         : 1;
  916. __u8 changer_state : 2;
  917. __u8 curslot       : 5;
  918. __u8 mech_state    : 3;
  919. __u8 door_open     : 1;
  920. __u8 reserved1     : 4;
  921. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  922. __u8 curslot       : 5;
  923. __u8 changer_state : 2;
  924. __u8 fault         : 1;
  925. __u8 reserved1     : 4;
  926. __u8 door_open     : 1;
  927. __u8 mech_state    : 3;
  928. #endif
  929. __u8     curlba[3];
  930. __u8     nslots;
  931. __u16 slot_tablelen;
  932. };
  933. struct cdrom_slot {
  934. #if defined(__BIG_ENDIAN_BITFIELD)
  935. __u8 disc_present : 1;
  936. __u8 reserved1    : 6;
  937. __u8 change       : 1;
  938. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  939. __u8 change       : 1;
  940. __u8 reserved1    : 6;
  941. __u8 disc_present : 1;
  942. #endif
  943. __u8 reserved2[3];
  944. };
  945. struct cdrom_changer_info {
  946. struct cdrom_mechstat_header hdr;
  947. struct cdrom_slot slots[CDROM_MAX_SLOTS];
  948. };
  949. typedef enum {
  950. mechtype_caddy = 0,
  951. mechtype_tray  = 1,
  952. mechtype_popup = 2,
  953. mechtype_individual_changer = 4,
  954. mechtype_cartridge_changer  = 5
  955. } mechtype_t;
  956. typedef struct {
  957. #if defined(__BIG_ENDIAN_BITFIELD)
  958. __u8 ps : 1;
  959. __u8 reserved1 : 1;
  960. __u8 page_code : 6;
  961.         __u8 page_length;
  962. __u8 reserved2 : 1;
  963. __u8 bufe : 1;
  964. __u8 ls_v : 1;
  965. __u8 test_write : 1;
  966.         __u8 write_type : 4;
  967. __u8 multi_session : 2; /* or border, DVD */
  968. __u8 fp : 1;
  969. __u8 copy : 1;
  970. __u8 track_mode : 4;
  971. __u8 reserved3 : 4;
  972. __u8 data_block_type : 4;
  973. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  974. __u8 page_code : 6;
  975. __u8 reserved1 : 1;
  976. __u8 ps : 1;
  977.         __u8 page_length;
  978.         __u8 write_type : 4;
  979. __u8 test_write : 1;
  980. __u8 ls_v : 1;
  981. __u8 bufe : 1;
  982. __u8 reserved2 : 1;
  983. __u8 track_mode : 4;
  984. __u8 copy : 1;
  985. __u8 fp : 1;
  986. __u8 multi_session : 2; /* or border, DVD */
  987. __u8 data_block_type : 4;
  988. __u8 reserved3 : 4;
  989. #endif
  990. __u8 link_size;
  991. __u8 reserved4;
  992. #if defined(__BIG_ENDIAN_BITFIELD)
  993. __u8 reserved5 : 2;
  994. __u8 app_code : 6;
  995. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  996. __u8 app_code : 6;
  997. __u8 reserved5 : 2;
  998. #endif
  999. __u8 session_format;
  1000. __u8 reserved6;
  1001. __u32 packet_size;
  1002. __u16 audio_pause;
  1003. __u8 mcn[16];
  1004. __u8 isrc[16];
  1005. __u8 subhdr0;
  1006. __u8 subhdr1;
  1007. __u8 subhdr2;
  1008. __u8 subhdr3;
  1009. } __attribute__((packed)) write_param_page;
  1010. struct modesel_head
  1011. {
  1012. __u8 reserved1;
  1013. __u8 medium;
  1014. __u8 reserved2;
  1015. __u8 block_desc_length;
  1016. __u8 density;
  1017. __u8 number_of_blocks_hi;
  1018. __u8 number_of_blocks_med;
  1019. __u8 number_of_blocks_lo;
  1020. __u8 reserved3;
  1021. __u8 block_length_hi;
  1022. __u8 block_length_med;
  1023. __u8 block_length_lo;
  1024. };
  1025. typedef struct {
  1026. __u16 report_key_length;
  1027. __u8 reserved1;
  1028. __u8 reserved2;
  1029. #if defined(__BIG_ENDIAN_BITFIELD)
  1030. __u8 type_code : 2;
  1031. __u8 vra : 3;
  1032. __u8 ucca : 3;
  1033. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  1034. __u8 ucca : 3;
  1035. __u8 vra : 3;
  1036. __u8 type_code : 2;
  1037. #endif
  1038. __u8 region_mask;
  1039. __u8 rpc_scheme;
  1040. __u8 reserved3;
  1041. } rpc_state_t;
  1042. struct event_header {
  1043. __u16 data_len;
  1044. #if defined(__BIG_ENDIAN_BITFIELD)
  1045. __u8 nea : 1;
  1046. __u8 reserved1 : 4;
  1047. __u8 notification_class : 3;
  1048. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  1049. __u8 notification_class : 3;
  1050. __u8 reserved1 : 4;
  1051. __u8 nea : 1;
  1052. #endif
  1053. __u8 supp_event_class;
  1054. };
  1055. struct media_event_desc {
  1056. #if defined(__BIG_ENDIAN_BITFIELD)
  1057. __u8 reserved1 : 4;
  1058. __u8 media_event_code : 4;
  1059. __u8 reserved2 : 6;
  1060. __u8 media_present : 1;
  1061. __u8 door_open : 1;
  1062. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  1063. __u8 media_event_code : 4;
  1064. __u8 reserved1 : 4;
  1065. __u8 door_open : 1;
  1066. __u8 media_present : 1;
  1067. __u8 reserved2 : 6;
  1068. #endif
  1069. __u8 start_slot;
  1070. __u8 end_slot;
  1071. };
  1072. extern int cdrom_get_media_event(struct cdrom_device_info *cdi, struct media_event_desc *med);
  1073. #endif  /* End of kernel only stuff */ 
  1074. #endif  /* _LINUX_CDROM_H */