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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2. pcd.c (c) 1997-8  Grant R. Guenther <grant@torque.net>
  3.             Under the terms of the GNU General Public License.
  4. This is a high-level driver for parallel port ATAPI CD-ROM
  5.         drives based on chips supported by the paride module.
  6.         By default, the driver will autoprobe for a single parallel
  7.         port ATAPI CD-ROM drive, but if their individual parameters are
  8.         specified, the driver can handle up to 4 drives.
  9.         The behaviour of the pcd driver can be altered by setting
  10.         some parameters from the insmod command line.  The following
  11.         parameters are adjustable:
  12.             drive0      These four arguments can be arrays of       
  13.             drive1      1-6 integers as follows:
  14.             drive2
  15.             drive3      <prt>,<pro>,<uni>,<mod>,<slv>,<dly>
  16.                         Where,
  17.                 <prt>   is the base of the parallel port address for
  18.                         the corresponding drive.  (required)
  19.                 <pro>   is the protocol number for the adapter that
  20.                         supports this drive.  These numbers are
  21.                         logged by 'paride' when the protocol modules
  22.                         are initialised.  (0 if not given)
  23.                 <uni>   for those adapters that support chained
  24.                         devices, this is the unit selector for the
  25.                         chain of devices on the given port.  It should
  26.                         be zero for devices that don't support chaining.
  27.                         (0 if not given)
  28.                 <mod>   this can be -1 to choose the best mode, or one
  29.                         of the mode numbers supported by the adapter.
  30.                         (-1 if not given)
  31. <slv>   ATAPI CD-ROMs can be jumpered to master or slave.
  32. Set this to 0 to choose the master drive, 1 to
  33.                         choose the slave, -1 (the default) to choose the
  34. first drive found.
  35.                 <dly>   some parallel ports require the driver to 
  36.                         go more slowly.  -1 sets a default value that
  37.                         should work with the chosen protocol.  Otherwise,
  38.                         set this to a small integer, the larger it is
  39.                         the slower the port i/o.  In some cases, setting
  40.                         this to zero will speed up the device. (default -1)
  41.                         
  42.             major       You may use this parameter to overide the
  43.                         default major number (46) that this driver
  44.                         will use.  Be sure to change the device
  45.                         name as well.
  46.             name        This parameter is a character string that
  47.                         contains the name the kernel will use for this
  48.                         device (in /proc output, for instance).
  49.                         (default "pcd")
  50.             verbose     This parameter controls the amount of logging
  51.                         that the driver will do.  Set it to 0 for
  52.                         normal operation, 1 to see autoprobe progress
  53.                         messages, or 2 to see additional debugging
  54.                         output.  (default 0)
  55.   
  56.             nice        This parameter controls the driver's use of
  57.                         idle CPU time, at the expense of some speed.
  58.  
  59. If this driver is built into the kernel, you can use kernel
  60.         the following command line parameters, with the same values
  61.         as the corresponding module parameters listed above:
  62.     pcd.drive0
  63.     pcd.drive1
  64.     pcd.drive2
  65.     pcd.drive3
  66.     pcd.nice
  67.         In addition, you can use the parameter pcd.disable to disable
  68.         the driver entirely.
  69. */
  70. /* Changes:
  71. 1.01 GRG 1998.01.24 Added test unit ready support
  72. 1.02    GRG 1998.05.06  Changes to pcd_completion, ready_wait,
  73. and loosen interpretation of ATAPI
  74.         standard for clearing error status.
  75. Use spinlocks. Eliminate sti().
  76. 1.03    GRG 1998.06.16  Eliminated an Ugh
  77. 1.04 GRG 1998.08.15  Added extra debugging, improvements to
  78. pcd_completion, use HZ in loop timing
  79. 1.05 GRG 1998.08.16 Conformed to "Uniform CD-ROM" standard
  80. 1.06    GRG 1998.08.19  Added audio ioctl support
  81. 1.07    GRG 1998.09.24  Increased reset timeout, added jumbo support
  82. */
  83. #define PCD_VERSION "1.07"
  84. #define PCD_MAJOR 46
  85. #define PCD_NAME "pcd"
  86. #define PCD_UNITS 4
  87. /* Here are things one can override from the insmod command.
  88.    Most are autoprobed by paride unless set here.  Verbose is off
  89.    by default.
  90. */
  91. static int      verbose = 0;
  92. static int      major = PCD_MAJOR;
  93. static char     *name = PCD_NAME;
  94. static int      nice = 0;
  95. static int      disable = 0;
  96. static int drive0[6] = {0,0,0,-1,-1,-1};
  97. static int drive1[6] = {0,0,0,-1,-1,-1};
  98. static int drive2[6] = {0,0,0,-1,-1,-1};
  99. static int drive3[6] = {0,0,0,-1,-1,-1};
  100. static int (*drives[4])[6] = {&drive0,&drive1,&drive2,&drive3};
  101. static int pcd_drive_count;
  102. #define D_PRT   0
  103. #define D_PRO   1
  104. #define D_UNI   2
  105. #define D_MOD   3
  106. #define D_SLV   4
  107. #define D_DLY   5
  108. #define DU              (*drives[unit])
  109. /* end of parameters */
  110. #include <linux/module.h>
  111. #include <linux/errno.h>
  112. #include <linux/fs.h>
  113. #include <linux/kernel.h>
  114. #include <linux/delay.h>
  115. #include <linux/cdrom.h>
  116. #include <linux/spinlock.h>
  117. #include <asm/uaccess.h>
  118. #ifndef MODULE
  119. #include "setup.h"
  120. static STT pcd_stt[6] = {{"drive0",6,drive0},
  121.                          {"drive1",6,drive1},
  122.                          {"drive2",6,drive2},
  123.                          {"drive3",6,drive3},
  124.  {"disable",1,&disable},
  125.                          {"nice",1,&nice}};
  126. void pcd_setup( char *str, int *ints)
  127. {       generic_setup(pcd_stt,6,str);
  128. }
  129. #endif
  130. MODULE_PARM(verbose,"i");
  131. MODULE_PARM(major,"i");
  132. MODULE_PARM(name,"s");
  133. MODULE_PARM(nice,"i");
  134. MODULE_PARM(drive0,"1-6i");
  135. MODULE_PARM(drive1,"1-6i");
  136. MODULE_PARM(drive2,"1-6i");
  137. MODULE_PARM(drive3,"1-6i");
  138. #include "paride.h"
  139. /* set up defines for blk.h,  why don't all drivers do it this way ? */
  140. #define MAJOR_NR major
  141. #define DEVICE_NAME "PCD"
  142. #define DEVICE_REQUEST do_pcd_request
  143. #define DEVICE_NR(device) (MINOR(device))
  144. #define DEVICE_ON(device)
  145. #define DEVICE_OFF(device)
  146. #include <linux/blk.h>
  147. #include "pseudo.h"
  148. #define PCD_RETRIES      5
  149. #define PCD_TMO    800 /* timeout in jiffies */
  150. #define PCD_DELAY           50          /* spin delay in uS */
  151. #define PCD_READY_TMO     20 /* in seconds */
  152. #define PCD_RESET_TMO    100 /* in tenths of a second */
  153. #define PCD_SPIN (1000000*PCD_TMO)/(HZ*PCD_DELAY)
  154. #define IDE_ERR 0x01
  155. #define IDE_DRQ         0x08
  156. #define IDE_READY       0x40
  157. #define IDE_BUSY        0x80
  158. int pcd_init(void);
  159. void cleanup_module( void );
  160. static int pcd_open(struct cdrom_device_info *cdi, int purpose);
  161. static void pcd_release(struct cdrom_device_info *cdi);
  162. static int pcd_drive_status(struct cdrom_device_info *cdi, int slot_nr);
  163. static int pcd_media_changed(struct cdrom_device_info *cdi, int slot_nr);
  164. static int pcd_tray_move(struct cdrom_device_info *cdi, int position);
  165. static int pcd_lock_door(struct cdrom_device_info *cdi, int lock);
  166. static int pcd_drive_reset(struct cdrom_device_info *cdi);
  167. static int pcd_get_mcn (struct cdrom_device_info *cdi, struct cdrom_mcn *mcn);
  168. static int pcd_audio_ioctl(struct cdrom_device_info *cdi,
  169. unsigned int cmd, void *arg);
  170. static int pcd_packet(struct cdrom_device_info *cdi,
  171. struct cdrom_generic_command *cgc);
  172. static int  pcd_detect(void);
  173. static void  pcd_probe_capabilities(void);
  174. static void     do_pcd_read_drq(void);
  175. static void  do_pcd_request(request_queue_t * q);
  176. static void  do_pcd_read(void);
  177. static int pcd_blocksizes[PCD_UNITS];
  178. struct pcd_unit {
  179. struct pi_adapter pia; /* interface to paride layer */
  180. struct pi_adapter *pi;
  181. int drive; /* master/slave */
  182. int last_sense; /* result of last request sense */
  183. int changed; /* media change seen */
  184. int present; /* does this unit exist ? */
  185. char *name; /* pcd0, pcd1, etc */
  186. struct cdrom_device_info info; /* uniform cdrom interface */
  187. };
  188. struct pcd_unit pcd[PCD_UNITS];
  189. /*  'unit' must be defined in all functions - either as a local or a param */
  190. #define PCD pcd[unit]
  191. #define PI PCD.pi
  192. static char pcd_scratch[64];
  193. static char pcd_buffer[2048];           /* raw block buffer */
  194. static int pcd_bufblk = -1;             /* block in buffer, in CD units,
  195.                                            -1 for nothing there. See also
  196.    pd_unit.
  197.  */
  198. /* the variables below are used mainly in the I/O request engine, which
  199.    processes only one request at a time.
  200. */
  201. static int pcd_unit = -1; /* unit of current request & bufblk */
  202. static int pcd_retries; /* retries on current request */
  203. static int pcd_busy = 0; /* request being processed ? */
  204. static int pcd_sector; /* address of next requested sector */
  205. static int pcd_count; /* number of blocks still to do */
  206. static char * pcd_buf; /* buffer for request in progress */
  207. static int pcd_warned = 0; /* Have we logged a phase warning ? */
  208. /* kernel glue structures */
  209. static struct block_device_operations pcd_bdops = {
  210. owner: THIS_MODULE,
  211. open: cdrom_open,
  212. release: cdrom_release,
  213. ioctl: cdrom_ioctl,
  214. check_media_change: cdrom_media_changed,
  215. };
  216. static struct cdrom_device_ops pcd_dops = {
  217. pcd_open,
  218. pcd_release,
  219. pcd_drive_status,
  220. pcd_media_changed,
  221. pcd_tray_move,
  222. pcd_lock_door,
  223. 0, /* select speed */
  224. 0, /* select disk  */
  225. 0,  /* get last session */
  226. pcd_get_mcn,
  227. pcd_drive_reset,
  228. pcd_audio_ioctl,
  229. 0, /* dev_ioctl */
  230. CDC_CLOSE_TRAY    |
  231. CDC_OPEN_TRAY    |
  232. CDC_LOCK    |
  233. CDC_MCN    |
  234. CDC_MEDIA_CHANGED  |
  235. CDC_RESET    |
  236. CDC_PLAY_AUDIO    |
  237. CDC_GENERIC_PACKET |
  238. CDC_CD_R    |
  239. CDC_CD_RW,
  240. 0,
  241. pcd_packet,
  242. };
  243. static void pcd_init_units( void )
  244. {       int     unit, j;
  245.         pcd_drive_count = 0;
  246.         for (unit=0;unit<PCD_UNITS;unit++) {
  247.                 PCD.pi = & PCD.pia;
  248.                 PCD.present = 0;
  249. PCD.last_sense = 0;
  250. PCD.changed = 1;
  251.                 PCD.drive = DU[D_SLV];
  252.                 if (DU[D_PRT]) pcd_drive_count++;
  253.  
  254.                 j = 0;
  255.                 while ((j < (sizeof(PCD.info.name)-2)) && 
  256.        (PCD.info.name[j]=name[j])) j++;
  257.                 PCD.info.name[j++] = '0' + unit;
  258.                 PCD.info.name[j] = 0;
  259. PCD.name = &PCD.info.name[0];
  260. PCD.info.ops = &pcd_dops;
  261. PCD.info.handle = NULL;
  262. PCD.info.dev = MKDEV(major,unit);
  263. PCD.info.speed = 0;
  264. PCD.info.capacity = 1;
  265. PCD.info.mask = 0;
  266.         }
  267. }
  268. int pcd_init (void) /* preliminary initialisation */
  269. {       int  i, unit;
  270. if (disable) return -1;
  271. pcd_init_units();
  272. if (pcd_detect()) return -1;
  273. /* get the atapi capabilities page */
  274. pcd_probe_capabilities();
  275. if (register_blkdev(MAJOR_NR,name,&pcd_bdops)) {
  276. printk("pcd: unable to get major number %dn",MAJOR_NR);
  277. return -1;
  278. }
  279. for (unit=0;unit<PCD_UNITS;unit++) {
  280. if (PCD.present) {
  281. register_cdrom(&PCD.info);
  282. devfs_plain_cdrom(&PCD.info, &pcd_bdops);
  283. }
  284. }
  285. blk_init_queue(BLK_DEFAULT_QUEUE(MAJOR_NR), DEVICE_REQUEST);
  286. read_ahead[MAJOR_NR] = 8; /* 8 sector (4kB) read ahead */
  287. for (i=0;i<PCD_UNITS;i++) pcd_blocksizes[i] = 1024;
  288.         blksize_size[MAJOR_NR] = pcd_blocksizes;
  289. return 0;
  290. }
  291. static int pcd_open(struct cdrom_device_info *cdi, int purpose)
  292. { int unit = DEVICE_NR(cdi->dev);
  293. if  ((unit >= PCD_UNITS) || (!PCD.present)) return -ENODEV;
  294. return 0;
  295. }
  296. static void pcd_release(struct cdrom_device_info *cdi)
  297. {
  298. }
  299. #ifdef MODULE
  300. /* Glue for modules ... */
  301. int init_module(void)
  302. { int err;
  303. #ifdef PARIDE_JUMBO
  304.        { extern paride_init();
  305.          paride_init();
  306.        } 
  307. #endif
  308. err = pcd_init();
  309. return err;
  310. }
  311. void cleanup_module(void)
  312. { int unit;
  313.         for (unit=0;unit<PCD_UNITS;unit++) 
  314.            if (PCD.present) {
  315. pi_release(PI);
  316. unregister_cdrom(&PCD.info);
  317.    }
  318. unregister_blkdev(MAJOR_NR,name);
  319. }
  320. #endif
  321. #define WR(c,r,v)       pi_write_regr(PI,c,r,v)
  322. #define RR(c,r)         (pi_read_regr(PI,c,r))
  323. static int pcd_wait( int unit, int go, int stop, char * fun, char * msg )
  324. { int j, r, e, s, p;
  325. j = 0;
  326. while ((((r=RR(1,6))&go)||(stop&&(!(r&stop))))&&(j++<PCD_SPIN))
  327. udelay(PCD_DELAY);
  328. if ((r&(IDE_ERR&stop))||(j>=PCD_SPIN)) {
  329.    s = RR(0,7);
  330.    e = RR(0,1);
  331.    p = RR(0,2);
  332.            if (j >= PCD_SPIN) e |= 0x100;
  333.            if (fun) printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x"
  334.    " loop=%d phase=%dn",
  335.     PCD.name,fun,msg,r,s,e,j,p);
  336.    return (s<<8)+r;
  337. }
  338. return 0;
  339. }
  340. static int pcd_command( int unit, char * cmd, int dlen, char * fun )
  341. { pi_connect(PI);
  342.         WR(0,6,0xa0 + 0x10*PCD.drive);
  343. if (pcd_wait(unit,IDE_BUSY|IDE_DRQ,0,fun,"before command")) {
  344. pi_disconnect(PI);
  345. return -1;
  346. }
  347.         WR(0,4,dlen % 256);
  348.         WR(0,5,dlen / 256);
  349.         WR(0,7,0xa0);          /* ATAPI packet command */
  350.         if (pcd_wait(unit,IDE_BUSY,IDE_DRQ,fun,"command DRQ")) {
  351. pi_disconnect(PI);
  352. return -1;
  353. }
  354.         if (RR(0,2) != 1) {
  355.            printk("%s: %s: command phase errorn",PCD.name,fun);
  356.    pi_disconnect(PI);
  357.            return -1;
  358.         }
  359. pi_write_block(PI,cmd,12);
  360. return 0;
  361. }
  362. static int pcd_completion( int unit, char * buf,  char * fun )
  363. { int r, d, p, n, k, j;
  364. r = -1; k = 0; j = 0;
  365. if (!pcd_wait(unit,IDE_BUSY,IDE_DRQ|IDE_READY|IDE_ERR,
  366. fun,"completion")) {
  367.     r = 0;
  368.     while (RR(0,7)&IDE_DRQ) {
  369.         d = (RR(0,4)+256*RR(0,5));
  370.         n = ((d+3)&0xfffc);
  371.         p = RR(0,2)&3;
  372.         if ((p == 2) && (n > 0) && (j == 0)) {
  373.     pi_read_block(PI,buf,n);
  374.             if (verbose > 1) 
  375. printk("%s: %s: Read %d bytesn",PCD.name,fun,n);
  376.     r = 0; j++;
  377.         } else {
  378.     if (verbose > 1) 
  379.         printk("%s: %s: Unexpected phase %d, d=%d, k=%dn",
  380. PCD.name,fun,p,d,k);
  381.     if ((verbose < 2) && !pcd_warned) {
  382.                 pcd_warned = 1;
  383. printk("%s: WARNING: ATAPI phase errorsn",PCD.name);
  384. }
  385.     mdelay(1);
  386.         } 
  387. if (k++ > PCD_TMO) {
  388. printk("%s: Stuck DRQn",PCD.name);
  389. break;
  390. }
  391.         if (pcd_wait(unit,IDE_BUSY,IDE_DRQ|IDE_READY|IDE_ERR,
  392. fun,"completion")) { 
  393. r = -1;
  394. break;
  395. }
  396.     }
  397. }
  398. pi_disconnect(PI); 
  399. return r;
  400. }
  401. static void pcd_req_sense( int unit, char *fun )
  402. { char rs_cmd[12] = { 0x03,0,0,0,16,0,0,0,0,0,0,0 };
  403. char buf[16];
  404. int  r, c;
  405. r = pcd_command(unit,rs_cmd,16,"Request sense");
  406. mdelay(1);
  407. if (!r) pcd_completion(unit,buf,"Request sense");
  408. PCD.last_sense = -1;  c = 2;
  409. if (!r) {
  410.             if (fun) printk("%s: %s: Sense key: %x, ASC: %x, ASQ: %xn",
  411.                        PCD.name,fun,buf[2]&0xf,buf[12],buf[13]);
  412.     c = buf[2]&0xf;
  413.     PCD.last_sense = c | ((buf[12]&0xff)<<8) | ((buf[13]&0xff)<<16);
  414.         } 
  415. if ((c == 2) || (c == 6)) PCD.changed = 1;
  416. }
  417. static int pcd_atapi( int unit, char * cmd, int dlen, char * buf, char * fun )
  418. { int r;
  419. r = pcd_command(unit,cmd,dlen,fun);
  420. mdelay(1);
  421. if (!r) r = pcd_completion(unit,buf,fun);
  422. if (r) pcd_req_sense(unit,fun);
  423. return r;
  424. }
  425. static int pcd_packet(struct cdrom_device_info *cdi,
  426. struct cdrom_generic_command *cgc)
  427. {
  428. char *un_cmd;
  429. int unit = DEVICE_NR(cdi->dev);
  430. un_cmd = cgc->cmd;
  431. return pcd_atapi(unit,un_cmd,cgc->buflen,cgc->buffer, "generic packet");
  432. }
  433. #define DBMSG(msg) ((verbose>1)?(msg):NULL)
  434. static int pcd_media_changed(struct cdrom_device_info *cdi, int slot_nr)
  435. { int  r;
  436. int unit = DEVICE_NR(cdi->dev);
  437. r = PCD.changed;
  438. PCD.changed = 0;
  439. return r;    
  440. }
  441. static int pcd_lock_door(struct cdrom_device_info *cdi, int lock)
  442. { char un_cmd[12] = { 0x1e,0,0,0,lock,0,0,0,0,0,0,0 };
  443.         int     unit = DEVICE_NR(cdi->dev);
  444. return pcd_atapi(unit,un_cmd,0,pcd_scratch,
  445. lock?"lock door":"unlock door");
  446. }
  447. static int pcd_tray_move(struct cdrom_device_info *cdi, int position)
  448. { char ej_cmd[12] = { 0x1b,0,0,0,3-position,0,0,0,0,0,0,0 };
  449. int unit = DEVICE_NR(cdi->dev);
  450. return pcd_atapi(unit,ej_cmd,0,pcd_scratch,
  451. position?"eject":"close tray");
  452. }
  453. static void pcd_sleep( int cs )
  454. {       current->state = TASK_INTERRUPTIBLE;
  455.         schedule_timeout(cs);
  456. }
  457. static int pcd_reset( int unit )
  458. { int i, k, flg;
  459. int expect[5] = {1,1,1,0x14,0xeb};
  460. pi_connect(PI);
  461. WR(0,6,0xa0 + 0x10*PCD.drive);
  462. WR(0,7,8);
  463. pcd_sleep(20*HZ/1000);   /* delay a bit */
  464. k = 0;
  465. while ((k++ < PCD_RESET_TMO) && (RR(1,6)&IDE_BUSY))
  466. pcd_sleep(HZ/10);
  467. flg = 1;
  468. for(i=0;i<5;i++) flg &= (RR(0,i+1) == expect[i]);
  469. if (verbose) {
  470. printk("%s: Reset (%d) signature = ",PCD.name,k);
  471. for (i=0;i<5;i++) printk("%3x",RR(0,i+1));
  472. if (!flg) printk(" (incorrect)");
  473. printk("n");
  474. }
  475. pi_disconnect(PI);
  476. return flg-1;
  477. }
  478. static int pcd_drive_reset(struct cdrom_device_info *cdi)
  479. { return pcd_reset(DEVICE_NR(cdi->dev));
  480. }
  481. static int pcd_ready_wait( int unit, int tmo )
  482. {       char    tr_cmd[12] = {0,0,0,0,0,0,0,0,0,0,0,0};
  483.         int     k, p;
  484.         k = 0;
  485.         while (k < tmo) {
  486.           PCD.last_sense = 0;
  487.           pcd_atapi(unit,tr_cmd,0,NULL,DBMSG("test unit ready"));
  488.           p = PCD.last_sense;
  489.           if (!p) return 0;
  490.   if (!(((p & 0xffff) == 0x0402)||((p & 0xff) == 6))) return p;
  491.           k++;
  492.           pcd_sleep(HZ);
  493.         }
  494.         return 0x000020;        /* timeout */
  495. }
  496. static int pcd_drive_status(struct cdrom_device_info *cdi, int slot_nr)
  497. { char    rc_cmd[12] = { 0x25,0,0,0,0,0,0,0,0,0,0,0};
  498. int unit = DEVICE_NR(cdi->dev);
  499. if (pcd_ready_wait(unit,PCD_READY_TMO)) 
  500. return CDS_DRIVE_NOT_READY;
  501. if (pcd_atapi(unit,rc_cmd,8,pcd_scratch,DBMSG("check media")))
  502. return CDS_NO_DISC;
  503. return CDS_DISC_OK;
  504. }
  505. static int pcd_identify( int unit, char * id )
  506. { int k, s;
  507. char   id_cmd[12] = {0x12,0,0,0,36,0,0,0,0,0,0,0};
  508. pcd_bufblk = -1;
  509.         s = pcd_atapi(unit,id_cmd,36,pcd_buffer,"identify");
  510. if (s) return -1;
  511. if ((pcd_buffer[0] & 0x1f) != 5) {
  512.   if (verbose) printk("%s: %s is not a CD-ROMn",
  513. PCD.name,PCD.drive?"Slave":"Master");
  514.   return -1;
  515. }
  516. for (k=0;k<16;k++) id[k] = pcd_buffer[16+k]; id[16] = 0;
  517. k = 16; while ((k >= 0) && (id[k] <= 0x20)) { id[k] = 0; k--; }
  518. printk("%s: %s: %sn",PCD.name,PCD.drive?"Slave":"Master",id);
  519. return 0;
  520. }
  521. static int pcd_probe( int unit, int ms, char * id )
  522. /* returns  0, with id set if drive is detected
  523.         -1, if drive detection failed
  524. */
  525. { if (ms == -1) {
  526.             for (PCD.drive=0;PCD.drive<=1;PCD.drive++)
  527.        if (!pcd_reset(unit) && !pcd_identify(unit,id)) 
  528.   return 0;
  529. } else {
  530.     PCD.drive = ms;
  531.             if (!pcd_reset(unit) && !pcd_identify(unit,id)) 
  532. return 0;
  533. }
  534. return -1;
  535. }
  536. static void pcd_probe_capabilities( void )
  537. { int unit, r;
  538. char buffer[32];
  539. char  cmd[12]={0x5a,1<<3,0x2a,0,0,0,0,18,0,0,0,0};
  540. for (unit=0;unit<PCD_UNITS;unit++) {
  541. if (!PCD.present) continue;
  542. r = pcd_atapi(unit,cmd,18, buffer,"mode sense capabilities");
  543. if (r) continue;
  544. /* we should now have the cap page */
  545. if ((buffer[11] & 1) == 0)
  546. PCD.info.mask |= CDC_CD_R;
  547. if ((buffer[11] & 2) == 0)
  548. PCD.info.mask |= CDC_CD_RW;
  549. if ((buffer[12] & 1) == 0)
  550. PCD.info.mask |= CDC_PLAY_AUDIO;
  551. if ((buffer[14] & 1) == 0)
  552. PCD.info.mask |= CDC_LOCK;
  553. if ((buffer[14] & 8) == 0)
  554. PCD.info.mask |= CDC_OPEN_TRAY;
  555. if ((buffer[14] >> 6) == 0)
  556. PCD.info.mask |= CDC_CLOSE_TRAY;
  557. }
  558. }
  559. static int pcd_detect( void )
  560. { char    id[18];
  561. int k, unit;
  562. printk("%s: %s version %s, major %d, nice %dn",
  563. name,name,PCD_VERSION,major,nice);
  564. k = 0;
  565. if (pcd_drive_count == 0) {  /* nothing spec'd - so autoprobe for 1 */
  566.     unit = 0;
  567.     if (pi_init(PI,1,-1,-1,-1,-1,-1,pcd_buffer,
  568.                      PI_PCD,verbose,PCD.name)) {
  569. if (!pcd_probe(unit,-1,id)) {
  570. PCD.present = 1;
  571. k++;
  572. } else pi_release(PI);
  573.     }
  574. } else for (unit=0;unit<PCD_UNITS;unit++) if (DU[D_PRT])
  575.     if (pi_init(PI,0,DU[D_PRT],DU[D_MOD],DU[D_UNI],
  576.                         DU[D_PRO],DU[D_DLY],pcd_buffer,PI_PCD,verbose,
  577.                         PCD.name)) {
  578. if (!pcd_probe(unit,DU[D_SLV],id)) {
  579.                         PCD.present = 1;
  580.                         k++;
  581.                 } else pi_release(PI);
  582.             }
  583. if (k) return 0;
  584. printk("%s: No CD-ROM drive foundn",name);
  585. return -1;
  586. }
  587. /* I/O request processing */
  588. static void do_pcd_request (request_queue_t * q)
  589. {       int unit;
  590. if (pcd_busy) return;
  591.         while (1) {
  592.     if (QUEUE_EMPTY || (CURRENT->rq_status == RQ_INACTIVE)) return;
  593.     INIT_REQUEST;
  594.     if (CURRENT->cmd == READ) {
  595. unit = MINOR(CURRENT->rq_dev);
  596. if (unit != pcd_unit) {
  597. pcd_bufblk = -1;
  598. pcd_unit = unit;
  599. }
  600.         pcd_sector = CURRENT->sector;
  601.         pcd_count = CURRENT->current_nr_sectors;
  602.         pcd_buf = CURRENT->buffer;
  603. pcd_busy = 1;
  604.         ps_set_intr(do_pcd_read,0,0,nice); 
  605. return;
  606.     } 
  607.     else end_request(0);
  608. }
  609. }
  610. static int pcd_ready( void )
  611. { int unit = pcd_unit;
  612. return (((RR(1,6)&(IDE_BUSY|IDE_DRQ))==IDE_DRQ)) ;
  613. }
  614. static void pcd_transfer( void )
  615. { int k, o;
  616. while (pcd_count && (pcd_sector/4 == pcd_bufblk)) {
  617. o = (pcd_sector % 4) * 512;
  618. for(k=0;k<512;k++) pcd_buf[k] = pcd_buffer[o+k];
  619. pcd_count--;
  620. pcd_buf += 512;
  621. pcd_sector++;
  622. }
  623. }
  624. static void pcd_start( void )
  625. { int unit = pcd_unit;
  626. int b, i;
  627. char rd_cmd[12] = {0xa8,0,0,0,0,0,0,0,0,1,0,0};
  628. unsigned long    saved_flags;
  629. pcd_bufblk = pcd_sector / 4;
  630.         b = pcd_bufblk;
  631. for(i=0;i<4;i++) { 
  632.    rd_cmd[5-i] = b & 0xff;
  633.    b = b >> 8;
  634. }
  635. if (pcd_command(unit,rd_cmd,2048,"read block")) {
  636. pcd_bufblk = -1; 
  637. spin_lock_irqsave(&io_request_lock,saved_flags);
  638. pcd_busy = 0;
  639. end_request(0);
  640. do_pcd_request(NULL);
  641. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  642. return;
  643. }
  644. mdelay(1);
  645. ps_set_intr(do_pcd_read_drq,pcd_ready,PCD_TMO,nice);
  646. }
  647. static void do_pcd_read( void )
  648. { int unit = pcd_unit;
  649. unsigned long    saved_flags;
  650. pcd_busy = 1;
  651. pcd_retries = 0;
  652. pcd_transfer();
  653. if (!pcd_count) {
  654. spin_lock_irqsave(&io_request_lock,saved_flags);
  655. end_request(1);
  656. pcd_busy = 0;
  657. do_pcd_request(NULL);
  658. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  659. return;
  660. }
  661. pi_do_claimed(PI,pcd_start);
  662. }
  663. static void do_pcd_read_drq( void )
  664. { int unit = pcd_unit;
  665. unsigned long    saved_flags;
  666. if (pcd_completion(unit,pcd_buffer,"read block")) {
  667.                 if (pcd_retries < PCD_RETRIES) {
  668.                         mdelay(1); 
  669.                         pcd_retries++;
  670. pi_do_claimed(PI,pcd_start);
  671.                         return;
  672.                         }
  673. spin_lock_irqsave(&io_request_lock,saved_flags);
  674. pcd_busy = 0;
  675. pcd_bufblk = -1;
  676. end_request(0);
  677. do_pcd_request(NULL);
  678. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  679. return;
  680. }
  681. do_pcd_read();
  682. spin_lock_irqsave(&io_request_lock,saved_flags);
  683. do_pcd_request(NULL);
  684. spin_unlock_irqrestore(&io_request_lock,saved_flags); 
  685. }
  686. /* the audio_ioctl stuff is adapted from sr_ioctl.c */
  687. static int pcd_audio_ioctl(struct cdrom_device_info *cdi,
  688.                                 unsigned int cmd, void *arg)
  689. { int unit = DEVICE_NR(cdi->dev);
  690.  
  691.      switch (cmd) { 
  692.     
  693.      case CDROMREADTOCHDR:
  694.     
  695. { char cmd[12]={GPCMD_READ_TOC_PMA_ATIP,0,0,0,0,0,0,0,12,0,0,0};
  696. struct cdrom_tochdr* tochdr = (struct cdrom_tochdr*)arg;
  697. char buffer[32];
  698. int r;
  699. r = pcd_atapi(unit,cmd,12,buffer,"read toc header");
  700. tochdr->cdth_trk0 = buffer[2];
  701. tochdr->cdth_trk1 = buffer[3];
  702. return r * EIO;
  703.      }
  704.      case CDROMREADTOCENTRY:
  705.      { char cmd[12]={GPCMD_READ_TOC_PMA_ATIP,0,0,0,0,0,0,0,12,0,0,0};
  706. struct cdrom_tocentry* tocentry = (struct cdrom_tocentry*)arg;
  707. unsigned char buffer[32];
  708. int r;
  709. cmd[1] = (tocentry->cdte_format == CDROM_MSF ? 0x02 : 0);
  710. cmd[6] = tocentry->cdte_track;
  711. r = pcd_atapi(unit,cmd,12,buffer,"read toc entry");
  712.          tocentry->cdte_ctrl = buffer[5] & 0xf;
  713.          tocentry->cdte_adr = buffer[5] >> 4;
  714.          tocentry->cdte_datamode = (tocentry->cdte_ctrl & 0x04)?1:0;
  715. if (tocentry->cdte_format == CDROM_MSF) {
  716.     tocentry->cdte_addr.msf.minute = buffer[9];
  717.          tocentry->cdte_addr.msf.second = buffer[10];
  718.             tocentry->cdte_addr.msf.frame = buffer[11];
  719.         } else
  720.             tocentry->cdte_addr.lba = 
  721. (((((buffer[8] << 8) + buffer[9]) << 8)
  722.                                        + buffer[10]) << 8) + buffer[11];
  723.                 return r * EIO;
  724.         }
  725.      default:
  726.          return -ENOSYS;
  727.      }
  728. }
  729. static int pcd_get_mcn (struct cdrom_device_info *cdi, struct cdrom_mcn *mcn)
  730. { char  cmd[12]={GPCMD_READ_SUBCHANNEL,0,0x40,2,0,0,0,0,24,0,0,0};
  731.         char  buffer[32];
  732. int k;
  733. int unit = DEVICE_NR(cdi->dev);
  734.         if (pcd_atapi(unit,cmd,24,buffer,"get mcn")) return -EIO;
  735. for (k=0;k<13;k++) mcn->medium_catalog_number[k] = buffer[k+9];
  736. mcn->medium_catalog_number[13] = 0;
  737. return 0;
  738. }
  739. /* end of pcd.c */
  740. MODULE_LICENSE("GPL");