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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  sr.c Copyright (C) 1992 David Giller
  3.  *           Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale
  4.  *
  5.  *  adapted from:
  6.  *      sd.c Copyright (C) 1992 Drew Eckhardt
  7.  *      Linux scsi disk driver by
  8.  *              Drew Eckhardt <drew@colorado.edu>
  9.  *
  10.  *      Modified by Eric Youngdale ericy@andante.org to
  11.  *      add scatter-gather, multiple outstanding request, and other
  12.  *      enhancements.
  13.  *
  14.  *          Modified by Eric Youngdale eric@andante.org to support loadable
  15.  *          low-level scsi drivers.
  16.  *
  17.  *       Modified by Thomas Quinot thomas@melchior.cuivre.fdn.fr to
  18.  *       provide auto-eject.
  19.  *
  20.  *          Modified by Gerd Knorr <kraxel@cs.tu-berlin.de> to support the
  21.  *          generic cdrom interface
  22.  *
  23.  *       Modified by Jens Axboe <axboe@suse.de> - Uniform sr_packet()
  24.  *       interface, capabilities probe additions, ioctl cleanups, etc.
  25.  *
  26.  *       Modified by Richard Gooch <rgooch@atnf.csiro.au> to support devfs
  27.  *
  28.  *       Modified by Jens Axboe <axboe@suse.de> - support DVD-RAM
  29.  *  transparently and loose the GHOST hack
  30.  *
  31.  *  Modified by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  32.  *  check resource allocation in sr_init and some cleanups
  33.  *
  34.  */
  35. #include <linux/module.h>
  36. #include <linux/fs.h>
  37. #include <linux/kernel.h>
  38. #include <linux/sched.h>
  39. #include <linux/mm.h>
  40. #include <linux/string.h>
  41. #include <linux/errno.h>
  42. #include <linux/cdrom.h>
  43. #include <linux/interrupt.h>
  44. #include <linux/init.h>
  45. #include <asm/system.h>
  46. #include <asm/io.h>
  47. #include <asm/uaccess.h>
  48. #define MAJOR_NR SCSI_CDROM_MAJOR
  49. #include <linux/blk.h>
  50. #include "scsi.h"
  51. #include "hosts.h"
  52. #include "sr.h"
  53. #include <scsi/scsi_ioctl.h> /* For the door lock/unlock commands */
  54. #include "constants.h"
  55. MODULE_PARM(xa_test, "i"); /* see sr_ioctl.c */
  56. #define MAX_RETRIES 3
  57. #define SR_TIMEOUT (30 * HZ)
  58. static int sr_init(void);
  59. static void sr_finish(void);
  60. static int sr_attach(Scsi_Device *);
  61. static int sr_detect(Scsi_Device *);
  62. static void sr_detach(Scsi_Device *);
  63. static int sr_init_command(Scsi_Cmnd *);
  64. static struct Scsi_Device_Template sr_template =
  65. {
  66. name:"cdrom",
  67. tag:"sr",
  68. scsi_type:TYPE_ROM,
  69. major:SCSI_CDROM_MAJOR,
  70. blk:1,
  71. detect:sr_detect,
  72. init:sr_init,
  73. finish:sr_finish,
  74. attach:sr_attach,
  75. detach:sr_detach,
  76. init_command:sr_init_command
  77. };
  78. Scsi_CD *scsi_CDs;
  79. static int *sr_sizes;
  80. static int *sr_blocksizes;
  81. static int *sr_hardsizes;
  82. static int sr_open(struct cdrom_device_info *, int);
  83. void get_sectorsize(int);
  84. void get_capabilities(int);
  85. static int sr_media_change(struct cdrom_device_info *, int);
  86. static int sr_packet(struct cdrom_device_info *, struct cdrom_generic_command *);
  87. static void sr_release(struct cdrom_device_info *cdi)
  88. {
  89. if (scsi_CDs[MINOR(cdi->dev)].device->sector_size > 2048)
  90. sr_set_blocklength(MINOR(cdi->dev), 2048);
  91. scsi_CDs[MINOR(cdi->dev)].device->access_count--;
  92. if (scsi_CDs[MINOR(cdi->dev)].device->host->hostt->module)
  93. __MOD_DEC_USE_COUNT(scsi_CDs[MINOR(cdi->dev)].device->host->hostt->module);
  94. if (sr_template.module)
  95. __MOD_DEC_USE_COUNT(sr_template.module);
  96. }
  97. static struct cdrom_device_ops sr_dops =
  98. {
  99. open: sr_open,
  100. release: sr_release,
  101. drive_status: sr_drive_status,
  102. media_changed: sr_media_change,
  103. tray_move: sr_tray_move,
  104. lock_door: sr_lock_door,
  105. select_speed: sr_select_speed,
  106. get_last_session: sr_get_last_session,
  107. get_mcn: sr_get_mcn,
  108. reset: sr_reset,
  109. audio_ioctl: sr_audio_ioctl,
  110. dev_ioctl: sr_dev_ioctl,
  111. capability: CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK |
  112. CDC_SELECT_SPEED | CDC_SELECT_DISC |
  113. CDC_MULTI_SESSION | CDC_MCN |
  114. CDC_MEDIA_CHANGED | CDC_PLAY_AUDIO |
  115. CDC_RESET | CDC_IOCTLS | CDC_DRIVE_STATUS |
  116. CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
  117. CDC_DVD_RAM | CDC_GENERIC_PACKET,
  118. generic_packet: sr_packet,
  119. };
  120. /*
  121.  * This function checks to see if the media has been changed in the
  122.  * CDROM drive.  It is possible that we have already sensed a change,
  123.  * or the drive may have sensed one and not yet reported it.  We must
  124.  * be ready for either case. This function always reports the current
  125.  * value of the changed bit.  If flag is 0, then the changed bit is reset.
  126.  * This function could be done as an ioctl, but we would need to have
  127.  * an inode for that to work, and we do not always have one.
  128.  */
  129. int sr_media_change(struct cdrom_device_info *cdi, int slot)
  130. {
  131. int retval;
  132. if (CDSL_CURRENT != slot) {
  133. /* no changer support */
  134. return -EINVAL;
  135. }
  136. retval = scsi_ioctl(scsi_CDs[MINOR(cdi->dev)].device,
  137.     SCSI_IOCTL_TEST_UNIT_READY, 0);
  138. if (retval) {
  139. /* Unable to test, unit probably not ready.  This usually
  140.  * means there is no disc in the drive.  Mark as changed,
  141.  * and we will figure it out later once the drive is
  142.  * available again.  */
  143. scsi_CDs[MINOR(cdi->dev)].device->changed = 1;
  144. return 1; /* This will force a flush, if called from
  145.  * check_disk_change */
  146. };
  147. retval = scsi_CDs[MINOR(cdi->dev)].device->changed;
  148. scsi_CDs[MINOR(cdi->dev)].device->changed = 0;
  149. /* If the disk changed, the capacity will now be different,
  150.  * so we force a re-read of this information */
  151. if (retval) {
  152. /* check multisession offset etc */
  153. sr_cd_check(cdi);
  154. /* 
  155.  * If the disk changed, the capacity will now be different,
  156.  * so we force a re-read of this information 
  157.  * Force 2048 for the sector size so that filesystems won't
  158.  * be trying to use something that is too small if the disc
  159.  * has changed.
  160.  */
  161. scsi_CDs[MINOR(cdi->dev)].needs_sector_size = 1;
  162. scsi_CDs[MINOR(cdi->dev)].device->sector_size = 2048;
  163. }
  164. return retval;
  165. }
  166. /*
  167.  * rw_intr is the interrupt routine for the device driver.  It will be notified on the
  168.  * end of a SCSI read / write, and will take on of several actions based on success or failure.
  169.  */
  170. static void rw_intr(Scsi_Cmnd * SCpnt)
  171. {
  172. int result = SCpnt->result;
  173. int this_count = SCpnt->bufflen >> 9;
  174. int good_sectors = (result == 0 ? this_count : 0);
  175. int block_sectors = 0;
  176. int device_nr = DEVICE_NR(SCpnt->request.rq_dev);
  177. #ifdef DEBUG
  178. printk("sr.c done: %x %pn", result, SCpnt->request.bh->b_data);
  179. #endif
  180. /*
  181.    Handle MEDIUM ERRORs or VOLUME OVERFLOWs that indicate partial success.
  182.    Since this is a relatively rare error condition, no care is taken to
  183.    avoid unnecessary additional work such as memcpy's that could be avoided.
  184.  */
  185. if (driver_byte(result) != 0 && /* An error occurred */
  186.     SCpnt->sense_buffer[0] == 0xF0 && /* Sense data is valid */
  187.     (SCpnt->sense_buffer[2] == MEDIUM_ERROR ||
  188.      SCpnt->sense_buffer[2] == VOLUME_OVERFLOW ||
  189.      SCpnt->sense_buffer[2] == ILLEGAL_REQUEST)) {
  190. long error_sector = (SCpnt->sense_buffer[3] << 24) |
  191. (SCpnt->sense_buffer[4] << 16) |
  192. (SCpnt->sense_buffer[5] << 8) |
  193. SCpnt->sense_buffer[6];
  194. if (SCpnt->request.bh != NULL)
  195. block_sectors = SCpnt->request.bh->b_size >> 9;
  196. if (block_sectors < 4)
  197. block_sectors = 4;
  198. if (scsi_CDs[device_nr].device->sector_size == 2048)
  199. error_sector <<= 2;
  200. error_sector &= ~(block_sectors - 1);
  201. good_sectors = error_sector - SCpnt->request.sector;
  202. if (good_sectors < 0 || good_sectors >= this_count)
  203. good_sectors = 0;
  204. /*
  205.  * The SCSI specification allows for the value returned by READ
  206.  * CAPACITY to be up to 75 2K sectors past the last readable
  207.  * block.  Therefore, if we hit a medium error within the last
  208.  * 75 2K sectors, we decrease the saved size value.
  209.  */
  210. if ((error_sector >> 1) < sr_sizes[device_nr] &&
  211.     scsi_CDs[device_nr].capacity - error_sector < 4 * 75)
  212. sr_sizes[device_nr] = error_sector >> 1;
  213. }
  214. /*
  215.  * This calls the generic completion function, now that we know
  216.  * how many actual sectors finished, and how many sectors we need
  217.  * to say have failed.
  218.  */
  219. scsi_io_completion(SCpnt, good_sectors, block_sectors);
  220. }
  221. static request_queue_t *sr_find_queue(kdev_t dev)
  222. {
  223. /*
  224.  * No such device
  225.  */
  226. if (MINOR(dev) >= sr_template.dev_max || !scsi_CDs[MINOR(dev)].device)
  227. return NULL;
  228. return &scsi_CDs[MINOR(dev)].device->request_queue;
  229. }
  230. static int sr_scatter_pad(Scsi_Cmnd *SCpnt, int s_size)
  231. {
  232. struct scatterlist *sg, *old_sg = NULL;
  233. int i, fsize, bsize, sg_ent, sg_count;
  234. char *front, *back;
  235. void **bbpnt, **old_bbpnt = NULL;
  236. back = front = NULL;
  237. sg_ent = SCpnt->use_sg;
  238. bsize = 0; /* gcc... */
  239. /*
  240.  * need front pad
  241.  */
  242. if ((fsize = SCpnt->request.sector % (s_size >> 9))) {
  243. fsize <<= 9;
  244. sg_ent++;
  245. if ((front = scsi_malloc(fsize)) == NULL)
  246. goto no_mem;
  247. }
  248. /*
  249.  * need a back pad too
  250.  */
  251. if ((bsize = s_size - ((SCpnt->request_bufflen + fsize) % s_size))) {
  252. sg_ent++;
  253. if ((back = scsi_malloc(bsize)) == NULL)
  254. goto no_mem;
  255. }
  256. /*
  257.  * extend or allocate new scatter-gather table
  258.  */
  259. sg_count = SCpnt->use_sg;
  260. if (sg_count) {
  261. old_sg = (struct scatterlist *) SCpnt->request_buffer;
  262. old_bbpnt = SCpnt->bounce_buffers;
  263. } else {
  264. sg_count = 1;
  265. sg_ent++;
  266. }
  267. /* Get space for scatterlist and bounce buffer array. */
  268. i  = sg_ent * sizeof(struct scatterlist);
  269. i += sg_ent * sizeof(void *);
  270. i  = (i + 511) & ~511;
  271. if ((sg = scsi_malloc(i)) == NULL)
  272. goto no_mem;
  273. bbpnt = (void **)
  274. ((char *)sg + (sg_ent * sizeof(struct scatterlist)));
  275. /*
  276.  * no more failing memory allocs possible, we can safely assign
  277.  * SCpnt values now
  278.  */
  279. SCpnt->sglist_len = i;
  280. SCpnt->use_sg = sg_count;
  281. memset(sg, 0, SCpnt->sglist_len);
  282. i = 0;
  283. if (fsize) {
  284. sg[0].address = bbpnt[0] = front;
  285. sg[0].length = fsize;
  286. i++;
  287. }
  288. if (old_sg) {
  289. memcpy(sg + i, old_sg, SCpnt->use_sg * sizeof(struct scatterlist));
  290. memcpy(bbpnt + i, old_bbpnt, SCpnt->use_sg * sizeof(void *));
  291. scsi_free(old_sg, (((SCpnt->use_sg * sizeof(struct scatterlist)) +
  292.     (SCpnt->use_sg * sizeof(void *))) + 511) & ~511);
  293. } else {
  294. sg[i].address = SCpnt->request_buffer;
  295. sg[i].length = SCpnt->request_bufflen;
  296. }
  297. SCpnt->request_bufflen += (fsize + bsize);
  298. SCpnt->request_buffer = sg;
  299. SCpnt->bounce_buffers = bbpnt;
  300. SCpnt->use_sg += i;
  301. if (bsize) {
  302. sg[SCpnt->use_sg].address = back;
  303. bbpnt[SCpnt->use_sg] = back;
  304. sg[SCpnt->use_sg].length = bsize;
  305. SCpnt->use_sg++;
  306. }
  307. return 0;
  308. no_mem:
  309. printk("sr: ran out of mem for scatter padn");
  310. if (front)
  311. scsi_free(front, fsize);
  312. if (back)
  313. scsi_free(back, bsize);
  314. return 1;
  315. }
  316. static int sr_init_command(Scsi_Cmnd * SCpnt)
  317. {
  318. int dev, devm, block=0, this_count, s_size;
  319. devm = MINOR(SCpnt->request.rq_dev);
  320. dev = DEVICE_NR(SCpnt->request.rq_dev);
  321. SCSI_LOG_HLQUEUE(1, printk("Doing sr request, dev = %d, block = %dn", devm, block));
  322. if (dev >= sr_template.nr_dev ||
  323.     !scsi_CDs[dev].device ||
  324.     !scsi_CDs[dev].device->online) {
  325. SCSI_LOG_HLQUEUE(2, printk("Finishing %ld sectorsn", SCpnt->request.nr_sectors));
  326. SCSI_LOG_HLQUEUE(2, printk("Retry with 0x%pn", SCpnt));
  327. return 0;
  328. }
  329. if (scsi_CDs[dev].device->changed) {
  330. /*
  331.  * quietly refuse to do anything to a changed disc until the
  332.  * changed bit has been reset
  333.  */
  334. return 0;
  335. }
  336. if ((SCpnt->request.cmd == WRITE) && !scsi_CDs[dev].device->writeable)
  337. return 0;
  338. /*
  339.  * we do lazy blocksize switching (when reading XA sectors,
  340.  * see CDROMREADMODE2 ioctl) 
  341.  */
  342. s_size = scsi_CDs[dev].device->sector_size;
  343. if (s_size > 2048) {
  344. if (!in_interrupt())
  345. sr_set_blocklength(DEVICE_NR(CURRENT->rq_dev), 2048);
  346. else
  347. printk("sr: can't switch blocksize: in interruptn");
  348. }
  349. if (s_size != 512 && s_size != 1024 && s_size != 2048) {
  350. printk("sr: bad sector size %dn", s_size);
  351. return 0;
  352. }
  353. block = SCpnt->request.sector / (s_size >> 9);
  354. /*
  355.  * request doesn't start on hw block boundary, add scatter pads
  356.  */
  357. if ((SCpnt->request.sector % (s_size >> 9)) || (SCpnt->request_bufflen % s_size))
  358. if (sr_scatter_pad(SCpnt, s_size))
  359. return 0;
  360. this_count = (SCpnt->request_bufflen >> 9) / (s_size >> 9);
  361. switch (SCpnt->request.cmd) {
  362. case WRITE:
  363. SCpnt->cmnd[0] = WRITE_10;
  364. SCpnt->sc_data_direction = SCSI_DATA_WRITE;
  365. break;
  366. case READ:
  367. SCpnt->cmnd[0] = READ_10;
  368. SCpnt->sc_data_direction = SCSI_DATA_READ;
  369. break;
  370. default:
  371. printk("Unknown sr command %dn", SCpnt->request.cmd);
  372. return 0;
  373. }
  374. SCSI_LOG_HLQUEUE(2, printk("sr%d : %s %d/%ld 512 byte blocks.n",
  375.                                    devm,
  376.    (SCpnt->request.cmd == WRITE) ? "writing" : "reading",
  377.  this_count, SCpnt->request.nr_sectors));
  378. SCpnt->cmnd[1] = (SCpnt->device->scsi_level <= SCSI_2) ?
  379.  ((SCpnt->lun << 5) & 0xe0) : 0;
  380. if (this_count > 0xffff)
  381. this_count = 0xffff;
  382. SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
  383. SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
  384. SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
  385. SCpnt->cmnd[5] = (unsigned char) block & 0xff;
  386. SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
  387. SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
  388. SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
  389. /*
  390.  * We shouldn't disconnect in the middle of a sector, so with a dumb
  391.  * host adapter, it's safe to assume that we can at least transfer
  392.  * this many bytes between each connect / disconnect.
  393.  */
  394. SCpnt->transfersize = scsi_CDs[dev].device->sector_size;
  395. SCpnt->underflow = this_count << 9;
  396. SCpnt->allowed = MAX_RETRIES;
  397. SCpnt->timeout_per_command = SR_TIMEOUT;
  398. /*
  399.  * This is the completion routine we use.  This is matched in terms
  400.  * of capability to this function.
  401.  */
  402. SCpnt->done = rw_intr;
  403. {
  404. struct scatterlist *sg = SCpnt->request_buffer;
  405. int i, size = 0;
  406. for (i = 0; i < SCpnt->use_sg; i++)
  407. size += sg[i].length;
  408. if (size != SCpnt->request_bufflen && SCpnt->use_sg) {
  409. printk("sr: mismatch count %d, bytes %dn", size, SCpnt->request_bufflen);
  410. SCpnt->request_bufflen = size;
  411. }
  412. }
  413. /*
  414.  * This indicates that the command is ready from our end to be
  415.  * queued.
  416.  */
  417. return 1;
  418. }
  419. struct block_device_operations sr_bdops =
  420. {
  421. owner: THIS_MODULE,
  422. open: cdrom_open,
  423. release: cdrom_release,
  424. ioctl: cdrom_ioctl,
  425. check_media_change: cdrom_media_changed,
  426. };
  427. static int sr_open(struct cdrom_device_info *cdi, int purpose)
  428. {
  429. check_disk_change(cdi->dev);
  430. if (MINOR(cdi->dev) >= sr_template.dev_max
  431.     || !scsi_CDs[MINOR(cdi->dev)].device) {
  432. return -ENXIO; /* No such device */
  433. }
  434. /*
  435.  * If the device is in error recovery, wait until it is done.
  436.  * If the device is offline, then disallow any access to it.
  437.  */
  438. if (!scsi_block_when_processing_errors(scsi_CDs[MINOR(cdi->dev)].device)) {
  439. return -ENXIO;
  440. }
  441. scsi_CDs[MINOR(cdi->dev)].device->access_count++;
  442. if (scsi_CDs[MINOR(cdi->dev)].device->host->hostt->module)
  443. __MOD_INC_USE_COUNT(scsi_CDs[MINOR(cdi->dev)].device->host->hostt->module);
  444. if (sr_template.module)
  445. __MOD_INC_USE_COUNT(sr_template.module);
  446. /* If this device did not have media in the drive at boot time, then
  447.  * we would have been unable to get the sector size.  Check to see if
  448.  * this is the case, and try again.
  449.  */
  450. if (scsi_CDs[MINOR(cdi->dev)].needs_sector_size)
  451. get_sectorsize(MINOR(cdi->dev));
  452. return 0;
  453. }
  454. static int sr_detect(Scsi_Device * SDp)
  455. {
  456. if (SDp->type != TYPE_ROM && SDp->type != TYPE_WORM)
  457. return 0;
  458. sr_template.dev_noticed++;
  459. return 1;
  460. }
  461. static int sr_attach(Scsi_Device * SDp)
  462. {
  463. Scsi_CD *cpnt;
  464. int i;
  465. if (SDp->type != TYPE_ROM && SDp->type != TYPE_WORM)
  466. return 1;
  467. if (sr_template.nr_dev >= sr_template.dev_max) {
  468. SDp->attached--;
  469. return 1;
  470. }
  471. for (cpnt = scsi_CDs, i = 0; i < sr_template.dev_max; i++, cpnt++)
  472. if (!cpnt->device)
  473. break;
  474. if (i >= sr_template.dev_max)
  475. panic("scsi_devices corrupt (sr)");
  476. scsi_CDs[i].device = SDp;
  477. sr_template.nr_dev++;
  478. if (sr_template.nr_dev > sr_template.dev_max)
  479. panic("scsi_devices corrupt (sr)");
  480. printk("Attached scsi CD-ROM sr%d at scsi%d, channel %d, id %d, lun %dn",
  481.        i, SDp->host->host_no, SDp->channel, SDp->id, SDp->lun);
  482. return 0;
  483. }
  484. void get_sectorsize(int i)
  485. {
  486. unsigned char cmd[10];
  487. unsigned char *buffer;
  488. int the_result, retries;
  489. int sector_size;
  490. Scsi_Request *SRpnt;
  491. buffer = (unsigned char *) scsi_malloc(512);
  492. SRpnt = scsi_allocate_request(scsi_CDs[i].device);
  493. if(buffer == NULL || SRpnt == NULL)
  494. {
  495. scsi_CDs[i].capacity = 0x1fffff;
  496. sector_size = 2048; /* A guess, just in case */
  497. scsi_CDs[i].needs_sector_size = 1;
  498. if(buffer)
  499. scsi_free(buffer, 512);
  500. if(SRpnt)
  501. scsi_release_request(SRpnt);
  502. return;
  503. }
  504. retries = 3;
  505. do {
  506. cmd[0] = READ_CAPACITY;
  507. cmd[1] = (scsi_CDs[i].device->scsi_level <= SCSI_2) ?
  508.  ((scsi_CDs[i].device->lun << 5) & 0xe0) : 0;
  509. memset((void *) &cmd[2], 0, 8);
  510. SRpnt->sr_request.rq_status = RQ_SCSI_BUSY; /* Mark as really busy */
  511. SRpnt->sr_cmd_len = 0;
  512. memset(buffer, 0, 8);
  513. /* Do the command and wait.. */
  514. SRpnt->sr_data_direction = SCSI_DATA_READ;
  515. scsi_wait_req(SRpnt, (void *) cmd, (void *) buffer,
  516.       8, SR_TIMEOUT, MAX_RETRIES);
  517. the_result = SRpnt->sr_result;
  518. retries--;
  519. } while (the_result && retries);
  520. scsi_release_request(SRpnt);
  521. SRpnt = NULL;
  522. if (the_result) {
  523. scsi_CDs[i].capacity = 0x1fffff;
  524. sector_size = 2048; /* A guess, just in case */
  525. scsi_CDs[i].needs_sector_size = 1;
  526. } else {
  527. #if 0
  528. if (cdrom_get_last_written(MKDEV(MAJOR_NR, i),
  529.    &scsi_CDs[i].capacity))
  530. #endif
  531. scsi_CDs[i].capacity = 1 + ((buffer[0] << 24) |
  532.     (buffer[1] << 16) |
  533.     (buffer[2] << 8) |
  534.     buffer[3]);
  535. sector_size = (buffer[4] << 24) |
  536.     (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
  537. switch (sector_size) {
  538. /*
  539.  * HP 4020i CD-Recorder reports 2340 byte sectors
  540.  * Philips CD-Writers report 2352 byte sectors
  541.  *
  542.  * Use 2k sectors for them..
  543.  */
  544. case 0:
  545. case 2340:
  546. case 2352:
  547. sector_size = 2048;
  548. /* fall through */
  549. case 2048:
  550. scsi_CDs[i].capacity *= 4;
  551. /* fall through */
  552. case 512:
  553. break;
  554. default:
  555. printk("sr%d: unsupported sector size %d.n",
  556.        i, sector_size);
  557. scsi_CDs[i].capacity = 0;
  558. scsi_CDs[i].needs_sector_size = 1;
  559. }
  560. scsi_CDs[i].device->sector_size = sector_size;
  561. /*
  562.  * Add this so that we have the ability to correctly gauge
  563.  * what the device is capable of.
  564.  */
  565. scsi_CDs[i].needs_sector_size = 0;
  566. sr_sizes[i] = scsi_CDs[i].capacity >> (BLOCK_SIZE_BITS - 9);
  567. };
  568. scsi_free(buffer, 512);
  569. }
  570. void get_capabilities(int i)
  571. {
  572. unsigned char cmd[6];
  573. unsigned char *buffer;
  574. int rc, n;
  575. static char *loadmech[] =
  576. {
  577. "caddy",
  578. "tray",
  579. "pop-up",
  580. "",
  581. "changer",
  582. "cartridge changer",
  583. "",
  584. ""
  585. };
  586. buffer = (unsigned char *) scsi_malloc(512);
  587. if (!buffer)
  588. {
  589. printk(KERN_ERR "sr: out of memory.n");
  590. return;
  591. }
  592. cmd[0] = MODE_SENSE;
  593. cmd[1] = (scsi_CDs[i].device->scsi_level <= SCSI_2) ?
  594.  ((scsi_CDs[i].device->lun << 5) & 0xe0) : 0;
  595. cmd[2] = 0x2a;
  596. cmd[4] = 128;
  597. cmd[3] = cmd[5] = 0;
  598. rc = sr_do_ioctl(i, cmd, buffer, 128, 1, SCSI_DATA_READ, NULL);
  599. if (rc) {
  600. /* failed, drive doesn't have capabilities mode page */
  601. scsi_CDs[i].cdi.speed = 1;
  602. scsi_CDs[i].cdi.mask |= (CDC_CD_R | CDC_CD_RW | CDC_DVD_R |
  603.  CDC_DVD | CDC_DVD_RAM |
  604.  CDC_SELECT_DISC | CDC_SELECT_SPEED);
  605. scsi_free(buffer, 512);
  606. printk("sr%i: scsi-1 driven", i);
  607. return;
  608. }
  609. n = buffer[3] + 4;
  610. scsi_CDs[i].cdi.speed = ((buffer[n + 8] << 8) + buffer[n + 9]) / 176;
  611. scsi_CDs[i].readcd_known = 1;
  612. scsi_CDs[i].readcd_cdda = buffer[n + 5] & 0x01;
  613. /* print some capability bits */
  614. printk("sr%i: scsi3-mmc drive: %dx/%dx %s%s%s%s%s%sn", i,
  615.        ((buffer[n + 14] << 8) + buffer[n + 15]) / 176,
  616.        scsi_CDs[i].cdi.speed,
  617.        buffer[n + 3] & 0x01 ? "writer " : "", /* CD Writer */
  618.        buffer[n + 3] & 0x20 ? "dvd-ram " : "",
  619.        buffer[n + 2] & 0x02 ? "cd/rw " : "", /* can read rewriteable */
  620.        buffer[n + 4] & 0x20 ? "xa/form2 " : "", /* can read xa/from2 */
  621.        buffer[n + 5] & 0x01 ? "cdda " : "", /* can read audio data */
  622.        loadmech[buffer[n + 6] >> 5]);
  623. if ((buffer[n + 6] >> 5) == 0)
  624. /* caddy drives can't close tray... */
  625. scsi_CDs[i].cdi.mask |= CDC_CLOSE_TRAY;
  626. if ((buffer[n + 2] & 0x8) == 0)
  627. /* not a DVD drive */
  628. scsi_CDs[i].cdi.mask |= CDC_DVD;
  629. if ((buffer[n + 3] & 0x20) == 0) {
  630. /* can't write DVD-RAM media */
  631. scsi_CDs[i].cdi.mask |= CDC_DVD_RAM;
  632. } else {
  633. scsi_CDs[i].device->writeable = 1;
  634. }
  635. if ((buffer[n + 3] & 0x10) == 0)
  636. /* can't write DVD-R media */
  637. scsi_CDs[i].cdi.mask |= CDC_DVD_R;
  638. if ((buffer[n + 3] & 0x2) == 0)
  639. /* can't write CD-RW media */
  640. scsi_CDs[i].cdi.mask |= CDC_CD_RW;
  641. if ((buffer[n + 3] & 0x1) == 0)
  642. /* can't write CD-R media */
  643. scsi_CDs[i].cdi.mask |= CDC_CD_R;
  644. if ((buffer[n + 6] & 0x8) == 0)
  645. /* can't eject */
  646. scsi_CDs[i].cdi.mask |= CDC_OPEN_TRAY;
  647. if ((buffer[n + 6] >> 5) == mechtype_individual_changer ||
  648.     (buffer[n + 6] >> 5) == mechtype_cartridge_changer)
  649. scsi_CDs[i].cdi.capacity =
  650.     cdrom_number_of_slots(&(scsi_CDs[i].cdi));
  651. if (scsi_CDs[i].cdi.capacity <= 1)
  652. /* not a changer */
  653. scsi_CDs[i].cdi.mask |= CDC_SELECT_DISC;
  654. /*else    I don't think it can close its tray
  655.    scsi_CDs[i].cdi.mask |= CDC_CLOSE_TRAY; */
  656. scsi_free(buffer, 512);
  657. }
  658. /*
  659.  * sr_packet() is the entry point for the generic commands generated
  660.  * by the Uniform CD-ROM layer. 
  661.  */
  662. static int sr_packet(struct cdrom_device_info *cdi, struct cdrom_generic_command *cgc)
  663. {
  664. Scsi_Device *device = scsi_CDs[MINOR(cdi->dev)].device;
  665. /* set the LUN */
  666. if (device->scsi_level <= SCSI_2)
  667. cgc->cmd[1] |= device->lun << 5;
  668. cgc->stat = sr_do_ioctl(MINOR(cdi->dev), cgc->cmd, cgc->buffer, cgc->buflen, cgc->quiet, cgc->data_direction, cgc->sense);
  669. return cgc->stat;
  670. }
  671. static int sr_registered;
  672. static int sr_init()
  673. {
  674. int i;
  675. if (sr_template.dev_noticed == 0)
  676. return 0;
  677. if (!sr_registered) {
  678. if (devfs_register_blkdev(MAJOR_NR, "sr", &sr_bdops)) {
  679. printk("Unable to get major %d for SCSI-CDn", MAJOR_NR);
  680. sr_template.dev_noticed = 0;
  681. return 1;
  682. }
  683. sr_registered++;
  684. }
  685. if (scsi_CDs)
  686. return 0;
  687. sr_template.dev_max = sr_template.dev_noticed + SR_EXTRA_DEVS;
  688. scsi_CDs = kmalloc(sr_template.dev_max * sizeof(Scsi_CD), GFP_ATOMIC);
  689. if (!scsi_CDs)
  690. goto cleanup_devfs;
  691. memset(scsi_CDs, 0, sr_template.dev_max * sizeof(Scsi_CD));
  692. sr_sizes = kmalloc(sr_template.dev_max * sizeof(int), GFP_ATOMIC);
  693. if (!sr_sizes)
  694. goto cleanup_cds;
  695. memset(sr_sizes, 0, sr_template.dev_max * sizeof(int));
  696. sr_blocksizes = kmalloc(sr_template.dev_max * sizeof(int), GFP_ATOMIC);
  697. if (!sr_blocksizes)
  698. goto cleanup_sizes;
  699. sr_hardsizes = kmalloc(sr_template.dev_max * sizeof(int), GFP_ATOMIC);
  700. if (!sr_hardsizes)
  701. goto cleanup_blocksizes;
  702. /*
  703.  * These are good guesses for the time being.
  704.  */
  705. for (i = 0; i < sr_template.dev_max; i++) {
  706. sr_blocksizes[i] = 2048;
  707. sr_hardsizes[i] = 2048;
  708.         }
  709. blksize_size[MAJOR_NR] = sr_blocksizes;
  710.         hardsect_size[MAJOR_NR] = sr_hardsizes;
  711. return 0;
  712. cleanup_blocksizes:
  713. kfree(sr_blocksizes);
  714. cleanup_sizes:
  715. kfree(sr_sizes);
  716. cleanup_cds:
  717. kfree(scsi_CDs);
  718. scsi_CDs = NULL;
  719. cleanup_devfs:
  720. devfs_unregister_blkdev(MAJOR_NR, "sr");
  721. sr_template.dev_noticed = 0;
  722. sr_registered--;
  723. return 1;
  724. }
  725. void sr_finish()
  726. {
  727. int i;
  728. char name[6];
  729. blk_dev[MAJOR_NR].queue = sr_find_queue;
  730. blk_size[MAJOR_NR] = sr_sizes;
  731. for (i = 0; i < sr_template.nr_dev; ++i) {
  732. /* If we have already seen this, then skip it.  Comes up
  733.  * with loadable modules. */
  734. if (scsi_CDs[i].capacity)
  735. continue;
  736. scsi_CDs[i].capacity = 0x1fffff;
  737. scsi_CDs[i].device->sector_size = 2048; /* A guess, just in case */
  738. scsi_CDs[i].needs_sector_size = 1;
  739. scsi_CDs[i].device->changed = 1; /* force recheck CD type */
  740. #if 0
  741. /* seems better to leave this for later */
  742. get_sectorsize(i);
  743. printk("Scd sectorsize = %d bytes.n", scsi_CDs[i].sector_size);
  744. #endif
  745. scsi_CDs[i].use = 1;
  746. scsi_CDs[i].device->ten = 1;
  747. scsi_CDs[i].device->remap = 1;
  748. scsi_CDs[i].readcd_known = 0;
  749. scsi_CDs[i].readcd_cdda = 0;
  750. sr_sizes[i] = scsi_CDs[i].capacity >> (BLOCK_SIZE_BITS - 9);
  751. scsi_CDs[i].cdi.ops = &sr_dops;
  752. scsi_CDs[i].cdi.handle = &scsi_CDs[i];
  753. scsi_CDs[i].cdi.dev = MKDEV(MAJOR_NR, i);
  754. scsi_CDs[i].cdi.mask = 0;
  755. scsi_CDs[i].cdi.capacity = 1;
  756. /*
  757.  * FIXME: someone needs to handle a get_capabilities
  758.  * failure properly ??
  759.  */
  760. get_capabilities(i);
  761. sr_vendor_init(i);
  762. sprintf(name, "sr%d", i);
  763. strcpy(scsi_CDs[i].cdi.name, name);
  764.                 scsi_CDs[i].cdi.de =
  765.                     devfs_register (scsi_CDs[i].device->de, "cd",
  766.                                     DEVFS_FL_DEFAULT, MAJOR_NR, i,
  767.                                     S_IFBLK | S_IRUGO | S_IWUGO,
  768.                                     &sr_bdops, NULL);
  769. register_cdrom(&scsi_CDs[i].cdi);
  770. }
  771. /* If our host adapter is capable of scatter-gather, then we increase
  772.  * the read-ahead to 16 blocks (32 sectors).  If not, we use
  773.  * a two block (4 sector) read ahead. */
  774. if (scsi_CDs[0].device && scsi_CDs[0].device->host->sg_tablesize)
  775. read_ahead[MAJOR_NR] = 32; /* 32 sector read-ahead.  Always removable. */
  776. else
  777. read_ahead[MAJOR_NR] = 4; /* 4 sector read-ahead */
  778. return;
  779. }
  780. static void sr_detach(Scsi_Device * SDp)
  781. {
  782. Scsi_CD *cpnt;
  783. int i;
  784. if (scsi_CDs == NULL)
  785. return;
  786. for (cpnt = scsi_CDs, i = 0; i < sr_template.dev_max; i++, cpnt++)
  787. if (cpnt->device == SDp) {
  788. /*
  789.  * Since the cdrom is read-only, no need to sync the device.
  790.  * We should be kind to our buffer cache, however.
  791.  */
  792. invalidate_device(MKDEV(MAJOR_NR, i), 0);
  793. /*
  794.  * Reset things back to a sane state so that one can re-load a new
  795.  * driver (perhaps the same one).
  796.  */
  797. unregister_cdrom(&(cpnt->cdi));
  798. cpnt->device = NULL;
  799. cpnt->capacity = 0;
  800. SDp->attached--;
  801. sr_template.nr_dev--;
  802. sr_template.dev_noticed--;
  803. sr_sizes[i] = 0;
  804. return;
  805. }
  806. return;
  807. }
  808. static int __init init_sr(void)
  809. {
  810. sr_template.module = THIS_MODULE;
  811. return scsi_register_module(MODULE_SCSI_DEV, &sr_template);
  812. }
  813. static void __exit exit_sr(void)
  814. {
  815. scsi_unregister_module(MODULE_SCSI_DEV, &sr_template);
  816. devfs_unregister_blkdev(MAJOR_NR, "sr");
  817. sr_registered--;
  818. if (scsi_CDs != NULL) {
  819. kfree(scsi_CDs);
  820. kfree(sr_sizes);
  821. sr_sizes = NULL;
  822. kfree(sr_blocksizes);
  823. sr_blocksizes = NULL;
  824. kfree(sr_hardsizes);
  825. sr_hardsizes = NULL;
  826. }
  827. blksize_size[MAJOR_NR] = NULL;
  828.         hardsect_size[MAJOR_NR] = NULL;
  829. blk_size[MAJOR_NR] = NULL;
  830. read_ahead[MAJOR_NR] = 0;
  831. sr_template.dev_max = 0;
  832. }
  833. module_init(init_sr);
  834. module_exit(exit_sr);
  835. MODULE_LICENSE("GPL");