pcd.c
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:24k
源码类别:

驱动编程

开发平台:

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. enum {D_PRT, D_PRO, D_UNI, D_MOD, D_SLV, D_DLY};
  103. /* end of parameters */
  104. #include <linux/module.h>
  105. #include <linux/init.h>
  106. #include <linux/errno.h>
  107. #include <linux/fs.h>
  108. #include <linux/kernel.h>
  109. #include <linux/delay.h>
  110. #include <linux/cdrom.h>
  111. #include <linux/spinlock.h>
  112. #include <linux/blkdev.h>
  113. #include <asm/uaccess.h>
  114. static spinlock_t pcd_lock;
  115. module_param(verbose, bool, 0644);
  116. module_param(major, int, 0);
  117. module_param(name, charp, 0);
  118. module_param(nice, int, 0);
  119. module_param_array(drive0, int, NULL, 0);
  120. module_param_array(drive1, int, NULL, 0);
  121. module_param_array(drive2, int, NULL, 0);
  122. module_param_array(drive3, int, NULL, 0);
  123. #include "paride.h"
  124. #include "pseudo.h"
  125. #define PCD_RETRIES      5
  126. #define PCD_TMO    800 /* timeout in jiffies */
  127. #define PCD_DELAY           50 /* spin delay in uS */
  128. #define PCD_READY_TMO     20 /* in seconds */
  129. #define PCD_RESET_TMO    100 /* in tenths of a second */
  130. #define PCD_SPIN (1000000*PCD_TMO)/(HZ*PCD_DELAY)
  131. #define IDE_ERR 0x01
  132. #define IDE_DRQ         0x08
  133. #define IDE_READY       0x40
  134. #define IDE_BUSY        0x80
  135. static int pcd_open(struct cdrom_device_info *cdi, int purpose);
  136. static void pcd_release(struct cdrom_device_info *cdi);
  137. static int pcd_drive_status(struct cdrom_device_info *cdi, int slot_nr);
  138. static int pcd_media_changed(struct cdrom_device_info *cdi, int slot_nr);
  139. static int pcd_tray_move(struct cdrom_device_info *cdi, int position);
  140. static int pcd_lock_door(struct cdrom_device_info *cdi, int lock);
  141. static int pcd_drive_reset(struct cdrom_device_info *cdi);
  142. static int pcd_get_mcn(struct cdrom_device_info *cdi, struct cdrom_mcn *mcn);
  143. static int pcd_audio_ioctl(struct cdrom_device_info *cdi,
  144.    unsigned int cmd, void *arg);
  145. static int pcd_packet(struct cdrom_device_info *cdi,
  146.       struct packet_command *cgc);
  147. static int pcd_detect(void);
  148. static void pcd_probe_capabilities(void);
  149. static void do_pcd_read_drq(void);
  150. static void do_pcd_request(request_queue_t * q);
  151. static void do_pcd_read(void);
  152. struct pcd_unit {
  153. struct pi_adapter pia; /* interface to paride layer */
  154. struct pi_adapter *pi;
  155. int drive; /* master/slave */
  156. int last_sense; /* result of last request sense */
  157. int changed; /* media change seen */
  158. int present; /* does this unit exist ? */
  159. char *name; /* pcd0, pcd1, etc */
  160. struct cdrom_device_info info; /* uniform cdrom interface */
  161. struct gendisk *disk;
  162. };
  163. static struct pcd_unit pcd[PCD_UNITS];
  164. static char pcd_scratch[64];
  165. static char pcd_buffer[2048]; /* raw block buffer */
  166. static int pcd_bufblk = -1; /* block in buffer, in CD units,
  167.    -1 for nothing there. See also
  168.    pd_unit.
  169.  */
  170. /* the variables below are used mainly in the I/O request engine, which
  171.    processes only one request at a time.
  172. */
  173. static struct pcd_unit *pcd_current; /* current request's drive */
  174. static struct request *pcd_req;
  175. static int pcd_retries; /* retries on current request */
  176. static int pcd_busy; /* request being processed ? */
  177. static int pcd_sector; /* address of next requested sector */
  178. static int pcd_count; /* number of blocks still to do */
  179. static char *pcd_buf; /* buffer for request in progress */
  180. static int pcd_warned; /* Have we logged a phase warning ? */
  181. /* kernel glue structures */
  182. static int pcd_block_open(struct inode *inode, struct file *file)
  183. {
  184. struct pcd_unit *cd = inode->i_bdev->bd_disk->private_data;
  185. return cdrom_open(&cd->info, inode, file);
  186. }
  187. static int pcd_block_release(struct inode *inode, struct file *file)
  188. {
  189. struct pcd_unit *cd = inode->i_bdev->bd_disk->private_data;
  190. return cdrom_release(&cd->info, file);
  191. }
  192. static int pcd_block_ioctl(struct inode *inode, struct file *file,
  193. unsigned cmd, unsigned long arg)
  194. {
  195. struct pcd_unit *cd = inode->i_bdev->bd_disk->private_data;
  196. return cdrom_ioctl(file, &cd->info, inode, cmd, arg);
  197. }
  198. static int pcd_block_media_changed(struct gendisk *disk)
  199. {
  200. struct pcd_unit *cd = disk->private_data;
  201. return cdrom_media_changed(&cd->info);
  202. }
  203. static struct block_device_operations pcd_bdops = {
  204. .owner = THIS_MODULE,
  205. .open = pcd_block_open,
  206. .release = pcd_block_release,
  207. .ioctl = pcd_block_ioctl,
  208. .media_changed = pcd_block_media_changed,
  209. };
  210. static struct cdrom_device_ops pcd_dops = {
  211. .open = pcd_open,
  212. .release = pcd_release,
  213. .drive_status = pcd_drive_status,
  214. .media_changed = pcd_media_changed,
  215. .tray_move = pcd_tray_move,
  216. .lock_door = pcd_lock_door,
  217. .get_mcn = pcd_get_mcn,
  218. .reset = pcd_drive_reset,
  219. .audio_ioctl = pcd_audio_ioctl,
  220. .generic_packet = pcd_packet,
  221. .capability = CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK |
  222.   CDC_MCN | CDC_MEDIA_CHANGED | CDC_RESET |
  223.   CDC_PLAY_AUDIO | CDC_GENERIC_PACKET | CDC_CD_R |
  224.   CDC_CD_RW,
  225. };
  226. static void pcd_init_units(void)
  227. {
  228. struct pcd_unit *cd;
  229. int unit;
  230. pcd_drive_count = 0;
  231. for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) {
  232. struct gendisk *disk = alloc_disk(1);
  233. if (!disk)
  234. continue;
  235. cd->disk = disk;
  236. cd->pi = &cd->pia;
  237. cd->present = 0;
  238. cd->last_sense = 0;
  239. cd->changed = 1;
  240. cd->drive = (*drives[unit])[D_SLV];
  241. if ((*drives[unit])[D_PRT])
  242. pcd_drive_count++;
  243. cd->name = &cd->info.name[0];
  244. snprintf(cd->name, sizeof(cd->info.name), "%s%d", name, unit);
  245. cd->info.ops = &pcd_dops;
  246. cd->info.handle = cd;
  247. cd->info.speed = 0;
  248. cd->info.capacity = 1;
  249. cd->info.mask = 0;
  250. disk->major = major;
  251. disk->first_minor = unit;
  252. strcpy(disk->disk_name, cd->name); /* umm... */
  253. disk->fops = &pcd_bdops;
  254. }
  255. }
  256. static int pcd_open(struct cdrom_device_info *cdi, int purpose)
  257. {
  258. struct pcd_unit *cd = cdi->handle;
  259. if (!cd->present)
  260. return -ENODEV;
  261. return 0;
  262. }
  263. static void pcd_release(struct cdrom_device_info *cdi)
  264. {
  265. }
  266. static inline int status_reg(struct pcd_unit *cd)
  267. {
  268. return pi_read_regr(cd->pi, 1, 6);
  269. }
  270. static inline int read_reg(struct pcd_unit *cd, int reg)
  271. {
  272. return pi_read_regr(cd->pi, 0, reg);
  273. }
  274. static inline void write_reg(struct pcd_unit *cd, int reg, int val)
  275. {
  276. pi_write_regr(cd->pi, 0, reg, val);
  277. }
  278. static int pcd_wait(struct pcd_unit *cd, int go, int stop, char *fun, char *msg)
  279. {
  280. int j, r, e, s, p;
  281. j = 0;
  282. while ((((r = status_reg(cd)) & go) || (stop && (!(r & stop))))
  283.        && (j++ < PCD_SPIN))
  284. udelay(PCD_DELAY);
  285. if ((r & (IDE_ERR & stop)) || (j >= PCD_SPIN)) {
  286. s = read_reg(cd, 7);
  287. e = read_reg(cd, 1);
  288. p = read_reg(cd, 2);
  289. if (j >= PCD_SPIN)
  290. e |= 0x100;
  291. if (fun)
  292. printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x"
  293.        " loop=%d phase=%dn",
  294.        cd->name, fun, msg, r, s, e, j, p);
  295. return (s << 8) + r;
  296. }
  297. return 0;
  298. }
  299. static int pcd_command(struct pcd_unit *cd, char *cmd, int dlen, char *fun)
  300. {
  301. pi_connect(cd->pi);
  302. write_reg(cd, 6, 0xa0 + 0x10 * cd->drive);
  303. if (pcd_wait(cd, IDE_BUSY | IDE_DRQ, 0, fun, "before command")) {
  304. pi_disconnect(cd->pi);
  305. return -1;
  306. }
  307. write_reg(cd, 4, dlen % 256);
  308. write_reg(cd, 5, dlen / 256);
  309. write_reg(cd, 7, 0xa0); /* ATAPI packet command */
  310. if (pcd_wait(cd, IDE_BUSY, IDE_DRQ, fun, "command DRQ")) {
  311. pi_disconnect(cd->pi);
  312. return -1;
  313. }
  314. if (read_reg(cd, 2) != 1) {
  315. printk("%s: %s: command phase errorn", cd->name, fun);
  316. pi_disconnect(cd->pi);
  317. return -1;
  318. }
  319. pi_write_block(cd->pi, cmd, 12);
  320. return 0;
  321. }
  322. static int pcd_completion(struct pcd_unit *cd, char *buf, char *fun)
  323. {
  324. int r, d, p, n, k, j;
  325. r = -1;
  326. k = 0;
  327. j = 0;
  328. if (!pcd_wait(cd, IDE_BUSY, IDE_DRQ | IDE_READY | IDE_ERR,
  329.       fun, "completion")) {
  330. r = 0;
  331. while (read_reg(cd, 7) & IDE_DRQ) {
  332. d = read_reg(cd, 4) + 256 * read_reg(cd, 5);
  333. n = (d + 3) & 0xfffc;
  334. p = read_reg(cd, 2) & 3;
  335. if ((p == 2) && (n > 0) && (j == 0)) {
  336. pi_read_block(cd->pi, buf, n);
  337. if (verbose > 1)
  338. printk("%s: %s: Read %d bytesn",
  339.        cd->name, fun, n);
  340. r = 0;
  341. j++;
  342. } else {
  343. if (verbose > 1)
  344. printk
  345.     ("%s: %s: Unexpected phase %d, d=%d, k=%dn",
  346.      cd->name, fun, p, d, k);
  347. if ((verbose < 2) && !pcd_warned) {
  348. pcd_warned = 1;
  349. printk
  350.     ("%s: WARNING: ATAPI phase errorsn",
  351.      cd->name);
  352. }
  353. mdelay(1);
  354. }
  355. if (k++ > PCD_TMO) {
  356. printk("%s: Stuck DRQn", cd->name);
  357. break;
  358. }
  359. if (pcd_wait
  360.     (cd, IDE_BUSY, IDE_DRQ | IDE_READY | IDE_ERR, fun,
  361.      "completion")) {
  362. r = -1;
  363. break;
  364. }
  365. }
  366. }
  367. pi_disconnect(cd->pi);
  368. return r;
  369. }
  370. static void pcd_req_sense(struct pcd_unit *cd, char *fun)
  371. {
  372. char rs_cmd[12] = { 0x03, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0 };
  373. char buf[16];
  374. int r, c;
  375. r = pcd_command(cd, rs_cmd, 16, "Request sense");
  376. mdelay(1);
  377. if (!r)
  378. pcd_completion(cd, buf, "Request sense");
  379. cd->last_sense = -1;
  380. c = 2;
  381. if (!r) {
  382. if (fun)
  383. printk("%s: %s: Sense key: %x, ASC: %x, ASQ: %xn",
  384.        cd->name, fun, buf[2] & 0xf, buf[12], buf[13]);
  385. c = buf[2] & 0xf;
  386. cd->last_sense =
  387.     c | ((buf[12] & 0xff) << 8) | ((buf[13] & 0xff) << 16);
  388. }
  389. if ((c == 2) || (c == 6))
  390. cd->changed = 1;
  391. }
  392. static int pcd_atapi(struct pcd_unit *cd, char *cmd, int dlen, char *buf, char *fun)
  393. {
  394. int r;
  395. r = pcd_command(cd, cmd, dlen, fun);
  396. mdelay(1);
  397. if (!r)
  398. r = pcd_completion(cd, buf, fun);
  399. if (r)
  400. pcd_req_sense(cd, fun);
  401. return r;
  402. }
  403. static int pcd_packet(struct cdrom_device_info *cdi, struct packet_command *cgc)
  404. {
  405. return pcd_atapi(cdi->handle, cgc->cmd, cgc->buflen, cgc->buffer,
  406.  "generic packet");
  407. }
  408. #define DBMSG(msg) ((verbose>1)?(msg):NULL)
  409. static int pcd_media_changed(struct cdrom_device_info *cdi, int slot_nr)
  410. {
  411. struct pcd_unit *cd = cdi->handle;
  412. int res = cd->changed;
  413. if (res)
  414. cd->changed = 0;
  415. return res;
  416. }
  417. static int pcd_lock_door(struct cdrom_device_info *cdi, int lock)
  418. {
  419. char un_cmd[12] = { 0x1e, 0, 0, 0, lock, 0, 0, 0, 0, 0, 0, 0 };
  420. return pcd_atapi(cdi->handle, un_cmd, 0, pcd_scratch,
  421.  lock ? "lock door" : "unlock door");
  422. }
  423. static int pcd_tray_move(struct cdrom_device_info *cdi, int position)
  424. {
  425. char ej_cmd[12] = { 0x1b, 0, 0, 0, 3 - position, 0, 0, 0, 0, 0, 0, 0 };
  426. return pcd_atapi(cdi->handle, ej_cmd, 0, pcd_scratch,
  427.  position ? "eject" : "close tray");
  428. }
  429. static void pcd_sleep(int cs)
  430. {
  431. schedule_timeout_interruptible(cs);
  432. }
  433. static int pcd_reset(struct pcd_unit *cd)
  434. {
  435. int i, k, flg;
  436. int expect[5] = { 1, 1, 1, 0x14, 0xeb };
  437. pi_connect(cd->pi);
  438. write_reg(cd, 6, 0xa0 + 0x10 * cd->drive);
  439. write_reg(cd, 7, 8);
  440. pcd_sleep(20 * HZ / 1000); /* delay a bit */
  441. k = 0;
  442. while ((k++ < PCD_RESET_TMO) && (status_reg(cd) & IDE_BUSY))
  443. pcd_sleep(HZ / 10);
  444. flg = 1;
  445. for (i = 0; i < 5; i++)
  446. flg &= (read_reg(cd, i + 1) == expect[i]);
  447. if (verbose) {
  448. printk("%s: Reset (%d) signature = ", cd->name, k);
  449. for (i = 0; i < 5; i++)
  450. printk("%3x", read_reg(cd, i + 1));
  451. if (!flg)
  452. printk(" (incorrect)");
  453. printk("n");
  454. }
  455. pi_disconnect(cd->pi);
  456. return flg - 1;
  457. }
  458. static int pcd_drive_reset(struct cdrom_device_info *cdi)
  459. {
  460. return pcd_reset(cdi->handle);
  461. }
  462. static int pcd_ready_wait(struct pcd_unit *cd, int tmo)
  463. {
  464. char tr_cmd[12] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
  465. int k, p;
  466. k = 0;
  467. while (k < tmo) {
  468. cd->last_sense = 0;
  469. pcd_atapi(cd, tr_cmd, 0, NULL, DBMSG("test unit ready"));
  470. p = cd->last_sense;
  471. if (!p)
  472. return 0;
  473. if (!(((p & 0xffff) == 0x0402) || ((p & 0xff) == 6)))
  474. return p;
  475. k++;
  476. pcd_sleep(HZ);
  477. }
  478. return 0x000020; /* timeout */
  479. }
  480. static int pcd_drive_status(struct cdrom_device_info *cdi, int slot_nr)
  481. {
  482. char rc_cmd[12] = { 0x25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
  483. struct pcd_unit *cd = cdi->handle;
  484. if (pcd_ready_wait(cd, PCD_READY_TMO))
  485. return CDS_DRIVE_NOT_READY;
  486. if (pcd_atapi(cd, rc_cmd, 8, pcd_scratch, DBMSG("check media")))
  487. return CDS_NO_DISC;
  488. return CDS_DISC_OK;
  489. }
  490. static int pcd_identify(struct pcd_unit *cd, char *id)
  491. {
  492. int k, s;
  493. char id_cmd[12] = { 0x12, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0 };
  494. pcd_bufblk = -1;
  495. s = pcd_atapi(cd, id_cmd, 36, pcd_buffer, "identify");
  496. if (s)
  497. return -1;
  498. if ((pcd_buffer[0] & 0x1f) != 5) {
  499. if (verbose)
  500. printk("%s: %s is not a CD-ROMn",
  501.        cd->name, cd->drive ? "Slave" : "Master");
  502. return -1;
  503. }
  504. memcpy(id, pcd_buffer + 16, 16);
  505. id[16] = 0;
  506. k = 16;
  507. while ((k >= 0) && (id[k] <= 0x20)) {
  508. id[k] = 0;
  509. k--;
  510. }
  511. printk("%s: %s: %sn", cd->name, cd->drive ? "Slave" : "Master", id);
  512. return 0;
  513. }
  514. /*
  515.  * returns  0, with id set if drive is detected
  516.  *     -1, if drive detection failed
  517.  */
  518. static int pcd_probe(struct pcd_unit *cd, int ms, char *id)
  519. {
  520. if (ms == -1) {
  521. for (cd->drive = 0; cd->drive <= 1; cd->drive++)
  522. if (!pcd_reset(cd) && !pcd_identify(cd, id))
  523. return 0;
  524. } else {
  525. cd->drive = ms;
  526. if (!pcd_reset(cd) && !pcd_identify(cd, id))
  527. return 0;
  528. }
  529. return -1;
  530. }
  531. static void pcd_probe_capabilities(void)
  532. {
  533. int unit, r;
  534. char buffer[32];
  535. char cmd[12] = { 0x5a, 1 << 3, 0x2a, 0, 0, 0, 0, 18, 0, 0, 0, 0 };
  536. struct pcd_unit *cd;
  537. for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) {
  538. if (!cd->present)
  539. continue;
  540. r = pcd_atapi(cd, cmd, 18, buffer, "mode sense capabilities");
  541. if (r)
  542. continue;
  543. /* we should now have the cap page */
  544. if ((buffer[11] & 1) == 0)
  545. cd->info.mask |= CDC_CD_R;
  546. if ((buffer[11] & 2) == 0)
  547. cd->info.mask |= CDC_CD_RW;
  548. if ((buffer[12] & 1) == 0)
  549. cd->info.mask |= CDC_PLAY_AUDIO;
  550. if ((buffer[14] & 1) == 0)
  551. cd->info.mask |= CDC_LOCK;
  552. if ((buffer[14] & 8) == 0)
  553. cd->info.mask |= CDC_OPEN_TRAY;
  554. if ((buffer[14] >> 6) == 0)
  555. cd->info.mask |= CDC_CLOSE_TRAY;
  556. }
  557. }
  558. static int pcd_detect(void)
  559. {
  560. char id[18];
  561. int k, unit;
  562. struct pcd_unit *cd;
  563. printk("%s: %s version %s, major %d, nice %dn",
  564.        name, name, PCD_VERSION, major, nice);
  565. k = 0;
  566. if (pcd_drive_count == 0) { /* nothing spec'd - so autoprobe for 1 */
  567. cd = pcd;
  568. if (pi_init(cd->pi, 1, -1, -1, -1, -1, -1, pcd_buffer,
  569.     PI_PCD, verbose, cd->name)) {
  570. if (!pcd_probe(cd, -1, id) && cd->disk) {
  571. cd->present = 1;
  572. k++;
  573. } else
  574. pi_release(cd->pi);
  575. }
  576. } else {
  577. for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) {
  578. int *conf = *drives[unit];
  579. if (!conf[D_PRT])
  580. continue;
  581. if (!pi_init(cd->pi, 0, conf[D_PRT], conf[D_MOD],
  582.      conf[D_UNI], conf[D_PRO], conf[D_DLY],
  583.      pcd_buffer, PI_PCD, verbose, cd->name)) 
  584. continue;
  585. if (!pcd_probe(cd, conf[D_SLV], id) && cd->disk) {
  586. cd->present = 1;
  587. k++;
  588. } else
  589. pi_release(cd->pi);
  590. }
  591. }
  592. if (k)
  593. return 0;
  594. printk("%s: No CD-ROM drive foundn", name);
  595. for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++)
  596. put_disk(cd->disk);
  597. return -1;
  598. }
  599. /* I/O request processing */
  600. static struct request_queue *pcd_queue;
  601. static void do_pcd_request(request_queue_t * q)
  602. {
  603. if (pcd_busy)
  604. return;
  605. while (1) {
  606. pcd_req = elv_next_request(q);
  607. if (!pcd_req)
  608. return;
  609. if (rq_data_dir(pcd_req) == READ) {
  610. struct pcd_unit *cd = pcd_req->rq_disk->private_data;
  611. if (cd != pcd_current)
  612. pcd_bufblk = -1;
  613. pcd_current = cd;
  614. pcd_sector = pcd_req->sector;
  615. pcd_count = pcd_req->current_nr_sectors;
  616. pcd_buf = pcd_req->buffer;
  617. pcd_busy = 1;
  618. ps_set_intr(do_pcd_read, NULL, 0, nice);
  619. return;
  620. } else
  621. end_request(pcd_req, 0);
  622. }
  623. }
  624. static inline void next_request(int success)
  625. {
  626. unsigned long saved_flags;
  627. spin_lock_irqsave(&pcd_lock, saved_flags);
  628. end_request(pcd_req, success);
  629. pcd_busy = 0;
  630. do_pcd_request(pcd_queue);
  631. spin_unlock_irqrestore(&pcd_lock, saved_flags);
  632. }
  633. static int pcd_ready(void)
  634. {
  635. return (((status_reg(pcd_current) & (IDE_BUSY | IDE_DRQ)) == IDE_DRQ));
  636. }
  637. static void pcd_transfer(void)
  638. {
  639. while (pcd_count && (pcd_sector / 4 == pcd_bufblk)) {
  640. int o = (pcd_sector % 4) * 512;
  641. memcpy(pcd_buf, pcd_buffer + o, 512);
  642. pcd_count--;
  643. pcd_buf += 512;
  644. pcd_sector++;
  645. }
  646. }
  647. static void pcd_start(void)
  648. {
  649. int b, i;
  650. char rd_cmd[12] = { 0xa8, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 };
  651. pcd_bufblk = pcd_sector / 4;
  652. b = pcd_bufblk;
  653. for (i = 0; i < 4; i++) {
  654. rd_cmd[5 - i] = b & 0xff;
  655. b = b >> 8;
  656. }
  657. if (pcd_command(pcd_current, rd_cmd, 2048, "read block")) {
  658. pcd_bufblk = -1;
  659. next_request(0);
  660. return;
  661. }
  662. mdelay(1);
  663. ps_set_intr(do_pcd_read_drq, pcd_ready, PCD_TMO, nice);
  664. }
  665. static void do_pcd_read(void)
  666. {
  667. pcd_busy = 1;
  668. pcd_retries = 0;
  669. pcd_transfer();
  670. if (!pcd_count) {
  671. next_request(1);
  672. return;
  673. }
  674. pi_do_claimed(pcd_current->pi, pcd_start);
  675. }
  676. static void do_pcd_read_drq(void)
  677. {
  678. unsigned long saved_flags;
  679. if (pcd_completion(pcd_current, pcd_buffer, "read block")) {
  680. if (pcd_retries < PCD_RETRIES) {
  681. mdelay(1);
  682. pcd_retries++;
  683. pi_do_claimed(pcd_current->pi, pcd_start);
  684. return;
  685. }
  686. pcd_bufblk = -1;
  687. next_request(0);
  688. return;
  689. }
  690. do_pcd_read();
  691. spin_lock_irqsave(&pcd_lock, saved_flags);
  692. do_pcd_request(pcd_queue);
  693. spin_unlock_irqrestore(&pcd_lock, saved_flags);
  694. }
  695. /* the audio_ioctl stuff is adapted from sr_ioctl.c */
  696. static int pcd_audio_ioctl(struct cdrom_device_info *cdi, unsigned int cmd, void *arg)
  697. {
  698. struct pcd_unit *cd = cdi->handle;
  699. switch (cmd) {
  700. case CDROMREADTOCHDR:
  701. {
  702. char cmd[12] =
  703.     { GPCMD_READ_TOC_PMA_ATIP, 0, 0, 0, 0, 0, 0, 0, 12,
  704.  0, 0, 0 };
  705. struct cdrom_tochdr *tochdr =
  706.     (struct cdrom_tochdr *) arg;
  707. char buffer[32];
  708. int r;
  709. r = pcd_atapi(cd, cmd, 12, buffer, "read toc header");
  710. tochdr->cdth_trk0 = buffer[2];
  711. tochdr->cdth_trk1 = buffer[3];
  712. return r ? -EIO : 0;
  713. }
  714. case CDROMREADTOCENTRY:
  715. {
  716. char cmd[12] =
  717.     { GPCMD_READ_TOC_PMA_ATIP, 0, 0, 0, 0, 0, 0, 0, 12,
  718.  0, 0, 0 };
  719. struct cdrom_tocentry *tocentry =
  720.     (struct cdrom_tocentry *) arg;
  721. unsigned char buffer[32];
  722. int r;
  723. cmd[1] =
  724.     (tocentry->cdte_format == CDROM_MSF ? 0x02 : 0);
  725. cmd[6] = tocentry->cdte_track;
  726. r = pcd_atapi(cd, cmd, 12, buffer, "read toc entry");
  727. tocentry->cdte_ctrl = buffer[5] & 0xf;
  728. tocentry->cdte_adr = buffer[5] >> 4;
  729. tocentry->cdte_datamode =
  730.     (tocentry->cdte_ctrl & 0x04) ? 1 : 0;
  731. if (tocentry->cdte_format == CDROM_MSF) {
  732. tocentry->cdte_addr.msf.minute = buffer[9];
  733. tocentry->cdte_addr.msf.second = buffer[10];
  734. tocentry->cdte_addr.msf.frame = buffer[11];
  735. } else
  736. tocentry->cdte_addr.lba =
  737.     (((((buffer[8] << 8) + buffer[9]) << 8)
  738.       + buffer[10]) << 8) + buffer[11];
  739. return r ? -EIO : 0;
  740. }
  741. default:
  742. return -ENOSYS;
  743. }
  744. }
  745. static int pcd_get_mcn(struct cdrom_device_info *cdi, struct cdrom_mcn *mcn)
  746. {
  747. char cmd[12] =
  748.     { GPCMD_READ_SUBCHANNEL, 0, 0x40, 2, 0, 0, 0, 0, 24, 0, 0, 0 };
  749. char buffer[32];
  750. if (pcd_atapi(cdi->handle, cmd, 24, buffer, "get mcn"))
  751. return -EIO;
  752. memcpy(mcn->medium_catalog_number, buffer + 9, 13);
  753. mcn->medium_catalog_number[13] = 0;
  754. return 0;
  755. }
  756. static int __init pcd_init(void)
  757. {
  758. struct pcd_unit *cd;
  759. int unit;
  760. if (disable)
  761. return -1;
  762. pcd_init_units();
  763. if (pcd_detect())
  764. return -1;
  765. /* get the atapi capabilities page */
  766. pcd_probe_capabilities();
  767. if (register_blkdev(major, name)) {
  768. for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++)
  769. put_disk(cd->disk);
  770. return -1;
  771. }
  772. pcd_queue = blk_init_queue(do_pcd_request, &pcd_lock);
  773. if (!pcd_queue) {
  774. unregister_blkdev(major, name);
  775. for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++)
  776. put_disk(cd->disk);
  777. return -1;
  778. }
  779. for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) {
  780. if (cd->present) {
  781. register_cdrom(&cd->info);
  782. cd->disk->private_data = cd;
  783. cd->disk->queue = pcd_queue;
  784. add_disk(cd->disk);
  785. }
  786. }
  787. return 0;
  788. }
  789. static void __exit pcd_exit(void)
  790. {
  791. struct pcd_unit *cd;
  792. int unit;
  793. for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) {
  794. if (cd->present) {
  795. del_gendisk(cd->disk);
  796. pi_release(cd->pi);
  797. unregister_cdrom(&cd->info);
  798. }
  799. put_disk(cd->disk);
  800. }
  801. blk_cleanup_queue(pcd_queue);
  802. unregister_blkdev(major, name);
  803. }
  804. MODULE_LICENSE("GPL");
  805. module_init(pcd_init)
  806. module_exit(pcd_exit)