2 * sr.c Copyright (C) 1992 David Giller
3 * Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale
6 * sd.c Copyright (C) 1992 Drew Eckhardt
7 * Linux scsi disk driver by
8 * Drew Eckhardt <drew@colorado.edu>
10 * Modified by Eric Youngdale ericy@andante.org to
11 * add scatter-gather, multiple outstanding request, and other
14 * Modified by Eric Youngdale eric@andante.org to support loadable
15 * low-level scsi drivers.
17 * Modified by Thomas Quinot thomas@melchior.cuivre.fdn.fr to
20 * Modified by Gerd Knorr <kraxel@cs.tu-berlin.de> to support the
21 * generic cdrom interface
23 * Modified by Jens Axboe <axboe@suse.de> - Uniform sr_packet()
24 * interface, capabilities probe additions, ioctl cleanups, etc.
26 * Modified by Richard Gooch <rgooch@atnf.csiro.au> to support devfs
28 * Modified by Jens Axboe <axboe@suse.de> - support DVD-RAM
29 * transparently and lose the GHOST hack
31 * Modified by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
32 * check resource allocation in sr_init and some cleanups
35 #include <linux/module.h>
37 #include <linux/kernel.h>
39 #include <linux/bio.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 <linux/blkdev.h>
46 #include <linux/mutex.h>
47 #include <linux/slab.h>
48 #include <linux/pm_runtime.h>
49 #include <asm/uaccess.h>
51 #include <scsi/scsi.h>
52 #include <scsi/scsi_dbg.h>
53 #include <scsi/scsi_device.h>
54 #include <scsi/scsi_driver.h>
55 #include <scsi/scsi_cmnd.h>
56 #include <scsi/scsi_eh.h>
57 #include <scsi/scsi_host.h>
58 #include <scsi/scsi_ioctl.h> /* For the door lock/unlock commands */
60 #include "scsi_logging.h"
64 MODULE_DESCRIPTION("SCSI cdrom (sr) driver");
65 MODULE_LICENSE("GPL");
66 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_CDROM_MAJOR
);
67 MODULE_ALIAS_SCSI_DEVICE(TYPE_ROM
);
68 MODULE_ALIAS_SCSI_DEVICE(TYPE_WORM
);
72 #define SR_CAPABILITIES \
73 (CDC_CLOSE_TRAY|CDC_OPEN_TRAY|CDC_LOCK|CDC_SELECT_SPEED| \
74 CDC_SELECT_DISC|CDC_MULTI_SESSION|CDC_MCN|CDC_MEDIA_CHANGED| \
75 CDC_PLAY_AUDIO|CDC_RESET|CDC_DRIVE_STATUS| \
76 CDC_CD_R|CDC_CD_RW|CDC_DVD|CDC_DVD_R|CDC_DVD_RAM|CDC_GENERIC_PACKET| \
77 CDC_MRW|CDC_MRW_W|CDC_RAM)
79 static DEFINE_MUTEX(sr_mutex
);
80 static int sr_probe(struct device
*);
81 static int sr_remove(struct device
*);
82 static int sr_init_command(struct scsi_cmnd
*SCpnt
);
83 static int sr_done(struct scsi_cmnd
*);
84 static int sr_runtime_suspend(struct device
*dev
);
86 static struct dev_pm_ops sr_pm_ops
= {
87 .runtime_suspend
= sr_runtime_suspend
,
90 static struct scsi_driver sr_template
= {
98 .init_command
= sr_init_command
,
102 static unsigned long sr_index_bits
[SR_DISKS
/ BITS_PER_LONG
];
103 static DEFINE_SPINLOCK(sr_index_lock
);
105 /* This semaphore is used to mediate the 0->1 reference get in the
106 * face of object destruction (i.e. we can't allow a get on an
107 * object after last put) */
108 static DEFINE_MUTEX(sr_ref_mutex
);
110 static int sr_open(struct cdrom_device_info
*, int);
111 static void sr_release(struct cdrom_device_info
*);
113 static void get_sectorsize(struct scsi_cd
*);
114 static void get_capabilities(struct scsi_cd
*);
116 static unsigned int sr_check_events(struct cdrom_device_info
*cdi
,
117 unsigned int clearing
, int slot
);
118 static int sr_packet(struct cdrom_device_info
*, struct packet_command
*);
120 static struct cdrom_device_ops sr_dops
= {
122 .release
= sr_release
,
123 .drive_status
= sr_drive_status
,
124 .check_events
= sr_check_events
,
125 .tray_move
= sr_tray_move
,
126 .lock_door
= sr_lock_door
,
127 .select_speed
= sr_select_speed
,
128 .get_last_session
= sr_get_last_session
,
129 .get_mcn
= sr_get_mcn
,
131 .audio_ioctl
= sr_audio_ioctl
,
132 .capability
= SR_CAPABILITIES
,
133 .generic_packet
= sr_packet
,
136 static void sr_kref_release(struct kref
*kref
);
138 static inline struct scsi_cd
*scsi_cd(struct gendisk
*disk
)
140 return container_of(disk
->private_data
, struct scsi_cd
, driver
);
143 static int sr_runtime_suspend(struct device
*dev
)
145 struct scsi_cd
*cd
= dev_get_drvdata(dev
);
147 if (cd
->media_present
)
154 * The get and put routines for the struct scsi_cd. Note this entity
155 * has a scsi_device pointer and owns a reference to this.
157 static inline struct scsi_cd
*scsi_cd_get(struct gendisk
*disk
)
159 struct scsi_cd
*cd
= NULL
;
161 mutex_lock(&sr_ref_mutex
);
162 if (disk
->private_data
== NULL
)
166 if (scsi_device_get(cd
->device
)) {
167 kref_put(&cd
->kref
, sr_kref_release
);
171 mutex_unlock(&sr_ref_mutex
);
175 static void scsi_cd_put(struct scsi_cd
*cd
)
177 struct scsi_device
*sdev
= cd
->device
;
179 mutex_lock(&sr_ref_mutex
);
180 kref_put(&cd
->kref
, sr_kref_release
);
181 scsi_device_put(sdev
);
182 mutex_unlock(&sr_ref_mutex
);
185 static unsigned int sr_get_events(struct scsi_device
*sdev
)
188 u8 cmd
[] = { GET_EVENT_STATUS_NOTIFICATION
,
191 1 << 4, /* notification class: media */
193 0, sizeof(buf
), /* allocation length */
196 struct event_header
*eh
= (void *)buf
;
197 struct media_event_desc
*med
= (void *)(buf
+ 4);
198 struct scsi_sense_hdr sshdr
;
201 result
= scsi_execute_req(sdev
, cmd
, DMA_FROM_DEVICE
, buf
, sizeof(buf
),
202 &sshdr
, SR_TIMEOUT
, MAX_RETRIES
, NULL
);
203 if (scsi_sense_valid(&sshdr
) && sshdr
.sense_key
== UNIT_ATTENTION
)
204 return DISK_EVENT_MEDIA_CHANGE
;
206 if (result
|| be16_to_cpu(eh
->data_len
) < sizeof(*med
))
209 if (eh
->nea
|| eh
->notification_class
!= 0x4)
212 if (med
->media_event_code
== 1)
213 return DISK_EVENT_EJECT_REQUEST
;
214 else if (med
->media_event_code
== 2)
215 return DISK_EVENT_MEDIA_CHANGE
;
220 * This function checks to see if the media has been changed or eject
221 * button has been pressed. It is possible that we have already
222 * sensed a change, or the drive may have sensed one and not yet
223 * reported it. The past events are accumulated in sdev->changed and
224 * returned together with the current state.
226 static unsigned int sr_check_events(struct cdrom_device_info
*cdi
,
227 unsigned int clearing
, int slot
)
229 struct scsi_cd
*cd
= cdi
->handle
;
231 struct scsi_sense_hdr sshdr
;
235 /* no changer support */
236 if (CDSL_CURRENT
!= slot
)
239 events
= sr_get_events(cd
->device
);
240 cd
->get_event_changed
|= events
& DISK_EVENT_MEDIA_CHANGE
;
243 * If earlier GET_EVENT_STATUS_NOTIFICATION and TUR did not agree
244 * for several times in a row. We rely on TUR only for this likely
245 * broken device, to prevent generating incorrect media changed
246 * events for every open().
248 if (cd
->ignore_get_event
) {
249 events
&= ~DISK_EVENT_MEDIA_CHANGE
;
254 * GET_EVENT_STATUS_NOTIFICATION is enough unless MEDIA_CHANGE
255 * is being cleared. Note that there are devices which hang
256 * if asked to execute TUR repeatedly.
258 if (cd
->device
->changed
) {
259 events
|= DISK_EVENT_MEDIA_CHANGE
;
260 cd
->device
->changed
= 0;
261 cd
->tur_changed
= true;
264 if (!(clearing
& DISK_EVENT_MEDIA_CHANGE
))
267 /* let's see whether the media is there with TUR */
268 last_present
= cd
->media_present
;
269 ret
= scsi_test_unit_ready(cd
->device
, SR_TIMEOUT
, MAX_RETRIES
, &sshdr
);
272 * Media is considered to be present if TUR succeeds or fails with
273 * sense data indicating something other than media-not-present
276 cd
->media_present
= scsi_status_is_good(ret
) ||
277 (scsi_sense_valid(&sshdr
) && sshdr
.asc
!= 0x3a);
279 if (last_present
!= cd
->media_present
)
280 cd
->device
->changed
= 1;
282 if (cd
->device
->changed
) {
283 events
|= DISK_EVENT_MEDIA_CHANGE
;
284 cd
->device
->changed
= 0;
285 cd
->tur_changed
= true;
288 if (cd
->ignore_get_event
)
291 /* check whether GET_EVENT is reporting spurious MEDIA_CHANGE */
292 if (!cd
->tur_changed
) {
293 if (cd
->get_event_changed
) {
294 if (cd
->tur_mismatch
++ > 8) {
295 sr_printk(KERN_WARNING
, cd
,
296 "GET_EVENT and TUR disagree continuously, suppress GET_EVENT events\n");
297 cd
->ignore_get_event
= true;
300 cd
->tur_mismatch
= 0;
303 cd
->tur_changed
= false;
304 cd
->get_event_changed
= false;
310 * sr_done is the interrupt routine for the device driver.
312 * It will be notified on the end of a SCSI read / write, and will take one
313 * of several actions based on success or failure.
315 static int sr_done(struct scsi_cmnd
*SCpnt
)
317 int result
= SCpnt
->result
;
318 int this_count
= scsi_bufflen(SCpnt
);
319 int good_bytes
= (result
== 0 ? this_count
: 0);
320 int block_sectors
= 0;
322 struct scsi_cd
*cd
= scsi_cd(SCpnt
->request
->rq_disk
);
325 scmd_printk(KERN_INFO
, SCpnt
, "done: %x\n", result
);
329 * Handle MEDIUM ERRORs or VOLUME OVERFLOWs that indicate partial
330 * success. Since this is a relatively rare error condition, no
331 * care is taken to avoid unnecessary additional work such as
332 * memcpy's that could be avoided.
334 if (driver_byte(result
) != 0 && /* An error occurred */
335 (SCpnt
->sense_buffer
[0] & 0x7f) == 0x70) { /* Sense current */
336 switch (SCpnt
->sense_buffer
[2]) {
338 case VOLUME_OVERFLOW
:
339 case ILLEGAL_REQUEST
:
340 if (!(SCpnt
->sense_buffer
[0] & 0x90))
342 error_sector
= (SCpnt
->sense_buffer
[3] << 24) |
343 (SCpnt
->sense_buffer
[4] << 16) |
344 (SCpnt
->sense_buffer
[5] << 8) |
345 SCpnt
->sense_buffer
[6];
346 if (SCpnt
->request
->bio
!= NULL
)
348 bio_sectors(SCpnt
->request
->bio
);
349 if (block_sectors
< 4)
351 if (cd
->device
->sector_size
== 2048)
353 error_sector
&= ~(block_sectors
- 1);
354 good_bytes
= (error_sector
-
355 blk_rq_pos(SCpnt
->request
)) << 9;
356 if (good_bytes
< 0 || good_bytes
>= this_count
)
359 * The SCSI specification allows for the value
360 * returned by READ CAPACITY to be up to 75 2K
361 * sectors past the last readable block.
362 * Therefore, if we hit a medium error within the
363 * last 75 2K sectors, we decrease the saved size
366 if (error_sector
< get_capacity(cd
->disk
) &&
367 cd
->capacity
- error_sector
< 4 * 75)
368 set_capacity(cd
->disk
, error_sector
);
371 case RECOVERED_ERROR
:
372 good_bytes
= this_count
;
383 static int sr_init_command(struct scsi_cmnd
*SCpnt
)
385 int block
= 0, this_count
, s_size
;
387 struct request
*rq
= SCpnt
->request
;
390 ret
= scsi_init_io(SCpnt
);
391 if (ret
!= BLKPREP_OK
)
394 cd
= scsi_cd(rq
->rq_disk
);
396 /* from here on until we're complete, any goto out
397 * is used for a killable error condition */
400 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO
, SCpnt
,
401 "Doing sr request, block = %d\n", block
));
403 if (!cd
->device
|| !scsi_device_online(cd
->device
)) {
404 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO
, SCpnt
,
405 "Finishing %u sectors\n", blk_rq_sectors(rq
)));
406 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO
, SCpnt
,
407 "Retry with 0x%p\n", SCpnt
));
411 if (cd
->device
->changed
) {
413 * quietly refuse to do anything to a changed disc until the
414 * changed bit has been reset
420 * we do lazy blocksize switching (when reading XA sectors,
421 * see CDROMREADMODE2 ioctl)
423 s_size
= cd
->device
->sector_size
;
426 sr_set_blocklength(cd
, 2048);
428 scmd_printk(KERN_INFO
, SCpnt
,
429 "can't switch blocksize: in interrupt\n");
432 if (s_size
!= 512 && s_size
!= 1024 && s_size
!= 2048) {
433 scmd_printk(KERN_ERR
, SCpnt
, "bad sector size %d\n", s_size
);
437 if (rq_data_dir(rq
) == WRITE
) {
440 SCpnt
->cmnd
[0] = WRITE_10
;
441 cd
->cdi
.media_written
= 1;
442 } else if (rq_data_dir(rq
) == READ
) {
443 SCpnt
->cmnd
[0] = READ_10
;
445 blk_dump_rq_flags(rq
, "Unknown sr command");
450 struct scatterlist
*sg
;
451 int i
, size
= 0, sg_count
= scsi_sg_count(SCpnt
);
453 scsi_for_each_sg(SCpnt
, sg
, sg_count
, i
)
456 if (size
!= scsi_bufflen(SCpnt
)) {
457 scmd_printk(KERN_ERR
, SCpnt
,
458 "mismatch count %d, bytes %d\n",
459 size
, scsi_bufflen(SCpnt
));
460 if (scsi_bufflen(SCpnt
) > size
)
461 SCpnt
->sdb
.length
= size
;
466 * request doesn't start on hw block boundary, add scatter pads
468 if (((unsigned int)blk_rq_pos(rq
) % (s_size
>> 9)) ||
469 (scsi_bufflen(SCpnt
) % s_size
)) {
470 scmd_printk(KERN_NOTICE
, SCpnt
, "unaligned transfer\n");
474 this_count
= (scsi_bufflen(SCpnt
) >> 9) / (s_size
>> 9);
477 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO
, SCpnt
,
478 "%s %d/%u 512 byte blocks.\n",
479 (rq_data_dir(rq
) == WRITE
) ?
480 "writing" : "reading",
481 this_count
, blk_rq_sectors(rq
)));
484 block
= (unsigned int)blk_rq_pos(rq
) / (s_size
>> 9);
486 if (this_count
> 0xffff) {
488 SCpnt
->sdb
.length
= this_count
* s_size
;
491 SCpnt
->cmnd
[2] = (unsigned char) (block
>> 24) & 0xff;
492 SCpnt
->cmnd
[3] = (unsigned char) (block
>> 16) & 0xff;
493 SCpnt
->cmnd
[4] = (unsigned char) (block
>> 8) & 0xff;
494 SCpnt
->cmnd
[5] = (unsigned char) block
& 0xff;
495 SCpnt
->cmnd
[6] = SCpnt
->cmnd
[9] = 0;
496 SCpnt
->cmnd
[7] = (unsigned char) (this_count
>> 8) & 0xff;
497 SCpnt
->cmnd
[8] = (unsigned char) this_count
& 0xff;
500 * We shouldn't disconnect in the middle of a sector, so with a dumb
501 * host adapter, it's safe to assume that we can at least transfer
502 * this many bytes between each connect / disconnect.
504 SCpnt
->transfersize
= cd
->device
->sector_size
;
505 SCpnt
->underflow
= this_count
<< 9;
506 SCpnt
->allowed
= MAX_RETRIES
;
509 * This indicates that the command is ready from our end to be
517 static int sr_block_open(struct block_device
*bdev
, fmode_t mode
)
522 mutex_lock(&sr_mutex
);
523 cd
= scsi_cd_get(bdev
->bd_disk
);
525 ret
= cdrom_open(&cd
->cdi
, bdev
, mode
);
529 mutex_unlock(&sr_mutex
);
533 static void sr_block_release(struct gendisk
*disk
, fmode_t mode
)
535 struct scsi_cd
*cd
= scsi_cd(disk
);
536 mutex_lock(&sr_mutex
);
537 cdrom_release(&cd
->cdi
, mode
);
539 mutex_unlock(&sr_mutex
);
542 static int sr_block_ioctl(struct block_device
*bdev
, fmode_t mode
, unsigned cmd
,
545 struct scsi_cd
*cd
= scsi_cd(bdev
->bd_disk
);
546 struct scsi_device
*sdev
= cd
->device
;
547 void __user
*argp
= (void __user
*)arg
;
550 mutex_lock(&sr_mutex
);
552 ret
= scsi_ioctl_block_when_processing_errors(sdev
, cmd
,
553 (mode
& FMODE_NDELAY
) != 0);
558 * Send SCSI addressing ioctls directly to mid level, send other
559 * ioctls to cdrom/block level.
562 case SCSI_IOCTL_GET_IDLUN
:
563 case SCSI_IOCTL_GET_BUS_NUMBER
:
564 ret
= scsi_ioctl(sdev
, cmd
, argp
);
568 ret
= cdrom_ioctl(&cd
->cdi
, bdev
, mode
, cmd
, arg
);
572 ret
= scsi_ioctl(sdev
, cmd
, argp
);
575 mutex_unlock(&sr_mutex
);
579 static unsigned int sr_block_check_events(struct gendisk
*disk
,
580 unsigned int clearing
)
582 struct scsi_cd
*cd
= scsi_cd(disk
);
584 if (atomic_read(&cd
->device
->disk_events_disable_depth
))
587 return cdrom_check_events(&cd
->cdi
, clearing
);
590 static int sr_block_revalidate_disk(struct gendisk
*disk
)
592 struct scsi_cd
*cd
= scsi_cd(disk
);
593 struct scsi_sense_hdr sshdr
;
595 /* if the unit is not ready, nothing more to do */
596 if (scsi_test_unit_ready(cd
->device
, SR_TIMEOUT
, MAX_RETRIES
, &sshdr
))
599 sr_cd_check(&cd
->cdi
);
605 static const struct block_device_operations sr_bdops
=
607 .owner
= THIS_MODULE
,
608 .open
= sr_block_open
,
609 .release
= sr_block_release
,
610 .ioctl
= sr_block_ioctl
,
611 .check_events
= sr_block_check_events
,
612 .revalidate_disk
= sr_block_revalidate_disk
,
614 * No compat_ioctl for now because sr_block_ioctl never
615 * seems to pass arbitrary ioctls down to host drivers.
619 static int sr_open(struct cdrom_device_info
*cdi
, int purpose
)
621 struct scsi_cd
*cd
= cdi
->handle
;
622 struct scsi_device
*sdev
= cd
->device
;
626 * If the device is in error recovery, wait until it is done.
627 * If the device is offline, then disallow any access to it.
630 if (!scsi_block_when_processing_errors(sdev
))
639 static void sr_release(struct cdrom_device_info
*cdi
)
641 struct scsi_cd
*cd
= cdi
->handle
;
643 if (cd
->device
->sector_size
> 2048)
644 sr_set_blocklength(cd
, 2048);
648 static int sr_probe(struct device
*dev
)
650 struct scsi_device
*sdev
= to_scsi_device(dev
);
651 struct gendisk
*disk
;
655 scsi_autopm_get_device(sdev
);
657 if (sdev
->type
!= TYPE_ROM
&& sdev
->type
!= TYPE_WORM
)
661 cd
= kzalloc(sizeof(*cd
), GFP_KERNEL
);
665 kref_init(&cd
->kref
);
667 disk
= alloc_disk(1);
671 spin_lock(&sr_index_lock
);
672 minor
= find_first_zero_bit(sr_index_bits
, SR_DISKS
);
673 if (minor
== SR_DISKS
) {
674 spin_unlock(&sr_index_lock
);
678 __set_bit(minor
, sr_index_bits
);
679 spin_unlock(&sr_index_lock
);
681 disk
->major
= SCSI_CDROM_MAJOR
;
682 disk
->first_minor
= minor
;
683 sprintf(disk
->disk_name
, "sr%d", minor
);
684 disk
->fops
= &sr_bdops
;
685 disk
->flags
= GENHD_FL_CD
| GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE
;
686 disk
->events
= DISK_EVENT_MEDIA_CHANGE
| DISK_EVENT_EJECT_REQUEST
;
688 blk_queue_rq_timeout(sdev
->request_queue
, SR_TIMEOUT
);
692 cd
->driver
= &sr_template
;
694 cd
->capacity
= 0x1fffff;
695 cd
->device
->changed
= 1; /* force recheck CD type */
696 cd
->media_present
= 1;
698 cd
->readcd_known
= 0;
701 cd
->cdi
.ops
= &sr_dops
;
704 cd
->cdi
.capacity
= 1;
705 sprintf(cd
->cdi
.name
, "sr%d", minor
);
707 sdev
->sector_size
= 2048; /* A guess, just in case */
709 /* FIXME: need to handle a get_capabilities failure properly ?? */
710 get_capabilities(cd
);
713 disk
->driverfs_dev
= &sdev
->sdev_gendev
;
714 set_capacity(disk
, cd
->capacity
);
715 disk
->private_data
= &cd
->driver
;
716 disk
->queue
= sdev
->request_queue
;
719 if (register_cdrom(&cd
->cdi
))
723 * Initialize block layer runtime PM stuffs before the
724 * periodic event checking request gets started in add_disk.
726 blk_pm_runtime_init(sdev
->request_queue
, dev
);
728 dev_set_drvdata(dev
, cd
);
729 disk
->flags
|= GENHD_FL_REMOVABLE
;
732 sdev_printk(KERN_DEBUG
, sdev
,
733 "Attached scsi CD-ROM %s\n", cd
->cdi
.name
);
734 scsi_autopm_put_device(cd
->device
);
743 scsi_autopm_put_device(sdev
);
748 static void get_sectorsize(struct scsi_cd
*cd
)
750 unsigned char cmd
[10];
751 unsigned char buffer
[8];
752 int the_result
, retries
= 3;
754 struct request_queue
*queue
;
757 cmd
[0] = READ_CAPACITY
;
758 memset((void *) &cmd
[1], 0, 9);
759 memset(buffer
, 0, sizeof(buffer
));
761 /* Do the command and wait.. */
762 the_result
= scsi_execute_req(cd
->device
, cmd
, DMA_FROM_DEVICE
,
763 buffer
, sizeof(buffer
), NULL
,
764 SR_TIMEOUT
, MAX_RETRIES
, NULL
);
768 } while (the_result
&& retries
);
772 cd
->capacity
= 0x1fffff;
773 sector_size
= 2048; /* A guess, just in case */
777 cd
->capacity
= 1 + ((buffer
[0] << 24) | (buffer
[1] << 16) |
778 (buffer
[2] << 8) | buffer
[3]);
780 * READ_CAPACITY doesn't return the correct size on
781 * certain UDF media. If last_written is larger, use
784 * http://bugzilla.kernel.org/show_bug.cgi?id=9668
786 if (!cdrom_get_last_written(&cd
->cdi
, &last_written
))
787 cd
->capacity
= max_t(long, cd
->capacity
, last_written
);
789 sector_size
= (buffer
[4] << 24) |
790 (buffer
[5] << 16) | (buffer
[6] << 8) | buffer
[7];
791 switch (sector_size
) {
793 * HP 4020i CD-Recorder reports 2340 byte sectors
794 * Philips CD-Writers report 2352 byte sectors
796 * Use 2k sectors for them..
809 sr_printk(KERN_INFO
, cd
,
810 "unsupported sector size %d.", sector_size
);
814 cd
->device
->sector_size
= sector_size
;
817 * Add this so that we have the ability to correctly gauge
818 * what the device is capable of.
820 set_capacity(cd
->disk
, cd
->capacity
);
823 queue
= cd
->device
->request_queue
;
824 blk_queue_logical_block_size(queue
, sector_size
);
829 static void get_capabilities(struct scsi_cd
*cd
)
831 unsigned char *buffer
;
832 struct scsi_mode_data data
;
833 struct scsi_sense_hdr sshdr
;
836 static const char *loadmech
[] =
849 /* allocate transfer buffer */
850 buffer
= kmalloc(512, GFP_KERNEL
| GFP_DMA
);
852 sr_printk(KERN_ERR
, cd
, "out of memory.\n");
856 /* eat unit attentions */
857 scsi_test_unit_ready(cd
->device
, SR_TIMEOUT
, MAX_RETRIES
, &sshdr
);
859 /* ask for mode page 0x2a */
860 rc
= scsi_mode_sense(cd
->device
, 0, 0x2a, buffer
, 128,
861 SR_TIMEOUT
, 3, &data
, NULL
);
863 if (!scsi_status_is_good(rc
)) {
864 /* failed, drive doesn't have capabilities mode page */
866 cd
->cdi
.mask
|= (CDC_CD_R
| CDC_CD_RW
| CDC_DVD_R
|
867 CDC_DVD
| CDC_DVD_RAM
|
868 CDC_SELECT_DISC
| CDC_SELECT_SPEED
|
869 CDC_MRW
| CDC_MRW_W
| CDC_RAM
);
871 sr_printk(KERN_INFO
, cd
, "scsi-1 drive");
875 n
= data
.header_length
+ data
.block_descriptor_length
;
876 cd
->cdi
.speed
= ((buffer
[n
+ 8] << 8) + buffer
[n
+ 9]) / 176;
877 cd
->readcd_known
= 1;
878 cd
->readcd_cdda
= buffer
[n
+ 5] & 0x01;
879 /* print some capability bits */
880 sr_printk(KERN_INFO
, cd
,
881 "scsi3-mmc drive: %dx/%dx %s%s%s%s%s%s\n",
882 ((buffer
[n
+ 14] << 8) + buffer
[n
+ 15]) / 176,
884 buffer
[n
+ 3] & 0x01 ? "writer " : "", /* CD Writer */
885 buffer
[n
+ 3] & 0x20 ? "dvd-ram " : "",
886 buffer
[n
+ 2] & 0x02 ? "cd/rw " : "", /* can read rewriteable */
887 buffer
[n
+ 4] & 0x20 ? "xa/form2 " : "", /* can read xa/from2 */
888 buffer
[n
+ 5] & 0x01 ? "cdda " : "", /* can read audio data */
889 loadmech
[buffer
[n
+ 6] >> 5]);
890 if ((buffer
[n
+ 6] >> 5) == 0)
891 /* caddy drives can't close tray... */
892 cd
->cdi
.mask
|= CDC_CLOSE_TRAY
;
893 if ((buffer
[n
+ 2] & 0x8) == 0)
894 /* not a DVD drive */
895 cd
->cdi
.mask
|= CDC_DVD
;
896 if ((buffer
[n
+ 3] & 0x20) == 0)
897 /* can't write DVD-RAM media */
898 cd
->cdi
.mask
|= CDC_DVD_RAM
;
899 if ((buffer
[n
+ 3] & 0x10) == 0)
900 /* can't write DVD-R media */
901 cd
->cdi
.mask
|= CDC_DVD_R
;
902 if ((buffer
[n
+ 3] & 0x2) == 0)
903 /* can't write CD-RW media */
904 cd
->cdi
.mask
|= CDC_CD_RW
;
905 if ((buffer
[n
+ 3] & 0x1) == 0)
906 /* can't write CD-R media */
907 cd
->cdi
.mask
|= CDC_CD_R
;
908 if ((buffer
[n
+ 6] & 0x8) == 0)
910 cd
->cdi
.mask
|= CDC_OPEN_TRAY
;
912 if ((buffer
[n
+ 6] >> 5) == mechtype_individual_changer
||
913 (buffer
[n
+ 6] >> 5) == mechtype_cartridge_changer
)
915 cdrom_number_of_slots(&cd
->cdi
);
916 if (cd
->cdi
.capacity
<= 1)
918 cd
->cdi
.mask
|= CDC_SELECT_DISC
;
919 /*else I don't think it can close its tray
920 cd->cdi.mask |= CDC_CLOSE_TRAY; */
923 * if DVD-RAM, MRW-W or CD-RW, we are randomly writable
925 if ((cd
->cdi
.mask
& (CDC_DVD_RAM
| CDC_MRW_W
| CDC_RAM
| CDC_CD_RW
)) !=
926 (CDC_DVD_RAM
| CDC_MRW_W
| CDC_RAM
| CDC_CD_RW
)) {
934 * sr_packet() is the entry point for the generic commands generated
935 * by the Uniform CD-ROM layer.
937 static int sr_packet(struct cdrom_device_info
*cdi
,
938 struct packet_command
*cgc
)
940 struct scsi_cd
*cd
= cdi
->handle
;
941 struct scsi_device
*sdev
= cd
->device
;
943 if (cgc
->cmd
[0] == GPCMD_READ_DISC_INFO
&& sdev
->no_read_disc_info
)
944 return -EDRIVE_CANT_DO_THIS
;
946 if (cgc
->timeout
<= 0)
947 cgc
->timeout
= IOCTL_TIMEOUT
;
949 sr_do_ioctl(cd
, cgc
);
955 * sr_kref_release - Called to free the scsi_cd structure
956 * @kref: pointer to embedded kref
958 * sr_ref_mutex must be held entering this routine. Because it is
959 * called on last put, you should always use the scsi_cd_get()
960 * scsi_cd_put() helpers which manipulate the semaphore directly
961 * and never do a direct kref_put().
963 static void sr_kref_release(struct kref
*kref
)
965 struct scsi_cd
*cd
= container_of(kref
, struct scsi_cd
, kref
);
966 struct gendisk
*disk
= cd
->disk
;
968 spin_lock(&sr_index_lock
);
969 clear_bit(MINOR(disk_devt(disk
)), sr_index_bits
);
970 spin_unlock(&sr_index_lock
);
972 unregister_cdrom(&cd
->cdi
);
974 disk
->private_data
= NULL
;
981 static int sr_remove(struct device
*dev
)
983 struct scsi_cd
*cd
= dev_get_drvdata(dev
);
985 scsi_autopm_get_device(cd
->device
);
987 del_gendisk(cd
->disk
);
989 mutex_lock(&sr_ref_mutex
);
990 kref_put(&cd
->kref
, sr_kref_release
);
991 mutex_unlock(&sr_ref_mutex
);
996 static int __init
init_sr(void)
1000 rc
= register_blkdev(SCSI_CDROM_MAJOR
, "sr");
1003 rc
= scsi_register_driver(&sr_template
.gendrv
);
1005 unregister_blkdev(SCSI_CDROM_MAJOR
, "sr");
1010 static void __exit
exit_sr(void)
1012 scsi_unregister_driver(&sr_template
.gendrv
);
1013 unregister_blkdev(SCSI_CDROM_MAJOR
, "sr");
1016 module_init(init_sr
);
1017 module_exit(exit_sr
);
1018 MODULE_LICENSE("GPL");