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>
38 #include <linux/sched.h>
40 #include <linux/bio.h>
41 #include <linux/string.h>
42 #include <linux/errno.h>
43 #include <linux/cdrom.h>
44 #include <linux/interrupt.h>
45 #include <linux/init.h>
46 #include <linux/blkdev.h>
47 #include <linux/mutex.h>
48 #include <asm/uaccess.h>
50 #include <scsi/scsi.h>
51 #include <scsi/scsi_dbg.h>
52 #include <scsi/scsi_device.h>
53 #include <scsi/scsi_driver.h>
54 #include <scsi/scsi_cmnd.h>
55 #include <scsi/scsi_eh.h>
56 #include <scsi/scsi_host.h>
57 #include <scsi/scsi_ioctl.h> /* For the door lock/unlock commands */
59 #include "scsi_logging.h"
63 MODULE_DESCRIPTION("SCSI cdrom (sr) driver");
64 MODULE_LICENSE("GPL");
65 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_CDROM_MAJOR
);
70 #define SR_TIMEOUT (30 * HZ)
71 #define SR_CAPABILITIES \
72 (CDC_CLOSE_TRAY|CDC_OPEN_TRAY|CDC_LOCK|CDC_SELECT_SPEED| \
73 CDC_SELECT_DISC|CDC_MULTI_SESSION|CDC_MCN|CDC_MEDIA_CHANGED| \
74 CDC_PLAY_AUDIO|CDC_RESET|CDC_DRIVE_STATUS| \
75 CDC_CD_R|CDC_CD_RW|CDC_DVD|CDC_DVD_R|CDC_DVD_RAM|CDC_GENERIC_PACKET| \
76 CDC_MRW|CDC_MRW_W|CDC_RAM)
78 static int sr_probe(struct device
*);
79 static int sr_remove(struct device
*);
80 static int sr_init_command(struct scsi_cmnd
*);
82 static struct scsi_driver sr_template
= {
89 .init_command
= sr_init_command
,
92 static unsigned long sr_index_bits
[SR_DISKS
/ BITS_PER_LONG
];
93 static DEFINE_SPINLOCK(sr_index_lock
);
95 /* This semaphore is used to mediate the 0->1 reference get in the
96 * face of object destruction (i.e. we can't allow a get on an
97 * object after last put) */
98 static DEFINE_MUTEX(sr_ref_mutex
);
100 static int sr_open(struct cdrom_device_info
*, int);
101 static void sr_release(struct cdrom_device_info
*);
103 static void get_sectorsize(struct scsi_cd
*);
104 static void get_capabilities(struct scsi_cd
*);
106 static int sr_media_change(struct cdrom_device_info
*, int);
107 static int sr_packet(struct cdrom_device_info
*, struct packet_command
*);
109 static struct cdrom_device_ops sr_dops
= {
111 .release
= sr_release
,
112 .drive_status
= sr_drive_status
,
113 .media_changed
= sr_media_change
,
114 .tray_move
= sr_tray_move
,
115 .lock_door
= sr_lock_door
,
116 .select_speed
= sr_select_speed
,
117 .get_last_session
= sr_get_last_session
,
118 .get_mcn
= sr_get_mcn
,
120 .audio_ioctl
= sr_audio_ioctl
,
121 .capability
= SR_CAPABILITIES
,
122 .generic_packet
= sr_packet
,
125 static void sr_kref_release(struct kref
*kref
);
127 static inline struct scsi_cd
*scsi_cd(struct gendisk
*disk
)
129 return container_of(disk
->private_data
, struct scsi_cd
, driver
);
133 * The get and put routines for the struct scsi_cd. Note this entity
134 * has a scsi_device pointer and owns a reference to this.
136 static inline struct scsi_cd
*scsi_cd_get(struct gendisk
*disk
)
138 struct scsi_cd
*cd
= NULL
;
140 mutex_lock(&sr_ref_mutex
);
141 if (disk
->private_data
== NULL
)
145 if (scsi_device_get(cd
->device
))
150 kref_put(&cd
->kref
, sr_kref_release
);
153 mutex_unlock(&sr_ref_mutex
);
157 static void scsi_cd_put(struct scsi_cd
*cd
)
159 struct scsi_device
*sdev
= cd
->device
;
161 mutex_lock(&sr_ref_mutex
);
162 kref_put(&cd
->kref
, sr_kref_release
);
163 scsi_device_put(sdev
);
164 mutex_unlock(&sr_ref_mutex
);
168 * This function checks to see if the media has been changed in the
169 * CDROM drive. It is possible that we have already sensed a change,
170 * or the drive may have sensed one and not yet reported it. We must
171 * be ready for either case. This function always reports the current
172 * value of the changed bit. If flag is 0, then the changed bit is reset.
173 * This function could be done as an ioctl, but we would need to have
174 * an inode for that to work, and we do not always have one.
177 int sr_media_change(struct cdrom_device_info
*cdi
, int slot
)
179 struct scsi_cd
*cd
= cdi
->handle
;
182 if (CDSL_CURRENT
!= slot
) {
183 /* no changer support */
187 retval
= scsi_test_unit_ready(cd
->device
, SR_TIMEOUT
, MAX_RETRIES
);
189 /* Unable to test, unit probably not ready. This usually
190 * means there is no disc in the drive. Mark as changed,
191 * and we will figure it out later once the drive is
192 * available again. */
193 cd
->device
->changed
= 1;
194 return 1; /* This will force a flush, if called from
195 * check_disk_change */
198 retval
= cd
->device
->changed
;
199 cd
->device
->changed
= 0;
200 /* If the disk changed, the capacity will now be different,
201 * so we force a re-read of this information */
203 /* check multisession offset etc */
212 * rw_intr is the interrupt routine for the device driver.
214 * It will be notified on the end of a SCSI read / write, and will take on
215 * of several actions based on success or failure.
217 static void rw_intr(struct scsi_cmnd
* SCpnt
)
219 int result
= SCpnt
->result
;
220 int this_count
= SCpnt
->request_bufflen
;
221 int good_bytes
= (result
== 0 ? this_count
: 0);
222 int block_sectors
= 0;
224 struct scsi_cd
*cd
= scsi_cd(SCpnt
->request
->rq_disk
);
227 printk("sr.c done: %x\n", result
);
231 * Handle MEDIUM ERRORs or VOLUME OVERFLOWs that indicate partial
232 * success. Since this is a relatively rare error condition, no
233 * care is taken to avoid unnecessary additional work such as
234 * memcpy's that could be avoided.
236 if (driver_byte(result
) != 0 && /* An error occurred */
237 (SCpnt
->sense_buffer
[0] & 0x7f) == 0x70) { /* Sense current */
238 switch (SCpnt
->sense_buffer
[2]) {
240 case VOLUME_OVERFLOW
:
241 case ILLEGAL_REQUEST
:
242 if (!(SCpnt
->sense_buffer
[0] & 0x90))
244 error_sector
= (SCpnt
->sense_buffer
[3] << 24) |
245 (SCpnt
->sense_buffer
[4] << 16) |
246 (SCpnt
->sense_buffer
[5] << 8) |
247 SCpnt
->sense_buffer
[6];
248 if (SCpnt
->request
->bio
!= NULL
)
250 bio_sectors(SCpnt
->request
->bio
);
251 if (block_sectors
< 4)
253 if (cd
->device
->sector_size
== 2048)
255 error_sector
&= ~(block_sectors
- 1);
256 good_bytes
= (error_sector
- SCpnt
->request
->sector
) << 9;
257 if (good_bytes
< 0 || good_bytes
>= this_count
)
260 * The SCSI specification allows for the value
261 * returned by READ CAPACITY to be up to 75 2K
262 * sectors past the last readable block.
263 * Therefore, if we hit a medium error within the
264 * last 75 2K sectors, we decrease the saved size
267 if (error_sector
< get_capacity(cd
->disk
) &&
268 cd
->capacity
- error_sector
< 4 * 75)
269 set_capacity(cd
->disk
, error_sector
);
272 case RECOVERED_ERROR
:
275 * An error occured, but it recovered. Inform the
276 * user, but make sure that it's not treated as a
279 scsi_print_sense("sr", SCpnt
);
281 SCpnt
->sense_buffer
[0] = 0x0;
282 good_bytes
= this_count
;
291 * This calls the generic completion function, now that we know
292 * how many actual sectors finished, and how many sectors we need
293 * to say have failed.
295 scsi_io_completion(SCpnt
, good_bytes
);
298 static int sr_init_command(struct scsi_cmnd
* SCpnt
)
300 int block
=0, this_count
, s_size
, timeout
= SR_TIMEOUT
;
301 struct scsi_cd
*cd
= scsi_cd(SCpnt
->request
->rq_disk
);
303 SCSI_LOG_HLQUEUE(1, printk("Doing sr request, dev = %s, block = %d\n",
304 cd
->disk
->disk_name
, block
));
306 if (!cd
->device
|| !scsi_device_online(cd
->device
)) {
307 SCSI_LOG_HLQUEUE(2, printk("Finishing %ld sectors\n",
308 SCpnt
->request
->nr_sectors
));
309 SCSI_LOG_HLQUEUE(2, printk("Retry with 0x%p\n", SCpnt
));
313 if (cd
->device
->changed
) {
315 * quietly refuse to do anything to a changed disc until the
316 * changed bit has been reset
322 * we do lazy blocksize switching (when reading XA sectors,
323 * see CDROMREADMODE2 ioctl)
325 s_size
= cd
->device
->sector_size
;
328 sr_set_blocklength(cd
, 2048);
330 printk("sr: can't switch blocksize: in interrupt\n");
333 if (s_size
!= 512 && s_size
!= 1024 && s_size
!= 2048) {
334 scmd_printk(KERN_ERR
, SCpnt
, "bad sector size %d\n", s_size
);
338 if (rq_data_dir(SCpnt
->request
) == WRITE
) {
339 if (!cd
->device
->writeable
)
341 SCpnt
->cmnd
[0] = WRITE_10
;
342 SCpnt
->sc_data_direction
= DMA_TO_DEVICE
;
343 cd
->cdi
.media_written
= 1;
344 } else if (rq_data_dir(SCpnt
->request
) == READ
) {
345 SCpnt
->cmnd
[0] = READ_10
;
346 SCpnt
->sc_data_direction
= DMA_FROM_DEVICE
;
348 blk_dump_rq_flags(SCpnt
->request
, "Unknown sr command");
353 struct scatterlist
*sg
= SCpnt
->request_buffer
;
355 for (i
= 0; i
< SCpnt
->use_sg
; i
++)
356 size
+= sg
[i
].length
;
358 if (size
!= SCpnt
->request_bufflen
&& SCpnt
->use_sg
) {
359 scmd_printk(KERN_ERR
, SCpnt
,
360 "mismatch count %d, bytes %d\n",
361 size
, SCpnt
->request_bufflen
);
362 if (SCpnt
->request_bufflen
> size
)
363 SCpnt
->request_bufflen
= size
;
368 * request doesn't start on hw block boundary, add scatter pads
370 if (((unsigned int)SCpnt
->request
->sector
% (s_size
>> 9)) ||
371 (SCpnt
->request_bufflen
% s_size
)) {
372 scmd_printk(KERN_NOTICE
, SCpnt
, "unaligned transfer\n");
376 this_count
= (SCpnt
->request_bufflen
>> 9) / (s_size
>> 9);
379 SCSI_LOG_HLQUEUE(2, printk("%s : %s %d/%ld 512 byte blocks.\n",
381 (rq_data_dir(SCpnt
->request
) == WRITE
) ?
382 "writing" : "reading",
383 this_count
, SCpnt
->request
->nr_sectors
));
386 block
= (unsigned int)SCpnt
->request
->sector
/ (s_size
>> 9);
388 if (this_count
> 0xffff) {
390 SCpnt
->request_bufflen
= this_count
* s_size
;
393 SCpnt
->cmnd
[2] = (unsigned char) (block
>> 24) & 0xff;
394 SCpnt
->cmnd
[3] = (unsigned char) (block
>> 16) & 0xff;
395 SCpnt
->cmnd
[4] = (unsigned char) (block
>> 8) & 0xff;
396 SCpnt
->cmnd
[5] = (unsigned char) block
& 0xff;
397 SCpnt
->cmnd
[6] = SCpnt
->cmnd
[9] = 0;
398 SCpnt
->cmnd
[7] = (unsigned char) (this_count
>> 8) & 0xff;
399 SCpnt
->cmnd
[8] = (unsigned char) this_count
& 0xff;
402 * We shouldn't disconnect in the middle of a sector, so with a dumb
403 * host adapter, it's safe to assume that we can at least transfer
404 * this many bytes between each connect / disconnect.
406 SCpnt
->transfersize
= cd
->device
->sector_size
;
407 SCpnt
->underflow
= this_count
<< 9;
408 SCpnt
->allowed
= MAX_RETRIES
;
409 SCpnt
->timeout_per_command
= timeout
;
412 * This is the completion routine we use. This is matched in terms
413 * of capability to this function.
415 SCpnt
->done
= rw_intr
;
418 * This indicates that the command is ready from our end to be
424 static int sr_block_open(struct inode
*inode
, struct file
*file
)
426 struct gendisk
*disk
= inode
->i_bdev
->bd_disk
;
430 if(!(cd
= scsi_cd_get(disk
)))
433 if((ret
= cdrom_open(&cd
->cdi
, inode
, file
)) != 0)
439 static int sr_block_release(struct inode
*inode
, struct file
*file
)
442 struct scsi_cd
*cd
= scsi_cd(inode
->i_bdev
->bd_disk
);
443 ret
= cdrom_release(&cd
->cdi
, file
);
452 static int sr_block_ioctl(struct inode
*inode
, struct file
*file
, unsigned cmd
,
455 struct scsi_cd
*cd
= scsi_cd(inode
->i_bdev
->bd_disk
);
456 struct scsi_device
*sdev
= cd
->device
;
457 void __user
*argp
= (void __user
*)arg
;
461 * Send SCSI addressing ioctls directly to mid level, send other
462 * ioctls to cdrom/block level.
465 case SCSI_IOCTL_GET_IDLUN
:
466 case SCSI_IOCTL_GET_BUS_NUMBER
:
467 return scsi_ioctl(sdev
, cmd
, argp
);
470 ret
= cdrom_ioctl(file
, &cd
->cdi
, inode
, cmd
, arg
);
475 * ENODEV means that we didn't recognise the ioctl, or that we
476 * cannot execute it in the current device state. In either
477 * case fall through to scsi_ioctl, which will return ENDOEV again
478 * if it doesn't recognise the ioctl
480 ret
= scsi_nonblockable_ioctl(sdev
, cmd
, argp
, NULL
);
483 return scsi_ioctl(sdev
, cmd
, argp
);
486 static int sr_block_media_changed(struct gendisk
*disk
)
488 struct scsi_cd
*cd
= scsi_cd(disk
);
489 return cdrom_media_changed(&cd
->cdi
);
492 static struct block_device_operations sr_bdops
=
494 .owner
= THIS_MODULE
,
495 .open
= sr_block_open
,
496 .release
= sr_block_release
,
497 .ioctl
= sr_block_ioctl
,
498 .media_changed
= sr_block_media_changed
,
500 * No compat_ioctl for now because sr_block_ioctl never
501 * seems to pass arbitary ioctls down to host drivers.
505 static int sr_open(struct cdrom_device_info
*cdi
, int purpose
)
507 struct scsi_cd
*cd
= cdi
->handle
;
508 struct scsi_device
*sdev
= cd
->device
;
512 * If the device is in error recovery, wait until it is done.
513 * If the device is offline, then disallow any access to it.
516 if (!scsi_block_when_processing_errors(sdev
))
525 static void sr_release(struct cdrom_device_info
*cdi
)
527 struct scsi_cd
*cd
= cdi
->handle
;
529 if (cd
->device
->sector_size
> 2048)
530 sr_set_blocklength(cd
, 2048);
534 static int sr_probe(struct device
*dev
)
536 struct scsi_device
*sdev
= to_scsi_device(dev
);
537 struct gendisk
*disk
;
542 if (sdev
->type
!= TYPE_ROM
&& sdev
->type
!= TYPE_WORM
)
546 cd
= kzalloc(sizeof(*cd
), GFP_KERNEL
);
550 kref_init(&cd
->kref
);
552 disk
= alloc_disk(1);
556 spin_lock(&sr_index_lock
);
557 minor
= find_first_zero_bit(sr_index_bits
, SR_DISKS
);
558 if (minor
== SR_DISKS
) {
559 spin_unlock(&sr_index_lock
);
563 __set_bit(minor
, sr_index_bits
);
564 spin_unlock(&sr_index_lock
);
566 disk
->major
= SCSI_CDROM_MAJOR
;
567 disk
->first_minor
= minor
;
568 sprintf(disk
->disk_name
, "sr%d", minor
);
569 disk
->fops
= &sr_bdops
;
570 disk
->flags
= GENHD_FL_CD
;
574 cd
->driver
= &sr_template
;
576 cd
->capacity
= 0x1fffff;
577 cd
->device
->changed
= 1; /* force recheck CD type */
579 cd
->readcd_known
= 0;
582 cd
->cdi
.ops
= &sr_dops
;
585 cd
->cdi
.capacity
= 1;
586 sprintf(cd
->cdi
.name
, "sr%d", minor
);
588 sdev
->sector_size
= 2048; /* A guess, just in case */
590 /* FIXME: need to handle a get_capabilities failure properly ?? */
591 get_capabilities(cd
);
594 disk
->driverfs_dev
= &sdev
->sdev_gendev
;
595 set_capacity(disk
, cd
->capacity
);
596 disk
->private_data
= &cd
->driver
;
597 disk
->queue
= sdev
->request_queue
;
600 if (register_cdrom(&cd
->cdi
))
603 dev_set_drvdata(dev
, cd
);
604 disk
->flags
|= GENHD_FL_REMOVABLE
;
607 sdev_printk(KERN_DEBUG
, sdev
,
608 "Attached scsi CD-ROM %s\n", cd
->cdi
.name
);
620 static void get_sectorsize(struct scsi_cd
*cd
)
622 unsigned char cmd
[10];
623 unsigned char *buffer
;
624 int the_result
, retries
= 3;
626 request_queue_t
*queue
;
628 buffer
= kmalloc(512, GFP_KERNEL
| GFP_DMA
);
633 cmd
[0] = READ_CAPACITY
;
634 memset((void *) &cmd
[1], 0, 9);
635 memset(buffer
, 0, 8);
637 /* Do the command and wait.. */
638 the_result
= scsi_execute_req(cd
->device
, cmd
, DMA_FROM_DEVICE
,
639 buffer
, 8, NULL
, SR_TIMEOUT
,
644 } while (the_result
&& retries
);
648 cd
->capacity
= 0x1fffff;
649 sector_size
= 2048; /* A guess, just in case */
652 if (cdrom_get_last_written(&cd
->cdi
,
655 cd
->capacity
= 1 + ((buffer
[0] << 24) |
659 sector_size
= (buffer
[4] << 24) |
660 (buffer
[5] << 16) | (buffer
[6] << 8) | buffer
[7];
661 switch (sector_size
) {
663 * HP 4020i CD-Recorder reports 2340 byte sectors
664 * Philips CD-Writers report 2352 byte sectors
666 * Use 2k sectors for them..
679 printk("%s: unsupported sector size %d.\n",
680 cd
->cdi
.name
, sector_size
);
684 cd
->device
->sector_size
= sector_size
;
687 * Add this so that we have the ability to correctly gauge
688 * what the device is capable of.
690 set_capacity(cd
->disk
, cd
->capacity
);
693 queue
= cd
->device
->request_queue
;
694 blk_queue_hardsect_size(queue
, sector_size
);
700 cd
->capacity
= 0x1fffff;
701 cd
->device
->sector_size
= 2048; /* A guess, just in case */
705 static void get_capabilities(struct scsi_cd
*cd
)
707 unsigned char *buffer
;
708 struct scsi_mode_data data
;
709 unsigned char cmd
[MAX_COMMAND_SIZE
];
710 struct scsi_sense_hdr sshdr
;
711 unsigned int the_result
;
714 static const char *loadmech
[] =
727 /* allocate transfer buffer */
728 buffer
= kmalloc(512, GFP_KERNEL
| GFP_DMA
);
730 printk(KERN_ERR
"sr: out of memory.\n");
734 /* issue TEST_UNIT_READY until the initial startup UNIT_ATTENTION
735 * conditions are gone, or a timeout happens
739 memset((void *)cmd
, 0, MAX_COMMAND_SIZE
);
740 cmd
[0] = TEST_UNIT_READY
;
742 the_result
= scsi_execute_req (cd
->device
, cmd
, DMA_NONE
, NULL
,
743 0, &sshdr
, SR_TIMEOUT
,
747 } while (retries
< 5 &&
748 (!scsi_status_is_good(the_result
) ||
749 (scsi_sense_valid(&sshdr
) &&
750 sshdr
.sense_key
== UNIT_ATTENTION
)));
752 /* ask for mode page 0x2a */
753 rc
= scsi_mode_sense(cd
->device
, 0, 0x2a, buffer
, 128,
754 SR_TIMEOUT
, 3, &data
, NULL
);
756 if (!scsi_status_is_good(rc
)) {
757 /* failed, drive doesn't have capabilities mode page */
759 cd
->cdi
.mask
|= (CDC_CD_R
| CDC_CD_RW
| CDC_DVD_R
|
760 CDC_DVD
| CDC_DVD_RAM
|
761 CDC_SELECT_DISC
| CDC_SELECT_SPEED
|
762 CDC_MRW
| CDC_MRW_W
| CDC_RAM
);
764 printk("%s: scsi-1 drive\n", cd
->cdi
.name
);
768 n
= data
.header_length
+ data
.block_descriptor_length
;
769 cd
->cdi
.speed
= ((buffer
[n
+ 8] << 8) + buffer
[n
+ 9]) / 176;
770 cd
->readcd_known
= 1;
771 cd
->readcd_cdda
= buffer
[n
+ 5] & 0x01;
772 /* print some capability bits */
773 printk("%s: scsi3-mmc drive: %dx/%dx %s%s%s%s%s%s\n", cd
->cdi
.name
,
774 ((buffer
[n
+ 14] << 8) + buffer
[n
+ 15]) / 176,
776 buffer
[n
+ 3] & 0x01 ? "writer " : "", /* CD Writer */
777 buffer
[n
+ 3] & 0x20 ? "dvd-ram " : "",
778 buffer
[n
+ 2] & 0x02 ? "cd/rw " : "", /* can read rewriteable */
779 buffer
[n
+ 4] & 0x20 ? "xa/form2 " : "", /* can read xa/from2 */
780 buffer
[n
+ 5] & 0x01 ? "cdda " : "", /* can read audio data */
781 loadmech
[buffer
[n
+ 6] >> 5]);
782 if ((buffer
[n
+ 6] >> 5) == 0)
783 /* caddy drives can't close tray... */
784 cd
->cdi
.mask
|= CDC_CLOSE_TRAY
;
785 if ((buffer
[n
+ 2] & 0x8) == 0)
786 /* not a DVD drive */
787 cd
->cdi
.mask
|= CDC_DVD
;
788 if ((buffer
[n
+ 3] & 0x20) == 0)
789 /* can't write DVD-RAM media */
790 cd
->cdi
.mask
|= CDC_DVD_RAM
;
791 if ((buffer
[n
+ 3] & 0x10) == 0)
792 /* can't write DVD-R media */
793 cd
->cdi
.mask
|= CDC_DVD_R
;
794 if ((buffer
[n
+ 3] & 0x2) == 0)
795 /* can't write CD-RW media */
796 cd
->cdi
.mask
|= CDC_CD_RW
;
797 if ((buffer
[n
+ 3] & 0x1) == 0)
798 /* can't write CD-R media */
799 cd
->cdi
.mask
|= CDC_CD_R
;
800 if ((buffer
[n
+ 6] & 0x8) == 0)
802 cd
->cdi
.mask
|= CDC_OPEN_TRAY
;
804 if ((buffer
[n
+ 6] >> 5) == mechtype_individual_changer
||
805 (buffer
[n
+ 6] >> 5) == mechtype_cartridge_changer
)
807 cdrom_number_of_slots(&cd
->cdi
);
808 if (cd
->cdi
.capacity
<= 1)
810 cd
->cdi
.mask
|= CDC_SELECT_DISC
;
811 /*else I don't think it can close its tray
812 cd->cdi.mask |= CDC_CLOSE_TRAY; */
815 * if DVD-RAM, MRW-W or CD-RW, we are randomly writable
817 if ((cd
->cdi
.mask
& (CDC_DVD_RAM
| CDC_MRW_W
| CDC_RAM
| CDC_CD_RW
)) !=
818 (CDC_DVD_RAM
| CDC_MRW_W
| CDC_RAM
| CDC_CD_RW
)) {
819 cd
->device
->writeable
= 1;
826 * sr_packet() is the entry point for the generic commands generated
827 * by the Uniform CD-ROM layer.
829 static int sr_packet(struct cdrom_device_info
*cdi
,
830 struct packet_command
*cgc
)
832 if (cgc
->timeout
<= 0)
833 cgc
->timeout
= IOCTL_TIMEOUT
;
835 sr_do_ioctl(cdi
->handle
, cgc
);
841 * sr_kref_release - Called to free the scsi_cd structure
842 * @kref: pointer to embedded kref
844 * sr_ref_mutex must be held entering this routine. Because it is
845 * called on last put, you should always use the scsi_cd_get()
846 * scsi_cd_put() helpers which manipulate the semaphore directly
847 * and never do a direct kref_put().
849 static void sr_kref_release(struct kref
*kref
)
851 struct scsi_cd
*cd
= container_of(kref
, struct scsi_cd
, kref
);
852 struct gendisk
*disk
= cd
->disk
;
854 spin_lock(&sr_index_lock
);
855 clear_bit(disk
->first_minor
, sr_index_bits
);
856 spin_unlock(&sr_index_lock
);
858 unregister_cdrom(&cd
->cdi
);
860 disk
->private_data
= NULL
;
867 static int sr_remove(struct device
*dev
)
869 struct scsi_cd
*cd
= dev_get_drvdata(dev
);
871 del_gendisk(cd
->disk
);
873 mutex_lock(&sr_ref_mutex
);
874 kref_put(&cd
->kref
, sr_kref_release
);
875 mutex_unlock(&sr_ref_mutex
);
880 static int __init
init_sr(void)
884 rc
= register_blkdev(SCSI_CDROM_MAJOR
, "sr");
887 return scsi_register_driver(&sr_template
.gendrv
);
890 static void __exit
exit_sr(void)
892 scsi_unregister_driver(&sr_template
.gendrv
);
893 unregister_blkdev(SCSI_CDROM_MAJOR
, "sr");
896 module_init(init_sr
);
897 module_exit(exit_sr
);
898 MODULE_LICENSE("GPL");