blob: cb85296d53842ae1bea20b88aa492d021412853d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sd.c Copyright (C) 1992 Drew Eckhardt
3 * Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale
4 *
5 * Linux scsi disk driver
6 * Initial versions: Drew Eckhardt
7 * Subsequent revisions: Eric Youngdale
8 * Modification history:
9 * - Drew Eckhardt <drew@colorado.edu> original
10 * - Eric Youngdale <eric@andante.org> add scatter-gather, multiple
11 * outstanding request, and other enhancements.
12 * Support loadable low-level scsi drivers.
13 * - Jirka Hanika <geo@ff.cuni.cz> support more scsi disks using
14 * eight major numbers.
15 * - Richard Gooch <rgooch@atnf.csiro.au> support devfs.
16 * - Torben Mathiasen <tmm@image.dk> Resource allocation fixes in
17 * sd_init and cleanups.
18 * - Alex Davis <letmein@erols.com> Fix problem where partition info
19 * not being read in sd_open. Fix problem where removable media
20 * could be ejected after sd_open.
21 * - Douglas Gilbert <dgilbert@interlog.com> cleanup for lk 2.5.x
22 * - Badari Pulavarty <pbadari@us.ibm.com>, Matthew Wilcox
23 * <willy@debian.org>, Kurt Garloff <garloff@suse.de>:
24 * Support 32k/1M disks.
25 *
26 * Logging policy (needs CONFIG_SCSI_LOGGING defined):
27 * - setting up transfer: SCSI_LOG_HLQUEUE levels 1 and 2
28 * - end of transfer (bh + scsi_lib): SCSI_LOG_HLCOMPLETE level 1
29 * - entering sd_ioctl: SCSI_LOG_IOCTL level 1
30 * - entering other commands: SCSI_LOG_HLQUEUE level 3
31 * Note: when the logging level is set by the user, it must be greater
32 * than the level indicated above to trigger output.
33 */
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#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/genhd.h>
41#include <linux/hdreg.h>
42#include <linux/errno.h>
43#include <linux/idr.h>
44#include <linux/interrupt.h>
45#include <linux/init.h>
46#include <linux/blkdev.h>
47#include <linux/blkpg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/delay.h>
Arjan van de Ven0b950672006-01-11 13:16:10 +010049#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/uaccess.h>
51
52#include <scsi/scsi.h>
53#include <scsi/scsi_cmnd.h>
54#include <scsi/scsi_dbg.h>
55#include <scsi/scsi_device.h>
56#include <scsi/scsi_driver.h>
57#include <scsi/scsi_eh.h>
58#include <scsi/scsi_host.h>
59#include <scsi/scsi_ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <scsi/scsicam.h>
Martin K. Petersene73aec82007-02-27 22:40:55 -050061#include <scsi/sd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#include "scsi_logging.h"
64
Rene Hermanf018fa52006-03-08 00:14:20 -080065MODULE_AUTHOR("Eric Youngdale");
66MODULE_DESCRIPTION("SCSI disk (sd) driver");
67MODULE_LICENSE("GPL");
68
69MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR);
70MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR);
71MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR);
72MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR);
73MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR);
74MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR);
75MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR);
76MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR);
77MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR);
78MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR);
79MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR);
80MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR);
81MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR);
82MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR);
83MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR);
84MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR);
Michael Tokarevd7b8bcb2006-10-27 16:02:37 +040085MODULE_ALIAS_SCSI_DEVICE(TYPE_DISK);
86MODULE_ALIAS_SCSI_DEVICE(TYPE_MOD);
87MODULE_ALIAS_SCSI_DEVICE(TYPE_RBC);
Rene Hermanf018fa52006-03-08 00:14:20 -080088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static DEFINE_IDR(sd_index_idr);
90static DEFINE_SPINLOCK(sd_index_lock);
91
92/* This semaphore is used to mediate the 0->1 reference get in the
93 * face of object destruction (i.e. we can't allow a get on an
94 * object after last put) */
Arjan van de Ven0b950672006-01-11 13:16:10 +010095static DEFINE_MUTEX(sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
James Bottomley6bdaa1f2006-03-18 14:14:21 -060097static const char *sd_cache_types[] = {
98 "write through", "none", "write back",
99 "write back, no read (daft)"
100};
101
102static ssize_t sd_store_cache_type(struct class_device *cdev, const char *buf,
103 size_t count)
104{
105 int i, ct = -1, rcd, wce, sp;
106 struct scsi_disk *sdkp = to_scsi_disk(cdev);
107 struct scsi_device *sdp = sdkp->device;
108 char buffer[64];
109 char *buffer_data;
110 struct scsi_mode_data data;
111 struct scsi_sense_hdr sshdr;
112 int len;
113
114 if (sdp->type != TYPE_DISK)
115 /* no cache control on RBC devices; theoretically they
116 * can do it, but there's probably so many exceptions
117 * it's not worth the risk */
118 return -EINVAL;
119
Tobias Klauser6391a112006-06-08 22:23:48 -0700120 for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600121 const int len = strlen(sd_cache_types[i]);
122 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
123 buf[len] == '\n') {
124 ct = i;
125 break;
126 }
127 }
128 if (ct < 0)
129 return -EINVAL;
130 rcd = ct & 0x01 ? 1 : 0;
131 wce = ct & 0x02 ? 1 : 0;
132 if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
133 SD_MAX_RETRIES, &data, NULL))
134 return -EINVAL;
Andrew Mortona9312fb2006-03-25 03:08:30 -0800135 len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600136 data.block_descriptor_length);
137 buffer_data = buffer + data.header_length +
138 data.block_descriptor_length;
139 buffer_data[2] &= ~0x05;
140 buffer_data[2] |= wce << 2 | rcd;
141 sp = buffer_data[0] & 0x80 ? 1 : 0;
142
143 if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
144 SD_MAX_RETRIES, &data, &sshdr)) {
145 if (scsi_sense_valid(&sshdr))
Martin K. Petersene73aec82007-02-27 22:40:55 -0500146 sd_print_sense_hdr(sdkp, &sshdr);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600147 return -EINVAL;
148 }
149 sd_revalidate_disk(sdkp->disk);
150 return count;
151}
152
Tejun Heoc3c94c52007-03-21 00:13:59 +0900153static ssize_t sd_store_manage_start_stop(struct class_device *cdev,
154 const char *buf, size_t count)
155{
156 struct scsi_disk *sdkp = to_scsi_disk(cdev);
157 struct scsi_device *sdp = sdkp->device;
158
159 if (!capable(CAP_SYS_ADMIN))
160 return -EACCES;
161
162 sdp->manage_start_stop = simple_strtoul(buf, NULL, 10);
163
164 return count;
165}
166
Brian Kinga144c5a2006-06-27 11:10:31 -0500167static ssize_t sd_store_allow_restart(struct class_device *cdev, const char *buf,
168 size_t count)
169{
170 struct scsi_disk *sdkp = to_scsi_disk(cdev);
171 struct scsi_device *sdp = sdkp->device;
172
173 if (!capable(CAP_SYS_ADMIN))
174 return -EACCES;
175
176 if (sdp->type != TYPE_DISK)
177 return -EINVAL;
178
179 sdp->allow_restart = simple_strtoul(buf, NULL, 10);
180
181 return count;
182}
183
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600184static ssize_t sd_show_cache_type(struct class_device *cdev, char *buf)
185{
186 struct scsi_disk *sdkp = to_scsi_disk(cdev);
187 int ct = sdkp->RCD + 2*sdkp->WCE;
188
189 return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
190}
191
192static ssize_t sd_show_fua(struct class_device *cdev, char *buf)
193{
194 struct scsi_disk *sdkp = to_scsi_disk(cdev);
195
196 return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
197}
198
Tejun Heoc3c94c52007-03-21 00:13:59 +0900199static ssize_t sd_show_manage_start_stop(struct class_device *cdev, char *buf)
200{
201 struct scsi_disk *sdkp = to_scsi_disk(cdev);
202 struct scsi_device *sdp = sdkp->device;
203
204 return snprintf(buf, 20, "%u\n", sdp->manage_start_stop);
205}
206
Brian Kinga144c5a2006-06-27 11:10:31 -0500207static ssize_t sd_show_allow_restart(struct class_device *cdev, char *buf)
208{
209 struct scsi_disk *sdkp = to_scsi_disk(cdev);
210
211 return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
212}
213
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600214static struct class_device_attribute sd_disk_attrs[] = {
215 __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
216 sd_store_cache_type),
217 __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
Brian Kinga144c5a2006-06-27 11:10:31 -0500218 __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
219 sd_store_allow_restart),
Tejun Heoc3c94c52007-03-21 00:13:59 +0900220 __ATTR(manage_start_stop, S_IRUGO|S_IWUSR, sd_show_manage_start_stop,
221 sd_store_manage_start_stop),
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600222 __ATTR_NULL,
223};
224
225static struct class sd_disk_class = {
226 .name = "scsi_disk",
227 .owner = THIS_MODULE,
228 .release = scsi_disk_release,
229 .class_dev_attrs = sd_disk_attrs,
230};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232static struct scsi_driver sd_template = {
233 .owner = THIS_MODULE,
234 .gendrv = {
235 .name = "sd",
236 .probe = sd_probe,
237 .remove = sd_remove,
Tejun Heoc3c94c52007-03-21 00:13:59 +0900238 .suspend = sd_suspend,
239 .resume = sd_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 .shutdown = sd_shutdown,
241 },
242 .rescan = sd_rescan,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243};
244
245/*
246 * Device no to disk mapping:
247 *
248 * major disc2 disc p1
249 * |............|.............|....|....| <- dev_t
250 * 31 20 19 8 7 4 3 0
251 *
252 * Inside a major, we have 16k disks, however mapped non-
253 * contiguously. The first 16 disks are for major0, the next
254 * ones with major1, ... Disk 256 is for major0 again, disk 272
255 * for major1, ...
256 * As we stay compatible with our numbering scheme, we can reuse
257 * the well-know SCSI majors 8, 65--71, 136--143.
258 */
259static int sd_major(int major_idx)
260{
261 switch (major_idx) {
262 case 0:
263 return SCSI_DISK0_MAJOR;
264 case 1 ... 7:
265 return SCSI_DISK1_MAJOR + major_idx - 1;
266 case 8 ... 15:
267 return SCSI_DISK8_MAJOR + major_idx - 8;
268 default:
269 BUG();
270 return 0; /* shut up gcc */
271 }
272}
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static inline struct scsi_disk *scsi_disk(struct gendisk *disk)
275{
276 return container_of(disk->private_data, struct scsi_disk, driver);
277}
278
Alan Stern39b7f1e2005-11-04 14:44:41 -0500279static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 struct scsi_disk *sdkp = NULL;
282
Alan Stern39b7f1e2005-11-04 14:44:41 -0500283 if (disk->private_data) {
284 sdkp = scsi_disk(disk);
285 if (scsi_device_get(sdkp->device) == 0)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600286 class_device_get(&sdkp->cdev);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500287 else
288 sdkp = NULL;
289 }
290 return sdkp;
291}
292
293static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
294{
295 struct scsi_disk *sdkp;
296
Arjan van de Ven0b950672006-01-11 13:16:10 +0100297 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500298 sdkp = __scsi_disk_get(disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100299 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return sdkp;
Alan Stern39b7f1e2005-11-04 14:44:41 -0500301}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Alan Stern39b7f1e2005-11-04 14:44:41 -0500303static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
304{
305 struct scsi_disk *sdkp;
306
Arjan van de Ven0b950672006-01-11 13:16:10 +0100307 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500308 sdkp = dev_get_drvdata(dev);
309 if (sdkp)
310 sdkp = __scsi_disk_get(sdkp->disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100311 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return sdkp;
313}
314
315static void scsi_disk_put(struct scsi_disk *sdkp)
316{
317 struct scsi_device *sdev = sdkp->device;
318
Arjan van de Ven0b950672006-01-11 13:16:10 +0100319 mutex_lock(&sd_ref_mutex);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600320 class_device_put(&sdkp->cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 scsi_device_put(sdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100322 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325/**
326 * sd_init_command - build a scsi (read or write) command from
327 * information in the request structure.
328 * @SCpnt: pointer to mid-level's per scsi command structure that
329 * contains request and into which the scsi command is written
330 *
331 * Returns 1 if successful and 0 if error (or cannot be done now).
332 **/
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500333static int sd_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500335 struct scsi_cmnd *SCpnt;
336 struct scsi_device *sdp = q->queuedata;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100337 struct gendisk *disk = rq->rq_disk;
338 sector_t block = rq->sector;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500339 unsigned int this_count = rq->nr_sectors;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100340 unsigned int timeout = sdp->timeout;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500341 int ret;
342
343 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
344 ret = scsi_setup_blk_pc_cmnd(sdp, rq);
345 goto out;
346 } else if (rq->cmd_type != REQ_TYPE_FS) {
347 ret = BLKPREP_KILL;
348 goto out;
349 }
350 ret = scsi_setup_fs_cmnd(sdp, rq);
351 if (ret != BLKPREP_OK)
352 goto out;
353 SCpnt = rq->special;
354
355 /* from here on until we're complete, any goto out
356 * is used for a killable error condition */
357 ret = BLKPREP_KILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500359 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
360 "sd_init_command: block=%llu, "
361 "count=%d\n",
362 (unsigned long long)block,
363 this_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 if (!sdp || !scsi_device_online(sdp) ||
366 block + rq->nr_sectors > get_capacity(disk)) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500367 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
368 "Finishing %ld sectors\n",
369 rq->nr_sectors));
370 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
371 "Retry with 0x%p\n", SCpnt));
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500372 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
375 if (sdp->changed) {
376 /*
377 * quietly refuse to do anything to a changed disc until
378 * the changed bit has been reset
379 */
380 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500381 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500383
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500384 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, "block=%llu\n",
385 (unsigned long long)block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 /*
388 * If we have a 1K hardware sectorsize, prevent access to single
389 * 512 byte sectors. In theory we could handle this - in fact
390 * the scsi cdrom driver must be able to handle this because
391 * we typically use 1K blocksizes, and cdroms typically have
392 * 2K hardware sectorsizes. Of course, things are simpler
393 * with the cdrom, since it is read-only. For performance
394 * reasons, the filesystems should be able to handle this
395 * and not force the scsi disk driver to use bounce buffers
396 * for this.
397 */
398 if (sdp->sector_size == 1024) {
399 if ((block & 1) || (rq->nr_sectors & 1)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500400 scmd_printk(KERN_ERR, SCpnt,
401 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500402 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 } else {
404 block = block >> 1;
405 this_count = this_count >> 1;
406 }
407 }
408 if (sdp->sector_size == 2048) {
409 if ((block & 3) || (rq->nr_sectors & 3)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500410 scmd_printk(KERN_ERR, SCpnt,
411 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500412 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 } else {
414 block = block >> 2;
415 this_count = this_count >> 2;
416 }
417 }
418 if (sdp->sector_size == 4096) {
419 if ((block & 7) || (rq->nr_sectors & 7)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500420 scmd_printk(KERN_ERR, SCpnt,
421 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500422 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 } else {
424 block = block >> 3;
425 this_count = this_count >> 3;
426 }
427 }
428 if (rq_data_dir(rq) == WRITE) {
429 if (!sdp->writeable) {
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500430 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432 SCpnt->cmnd[0] = WRITE_6;
433 SCpnt->sc_data_direction = DMA_TO_DEVICE;
434 } else if (rq_data_dir(rq) == READ) {
435 SCpnt->cmnd[0] = READ_6;
436 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
437 } else {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500438 scmd_printk(KERN_ERR, SCpnt, "Unknown command %x\n", rq->cmd_flags);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500439 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500442 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
443 "%s %d/%ld 512 byte blocks.\n",
444 (rq_data_dir(rq) == WRITE) ?
445 "writing" : "reading", this_count,
446 rq->nr_sectors));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 SCpnt->cmnd[1] = 0;
449
450 if (block > 0xffffffff) {
451 SCpnt->cmnd[0] += READ_16 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100452 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
454 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
455 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
456 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
457 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
458 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
459 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
460 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
461 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
462 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
463 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
464 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
465 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
466 } else if ((this_count > 0xff) || (block > 0x1fffff) ||
467 SCpnt->device->use_10_for_rw) {
468 if (this_count > 0xffff)
469 this_count = 0xffff;
470
471 SCpnt->cmnd[0] += READ_10 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100472 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
474 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
475 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
476 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
477 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
478 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
479 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
480 } else {
Tejun Heo007365a2006-01-06 09:53:52 +0100481 if (unlikely(blk_fua_rq(rq))) {
482 /*
483 * This happens only if this drive failed
484 * 10byte rw command with ILLEGAL_REQUEST
485 * during operation and thus turned off
486 * use_10_for_rw.
487 */
Martin K. Petersene73aec82007-02-27 22:40:55 -0500488 scmd_printk(KERN_ERR, SCpnt,
489 "FUA write on READ/WRITE(6) drive\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500490 goto out;
Tejun Heo007365a2006-01-06 09:53:52 +0100491 }
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
494 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
495 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
496 SCpnt->cmnd[4] = (unsigned char) this_count;
497 SCpnt->cmnd[5] = 0;
498 }
Christoph Hellwig631c2282006-07-08 20:42:15 +0200499 SCpnt->request_bufflen = this_count * sdp->sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 /*
502 * We shouldn't disconnect in the middle of a sector, so with a dumb
503 * host adapter, it's safe to assume that we can at least transfer
504 * this many bytes between each connect / disconnect.
505 */
506 SCpnt->transfersize = sdp->sector_size;
507 SCpnt->underflow = this_count << 9;
508 SCpnt->allowed = SD_MAX_RETRIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 SCpnt->timeout_per_command = timeout;
510
511 /*
Ingo Molnarac405322008-01-02 17:25:34 +0100512 * This is the completion routine we use. This is matched in terms
513 * of capability to this function.
514 */
515 SCpnt->done = sd_rw_intr;
516
517 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 * This indicates that the command is ready from our end to be
519 * queued.
520 */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500521 ret = BLKPREP_OK;
522 out:
523 return scsi_prep_return(q, rq, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
526/**
527 * sd_open - open a scsi disk device
528 * @inode: only i_rdev member may be used
529 * @filp: only f_mode and f_flags may be used
530 *
531 * Returns 0 if successful. Returns a negated errno value in case
532 * of error.
533 *
534 * Note: This can be called from a user context (e.g. fsck(1) )
535 * or from within the kernel (e.g. as a result of a mount(1) ).
536 * In the latter case @inode and @filp carry an abridged amount
537 * of information as noted above.
538 **/
539static int sd_open(struct inode *inode, struct file *filp)
540{
541 struct gendisk *disk = inode->i_bdev->bd_disk;
542 struct scsi_disk *sdkp;
543 struct scsi_device *sdev;
544 int retval;
545
546 if (!(sdkp = scsi_disk_get(disk)))
547 return -ENXIO;
548
549
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500550 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_open\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 sdev = sdkp->device;
553
554 /*
555 * If the device is in error recovery, wait until it is done.
556 * If the device is offline, then disallow any access to it.
557 */
558 retval = -ENXIO;
559 if (!scsi_block_when_processing_errors(sdev))
560 goto error_out;
561
562 if (sdev->removable || sdkp->write_prot)
563 check_disk_change(inode->i_bdev);
564
565 /*
566 * If the drive is empty, just let the open fail.
567 */
568 retval = -ENOMEDIUM;
569 if (sdev->removable && !sdkp->media_present &&
570 !(filp->f_flags & O_NDELAY))
571 goto error_out;
572
573 /*
574 * If the device has the write protect tab set, have the open fail
575 * if the user expects to be able to write to the thing.
576 */
577 retval = -EROFS;
578 if (sdkp->write_prot && (filp->f_mode & FMODE_WRITE))
579 goto error_out;
580
581 /*
582 * It is possible that the disk changing stuff resulted in
583 * the device being taken offline. If this is the case,
584 * report this to the user, and don't pretend that the
585 * open actually succeeded.
586 */
587 retval = -ENXIO;
588 if (!scsi_device_online(sdev))
589 goto error_out;
590
591 if (!sdkp->openers++ && sdev->removable) {
592 if (scsi_block_when_processing_errors(sdev))
593 scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
594 }
595
596 return 0;
597
598error_out:
599 scsi_disk_put(sdkp);
600 return retval;
601}
602
603/**
604 * sd_release - invoked when the (last) close(2) is called on this
605 * scsi disk.
606 * @inode: only i_rdev member may be used
607 * @filp: only f_mode and f_flags may be used
608 *
609 * Returns 0.
610 *
611 * Note: may block (uninterruptible) if error recovery is underway
612 * on this disk.
613 **/
614static int sd_release(struct inode *inode, struct file *filp)
615{
616 struct gendisk *disk = inode->i_bdev->bd_disk;
617 struct scsi_disk *sdkp = scsi_disk(disk);
618 struct scsi_device *sdev = sdkp->device;
619
James Bottomley56937f72007-03-11 12:25:33 -0500620 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_release\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 if (!--sdkp->openers && sdev->removable) {
623 if (scsi_block_when_processing_errors(sdev))
624 scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
625 }
626
627 /*
628 * XXX and what if there are packets in flight and this close()
629 * XXX is followed by a "rmmod sd_mod"?
630 */
631 scsi_disk_put(sdkp);
632 return 0;
633}
634
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800635static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
637 struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
638 struct scsi_device *sdp = sdkp->device;
639 struct Scsi_Host *host = sdp->host;
640 int diskinfo[4];
641
642 /* default to most commonly used values */
643 diskinfo[0] = 0x40; /* 1 << 6 */
644 diskinfo[1] = 0x20; /* 1 << 5 */
645 diskinfo[2] = sdkp->capacity >> 11;
646
647 /* override with calculated, extended default, or driver values */
648 if (host->hostt->bios_param)
649 host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
650 else
651 scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
652
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800653 geo->heads = diskinfo[0];
654 geo->sectors = diskinfo[1];
655 geo->cylinders = diskinfo[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return 0;
657}
658
659/**
660 * sd_ioctl - process an ioctl
661 * @inode: only i_rdev/i_bdev members may be used
662 * @filp: only f_mode and f_flags may be used
663 * @cmd: ioctl command number
664 * @arg: this is third argument given to ioctl(2) system call.
665 * Often contains a pointer.
666 *
667 * Returns 0 if successful (some ioctls return postive numbers on
668 * success as well). Returns a negated errno value in case of error.
669 *
670 * Note: most ioctls are forward onto the block subsystem or further
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200671 * down in the scsi subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 **/
673static int sd_ioctl(struct inode * inode, struct file * filp,
674 unsigned int cmd, unsigned long arg)
675{
676 struct block_device *bdev = inode->i_bdev;
677 struct gendisk *disk = bdev->bd_disk;
678 struct scsi_device *sdp = scsi_disk(disk)->device;
679 void __user *p = (void __user *)arg;
680 int error;
681
682 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
683 disk->disk_name, cmd));
684
685 /*
686 * If we are in the middle of error recovery, don't let anyone
687 * else try and use this device. Also, if error recovery fails, it
688 * may try and take the device offline, in which case all further
689 * access to the device is prohibited.
690 */
691 error = scsi_nonblockable_ioctl(sdp, cmd, p, filp);
692 if (!scsi_block_when_processing_errors(sdp) || !error)
693 return error;
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /*
696 * Send SCSI addressing ioctls directly to mid level, send other
697 * ioctls to block level and then onto mid level if they can't be
698 * resolved.
699 */
700 switch (cmd) {
701 case SCSI_IOCTL_GET_IDLUN:
702 case SCSI_IOCTL_GET_BUS_NUMBER:
703 return scsi_ioctl(sdp, cmd, p);
704 default:
FUJITA Tomonori45e79a32007-07-09 12:39:20 +0200705 error = scsi_cmd_ioctl(filp, disk->queue, disk, cmd, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (error != -ENOTTY)
707 return error;
708 }
709 return scsi_ioctl(sdp, cmd, p);
710}
711
712static void set_media_not_present(struct scsi_disk *sdkp)
713{
714 sdkp->media_present = 0;
715 sdkp->capacity = 0;
716 sdkp->device->changed = 1;
717}
718
719/**
720 * sd_media_changed - check if our medium changed
721 * @disk: kernel device descriptor
722 *
723 * Returns 0 if not applicable or no change; 1 if change
724 *
725 * Note: this function is invoked from the block subsystem.
726 **/
727static int sd_media_changed(struct gendisk *disk)
728{
729 struct scsi_disk *sdkp = scsi_disk(disk);
730 struct scsi_device *sdp = sdkp->device;
731 int retval;
732
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500733 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_media_changed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 if (!sdp->removable)
736 return 0;
737
738 /*
739 * If the device is offline, don't send any commands - just pretend as
740 * if the command failed. If the device ever comes back online, we
741 * can deal with it then. It is only because of unrecoverable errors
742 * that we would ever take a device offline in the first place.
743 */
744 if (!scsi_device_online(sdp))
745 goto not_present;
746
747 /*
748 * Using TEST_UNIT_READY enables differentiation between drive with
749 * no cartridge loaded - NOT READY, drive with changed cartridge -
750 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
751 *
752 * Drives that auto spin down. eg iomega jaz 1G, will be started
753 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
754 * sd_revalidate() is called.
755 */
756 retval = -ENODEV;
757 if (scsi_block_when_processing_errors(sdp))
758 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES);
759
760 /*
761 * Unable to test, unit probably not ready. This usually
762 * means there is no disc in the drive. Mark as changed,
763 * and we will figure it out later once the drive is
764 * available again.
765 */
766 if (retval)
767 goto not_present;
768
769 /*
770 * For removable scsi disk we have to recognise the presence
771 * of a disk in the drive. This is kept in the struct scsi_disk
772 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
773 */
774 sdkp->media_present = 1;
775
776 retval = sdp->changed;
777 sdp->changed = 0;
778
779 return retval;
780
781not_present:
782 set_media_not_present(sdkp);
783 return 1;
784}
785
Martin K. Petersene73aec82007-02-27 22:40:55 -0500786static int sd_sync_cache(struct scsi_disk *sdkp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 int retries, res;
Martin K. Petersene73aec82007-02-27 22:40:55 -0500789 struct scsi_device *sdp = sdkp->device;
James Bottomleyea73a9f2005-08-28 11:33:52 -0500790 struct scsi_sense_hdr sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 if (!scsi_device_online(sdp))
793 return -ENODEV;
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 for (retries = 3; retries > 0; --retries) {
797 unsigned char cmd[10] = { 0 };
798
799 cmd[0] = SYNCHRONIZE_CACHE;
800 /*
801 * Leave the rest of the command zero to indicate
802 * flush everything.
803 */
James Bottomleyea73a9f2005-08-28 11:33:52 -0500804 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
805 SD_TIMEOUT, SD_MAX_RETRIES);
806 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 break;
808 }
809
Martin K. Petersene73aec82007-02-27 22:40:55 -0500810 if (res) {
811 sd_print_result(sdkp, res);
812 if (driver_byte(res) & DRIVER_SENSE)
813 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
Tejun Heo37210502007-03-21 00:07:18 +0900816 if (res)
817 return -EIO;
818 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
Jens Axboe165125e2007-07-24 09:28:11 +0200821static void sd_prepare_flush(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500823 memset(rq->cmd, 0, sizeof(rq->cmd));
Jens Axboe4aff5e22006-08-10 08:44:47 +0200824 rq->cmd_type = REQ_TYPE_BLOCK_PC;
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500825 rq->timeout = SD_TIMEOUT;
826 rq->cmd[0] = SYNCHRONIZE_CACHE;
Tejun Heo461d4e92006-01-06 09:52:55 +0100827 rq->cmd_len = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
830static void sd_rescan(struct device *dev)
831{
Alan Stern39b7f1e2005-11-04 14:44:41 -0500832 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
833
834 if (sdkp) {
835 sd_revalidate_disk(sdkp->disk);
836 scsi_disk_put(sdkp);
837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
840
841#ifdef CONFIG_COMPAT
842/*
843 * This gets directly called from VFS. When the ioctl
844 * is not recognized we go back to the other translation paths.
845 */
846static long sd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
847{
Josef Sipek7ac62072006-12-08 02:37:37 -0800848 struct block_device *bdev = file->f_path.dentry->d_inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 struct gendisk *disk = bdev->bd_disk;
850 struct scsi_device *sdev = scsi_disk(disk)->device;
851
852 /*
853 * If we are in the middle of error recovery, don't let anyone
854 * else try and use this device. Also, if error recovery fails, it
855 * may try and take the device offline, in which case all further
856 * access to the device is prohibited.
857 */
858 if (!scsi_block_when_processing_errors(sdev))
859 return -ENODEV;
860
861 if (sdev->host->hostt->compat_ioctl) {
862 int ret;
863
864 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
865
866 return ret;
867 }
868
869 /*
870 * Let the static ioctl translation table take care of it.
871 */
872 return -ENOIOCTLCMD;
873}
874#endif
875
876static struct block_device_operations sd_fops = {
877 .owner = THIS_MODULE,
878 .open = sd_open,
879 .release = sd_release,
880 .ioctl = sd_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800881 .getgeo = sd_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882#ifdef CONFIG_COMPAT
883 .compat_ioctl = sd_compat_ioctl,
884#endif
885 .media_changed = sd_media_changed,
886 .revalidate_disk = sd_revalidate_disk,
887};
888
889/**
Ingo Molnarac405322008-01-02 17:25:34 +0100890 * sd_rw_intr - bottom half handler: called when the lower level
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 * driver has completed (successfully or otherwise) a scsi command.
892 * @SCpnt: mid-level's per command structure.
893 *
894 * Note: potentially run from within an ISR. Must not block.
895 **/
Ingo Molnarac405322008-01-02 17:25:34 +0100896static void sd_rw_intr(struct scsi_cmnd * SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 int result = SCpnt->result;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700899 unsigned int xfer_size = SCpnt->request_bufflen;
900 unsigned int good_bytes = result ? 0 : xfer_size;
901 u64 start_lba = SCpnt->request->sector;
902 u64 bad_lba;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 struct scsi_sense_hdr sshdr;
904 int sense_valid = 0;
905 int sense_deferred = 0;
906 int info_valid;
907
908 if (result) {
909 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
910 if (sense_valid)
911 sense_deferred = scsi_sense_is_deferred(&sshdr);
912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913#ifdef CONFIG_SCSI_LOGGING
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500914 SCSI_LOG_HLCOMPLETE(1, scsi_print_result(SCpnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (sense_valid) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500916 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, SCpnt,
Ingo Molnarac405322008-01-02 17:25:34 +0100917 "sd_rw_intr: sb[respc,sk,asc,"
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500918 "ascq]=%x,%x,%x,%x\n",
919 sshdr.response_code,
920 sshdr.sense_key, sshdr.asc,
921 sshdr.ascq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923#endif
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700924 if (driver_byte(result) != DRIVER_SENSE &&
925 (!sense_valid || sense_deferred))
926 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700928 switch (sshdr.sense_key) {
929 case HARDWARE_ERROR:
930 case MEDIUM_ERROR:
931 if (!blk_fs_request(SCpnt->request))
932 goto out;
933 info_valid = scsi_get_sense_info_fld(SCpnt->sense_buffer,
934 SCSI_SENSE_BUFFERSIZE,
935 &bad_lba);
936 if (!info_valid)
937 goto out;
938 if (xfer_size <= SCpnt->device->sector_size)
939 goto out;
940 switch (SCpnt->device->sector_size) {
941 case 256:
942 start_lba <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700944 case 512:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700946 case 1024:
947 start_lba >>= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700949 case 2048:
950 start_lba >>= 2;
951 break;
952 case 4096:
953 start_lba >>= 3;
954 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 default:
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700956 /* Print something here with limiting frequency. */
957 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 break;
959 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700960 /* This computation should always be done in terms of
961 * the resolution of the device's medium.
962 */
963 good_bytes = (bad_lba - start_lba)*SCpnt->device->sector_size;
964 break;
965 case RECOVERED_ERROR:
966 case NO_SENSE:
967 /* Inform the user, but make sure that it's not treated
968 * as a hard error.
969 */
970 scsi_print_sense("sd", SCpnt);
971 SCpnt->result = 0;
972 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
973 good_bytes = xfer_size;
974 break;
975 case ILLEGAL_REQUEST:
976 if (SCpnt->device->use_10_for_rw &&
977 (SCpnt->cmnd[0] == READ_10 ||
978 SCpnt->cmnd[0] == WRITE_10))
979 SCpnt->device->use_10_for_rw = 0;
980 if (SCpnt->device->use_10_for_ms &&
981 (SCpnt->cmnd[0] == MODE_SENSE_10 ||
982 SCpnt->cmnd[0] == MODE_SELECT_10))
983 SCpnt->device->use_10_for_ms = 0;
984 break;
985 default:
986 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700988 out:
Ingo Molnarac405322008-01-02 17:25:34 +0100989 scsi_io_completion(SCpnt, good_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
James Bottomleyea73a9f2005-08-28 11:33:52 -0500992static int media_not_present(struct scsi_disk *sdkp,
993 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
James Bottomleyea73a9f2005-08-28 11:33:52 -0500996 if (!scsi_sense_valid(sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return 0;
998 /* not invoked for commands that could return deferred errors */
James Bottomleyea73a9f2005-08-28 11:33:52 -0500999 if (sshdr->sense_key != NOT_READY &&
1000 sshdr->sense_key != UNIT_ATTENTION)
1001 return 0;
1002 if (sshdr->asc != 0x3A) /* medium not present */
1003 return 0;
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 set_media_not_present(sdkp);
1006 return 1;
1007}
1008
1009/*
1010 * spinup disk - called only in sd_revalidate_disk()
1011 */
1012static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001013sd_spinup_disk(struct scsi_disk *sdkp)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001014{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 unsigned char cmd[10];
Alan Stern4451e472005-07-12 10:45:17 -04001016 unsigned long spintime_expire = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 int retries, spintime;
1018 unsigned int the_result;
1019 struct scsi_sense_hdr sshdr;
1020 int sense_valid = 0;
1021
1022 spintime = 0;
1023
1024 /* Spin up drives, as required. Only do this at boot time */
1025 /* Spinup needs to be done for module loads too. */
1026 do {
1027 retries = 0;
1028
1029 do {
1030 cmd[0] = TEST_UNIT_READY;
1031 memset((void *) &cmd[1], 0, 9);
1032
James Bottomleyea73a9f2005-08-28 11:33:52 -05001033 the_result = scsi_execute_req(sdkp->device, cmd,
1034 DMA_NONE, NULL, 0,
1035 &sshdr, SD_TIMEOUT,
1036 SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Alan Sternb4d38e32006-10-11 16:48:28 -04001038 /*
1039 * If the drive has indicated to us that it
1040 * doesn't have any media in it, don't bother
1041 * with any more polling.
1042 */
1043 if (media_not_present(sdkp, &sshdr))
1044 return;
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001047 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 retries++;
1049 } while (retries < 3 &&
1050 (!scsi_status_is_good(the_result) ||
1051 ((driver_byte(the_result) & DRIVER_SENSE) &&
1052 sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1055 /* no sense, TUR either succeeded or failed
1056 * with a status error */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001057 if(!spintime && !scsi_status_is_good(the_result)) {
1058 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1059 sd_print_result(sdkp, the_result);
1060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 break;
1062 }
1063
1064 /*
1065 * The device does not want the automatic start to be issued.
1066 */
1067 if (sdkp->device->no_start_on_add) {
1068 break;
1069 }
1070
1071 /*
1072 * If manual intervention is required, or this is an
1073 * absent USB storage device, a spinup is meaningless.
1074 */
1075 if (sense_valid &&
1076 sshdr.sense_key == NOT_READY &&
1077 sshdr.asc == 4 && sshdr.ascq == 3) {
1078 break; /* manual intervention required */
1079
1080 /*
1081 * Issue command to spin up drive when not ready
1082 */
1083 } else if (sense_valid && sshdr.sense_key == NOT_READY) {
1084 if (!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001085 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 cmd[0] = START_STOP;
1087 cmd[1] = 1; /* Return immediately */
1088 memset((void *) &cmd[2], 0, 8);
1089 cmd[4] = 1; /* Start spin cycle */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001090 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1091 NULL, 0, &sshdr,
1092 SD_TIMEOUT, SD_MAX_RETRIES);
Alan Stern4451e472005-07-12 10:45:17 -04001093 spintime_expire = jiffies + 100 * HZ;
1094 spintime = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 /* Wait 1 second for next try */
1097 msleep(1000);
1098 printk(".");
Alan Stern4451e472005-07-12 10:45:17 -04001099
1100 /*
1101 * Wait for USB flash devices with slow firmware.
1102 * Yes, this sense key/ASC combination shouldn't
1103 * occur here. It's characteristic of these devices.
1104 */
1105 } else if (sense_valid &&
1106 sshdr.sense_key == UNIT_ATTENTION &&
1107 sshdr.asc == 0x28) {
1108 if (!spintime) {
1109 spintime_expire = jiffies + 5 * HZ;
1110 spintime = 1;
1111 }
1112 /* Wait 1 second for next try */
1113 msleep(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 } else {
1115 /* we don't understand the sense code, so it's
1116 * probably pointless to loop */
1117 if(!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001118 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1119 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
1121 break;
1122 }
1123
Alan Stern4451e472005-07-12 10:45:17 -04001124 } while (spintime && time_before_eq(jiffies, spintime_expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 if (spintime) {
1127 if (scsi_status_is_good(the_result))
1128 printk("ready\n");
1129 else
1130 printk("not responding...\n");
1131 }
1132}
1133
1134/*
1135 * read disk capacity
1136 */
1137static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001138sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001139{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 unsigned char cmd[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 int the_result, retries;
1142 int sector_size = 0;
1143 int longrc = 0;
1144 struct scsi_sense_hdr sshdr;
1145 int sense_valid = 0;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001146 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148repeat:
1149 retries = 3;
1150 do {
1151 if (longrc) {
1152 memset((void *) cmd, 0, 16);
1153 cmd[0] = SERVICE_ACTION_IN;
1154 cmd[1] = SAI_READ_CAPACITY_16;
1155 cmd[13] = 12;
1156 memset((void *) buffer, 0, 12);
1157 } else {
1158 cmd[0] = READ_CAPACITY;
1159 memset((void *) &cmd[1], 0, 9);
1160 memset((void *) buffer, 0, 8);
1161 }
1162
James Bottomleyea73a9f2005-08-28 11:33:52 -05001163 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
1164 buffer, longrc ? 12 : 8, &sshdr,
1165 SD_TIMEOUT, SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
James Bottomleyea73a9f2005-08-28 11:33:52 -05001167 if (media_not_present(sdkp, &sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return;
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001171 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 retries--;
1173
1174 } while (the_result && retries);
1175
1176 if (the_result && !longrc) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001177 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY failed\n");
1178 sd_print_result(sdkp, the_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (driver_byte(the_result) & DRIVER_SENSE)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001180 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001182 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 /* Set dirty bit for removable devices if not ready -
1185 * sometimes drives will not report this properly. */
1186 if (sdp->removable &&
1187 sense_valid && sshdr.sense_key == NOT_READY)
1188 sdp->changed = 1;
1189
1190 /* Either no media are present but the drive didn't tell us,
1191 or they are present but the read capacity command fails */
1192 /* sdkp->media_present = 0; -- not always correct */
Hannes Reinecke69bdd882006-09-01 15:50:23 +02001193 sdkp->capacity = 0; /* unknown mapped to zero - as usual */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 return;
1196 } else if (the_result && longrc) {
1197 /* READ CAPACITY(16) has been failed */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001198 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY(16) failed\n");
1199 sd_print_result(sdkp, the_result);
1200 sd_printk(KERN_NOTICE, sdkp, "Use 0xffffffff as device size\n");
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 sdkp->capacity = 1 + (sector_t) 0xffffffff;
1203 goto got_data;
1204 }
1205
1206 if (!longrc) {
1207 sector_size = (buffer[4] << 24) |
1208 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
1209 if (buffer[0] == 0xff && buffer[1] == 0xff &&
1210 buffer[2] == 0xff && buffer[3] == 0xff) {
1211 if(sizeof(sdkp->capacity) > 4) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001212 sd_printk(KERN_NOTICE, sdkp, "Very big device. "
1213 "Trying to use READ CAPACITY(16).\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 longrc = 1;
1215 goto repeat;
1216 }
Martin K. Petersene73aec82007-02-27 22:40:55 -05001217 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use "
1218 "a kernel compiled with support for large "
1219 "block devices.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 sdkp->capacity = 0;
1221 goto got_data;
1222 }
1223 sdkp->capacity = 1 + (((sector_t)buffer[0] << 24) |
1224 (buffer[1] << 16) |
1225 (buffer[2] << 8) |
1226 buffer[3]);
1227 } else {
1228 sdkp->capacity = 1 + (((u64)buffer[0] << 56) |
1229 ((u64)buffer[1] << 48) |
1230 ((u64)buffer[2] << 40) |
1231 ((u64)buffer[3] << 32) |
1232 ((sector_t)buffer[4] << 24) |
1233 ((sector_t)buffer[5] << 16) |
1234 ((sector_t)buffer[6] << 8) |
1235 (sector_t)buffer[7]);
1236
1237 sector_size = (buffer[8] << 24) |
1238 (buffer[9] << 16) | (buffer[10] << 8) | buffer[11];
1239 }
1240
1241 /* Some devices return the total number of sectors, not the
1242 * highest sector number. Make the necessary adjustment. */
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001243 if (sdp->fix_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 --sdkp->capacity;
1245
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001246 /* Some devices have version which report the correct sizes
1247 * and others which do not. We guess size according to a heuristic
1248 * and err on the side of lowering the capacity. */
1249 } else {
1250 if (sdp->guess_capacity)
1251 if (sdkp->capacity & 0x01) /* odd sizes are odd */
1252 --sdkp->capacity;
1253 }
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255got_data:
1256 if (sector_size == 0) {
1257 sector_size = 512;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001258 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
1259 "assuming 512.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
1261
1262 if (sector_size != 512 &&
1263 sector_size != 1024 &&
1264 sector_size != 2048 &&
1265 sector_size != 4096 &&
1266 sector_size != 256) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001267 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
1268 sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 /*
1270 * The user might want to re-format the drive with
1271 * a supported sectorsize. Once this happens, it
1272 * would be relatively trivial to set the thing up.
1273 * For this reason, we leave the thing in the table.
1274 */
1275 sdkp->capacity = 0;
1276 /*
1277 * set a bogus sector size so the normal read/write
1278 * logic in the block layer will eventually refuse any
1279 * request on this device without tripping over power
1280 * of two sector size assumptions
1281 */
1282 sector_size = 512;
1283 }
1284 {
1285 /*
1286 * The msdos fs needs to know the hardware sector size
1287 * So I have created this table. See ll_rw_blk.c
1288 * Jacques Gelinas (Jacques@solucorp.qc.ca)
1289 */
1290 int hard_sector = sector_size;
James Bottomley7a691bd2005-10-28 13:17:30 -05001291 sector_t sz = (sdkp->capacity/2) * (hard_sector/256);
Jens Axboe165125e2007-07-24 09:28:11 +02001292 struct request_queue *queue = sdp->request_queue;
James Bottomley7a691bd2005-10-28 13:17:30 -05001293 sector_t mb = sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 blk_queue_hardsect_size(queue, hard_sector);
1296 /* avoid 64-bit division on 32-bit platforms */
James Bottomley7a691bd2005-10-28 13:17:30 -05001297 sector_div(sz, 625);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 mb -= sz - 974;
1299 sector_div(mb, 1950);
1300
Martin K. Petersene73aec82007-02-27 22:40:55 -05001301 sd_printk(KERN_NOTICE, sdkp,
1302 "%llu %d-byte hardware sectors (%llu MB)\n",
1303 (unsigned long long)sdkp->capacity,
1304 hard_sector, (unsigned long long)mb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
1306
1307 /* Rescale capacity to 512-byte units */
1308 if (sector_size == 4096)
1309 sdkp->capacity <<= 3;
1310 else if (sector_size == 2048)
1311 sdkp->capacity <<= 2;
1312 else if (sector_size == 1024)
1313 sdkp->capacity <<= 1;
1314 else if (sector_size == 256)
1315 sdkp->capacity >>= 1;
1316
1317 sdkp->device->sector_size = sector_size;
1318}
1319
1320/* called with buffer of length 512 */
1321static inline int
James Bottomleyea73a9f2005-08-28 11:33:52 -05001322sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
1323 unsigned char *buffer, int len, struct scsi_mode_data *data,
1324 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
James Bottomleyea73a9f2005-08-28 11:33:52 -05001326 return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
James Bottomley1cf72692005-08-28 11:27:01 -05001327 SD_TIMEOUT, SD_MAX_RETRIES, data,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001328 sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
1331/*
1332 * read write protect setting, if possible - called only in sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001333 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 */
1335static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001336sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001337{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 int res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001339 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 struct scsi_mode_data data;
1341
1342 set_disk_ro(sdkp->disk, 0);
James Bottomleyea73a9f2005-08-28 11:33:52 -05001343 if (sdp->skip_ms_page_3f) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001344 sd_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return;
1346 }
1347
James Bottomleyea73a9f2005-08-28 11:33:52 -05001348 if (sdp->use_192_bytes_for_3f) {
1349 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 } else {
1351 /*
1352 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1353 * We have to start carefully: some devices hang if we ask
1354 * for more than is available.
1355 */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001356 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358 /*
1359 * Second attempt: ask for page 0 When only page 0 is
1360 * implemented, a request for page 3F may return Sense Key
1361 * 5: Illegal Request, Sense Code 24: Invalid field in
1362 * CDB.
1363 */
1364 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001365 res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 /*
1368 * Third attempt: ask 255 bytes, as we did earlier.
1369 */
1370 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001371 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
1372 &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374
1375 if (!scsi_status_is_good(res)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001376 sd_printk(KERN_WARNING, sdkp,
1377 "Test WP failed, assume Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 } else {
1379 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
1380 set_disk_ro(sdkp->disk, sdkp->write_prot);
Martin K. Petersene73aec82007-02-27 22:40:55 -05001381 sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
1382 sdkp->write_prot ? "on" : "off");
1383 sd_printk(KERN_DEBUG, sdkp,
1384 "Mode Sense: %02x %02x %02x %02x\n",
1385 buffer[0], buffer[1], buffer[2], buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387}
1388
1389/*
1390 * sd_read_cache_type - called only from sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001391 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 */
1393static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001394sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
Al Viro 631e8a12005-05-16 01:59:55 +01001395{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 int len = 0, res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001397 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Al Viro 631e8a12005-05-16 01:59:55 +01001399 int dbd;
1400 int modepage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 struct scsi_mode_data data;
1402 struct scsi_sense_hdr sshdr;
1403
James Bottomleyea73a9f2005-08-28 11:33:52 -05001404 if (sdp->skip_ms_page_8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 goto defaults;
1406
James Bottomleyea73a9f2005-08-28 11:33:52 -05001407 if (sdp->type == TYPE_RBC) {
Al Viro 631e8a12005-05-16 01:59:55 +01001408 modepage = 6;
1409 dbd = 8;
1410 } else {
1411 modepage = 8;
1412 dbd = 0;
1413 }
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 /* cautiously ask */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001416 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, 4, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 if (!scsi_status_is_good(res))
1419 goto bad_sense;
1420
Al Viro6d73c852006-02-23 02:03:16 +01001421 if (!data.header_length) {
1422 modepage = 6;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001423 sd_printk(KERN_ERR, sdkp, "Missing header in MODE_SENSE response\n");
Al Viro6d73c852006-02-23 02:03:16 +01001424 }
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 /* that went OK, now ask for the proper length */
1427 len = data.length;
1428
1429 /*
1430 * We're only interested in the first three bytes, actually.
1431 * But the data cache page is defined for the first 20.
1432 */
1433 if (len < 3)
1434 goto bad_sense;
1435 if (len > 20)
1436 len = 20;
1437
1438 /* Take headers and block descriptors into account */
1439 len += data.header_length + data.block_descriptor_length;
Al Viro48970802006-02-26 08:34:10 -06001440 if (len > SD_BUF_SIZE)
1441 goto bad_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 /* Get the data */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001444 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 if (scsi_status_is_good(res)) {
Al Viro 631e8a12005-05-16 01:59:55 +01001447 int offset = data.header_length + data.block_descriptor_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Al Viro48970802006-02-26 08:34:10 -06001449 if (offset >= SD_BUF_SIZE - 2) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001450 sd_printk(KERN_ERR, sdkp, "Malformed MODE SENSE response\n");
Al Viro48970802006-02-26 08:34:10 -06001451 goto defaults;
1452 }
1453
Al Viro 631e8a12005-05-16 01:59:55 +01001454 if ((buffer[offset] & 0x3f) != modepage) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001455 sd_printk(KERN_ERR, sdkp, "Got wrong page\n");
Al Viro 631e8a12005-05-16 01:59:55 +01001456 goto defaults;
1457 }
1458
1459 if (modepage == 8) {
1460 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
1461 sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
1462 } else {
1463 sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
1464 sdkp->RCD = 0;
1465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Tejun Heo007365a2006-01-06 09:53:52 +01001467 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
1468 if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001469 sd_printk(KERN_NOTICE, sdkp,
1470 "Uses READ/WRITE(6), disabling FUA\n");
Tejun Heo007365a2006-01-06 09:53:52 +01001471 sdkp->DPOFUA = 0;
1472 }
1473
Martin K. Petersene73aec82007-02-27 22:40:55 -05001474 sd_printk(KERN_NOTICE, sdkp,
1475 "Write cache: %s, read cache: %s, %s\n",
Luben Tuikovfd44bab2006-11-15 12:47:08 -08001476 sdkp->WCE ? "enabled" : "disabled",
1477 sdkp->RCD ? "disabled" : "enabled",
1478 sdkp->DPOFUA ? "supports DPO and FUA"
1479 : "doesn't support DPO or FUA");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 return;
1482 }
1483
1484bad_sense:
James Bottomleyea73a9f2005-08-28 11:33:52 -05001485 if (scsi_sense_valid(&sshdr) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 sshdr.sense_key == ILLEGAL_REQUEST &&
1487 sshdr.asc == 0x24 && sshdr.ascq == 0x0)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001488 /* Invalid field in CDB */
1489 sd_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001491 sd_printk(KERN_ERR, sdkp, "Asking for cache data failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493defaults:
Martin K. Petersene73aec82007-02-27 22:40:55 -05001494 sd_printk(KERN_ERR, sdkp, "Assuming drive cache: write through\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 sdkp->WCE = 0;
1496 sdkp->RCD = 0;
Al Viro48970802006-02-26 08:34:10 -06001497 sdkp->DPOFUA = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
1500/**
1501 * sd_revalidate_disk - called the first time a new disk is seen,
1502 * performs disk spin up, read_capacity, etc.
1503 * @disk: struct gendisk we care about
1504 **/
1505static int sd_revalidate_disk(struct gendisk *disk)
1506{
1507 struct scsi_disk *sdkp = scsi_disk(disk);
1508 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 unsigned char *buffer;
Tejun Heo461d4e92006-01-06 09:52:55 +01001510 unsigned ordered;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001512 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp,
1513 "sd_revalidate_disk\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 /*
1516 * If the device is offline, don't try and read capacity or any
1517 * of the other niceties.
1518 */
1519 if (!scsi_device_online(sdp))
1520 goto out;
1521
Bernhard Wallea6123f12007-05-21 17:15:26 +02001522 buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 if (!buffer) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001524 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
1525 "allocation failure.\n");
James Bottomleyea73a9f2005-08-28 11:33:52 -05001526 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
1528
1529 /* defaults, until the device tells us otherwise */
1530 sdp->sector_size = 512;
1531 sdkp->capacity = 0;
1532 sdkp->media_present = 1;
1533 sdkp->write_prot = 0;
1534 sdkp->WCE = 0;
1535 sdkp->RCD = 0;
1536
Martin K. Petersene73aec82007-02-27 22:40:55 -05001537 sd_spinup_disk(sdkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 /*
1540 * Without media there is no reason to ask; moreover, some devices
1541 * react badly if we do.
1542 */
1543 if (sdkp->media_present) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001544 sd_read_capacity(sdkp, buffer);
1545 sd_read_write_protect_flag(sdkp, buffer);
1546 sd_read_cache_type(sdkp, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 }
Tejun Heo461d4e92006-01-06 09:52:55 +01001548
1549 /*
1550 * We now have all cache related info, determine how we deal
1551 * with ordered requests. Note that as the current SCSI
1552 * dispatch function can alter request order, we cannot use
1553 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1554 */
1555 if (sdkp->WCE)
Tejun Heo007365a2006-01-06 09:53:52 +01001556 ordered = sdkp->DPOFUA
1557 ? QUEUE_ORDERED_DRAIN_FUA : QUEUE_ORDERED_DRAIN_FLUSH;
Tejun Heo461d4e92006-01-06 09:52:55 +01001558 else
1559 ordered = QUEUE_ORDERED_DRAIN;
1560
1561 blk_queue_ordered(sdkp->disk->queue, ordered, sd_prepare_flush);
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 set_capacity(disk, sdkp->capacity);
1564 kfree(buffer);
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 out:
1567 return 0;
1568}
1569
1570/**
1571 * sd_probe - called during driver initialization and whenever a
1572 * new scsi device is attached to the system. It is called once
1573 * for each scsi device (not just disks) present.
1574 * @dev: pointer to device object
1575 *
1576 * Returns 0 if successful (or not interested in this scsi device
1577 * (e.g. scanner)); 1 when there is an error.
1578 *
1579 * Note: this function is invoked from the scsi mid-level.
1580 * This function sets up the mapping between a given
1581 * <host,channel,id,lun> (found in sdp) and new device name
1582 * (e.g. /dev/sda). More precisely it is the block device major
1583 * and minor number that is chosen here.
1584 *
1585 * Assume sd_attach is not re-entrant (for time being)
1586 * Also think about sd_attach() and sd_remove() running coincidentally.
1587 **/
1588static int sd_probe(struct device *dev)
1589{
1590 struct scsi_device *sdp = to_scsi_device(dev);
1591 struct scsi_disk *sdkp;
1592 struct gendisk *gd;
1593 u32 index;
1594 int error;
1595
1596 error = -ENODEV;
Al Viro 631e8a12005-05-16 01:59:55 +01001597 if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 goto out;
1599
James Bottomley9ccfc752005-10-02 11:45:08 -05001600 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
1601 "sd_attach\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
1603 error = -ENOMEM;
Jes Sorensen24669f752006-01-16 10:31:18 -05001604 sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 if (!sdkp)
1606 goto out;
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 gd = alloc_disk(16);
1609 if (!gd)
1610 goto out_free;
1611
1612 if (!idr_pre_get(&sd_index_idr, GFP_KERNEL))
1613 goto out_put;
1614
1615 spin_lock(&sd_index_lock);
1616 error = idr_get_new(&sd_index_idr, NULL, &index);
1617 spin_unlock(&sd_index_lock);
1618
1619 if (index >= SD_MAX_DISKS)
1620 error = -EBUSY;
1621 if (error)
1622 goto out_put;
1623
1624 sdkp->device = sdp;
1625 sdkp->driver = &sd_template;
1626 sdkp->disk = gd;
1627 sdkp->index = index;
1628 sdkp->openers = 0;
1629
1630 if (!sdp->timeout) {
Al Viro 631e8a12005-05-16 01:59:55 +01001631 if (sdp->type != TYPE_MOD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 sdp->timeout = SD_TIMEOUT;
1633 else
1634 sdp->timeout = SD_MOD_TIMEOUT;
1635 }
1636
Nagendra Singh Tomar017f2e32007-02-02 17:34:56 +05301637 class_device_initialize(&sdkp->cdev);
1638 sdkp->cdev.dev = &sdp->sdev_gendev;
1639 sdkp->cdev.class = &sd_disk_class;
1640 strncpy(sdkp->cdev.class_id, sdp->sdev_gendev.bus_id, BUS_ID_SIZE);
1641
1642 if (class_device_add(&sdkp->cdev))
1643 goto out_put;
1644
1645 get_device(&sdp->sdev_gendev);
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 gd->major = sd_major((index & 0xf0) >> 4);
1648 gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
1649 gd->minors = 16;
1650 gd->fops = &sd_fops;
1651
1652 if (index < 26) {
1653 sprintf(gd->disk_name, "sd%c", 'a' + index % 26);
1654 } else if (index < (26 + 1) * 26) {
1655 sprintf(gd->disk_name, "sd%c%c",
1656 'a' + index / 26 - 1,'a' + index % 26);
1657 } else {
1658 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
1659 const unsigned int m2 = (index / 26 - 1) % 26;
1660 const unsigned int m3 = index % 26;
1661 sprintf(gd->disk_name, "sd%c%c%c",
1662 'a' + m1, 'a' + m2, 'a' + m3);
1663 }
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 gd->private_data = &sdkp->driver;
Tejun Heo461d4e92006-01-06 09:52:55 +01001666 gd->queue = sdkp->device->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 sd_revalidate_disk(gd);
1669
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001670 blk_queue_prep_rq(sdp->request_queue, sd_prep_fn);
James Bottomley03a5743a2007-08-03 16:41:11 -05001671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 gd->driverfs_dev = &sdp->sdev_gendev;
1673 gd->flags = GENHD_FL_DRIVERFS;
1674 if (sdp->removable)
1675 gd->flags |= GENHD_FL_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 dev_set_drvdata(dev, sdkp);
1678 add_disk(gd);
1679
Martin K. Petersene73aec82007-02-27 22:40:55 -05001680 sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
1681 sdp->removable ? "removable " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 return 0;
1684
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001685 out_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 put_disk(gd);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001687 out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 kfree(sdkp);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001689 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return error;
1691}
1692
1693/**
1694 * sd_remove - called whenever a scsi disk (previously recognized by
1695 * sd_probe) is detached from the system. It is called (potentially
1696 * multiple times) during sd module unload.
1697 * @sdp: pointer to mid level scsi device object
1698 *
1699 * Note: this function is invoked from the scsi mid-level.
1700 * This function potentially frees up a device name (e.g. /dev/sdc)
1701 * that could be re-used by a subsequent sd_probe().
1702 * This function is not called when the built-in sd driver is "exit-ed".
1703 **/
1704static int sd_remove(struct device *dev)
1705{
1706 struct scsi_disk *sdkp = dev_get_drvdata(dev);
1707
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001708 class_device_del(&sdkp->cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 del_gendisk(sdkp->disk);
1710 sd_shutdown(dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001711
Arjan van de Ven0b950672006-01-11 13:16:10 +01001712 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001713 dev_set_drvdata(dev, NULL);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001714 class_device_put(&sdkp->cdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001715 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717 return 0;
1718}
1719
1720/**
1721 * scsi_disk_release - Called to free the scsi_disk structure
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001722 * @cdev: pointer to embedded class device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 *
Arjan van de Ven0b950672006-01-11 13:16:10 +01001724 * sd_ref_mutex must be held entering this routine. Because it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 * called on last put, you should always use the scsi_disk_get()
1726 * scsi_disk_put() helpers which manipulate the semaphore directly
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001727 * and never do a direct class_device_put().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 **/
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001729static void scsi_disk_release(struct class_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730{
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001731 struct scsi_disk *sdkp = to_scsi_disk(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 struct gendisk *disk = sdkp->disk;
1733
1734 spin_lock(&sd_index_lock);
1735 idr_remove(&sd_index_idr, sdkp->index);
1736 spin_unlock(&sd_index_lock);
1737
1738 disk->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 put_disk(disk);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001740 put_device(&sdkp->device->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 kfree(sdkp);
1743}
1744
James Bottomleycc5d2c82007-03-20 12:26:03 -05001745static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
Tejun Heoc3c94c52007-03-21 00:13:59 +09001746{
1747 unsigned char cmd[6] = { START_STOP }; /* START_VALID */
1748 struct scsi_sense_hdr sshdr;
James Bottomleycc5d2c82007-03-20 12:26:03 -05001749 struct scsi_device *sdp = sdkp->device;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001750 int res;
1751
1752 if (start)
1753 cmd[4] |= 1; /* START */
1754
1755 if (!scsi_device_online(sdp))
1756 return -ENODEV;
1757
1758 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
1759 SD_TIMEOUT, SD_MAX_RETRIES);
1760 if (res) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05001761 sd_printk(KERN_WARNING, sdkp, "START_STOP FAILED\n");
1762 sd_print_result(sdkp, res);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001763 if (driver_byte(res) & DRIVER_SENSE)
James Bottomleycc5d2c82007-03-20 12:26:03 -05001764 sd_print_sense_hdr(sdkp, &sshdr);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001765 }
1766
1767 return res;
1768}
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770/*
1771 * Send a SYNCHRONIZE CACHE instruction down to the device through
1772 * the normal SCSI command structure. Wait for the command to
1773 * complete.
1774 */
1775static void sd_shutdown(struct device *dev)
1776{
Alan Stern39b7f1e2005-11-04 14:44:41 -05001777 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 if (!sdkp)
1780 return; /* this can happen */
1781
Alan Stern39b7f1e2005-11-04 14:44:41 -05001782 if (sdkp->WCE) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001783 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
1784 sd_sync_cache(sdkp);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001785 }
Tejun Heoc3c94c52007-03-21 00:13:59 +09001786
James Bottomleycc5d2c82007-03-20 12:26:03 -05001787 if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) {
1788 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
1789 sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001790 }
1791
Alan Stern39b7f1e2005-11-04 14:44:41 -05001792 scsi_disk_put(sdkp);
1793}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Tejun Heoc3c94c52007-03-21 00:13:59 +09001795static int sd_suspend(struct device *dev, pm_message_t mesg)
1796{
Tejun Heoc3c94c52007-03-21 00:13:59 +09001797 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04001798 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001799
1800 if (!sdkp)
1801 return 0; /* this can happen */
1802
1803 if (sdkp->WCE) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05001804 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
Tejun Heoc3c94c52007-03-21 00:13:59 +09001805 ret = sd_sync_cache(sdkp);
1806 if (ret)
Alan Stern09ff92f2007-05-21 09:55:04 -04001807 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001808 }
1809
James Bottomleycc5d2c82007-03-20 12:26:03 -05001810 if (mesg.event == PM_EVENT_SUSPEND &&
1811 sdkp->device->manage_start_stop) {
1812 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
1813 ret = sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001814 }
1815
Alan Stern09ff92f2007-05-21 09:55:04 -04001816done:
1817 scsi_disk_put(sdkp);
1818 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001819}
1820
1821static int sd_resume(struct device *dev)
1822{
Tejun Heoc3c94c52007-03-21 00:13:59 +09001823 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04001824 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001825
James Bottomleycc5d2c82007-03-20 12:26:03 -05001826 if (!sdkp->device->manage_start_stop)
Alan Stern09ff92f2007-05-21 09:55:04 -04001827 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001828
James Bottomleycc5d2c82007-03-20 12:26:03 -05001829 sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
Alan Stern09ff92f2007-05-21 09:55:04 -04001830 ret = sd_start_stop_device(sdkp, 1);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001831
Alan Stern09ff92f2007-05-21 09:55:04 -04001832done:
1833 scsi_disk_put(sdkp);
1834 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001835}
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837/**
1838 * init_sd - entry point for this driver (both when built in or when
1839 * a module).
1840 *
1841 * Note: this function registers this driver with the scsi mid-level.
1842 **/
1843static int __init init_sd(void)
1844{
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001845 int majors = 0, i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
1848
1849 for (i = 0; i < SD_MAJORS; i++)
1850 if (register_blkdev(sd_major(i), "sd") == 0)
1851 majors++;
1852
1853 if (!majors)
1854 return -ENODEV;
1855
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001856 err = class_register(&sd_disk_class);
1857 if (err)
1858 goto err_out;
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001859
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001860 err = scsi_register_driver(&sd_template.gendrv);
1861 if (err)
1862 goto err_out_class;
1863
1864 return 0;
1865
1866err_out_class:
1867 class_unregister(&sd_disk_class);
1868err_out:
1869 for (i = 0; i < SD_MAJORS; i++)
1870 unregister_blkdev(sd_major(i), "sd");
1871 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873
1874/**
1875 * exit_sd - exit point for this driver (when it is a module).
1876 *
1877 * Note: this function unregisters this driver from the scsi mid-level.
1878 **/
1879static void __exit exit_sd(void)
1880{
1881 int i;
1882
1883 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
1884
1885 scsi_unregister_driver(&sd_template.gendrv);
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001886 class_unregister(&sd_disk_class);
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 for (i = 0; i < SD_MAJORS; i++)
1889 unregister_blkdev(sd_major(i), "sd");
1890}
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892module_init(init_sd);
1893module_exit(exit_sd);
Martin K. Petersene73aec82007-02-27 22:40:55 -05001894
1895static void sd_print_sense_hdr(struct scsi_disk *sdkp,
1896 struct scsi_sense_hdr *sshdr)
1897{
1898 sd_printk(KERN_INFO, sdkp, "");
1899 scsi_show_sense_hdr(sshdr);
1900 sd_printk(KERN_INFO, sdkp, "");
1901 scsi_show_extd_sense(sshdr->asc, sshdr->ascq);
1902}
1903
1904static void sd_print_result(struct scsi_disk *sdkp, int result)
1905{
1906 sd_printk(KERN_INFO, sdkp, "");
1907 scsi_show_result(result);
1908}
1909