blob: be6baf8ad7043587a4d9869005fb944680d061d9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 lose 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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/mm.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>
Arjan van de Ven0b950672006-01-11 13:16:10 +010046#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090047#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/uaccess.h>
49
50#include <scsi/scsi.h>
51#include <scsi/scsi_dbg.h>
52#include <scsi/scsi_device.h>
53#include <scsi/scsi_driver.h>
James Bottomley820732b2005-06-12 22:21:29 -050054#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <scsi/scsi_eh.h>
56#include <scsi/scsi_host.h>
57#include <scsi/scsi_ioctl.h> /* For the door lock/unlock commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#include "scsi_logging.h"
60#include "sr.h"
61
62
Rene Hermanf018fa52006-03-08 00:14:20 -080063MODULE_DESCRIPTION("SCSI cdrom (sr) driver");
64MODULE_LICENSE("GPL");
65MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_CDROM_MAJOR);
Michael Tokarevd7b8bcb2006-10-27 16:02:37 +040066MODULE_ALIAS_SCSI_DEVICE(TYPE_ROM);
67MODULE_ALIAS_SCSI_DEVICE(TYPE_WORM);
Rene Hermanf018fa52006-03-08 00:14:20 -080068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define SR_DISKS 256
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#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| \
Christoph Hellwig6a2900b2006-03-23 03:00:15 -080074 CDC_PLAY_AUDIO|CDC_RESET|CDC_DRIVE_STATUS| \
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 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)
77
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020078static DEFINE_MUTEX(sr_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static int sr_probe(struct device *);
80static int sr_remove(struct device *);
Linus Torvalds7b3d9542008-01-06 10:17:12 -080081static int sr_done(struct scsi_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83static struct scsi_driver sr_template = {
84 .owner = THIS_MODULE,
85 .gendrv = {
86 .name = "sr",
87 .probe = sr_probe,
88 .remove = sr_remove,
89 },
Linus Torvalds7b3d9542008-01-06 10:17:12 -080090 .done = sr_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091};
92
93static unsigned long sr_index_bits[SR_DISKS / BITS_PER_LONG];
94static DEFINE_SPINLOCK(sr_index_lock);
95
96/* This semaphore is used to mediate the 0->1 reference get in the
97 * face of object destruction (i.e. we can't allow a get on an
98 * object after last put) */
Arjan van de Ven0b950672006-01-11 13:16:10 +010099static DEFINE_MUTEX(sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101static int sr_open(struct cdrom_device_info *, int);
102static void sr_release(struct cdrom_device_info *);
103
104static void get_sectorsize(struct scsi_cd *);
105static void get_capabilities(struct scsi_cd *);
106
Tejun Heo93aae172010-12-16 17:52:17 +0100107static unsigned int sr_check_events(struct cdrom_device_info *cdi,
108 unsigned int clearing, int slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static int sr_packet(struct cdrom_device_info *, struct packet_command *);
110
111static struct cdrom_device_ops sr_dops = {
112 .open = sr_open,
113 .release = sr_release,
114 .drive_status = sr_drive_status,
Tejun Heo93aae172010-12-16 17:52:17 +0100115 .check_events = sr_check_events,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .tray_move = sr_tray_move,
117 .lock_door = sr_lock_door,
118 .select_speed = sr_select_speed,
119 .get_last_session = sr_get_last_session,
120 .get_mcn = sr_get_mcn,
121 .reset = sr_reset,
122 .audio_ioctl = sr_audio_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 .capability = SR_CAPABILITIES,
124 .generic_packet = sr_packet,
125};
126
127static void sr_kref_release(struct kref *kref);
128
129static inline struct scsi_cd *scsi_cd(struct gendisk *disk)
130{
131 return container_of(disk->private_data, struct scsi_cd, driver);
132}
133
134/*
135 * The get and put routines for the struct scsi_cd. Note this entity
136 * has a scsi_device pointer and owns a reference to this.
137 */
138static inline struct scsi_cd *scsi_cd_get(struct gendisk *disk)
139{
140 struct scsi_cd *cd = NULL;
141
Arjan van de Ven0b950672006-01-11 13:16:10 +0100142 mutex_lock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (disk->private_data == NULL)
144 goto out;
145 cd = scsi_cd(disk);
146 kref_get(&cd->kref);
147 if (scsi_device_get(cd->device))
148 goto out_put;
149 goto out;
150
151 out_put:
152 kref_put(&cd->kref, sr_kref_release);
153 cd = NULL;
154 out:
Arjan van de Ven0b950672006-01-11 13:16:10 +0100155 mutex_unlock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return cd;
157}
158
Arjan van de Ven858119e2006-01-14 13:20:43 -0800159static void scsi_cd_put(struct scsi_cd *cd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 struct scsi_device *sdev = cd->device;
162
Arjan van de Ven0b950672006-01-11 13:16:10 +0100163 mutex_lock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 kref_put(&cd->kref, sr_kref_release);
165 scsi_device_put(sdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100166 mutex_unlock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Tejun Heo93aae172010-12-16 17:52:17 +0100169static unsigned int sr_get_events(struct scsi_device *sdev)
170{
171 u8 buf[8];
172 u8 cmd[] = { GET_EVENT_STATUS_NOTIFICATION,
173 1, /* polled */
174 0, 0, /* reserved */
175 1 << 4, /* notification class: media */
176 0, 0, /* reserved */
177 0, sizeof(buf), /* allocation length */
178 0, /* control */
179 };
180 struct event_header *eh = (void *)buf;
181 struct media_event_desc *med = (void *)(buf + 4);
182 struct scsi_sense_hdr sshdr;
183 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Tejun Heo93aae172010-12-16 17:52:17 +0100185 result = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buf, sizeof(buf),
186 &sshdr, SR_TIMEOUT, MAX_RETRIES, NULL);
187 if (scsi_sense_valid(&sshdr) && sshdr.sense_key == UNIT_ATTENTION)
188 return DISK_EVENT_MEDIA_CHANGE;
189
190 if (result || be16_to_cpu(eh->data_len) < sizeof(*med))
191 return 0;
192
193 if (eh->nea || eh->notification_class != 0x4)
194 return 0;
195
196 if (med->media_event_code == 1)
197 return DISK_EVENT_EJECT_REQUEST;
198 else if (med->media_event_code == 2)
199 return DISK_EVENT_MEDIA_CHANGE;
200 return 0;
201}
202
203/*
204 * This function checks to see if the media has been changed or eject
205 * button has been pressed. It is possible that we have already
206 * sensed a change, or the drive may have sensed one and not yet
207 * reported it. The past events are accumulated in sdev->changed and
208 * returned together with the current state.
209 */
210static unsigned int sr_check_events(struct cdrom_device_info *cdi,
211 unsigned int clearing, int slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 struct scsi_cd *cd = cdi->handle;
Tejun Heo93aae172010-12-16 17:52:17 +0100214 bool last_present;
215 struct scsi_sense_hdr sshdr;
216 unsigned int events;
217 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Tejun Heo93aae172010-12-16 17:52:17 +0100219 /* no changer support */
220 if (CDSL_CURRENT != slot)
221 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Tejun Heo93aae172010-12-16 17:52:17 +0100223 events = sr_get_events(cd->device);
224 /*
225 * GET_EVENT_STATUS_NOTIFICATION is enough unless MEDIA_CHANGE
226 * is being cleared. Note that there are devices which hang
227 * if asked to execute TUR repeatedly.
228 */
229 if (!(clearing & DISK_EVENT_MEDIA_CHANGE))
230 goto skip_tur;
231
232 /* let's see whether the media is there with TUR */
233 last_present = cd->media_present;
234 ret = scsi_test_unit_ready(cd->device, SR_TIMEOUT, MAX_RETRIES, &sshdr);
235
Tejun Heo638428e2010-12-09 11:18:42 +0100236 /*
237 * Media is considered to be present if TUR succeeds or fails with
238 * sense data indicating something other than media-not-present
239 * (ASC 0x3a).
240 */
Tejun Heo93aae172010-12-16 17:52:17 +0100241 cd->media_present = scsi_status_is_good(ret) ||
242 (scsi_sense_valid(&sshdr) && sshdr.asc != 0x3a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Tejun Heo93aae172010-12-16 17:52:17 +0100244 if (last_present != cd->media_present)
245 events |= DISK_EVENT_MEDIA_CHANGE;
246skip_tur:
247 if (cd->device->changed) {
248 events |= DISK_EVENT_MEDIA_CHANGE;
249 cd->device->changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
Kay Sievers285e9672007-08-14 14:10:39 +0200251
Tejun Heo93aae172010-12-16 17:52:17 +0100252 /* for backward compatibility */
253 if (events & DISK_EVENT_MEDIA_CHANGE)
Kay Sievers285e9672007-08-14 14:10:39 +0200254 sdev_evt_send_simple(cd->device, SDEV_EVT_MEDIA_CHANGE,
255 GFP_KERNEL);
Tejun Heo93aae172010-12-16 17:52:17 +0100256 return events;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
Tejun Heo93aae172010-12-16 17:52:17 +0100258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/*
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800260 * sr_done is the interrupt routine for the device driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 *
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800262 * It will be notified on the end of a SCSI read / write, and will take one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 * of several actions based on success or failure.
264 */
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800265static int sr_done(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 int result = SCpnt->result;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200268 int this_count = scsi_bufflen(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 int good_bytes = (result == 0 ? this_count : 0);
270 int block_sectors = 0;
271 long error_sector;
272 struct scsi_cd *cd = scsi_cd(SCpnt->request->rq_disk);
273
274#ifdef DEBUG
275 printk("sr.c done: %x\n", result);
276#endif
277
278 /*
279 * Handle MEDIUM ERRORs or VOLUME OVERFLOWs that indicate partial
280 * success. Since this is a relatively rare error condition, no
281 * care is taken to avoid unnecessary additional work such as
282 * memcpy's that could be avoided.
283 */
284 if (driver_byte(result) != 0 && /* An error occurred */
285 (SCpnt->sense_buffer[0] & 0x7f) == 0x70) { /* Sense current */
286 switch (SCpnt->sense_buffer[2]) {
287 case MEDIUM_ERROR:
288 case VOLUME_OVERFLOW:
289 case ILLEGAL_REQUEST:
290 if (!(SCpnt->sense_buffer[0] & 0x90))
291 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 error_sector = (SCpnt->sense_buffer[3] << 24) |
293 (SCpnt->sense_buffer[4] << 16) |
294 (SCpnt->sense_buffer[5] << 8) |
295 SCpnt->sense_buffer[6];
296 if (SCpnt->request->bio != NULL)
297 block_sectors =
298 bio_sectors(SCpnt->request->bio);
299 if (block_sectors < 4)
300 block_sectors = 4;
301 if (cd->device->sector_size == 2048)
302 error_sector <<= 2;
303 error_sector &= ~(block_sectors - 1);
Tejun Heo83096eb2009-05-07 22:24:39 +0900304 good_bytes = (error_sector -
305 blk_rq_pos(SCpnt->request)) << 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (good_bytes < 0 || good_bytes >= this_count)
307 good_bytes = 0;
308 /*
309 * The SCSI specification allows for the value
310 * returned by READ CAPACITY to be up to 75 2K
311 * sectors past the last readable block.
312 * Therefore, if we hit a medium error within the
313 * last 75 2K sectors, we decrease the saved size
314 * value.
315 */
316 if (error_sector < get_capacity(cd->disk) &&
317 cd->capacity - error_sector < 4 * 75)
318 set_capacity(cd->disk, error_sector);
319 break;
320
321 case RECOVERED_ERROR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 good_bytes = this_count;
323 break;
324
325 default:
326 break;
327 }
328 }
329
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800330 return good_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500333static int sr_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700335 int block = 0, this_count, s_size;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500336 struct scsi_cd *cd;
337 struct scsi_cmnd *SCpnt;
338 struct scsi_device *sdp = q->queuedata;
339 int ret;
340
341 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
342 ret = scsi_setup_blk_pc_cmnd(sdp, rq);
343 goto out;
344 } else if (rq->cmd_type != REQ_TYPE_FS) {
345 ret = BLKPREP_KILL;
346 goto out;
347 }
348 ret = scsi_setup_fs_cmnd(sdp, rq);
349 if (ret != BLKPREP_OK)
350 goto out;
351 SCpnt = rq->special;
352 cd = scsi_cd(rq->rq_disk);
353
354 /* from here on until we're complete, any goto out
355 * is used for a killable error condition */
356 ret = BLKPREP_KILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 SCSI_LOG_HLQUEUE(1, printk("Doing sr request, dev = %s, block = %d\n",
359 cd->disk->disk_name, block));
360
361 if (!cd->device || !scsi_device_online(cd->device)) {
Tejun Heo83096eb2009-05-07 22:24:39 +0900362 SCSI_LOG_HLQUEUE(2, printk("Finishing %u sectors\n",
363 blk_rq_sectors(rq)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 SCSI_LOG_HLQUEUE(2, printk("Retry with 0x%p\n", SCpnt));
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500365 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367
368 if (cd->device->changed) {
369 /*
370 * quietly refuse to do anything to a changed disc until the
371 * changed bit has been reset
372 */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500373 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
376 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 * we do lazy blocksize switching (when reading XA sectors,
378 * see CDROMREADMODE2 ioctl)
379 */
380 s_size = cd->device->sector_size;
381 if (s_size > 2048) {
382 if (!in_interrupt())
383 sr_set_blocklength(cd, 2048);
384 else
385 printk("sr: can't switch blocksize: in interrupt\n");
386 }
387
388 if (s_size != 512 && s_size != 1024 && s_size != 2048) {
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400389 scmd_printk(KERN_ERR, SCpnt, "bad sector size %d\n", s_size);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500390 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500393 if (rq_data_dir(rq) == WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (!cd->device->writeable)
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500395 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 SCpnt->cmnd[0] = WRITE_10;
397 SCpnt->sc_data_direction = DMA_TO_DEVICE;
398 cd->cdi.media_written = 1;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500399 } else if (rq_data_dir(rq) == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 SCpnt->cmnd[0] = READ_10;
401 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
402 } else {
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500403 blk_dump_rq_flags(rq, "Unknown sr command");
404 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406
407 {
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200408 struct scatterlist *sg;
409 int i, size = 0, sg_count = scsi_sg_count(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200411 scsi_for_each_sg(SCpnt, sg, sg_count, i)
412 size += sg->length;
413
414 if (size != scsi_bufflen(SCpnt)) {
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400415 scmd_printk(KERN_ERR, SCpnt,
416 "mismatch count %d, bytes %d\n",
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200417 size, scsi_bufflen(SCpnt));
418 if (scsi_bufflen(SCpnt) > size)
419 SCpnt->sdb.length = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421 }
422
423 /*
424 * request doesn't start on hw block boundary, add scatter pads
425 */
Tejun Heo83096eb2009-05-07 22:24:39 +0900426 if (((unsigned int)blk_rq_pos(rq) % (s_size >> 9)) ||
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200427 (scsi_bufflen(SCpnt) % s_size)) {
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400428 scmd_printk(KERN_NOTICE, SCpnt, "unaligned transfer\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500429 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200432 this_count = (scsi_bufflen(SCpnt) >> 9) / (s_size >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434
Tejun Heo83096eb2009-05-07 22:24:39 +0900435 SCSI_LOG_HLQUEUE(2, printk("%s : %s %d/%u 512 byte blocks.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 cd->cdi.name,
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500437 (rq_data_dir(rq) == WRITE) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 "writing" : "reading",
Tejun Heo83096eb2009-05-07 22:24:39 +0900439 this_count, blk_rq_sectors(rq)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 SCpnt->cmnd[1] = 0;
Tejun Heo83096eb2009-05-07 22:24:39 +0900442 block = (unsigned int)blk_rq_pos(rq) / (s_size >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 if (this_count > 0xffff) {
445 this_count = 0xffff;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200446 SCpnt->sdb.length = this_count * s_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
449 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
450 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
451 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
452 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
453 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
454 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
455 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
456
457 /*
458 * We shouldn't disconnect in the middle of a sector, so with a dumb
459 * host adapter, it's safe to assume that we can at least transfer
460 * this many bytes between each connect / disconnect.
461 */
462 SCpnt->transfersize = cd->device->sector_size;
463 SCpnt->underflow = this_count << 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 SCpnt->allowed = MAX_RETRIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * This indicates that the command is ready from our end to be
468 * queued.
469 */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500470 ret = BLKPREP_OK;
471 out:
472 return scsi_prep_return(q, rq, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Al Viro40cc51b2008-03-02 10:41:28 -0500475static int sr_block_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200477 struct scsi_cd *cd;
Al Viro40cc51b2008-03-02 10:41:28 -0500478 int ret = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200480 mutex_lock(&sr_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200481 cd = scsi_cd_get(bdev->bd_disk);
Al Viro40cc51b2008-03-02 10:41:28 -0500482 if (cd) {
483 ret = cdrom_open(&cd->cdi, bdev, mode);
484 if (ret)
485 scsi_cd_put(cd);
486 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200487 mutex_unlock(&sr_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return ret;
489}
490
Al Viro40cc51b2008-03-02 10:41:28 -0500491static int sr_block_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Al Viro40cc51b2008-03-02 10:41:28 -0500493 struct scsi_cd *cd = scsi_cd(disk);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200494 mutex_lock(&sr_mutex);
Al Viro40cc51b2008-03-02 10:41:28 -0500495 cdrom_release(&cd->cdi, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 scsi_cd_put(cd);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200497 mutex_unlock(&sr_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 return 0;
499}
500
Al Viro40cc51b2008-03-02 10:41:28 -0500501static int sr_block_ioctl(struct block_device *bdev, fmode_t mode, unsigned cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 unsigned long arg)
503{
Al Viro40cc51b2008-03-02 10:41:28 -0500504 struct scsi_cd *cd = scsi_cd(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 struct scsi_device *sdev = cd->device;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800506 void __user *argp = (void __user *)arg;
507 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200509 mutex_lock(&sr_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200510
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800511 /*
512 * Send SCSI addressing ioctls directly to mid level, send other
513 * ioctls to cdrom/block level.
514 */
515 switch (cmd) {
516 case SCSI_IOCTL_GET_IDLUN:
517 case SCSI_IOCTL_GET_BUS_NUMBER:
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200518 ret = scsi_ioctl(sdev, cmd, argp);
519 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800521
Al Viro40cc51b2008-03-02 10:41:28 -0500522 ret = cdrom_ioctl(&cd->cdi, bdev, mode, cmd, arg);
Tejun Heo63972562007-01-02 17:41:04 +0900523 if (ret != -ENOSYS)
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200524 goto out;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800525
526 /*
527 * ENODEV means that we didn't recognise the ioctl, or that we
528 * cannot execute it in the current device state. In either
529 * case fall through to scsi_ioctl, which will return ENDOEV again
530 * if it doesn't recognise the ioctl
531 */
Al Viro83ff6fe2008-03-02 08:15:49 -0500532 ret = scsi_nonblockable_ioctl(sdev, cmd, argp,
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +0100533 (mode & FMODE_NDELAY) != 0);
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800534 if (ret != -ENODEV)
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200535 goto out;
536 ret = scsi_ioctl(sdev, cmd, argp);
537
538out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200539 mutex_unlock(&sr_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200540 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Tejun Heo93aae172010-12-16 17:52:17 +0100543static unsigned int sr_block_check_events(struct gendisk *disk,
544 unsigned int clearing)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 struct scsi_cd *cd = scsi_cd(disk);
Tejun Heo93aae172010-12-16 17:52:17 +0100547 return cdrom_check_events(&cd->cdi, clearing);
548}
549
550static int sr_block_revalidate_disk(struct gendisk *disk)
551{
552 struct scsi_cd *cd = scsi_cd(disk);
553 struct scsi_sense_hdr sshdr;
554
555 /* if the unit is not ready, nothing more to do */
556 if (scsi_test_unit_ready(cd->device, SR_TIMEOUT, MAX_RETRIES, &sshdr))
557 return 0;
558
559 sr_cd_check(&cd->cdi);
560 get_sectorsize(cd);
561 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700564static const struct block_device_operations sr_bdops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
566 .owner = THIS_MODULE,
Al Viro40cc51b2008-03-02 10:41:28 -0500567 .open = sr_block_open,
568 .release = sr_block_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200569 .ioctl = sr_block_ioctl,
Tejun Heo93aae172010-12-16 17:52:17 +0100570 .check_events = sr_block_check_events,
571 .revalidate_disk = sr_block_revalidate_disk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /*
573 * No compat_ioctl for now because sr_block_ioctl never
574 * seems to pass arbitary ioctls down to host drivers.
575 */
576};
577
578static int sr_open(struct cdrom_device_info *cdi, int purpose)
579{
580 struct scsi_cd *cd = cdi->handle;
581 struct scsi_device *sdev = cd->device;
582 int retval;
583
584 /*
585 * If the device is in error recovery, wait until it is done.
586 * If the device is offline, then disallow any access to it.
587 */
588 retval = -ENXIO;
589 if (!scsi_block_when_processing_errors(sdev))
590 goto error_out;
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return 0;
593
594error_out:
595 return retval;
596}
597
598static void sr_release(struct cdrom_device_info *cdi)
599{
600 struct scsi_cd *cd = cdi->handle;
601
602 if (cd->device->sector_size > 2048)
603 sr_set_blocklength(cd, 2048);
604
605}
606
607static int sr_probe(struct device *dev)
608{
609 struct scsi_device *sdev = to_scsi_device(dev);
610 struct gendisk *disk;
611 struct scsi_cd *cd;
612 int minor, error;
613
614 error = -ENODEV;
615 if (sdev->type != TYPE_ROM && sdev->type != TYPE_WORM)
616 goto fail;
617
618 error = -ENOMEM;
Jes Sorensen24669f752006-01-16 10:31:18 -0500619 cd = kzalloc(sizeof(*cd), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (!cd)
621 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 kref_init(&cd->kref);
624
625 disk = alloc_disk(1);
626 if (!disk)
627 goto fail_free;
628
629 spin_lock(&sr_index_lock);
630 minor = find_first_zero_bit(sr_index_bits, SR_DISKS);
631 if (minor == SR_DISKS) {
632 spin_unlock(&sr_index_lock);
633 error = -EBUSY;
634 goto fail_put;
635 }
636 __set_bit(minor, sr_index_bits);
637 spin_unlock(&sr_index_lock);
638
639 disk->major = SCSI_CDROM_MAJOR;
640 disk->first_minor = minor;
641 sprintf(disk->disk_name, "sr%d", minor);
642 disk->fops = &sr_bdops;
643 disk->flags = GENHD_FL_CD;
Tejun Heo93aae172010-12-16 17:52:17 +0100644 disk->events = DISK_EVENT_MEDIA_CHANGE | DISK_EVENT_EJECT_REQUEST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Jens Axboe242f9dc2008-09-14 05:55:09 -0700646 blk_queue_rq_timeout(sdev->request_queue, SR_TIMEOUT);
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 cd->device = sdev;
649 cd->disk = disk;
650 cd->driver = &sr_template;
651 cd->disk = disk;
652 cd->capacity = 0x1fffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 cd->device->changed = 1; /* force recheck CD type */
Tejun Heo93aae172010-12-16 17:52:17 +0100654 cd->media_present = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 cd->use = 1;
656 cd->readcd_known = 0;
657 cd->readcd_cdda = 0;
658
659 cd->cdi.ops = &sr_dops;
660 cd->cdi.handle = cd;
661 cd->cdi.mask = 0;
662 cd->cdi.capacity = 1;
663 sprintf(cd->cdi.name, "sr%d", minor);
664
665 sdev->sector_size = 2048; /* A guess, just in case */
666
667 /* FIXME: need to handle a get_capabilities failure properly ?? */
668 get_capabilities(cd);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500669 blk_queue_prep_rq(sdev->request_queue, sr_prep_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 sr_vendor_init(cd);
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 disk->driverfs_dev = &sdev->sdev_gendev;
673 set_capacity(disk, cd->capacity);
674 disk->private_data = &cd->driver;
675 disk->queue = sdev->request_queue;
676 cd->cdi.disk = disk;
677
678 if (register_cdrom(&cd->cdi))
679 goto fail_put;
680
681 dev_set_drvdata(dev, cd);
682 disk->flags |= GENHD_FL_REMOVABLE;
683 add_disk(disk);
684
James Bottomley9ccfc752005-10-02 11:45:08 -0500685 sdev_printk(KERN_DEBUG, sdev,
686 "Attached scsi CD-ROM %s\n", cd->cdi.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return 0;
688
689fail_put:
690 put_disk(disk);
691fail_free:
692 kfree(cd);
693fail:
694 return error;
695}
696
697
698static void get_sectorsize(struct scsi_cd *cd)
699{
700 unsigned char cmd[10];
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200701 unsigned char buffer[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 int the_result, retries = 3;
703 int sector_size;
Jens Axboe165125e2007-07-24 09:28:11 +0200704 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 do {
707 cmd[0] = READ_CAPACITY;
708 memset((void *) &cmd[1], 0, 9);
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200709 memset(buffer, 0, sizeof(buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 /* Do the command and wait.. */
James Bottomley820732b2005-06-12 22:21:29 -0500712 the_result = scsi_execute_req(cd->device, cmd, DMA_FROM_DEVICE,
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200713 buffer, sizeof(buffer), NULL,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900714 SR_TIMEOUT, MAX_RETRIES, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 retries--;
717
718 } while (the_result && retries);
719
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (the_result) {
722 cd->capacity = 0x1fffff;
723 sector_size = 2048; /* A guess, just in case */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 } else {
Tejun Heo59151362009-09-04 11:38:02 +0900725 long last_written;
726
727 cd->capacity = 1 + ((buffer[0] << 24) | (buffer[1] << 16) |
728 (buffer[2] << 8) | buffer[3]);
729 /*
730 * READ_CAPACITY doesn't return the correct size on
731 * certain UDF media. If last_written is larger, use
732 * it instead.
733 *
734 * http://bugzilla.kernel.org/show_bug.cgi?id=9668
735 */
736 if (!cdrom_get_last_written(&cd->cdi, &last_written))
737 cd->capacity = max_t(long, cd->capacity, last_written);
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 sector_size = (buffer[4] << 24) |
740 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
741 switch (sector_size) {
742 /*
743 * HP 4020i CD-Recorder reports 2340 byte sectors
744 * Philips CD-Writers report 2352 byte sectors
745 *
746 * Use 2k sectors for them..
747 */
748 case 0:
749 case 2340:
750 case 2352:
751 sector_size = 2048;
752 /* fall through */
753 case 2048:
754 cd->capacity *= 4;
755 /* fall through */
756 case 512:
757 break;
758 default:
759 printk("%s: unsupported sector size %d.\n",
760 cd->cdi.name, sector_size);
761 cd->capacity = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763
764 cd->device->sector_size = sector_size;
765
766 /*
767 * Add this so that we have the ability to correctly gauge
768 * what the device is capable of.
769 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 set_capacity(cd->disk, cd->capacity);
771 }
772
773 queue = cd->device->request_queue;
Martin K. Petersene1defc42009-05-22 17:17:49 -0400774 blk_queue_logical_block_size(queue, sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200776 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
779static void get_capabilities(struct scsi_cd *cd)
780{
781 unsigned char *buffer;
782 struct scsi_mode_data data;
James Bottomley820732b2005-06-12 22:21:29 -0500783 struct scsi_sense_hdr sshdr;
James Bottomley38582a62008-02-06 13:01:58 -0600784 int rc, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Arjan van de Ven0ad78202005-11-28 16:22:25 +0100786 static const char *loadmech[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 {
788 "caddy",
789 "tray",
790 "pop-up",
791 "",
792 "changer",
793 "cartridge changer",
794 "",
795 ""
796 };
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 /* allocate transfer buffer */
800 buffer = kmalloc(512, GFP_KERNEL | GFP_DMA);
801 if (!buffer) {
802 printk(KERN_ERR "sr: out of memory.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return;
804 }
805
James Bottomley38582a62008-02-06 13:01:58 -0600806 /* eat unit attentions */
Tejun Heo9f8a2c22010-12-08 20:57:40 +0100807 scsi_test_unit_ready(cd->device, SR_TIMEOUT, MAX_RETRIES, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 /* ask for mode page 0x2a */
810 rc = scsi_mode_sense(cd->device, 0, 0x2a, buffer, 128,
James Bottomley1cf72692005-08-28 11:27:01 -0500811 SR_TIMEOUT, 3, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 if (!scsi_status_is_good(rc)) {
814 /* failed, drive doesn't have capabilities mode page */
815 cd->cdi.speed = 1;
816 cd->cdi.mask |= (CDC_CD_R | CDC_CD_RW | CDC_DVD_R |
Chuck Ebbertbcc1e382006-01-11 23:58:40 -0500817 CDC_DVD | CDC_DVD_RAM |
818 CDC_SELECT_DISC | CDC_SELECT_SPEED |
819 CDC_MRW | CDC_MRW_W | CDC_RAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 kfree(buffer);
821 printk("%s: scsi-1 drive\n", cd->cdi.name);
822 return;
823 }
824
825 n = data.header_length + data.block_descriptor_length;
826 cd->cdi.speed = ((buffer[n + 8] << 8) + buffer[n + 9]) / 176;
827 cd->readcd_known = 1;
828 cd->readcd_cdda = buffer[n + 5] & 0x01;
829 /* print some capability bits */
830 printk("%s: scsi3-mmc drive: %dx/%dx %s%s%s%s%s%s\n", cd->cdi.name,
831 ((buffer[n + 14] << 8) + buffer[n + 15]) / 176,
832 cd->cdi.speed,
833 buffer[n + 3] & 0x01 ? "writer " : "", /* CD Writer */
834 buffer[n + 3] & 0x20 ? "dvd-ram " : "",
835 buffer[n + 2] & 0x02 ? "cd/rw " : "", /* can read rewriteable */
836 buffer[n + 4] & 0x20 ? "xa/form2 " : "", /* can read xa/from2 */
837 buffer[n + 5] & 0x01 ? "cdda " : "", /* can read audio data */
838 loadmech[buffer[n + 6] >> 5]);
839 if ((buffer[n + 6] >> 5) == 0)
840 /* caddy drives can't close tray... */
841 cd->cdi.mask |= CDC_CLOSE_TRAY;
842 if ((buffer[n + 2] & 0x8) == 0)
843 /* not a DVD drive */
844 cd->cdi.mask |= CDC_DVD;
845 if ((buffer[n + 3] & 0x20) == 0)
846 /* can't write DVD-RAM media */
847 cd->cdi.mask |= CDC_DVD_RAM;
848 if ((buffer[n + 3] & 0x10) == 0)
849 /* can't write DVD-R media */
850 cd->cdi.mask |= CDC_DVD_R;
851 if ((buffer[n + 3] & 0x2) == 0)
852 /* can't write CD-RW media */
853 cd->cdi.mask |= CDC_CD_RW;
854 if ((buffer[n + 3] & 0x1) == 0)
855 /* can't write CD-R media */
856 cd->cdi.mask |= CDC_CD_R;
857 if ((buffer[n + 6] & 0x8) == 0)
858 /* can't eject */
859 cd->cdi.mask |= CDC_OPEN_TRAY;
860
861 if ((buffer[n + 6] >> 5) == mechtype_individual_changer ||
862 (buffer[n + 6] >> 5) == mechtype_cartridge_changer)
863 cd->cdi.capacity =
864 cdrom_number_of_slots(&cd->cdi);
865 if (cd->cdi.capacity <= 1)
866 /* not a changer */
867 cd->cdi.mask |= CDC_SELECT_DISC;
868 /*else I don't think it can close its tray
869 cd->cdi.mask |= CDC_CLOSE_TRAY; */
870
871 /*
872 * if DVD-RAM, MRW-W or CD-RW, we are randomly writable
873 */
874 if ((cd->cdi.mask & (CDC_DVD_RAM | CDC_MRW_W | CDC_RAM | CDC_CD_RW)) !=
875 (CDC_DVD_RAM | CDC_MRW_W | CDC_RAM | CDC_CD_RW)) {
876 cd->device->writeable = 1;
877 }
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 kfree(buffer);
880}
881
882/*
883 * sr_packet() is the entry point for the generic commands generated
884 * by the Uniform CD-ROM layer.
885 */
886static int sr_packet(struct cdrom_device_info *cdi,
887 struct packet_command *cgc)
888{
Hans de Goede8e04d802010-10-01 14:20:08 -0700889 struct scsi_cd *cd = cdi->handle;
890 struct scsi_device *sdev = cd->device;
891
892 if (cgc->cmd[0] == GPCMD_READ_DISC_INFO && sdev->no_read_disc_info)
893 return -EDRIVE_CANT_DO_THIS;
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (cgc->timeout <= 0)
896 cgc->timeout = IOCTL_TIMEOUT;
897
Hans de Goede8e04d802010-10-01 14:20:08 -0700898 sr_do_ioctl(cd, cgc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 return cgc->stat;
901}
902
903/**
904 * sr_kref_release - Called to free the scsi_cd structure
905 * @kref: pointer to embedded kref
906 *
Arjan van de Ven0b950672006-01-11 13:16:10 +0100907 * sr_ref_mutex must be held entering this routine. Because it is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 * called on last put, you should always use the scsi_cd_get()
909 * scsi_cd_put() helpers which manipulate the semaphore directly
910 * and never do a direct kref_put().
911 **/
912static void sr_kref_release(struct kref *kref)
913{
914 struct scsi_cd *cd = container_of(kref, struct scsi_cd, kref);
915 struct gendisk *disk = cd->disk;
916
917 spin_lock(&sr_index_lock);
Tejun Heof331c022008-09-03 09:01:48 +0200918 clear_bit(MINOR(disk_devt(disk)), sr_index_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 spin_unlock(&sr_index_lock);
920
921 unregister_cdrom(&cd->cdi);
922
923 disk->private_data = NULL;
924
925 put_disk(disk);
926
927 kfree(cd);
928}
929
930static int sr_remove(struct device *dev)
931{
932 struct scsi_cd *cd = dev_get_drvdata(dev);
933
Hannes Reineckeb3912772009-06-18 09:57:18 +0200934 blk_queue_prep_rq(cd->device->request_queue, scsi_prep_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 del_gendisk(cd->disk);
936
Arjan van de Ven0b950672006-01-11 13:16:10 +0100937 mutex_lock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 kref_put(&cd->kref, sr_kref_release);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100939 mutex_unlock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 return 0;
942}
943
944static int __init init_sr(void)
945{
946 int rc;
947
948 rc = register_blkdev(SCSI_CDROM_MAJOR, "sr");
949 if (rc)
950 return rc;
Akinobu Mitada3962f2007-06-26 00:39:33 +0900951 rc = scsi_register_driver(&sr_template.gendrv);
952 if (rc)
953 unregister_blkdev(SCSI_CDROM_MAJOR, "sr");
954
955 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
958static void __exit exit_sr(void)
959{
960 scsi_unregister_driver(&sr_template.gendrv);
961 unregister_blkdev(SCSI_CDROM_MAJOR, "sr");
962}
963
964module_init(init_sr);
965module_exit(exit_sr);
966MODULE_LICENSE("GPL");