cdrom.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:32k
源码类别:

Linux/Unix编程

开发平台:

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-2000    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 compatability */
  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 *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  *buffer;
  255. unsigned int  buflen;
  256. int stat;
  257. struct request_sense *sense;
  258. unsigned char data_direction;
  259. int quiet;
  260. int timeout;
  261. void *reserved[1];
  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. /* drive status possibilities returned by CDROM_DRIVE_STATUS ioctl */
  352. #define CDS_NO_INFO 0 /* if not implemented */
  353. #define CDS_NO_DISC 1
  354. #define CDS_TRAY_OPEN 2
  355. #define CDS_DRIVE_NOT_READY 3
  356. #define CDS_DISC_OK 4
  357. /* return values for the CDROM_DISC_STATUS ioctl */
  358. /* can also return CDS_NO_[INFO|DISC], from above */
  359. #define CDS_AUDIO 100
  360. #define CDS_DATA_1 101
  361. #define CDS_DATA_2 102
  362. #define CDS_XA_2_1 103
  363. #define CDS_XA_2_2 104
  364. #define CDS_MIXED 105
  365. /* User-configurable behavior options for the uniform CD-ROM driver */
  366. #define CDO_AUTO_CLOSE 0x1     /* close tray on first open() */
  367. #define CDO_AUTO_EJECT 0x2     /* open tray on last release() */
  368. #define CDO_USE_FFLAGS 0x4     /* use O_NONBLOCK information on open */
  369. #define CDO_LOCK 0x8     /* lock tray on open files */
  370. #define CDO_CHECK_TYPE 0x10    /* check type on open for data */
  371. /* Special codes used when specifying changer slots. */
  372. #define CDSL_NONE        ((int) (~0U>>1)-1)
  373. #define CDSL_CURRENT     ((int) (~0U>>1))
  374. /* For partition based multisession access. IDE can handle 64 partitions
  375.  * per drive - SCSI CD-ROM's use minors to differentiate between the
  376.  * various drives, so we can't do multisessions the same way there.
  377.  * Use the -o session=x option to mount on them.
  378.  */
  379. #define CD_PART_MAX 64
  380. #define CD_PART_MASK (CD_PART_MAX - 1)
  381. /*********************************************************************
  382.  * Generic Packet commands, MMC commands, and such
  383.  *********************************************************************/
  384.  /* The generic packet command opcodes for CD/DVD Logical Units,
  385.  * From Table 57 of the SFF8090 Ver. 3 (Mt. Fuji) draft standard. */
  386. #define GPCMD_BLANK     0xa1
  387. #define GPCMD_CLOSE_TRACK     0x5b
  388. #define GPCMD_FLUSH_CACHE     0x35
  389. #define GPCMD_FORMAT_UNIT     0x04
  390. #define GPCMD_GET_CONFIGURATION     0x46
  391. #define GPCMD_GET_EVENT_STATUS_NOTIFICATION 0x4a
  392. #define GPCMD_GET_PERFORMANCE     0xac
  393. #define GPCMD_INQUIRY     0x12
  394. #define GPCMD_LOAD_UNLOAD     0xa6
  395. #define GPCMD_MECHANISM_STATUS     0xbd
  396. #define GPCMD_MODE_SELECT_10     0x55
  397. #define GPCMD_MODE_SENSE_10     0x5a
  398. #define GPCMD_PAUSE_RESUME     0x4b
  399. #define GPCMD_PLAY_AUDIO_10     0x45
  400. #define GPCMD_PLAY_AUDIO_MSF     0x47
  401. #define GPCMD_PLAY_AUDIO_TI     0x48
  402. #define GPCMD_PLAY_CD     0xbc
  403. #define GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL  0x1e
  404. #define GPCMD_READ_10     0x28
  405. #define GPCMD_READ_12     0xa8
  406. #define GPCMD_READ_CDVD_CAPACITY     0x25
  407. #define GPCMD_READ_CD     0xbe
  408. #define GPCMD_READ_CD_MSF     0xb9
  409. #define GPCMD_READ_DISC_INFO     0x51
  410. #define GPCMD_READ_DVD_STRUCTURE     0xad
  411. #define GPCMD_READ_FORMAT_CAPACITIES     0x23
  412. #define GPCMD_READ_HEADER     0x44
  413. #define GPCMD_READ_TRACK_RZONE_INFO     0x52
  414. #define GPCMD_READ_SUBCHANNEL     0x42
  415. #define GPCMD_READ_TOC_PMA_ATIP     0x43
  416. #define GPCMD_REPAIR_RZONE_TRACK     0x58
  417. #define GPCMD_REPORT_KEY     0xa4
  418. #define GPCMD_REQUEST_SENSE     0x03
  419. #define GPCMD_RESERVE_RZONE_TRACK     0x53
  420. #define GPCMD_SCAN     0xba
  421. #define GPCMD_SEEK     0x2b
  422. #define GPCMD_SEND_DVD_STRUCTURE     0xad
  423. #define GPCMD_SEND_EVENT     0xa2
  424. #define GPCMD_SEND_KEY     0xa3
  425. #define GPCMD_SEND_OPC     0x54
  426. #define GPCMD_SET_READ_AHEAD     0xa7
  427. #define GPCMD_SET_STREAMING     0xb6
  428. #define GPCMD_START_STOP_UNIT     0x1b
  429. #define GPCMD_STOP_PLAY_SCAN     0x4e
  430. #define GPCMD_TEST_UNIT_READY     0x00
  431. #define GPCMD_VERIFY_10     0x2f
  432. #define GPCMD_WRITE_10     0x2a
  433. #define GPCMD_WRITE_AND_VERIFY_10     0x2e
  434. /* This is listed as optional in ATAPI 2.6, but is (curiously) 
  435.  * missing from Mt. Fuji, Table 57.  It _is_ mentioned in Mt. Fuji
  436.  * Table 377 as an MMC command for SCSi devices though...  Most ATAPI
  437.  * drives support it. */
  438. #define GPCMD_SET_SPEED     0xbb
  439. /* This seems to be a SCSI specific CD-ROM opcode 
  440.  * to play data at track/index */
  441. #define GPCMD_PLAYAUDIO_TI     0x48
  442. /*
  443.  * From MS Media Status Notification Support Specification. For
  444.  * older drives only.
  445.  */
  446. #define GPCMD_GET_MEDIA_STATUS     0xda
  447. /* Mode page codes for mode sense/set */
  448. #define GPMODE_R_W_ERROR_PAGE 0x01
  449. #define GPMODE_WRITE_PARMS_PAGE 0x05
  450. #define GPMODE_AUDIO_CTL_PAGE 0x0e
  451. #define GPMODE_POWER_PAGE 0x1a
  452. #define GPMODE_FAULT_FAIL_PAGE 0x1c
  453. #define GPMODE_TO_PROTECT_PAGE 0x1d
  454. #define GPMODE_CAPABILITIES_PAGE 0x2a
  455. #define GPMODE_ALL_PAGES 0x3f
  456. /* Not in Mt. Fuji, but in ATAPI 2.6 -- depricated now in favor
  457.  * of MODE_SENSE_POWER_PAGE */
  458. #define GPMODE_CDROM_PAGE 0x0d
  459. /* DVD struct types */
  460. #define DVD_STRUCT_PHYSICAL 0x00
  461. #define DVD_STRUCT_COPYRIGHT 0x01
  462. #define DVD_STRUCT_DISCKEY 0x02
  463. #define DVD_STRUCT_BCA 0x03
  464. #define DVD_STRUCT_MANUFACT 0x04
  465. struct dvd_layer {
  466. __u8 book_version : 4;
  467. __u8 book_type : 4;
  468. __u8 min_rate : 4;
  469. __u8 disc_size : 4;
  470. __u8 layer_type : 4;
  471. __u8 track_path : 1;
  472. __u8 nlayers : 2;
  473. __u8 track_density : 4;
  474. __u8 linear_density : 4;
  475. __u8 bca : 1;
  476. __u32 start_sector;
  477. __u32 end_sector;
  478. __u32 end_sector_l0;
  479. };
  480. #define DVD_LAYERS 4
  481. struct dvd_physical {
  482. __u8 type;
  483. __u8 layer_num;
  484. struct dvd_layer layer[DVD_LAYERS];
  485. };
  486. struct dvd_copyright {
  487. __u8 type;
  488. __u8 layer_num;
  489. __u8 cpst;
  490. __u8 rmi;
  491. };
  492. struct dvd_disckey {
  493. __u8 type;
  494. unsigned agid : 2;
  495. __u8 value[2048];
  496. };
  497. struct dvd_bca {
  498. __u8 type;
  499. int len;
  500. __u8 value[188];
  501. };
  502. struct dvd_manufact {
  503. __u8 type;
  504. __u8 layer_num;
  505. int len;
  506. __u8 value[2048];
  507. };
  508. typedef union {
  509. __u8 type;
  510. struct dvd_physical physical;
  511. struct dvd_copyright copyright;
  512. struct dvd_disckey disckey;
  513. struct dvd_bca bca;
  514. struct dvd_manufact manufact;
  515. } dvd_struct;
  516. /*
  517.  * DVD authentication ioctl
  518.  */
  519. /* Authentication states */
  520. #define DVD_LU_SEND_AGID 0
  521. #define DVD_HOST_SEND_CHALLENGE 1
  522. #define DVD_LU_SEND_KEY1 2
  523. #define DVD_LU_SEND_CHALLENGE 3
  524. #define DVD_HOST_SEND_KEY2 4
  525. /* Termination states */
  526. #define DVD_AUTH_ESTABLISHED 5
  527. #define DVD_AUTH_FAILURE 6
  528. /* Other functions */
  529. #define DVD_LU_SEND_TITLE_KEY 7
  530. #define DVD_LU_SEND_ASF 8
  531. #define DVD_INVALIDATE_AGID 9
  532. #define DVD_LU_SEND_RPC_STATE 10
  533. #define DVD_HOST_SEND_RPC_STATE 11
  534. /* State data */
  535. typedef __u8 dvd_key[5]; /* 40-bit value, MSB is first elem. */
  536. typedef __u8 dvd_challenge[10]; /* 80-bit value, MSB is first elem. */
  537. struct dvd_lu_send_agid {
  538. __u8 type;
  539. unsigned agid : 2;
  540. };
  541. struct dvd_host_send_challenge {
  542. __u8 type;
  543. unsigned agid : 2;
  544. dvd_challenge chal;
  545. };
  546. struct dvd_send_key {
  547. __u8 type;
  548. unsigned agid : 2;
  549. dvd_key key;
  550. };
  551. struct dvd_lu_send_challenge {
  552. __u8 type;
  553. unsigned agid : 2;
  554. dvd_challenge chal;
  555. };
  556. #define DVD_CPM_NO_COPYRIGHT 0
  557. #define DVD_CPM_COPYRIGHTED 1
  558. #define DVD_CP_SEC_NONE 0
  559. #define DVD_CP_SEC_EXIST 1
  560. #define DVD_CGMS_UNRESTRICTED 0
  561. #define DVD_CGMS_SINGLE 2
  562. #define DVD_CGMS_RESTRICTED 3
  563. struct dvd_lu_send_title_key {
  564. __u8 type;
  565. unsigned agid : 2;
  566. dvd_key title_key;
  567. int lba;
  568. unsigned cpm : 1;
  569. unsigned cp_sec : 1;
  570. unsigned cgms : 2;
  571. };
  572. struct dvd_lu_send_asf {
  573. __u8 type;
  574. unsigned agid : 2;
  575. unsigned asf : 1;
  576. };
  577. struct dvd_host_send_rpcstate {
  578. __u8 type;
  579. __u8 pdrc;
  580. };
  581. struct dvd_lu_send_rpcstate {
  582. __u8 type : 2;
  583. __u8 vra : 3;
  584. __u8 ucca : 3;
  585. __u8 region_mask;
  586. __u8 rpc_scheme;
  587. };
  588. typedef union {
  589. __u8 type;
  590. struct dvd_lu_send_agid lsa;
  591. struct dvd_host_send_challenge hsc;
  592. struct dvd_send_key lsk;
  593. struct dvd_lu_send_challenge lsc;
  594. struct dvd_send_key hsk;
  595. struct dvd_lu_send_title_key lstk;
  596. struct dvd_lu_send_asf lsasf;
  597. struct dvd_host_send_rpcstate hrpcs;
  598. struct dvd_lu_send_rpcstate lrpcs;
  599. } dvd_authinfo;
  600. struct request_sense {
  601. #if defined(__BIG_ENDIAN_BITFIELD)
  602. __u8 valid : 1;
  603. __u8 error_code : 7;
  604. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  605. __u8 error_code : 7;
  606. __u8 valid : 1;
  607. #endif
  608. __u8 segment_number;
  609. #if defined(__BIG_ENDIAN_BITFIELD)
  610. __u8 reserved1 : 2;
  611. __u8 ili : 1;
  612. __u8 reserved2 : 1;
  613. __u8 sense_key : 4;
  614. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  615. __u8 sense_key : 4;
  616. __u8 reserved2 : 1;
  617. __u8 ili : 1;
  618. __u8 reserved1 : 2;
  619. #endif
  620. __u8 information[4];
  621. __u8 add_sense_len;
  622. __u8 command_info[4];
  623. __u8 asc;
  624. __u8 ascq;
  625. __u8 fruc;
  626. __u8 sks[3];
  627. __u8 asb[46];
  628. };
  629. #ifdef __KERNEL__
  630. #include <linux/devfs_fs_kernel.h>
  631. struct cdrom_write_settings {
  632. unsigned char fpacket; /* fixed/variable packets */
  633. unsigned long packet_size; /* write out this number of packets */
  634. unsigned long nwa; /* next writeable address */
  635. unsigned char writeable; /* cdrom is writeable */
  636. };
  637. /* Uniform cdrom data structures for cdrom.c */
  638. struct cdrom_device_info {
  639. struct cdrom_device_ops  *ops;  /* link to device_ops */
  640. struct cdrom_device_info *next; /* next device_info for this major */
  641. void *handle;         /* driver-dependent data */
  642. devfs_handle_t de; /* real driver should create this  */
  643. int number; /* generic driver updates this  */
  644. /* specifications */
  645.         kdev_t dev;                 /* device number */
  646. int mask;                       /* mask of capability: disables them */
  647. int speed; /* maximum speed for reading data */
  648. int capacity; /* number of discs in jukebox */
  649. /* device-related storage */
  650. int options : 30; /* options flags */
  651. unsigned mc_flags : 2; /* media change buffer flags */
  652.      int use_count;                  /* number of times device opened */
  653.      char name[20];                  /* name of the device type */
  654. /* per-device flags */
  655.         __u8 sanyo_slot : 2; /* Sanyo 3 CD changer support */
  656.         __u8 reserved : 6; /* not used yet */
  657. struct cdrom_write_settings write;
  658. };
  659. struct cdrom_device_ops {
  660. /* routines */
  661. int (*open) (struct cdrom_device_info *, int);
  662. void (*release) (struct cdrom_device_info *);
  663. int (*drive_status) (struct cdrom_device_info *, int);
  664. int (*media_changed) (struct cdrom_device_info *, int);
  665. int (*tray_move) (struct cdrom_device_info *, int);
  666. int (*lock_door) (struct cdrom_device_info *, int);
  667. int (*select_speed) (struct cdrom_device_info *, int);
  668. int (*select_disc) (struct cdrom_device_info *, int);
  669. int (*get_last_session) (struct cdrom_device_info *,
  670.  struct cdrom_multisession *);
  671. int (*get_mcn) (struct cdrom_device_info *,
  672. struct cdrom_mcn *);
  673. /* hard reset device */
  674. int (*reset) (struct cdrom_device_info *);
  675. /* play stuff */
  676. int (*audio_ioctl) (struct cdrom_device_info *,unsigned int, void *);
  677. /* dev-specific */
  678.   int (*dev_ioctl) (struct cdrom_device_info *,
  679.   unsigned int, unsigned long);
  680. /* driver specifications */
  681. const int capability;   /* capability flags */
  682. int n_minors;           /* number of active minor devices */
  683. /* handle uniform packets for scsi type devices (scsi,atapi) */
  684. int (*generic_packet) (struct cdrom_device_info *,
  685.        struct cdrom_generic_command *);
  686. };
  687. /* the general block_device operations structure: */
  688. extern int cdrom_open(struct inode *, struct file *);
  689. extern int cdrom_release(struct inode *, struct file *);
  690. extern int cdrom_ioctl(struct inode *, struct file *, unsigned, unsigned long);
  691. extern int cdrom_media_changed(kdev_t);
  692. extern int register_cdrom(struct cdrom_device_info *cdi);
  693. extern int unregister_cdrom(struct cdrom_device_info *cdi);
  694. static inline void devfs_plain_cdrom(struct cdrom_device_info *cdi,
  695. struct block_device_operations *ops)
  696. {
  697. char vname[23];
  698. sprintf (vname, "cdroms/cdrom%d", cdi->number);
  699. cdi->de = devfs_register (NULL, vname, DEVFS_FL_DEFAULT,
  700.     MAJOR (cdi->dev), MINOR (cdi->dev),
  701.     S_IFBLK | S_IRUGO | S_IWUGO,
  702.     ops, NULL);
  703. }
  704. typedef struct {
  705.     int data;
  706.     int audio;
  707.     int cdi;
  708.     int xa;
  709.     long error;
  710. } tracktype;
  711. extern void cdrom_count_tracks(struct cdrom_device_info *cdi,tracktype* tracks);
  712. extern int cdrom_get_next_writable(kdev_t dev, long *next_writable);
  713. extern int cdrom_get_last_written(kdev_t dev, long *last_written);
  714. extern int cdrom_number_of_slots(struct cdrom_device_info *cdi);
  715. extern int cdrom_select_disc(struct cdrom_device_info *cdi, int slot);
  716. extern int cdrom_mode_select(struct cdrom_device_info *cdi,
  717.      struct cdrom_generic_command *cgc);
  718. extern int cdrom_mode_sense(struct cdrom_device_info *cdi,
  719.     struct cdrom_generic_command *cgc,
  720.     int page_code, int page_control);
  721. extern void init_cdrom_command(struct cdrom_generic_command *cgc,
  722.        void *buffer, int len, int type);
  723. extern struct cdrom_device_info *cdrom_find_device(kdev_t dev);
  724. typedef struct {
  725. __u16 disc_information_length;
  726. #if defined(__BIG_ENDIAN_BITFIELD)
  727. __u8 reserved1 : 3;
  728.         __u8 erasable : 1;
  729.         __u8 border_status : 2;
  730.         __u8 disc_status : 2;
  731. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  732.         __u8 disc_status : 2;
  733.         __u8 border_status : 2;
  734.         __u8 erasable : 1;
  735. __u8 reserved1 : 3;
  736. #else
  737. #error "Please fix <asm/byteorder.h>"
  738. #endif
  739. __u8 n_first_track;
  740. __u8 n_sessions_lsb;
  741. __u8 first_track_lsb;
  742. __u8 last_track_lsb;
  743. #if defined(__BIG_ENDIAN_BITFIELD)
  744. __u8 did_v : 1;
  745.         __u8 dbc_v : 1;
  746.         __u8 uru : 1;
  747.         __u8 reserved2 : 5;
  748. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  749.         __u8 reserved2 : 5;
  750.         __u8 uru : 1;
  751.         __u8 dbc_v : 1;
  752. __u8 did_v : 1;
  753. #endif
  754. __u8 disc_type;
  755. __u8 n_sessions_msb;
  756. __u8 first_track_msb;
  757. __u8 last_track_msb;
  758. __u32 disc_id;
  759. __u32 lead_in;
  760. __u32 lead_out;
  761. __u8 disc_bar_code[8];
  762. __u8 reserved3;
  763. __u8 n_opc;
  764. } disc_information;
  765. typedef struct {
  766. __u16 track_information_length;
  767. __u8 track_lsb;
  768. __u8 session_lsb;
  769. __u8 reserved1;
  770. #if defined(__BIG_ENDIAN_BITFIELD)
  771. __u8 reserved2 : 2;
  772.         __u8 damage : 1;
  773.         __u8 copy : 1;
  774.         __u8 track_mode : 4;
  775. __u8 rt : 1;
  776. __u8 blank : 1;
  777. __u8 packet : 1;
  778. __u8 fp : 1;
  779. __u8 data_mode : 4;
  780. __u8 reserved3 : 6;
  781. __u8 lra_v : 1;
  782. __u8 nwa_v : 1;
  783. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  784.         __u8 track_mode : 4;
  785.         __u8 copy : 1;
  786.         __u8 damage : 1;
  787. __u8 reserved2 : 2;
  788. __u8 data_mode : 4;
  789. __u8 fp : 1;
  790. __u8 packet : 1;
  791. __u8 blank : 1;
  792. __u8 rt : 1;
  793. __u8 nwa_v : 1;
  794. __u8 lra_v : 1;
  795. __u8 reserved3 : 6;
  796. #endif
  797. __u32 track_start;
  798. __u32 next_writable;
  799. __u32 free_blocks;
  800. __u32 fixed_packet_size;
  801. __u32 track_size;
  802. __u32 last_rec_address;
  803. } track_information;
  804. extern int cdrom_get_disc_info(kdev_t dev, disc_information *di);
  805. extern int cdrom_get_track_info(kdev_t dev, __u16 track, __u8 type,
  806. track_information *ti);
  807. /* The SCSI spec says there could be 256 slots. */
  808. #define CDROM_MAX_SLOTS 256
  809. struct cdrom_mechstat_header {
  810. #if defined(__BIG_ENDIAN_BITFIELD)
  811. __u8 fault         : 1;
  812. __u8 changer_state : 2;
  813. __u8 curslot       : 5;
  814. __u8 mech_state    : 3;
  815. __u8 door_open     : 1;
  816. __u8 reserved1     : 4;
  817. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  818. __u8 curslot       : 5;
  819. __u8 changer_state : 2;
  820. __u8 fault         : 1;
  821. __u8 reserved1     : 4;
  822. __u8 door_open     : 1;
  823. __u8 mech_state    : 3;
  824. #endif
  825. __u8     curlba[3];
  826. __u8     nslots;
  827. __u16 slot_tablelen;
  828. };
  829. struct cdrom_slot {
  830. #if defined(__BIG_ENDIAN_BITFIELD)
  831. __u8 disc_present : 1;
  832. __u8 reserved1    : 6;
  833. __u8 change       : 1;
  834. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  835. __u8 change       : 1;
  836. __u8 reserved1    : 6;
  837. __u8 disc_present : 1;
  838. #endif
  839. __u8 reserved2[3];
  840. };
  841. struct cdrom_changer_info {
  842. struct cdrom_mechstat_header hdr;
  843. struct cdrom_slot slots[CDROM_MAX_SLOTS];
  844. };
  845. typedef enum {
  846. mechtype_caddy = 0,
  847. mechtype_tray  = 1,
  848. mechtype_popup = 2,
  849. mechtype_individual_changer = 4,
  850. mechtype_cartridge_changer  = 5
  851. } mechtype_t;
  852. struct mode_page_header {
  853. __u16 mode_data_length;
  854. __u8 medium_type;
  855. __u8 reserved1;
  856. __u8 reserved2;
  857. __u8 reserved3;
  858. __u16 desc_length;
  859. };
  860. typedef struct {
  861. #if defined(__BIG_ENDIAN_BITFIELD)
  862. __u8 ps : 1;
  863. __u8 reserved1 : 1;
  864. __u8 page_code : 6;
  865.         __u8 page_length;
  866. __u8 reserved2 : 1;
  867. __u8 bufe : 1;
  868. __u8 ls_v : 1;
  869. __u8 test_write : 1;
  870.         __u8 write_type : 4;
  871. __u8 multi_session : 2; /* or border, DVD */
  872. __u8 fp : 1;
  873. __u8 copy : 1;
  874. __u8 track_mode : 4;
  875. __u8 reserved3 : 4;
  876. __u8 data_block_type : 4;
  877. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  878. __u8 page_code : 6;
  879. __u8 reserved1 : 1;
  880. __u8 ps : 1;
  881.         __u8 page_length;
  882.         __u8 write_type : 4;
  883. __u8 test_write : 1;
  884. __u8 ls_v : 1;
  885. __u8 bufe : 1;
  886. __u8 reserved2 : 1;
  887. __u8 track_mode : 4;
  888. __u8 copy : 1;
  889. __u8 fp : 1;
  890. __u8 multi_session : 2; /* or border, DVD */
  891. __u8 data_block_type : 4;
  892. __u8 reserved3 : 4;
  893. #endif
  894. __u8 link_size;
  895. __u8 reserved4;
  896. #if defined(__BIG_ENDIAN_BITFIELD)
  897. __u8 reserved5 : 2;
  898. __u8 app_code : 6;
  899. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  900. __u8 app_code : 6;
  901. __u8 reserved5 : 2;
  902. #endif
  903. __u8 session_format;
  904. __u8 reserved6;
  905. __u32 packet_size;
  906. __u16 audio_pause;
  907. __u8 mcn[16];
  908. __u8 isrc[16];
  909. __u8 subhdr0;
  910. __u8 subhdr1;
  911. __u8 subhdr2;
  912. __u8 subhdr3;
  913. } __attribute__((packed)) write_param_page;
  914. struct modesel_head
  915. {
  916. __u8 reserved1;
  917. __u8 medium;
  918. __u8 reserved2;
  919. __u8 block_desc_length;
  920. __u8 density;
  921. __u8 number_of_blocks_hi;
  922. __u8 number_of_blocks_med;
  923. __u8 number_of_blocks_lo;
  924. __u8 reserved3;
  925. __u8 block_length_hi;
  926. __u8 block_length_med;
  927. __u8 block_length_lo;
  928. };
  929. typedef struct {
  930. __u16 report_key_length;
  931. __u8 reserved1;
  932. __u8 reserved2;
  933. #if defined(__BIG_ENDIAN_BITFIELD)
  934. __u8 type_code : 2;
  935. __u8 vra : 3;
  936. __u8 ucca : 3;
  937. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  938. __u8 ucca : 3;
  939. __u8 vra : 3;
  940. __u8 type_code : 2;
  941. #endif
  942. __u8 region_mask;
  943. __u8 rpc_scheme;
  944. __u8 reserved3;
  945. } rpc_state_t;
  946. #endif  /* End of kernel only stuff */ 
  947. #endif  /* _LINUX_CDROM_H */