blob: 212f6bcfd4570f2f1d3f33e63d570373ad06fe02 [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 Torvalds7b3d9542008-01-06 10:17:12 -080089static int sd_revalidate_disk(struct gendisk *);
90static int sd_probe(struct device *);
91static int sd_remove(struct device *);
92static void sd_shutdown(struct device *);
93static int sd_suspend(struct device *, pm_message_t state);
94static int sd_resume(struct device *);
95static void sd_rescan(struct device *);
96static int sd_done(struct scsi_cmnd *);
97static void sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer);
98static void scsi_disk_release(struct class_device *cdev);
99static void sd_print_sense_hdr(struct scsi_disk *, struct scsi_sense_hdr *);
100static void sd_print_result(struct scsi_disk *, int);
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static DEFINE_IDR(sd_index_idr);
103static DEFINE_SPINLOCK(sd_index_lock);
104
105/* This semaphore is used to mediate the 0->1 reference get in the
106 * face of object destruction (i.e. we can't allow a get on an
107 * object after last put) */
Arjan van de Ven0b950672006-01-11 13:16:10 +0100108static DEFINE_MUTEX(sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600110static const char *sd_cache_types[] = {
111 "write through", "none", "write back",
112 "write back, no read (daft)"
113};
114
115static ssize_t sd_store_cache_type(struct class_device *cdev, const char *buf,
116 size_t count)
117{
118 int i, ct = -1, rcd, wce, sp;
119 struct scsi_disk *sdkp = to_scsi_disk(cdev);
120 struct scsi_device *sdp = sdkp->device;
121 char buffer[64];
122 char *buffer_data;
123 struct scsi_mode_data data;
124 struct scsi_sense_hdr sshdr;
125 int len;
126
127 if (sdp->type != TYPE_DISK)
128 /* no cache control on RBC devices; theoretically they
129 * can do it, but there's probably so many exceptions
130 * it's not worth the risk */
131 return -EINVAL;
132
Tobias Klauser6391a112006-06-08 22:23:48 -0700133 for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600134 const int len = strlen(sd_cache_types[i]);
135 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
136 buf[len] == '\n') {
137 ct = i;
138 break;
139 }
140 }
141 if (ct < 0)
142 return -EINVAL;
143 rcd = ct & 0x01 ? 1 : 0;
144 wce = ct & 0x02 ? 1 : 0;
145 if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
146 SD_MAX_RETRIES, &data, NULL))
147 return -EINVAL;
Andrew Mortona9312fb2006-03-25 03:08:30 -0800148 len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600149 data.block_descriptor_length);
150 buffer_data = buffer + data.header_length +
151 data.block_descriptor_length;
152 buffer_data[2] &= ~0x05;
153 buffer_data[2] |= wce << 2 | rcd;
154 sp = buffer_data[0] & 0x80 ? 1 : 0;
155
156 if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
157 SD_MAX_RETRIES, &data, &sshdr)) {
158 if (scsi_sense_valid(&sshdr))
Martin K. Petersene73aec82007-02-27 22:40:55 -0500159 sd_print_sense_hdr(sdkp, &sshdr);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600160 return -EINVAL;
161 }
162 sd_revalidate_disk(sdkp->disk);
163 return count;
164}
165
Tejun Heoc3c94c52007-03-21 00:13:59 +0900166static ssize_t sd_store_manage_start_stop(struct class_device *cdev,
167 const char *buf, size_t count)
168{
169 struct scsi_disk *sdkp = to_scsi_disk(cdev);
170 struct scsi_device *sdp = sdkp->device;
171
172 if (!capable(CAP_SYS_ADMIN))
173 return -EACCES;
174
175 sdp->manage_start_stop = simple_strtoul(buf, NULL, 10);
176
177 return count;
178}
179
Brian Kinga144c5a2006-06-27 11:10:31 -0500180static ssize_t sd_store_allow_restart(struct class_device *cdev, const char *buf,
181 size_t count)
182{
183 struct scsi_disk *sdkp = to_scsi_disk(cdev);
184 struct scsi_device *sdp = sdkp->device;
185
186 if (!capable(CAP_SYS_ADMIN))
187 return -EACCES;
188
189 if (sdp->type != TYPE_DISK)
190 return -EINVAL;
191
192 sdp->allow_restart = simple_strtoul(buf, NULL, 10);
193
194 return count;
195}
196
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600197static ssize_t sd_show_cache_type(struct class_device *cdev, char *buf)
198{
199 struct scsi_disk *sdkp = to_scsi_disk(cdev);
200 int ct = sdkp->RCD + 2*sdkp->WCE;
201
202 return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
203}
204
205static ssize_t sd_show_fua(struct class_device *cdev, char *buf)
206{
207 struct scsi_disk *sdkp = to_scsi_disk(cdev);
208
209 return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
210}
211
Tejun Heoc3c94c52007-03-21 00:13:59 +0900212static ssize_t sd_show_manage_start_stop(struct class_device *cdev, char *buf)
213{
214 struct scsi_disk *sdkp = to_scsi_disk(cdev);
215 struct scsi_device *sdp = sdkp->device;
216
217 return snprintf(buf, 20, "%u\n", sdp->manage_start_stop);
218}
219
Brian Kinga144c5a2006-06-27 11:10:31 -0500220static ssize_t sd_show_allow_restart(struct class_device *cdev, char *buf)
221{
222 struct scsi_disk *sdkp = to_scsi_disk(cdev);
223
224 return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
225}
226
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600227static struct class_device_attribute sd_disk_attrs[] = {
228 __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
229 sd_store_cache_type),
230 __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
Brian Kinga144c5a2006-06-27 11:10:31 -0500231 __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
232 sd_store_allow_restart),
Tejun Heoc3c94c52007-03-21 00:13:59 +0900233 __ATTR(manage_start_stop, S_IRUGO|S_IWUSR, sd_show_manage_start_stop,
234 sd_store_manage_start_stop),
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600235 __ATTR_NULL,
236};
237
238static struct class sd_disk_class = {
239 .name = "scsi_disk",
240 .owner = THIS_MODULE,
241 .release = scsi_disk_release,
242 .class_dev_attrs = sd_disk_attrs,
243};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245static struct scsi_driver sd_template = {
246 .owner = THIS_MODULE,
247 .gendrv = {
248 .name = "sd",
249 .probe = sd_probe,
250 .remove = sd_remove,
Tejun Heoc3c94c52007-03-21 00:13:59 +0900251 .suspend = sd_suspend,
252 .resume = sd_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 .shutdown = sd_shutdown,
254 },
255 .rescan = sd_rescan,
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800256 .done = sd_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257};
258
259/*
260 * Device no to disk mapping:
261 *
262 * major disc2 disc p1
263 * |............|.............|....|....| <- dev_t
264 * 31 20 19 8 7 4 3 0
265 *
266 * Inside a major, we have 16k disks, however mapped non-
267 * contiguously. The first 16 disks are for major0, the next
268 * ones with major1, ... Disk 256 is for major0 again, disk 272
269 * for major1, ...
270 * As we stay compatible with our numbering scheme, we can reuse
271 * the well-know SCSI majors 8, 65--71, 136--143.
272 */
273static int sd_major(int major_idx)
274{
275 switch (major_idx) {
276 case 0:
277 return SCSI_DISK0_MAJOR;
278 case 1 ... 7:
279 return SCSI_DISK1_MAJOR + major_idx - 1;
280 case 8 ... 15:
281 return SCSI_DISK8_MAJOR + major_idx - 8;
282 default:
283 BUG();
284 return 0; /* shut up gcc */
285 }
286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288static inline struct scsi_disk *scsi_disk(struct gendisk *disk)
289{
290 return container_of(disk->private_data, struct scsi_disk, driver);
291}
292
Alan Stern39b7f1e2005-11-04 14:44:41 -0500293static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 struct scsi_disk *sdkp = NULL;
296
Alan Stern39b7f1e2005-11-04 14:44:41 -0500297 if (disk->private_data) {
298 sdkp = scsi_disk(disk);
299 if (scsi_device_get(sdkp->device) == 0)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600300 class_device_get(&sdkp->cdev);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500301 else
302 sdkp = NULL;
303 }
304 return sdkp;
305}
306
307static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
308{
309 struct scsi_disk *sdkp;
310
Arjan van de Ven0b950672006-01-11 13:16:10 +0100311 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500312 sdkp = __scsi_disk_get(disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100313 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return sdkp;
Alan Stern39b7f1e2005-11-04 14:44:41 -0500315}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Alan Stern39b7f1e2005-11-04 14:44:41 -0500317static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
318{
319 struct scsi_disk *sdkp;
320
Arjan van de Ven0b950672006-01-11 13:16:10 +0100321 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500322 sdkp = dev_get_drvdata(dev);
323 if (sdkp)
324 sdkp = __scsi_disk_get(sdkp->disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100325 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return sdkp;
327}
328
329static void scsi_disk_put(struct scsi_disk *sdkp)
330{
331 struct scsi_device *sdev = sdkp->device;
332
Arjan van de Ven0b950672006-01-11 13:16:10 +0100333 mutex_lock(&sd_ref_mutex);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600334 class_device_put(&sdkp->cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 scsi_device_put(sdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100336 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339/**
340 * sd_init_command - build a scsi (read or write) command from
341 * information in the request structure.
342 * @SCpnt: pointer to mid-level's per scsi command structure that
343 * contains request and into which the scsi command is written
344 *
345 * Returns 1 if successful and 0 if error (or cannot be done now).
346 **/
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500347static int sd_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500349 struct scsi_cmnd *SCpnt;
350 struct scsi_device *sdp = q->queuedata;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100351 struct gendisk *disk = rq->rq_disk;
352 sector_t block = rq->sector;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500353 unsigned int this_count = rq->nr_sectors;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100354 unsigned int timeout = sdp->timeout;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500355 int ret;
356
357 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
358 ret = scsi_setup_blk_pc_cmnd(sdp, rq);
359 goto out;
360 } else if (rq->cmd_type != REQ_TYPE_FS) {
361 ret = BLKPREP_KILL;
362 goto out;
363 }
364 ret = scsi_setup_fs_cmnd(sdp, rq);
365 if (ret != BLKPREP_OK)
366 goto out;
367 SCpnt = rq->special;
368
369 /* from here on until we're complete, any goto out
370 * is used for a killable error condition */
371 ret = BLKPREP_KILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500373 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
374 "sd_init_command: block=%llu, "
375 "count=%d\n",
376 (unsigned long long)block,
377 this_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 if (!sdp || !scsi_device_online(sdp) ||
380 block + rq->nr_sectors > get_capacity(disk)) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500381 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
382 "Finishing %ld sectors\n",
383 rq->nr_sectors));
384 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
385 "Retry with 0x%p\n", SCpnt));
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500386 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
389 if (sdp->changed) {
390 /*
391 * quietly refuse to do anything to a changed disc until
392 * the changed bit has been reset
393 */
394 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500395 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500397
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500398 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, "block=%llu\n",
399 (unsigned long long)block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 /*
402 * If we have a 1K hardware sectorsize, prevent access to single
403 * 512 byte sectors. In theory we could handle this - in fact
404 * the scsi cdrom driver must be able to handle this because
405 * we typically use 1K blocksizes, and cdroms typically have
406 * 2K hardware sectorsizes. Of course, things are simpler
407 * with the cdrom, since it is read-only. For performance
408 * reasons, the filesystems should be able to handle this
409 * and not force the scsi disk driver to use bounce buffers
410 * for this.
411 */
412 if (sdp->sector_size == 1024) {
413 if ((block & 1) || (rq->nr_sectors & 1)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500414 scmd_printk(KERN_ERR, SCpnt,
415 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500416 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 } else {
418 block = block >> 1;
419 this_count = this_count >> 1;
420 }
421 }
422 if (sdp->sector_size == 2048) {
423 if ((block & 3) || (rq->nr_sectors & 3)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500424 scmd_printk(KERN_ERR, SCpnt,
425 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500426 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 } else {
428 block = block >> 2;
429 this_count = this_count >> 2;
430 }
431 }
432 if (sdp->sector_size == 4096) {
433 if ((block & 7) || (rq->nr_sectors & 7)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500434 scmd_printk(KERN_ERR, SCpnt,
435 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500436 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 } else {
438 block = block >> 3;
439 this_count = this_count >> 3;
440 }
441 }
442 if (rq_data_dir(rq) == WRITE) {
443 if (!sdp->writeable) {
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500444 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446 SCpnt->cmnd[0] = WRITE_6;
447 SCpnt->sc_data_direction = DMA_TO_DEVICE;
448 } else if (rq_data_dir(rq) == READ) {
449 SCpnt->cmnd[0] = READ_6;
450 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
451 } else {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500452 scmd_printk(KERN_ERR, SCpnt, "Unknown command %x\n", rq->cmd_flags);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500453 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500456 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
457 "%s %d/%ld 512 byte blocks.\n",
458 (rq_data_dir(rq) == WRITE) ?
459 "writing" : "reading", this_count,
460 rq->nr_sectors));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 SCpnt->cmnd[1] = 0;
463
464 if (block > 0xffffffff) {
465 SCpnt->cmnd[0] += READ_16 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100466 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
468 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
469 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
470 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
471 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
472 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
473 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
474 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
475 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
476 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
477 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
478 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
479 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
480 } else if ((this_count > 0xff) || (block > 0x1fffff) ||
481 SCpnt->device->use_10_for_rw) {
482 if (this_count > 0xffff)
483 this_count = 0xffff;
484
485 SCpnt->cmnd[0] += READ_10 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100486 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
488 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
489 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
490 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
491 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
492 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
493 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
494 } else {
Tejun Heo007365a2006-01-06 09:53:52 +0100495 if (unlikely(blk_fua_rq(rq))) {
496 /*
497 * This happens only if this drive failed
498 * 10byte rw command with ILLEGAL_REQUEST
499 * during operation and thus turned off
500 * use_10_for_rw.
501 */
Martin K. Petersene73aec82007-02-27 22:40:55 -0500502 scmd_printk(KERN_ERR, SCpnt,
503 "FUA write on READ/WRITE(6) drive\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500504 goto out;
Tejun Heo007365a2006-01-06 09:53:52 +0100505 }
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
508 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
509 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
510 SCpnt->cmnd[4] = (unsigned char) this_count;
511 SCpnt->cmnd[5] = 0;
512 }
Christoph Hellwig631c2282006-07-08 20:42:15 +0200513 SCpnt->request_bufflen = this_count * sdp->sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 /*
516 * We shouldn't disconnect in the middle of a sector, so with a dumb
517 * host adapter, it's safe to assume that we can at least transfer
518 * this many bytes between each connect / disconnect.
519 */
520 SCpnt->transfersize = sdp->sector_size;
521 SCpnt->underflow = this_count << 9;
522 SCpnt->allowed = SD_MAX_RETRIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 SCpnt->timeout_per_command = timeout;
524
525 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 * This indicates that the command is ready from our end to be
527 * queued.
528 */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500529 ret = BLKPREP_OK;
530 out:
531 return scsi_prep_return(q, rq, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
534/**
535 * sd_open - open a scsi disk device
536 * @inode: only i_rdev member may be used
537 * @filp: only f_mode and f_flags may be used
538 *
539 * Returns 0 if successful. Returns a negated errno value in case
540 * of error.
541 *
542 * Note: This can be called from a user context (e.g. fsck(1) )
543 * or from within the kernel (e.g. as a result of a mount(1) ).
544 * In the latter case @inode and @filp carry an abridged amount
545 * of information as noted above.
546 **/
547static int sd_open(struct inode *inode, struct file *filp)
548{
549 struct gendisk *disk = inode->i_bdev->bd_disk;
550 struct scsi_disk *sdkp;
551 struct scsi_device *sdev;
552 int retval;
553
554 if (!(sdkp = scsi_disk_get(disk)))
555 return -ENXIO;
556
557
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500558 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_open\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 sdev = sdkp->device;
561
562 /*
563 * If the device is in error recovery, wait until it is done.
564 * If the device is offline, then disallow any access to it.
565 */
566 retval = -ENXIO;
567 if (!scsi_block_when_processing_errors(sdev))
568 goto error_out;
569
570 if (sdev->removable || sdkp->write_prot)
571 check_disk_change(inode->i_bdev);
572
573 /*
574 * If the drive is empty, just let the open fail.
575 */
576 retval = -ENOMEDIUM;
577 if (sdev->removable && !sdkp->media_present &&
578 !(filp->f_flags & O_NDELAY))
579 goto error_out;
580
581 /*
582 * If the device has the write protect tab set, have the open fail
583 * if the user expects to be able to write to the thing.
584 */
585 retval = -EROFS;
586 if (sdkp->write_prot && (filp->f_mode & FMODE_WRITE))
587 goto error_out;
588
589 /*
590 * It is possible that the disk changing stuff resulted in
591 * the device being taken offline. If this is the case,
592 * report this to the user, and don't pretend that the
593 * open actually succeeded.
594 */
595 retval = -ENXIO;
596 if (!scsi_device_online(sdev))
597 goto error_out;
598
599 if (!sdkp->openers++ && sdev->removable) {
600 if (scsi_block_when_processing_errors(sdev))
601 scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
602 }
603
604 return 0;
605
606error_out:
607 scsi_disk_put(sdkp);
608 return retval;
609}
610
611/**
612 * sd_release - invoked when the (last) close(2) is called on this
613 * scsi disk.
614 * @inode: only i_rdev member may be used
615 * @filp: only f_mode and f_flags may be used
616 *
617 * Returns 0.
618 *
619 * Note: may block (uninterruptible) if error recovery is underway
620 * on this disk.
621 **/
622static int sd_release(struct inode *inode, struct file *filp)
623{
624 struct gendisk *disk = inode->i_bdev->bd_disk;
625 struct scsi_disk *sdkp = scsi_disk(disk);
626 struct scsi_device *sdev = sdkp->device;
627
James Bottomley56937f72007-03-11 12:25:33 -0500628 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_release\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 if (!--sdkp->openers && sdev->removable) {
631 if (scsi_block_when_processing_errors(sdev))
632 scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
633 }
634
635 /*
636 * XXX and what if there are packets in flight and this close()
637 * XXX is followed by a "rmmod sd_mod"?
638 */
639 scsi_disk_put(sdkp);
640 return 0;
641}
642
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800643static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645 struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
646 struct scsi_device *sdp = sdkp->device;
647 struct Scsi_Host *host = sdp->host;
648 int diskinfo[4];
649
650 /* default to most commonly used values */
651 diskinfo[0] = 0x40; /* 1 << 6 */
652 diskinfo[1] = 0x20; /* 1 << 5 */
653 diskinfo[2] = sdkp->capacity >> 11;
654
655 /* override with calculated, extended default, or driver values */
656 if (host->hostt->bios_param)
657 host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
658 else
659 scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
660
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800661 geo->heads = diskinfo[0];
662 geo->sectors = diskinfo[1];
663 geo->cylinders = diskinfo[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return 0;
665}
666
667/**
668 * sd_ioctl - process an ioctl
669 * @inode: only i_rdev/i_bdev members may be used
670 * @filp: only f_mode and f_flags may be used
671 * @cmd: ioctl command number
672 * @arg: this is third argument given to ioctl(2) system call.
673 * Often contains a pointer.
674 *
675 * Returns 0 if successful (some ioctls return postive numbers on
676 * success as well). Returns a negated errno value in case of error.
677 *
678 * Note: most ioctls are forward onto the block subsystem or further
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200679 * down in the scsi subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 **/
681static int sd_ioctl(struct inode * inode, struct file * filp,
682 unsigned int cmd, unsigned long arg)
683{
684 struct block_device *bdev = inode->i_bdev;
685 struct gendisk *disk = bdev->bd_disk;
686 struct scsi_device *sdp = scsi_disk(disk)->device;
687 void __user *p = (void __user *)arg;
688 int error;
689
690 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
691 disk->disk_name, cmd));
692
693 /*
694 * If we are in the middle of error recovery, don't let anyone
695 * else try and use this device. Also, if error recovery fails, it
696 * may try and take the device offline, in which case all further
697 * access to the device is prohibited.
698 */
699 error = scsi_nonblockable_ioctl(sdp, cmd, p, filp);
700 if (!scsi_block_when_processing_errors(sdp) || !error)
701 return error;
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /*
704 * Send SCSI addressing ioctls directly to mid level, send other
705 * ioctls to block level and then onto mid level if they can't be
706 * resolved.
707 */
708 switch (cmd) {
709 case SCSI_IOCTL_GET_IDLUN:
710 case SCSI_IOCTL_GET_BUS_NUMBER:
711 return scsi_ioctl(sdp, cmd, p);
712 default:
FUJITA Tomonori45e79a32007-07-09 12:39:20 +0200713 error = scsi_cmd_ioctl(filp, disk->queue, disk, cmd, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (error != -ENOTTY)
715 return error;
716 }
717 return scsi_ioctl(sdp, cmd, p);
718}
719
720static void set_media_not_present(struct scsi_disk *sdkp)
721{
722 sdkp->media_present = 0;
723 sdkp->capacity = 0;
724 sdkp->device->changed = 1;
725}
726
727/**
728 * sd_media_changed - check if our medium changed
729 * @disk: kernel device descriptor
730 *
731 * Returns 0 if not applicable or no change; 1 if change
732 *
733 * Note: this function is invoked from the block subsystem.
734 **/
735static int sd_media_changed(struct gendisk *disk)
736{
737 struct scsi_disk *sdkp = scsi_disk(disk);
738 struct scsi_device *sdp = sdkp->device;
James Bottomley001aac22007-12-02 19:10:40 +0200739 struct scsi_sense_hdr *sshdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 int retval;
741
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500742 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_media_changed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 if (!sdp->removable)
745 return 0;
746
747 /*
748 * If the device is offline, don't send any commands - just pretend as
749 * if the command failed. If the device ever comes back online, we
750 * can deal with it then. It is only because of unrecoverable errors
751 * that we would ever take a device offline in the first place.
752 */
Kay Sievers285e9672007-08-14 14:10:39 +0200753 if (!scsi_device_online(sdp)) {
754 set_media_not_present(sdkp);
755 retval = 1;
756 goto out;
757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 /*
760 * Using TEST_UNIT_READY enables differentiation between drive with
761 * no cartridge loaded - NOT READY, drive with changed cartridge -
762 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
763 *
764 * Drives that auto spin down. eg iomega jaz 1G, will be started
765 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
766 * sd_revalidate() is called.
767 */
768 retval = -ENODEV;
Kay Sievers285e9672007-08-14 14:10:39 +0200769
James Bottomley001aac22007-12-02 19:10:40 +0200770 if (scsi_block_when_processing_errors(sdp)) {
771 sshdr = kzalloc(sizeof(*sshdr), GFP_KERNEL);
772 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES,
773 sshdr);
774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 /*
777 * Unable to test, unit probably not ready. This usually
778 * means there is no disc in the drive. Mark as changed,
779 * and we will figure it out later once the drive is
780 * available again.
781 */
James Bottomley001aac22007-12-02 19:10:40 +0200782 if (retval || (scsi_sense_valid(sshdr) &&
783 /* 0x3a is medium not present */
784 sshdr->asc == 0x3a)) {
Kay Sievers285e9672007-08-14 14:10:39 +0200785 set_media_not_present(sdkp);
786 retval = 1;
787 goto out;
788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 /*
791 * For removable scsi disk we have to recognise the presence
792 * of a disk in the drive. This is kept in the struct scsi_disk
793 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
794 */
795 sdkp->media_present = 1;
796
797 retval = sdp->changed;
798 sdp->changed = 0;
Kay Sievers285e9672007-08-14 14:10:39 +0200799out:
800 if (retval != sdkp->previous_state)
801 sdev_evt_send_simple(sdp, SDEV_EVT_MEDIA_CHANGE, GFP_KERNEL);
802 sdkp->previous_state = retval;
James Bottomley001aac22007-12-02 19:10:40 +0200803 kfree(sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Martin K. Petersene73aec82007-02-27 22:40:55 -0500807static int sd_sync_cache(struct scsi_disk *sdkp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 int retries, res;
Martin K. Petersene73aec82007-02-27 22:40:55 -0500810 struct scsi_device *sdp = sdkp->device;
James Bottomleyea73a9f2005-08-28 11:33:52 -0500811 struct scsi_sense_hdr sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 if (!scsi_device_online(sdp))
814 return -ENODEV;
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 for (retries = 3; retries > 0; --retries) {
818 unsigned char cmd[10] = { 0 };
819
820 cmd[0] = SYNCHRONIZE_CACHE;
821 /*
822 * Leave the rest of the command zero to indicate
823 * flush everything.
824 */
James Bottomleyea73a9f2005-08-28 11:33:52 -0500825 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
826 SD_TIMEOUT, SD_MAX_RETRIES);
827 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 break;
829 }
830
Martin K. Petersene73aec82007-02-27 22:40:55 -0500831 if (res) {
832 sd_print_result(sdkp, res);
833 if (driver_byte(res) & DRIVER_SENSE)
834 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836
Tejun Heo37210502007-03-21 00:07:18 +0900837 if (res)
838 return -EIO;
839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Jens Axboe165125e2007-07-24 09:28:11 +0200842static void sd_prepare_flush(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500844 memset(rq->cmd, 0, sizeof(rq->cmd));
Jens Axboe4aff5e22006-08-10 08:44:47 +0200845 rq->cmd_type = REQ_TYPE_BLOCK_PC;
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500846 rq->timeout = SD_TIMEOUT;
847 rq->cmd[0] = SYNCHRONIZE_CACHE;
Tejun Heo461d4e92006-01-06 09:52:55 +0100848 rq->cmd_len = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
851static void sd_rescan(struct device *dev)
852{
Alan Stern39b7f1e2005-11-04 14:44:41 -0500853 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
854
855 if (sdkp) {
856 sd_revalidate_disk(sdkp->disk);
857 scsi_disk_put(sdkp);
858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
861
862#ifdef CONFIG_COMPAT
863/*
864 * This gets directly called from VFS. When the ioctl
865 * is not recognized we go back to the other translation paths.
866 */
867static long sd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
868{
Josef Sipek7ac62072006-12-08 02:37:37 -0800869 struct block_device *bdev = file->f_path.dentry->d_inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 struct gendisk *disk = bdev->bd_disk;
871 struct scsi_device *sdev = scsi_disk(disk)->device;
872
873 /*
874 * If we are in the middle of error recovery, don't let anyone
875 * else try and use this device. Also, if error recovery fails, it
876 * may try and take the device offline, in which case all further
877 * access to the device is prohibited.
878 */
879 if (!scsi_block_when_processing_errors(sdev))
880 return -ENODEV;
881
882 if (sdev->host->hostt->compat_ioctl) {
883 int ret;
884
885 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
886
887 return ret;
888 }
889
890 /*
891 * Let the static ioctl translation table take care of it.
892 */
893 return -ENOIOCTLCMD;
894}
895#endif
896
897static struct block_device_operations sd_fops = {
898 .owner = THIS_MODULE,
899 .open = sd_open,
900 .release = sd_release,
901 .ioctl = sd_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800902 .getgeo = sd_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903#ifdef CONFIG_COMPAT
904 .compat_ioctl = sd_compat_ioctl,
905#endif
906 .media_changed = sd_media_changed,
907 .revalidate_disk = sd_revalidate_disk,
908};
909
910/**
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800911 * sd_done - bottom half handler: called when the lower level
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 * driver has completed (successfully or otherwise) a scsi command.
913 * @SCpnt: mid-level's per command structure.
914 *
915 * Note: potentially run from within an ISR. Must not block.
916 **/
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800917static int sd_done(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
919 int result = SCpnt->result;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700920 unsigned int xfer_size = SCpnt->request_bufflen;
921 unsigned int good_bytes = result ? 0 : xfer_size;
922 u64 start_lba = SCpnt->request->sector;
923 u64 bad_lba;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 struct scsi_sense_hdr sshdr;
925 int sense_valid = 0;
926 int sense_deferred = 0;
927 int info_valid;
928
929 if (result) {
930 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
931 if (sense_valid)
932 sense_deferred = scsi_sense_is_deferred(&sshdr);
933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934#ifdef CONFIG_SCSI_LOGGING
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500935 SCSI_LOG_HLCOMPLETE(1, scsi_print_result(SCpnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if (sense_valid) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500937 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, SCpnt,
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800938 "sd_done: sb[respc,sk,asc,"
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500939 "ascq]=%x,%x,%x,%x\n",
940 sshdr.response_code,
941 sshdr.sense_key, sshdr.asc,
942 sshdr.ascq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944#endif
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700945 if (driver_byte(result) != DRIVER_SENSE &&
946 (!sense_valid || sense_deferred))
947 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700949 switch (sshdr.sense_key) {
950 case HARDWARE_ERROR:
951 case MEDIUM_ERROR:
952 if (!blk_fs_request(SCpnt->request))
953 goto out;
954 info_valid = scsi_get_sense_info_fld(SCpnt->sense_buffer,
955 SCSI_SENSE_BUFFERSIZE,
956 &bad_lba);
957 if (!info_valid)
958 goto out;
959 if (xfer_size <= SCpnt->device->sector_size)
960 goto out;
961 switch (SCpnt->device->sector_size) {
962 case 256:
963 start_lba <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700965 case 512:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700967 case 1024:
968 start_lba >>= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700970 case 2048:
971 start_lba >>= 2;
972 break;
973 case 4096:
974 start_lba >>= 3;
975 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 default:
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700977 /* Print something here with limiting frequency. */
978 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 break;
980 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700981 /* This computation should always be done in terms of
982 * the resolution of the device's medium.
983 */
984 good_bytes = (bad_lba - start_lba)*SCpnt->device->sector_size;
985 break;
986 case RECOVERED_ERROR:
987 case NO_SENSE:
988 /* Inform the user, but make sure that it's not treated
989 * as a hard error.
990 */
991 scsi_print_sense("sd", SCpnt);
992 SCpnt->result = 0;
993 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
994 good_bytes = xfer_size;
995 break;
996 case ILLEGAL_REQUEST:
997 if (SCpnt->device->use_10_for_rw &&
998 (SCpnt->cmnd[0] == READ_10 ||
999 SCpnt->cmnd[0] == WRITE_10))
1000 SCpnt->device->use_10_for_rw = 0;
1001 if (SCpnt->device->use_10_for_ms &&
1002 (SCpnt->cmnd[0] == MODE_SENSE_10 ||
1003 SCpnt->cmnd[0] == MODE_SELECT_10))
1004 SCpnt->device->use_10_for_ms = 0;
1005 break;
1006 default:
1007 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001009 out:
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001010 return good_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
James Bottomleyea73a9f2005-08-28 11:33:52 -05001013static int media_not_present(struct scsi_disk *sdkp,
1014 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
James Bottomleyea73a9f2005-08-28 11:33:52 -05001017 if (!scsi_sense_valid(sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 return 0;
1019 /* not invoked for commands that could return deferred errors */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001020 if (sshdr->sense_key != NOT_READY &&
1021 sshdr->sense_key != UNIT_ATTENTION)
1022 return 0;
1023 if (sshdr->asc != 0x3A) /* medium not present */
1024 return 0;
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 set_media_not_present(sdkp);
1027 return 1;
1028}
1029
1030/*
1031 * spinup disk - called only in sd_revalidate_disk()
1032 */
1033static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001034sd_spinup_disk(struct scsi_disk *sdkp)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001035{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 unsigned char cmd[10];
Alan Stern4451e472005-07-12 10:45:17 -04001037 unsigned long spintime_expire = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 int retries, spintime;
1039 unsigned int the_result;
1040 struct scsi_sense_hdr sshdr;
1041 int sense_valid = 0;
1042
1043 spintime = 0;
1044
1045 /* Spin up drives, as required. Only do this at boot time */
1046 /* Spinup needs to be done for module loads too. */
1047 do {
1048 retries = 0;
1049
1050 do {
1051 cmd[0] = TEST_UNIT_READY;
1052 memset((void *) &cmd[1], 0, 9);
1053
James Bottomleyea73a9f2005-08-28 11:33:52 -05001054 the_result = scsi_execute_req(sdkp->device, cmd,
1055 DMA_NONE, NULL, 0,
1056 &sshdr, SD_TIMEOUT,
1057 SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Alan Sternb4d38e32006-10-11 16:48:28 -04001059 /*
1060 * If the drive has indicated to us that it
1061 * doesn't have any media in it, don't bother
1062 * with any more polling.
1063 */
1064 if (media_not_present(sdkp, &sshdr))
1065 return;
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001068 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 retries++;
1070 } while (retries < 3 &&
1071 (!scsi_status_is_good(the_result) ||
1072 ((driver_byte(the_result) & DRIVER_SENSE) &&
1073 sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1076 /* no sense, TUR either succeeded or failed
1077 * with a status error */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001078 if(!spintime && !scsi_status_is_good(the_result)) {
1079 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1080 sd_print_result(sdkp, the_result);
1081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 break;
1083 }
1084
1085 /*
1086 * The device does not want the automatic start to be issued.
1087 */
1088 if (sdkp->device->no_start_on_add) {
1089 break;
1090 }
1091
1092 /*
1093 * If manual intervention is required, or this is an
1094 * absent USB storage device, a spinup is meaningless.
1095 */
1096 if (sense_valid &&
1097 sshdr.sense_key == NOT_READY &&
1098 sshdr.asc == 4 && sshdr.ascq == 3) {
1099 break; /* manual intervention required */
1100
1101 /*
1102 * Issue command to spin up drive when not ready
1103 */
1104 } else if (sense_valid && sshdr.sense_key == NOT_READY) {
1105 if (!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001106 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 cmd[0] = START_STOP;
1108 cmd[1] = 1; /* Return immediately */
1109 memset((void *) &cmd[2], 0, 8);
1110 cmd[4] = 1; /* Start spin cycle */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001111 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1112 NULL, 0, &sshdr,
1113 SD_TIMEOUT, SD_MAX_RETRIES);
Alan Stern4451e472005-07-12 10:45:17 -04001114 spintime_expire = jiffies + 100 * HZ;
1115 spintime = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 /* Wait 1 second for next try */
1118 msleep(1000);
1119 printk(".");
Alan Stern4451e472005-07-12 10:45:17 -04001120
1121 /*
1122 * Wait for USB flash devices with slow firmware.
1123 * Yes, this sense key/ASC combination shouldn't
1124 * occur here. It's characteristic of these devices.
1125 */
1126 } else if (sense_valid &&
1127 sshdr.sense_key == UNIT_ATTENTION &&
1128 sshdr.asc == 0x28) {
1129 if (!spintime) {
1130 spintime_expire = jiffies + 5 * HZ;
1131 spintime = 1;
1132 }
1133 /* Wait 1 second for next try */
1134 msleep(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 } else {
1136 /* we don't understand the sense code, so it's
1137 * probably pointless to loop */
1138 if(!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001139 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1140 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
1142 break;
1143 }
1144
Alan Stern4451e472005-07-12 10:45:17 -04001145 } while (spintime && time_before_eq(jiffies, spintime_expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 if (spintime) {
1148 if (scsi_status_is_good(the_result))
1149 printk("ready\n");
1150 else
1151 printk("not responding...\n");
1152 }
1153}
1154
1155/*
1156 * read disk capacity
1157 */
1158static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001159sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001160{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 unsigned char cmd[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 int the_result, retries;
1163 int sector_size = 0;
1164 int longrc = 0;
1165 struct scsi_sense_hdr sshdr;
1166 int sense_valid = 0;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001167 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169repeat:
1170 retries = 3;
1171 do {
1172 if (longrc) {
1173 memset((void *) cmd, 0, 16);
1174 cmd[0] = SERVICE_ACTION_IN;
1175 cmd[1] = SAI_READ_CAPACITY_16;
1176 cmd[13] = 12;
1177 memset((void *) buffer, 0, 12);
1178 } else {
1179 cmd[0] = READ_CAPACITY;
1180 memset((void *) &cmd[1], 0, 9);
1181 memset((void *) buffer, 0, 8);
1182 }
1183
James Bottomleyea73a9f2005-08-28 11:33:52 -05001184 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
1185 buffer, longrc ? 12 : 8, &sshdr,
1186 SD_TIMEOUT, SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
James Bottomleyea73a9f2005-08-28 11:33:52 -05001188 if (media_not_present(sdkp, &sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return;
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001192 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 retries--;
1194
1195 } while (the_result && retries);
1196
1197 if (the_result && !longrc) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001198 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY failed\n");
1199 sd_print_result(sdkp, the_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 if (driver_byte(the_result) & DRIVER_SENSE)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001201 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001203 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 /* Set dirty bit for removable devices if not ready -
1206 * sometimes drives will not report this properly. */
1207 if (sdp->removable &&
1208 sense_valid && sshdr.sense_key == NOT_READY)
1209 sdp->changed = 1;
1210
1211 /* Either no media are present but the drive didn't tell us,
1212 or they are present but the read capacity command fails */
1213 /* sdkp->media_present = 0; -- not always correct */
Hannes Reinecke69bdd882006-09-01 15:50:23 +02001214 sdkp->capacity = 0; /* unknown mapped to zero - as usual */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 return;
1217 } else if (the_result && longrc) {
1218 /* READ CAPACITY(16) has been failed */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001219 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY(16) failed\n");
1220 sd_print_result(sdkp, the_result);
1221 sd_printk(KERN_NOTICE, sdkp, "Use 0xffffffff as device size\n");
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 sdkp->capacity = 1 + (sector_t) 0xffffffff;
1224 goto got_data;
1225 }
1226
1227 if (!longrc) {
1228 sector_size = (buffer[4] << 24) |
1229 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
1230 if (buffer[0] == 0xff && buffer[1] == 0xff &&
1231 buffer[2] == 0xff && buffer[3] == 0xff) {
1232 if(sizeof(sdkp->capacity) > 4) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001233 sd_printk(KERN_NOTICE, sdkp, "Very big device. "
1234 "Trying to use READ CAPACITY(16).\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 longrc = 1;
1236 goto repeat;
1237 }
Martin K. Petersene73aec82007-02-27 22:40:55 -05001238 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use "
1239 "a kernel compiled with support for large "
1240 "block devices.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 sdkp->capacity = 0;
1242 goto got_data;
1243 }
1244 sdkp->capacity = 1 + (((sector_t)buffer[0] << 24) |
1245 (buffer[1] << 16) |
1246 (buffer[2] << 8) |
1247 buffer[3]);
1248 } else {
1249 sdkp->capacity = 1 + (((u64)buffer[0] << 56) |
1250 ((u64)buffer[1] << 48) |
1251 ((u64)buffer[2] << 40) |
1252 ((u64)buffer[3] << 32) |
1253 ((sector_t)buffer[4] << 24) |
1254 ((sector_t)buffer[5] << 16) |
1255 ((sector_t)buffer[6] << 8) |
1256 (sector_t)buffer[7]);
1257
1258 sector_size = (buffer[8] << 24) |
1259 (buffer[9] << 16) | (buffer[10] << 8) | buffer[11];
1260 }
1261
1262 /* Some devices return the total number of sectors, not the
1263 * highest sector number. Make the necessary adjustment. */
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001264 if (sdp->fix_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 --sdkp->capacity;
1266
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001267 /* Some devices have version which report the correct sizes
1268 * and others which do not. We guess size according to a heuristic
1269 * and err on the side of lowering the capacity. */
1270 } else {
1271 if (sdp->guess_capacity)
1272 if (sdkp->capacity & 0x01) /* odd sizes are odd */
1273 --sdkp->capacity;
1274 }
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276got_data:
1277 if (sector_size == 0) {
1278 sector_size = 512;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001279 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
1280 "assuming 512.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
1282
1283 if (sector_size != 512 &&
1284 sector_size != 1024 &&
1285 sector_size != 2048 &&
1286 sector_size != 4096 &&
1287 sector_size != 256) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001288 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
1289 sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 /*
1291 * The user might want to re-format the drive with
1292 * a supported sectorsize. Once this happens, it
1293 * would be relatively trivial to set the thing up.
1294 * For this reason, we leave the thing in the table.
1295 */
1296 sdkp->capacity = 0;
1297 /*
1298 * set a bogus sector size so the normal read/write
1299 * logic in the block layer will eventually refuse any
1300 * request on this device without tripping over power
1301 * of two sector size assumptions
1302 */
1303 sector_size = 512;
1304 }
1305 {
1306 /*
1307 * The msdos fs needs to know the hardware sector size
1308 * So I have created this table. See ll_rw_blk.c
1309 * Jacques Gelinas (Jacques@solucorp.qc.ca)
1310 */
1311 int hard_sector = sector_size;
James Bottomley7a691bd2005-10-28 13:17:30 -05001312 sector_t sz = (sdkp->capacity/2) * (hard_sector/256);
Jens Axboe165125e2007-07-24 09:28:11 +02001313 struct request_queue *queue = sdp->request_queue;
James Bottomley7a691bd2005-10-28 13:17:30 -05001314 sector_t mb = sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 blk_queue_hardsect_size(queue, hard_sector);
1317 /* avoid 64-bit division on 32-bit platforms */
James Bottomley7a691bd2005-10-28 13:17:30 -05001318 sector_div(sz, 625);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 mb -= sz - 974;
1320 sector_div(mb, 1950);
1321
Martin K. Petersene73aec82007-02-27 22:40:55 -05001322 sd_printk(KERN_NOTICE, sdkp,
1323 "%llu %d-byte hardware sectors (%llu MB)\n",
1324 (unsigned long long)sdkp->capacity,
1325 hard_sector, (unsigned long long)mb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
1327
1328 /* Rescale capacity to 512-byte units */
1329 if (sector_size == 4096)
1330 sdkp->capacity <<= 3;
1331 else if (sector_size == 2048)
1332 sdkp->capacity <<= 2;
1333 else if (sector_size == 1024)
1334 sdkp->capacity <<= 1;
1335 else if (sector_size == 256)
1336 sdkp->capacity >>= 1;
1337
1338 sdkp->device->sector_size = sector_size;
1339}
1340
1341/* called with buffer of length 512 */
1342static inline int
James Bottomleyea73a9f2005-08-28 11:33:52 -05001343sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
1344 unsigned char *buffer, int len, struct scsi_mode_data *data,
1345 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
James Bottomleyea73a9f2005-08-28 11:33:52 -05001347 return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
James Bottomley1cf72692005-08-28 11:27:01 -05001348 SD_TIMEOUT, SD_MAX_RETRIES, data,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001349 sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
1352/*
1353 * read write protect setting, if possible - called only in sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001354 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 */
1356static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001357sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001358{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 int res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001360 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 struct scsi_mode_data data;
1362
1363 set_disk_ro(sdkp->disk, 0);
James Bottomleyea73a9f2005-08-28 11:33:52 -05001364 if (sdp->skip_ms_page_3f) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001365 sd_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return;
1367 }
1368
James Bottomleyea73a9f2005-08-28 11:33:52 -05001369 if (sdp->use_192_bytes_for_3f) {
1370 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 } else {
1372 /*
1373 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1374 * We have to start carefully: some devices hang if we ask
1375 * for more than is available.
1376 */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001377 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 /*
1380 * Second attempt: ask for page 0 When only page 0 is
1381 * implemented, a request for page 3F may return Sense Key
1382 * 5: Illegal Request, Sense Code 24: Invalid field in
1383 * CDB.
1384 */
1385 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001386 res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 /*
1389 * Third attempt: ask 255 bytes, as we did earlier.
1390 */
1391 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001392 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
1393 &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395
1396 if (!scsi_status_is_good(res)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001397 sd_printk(KERN_WARNING, sdkp,
1398 "Test WP failed, assume Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 } else {
1400 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
1401 set_disk_ro(sdkp->disk, sdkp->write_prot);
Martin K. Petersene73aec82007-02-27 22:40:55 -05001402 sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
1403 sdkp->write_prot ? "on" : "off");
1404 sd_printk(KERN_DEBUG, sdkp,
1405 "Mode Sense: %02x %02x %02x %02x\n",
1406 buffer[0], buffer[1], buffer[2], buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
1408}
1409
1410/*
1411 * sd_read_cache_type - called only from sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001412 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 */
1414static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001415sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
Al Viro 631e8a12005-05-16 01:59:55 +01001416{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 int len = 0, res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001418 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Al Viro 631e8a12005-05-16 01:59:55 +01001420 int dbd;
1421 int modepage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 struct scsi_mode_data data;
1423 struct scsi_sense_hdr sshdr;
1424
James Bottomleyea73a9f2005-08-28 11:33:52 -05001425 if (sdp->skip_ms_page_8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 goto defaults;
1427
James Bottomleyea73a9f2005-08-28 11:33:52 -05001428 if (sdp->type == TYPE_RBC) {
Al Viro 631e8a12005-05-16 01:59:55 +01001429 modepage = 6;
1430 dbd = 8;
1431 } else {
1432 modepage = 8;
1433 dbd = 0;
1434 }
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 /* cautiously ask */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001437 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, 4, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 if (!scsi_status_is_good(res))
1440 goto bad_sense;
1441
Al Viro6d73c852006-02-23 02:03:16 +01001442 if (!data.header_length) {
1443 modepage = 6;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001444 sd_printk(KERN_ERR, sdkp, "Missing header in MODE_SENSE response\n");
Al Viro6d73c852006-02-23 02:03:16 +01001445 }
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 /* that went OK, now ask for the proper length */
1448 len = data.length;
1449
1450 /*
1451 * We're only interested in the first three bytes, actually.
1452 * But the data cache page is defined for the first 20.
1453 */
1454 if (len < 3)
1455 goto bad_sense;
1456 if (len > 20)
1457 len = 20;
1458
1459 /* Take headers and block descriptors into account */
1460 len += data.header_length + data.block_descriptor_length;
Al Viro48970802006-02-26 08:34:10 -06001461 if (len > SD_BUF_SIZE)
1462 goto bad_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 /* Get the data */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001465 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 if (scsi_status_is_good(res)) {
Al Viro 631e8a12005-05-16 01:59:55 +01001468 int offset = data.header_length + data.block_descriptor_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Al Viro48970802006-02-26 08:34:10 -06001470 if (offset >= SD_BUF_SIZE - 2) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001471 sd_printk(KERN_ERR, sdkp, "Malformed MODE SENSE response\n");
Al Viro48970802006-02-26 08:34:10 -06001472 goto defaults;
1473 }
1474
Al Viro 631e8a12005-05-16 01:59:55 +01001475 if ((buffer[offset] & 0x3f) != modepage) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001476 sd_printk(KERN_ERR, sdkp, "Got wrong page\n");
Al Viro 631e8a12005-05-16 01:59:55 +01001477 goto defaults;
1478 }
1479
1480 if (modepage == 8) {
1481 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
1482 sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
1483 } else {
1484 sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
1485 sdkp->RCD = 0;
1486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Tejun Heo007365a2006-01-06 09:53:52 +01001488 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
1489 if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001490 sd_printk(KERN_NOTICE, sdkp,
1491 "Uses READ/WRITE(6), disabling FUA\n");
Tejun Heo007365a2006-01-06 09:53:52 +01001492 sdkp->DPOFUA = 0;
1493 }
1494
Martin K. Petersene73aec82007-02-27 22:40:55 -05001495 sd_printk(KERN_NOTICE, sdkp,
1496 "Write cache: %s, read cache: %s, %s\n",
Luben Tuikovfd44bab2006-11-15 12:47:08 -08001497 sdkp->WCE ? "enabled" : "disabled",
1498 sdkp->RCD ? "disabled" : "enabled",
1499 sdkp->DPOFUA ? "supports DPO and FUA"
1500 : "doesn't support DPO or FUA");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 return;
1503 }
1504
1505bad_sense:
James Bottomleyea73a9f2005-08-28 11:33:52 -05001506 if (scsi_sense_valid(&sshdr) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 sshdr.sense_key == ILLEGAL_REQUEST &&
1508 sshdr.asc == 0x24 && sshdr.ascq == 0x0)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001509 /* Invalid field in CDB */
1510 sd_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001512 sd_printk(KERN_ERR, sdkp, "Asking for cache data failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514defaults:
Martin K. Petersene73aec82007-02-27 22:40:55 -05001515 sd_printk(KERN_ERR, sdkp, "Assuming drive cache: write through\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 sdkp->WCE = 0;
1517 sdkp->RCD = 0;
Al Viro48970802006-02-26 08:34:10 -06001518 sdkp->DPOFUA = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520
1521/**
1522 * sd_revalidate_disk - called the first time a new disk is seen,
1523 * performs disk spin up, read_capacity, etc.
1524 * @disk: struct gendisk we care about
1525 **/
1526static int sd_revalidate_disk(struct gendisk *disk)
1527{
1528 struct scsi_disk *sdkp = scsi_disk(disk);
1529 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 unsigned char *buffer;
Tejun Heo461d4e92006-01-06 09:52:55 +01001531 unsigned ordered;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001533 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp,
1534 "sd_revalidate_disk\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 /*
1537 * If the device is offline, don't try and read capacity or any
1538 * of the other niceties.
1539 */
1540 if (!scsi_device_online(sdp))
1541 goto out;
1542
Bernhard Wallea6123f12007-05-21 17:15:26 +02001543 buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 if (!buffer) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001545 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
1546 "allocation failure.\n");
James Bottomleyea73a9f2005-08-28 11:33:52 -05001547 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
1549
1550 /* defaults, until the device tells us otherwise */
1551 sdp->sector_size = 512;
1552 sdkp->capacity = 0;
1553 sdkp->media_present = 1;
1554 sdkp->write_prot = 0;
1555 sdkp->WCE = 0;
1556 sdkp->RCD = 0;
1557
Martin K. Petersene73aec82007-02-27 22:40:55 -05001558 sd_spinup_disk(sdkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 /*
1561 * Without media there is no reason to ask; moreover, some devices
1562 * react badly if we do.
1563 */
1564 if (sdkp->media_present) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001565 sd_read_capacity(sdkp, buffer);
1566 sd_read_write_protect_flag(sdkp, buffer);
1567 sd_read_cache_type(sdkp, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 }
Tejun Heo461d4e92006-01-06 09:52:55 +01001569
1570 /*
1571 * We now have all cache related info, determine how we deal
1572 * with ordered requests. Note that as the current SCSI
1573 * dispatch function can alter request order, we cannot use
1574 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1575 */
1576 if (sdkp->WCE)
Tejun Heo007365a2006-01-06 09:53:52 +01001577 ordered = sdkp->DPOFUA
1578 ? QUEUE_ORDERED_DRAIN_FUA : QUEUE_ORDERED_DRAIN_FLUSH;
Tejun Heo461d4e92006-01-06 09:52:55 +01001579 else
1580 ordered = QUEUE_ORDERED_DRAIN;
1581
1582 blk_queue_ordered(sdkp->disk->queue, ordered, sd_prepare_flush);
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 set_capacity(disk, sdkp->capacity);
1585 kfree(buffer);
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 out:
1588 return 0;
1589}
1590
1591/**
1592 * sd_probe - called during driver initialization and whenever a
1593 * new scsi device is attached to the system. It is called once
1594 * for each scsi device (not just disks) present.
1595 * @dev: pointer to device object
1596 *
1597 * Returns 0 if successful (or not interested in this scsi device
1598 * (e.g. scanner)); 1 when there is an error.
1599 *
1600 * Note: this function is invoked from the scsi mid-level.
1601 * This function sets up the mapping between a given
1602 * <host,channel,id,lun> (found in sdp) and new device name
1603 * (e.g. /dev/sda). More precisely it is the block device major
1604 * and minor number that is chosen here.
1605 *
1606 * Assume sd_attach is not re-entrant (for time being)
1607 * Also think about sd_attach() and sd_remove() running coincidentally.
1608 **/
1609static int sd_probe(struct device *dev)
1610{
1611 struct scsi_device *sdp = to_scsi_device(dev);
1612 struct scsi_disk *sdkp;
1613 struct gendisk *gd;
1614 u32 index;
1615 int error;
1616
1617 error = -ENODEV;
Al Viro 631e8a12005-05-16 01:59:55 +01001618 if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 goto out;
1620
James Bottomley9ccfc752005-10-02 11:45:08 -05001621 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
1622 "sd_attach\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 error = -ENOMEM;
Jes Sorensen24669f752006-01-16 10:31:18 -05001625 sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 if (!sdkp)
1627 goto out;
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 gd = alloc_disk(16);
1630 if (!gd)
1631 goto out_free;
1632
1633 if (!idr_pre_get(&sd_index_idr, GFP_KERNEL))
1634 goto out_put;
1635
1636 spin_lock(&sd_index_lock);
1637 error = idr_get_new(&sd_index_idr, NULL, &index);
1638 spin_unlock(&sd_index_lock);
1639
1640 if (index >= SD_MAX_DISKS)
1641 error = -EBUSY;
1642 if (error)
1643 goto out_put;
1644
1645 sdkp->device = sdp;
1646 sdkp->driver = &sd_template;
1647 sdkp->disk = gd;
1648 sdkp->index = index;
1649 sdkp->openers = 0;
1650
1651 if (!sdp->timeout) {
Al Viro 631e8a12005-05-16 01:59:55 +01001652 if (sdp->type != TYPE_MOD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 sdp->timeout = SD_TIMEOUT;
1654 else
1655 sdp->timeout = SD_MOD_TIMEOUT;
1656 }
1657
Nagendra Singh Tomar017f2e32007-02-02 17:34:56 +05301658 class_device_initialize(&sdkp->cdev);
1659 sdkp->cdev.dev = &sdp->sdev_gendev;
1660 sdkp->cdev.class = &sd_disk_class;
1661 strncpy(sdkp->cdev.class_id, sdp->sdev_gendev.bus_id, BUS_ID_SIZE);
1662
1663 if (class_device_add(&sdkp->cdev))
1664 goto out_put;
1665
1666 get_device(&sdp->sdev_gendev);
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 gd->major = sd_major((index & 0xf0) >> 4);
1669 gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
1670 gd->minors = 16;
1671 gd->fops = &sd_fops;
1672
1673 if (index < 26) {
1674 sprintf(gd->disk_name, "sd%c", 'a' + index % 26);
1675 } else if (index < (26 + 1) * 26) {
1676 sprintf(gd->disk_name, "sd%c%c",
1677 'a' + index / 26 - 1,'a' + index % 26);
1678 } else {
1679 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
1680 const unsigned int m2 = (index / 26 - 1) % 26;
1681 const unsigned int m3 = index % 26;
1682 sprintf(gd->disk_name, "sd%c%c%c",
1683 'a' + m1, 'a' + m2, 'a' + m3);
1684 }
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 gd->private_data = &sdkp->driver;
Tejun Heo461d4e92006-01-06 09:52:55 +01001687 gd->queue = sdkp->device->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
1689 sd_revalidate_disk(gd);
1690
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001691 blk_queue_prep_rq(sdp->request_queue, sd_prep_fn);
James Bottomley03a57432007-08-03 16:41:11 -05001692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 gd->driverfs_dev = &sdp->sdev_gendev;
1694 gd->flags = GENHD_FL_DRIVERFS;
1695 if (sdp->removable)
1696 gd->flags |= GENHD_FL_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
1698 dev_set_drvdata(dev, sdkp);
1699 add_disk(gd);
1700
Martin K. Petersene73aec82007-02-27 22:40:55 -05001701 sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
1702 sdp->removable ? "removable " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704 return 0;
1705
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001706 out_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 put_disk(gd);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001708 out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 kfree(sdkp);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001710 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 return error;
1712}
1713
1714/**
1715 * sd_remove - called whenever a scsi disk (previously recognized by
1716 * sd_probe) is detached from the system. It is called (potentially
1717 * multiple times) during sd module unload.
1718 * @sdp: pointer to mid level scsi device object
1719 *
1720 * Note: this function is invoked from the scsi mid-level.
1721 * This function potentially frees up a device name (e.g. /dev/sdc)
1722 * that could be re-used by a subsequent sd_probe().
1723 * This function is not called when the built-in sd driver is "exit-ed".
1724 **/
1725static int sd_remove(struct device *dev)
1726{
1727 struct scsi_disk *sdkp = dev_get_drvdata(dev);
1728
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001729 class_device_del(&sdkp->cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 del_gendisk(sdkp->disk);
1731 sd_shutdown(dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001732
Arjan van de Ven0b950672006-01-11 13:16:10 +01001733 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001734 dev_set_drvdata(dev, NULL);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001735 class_device_put(&sdkp->cdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001736 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 return 0;
1739}
1740
1741/**
1742 * scsi_disk_release - Called to free the scsi_disk structure
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001743 * @cdev: pointer to embedded class device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 *
Arjan van de Ven0b950672006-01-11 13:16:10 +01001745 * sd_ref_mutex must be held entering this routine. Because it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 * called on last put, you should always use the scsi_disk_get()
1747 * scsi_disk_put() helpers which manipulate the semaphore directly
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001748 * and never do a direct class_device_put().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 **/
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001750static void scsi_disk_release(struct class_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751{
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001752 struct scsi_disk *sdkp = to_scsi_disk(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 struct gendisk *disk = sdkp->disk;
1754
1755 spin_lock(&sd_index_lock);
1756 idr_remove(&sd_index_idr, sdkp->index);
1757 spin_unlock(&sd_index_lock);
1758
1759 disk->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 put_disk(disk);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001761 put_device(&sdkp->device->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763 kfree(sdkp);
1764}
1765
James Bottomleycc5d2c82007-03-20 12:26:03 -05001766static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
Tejun Heoc3c94c52007-03-21 00:13:59 +09001767{
1768 unsigned char cmd[6] = { START_STOP }; /* START_VALID */
1769 struct scsi_sense_hdr sshdr;
James Bottomleycc5d2c82007-03-20 12:26:03 -05001770 struct scsi_device *sdp = sdkp->device;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001771 int res;
1772
1773 if (start)
1774 cmd[4] |= 1; /* START */
1775
1776 if (!scsi_device_online(sdp))
1777 return -ENODEV;
1778
1779 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
1780 SD_TIMEOUT, SD_MAX_RETRIES);
1781 if (res) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05001782 sd_printk(KERN_WARNING, sdkp, "START_STOP FAILED\n");
1783 sd_print_result(sdkp, res);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001784 if (driver_byte(res) & DRIVER_SENSE)
James Bottomleycc5d2c82007-03-20 12:26:03 -05001785 sd_print_sense_hdr(sdkp, &sshdr);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001786 }
1787
1788 return res;
1789}
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791/*
1792 * Send a SYNCHRONIZE CACHE instruction down to the device through
1793 * the normal SCSI command structure. Wait for the command to
1794 * complete.
1795 */
1796static void sd_shutdown(struct device *dev)
1797{
Alan Stern39b7f1e2005-11-04 14:44:41 -05001798 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800 if (!sdkp)
1801 return; /* this can happen */
1802
Alan Stern39b7f1e2005-11-04 14:44:41 -05001803 if (sdkp->WCE) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001804 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
1805 sd_sync_cache(sdkp);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001806 }
Tejun Heoc3c94c52007-03-21 00:13:59 +09001807
James Bottomleycc5d2c82007-03-20 12:26:03 -05001808 if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) {
1809 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
1810 sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001811 }
1812
Alan Stern39b7f1e2005-11-04 14:44:41 -05001813 scsi_disk_put(sdkp);
1814}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Tejun Heoc3c94c52007-03-21 00:13:59 +09001816static int sd_suspend(struct device *dev, pm_message_t mesg)
1817{
Tejun Heoc3c94c52007-03-21 00:13:59 +09001818 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04001819 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001820
1821 if (!sdkp)
1822 return 0; /* this can happen */
1823
1824 if (sdkp->WCE) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05001825 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
Tejun Heoc3c94c52007-03-21 00:13:59 +09001826 ret = sd_sync_cache(sdkp);
1827 if (ret)
Alan Stern09ff92f2007-05-21 09:55:04 -04001828 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001829 }
1830
James Bottomleycc5d2c82007-03-20 12:26:03 -05001831 if (mesg.event == PM_EVENT_SUSPEND &&
1832 sdkp->device->manage_start_stop) {
1833 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
1834 ret = sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001835 }
1836
Alan Stern09ff92f2007-05-21 09:55:04 -04001837done:
1838 scsi_disk_put(sdkp);
1839 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001840}
1841
1842static int sd_resume(struct device *dev)
1843{
Tejun Heoc3c94c52007-03-21 00:13:59 +09001844 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04001845 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001846
James Bottomleycc5d2c82007-03-20 12:26:03 -05001847 if (!sdkp->device->manage_start_stop)
Alan Stern09ff92f2007-05-21 09:55:04 -04001848 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001849
James Bottomleycc5d2c82007-03-20 12:26:03 -05001850 sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
Alan Stern09ff92f2007-05-21 09:55:04 -04001851 ret = sd_start_stop_device(sdkp, 1);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001852
Alan Stern09ff92f2007-05-21 09:55:04 -04001853done:
1854 scsi_disk_put(sdkp);
1855 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001856}
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858/**
1859 * init_sd - entry point for this driver (both when built in or when
1860 * a module).
1861 *
1862 * Note: this function registers this driver with the scsi mid-level.
1863 **/
1864static int __init init_sd(void)
1865{
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001866 int majors = 0, i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
1869
1870 for (i = 0; i < SD_MAJORS; i++)
1871 if (register_blkdev(sd_major(i), "sd") == 0)
1872 majors++;
1873
1874 if (!majors)
1875 return -ENODEV;
1876
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001877 err = class_register(&sd_disk_class);
1878 if (err)
1879 goto err_out;
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001880
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001881 err = scsi_register_driver(&sd_template.gendrv);
1882 if (err)
1883 goto err_out_class;
1884
1885 return 0;
1886
1887err_out_class:
1888 class_unregister(&sd_disk_class);
1889err_out:
1890 for (i = 0; i < SD_MAJORS; i++)
1891 unregister_blkdev(sd_major(i), "sd");
1892 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
1895/**
1896 * exit_sd - exit point for this driver (when it is a module).
1897 *
1898 * Note: this function unregisters this driver from the scsi mid-level.
1899 **/
1900static void __exit exit_sd(void)
1901{
1902 int i;
1903
1904 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
1905
1906 scsi_unregister_driver(&sd_template.gendrv);
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001907 class_unregister(&sd_disk_class);
1908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 for (i = 0; i < SD_MAJORS; i++)
1910 unregister_blkdev(sd_major(i), "sd");
1911}
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913module_init(init_sd);
1914module_exit(exit_sd);
Martin K. Petersene73aec82007-02-27 22:40:55 -05001915
1916static void sd_print_sense_hdr(struct scsi_disk *sdkp,
1917 struct scsi_sense_hdr *sshdr)
1918{
1919 sd_printk(KERN_INFO, sdkp, "");
1920 scsi_show_sense_hdr(sshdr);
1921 sd_printk(KERN_INFO, sdkp, "");
1922 scsi_show_extd_sense(sshdr->asc, sshdr->ascq);
1923}
1924
1925static void sd_print_result(struct scsi_disk *sdkp, int result)
1926{
1927 sd_printk(KERN_INFO, sdkp, "");
1928 scsi_show_result(result);
1929}
1930