sbpcd.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:26k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * sbpcd.h   Specify interface address and interface type here.
  3.  */
  4. /*
  5.  * Attention! This file contains user-serviceable parts!
  6.  * I recommend to make use of it...
  7.  * If you feel helpless, look into linux/Documentation/cdrom/sbpcd
  8.  * (good idea anyway, at least before mailing me).
  9.  *
  10.  * The definitions for the first controller can get overridden by
  11.  * the kernel command line ("lilo boot option").
  12.  * Examples:
  13.  *                                 sbpcd=0x300,LaserMate
  14.  *                             or
  15.  *                                 sbpcd=0x230,SoundBlaster
  16.  *                             or
  17.  *                                 sbpcd=0x338,SoundScape
  18.  *                             or
  19.  *                                 sbpcd=0x2C0,Teac16bit
  20.  *
  21.  * If sbpcd gets used as a module, you can load it with
  22.  *     insmod sbpcd.o sbpcd=0x300,0
  23.  * or
  24.  *     insmod sbpcd.o sbpcd=0x230,1
  25.  * or
  26.  *     insmod sbpcd.o sbpcd=0x338,2
  27.  * or
  28.  *     insmod sbpcd.o sbpcd=0x2C0,3
  29.  * respective to override the configured address and type.
  30.  */
  31. /*
  32.  * define your CDROM port base address as CDROM_PORT
  33.  * and specify the type of your interface card as SBPRO.
  34.  *
  35.  * address:
  36.  * ========
  37.  * SBPRO type addresses typically are 0x0230 (=0x220+0x10), 0x0250, ...
  38.  * LASERMATE type (CI-101P, WDH-7001C) addresses typically are 0x0300, ...
  39.  * SOUNDSCAPE addresses are from the LASERMATE type and range. You have to
  40.  * specify the REAL address here, not the configuration port address. Look
  41.  * at the CDROM driver's invoking line within your DOS CONFIG.SYS, or let
  42.  * sbpcd auto-probe, if you are not firm with the address.
  43.  * There are some soundcards on the market with 0x0630, 0x0650, ...; their
  44.  * type is not obvious (both types are possible).
  45.  *
  46.  * example: if your SBPRO audio address is 0x220, specify 0x230 and SBPRO 1.
  47.  *          if your soundcard has its CDROM port above 0x300, specify
  48.  *          that address and try SBPRO 0 first.
  49.  *          if your SoundScape configuration port is at 0x330, specify
  50.  *          0x338 and SBPRO 2.
  51.  *
  52.  * interface type:
  53.  * ===============
  54.  * set SBPRO to 1 for "true" SoundBlaster card
  55.  * set SBPRO to 0 for "compatible" soundcards and
  56.  *                for "poor" (no sound) interface cards.
  57.  * set SBPRO to 2 for Ensonic SoundScape or SPEA Media FX cards
  58.  * set SBPRO to 3 for Teac 16bit interface cards
  59.  *
  60.  * Almost all "compatible" sound boards need to set SBPRO to 0.
  61.  * If SBPRO is set wrong, the drives will get found - but any
  62.  * data access will give errors (audio access will work).
  63.  * The "OmniCD" no-sound interface card from CreativeLabs and most Teac
  64.  * interface cards need SBPRO 1.
  65.  *
  66.  * sound base:
  67.  * ===========
  68.  * The SOUND_BASE definition tells if we should try to turn the CD sound
  69.  * channels on. It will only be of use regarding soundcards with a SbPro
  70.  * compatible mixer.
  71.  *
  72.  * Example: #define SOUND_BASE 0x220 enables the sound card's CD channels
  73.  *          #define SOUND_BASE 0     leaves the soundcard untouched
  74.  */
  75. #if !(SBPCD_ISSUE-1)     /* first (or if you have only one) interface board: */
  76. #define CDROM_PORT 0x340 /* <-----------<< port address                      */
  77. #define SBPRO      0     /* <-----------<< interface type                    */
  78. #define MAX_DRIVES 4     /* set to 1 if the card does not use "drive select" */
  79. #define SOUND_BASE 0x220 /* <-----------<< sound address of this card or 0   */
  80. #endif
  81. #if !(SBPCD_ISSUE-2)     /* ==================== second interface board: === */
  82. #define CDROM_PORT 0x344 /* <-----------<< port address                      */
  83. #define SBPRO      0     /* <-----------<< interface type                    */
  84. #define MAX_DRIVES 4     /* set to 1 if the card does not use "drive select" */
  85. #define SOUND_BASE 0x000 /* <-----------<< sound address of this card or 0   */
  86. #endif
  87. #if !(SBPCD_ISSUE-3)     /* ===================== third interface board: === */
  88. #define CDROM_PORT 0x630 /* <-----------<< port address                      */
  89. #define SBPRO      1     /* <-----------<< interface type                    */
  90. #define MAX_DRIVES 4     /* set to 1 if the card does not use "drive select" */
  91. #define SOUND_BASE 0x240 /* <-----------<< sound address of this card or 0   */
  92. #endif
  93. #if !(SBPCD_ISSUE-4)     /* ==================== fourth interface board: === */
  94. #define CDROM_PORT 0x634 /* <-----------<< port address                      */
  95. #define SBPRO      0     /* <-----------<< interface type                    */
  96. #define MAX_DRIVES 4     /* set to 1 if the card does not use "drive select" */
  97. #define SOUND_BASE 0x000 /* <-----------<< sound address of this card or 0   */
  98. #endif
  99. /*
  100.  * some more or less user dependent definitions - service them!
  101.  */
  102. /* Set this to 0 once you have configured your interface definitions right. */
  103. #define DISTRIBUTION 1
  104. /*
  105.  * Time to wait after giving a message.
  106.  * This gets important if you enable non-standard DBG_xxx flags.
  107.  * You will see what happens if you omit the pause or make it
  108.  * too short. Be warned!
  109.  */
  110. #define KLOGD_PAUSE 1
  111. /* tray control: eject tray if no disk is in */
  112. #if DISTRIBUTION
  113. #define JUKEBOX 0
  114. #else
  115. #define JUKEBOX 1
  116. #endif /* DISTRIBUTION */
  117. /* tray control: eject tray after last use */
  118. #if DISTRIBUTION
  119. #define EJECT 0
  120. #else
  121. #define EJECT 1
  122. #endif /* DISTRIBUTION */
  123. /* max. number of audio frames to read with one     */
  124. /* request (allocates n* 2352 bytes kernel memory!) */
  125. /* may be freely adjusted, f.e. 75 (= 1 sec.), at   */
  126. /* runtime by use of the CDROMAUDIOBUFSIZ ioctl.    */
  127. #define READ_AUDIO 0
  128. /* Optimizations for the Teac CD-55A drive read performance.
  129.  * SBP_TEAC_SPEED can be changed here, or one can set the 
  130.  * variable "teac" when loading as a module.
  131.  * Valid settings are:
  132.  *   0 - very slow - the recommended "DISTRIBUTION 1" setup.
  133.  *   1 - 2x performance with little overhead. No busy waiting.
  134.  *   2 - 4x performance with 5ms overhead per read. Busy wait.
  135.  *
  136.  * Setting SBP_TEAC_SPEED or the variable 'teac' to anything
  137.  * other than 0 may cause problems. If you run into them, first
  138.  * change SBP_TEAC_SPEED back to 0 and see if your drive responds
  139.  * normally. If yes, you are "allowed" to report your case - to help
  140.  * me with the driver, not to solve your hassle. Don磘 mail if you
  141.  * simply are stuck into your own "tuning" experiments, you know?
  142.  */
  143. #define SBP_TEAC_SPEED 1
  144. /*==========================================================================*/
  145. /*==========================================================================*/
  146. /*
  147.  * nothing to change below here if you are not fully aware what you're doing
  148.  */
  149. #ifndef _LINUX_SBPCD_H
  150. #define _LINUX_SBPCD_H
  151. /*==========================================================================*/
  152. /*==========================================================================*/
  153. /*
  154.  * driver's own read_ahead, data mode
  155.  */
  156. #define SBP_BUFFER_FRAMES 8 
  157. #define LONG_TIMING 0 /* test against timeouts with "gold" CDs on CR-521 */
  158. #undef  FUTURE
  159. #undef SAFE_MIXED
  160. #define TEST_UPC 0
  161. #define SPEA_TEST 0
  162. #define TEST_STI 0
  163. #define OLD_BUSY 0
  164. #undef PATH_CHECK
  165. #ifndef SOUND_BASE
  166. #define SOUND_BASE 0
  167. #endif
  168. #if DISTRIBUTION
  169. #undef SBP_TEAC_SPEED
  170. #define SBP_TEAC_SPEED 0
  171. #endif
  172. /*==========================================================================*/
  173. /*
  174.  * DDI interface definitions
  175.  * "invented" by Fred N. van Kempen..
  176.  */
  177. #define DDIOCSDBG 0x9000
  178. /*==========================================================================*/
  179. /*
  180.  * "private" IOCTL functions
  181.  */
  182. #define CDROMAUDIOBUFSIZ 0x5382 /* set the audio buffer size */
  183. /*==========================================================================*/
  184. /*
  185.  * Debug output levels
  186.  */
  187. #define DBG_INF 1 /* necessary information */
  188. #define DBG_BSZ 2 /* BLOCK_SIZE trace */
  189. #define DBG_REA 3 /* READ status trace */
  190. #define DBG_CHK 4 /* MEDIA CHECK trace */
  191. #define DBG_TIM 5 /* datarate timer test */
  192. #define DBG_INI 6 /* initialization trace */
  193. #define DBG_TOC 7 /* tell TocEntry values */
  194. #define DBG_IOC 8 /* ioctl trace */
  195. #define DBG_STA 9 /* ResponseStatus() trace */
  196. #define DBG_ERR 10 /* cc_ReadError() trace */
  197. #define DBG_CMD 11 /* cmd_out() trace */
  198. #define DBG_WRN 12 /* give explanation before auto-probing */
  199. #define DBG_MUL 13 /* multi session code test */
  200. #define DBG_IDX 14 /* test code for drive_id !=0 */
  201. #define DBG_IOX 15 /* some special information */
  202. #define DBG_DID 16 /* drive ID test */
  203. #define DBG_RES 17 /* drive reset info */
  204. #define DBG_SPI 18 /* SpinUp test */
  205. #define DBG_IOS 19 /* ioctl trace: subchannel functions */
  206. #define DBG_IO2 20 /* ioctl trace: general */
  207. #define DBG_UPC 21 /* show UPC information */
  208. #define DBG_XA1 22 /* XA mode debugging */
  209. #define DBG_LCK 23 /* door (un)lock info */
  210. #define DBG_SQ1 24 /* dump SubQ frame */
  211. #define DBG_AUD 25 /* READ AUDIO debugging */
  212. #define DBG_SEQ 26 /* Sequoia interface configuration trace */
  213. #define DBG_LCS 27 /* Longshine LCS-7260 debugging trace */
  214. #define DBG_CD2 28 /* MKE/Funai CD200 debugging trace */
  215. #define DBG_TEA 29 /* TEAC CD-55A debugging trace */
  216. #define DBG_ECS 30 /* ECS-AT (Vertos 100) debugging trace */
  217. #define DBG_000 31 /* unnecessary information */
  218. /*==========================================================================*/
  219. /*==========================================================================*/
  220. /*
  221.  * bits of flags_cmd_out:
  222.  */
  223. #define f_respo3 0x100
  224. #define f_putcmd 0x80
  225. #define f_respo2 0x40
  226. #define f_lopsta 0x20
  227. #define f_getsta 0x10
  228. #define f_ResponseStatus 0x08
  229. #define f_obey_p_check 0x04
  230. #define f_bit1 0x02
  231. #define f_wait_if_busy 0x01
  232. /*
  233.  * diskstate_flags:
  234.  */
  235. #define x80_bit 0x80
  236. #define upc_bit 0x40
  237. #define volume_bit 0x20
  238. #define toc_bit 0x10
  239. #define multisession_bit 0x08
  240. #define cd_size_bit 0x04
  241. #define subq_bit 0x02
  242. #define frame_size_bit 0x01
  243. /*
  244.  * disk states (bits of diskstate_flags):
  245.  */
  246. #define upc_valid (D_S[d].diskstate_flags&upc_bit)
  247. #define volume_valid (D_S[d].diskstate_flags&volume_bit)
  248. #define toc_valid (D_S[d].diskstate_flags&toc_bit)
  249. #define cd_size_valid (D_S[d].diskstate_flags&cd_size_bit)
  250. #define subq_valid (D_S[d].diskstate_flags&subq_bit)
  251. #define frame_size_valid (D_S[d].diskstate_flags&frame_size_bit)
  252. /*
  253.  * the status_bits variable
  254.  */
  255. #define p_success 0x100
  256. #define p_door_closed 0x80
  257. #define p_caddy_in 0x40
  258. #define p_spinning 0x20
  259. #define p_check 0x10
  260. #define p_busy_new 0x08
  261. #define p_door_locked 0x04
  262. #define p_disk_ok 0x01
  263. /*
  264.  * LCS-7260 special status result bits:
  265.  */
  266. #define p_lcs_door_locked 0x02
  267. #define p_lcs_door_closed 0x01 /* probably disk_in */
  268. /*
  269.  * CR-52x special status result bits:
  270.  */
  271. #define p_caddin_old 0x40
  272. #define p_success_old 0x08
  273. #define p_busy_old 0x04
  274. #define p_bit_1 0x02 /* hopefully unused now */
  275. /*
  276.  * "generation specific" defs of the status result bits:
  277.  */
  278. #define p0_door_closed 0x80
  279. #define p0_caddy_in 0x40
  280. #define p0_spinning 0x20
  281. #define p0_check 0x10
  282. #define p0_success 0x08 /* unused */
  283. #define p0_busy 0x04
  284. #define p0_bit_1 0x02 /* unused */
  285. #define p0_disk_ok 0x01
  286. #define pL_disk_in 0x40
  287. #define pL_spinning 0x20
  288. #define pL_check 0x10
  289. #define pL_success 0x08 /* unused ?? */
  290. #define pL_busy 0x04
  291. #define pL_door_locked 0x02
  292. #define pL_door_closed 0x01
  293. #define pV_door_closed 0x40
  294. #define pV_spinning 0x20
  295. #define pV_check 0x10
  296. #define pV_success 0x08
  297. #define pV_busy 0x04
  298. #define pV_door_locked 0x02
  299. #define pV_disk_ok 0x01
  300. #define p1_door_closed 0x80
  301. #define p1_disk_in 0x40
  302. #define p1_spinning 0x20
  303. #define p1_check 0x10
  304. #define p1_busy 0x08
  305. #define p1_door_locked 0x04
  306. #define p1_bit_1 0x02 /* unused */
  307. #define p1_disk_ok 0x01
  308. #define p2_disk_ok 0x80
  309. #define p2_door_locked 0x40
  310. #define p2_spinning 0x20
  311. #define p2_busy2 0x10
  312. #define p2_busy1 0x08
  313. #define p2_door_closed 0x04
  314. #define p2_disk_in 0x02
  315. #define p2_check 0x01
  316. /*
  317.  * used drive states:
  318.  */
  319. #define st_door_closed (D_S[d].status_bits&p_door_closed)
  320. #define st_caddy_in (D_S[d].status_bits&p_caddy_in)
  321. #define st_spinning (D_S[d].status_bits&p_spinning)
  322. #define st_check (D_S[d].status_bits&p_check)
  323. #define st_busy (D_S[d].status_bits&p_busy_new)
  324. #define st_door_locked (D_S[d].status_bits&p_door_locked)
  325. #define st_diskok (D_S[d].status_bits&p_disk_ok)
  326. /*
  327.  * bits of the CDi_status register:
  328.  */
  329. #define s_not_result_ready 0x04 /* 0: "result ready" */
  330. #define s_not_data_ready 0x02 /* 0: "data ready"   */
  331. #define s_attention 0x01 /* 1: "attention required" */
  332. /*
  333.  * usable as:
  334.  */
  335. #define DRV_ATTN ((inb(CDi_status)&s_attention)!=0)
  336. #define DATA_READY ((inb(CDi_status)&s_not_data_ready)==0)
  337. #define RESULT_READY ((inb(CDi_status)&s_not_result_ready)==0)
  338. /*
  339.  * drive families and types (firmware versions):
  340.  */
  341. #define drv_fam0 0x0100 /* CR-52x family */
  342. #define drv_199 (drv_fam0+0x01) /* <200 */
  343. #define drv_200 (drv_fam0+0x02) /* <201 */
  344. #define drv_201 (drv_fam0+0x03) /* <210 */
  345. #define drv_210 (drv_fam0+0x04) /* <211 */
  346. #define drv_211 (drv_fam0+0x05) /* <300 */
  347. #define drv_300 (drv_fam0+0x06) /* >=300 */
  348. #define drv_fam1 0x0200 /* CR-56x family */
  349. #define drv_099 (drv_fam1+0x01) /* <100 */
  350. #define drv_100 (drv_fam1+0x02) /* >=100, only 1.02 and 5.00 known */
  351. #define drv_fam2 0x0400 /* CD200 family */
  352. #define drv_famT 0x0800 /* TEAC CD-55A */
  353. #define drv_famL 0x1000 /* Longshine family */
  354. #define drv_260 (drv_famL+0x01) /* LCS-7260 */
  355. #define drv_e1 (drv_famL+0x01) /* LCS-7260, firmware "A E1" */
  356. #define drv_f4 (drv_famL+0x02) /* LCS-7260, firmware "A4F4" */
  357. #define drv_famV 0x2000 /* ECS-AT (vertos-100) family */
  358. #define drv_at (drv_famV+0x01) /* ECS-AT, firmware "1.00" */
  359. #define fam0_drive (D_S[d].drv_type&drv_fam0)
  360. #define famL_drive (D_S[d].drv_type&drv_famL)
  361. #define famV_drive (D_S[d].drv_type&drv_famV)
  362. #define fam1_drive (D_S[d].drv_type&drv_fam1)
  363. #define fam2_drive (D_S[d].drv_type&drv_fam2)
  364. #define famT_drive (D_S[d].drv_type&drv_famT)
  365. #define fam0L_drive (D_S[d].drv_type&(drv_fam0|drv_famL))
  366. #define fam0V_drive (D_S[d].drv_type&(drv_fam0|drv_famV))
  367. #define famLV_drive (D_S[d].drv_type&(drv_famL|drv_famV))
  368. #define fam0LV_drive (D_S[d].drv_type&(drv_fam0|drv_famL|drv_famV))
  369. #define fam1L_drive (D_S[d].drv_type&(drv_fam1|drv_famL))
  370. #define fam1V_drive (D_S[d].drv_type&(drv_fam1|drv_famV))
  371. #define fam1LV_drive (D_S[d].drv_type&(drv_fam1|drv_famL|drv_famV))
  372. #define fam01_drive (D_S[d].drv_type&(drv_fam0|drv_fam1))
  373. #define fam12_drive (D_S[d].drv_type&(drv_fam1|drv_fam2))
  374. #define fam2T_drive (D_S[d].drv_type&(drv_fam2|drv_famT))
  375. /*
  376.  * audio states:
  377.  */
  378. #define audio_completed 3 /* Forgot this one! --AJK */
  379. #define audio_playing 2
  380. #define audio_pausing 1
  381. /*
  382.  * drv_pattern, drv_options:
  383.  */
  384. #define speed_auto 0x80
  385. #define speed_300 0x40
  386. #define speed_150 0x20
  387. #define audio_mono 0x04
  388. /*
  389.  * values of cmd_type (0 else):
  390.  */
  391. #define READ_M1 0x01 /* "data mode 1": 2048 bytes per frame */
  392. #define READ_M2 0x02 /* "data mode 2": 12+2048+280 bytes per frame */
  393. #define READ_SC 0x04 /* "subchannel info": 96 bytes per frame */
  394. #define READ_AU 0x08 /* "audio frame": 2352 bytes per frame */
  395. /*
  396.  * sense_byte:
  397.  *
  398.  *          values: 00
  399.  *                  01
  400.  *                  81
  401.  *                  82 "raw audio" mode
  402.  *                  xx from infobuf[0] after 85 00 00 00 00 00 00
  403.  */
  404. /* audio status (bin) */
  405. #define aud_00 0x00 /* Audio status byte not supported or not valid */
  406. #define audx11 0x0b /* Audio play operation in progress             */
  407. #define audx12 0x0c /* Audio play operation paused                  */
  408. #define audx13 0x0d /* Audio play operation successfully completed  */
  409. #define audx14 0x0e /* Audio play operation stopped due to error    */
  410. #define audx15 0x0f /* No current audio status to return            */
  411. /* audio status (bcd) */
  412. #define aud_11 0x11 /* Audio play operation in progress             */
  413. #define aud_12 0x12 /* Audio play operation paused                  */
  414. #define aud_13 0x13 /* Audio play operation successfully completed  */
  415. #define aud_14 0x14 /* Audio play operation stopped due to error    */
  416. #define aud_15 0x15 /* No current audio status to return            */
  417. /*
  418.  * highest allowed drive number (MINOR+1)
  419.  */
  420. #define NR_SBPCD 4
  421. /*
  422.  * we try to never disable interrupts - seems to work
  423.  */
  424. #define SBPCD_DIS_IRQ 0
  425. /*
  426.  * "write byte to port"
  427.  */
  428. #define OUT(x,y) outb(y,x)
  429. /*==========================================================================*/
  430. #define MIXER_addr SOUND_BASE+4 /* sound card's address register */
  431. #define MIXER_data SOUND_BASE+5 /* sound card's data register */
  432. #define MIXER_CD_Volume 0x28 /* internal SB Pro register address */
  433. /*==========================================================================*/
  434. #define MAX_TRACKS 99
  435. #define ERR_DISKCHANGE 615
  436. /*==========================================================================*/
  437. /*
  438.  * To make conversions easier (machine dependent!)
  439.  */
  440. typedef union _msf
  441. {
  442. u_int n;
  443. u_char c[4];
  444. } MSF;
  445. typedef union _blk
  446. {
  447. u_int n;
  448. u_char c[4];
  449. } BLK;
  450. /*==========================================================================*/
  451. /*============================================================================
  452. ==============================================================================
  453. COMMAND SET of "old" drives like CR-521, CR-522
  454.                (the CR-562 family is different):
  455. No. Command        Code
  456. --------------------------------------------
  457. Drive Commands:
  458.  1 Seek 01
  459.  2 Read Data 02
  460.  3 Read XA-Data 03
  461.  4 Read Header 04
  462.  5 Spin Up 05
  463.  6 Spin Down 06
  464.  7 Diagnostic 07
  465.  8 Read UPC 08
  466.  9 Read ISRC 09
  467. 10 Play Audio 0A
  468. 11 Play Audio MSF 0B
  469. 12 Play Audio Track/Index 0C
  470. Status Commands:
  471. 13 Read Status 81
  472. 14 Read Error 82
  473. 15 Read Drive Version 83
  474. 16 Mode Select 84
  475. 17 Mode Sense 85
  476. 18 Set XA Parameter 86
  477. 19 Read XA Parameter 87
  478. 20 Read Capacity 88
  479. 21 Read SUB_Q 89
  480. 22 Read Disc Code 8A
  481. 23 Read Disc Information 8B
  482. 24 Read TOC 8C
  483. 25 Pause/Resume 8D
  484. 26 Read Packet 8E
  485. 27 Read Path Check 00
  486.  
  487.  
  488. all numbers (lba, msf-bin, msf-bcd, counts) to transfer high byte first
  489. mnemo     7-byte command        #bytes response (r0...rn)
  490. ________ ____________________  ____ 
  491. Read Status:
  492. status:  81.                    (1)  one-byte command, gives the main
  493.                                                           status byte
  494. Read Error:
  495. check1:  82 00 00 00 00 00 00.  (6)  r1: audio status
  496. Read Packet:
  497. check2:  8e xx 00 00 00 00 00. (xx)  gets xx bytes response, relating
  498.                                         to commands 01 04 05 07 08 09
  499. Play Audio:
  500. play:    0a ll-bb-aa nn-nn-nn.  (0)  play audio, ll-bb-aa: starting block (lba),
  501.                                                  nn-nn-nn: #blocks
  502. Play Audio MSF:
  503.          0b mm-ss-ff mm-ss-ff   (0)  play audio from/to
  504. Play Audio Track/Index:
  505.          0c ...
  506. Pause/Resume:
  507. pause:   8d pr 00 00 00 00 00.  (0)  pause (pr=00) 
  508.                                      resume (pr=80) audio playing
  509. Mode Select:
  510.          84 00 nn-nn ??.?? 00   (0)  nn-nn: 2048 or 2340
  511.                                      possibly defines transfer size
  512. set_vol: 84 83 00 00 sw le 00.  (0)  sw(itch): lrxxxxxx (off=1)
  513.                                      le(vel): min=0, max=FF, else half
  514.      (firmware 2.11)
  515. Mode Sense:
  516. get_vol: 85 03 00 00 00 00 00.  (2)  tell current audio volume setting
  517. Read Disc Information:
  518. tocdesc: 8b 00 00 00 00 00 00.  (6)  read the toc descriptor ("msf-bin"-format)
  519. Read TOC:
  520. tocent:  8c fl nn 00 00 00 00.  (8)  read toc entry #nn
  521.                                        (fl=0:"lba"-, =2:"msf-bin"-format)
  522. Read Capacity:
  523. capacit: 88 00 00 00 00 00 00.  (5)  "read CD-ROM capacity"
  524. Read Path Check:
  525. ping:    00 00 00 00 00 00 00.  (2)  r0=AA, r1=55
  526.                                      ("ping" if the drive is connected)
  527. Read Drive Version:
  528. ident:   83 00 00 00 00 00 00. (12)  gives "MATSHITAn.nn" 
  529.                                      (n.nn = 2.01, 2.11., 3.00, ...)
  530. Seek:
  531. seek:    01 00 ll-bb-aa 00 00.  (0)  
  532. seek:    01 02 mm-ss-ff 00 00.  (0)  
  533. Read Data:
  534. read:    02 xx-xx-xx nn-nn fl.  (?)  read nn-nn blocks of 2048 bytes,
  535.                                      starting at block xx-xx-xx  
  536.                                      fl=0: "lba"-, =2:"msf-bcd"-coded xx-xx-xx
  537. Read XA-Data:
  538. read:    03 xx-xx-xx nn-nn fl.  (?)  read nn-nn blocks of 2340 bytes, 
  539.                                      starting at block xx-xx-xx
  540.                                      fl=0: "lba"-, =2:"msf-bcd"-coded xx-xx-xx
  541. Read SUB_Q:
  542.          89 fl 00 00 00 00 00. (13)  r0: audio status, r4-r7: lba/msf, 
  543.                                        fl=0: "lba", fl=2: "msf"
  544. Read Disc Code:
  545.          8a 00 00 00 00 00 00. (14)  possibly extended "check condition"-info
  546. Read Header:
  547.          04 00 ll-bb-aa 00 00.  (0)   4 bytes response with "check2"
  548.          04 02 mm-ss-ff 00 00.  (0)   4 bytes response with "check2"
  549. Spin Up:
  550.          05 00 ll-bb-aa 00 00.  (0)  possibly implies a "seek"
  551. Spin Down:
  552.          06 ...
  553. Diagnostic:
  554.          07 00 ll-bb-aa 00 00.  (2)   2 bytes response with "check2"
  555.          07 02 mm-ss-ff 00 00.  (2)   2 bytes response with "check2"
  556. Read UPC:
  557.          08 00 ll-bb-aa 00 00. (16)  
  558.          08 02 mm-ss-ff 00 00. (16)  
  559. Read ISRC:
  560.          09 00 ll-bb-aa 00 00. (15)  15 bytes response with "check2"
  561.          09 02 mm-ss-ff 00 00. (15)  15 bytes response with "check2"
  562. Set XA Parameter:
  563.          86 ...
  564. Read XA Parameter:
  565.          87 ...
  566. ==============================================================================
  567. ============================================================================*/
  568. /*
  569.  * commands
  570.  *
  571.  * CR-52x:      CMD0_
  572.  * CR-56x:      CMD1_
  573.  * CD200:       CMD2_
  574.  * LCS-7260:    CMDL_
  575.  * TEAC CD-55A: CMDT_
  576.  * ECS-AT:      CMDV_
  577.  */
  578. #define CMD1_RESET 0x0a
  579. #define CMD2_RESET 0x01
  580. #define CMDT_RESET 0xc0
  581. #define CMD1_LOCK_CTL 0x0c
  582. #define CMD2_LOCK_CTL 0x1e
  583. #define CMDT_LOCK_CTL CMD2_LOCK_CTL
  584. #define CMDL_LOCK_CTL 0x0e
  585. #define CMDV_LOCK_CTL CMDL_LOCK_CTL
  586. #define CMD1_TRAY_CTL 0x07
  587. #define CMD2_TRAY_CTL 0x1b
  588. #define CMDT_TRAY_CTL CMD2_TRAY_CTL
  589. #define CMDL_TRAY_CTL 0x0d
  590. #define CMDV_TRAY_CTL CMDL_TRAY_CTL
  591. #define CMD1_MULTISESS 0x8d
  592. #define CMDL_MULTISESS 0x8c
  593. #define CMDV_MULTISESS CMDL_MULTISESS
  594. #define CMD1_SUBCHANINF 0x11
  595. #define CMD2_SUBCHANINF 0x??
  596. #define CMD1_ABORT 0x08
  597. #define CMD2_ABORT 0x08
  598. #define CMDT_ABORT 0x08
  599. #define CMD2_x02 0x02
  600. #define CMD2_SETSPEED 0xda
  601. #define CMD0_PATH_CHECK 0x00
  602. #define CMD1_PATH_CHECK 0x???
  603. #define CMD2_PATH_CHECK 0x???
  604. #define CMDT_PATH_CHECK 0x???
  605. #define CMDL_PATH_CHECK CMD0_PATH_CHECK
  606. #define CMDV_PATH_CHECK CMD0_PATH_CHECK
  607. #define CMD0_SEEK 0x01
  608. #define CMD1_SEEK CMD0_SEEK
  609. #define CMD2_SEEK 0x2b
  610. #define CMDT_SEEK CMD2_SEEK
  611. #define CMDL_SEEK CMD0_SEEK
  612. #define CMDV_SEEK CMD0_SEEK
  613. #define CMD0_READ 0x02
  614. #define CMD1_READ 0x10
  615. #define CMD2_READ 0x28
  616. #define CMDT_READ CMD2_READ
  617. #define CMDL_READ CMD0_READ
  618. #define CMDV_READ CMD0_READ
  619. #define CMD0_READ_XA 0x03
  620. #define CMD2_READ_XA 0xd4
  621. #define CMD2_READ_XA2 0xd5
  622. #define CMDL_READ_XA CMD0_READ_XA /* really ?? */
  623. #define CMDV_READ_XA CMD0_READ_XA
  624. #define CMD0_READ_HEAD 0x04
  625. #define CMD0_SPINUP 0x05
  626. #define CMD1_SPINUP 0x02
  627. #define CMD2_SPINUP CMD2_TRAY_CTL
  628. #define CMDL_SPINUP CMD0_SPINUP
  629. #define CMDV_SPINUP CMD0_SPINUP
  630. #define CMD0_SPINDOWN 0x06 /* really??? */
  631. #define CMD1_SPINDOWN 0x06
  632. #define CMD2_SPINDOWN CMD2_TRAY_CTL
  633. #define CMDL_SPINDOWN 0x0d
  634. #define CMDV_SPINDOWN CMD0_SPINDOWN
  635. #define CMD0_DIAG 0x07
  636. #define CMD0_READ_UPC 0x08
  637. #define CMD1_READ_UPC 0x88
  638. #define CMD2_READ_UPC 0x???
  639. #define CMDL_READ_UPC CMD0_READ_UPC
  640. #define CMDV_READ_UPC 0x8f
  641. #define CMD0_READ_ISRC 0x09
  642. #define CMD0_PLAY 0x0a
  643. #define CMD1_PLAY 0x???
  644. #define CMD2_PLAY 0x???
  645. #define CMDL_PLAY CMD0_PLAY
  646. #define CMDV_PLAY CMD0_PLAY
  647. #define CMD0_PLAY_MSF 0x0b
  648. #define CMD1_PLAY_MSF 0x0e
  649. #define CMD2_PLAY_MSF 0x47
  650. #define CMDT_PLAY_MSF CMD2_PLAY_MSF
  651. #define CMDL_PLAY_MSF 0x???
  652. #define CMD0_PLAY_TI 0x0c
  653. #define CMD1_PLAY_TI 0x0f
  654. #define CMD0_STATUS 0x81
  655. #define CMD1_STATUS 0x05
  656. #define CMD2_STATUS 0x00
  657. #define CMDT_STATUS CMD2_STATUS
  658. #define CMDL_STATUS CMD0_STATUS
  659. #define CMDV_STATUS CMD0_STATUS
  660. #define CMD2_SEEK_LEADIN 0x00
  661. #define CMD0_READ_ERR 0x82
  662. #define CMD1_READ_ERR CMD0_READ_ERR
  663. #define CMD2_READ_ERR 0x03
  664. #define CMDT_READ_ERR CMD2_READ_ERR /* get audio status */
  665. #define CMDL_READ_ERR CMD0_READ_ERR
  666. #define CMDV_READ_ERR CMD0_READ_ERR
  667. #define CMD0_READ_VER 0x83
  668. #define CMD1_READ_VER CMD0_READ_VER
  669. #define CMD2_READ_VER 0x12
  670. #define CMDT_READ_VER CMD2_READ_VER /* really ?? */
  671. #define CMDL_READ_VER CMD0_READ_VER
  672. #define CMDV_READ_VER CMD0_READ_VER
  673. #define CMD0_SETMODE 0x84
  674. #define CMD1_SETMODE 0x09
  675. #define CMD2_SETMODE 0x55
  676. #define CMDT_SETMODE CMD2_SETMODE
  677. #define CMDL_SETMODE CMD0_SETMODE
  678. #define CMD0_GETMODE 0x85
  679. #define CMD1_GETMODE 0x84
  680. #define CMD2_GETMODE 0x5a
  681. #define CMDT_GETMODE CMD2_GETMODE
  682. #define CMDL_GETMODE CMD0_GETMODE
  683. #define CMD0_SET_XA 0x86
  684. #define CMD0_GET_XA 0x87
  685. #define CMD0_CAPACITY 0x88
  686. #define CMD1_CAPACITY 0x85
  687. #define CMD2_CAPACITY 0x25
  688. #define CMDL_CAPACITY CMD0_CAPACITY /* missing in some firmware versions */
  689. #define CMD0_READSUBQ 0x89
  690. #define CMD1_READSUBQ 0x87
  691. #define CMD2_READSUBQ 0x42
  692. #define CMDT_READSUBQ CMD2_READSUBQ
  693. #define CMDL_READSUBQ CMD0_READSUBQ
  694. #define CMDV_READSUBQ CMD0_READSUBQ
  695. #define CMD0_DISKCODE 0x8a
  696. #define CMD0_DISKINFO 0x8b
  697. #define CMD1_DISKINFO CMD0_DISKINFO
  698. #define CMD2_DISKINFO 0x43
  699. #define CMDT_DISKINFO CMD2_DISKINFO
  700. #define CMDL_DISKINFO CMD0_DISKINFO
  701. #define CMDV_DISKINFO CMD0_DISKINFO
  702. #define CMD0_READTOC 0x8c
  703. #define CMD1_READTOC CMD0_READTOC
  704. #define CMD2_READTOC 0x???
  705. #define CMDL_READTOC CMD0_READTOC
  706. #define CMDV_READTOC CMD0_READTOC
  707. #define CMD0_PAU_RES 0x8d
  708. #define CMD1_PAU_RES 0x0d
  709. #define CMD2_PAU_RES 0x4b
  710. #define CMDT_PAUSE CMD2_PAU_RES
  711. #define CMDL_PAU_RES CMD0_PAU_RES
  712. #define CMDV_PAUSE CMD0_PAU_RES
  713. #define CMD0_PACKET 0x8e
  714. #define CMD1_PACKET CMD0_PACKET
  715. #define CMD2_PACKET 0x???
  716. #define CMDL_PACKET CMD0_PACKET
  717. #define CMDV_PACKET 0x???
  718. /*==========================================================================*/
  719. /*==========================================================================*/
  720. #endif /* _LINUX_SBPCD_H */
  721. /*==========================================================================*/
  722. /*
  723.  * Overrides for Emacs so that we follow Linus's tabbing style.
  724.  * Emacs will notice this stuff at the end of the file and automatically
  725.  * adjust the settings for this buffer only.  This must remain at the end
  726.  * of the file. 
  727.  * ---------------------------------------------------------------------------
  728.  * Local variables:
  729.  * c-indent-level: 8
  730.  * c-brace-imaginary-offset: 0
  731.  * c-brace-offset: -8
  732.  * c-argdecl-indent: 8
  733.  * c-label-offset: -8
  734.  * c-continued-statement-offset: 8
  735.  * c-continued-brace-offset: 0
  736.  * End:
  737.  */