blob: 3cea17dd5dbac5b80619e9ee7a34732401ee586d [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);
Tony Jonesee959b02008-02-22 00:13:36 +010098static void scsi_disk_release(struct device *cdev);
Linus Torvalds7b3d9542008-01-06 10:17:12 -080099static 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
Tony Jonesee959b02008-02-22 00:13:36 +0100115static ssize_t
116sd_store_cache_type(struct device *dev, struct device_attribute *attr,
117 const char *buf, size_t count)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600118{
119 int i, ct = -1, rcd, wce, sp;
Tony Jonesee959b02008-02-22 00:13:36 +0100120 struct scsi_disk *sdkp = to_scsi_disk(dev);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600121 struct scsi_device *sdp = sdkp->device;
122 char buffer[64];
123 char *buffer_data;
124 struct scsi_mode_data data;
125 struct scsi_sense_hdr sshdr;
126 int len;
127
128 if (sdp->type != TYPE_DISK)
129 /* no cache control on RBC devices; theoretically they
130 * can do it, but there's probably so many exceptions
131 * it's not worth the risk */
132 return -EINVAL;
133
Tobias Klauser6391a112006-06-08 22:23:48 -0700134 for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600135 const int len = strlen(sd_cache_types[i]);
136 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
137 buf[len] == '\n') {
138 ct = i;
139 break;
140 }
141 }
142 if (ct < 0)
143 return -EINVAL;
144 rcd = ct & 0x01 ? 1 : 0;
145 wce = ct & 0x02 ? 1 : 0;
146 if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
147 SD_MAX_RETRIES, &data, NULL))
148 return -EINVAL;
Andrew Mortona9312fb2006-03-25 03:08:30 -0800149 len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600150 data.block_descriptor_length);
151 buffer_data = buffer + data.header_length +
152 data.block_descriptor_length;
153 buffer_data[2] &= ~0x05;
154 buffer_data[2] |= wce << 2 | rcd;
155 sp = buffer_data[0] & 0x80 ? 1 : 0;
156
157 if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
158 SD_MAX_RETRIES, &data, &sshdr)) {
159 if (scsi_sense_valid(&sshdr))
Martin K. Petersene73aec82007-02-27 22:40:55 -0500160 sd_print_sense_hdr(sdkp, &sshdr);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600161 return -EINVAL;
162 }
163 sd_revalidate_disk(sdkp->disk);
164 return count;
165}
166
Tony Jonesee959b02008-02-22 00:13:36 +0100167static ssize_t
168sd_store_manage_start_stop(struct device *dev, struct device_attribute *attr,
169 const char *buf, size_t count)
Tejun Heoc3c94c52007-03-21 00:13:59 +0900170{
Tony Jonesee959b02008-02-22 00:13:36 +0100171 struct scsi_disk *sdkp = to_scsi_disk(dev);
Tejun Heoc3c94c52007-03-21 00:13:59 +0900172 struct scsi_device *sdp = sdkp->device;
173
174 if (!capable(CAP_SYS_ADMIN))
175 return -EACCES;
176
177 sdp->manage_start_stop = simple_strtoul(buf, NULL, 10);
178
179 return count;
180}
181
Tony Jonesee959b02008-02-22 00:13:36 +0100182static ssize_t
183sd_store_allow_restart(struct device *dev, struct device_attribute *attr,
184 const char *buf, size_t count)
Brian Kinga144c5a2006-06-27 11:10:31 -0500185{
Tony Jonesee959b02008-02-22 00:13:36 +0100186 struct scsi_disk *sdkp = to_scsi_disk(dev);
Brian Kinga144c5a2006-06-27 11:10:31 -0500187 struct scsi_device *sdp = sdkp->device;
188
189 if (!capable(CAP_SYS_ADMIN))
190 return -EACCES;
191
192 if (sdp->type != TYPE_DISK)
193 return -EINVAL;
194
195 sdp->allow_restart = simple_strtoul(buf, NULL, 10);
196
197 return count;
198}
199
Tony Jonesee959b02008-02-22 00:13:36 +0100200static ssize_t
201sd_show_cache_type(struct device *dev, struct device_attribute *attr,
202 char *buf)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600203{
Tony Jonesee959b02008-02-22 00:13:36 +0100204 struct scsi_disk *sdkp = to_scsi_disk(dev);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600205 int ct = sdkp->RCD + 2*sdkp->WCE;
206
207 return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
208}
209
Tony Jonesee959b02008-02-22 00:13:36 +0100210static ssize_t
211sd_show_fua(struct device *dev, struct device_attribute *attr, char *buf)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600212{
Tony Jonesee959b02008-02-22 00:13:36 +0100213 struct scsi_disk *sdkp = to_scsi_disk(dev);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600214
215 return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
216}
217
Tony Jonesee959b02008-02-22 00:13:36 +0100218static ssize_t
219sd_show_manage_start_stop(struct device *dev, struct device_attribute *attr,
220 char *buf)
Tejun Heoc3c94c52007-03-21 00:13:59 +0900221{
Tony Jonesee959b02008-02-22 00:13:36 +0100222 struct scsi_disk *sdkp = to_scsi_disk(dev);
Tejun Heoc3c94c52007-03-21 00:13:59 +0900223 struct scsi_device *sdp = sdkp->device;
224
225 return snprintf(buf, 20, "%u\n", sdp->manage_start_stop);
226}
227
Tony Jonesee959b02008-02-22 00:13:36 +0100228static ssize_t
229sd_show_allow_restart(struct device *dev, struct device_attribute *attr,
230 char *buf)
Brian Kinga144c5a2006-06-27 11:10:31 -0500231{
Tony Jonesee959b02008-02-22 00:13:36 +0100232 struct scsi_disk *sdkp = to_scsi_disk(dev);
Brian Kinga144c5a2006-06-27 11:10:31 -0500233
234 return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
235}
236
Tony Jonesee959b02008-02-22 00:13:36 +0100237static struct device_attribute sd_disk_attrs[] = {
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600238 __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
239 sd_store_cache_type),
240 __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
Brian Kinga144c5a2006-06-27 11:10:31 -0500241 __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
242 sd_store_allow_restart),
Tejun Heoc3c94c52007-03-21 00:13:59 +0900243 __ATTR(manage_start_stop, S_IRUGO|S_IWUSR, sd_show_manage_start_stop,
244 sd_store_manage_start_stop),
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600245 __ATTR_NULL,
246};
247
248static struct class sd_disk_class = {
249 .name = "scsi_disk",
250 .owner = THIS_MODULE,
Tony Jonesee959b02008-02-22 00:13:36 +0100251 .dev_release = scsi_disk_release,
252 .dev_attrs = sd_disk_attrs,
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600253};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255static struct scsi_driver sd_template = {
256 .owner = THIS_MODULE,
257 .gendrv = {
258 .name = "sd",
259 .probe = sd_probe,
260 .remove = sd_remove,
Tejun Heoc3c94c52007-03-21 00:13:59 +0900261 .suspend = sd_suspend,
262 .resume = sd_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 .shutdown = sd_shutdown,
264 },
265 .rescan = sd_rescan,
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800266 .done = sd_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267};
268
269/*
270 * Device no to disk mapping:
271 *
272 * major disc2 disc p1
273 * |............|.............|....|....| <- dev_t
274 * 31 20 19 8 7 4 3 0
275 *
276 * Inside a major, we have 16k disks, however mapped non-
277 * contiguously. The first 16 disks are for major0, the next
278 * ones with major1, ... Disk 256 is for major0 again, disk 272
279 * for major1, ...
280 * As we stay compatible with our numbering scheme, we can reuse
281 * the well-know SCSI majors 8, 65--71, 136--143.
282 */
283static int sd_major(int major_idx)
284{
285 switch (major_idx) {
286 case 0:
287 return SCSI_DISK0_MAJOR;
288 case 1 ... 7:
289 return SCSI_DISK1_MAJOR + major_idx - 1;
290 case 8 ... 15:
291 return SCSI_DISK8_MAJOR + major_idx - 8;
292 default:
293 BUG();
294 return 0; /* shut up gcc */
295 }
296}
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298static inline struct scsi_disk *scsi_disk(struct gendisk *disk)
299{
300 return container_of(disk->private_data, struct scsi_disk, driver);
301}
302
Alan Stern39b7f1e2005-11-04 14:44:41 -0500303static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
305 struct scsi_disk *sdkp = NULL;
306
Alan Stern39b7f1e2005-11-04 14:44:41 -0500307 if (disk->private_data) {
308 sdkp = scsi_disk(disk);
309 if (scsi_device_get(sdkp->device) == 0)
Tony Jonesee959b02008-02-22 00:13:36 +0100310 get_device(&sdkp->dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500311 else
312 sdkp = NULL;
313 }
314 return sdkp;
315}
316
317static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
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 = __scsi_disk_get(disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100323 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return sdkp;
Alan Stern39b7f1e2005-11-04 14:44:41 -0500325}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Alan Stern39b7f1e2005-11-04 14:44:41 -0500327static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
328{
329 struct scsi_disk *sdkp;
330
Arjan van de Ven0b950672006-01-11 13:16:10 +0100331 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500332 sdkp = dev_get_drvdata(dev);
333 if (sdkp)
334 sdkp = __scsi_disk_get(sdkp->disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100335 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return sdkp;
337}
338
339static void scsi_disk_put(struct scsi_disk *sdkp)
340{
341 struct scsi_device *sdev = sdkp->device;
342
Arjan van de Ven0b950672006-01-11 13:16:10 +0100343 mutex_lock(&sd_ref_mutex);
Tony Jonesee959b02008-02-22 00:13:36 +0100344 put_device(&sdkp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 scsi_device_put(sdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100346 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
349/**
350 * sd_init_command - build a scsi (read or write) command from
351 * information in the request structure.
352 * @SCpnt: pointer to mid-level's per scsi command structure that
353 * contains request and into which the scsi command is written
354 *
355 * Returns 1 if successful and 0 if error (or cannot be done now).
356 **/
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500357static int sd_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500359 struct scsi_cmnd *SCpnt;
360 struct scsi_device *sdp = q->queuedata;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100361 struct gendisk *disk = rq->rq_disk;
362 sector_t block = rq->sector;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500363 unsigned int this_count = rq->nr_sectors;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100364 unsigned int timeout = sdp->timeout;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500365 int ret;
366
367 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
368 ret = scsi_setup_blk_pc_cmnd(sdp, rq);
369 goto out;
370 } else if (rq->cmd_type != REQ_TYPE_FS) {
371 ret = BLKPREP_KILL;
372 goto out;
373 }
374 ret = scsi_setup_fs_cmnd(sdp, rq);
375 if (ret != BLKPREP_OK)
376 goto out;
377 SCpnt = rq->special;
378
379 /* from here on until we're complete, any goto out
380 * is used for a killable error condition */
381 ret = BLKPREP_KILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500383 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
384 "sd_init_command: block=%llu, "
385 "count=%d\n",
386 (unsigned long long)block,
387 this_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 if (!sdp || !scsi_device_online(sdp) ||
390 block + rq->nr_sectors > get_capacity(disk)) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500391 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
392 "Finishing %ld sectors\n",
393 rq->nr_sectors));
394 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
395 "Retry with 0x%p\n", SCpnt));
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500396 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
398
399 if (sdp->changed) {
400 /*
401 * quietly refuse to do anything to a changed disc until
402 * the changed bit has been reset
403 */
404 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500405 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500407
Hans de Goedea0899d42008-01-20 11:12:26 +0100408 /*
409 * Some devices (some sdcards for one) don't like it if the
410 * last sector gets read in a larger then 1 sector read.
411 */
412 if (unlikely(sdp->last_sector_bug &&
413 rq->nr_sectors > sdp->sector_size / 512 &&
414 block + this_count == get_capacity(disk)))
415 this_count -= sdp->sector_size / 512;
416
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500417 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, "block=%llu\n",
418 (unsigned long long)block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 /*
421 * If we have a 1K hardware sectorsize, prevent access to single
422 * 512 byte sectors. In theory we could handle this - in fact
423 * the scsi cdrom driver must be able to handle this because
424 * we typically use 1K blocksizes, and cdroms typically have
425 * 2K hardware sectorsizes. Of course, things are simpler
426 * with the cdrom, since it is read-only. For performance
427 * reasons, the filesystems should be able to handle this
428 * and not force the scsi disk driver to use bounce buffers
429 * for this.
430 */
431 if (sdp->sector_size == 1024) {
432 if ((block & 1) || (rq->nr_sectors & 1)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500433 scmd_printk(KERN_ERR, SCpnt,
434 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500435 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 } else {
437 block = block >> 1;
438 this_count = this_count >> 1;
439 }
440 }
441 if (sdp->sector_size == 2048) {
442 if ((block & 3) || (rq->nr_sectors & 3)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500443 scmd_printk(KERN_ERR, SCpnt,
444 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500445 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 } else {
447 block = block >> 2;
448 this_count = this_count >> 2;
449 }
450 }
451 if (sdp->sector_size == 4096) {
452 if ((block & 7) || (rq->nr_sectors & 7)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500453 scmd_printk(KERN_ERR, SCpnt,
454 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500455 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 } else {
457 block = block >> 3;
458 this_count = this_count >> 3;
459 }
460 }
461 if (rq_data_dir(rq) == WRITE) {
462 if (!sdp->writeable) {
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500463 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465 SCpnt->cmnd[0] = WRITE_6;
466 SCpnt->sc_data_direction = DMA_TO_DEVICE;
467 } else if (rq_data_dir(rq) == READ) {
468 SCpnt->cmnd[0] = READ_6;
469 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
470 } else {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500471 scmd_printk(KERN_ERR, SCpnt, "Unknown command %x\n", rq->cmd_flags);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500472 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500475 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
476 "%s %d/%ld 512 byte blocks.\n",
477 (rq_data_dir(rq) == WRITE) ?
478 "writing" : "reading", this_count,
479 rq->nr_sectors));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 SCpnt->cmnd[1] = 0;
482
483 if (block > 0xffffffff) {
484 SCpnt->cmnd[0] += READ_16 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100485 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
487 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
488 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
489 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
490 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
491 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
492 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
493 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
494 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
495 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
496 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
497 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
498 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
499 } else if ((this_count > 0xff) || (block > 0x1fffff) ||
500 SCpnt->device->use_10_for_rw) {
501 if (this_count > 0xffff)
502 this_count = 0xffff;
503
504 SCpnt->cmnd[0] += READ_10 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100505 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
507 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
508 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
509 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
510 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
511 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
512 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
513 } else {
Tejun Heo007365a2006-01-06 09:53:52 +0100514 if (unlikely(blk_fua_rq(rq))) {
515 /*
516 * This happens only if this drive failed
517 * 10byte rw command with ILLEGAL_REQUEST
518 * during operation and thus turned off
519 * use_10_for_rw.
520 */
Martin K. Petersene73aec82007-02-27 22:40:55 -0500521 scmd_printk(KERN_ERR, SCpnt,
522 "FUA write on READ/WRITE(6) drive\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500523 goto out;
Tejun Heo007365a2006-01-06 09:53:52 +0100524 }
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
527 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
528 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
529 SCpnt->cmnd[4] = (unsigned char) this_count;
530 SCpnt->cmnd[5] = 0;
531 }
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200532 SCpnt->sdb.length = this_count * sdp->sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 /*
535 * We shouldn't disconnect in the middle of a sector, so with a dumb
536 * host adapter, it's safe to assume that we can at least transfer
537 * this many bytes between each connect / disconnect.
538 */
539 SCpnt->transfersize = sdp->sector_size;
540 SCpnt->underflow = this_count << 9;
541 SCpnt->allowed = SD_MAX_RETRIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 SCpnt->timeout_per_command = timeout;
543
544 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 * This indicates that the command is ready from our end to be
546 * queued.
547 */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500548 ret = BLKPREP_OK;
549 out:
550 return scsi_prep_return(q, rq, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
553/**
554 * sd_open - open a scsi disk device
555 * @inode: only i_rdev member may be used
556 * @filp: only f_mode and f_flags may be used
557 *
558 * Returns 0 if successful. Returns a negated errno value in case
559 * of error.
560 *
561 * Note: This can be called from a user context (e.g. fsck(1) )
562 * or from within the kernel (e.g. as a result of a mount(1) ).
563 * In the latter case @inode and @filp carry an abridged amount
564 * of information as noted above.
565 **/
566static int sd_open(struct inode *inode, struct file *filp)
567{
568 struct gendisk *disk = inode->i_bdev->bd_disk;
569 struct scsi_disk *sdkp;
570 struct scsi_device *sdev;
571 int retval;
572
573 if (!(sdkp = scsi_disk_get(disk)))
574 return -ENXIO;
575
576
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500577 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_open\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 sdev = sdkp->device;
580
581 /*
582 * If the device is in error recovery, wait until it is done.
583 * If the device is offline, then disallow any access to it.
584 */
585 retval = -ENXIO;
586 if (!scsi_block_when_processing_errors(sdev))
587 goto error_out;
588
589 if (sdev->removable || sdkp->write_prot)
590 check_disk_change(inode->i_bdev);
591
592 /*
593 * If the drive is empty, just let the open fail.
594 */
595 retval = -ENOMEDIUM;
596 if (sdev->removable && !sdkp->media_present &&
597 !(filp->f_flags & O_NDELAY))
598 goto error_out;
599
600 /*
601 * If the device has the write protect tab set, have the open fail
602 * if the user expects to be able to write to the thing.
603 */
604 retval = -EROFS;
605 if (sdkp->write_prot && (filp->f_mode & FMODE_WRITE))
606 goto error_out;
607
608 /*
609 * It is possible that the disk changing stuff resulted in
610 * the device being taken offline. If this is the case,
611 * report this to the user, and don't pretend that the
612 * open actually succeeded.
613 */
614 retval = -ENXIO;
615 if (!scsi_device_online(sdev))
616 goto error_out;
617
618 if (!sdkp->openers++ && sdev->removable) {
619 if (scsi_block_when_processing_errors(sdev))
620 scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
621 }
622
623 return 0;
624
625error_out:
626 scsi_disk_put(sdkp);
627 return retval;
628}
629
630/**
631 * sd_release - invoked when the (last) close(2) is called on this
632 * scsi disk.
633 * @inode: only i_rdev member may be used
634 * @filp: only f_mode and f_flags may be used
635 *
636 * Returns 0.
637 *
638 * Note: may block (uninterruptible) if error recovery is underway
639 * on this disk.
640 **/
641static int sd_release(struct inode *inode, struct file *filp)
642{
643 struct gendisk *disk = inode->i_bdev->bd_disk;
644 struct scsi_disk *sdkp = scsi_disk(disk);
645 struct scsi_device *sdev = sdkp->device;
646
James Bottomley56937f72007-03-11 12:25:33 -0500647 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_release\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 if (!--sdkp->openers && sdev->removable) {
650 if (scsi_block_when_processing_errors(sdev))
651 scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
652 }
653
654 /*
655 * XXX and what if there are packets in flight and this close()
656 * XXX is followed by a "rmmod sd_mod"?
657 */
658 scsi_disk_put(sdkp);
659 return 0;
660}
661
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800662static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
664 struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
665 struct scsi_device *sdp = sdkp->device;
666 struct Scsi_Host *host = sdp->host;
667 int diskinfo[4];
668
669 /* default to most commonly used values */
670 diskinfo[0] = 0x40; /* 1 << 6 */
671 diskinfo[1] = 0x20; /* 1 << 5 */
672 diskinfo[2] = sdkp->capacity >> 11;
673
674 /* override with calculated, extended default, or driver values */
675 if (host->hostt->bios_param)
676 host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
677 else
678 scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
679
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800680 geo->heads = diskinfo[0];
681 geo->sectors = diskinfo[1];
682 geo->cylinders = diskinfo[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return 0;
684}
685
686/**
687 * sd_ioctl - process an ioctl
688 * @inode: only i_rdev/i_bdev members may be used
689 * @filp: only f_mode and f_flags may be used
690 * @cmd: ioctl command number
691 * @arg: this is third argument given to ioctl(2) system call.
692 * Often contains a pointer.
693 *
694 * Returns 0 if successful (some ioctls return postive numbers on
695 * success as well). Returns a negated errno value in case of error.
696 *
697 * Note: most ioctls are forward onto the block subsystem or further
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200698 * down in the scsi subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 **/
700static int sd_ioctl(struct inode * inode, struct file * filp,
701 unsigned int cmd, unsigned long arg)
702{
703 struct block_device *bdev = inode->i_bdev;
704 struct gendisk *disk = bdev->bd_disk;
705 struct scsi_device *sdp = scsi_disk(disk)->device;
706 void __user *p = (void __user *)arg;
707 int error;
708
709 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
710 disk->disk_name, cmd));
711
712 /*
713 * If we are in the middle of error recovery, don't let anyone
714 * else try and use this device. Also, if error recovery fails, it
715 * may try and take the device offline, in which case all further
716 * access to the device is prohibited.
717 */
718 error = scsi_nonblockable_ioctl(sdp, cmd, p, filp);
719 if (!scsi_block_when_processing_errors(sdp) || !error)
720 return error;
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /*
723 * Send SCSI addressing ioctls directly to mid level, send other
724 * ioctls to block level and then onto mid level if they can't be
725 * resolved.
726 */
727 switch (cmd) {
728 case SCSI_IOCTL_GET_IDLUN:
729 case SCSI_IOCTL_GET_BUS_NUMBER:
730 return scsi_ioctl(sdp, cmd, p);
731 default:
FUJITA Tomonori45e79a32007-07-09 12:39:20 +0200732 error = scsi_cmd_ioctl(filp, disk->queue, disk, cmd, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (error != -ENOTTY)
734 return error;
735 }
736 return scsi_ioctl(sdp, cmd, p);
737}
738
739static void set_media_not_present(struct scsi_disk *sdkp)
740{
741 sdkp->media_present = 0;
742 sdkp->capacity = 0;
743 sdkp->device->changed = 1;
744}
745
746/**
747 * sd_media_changed - check if our medium changed
748 * @disk: kernel device descriptor
749 *
750 * Returns 0 if not applicable or no change; 1 if change
751 *
752 * Note: this function is invoked from the block subsystem.
753 **/
754static int sd_media_changed(struct gendisk *disk)
755{
756 struct scsi_disk *sdkp = scsi_disk(disk);
757 struct scsi_device *sdp = sdkp->device;
James Bottomley001aac22007-12-02 19:10:40 +0200758 struct scsi_sense_hdr *sshdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 int retval;
760
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500761 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_media_changed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 if (!sdp->removable)
764 return 0;
765
766 /*
767 * If the device is offline, don't send any commands - just pretend as
768 * if the command failed. If the device ever comes back online, we
769 * can deal with it then. It is only because of unrecoverable errors
770 * that we would ever take a device offline in the first place.
771 */
Kay Sievers285e9672007-08-14 14:10:39 +0200772 if (!scsi_device_online(sdp)) {
773 set_media_not_present(sdkp);
774 retval = 1;
775 goto out;
776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 /*
779 * Using TEST_UNIT_READY enables differentiation between drive with
780 * no cartridge loaded - NOT READY, drive with changed cartridge -
781 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
782 *
783 * Drives that auto spin down. eg iomega jaz 1G, will be started
784 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
785 * sd_revalidate() is called.
786 */
787 retval = -ENODEV;
Kay Sievers285e9672007-08-14 14:10:39 +0200788
James Bottomley001aac22007-12-02 19:10:40 +0200789 if (scsi_block_when_processing_errors(sdp)) {
790 sshdr = kzalloc(sizeof(*sshdr), GFP_KERNEL);
791 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES,
792 sshdr);
793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 /*
796 * Unable to test, unit probably not ready. This usually
797 * means there is no disc in the drive. Mark as changed,
798 * and we will figure it out later once the drive is
799 * available again.
800 */
James Bottomley001aac22007-12-02 19:10:40 +0200801 if (retval || (scsi_sense_valid(sshdr) &&
802 /* 0x3a is medium not present */
803 sshdr->asc == 0x3a)) {
Kay Sievers285e9672007-08-14 14:10:39 +0200804 set_media_not_present(sdkp);
805 retval = 1;
806 goto out;
807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 /*
810 * For removable scsi disk we have to recognise the presence
811 * of a disk in the drive. This is kept in the struct scsi_disk
812 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
813 */
814 sdkp->media_present = 1;
815
816 retval = sdp->changed;
817 sdp->changed = 0;
Kay Sievers285e9672007-08-14 14:10:39 +0200818out:
819 if (retval != sdkp->previous_state)
820 sdev_evt_send_simple(sdp, SDEV_EVT_MEDIA_CHANGE, GFP_KERNEL);
821 sdkp->previous_state = retval;
James Bottomley001aac22007-12-02 19:10:40 +0200822 kfree(sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Martin K. Petersene73aec82007-02-27 22:40:55 -0500826static int sd_sync_cache(struct scsi_disk *sdkp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 int retries, res;
Martin K. Petersene73aec82007-02-27 22:40:55 -0500829 struct scsi_device *sdp = sdkp->device;
James Bottomleyea73a9f2005-08-28 11:33:52 -0500830 struct scsi_sense_hdr sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 if (!scsi_device_online(sdp))
833 return -ENODEV;
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 for (retries = 3; retries > 0; --retries) {
837 unsigned char cmd[10] = { 0 };
838
839 cmd[0] = SYNCHRONIZE_CACHE;
840 /*
841 * Leave the rest of the command zero to indicate
842 * flush everything.
843 */
James Bottomleyea73a9f2005-08-28 11:33:52 -0500844 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
845 SD_TIMEOUT, SD_MAX_RETRIES);
846 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 break;
848 }
849
Martin K. Petersene73aec82007-02-27 22:40:55 -0500850 if (res) {
851 sd_print_result(sdkp, res);
852 if (driver_byte(res) & DRIVER_SENSE)
853 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855
Tejun Heo37210502007-03-21 00:07:18 +0900856 if (res)
857 return -EIO;
858 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Jens Axboe165125e2007-07-24 09:28:11 +0200861static void sd_prepare_flush(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500863 memset(rq->cmd, 0, sizeof(rq->cmd));
Jens Axboe4aff5e22006-08-10 08:44:47 +0200864 rq->cmd_type = REQ_TYPE_BLOCK_PC;
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500865 rq->timeout = SD_TIMEOUT;
866 rq->cmd[0] = SYNCHRONIZE_CACHE;
Tejun Heo461d4e92006-01-06 09:52:55 +0100867 rq->cmd_len = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
870static void sd_rescan(struct device *dev)
871{
Alan Stern39b7f1e2005-11-04 14:44:41 -0500872 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
873
874 if (sdkp) {
875 sd_revalidate_disk(sdkp->disk);
876 scsi_disk_put(sdkp);
877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
880
881#ifdef CONFIG_COMPAT
882/*
883 * This gets directly called from VFS. When the ioctl
884 * is not recognized we go back to the other translation paths.
885 */
886static long sd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
887{
Josef Sipek7ac62072006-12-08 02:37:37 -0800888 struct block_device *bdev = file->f_path.dentry->d_inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 struct gendisk *disk = bdev->bd_disk;
890 struct scsi_device *sdev = scsi_disk(disk)->device;
891
892 /*
893 * If we are in the middle of error recovery, don't let anyone
894 * else try and use this device. Also, if error recovery fails, it
895 * may try and take the device offline, in which case all further
896 * access to the device is prohibited.
897 */
898 if (!scsi_block_when_processing_errors(sdev))
899 return -ENODEV;
900
901 if (sdev->host->hostt->compat_ioctl) {
902 int ret;
903
904 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
905
906 return ret;
907 }
908
909 /*
910 * Let the static ioctl translation table take care of it.
911 */
912 return -ENOIOCTLCMD;
913}
914#endif
915
916static struct block_device_operations sd_fops = {
917 .owner = THIS_MODULE,
918 .open = sd_open,
919 .release = sd_release,
920 .ioctl = sd_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800921 .getgeo = sd_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922#ifdef CONFIG_COMPAT
923 .compat_ioctl = sd_compat_ioctl,
924#endif
925 .media_changed = sd_media_changed,
926 .revalidate_disk = sd_revalidate_disk,
927};
928
929/**
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800930 * sd_done - bottom half handler: called when the lower level
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 * driver has completed (successfully or otherwise) a scsi command.
932 * @SCpnt: mid-level's per command structure.
933 *
934 * Note: potentially run from within an ISR. Must not block.
935 **/
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800936static int sd_done(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
938 int result = SCpnt->result;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200939 unsigned int xfer_size = scsi_bufflen(SCpnt);
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700940 unsigned int good_bytes = result ? 0 : xfer_size;
941 u64 start_lba = SCpnt->request->sector;
James Bottomley366c2462008-02-02 16:06:23 -0600942 u64 end_lba = SCpnt->request->sector + (xfer_size / 512);
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700943 u64 bad_lba;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 struct scsi_sense_hdr sshdr;
945 int sense_valid = 0;
946 int sense_deferred = 0;
947 int info_valid;
948
949 if (result) {
950 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
951 if (sense_valid)
952 sense_deferred = scsi_sense_is_deferred(&sshdr);
953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954#ifdef CONFIG_SCSI_LOGGING
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500955 SCSI_LOG_HLCOMPLETE(1, scsi_print_result(SCpnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (sense_valid) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500957 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, SCpnt,
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800958 "sd_done: sb[respc,sk,asc,"
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500959 "ascq]=%x,%x,%x,%x\n",
960 sshdr.response_code,
961 sshdr.sense_key, sshdr.asc,
962 sshdr.ascq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
964#endif
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700965 if (driver_byte(result) != DRIVER_SENSE &&
966 (!sense_valid || sense_deferred))
967 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700969 switch (sshdr.sense_key) {
970 case HARDWARE_ERROR:
971 case MEDIUM_ERROR:
972 if (!blk_fs_request(SCpnt->request))
973 goto out;
974 info_valid = scsi_get_sense_info_fld(SCpnt->sense_buffer,
975 SCSI_SENSE_BUFFERSIZE,
976 &bad_lba);
977 if (!info_valid)
978 goto out;
979 if (xfer_size <= SCpnt->device->sector_size)
980 goto out;
James Bottomley366c2462008-02-02 16:06:23 -0600981 if (SCpnt->device->sector_size < 512) {
982 /* only legitimate sector_size here is 256 */
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700983 start_lba <<= 1;
James Bottomley366c2462008-02-02 16:06:23 -0600984 end_lba <<= 1;
985 } else {
986 /* be careful ... don't want any overflows */
987 u64 factor = SCpnt->device->sector_size / 512;
988 do_div(start_lba, factor);
989 do_div(end_lba, factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
James Bottomley366c2462008-02-02 16:06:23 -0600991
992 if (bad_lba < start_lba || bad_lba >= end_lba)
993 /* the bad lba was reported incorrectly, we have
994 * no idea where the error is
995 */
996 goto out;
997
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700998 /* This computation should always be done in terms of
999 * the resolution of the device's medium.
1000 */
1001 good_bytes = (bad_lba - start_lba)*SCpnt->device->sector_size;
1002 break;
1003 case RECOVERED_ERROR:
1004 case NO_SENSE:
1005 /* Inform the user, but make sure that it's not treated
1006 * as a hard error.
1007 */
1008 scsi_print_sense("sd", SCpnt);
1009 SCpnt->result = 0;
1010 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
1011 good_bytes = xfer_size;
1012 break;
1013 case ILLEGAL_REQUEST:
1014 if (SCpnt->device->use_10_for_rw &&
1015 (SCpnt->cmnd[0] == READ_10 ||
1016 SCpnt->cmnd[0] == WRITE_10))
1017 SCpnt->device->use_10_for_rw = 0;
1018 if (SCpnt->device->use_10_for_ms &&
1019 (SCpnt->cmnd[0] == MODE_SENSE_10 ||
1020 SCpnt->cmnd[0] == MODE_SELECT_10))
1021 SCpnt->device->use_10_for_ms = 0;
1022 break;
1023 default:
1024 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001026 out:
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001027 return good_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
James Bottomleyea73a9f2005-08-28 11:33:52 -05001030static int media_not_present(struct scsi_disk *sdkp,
1031 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
James Bottomleyea73a9f2005-08-28 11:33:52 -05001034 if (!scsi_sense_valid(sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return 0;
1036 /* not invoked for commands that could return deferred errors */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001037 if (sshdr->sense_key != NOT_READY &&
1038 sshdr->sense_key != UNIT_ATTENTION)
1039 return 0;
1040 if (sshdr->asc != 0x3A) /* medium not present */
1041 return 0;
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 set_media_not_present(sdkp);
1044 return 1;
1045}
1046
1047/*
1048 * spinup disk - called only in sd_revalidate_disk()
1049 */
1050static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001051sd_spinup_disk(struct scsi_disk *sdkp)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001052{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 unsigned char cmd[10];
Alan Stern4451e472005-07-12 10:45:17 -04001054 unsigned long spintime_expire = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 int retries, spintime;
1056 unsigned int the_result;
1057 struct scsi_sense_hdr sshdr;
1058 int sense_valid = 0;
1059
1060 spintime = 0;
1061
1062 /* Spin up drives, as required. Only do this at boot time */
1063 /* Spinup needs to be done for module loads too. */
1064 do {
1065 retries = 0;
1066
1067 do {
1068 cmd[0] = TEST_UNIT_READY;
1069 memset((void *) &cmd[1], 0, 9);
1070
James Bottomleyea73a9f2005-08-28 11:33:52 -05001071 the_result = scsi_execute_req(sdkp->device, cmd,
1072 DMA_NONE, NULL, 0,
1073 &sshdr, SD_TIMEOUT,
1074 SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Alan Sternb4d38e32006-10-11 16:48:28 -04001076 /*
1077 * If the drive has indicated to us that it
1078 * doesn't have any media in it, don't bother
1079 * with any more polling.
1080 */
1081 if (media_not_present(sdkp, &sshdr))
1082 return;
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001085 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 retries++;
1087 } while (retries < 3 &&
1088 (!scsi_status_is_good(the_result) ||
1089 ((driver_byte(the_result) & DRIVER_SENSE) &&
1090 sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1093 /* no sense, TUR either succeeded or failed
1094 * with a status error */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001095 if(!spintime && !scsi_status_is_good(the_result)) {
1096 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1097 sd_print_result(sdkp, the_result);
1098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 break;
1100 }
1101
1102 /*
1103 * The device does not want the automatic start to be issued.
1104 */
1105 if (sdkp->device->no_start_on_add) {
1106 break;
1107 }
1108
1109 /*
1110 * If manual intervention is required, or this is an
1111 * absent USB storage device, a spinup is meaningless.
1112 */
1113 if (sense_valid &&
1114 sshdr.sense_key == NOT_READY &&
1115 sshdr.asc == 4 && sshdr.ascq == 3) {
1116 break; /* manual intervention required */
1117
1118 /*
1119 * Issue command to spin up drive when not ready
1120 */
1121 } else if (sense_valid && sshdr.sense_key == NOT_READY) {
1122 if (!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001123 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 cmd[0] = START_STOP;
1125 cmd[1] = 1; /* Return immediately */
1126 memset((void *) &cmd[2], 0, 8);
1127 cmd[4] = 1; /* Start spin cycle */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001128 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1129 NULL, 0, &sshdr,
1130 SD_TIMEOUT, SD_MAX_RETRIES);
Alan Stern4451e472005-07-12 10:45:17 -04001131 spintime_expire = jiffies + 100 * HZ;
1132 spintime = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 /* Wait 1 second for next try */
1135 msleep(1000);
1136 printk(".");
Alan Stern4451e472005-07-12 10:45:17 -04001137
1138 /*
1139 * Wait for USB flash devices with slow firmware.
1140 * Yes, this sense key/ASC combination shouldn't
1141 * occur here. It's characteristic of these devices.
1142 */
1143 } else if (sense_valid &&
1144 sshdr.sense_key == UNIT_ATTENTION &&
1145 sshdr.asc == 0x28) {
1146 if (!spintime) {
1147 spintime_expire = jiffies + 5 * HZ;
1148 spintime = 1;
1149 }
1150 /* Wait 1 second for next try */
1151 msleep(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 } else {
1153 /* we don't understand the sense code, so it's
1154 * probably pointless to loop */
1155 if(!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001156 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1157 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
1159 break;
1160 }
1161
Alan Stern4451e472005-07-12 10:45:17 -04001162 } while (spintime && time_before_eq(jiffies, spintime_expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 if (spintime) {
1165 if (scsi_status_is_good(the_result))
1166 printk("ready\n");
1167 else
1168 printk("not responding...\n");
1169 }
1170}
1171
1172/*
1173 * read disk capacity
1174 */
1175static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001176sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001177{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 unsigned char cmd[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 int the_result, retries;
1180 int sector_size = 0;
1181 int longrc = 0;
1182 struct scsi_sense_hdr sshdr;
1183 int sense_valid = 0;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001184 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186repeat:
1187 retries = 3;
1188 do {
1189 if (longrc) {
1190 memset((void *) cmd, 0, 16);
1191 cmd[0] = SERVICE_ACTION_IN;
1192 cmd[1] = SAI_READ_CAPACITY_16;
1193 cmd[13] = 12;
1194 memset((void *) buffer, 0, 12);
1195 } else {
1196 cmd[0] = READ_CAPACITY;
1197 memset((void *) &cmd[1], 0, 9);
1198 memset((void *) buffer, 0, 8);
1199 }
1200
James Bottomleyea73a9f2005-08-28 11:33:52 -05001201 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
1202 buffer, longrc ? 12 : 8, &sshdr,
1203 SD_TIMEOUT, SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
James Bottomleyea73a9f2005-08-28 11:33:52 -05001205 if (media_not_present(sdkp, &sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return;
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001209 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 retries--;
1211
1212 } while (the_result && retries);
1213
1214 if (the_result && !longrc) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001215 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY failed\n");
1216 sd_print_result(sdkp, the_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (driver_byte(the_result) & DRIVER_SENSE)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001218 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001220 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 /* Set dirty bit for removable devices if not ready -
1223 * sometimes drives will not report this properly. */
1224 if (sdp->removable &&
1225 sense_valid && sshdr.sense_key == NOT_READY)
1226 sdp->changed = 1;
1227
1228 /* Either no media are present but the drive didn't tell us,
1229 or they are present but the read capacity command fails */
1230 /* sdkp->media_present = 0; -- not always correct */
Hannes Reinecke69bdd882006-09-01 15:50:23 +02001231 sdkp->capacity = 0; /* unknown mapped to zero - as usual */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 return;
1234 } else if (the_result && longrc) {
1235 /* READ CAPACITY(16) has been failed */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001236 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY(16) failed\n");
1237 sd_print_result(sdkp, the_result);
1238 sd_printk(KERN_NOTICE, sdkp, "Use 0xffffffff as device size\n");
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 sdkp->capacity = 1 + (sector_t) 0xffffffff;
1241 goto got_data;
1242 }
1243
1244 if (!longrc) {
1245 sector_size = (buffer[4] << 24) |
1246 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
1247 if (buffer[0] == 0xff && buffer[1] == 0xff &&
1248 buffer[2] == 0xff && buffer[3] == 0xff) {
1249 if(sizeof(sdkp->capacity) > 4) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001250 sd_printk(KERN_NOTICE, sdkp, "Very big device. "
1251 "Trying to use READ CAPACITY(16).\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 longrc = 1;
1253 goto repeat;
1254 }
Martin K. Petersene73aec82007-02-27 22:40:55 -05001255 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use "
1256 "a kernel compiled with support for large "
1257 "block devices.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 sdkp->capacity = 0;
1259 goto got_data;
1260 }
1261 sdkp->capacity = 1 + (((sector_t)buffer[0] << 24) |
1262 (buffer[1] << 16) |
1263 (buffer[2] << 8) |
1264 buffer[3]);
1265 } else {
1266 sdkp->capacity = 1 + (((u64)buffer[0] << 56) |
1267 ((u64)buffer[1] << 48) |
1268 ((u64)buffer[2] << 40) |
1269 ((u64)buffer[3] << 32) |
1270 ((sector_t)buffer[4] << 24) |
1271 ((sector_t)buffer[5] << 16) |
1272 ((sector_t)buffer[6] << 8) |
1273 (sector_t)buffer[7]);
1274
1275 sector_size = (buffer[8] << 24) |
1276 (buffer[9] << 16) | (buffer[10] << 8) | buffer[11];
1277 }
1278
1279 /* Some devices return the total number of sectors, not the
1280 * highest sector number. Make the necessary adjustment. */
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001281 if (sdp->fix_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 --sdkp->capacity;
1283
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001284 /* Some devices have version which report the correct sizes
1285 * and others which do not. We guess size according to a heuristic
1286 * and err on the side of lowering the capacity. */
1287 } else {
1288 if (sdp->guess_capacity)
1289 if (sdkp->capacity & 0x01) /* odd sizes are odd */
1290 --sdkp->capacity;
1291 }
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293got_data:
1294 if (sector_size == 0) {
1295 sector_size = 512;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001296 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
1297 "assuming 512.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299
1300 if (sector_size != 512 &&
1301 sector_size != 1024 &&
1302 sector_size != 2048 &&
1303 sector_size != 4096 &&
1304 sector_size != 256) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001305 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
1306 sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 /*
1308 * The user might want to re-format the drive with
1309 * a supported sectorsize. Once this happens, it
1310 * would be relatively trivial to set the thing up.
1311 * For this reason, we leave the thing in the table.
1312 */
1313 sdkp->capacity = 0;
1314 /*
1315 * set a bogus sector size so the normal read/write
1316 * logic in the block layer will eventually refuse any
1317 * request on this device without tripping over power
1318 * of two sector size assumptions
1319 */
1320 sector_size = 512;
1321 }
1322 {
1323 /*
1324 * The msdos fs needs to know the hardware sector size
1325 * So I have created this table. See ll_rw_blk.c
1326 * Jacques Gelinas (Jacques@solucorp.qc.ca)
1327 */
1328 int hard_sector = sector_size;
James Bottomley7a691bd2005-10-28 13:17:30 -05001329 sector_t sz = (sdkp->capacity/2) * (hard_sector/256);
Jens Axboe165125e2007-07-24 09:28:11 +02001330 struct request_queue *queue = sdp->request_queue;
James Bottomley7a691bd2005-10-28 13:17:30 -05001331 sector_t mb = sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 blk_queue_hardsect_size(queue, hard_sector);
1334 /* avoid 64-bit division on 32-bit platforms */
James Bottomley7a691bd2005-10-28 13:17:30 -05001335 sector_div(sz, 625);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 mb -= sz - 974;
1337 sector_div(mb, 1950);
1338
Martin K. Petersene73aec82007-02-27 22:40:55 -05001339 sd_printk(KERN_NOTICE, sdkp,
1340 "%llu %d-byte hardware sectors (%llu MB)\n",
1341 (unsigned long long)sdkp->capacity,
1342 hard_sector, (unsigned long long)mb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
1344
1345 /* Rescale capacity to 512-byte units */
1346 if (sector_size == 4096)
1347 sdkp->capacity <<= 3;
1348 else if (sector_size == 2048)
1349 sdkp->capacity <<= 2;
1350 else if (sector_size == 1024)
1351 sdkp->capacity <<= 1;
1352 else if (sector_size == 256)
1353 sdkp->capacity >>= 1;
1354
1355 sdkp->device->sector_size = sector_size;
1356}
1357
1358/* called with buffer of length 512 */
1359static inline int
James Bottomleyea73a9f2005-08-28 11:33:52 -05001360sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
1361 unsigned char *buffer, int len, struct scsi_mode_data *data,
1362 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363{
James Bottomleyea73a9f2005-08-28 11:33:52 -05001364 return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
James Bottomley1cf72692005-08-28 11:27:01 -05001365 SD_TIMEOUT, SD_MAX_RETRIES, data,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001366 sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367}
1368
1369/*
1370 * read write protect setting, if possible - called only in sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001371 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 */
1373static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001374sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001375{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 int res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001377 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 struct scsi_mode_data data;
1379
1380 set_disk_ro(sdkp->disk, 0);
James Bottomleyea73a9f2005-08-28 11:33:52 -05001381 if (sdp->skip_ms_page_3f) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001382 sd_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return;
1384 }
1385
James Bottomleyea73a9f2005-08-28 11:33:52 -05001386 if (sdp->use_192_bytes_for_3f) {
1387 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 } else {
1389 /*
1390 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1391 * We have to start carefully: some devices hang if we ask
1392 * for more than is available.
1393 */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001394 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 /*
1397 * Second attempt: ask for page 0 When only page 0 is
1398 * implemented, a request for page 3F may return Sense Key
1399 * 5: Illegal Request, Sense Code 24: Invalid field in
1400 * CDB.
1401 */
1402 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001403 res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 /*
1406 * Third attempt: ask 255 bytes, as we did earlier.
1407 */
1408 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001409 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
1410 &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
1412
1413 if (!scsi_status_is_good(res)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001414 sd_printk(KERN_WARNING, sdkp,
1415 "Test WP failed, assume Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 } else {
1417 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
1418 set_disk_ro(sdkp->disk, sdkp->write_prot);
Martin K. Petersene73aec82007-02-27 22:40:55 -05001419 sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
1420 sdkp->write_prot ? "on" : "off");
1421 sd_printk(KERN_DEBUG, sdkp,
1422 "Mode Sense: %02x %02x %02x %02x\n",
1423 buffer[0], buffer[1], buffer[2], buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 }
1425}
1426
1427/*
1428 * sd_read_cache_type - called only from sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001429 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 */
1431static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001432sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
Al Viro 631e8a12005-05-16 01:59:55 +01001433{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 int len = 0, res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001435 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Al Viro 631e8a12005-05-16 01:59:55 +01001437 int dbd;
1438 int modepage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 struct scsi_mode_data data;
1440 struct scsi_sense_hdr sshdr;
1441
James Bottomleyea73a9f2005-08-28 11:33:52 -05001442 if (sdp->skip_ms_page_8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 goto defaults;
1444
James Bottomleyea73a9f2005-08-28 11:33:52 -05001445 if (sdp->type == TYPE_RBC) {
Al Viro 631e8a12005-05-16 01:59:55 +01001446 modepage = 6;
1447 dbd = 8;
1448 } else {
1449 modepage = 8;
1450 dbd = 0;
1451 }
1452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 /* cautiously ask */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001454 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, 4, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 if (!scsi_status_is_good(res))
1457 goto bad_sense;
1458
Al Viro6d73c852006-02-23 02:03:16 +01001459 if (!data.header_length) {
1460 modepage = 6;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001461 sd_printk(KERN_ERR, sdkp, "Missing header in MODE_SENSE response\n");
Al Viro6d73c852006-02-23 02:03:16 +01001462 }
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 /* that went OK, now ask for the proper length */
1465 len = data.length;
1466
1467 /*
1468 * We're only interested in the first three bytes, actually.
1469 * But the data cache page is defined for the first 20.
1470 */
1471 if (len < 3)
1472 goto bad_sense;
1473 if (len > 20)
1474 len = 20;
1475
1476 /* Take headers and block descriptors into account */
1477 len += data.header_length + data.block_descriptor_length;
Al Viro48970802006-02-26 08:34:10 -06001478 if (len > SD_BUF_SIZE)
1479 goto bad_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 /* Get the data */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001482 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 if (scsi_status_is_good(res)) {
Al Viro 631e8a12005-05-16 01:59:55 +01001485 int offset = data.header_length + data.block_descriptor_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Al Viro48970802006-02-26 08:34:10 -06001487 if (offset >= SD_BUF_SIZE - 2) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001488 sd_printk(KERN_ERR, sdkp, "Malformed MODE SENSE response\n");
Al Viro48970802006-02-26 08:34:10 -06001489 goto defaults;
1490 }
1491
Al Viro 631e8a12005-05-16 01:59:55 +01001492 if ((buffer[offset] & 0x3f) != modepage) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001493 sd_printk(KERN_ERR, sdkp, "Got wrong page\n");
Al Viro 631e8a12005-05-16 01:59:55 +01001494 goto defaults;
1495 }
1496
1497 if (modepage == 8) {
1498 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
1499 sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
1500 } else {
1501 sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
1502 sdkp->RCD = 0;
1503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Tejun Heo007365a2006-01-06 09:53:52 +01001505 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
1506 if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001507 sd_printk(KERN_NOTICE, sdkp,
1508 "Uses READ/WRITE(6), disabling FUA\n");
Tejun Heo007365a2006-01-06 09:53:52 +01001509 sdkp->DPOFUA = 0;
1510 }
1511
Martin K. Petersene73aec82007-02-27 22:40:55 -05001512 sd_printk(KERN_NOTICE, sdkp,
1513 "Write cache: %s, read cache: %s, %s\n",
Luben Tuikovfd44bab2006-11-15 12:47:08 -08001514 sdkp->WCE ? "enabled" : "disabled",
1515 sdkp->RCD ? "disabled" : "enabled",
1516 sdkp->DPOFUA ? "supports DPO and FUA"
1517 : "doesn't support DPO or FUA");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 return;
1520 }
1521
1522bad_sense:
James Bottomleyea73a9f2005-08-28 11:33:52 -05001523 if (scsi_sense_valid(&sshdr) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 sshdr.sense_key == ILLEGAL_REQUEST &&
1525 sshdr.asc == 0x24 && sshdr.ascq == 0x0)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001526 /* Invalid field in CDB */
1527 sd_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001529 sd_printk(KERN_ERR, sdkp, "Asking for cache data failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531defaults:
Martin K. Petersene73aec82007-02-27 22:40:55 -05001532 sd_printk(KERN_ERR, sdkp, "Assuming drive cache: write through\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 sdkp->WCE = 0;
1534 sdkp->RCD = 0;
Al Viro48970802006-02-26 08:34:10 -06001535 sdkp->DPOFUA = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536}
1537
1538/**
1539 * sd_revalidate_disk - called the first time a new disk is seen,
1540 * performs disk spin up, read_capacity, etc.
1541 * @disk: struct gendisk we care about
1542 **/
1543static int sd_revalidate_disk(struct gendisk *disk)
1544{
1545 struct scsi_disk *sdkp = scsi_disk(disk);
1546 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 unsigned char *buffer;
Tejun Heo461d4e92006-01-06 09:52:55 +01001548 unsigned ordered;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001550 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp,
1551 "sd_revalidate_disk\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 /*
1554 * If the device is offline, don't try and read capacity or any
1555 * of the other niceties.
1556 */
1557 if (!scsi_device_online(sdp))
1558 goto out;
1559
Bernhard Wallea6123f12007-05-21 17:15:26 +02001560 buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 if (!buffer) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001562 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
1563 "allocation failure.\n");
James Bottomleyea73a9f2005-08-28 11:33:52 -05001564 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566
1567 /* defaults, until the device tells us otherwise */
1568 sdp->sector_size = 512;
1569 sdkp->capacity = 0;
1570 sdkp->media_present = 1;
1571 sdkp->write_prot = 0;
1572 sdkp->WCE = 0;
1573 sdkp->RCD = 0;
1574
Martin K. Petersene73aec82007-02-27 22:40:55 -05001575 sd_spinup_disk(sdkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 /*
1578 * Without media there is no reason to ask; moreover, some devices
1579 * react badly if we do.
1580 */
1581 if (sdkp->media_present) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001582 sd_read_capacity(sdkp, buffer);
1583 sd_read_write_protect_flag(sdkp, buffer);
1584 sd_read_cache_type(sdkp, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
Tejun Heo461d4e92006-01-06 09:52:55 +01001586
1587 /*
1588 * We now have all cache related info, determine how we deal
1589 * with ordered requests. Note that as the current SCSI
1590 * dispatch function can alter request order, we cannot use
1591 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1592 */
1593 if (sdkp->WCE)
Tejun Heo007365a2006-01-06 09:53:52 +01001594 ordered = sdkp->DPOFUA
1595 ? QUEUE_ORDERED_DRAIN_FUA : QUEUE_ORDERED_DRAIN_FLUSH;
Tejun Heo461d4e92006-01-06 09:52:55 +01001596 else
1597 ordered = QUEUE_ORDERED_DRAIN;
1598
1599 blk_queue_ordered(sdkp->disk->queue, ordered, sd_prepare_flush);
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 set_capacity(disk, sdkp->capacity);
1602 kfree(buffer);
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 out:
1605 return 0;
1606}
1607
1608/**
1609 * sd_probe - called during driver initialization and whenever a
1610 * new scsi device is attached to the system. It is called once
1611 * for each scsi device (not just disks) present.
1612 * @dev: pointer to device object
1613 *
1614 * Returns 0 if successful (or not interested in this scsi device
1615 * (e.g. scanner)); 1 when there is an error.
1616 *
1617 * Note: this function is invoked from the scsi mid-level.
1618 * This function sets up the mapping between a given
1619 * <host,channel,id,lun> (found in sdp) and new device name
1620 * (e.g. /dev/sda). More precisely it is the block device major
1621 * and minor number that is chosen here.
1622 *
1623 * Assume sd_attach is not re-entrant (for time being)
1624 * Also think about sd_attach() and sd_remove() running coincidentally.
1625 **/
1626static int sd_probe(struct device *dev)
1627{
1628 struct scsi_device *sdp = to_scsi_device(dev);
1629 struct scsi_disk *sdkp;
1630 struct gendisk *gd;
1631 u32 index;
1632 int error;
1633
1634 error = -ENODEV;
Al Viro 631e8a12005-05-16 01:59:55 +01001635 if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 goto out;
1637
James Bottomley9ccfc752005-10-02 11:45:08 -05001638 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
1639 "sd_attach\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 error = -ENOMEM;
Jes Sorensen24669f752006-01-16 10:31:18 -05001642 sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 if (!sdkp)
1644 goto out;
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 gd = alloc_disk(16);
1647 if (!gd)
1648 goto out_free;
1649
1650 if (!idr_pre_get(&sd_index_idr, GFP_KERNEL))
1651 goto out_put;
1652
1653 spin_lock(&sd_index_lock);
1654 error = idr_get_new(&sd_index_idr, NULL, &index);
1655 spin_unlock(&sd_index_lock);
1656
1657 if (index >= SD_MAX_DISKS)
1658 error = -EBUSY;
1659 if (error)
1660 goto out_put;
1661
1662 sdkp->device = sdp;
1663 sdkp->driver = &sd_template;
1664 sdkp->disk = gd;
1665 sdkp->index = index;
1666 sdkp->openers = 0;
Kay Sieversc02e6002008-03-19 13:09:56 +01001667 sdkp->previous_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669 if (!sdp->timeout) {
Al Viro 631e8a12005-05-16 01:59:55 +01001670 if (sdp->type != TYPE_MOD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 sdp->timeout = SD_TIMEOUT;
1672 else
1673 sdp->timeout = SD_MOD_TIMEOUT;
1674 }
1675
Tony Jonesee959b02008-02-22 00:13:36 +01001676 device_initialize(&sdkp->dev);
1677 sdkp->dev.parent = &sdp->sdev_gendev;
1678 sdkp->dev.class = &sd_disk_class;
1679 strncpy(sdkp->dev.bus_id, sdp->sdev_gendev.bus_id, BUS_ID_SIZE);
Nagendra Singh Tomar017f2e32007-02-02 17:34:56 +05301680
Tony Jonesee959b02008-02-22 00:13:36 +01001681 if (device_add(&sdkp->dev))
Nagendra Singh Tomar017f2e32007-02-02 17:34:56 +05301682 goto out_put;
1683
1684 get_device(&sdp->sdev_gendev);
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 gd->major = sd_major((index & 0xf0) >> 4);
1687 gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
1688 gd->minors = 16;
1689 gd->fops = &sd_fops;
1690
1691 if (index < 26) {
1692 sprintf(gd->disk_name, "sd%c", 'a' + index % 26);
1693 } else if (index < (26 + 1) * 26) {
1694 sprintf(gd->disk_name, "sd%c%c",
1695 'a' + index / 26 - 1,'a' + index % 26);
1696 } else {
1697 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
1698 const unsigned int m2 = (index / 26 - 1) % 26;
1699 const unsigned int m3 = index % 26;
1700 sprintf(gd->disk_name, "sd%c%c%c",
1701 'a' + m1, 'a' + m2, 'a' + m3);
1702 }
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 gd->private_data = &sdkp->driver;
Tejun Heo461d4e92006-01-06 09:52:55 +01001705 gd->queue = sdkp->device->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707 sd_revalidate_disk(gd);
1708
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001709 blk_queue_prep_rq(sdp->request_queue, sd_prep_fn);
James Bottomley03a57432007-08-03 16:41:11 -05001710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 gd->driverfs_dev = &sdp->sdev_gendev;
1712 gd->flags = GENHD_FL_DRIVERFS;
1713 if (sdp->removable)
1714 gd->flags |= GENHD_FL_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 dev_set_drvdata(dev, sdkp);
1717 add_disk(gd);
1718
Martin K. Petersene73aec82007-02-27 22:40:55 -05001719 sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
1720 sdp->removable ? "removable " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722 return 0;
1723
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001724 out_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 put_disk(gd);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001726 out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 kfree(sdkp);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001728 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 return error;
1730}
1731
1732/**
1733 * sd_remove - called whenever a scsi disk (previously recognized by
1734 * sd_probe) is detached from the system. It is called (potentially
1735 * multiple times) during sd module unload.
1736 * @sdp: pointer to mid level scsi device object
1737 *
1738 * Note: this function is invoked from the scsi mid-level.
1739 * This function potentially frees up a device name (e.g. /dev/sdc)
1740 * that could be re-used by a subsequent sd_probe().
1741 * This function is not called when the built-in sd driver is "exit-ed".
1742 **/
1743static int sd_remove(struct device *dev)
1744{
1745 struct scsi_disk *sdkp = dev_get_drvdata(dev);
1746
Tony Jonesee959b02008-02-22 00:13:36 +01001747 device_del(&sdkp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 del_gendisk(sdkp->disk);
1749 sd_shutdown(dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001750
Arjan van de Ven0b950672006-01-11 13:16:10 +01001751 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001752 dev_set_drvdata(dev, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001753 put_device(&sdkp->dev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001754 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
1756 return 0;
1757}
1758
1759/**
1760 * scsi_disk_release - Called to free the scsi_disk structure
Tony Jonesee959b02008-02-22 00:13:36 +01001761 * @dev: pointer to embedded class device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 *
Arjan van de Ven0b950672006-01-11 13:16:10 +01001763 * sd_ref_mutex must be held entering this routine. Because it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 * called on last put, you should always use the scsi_disk_get()
1765 * scsi_disk_put() helpers which manipulate the semaphore directly
Tony Jonesee959b02008-02-22 00:13:36 +01001766 * and never do a direct put_device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 **/
Tony Jonesee959b02008-02-22 00:13:36 +01001768static void scsi_disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
Tony Jonesee959b02008-02-22 00:13:36 +01001770 struct scsi_disk *sdkp = to_scsi_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 struct gendisk *disk = sdkp->disk;
1772
1773 spin_lock(&sd_index_lock);
1774 idr_remove(&sd_index_idr, sdkp->index);
1775 spin_unlock(&sd_index_lock);
1776
1777 disk->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 put_disk(disk);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001779 put_device(&sdkp->device->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 kfree(sdkp);
1782}
1783
James Bottomleycc5d2c82007-03-20 12:26:03 -05001784static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
Tejun Heoc3c94c52007-03-21 00:13:59 +09001785{
1786 unsigned char cmd[6] = { START_STOP }; /* START_VALID */
1787 struct scsi_sense_hdr sshdr;
James Bottomleycc5d2c82007-03-20 12:26:03 -05001788 struct scsi_device *sdp = sdkp->device;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001789 int res;
1790
1791 if (start)
1792 cmd[4] |= 1; /* START */
1793
1794 if (!scsi_device_online(sdp))
1795 return -ENODEV;
1796
1797 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
1798 SD_TIMEOUT, SD_MAX_RETRIES);
1799 if (res) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05001800 sd_printk(KERN_WARNING, sdkp, "START_STOP FAILED\n");
1801 sd_print_result(sdkp, res);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001802 if (driver_byte(res) & DRIVER_SENSE)
James Bottomleycc5d2c82007-03-20 12:26:03 -05001803 sd_print_sense_hdr(sdkp, &sshdr);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001804 }
1805
1806 return res;
1807}
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809/*
1810 * Send a SYNCHRONIZE CACHE instruction down to the device through
1811 * the normal SCSI command structure. Wait for the command to
1812 * complete.
1813 */
1814static void sd_shutdown(struct device *dev)
1815{
Alan Stern39b7f1e2005-11-04 14:44:41 -05001816 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
1818 if (!sdkp)
1819 return; /* this can happen */
1820
Alan Stern39b7f1e2005-11-04 14:44:41 -05001821 if (sdkp->WCE) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001822 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
1823 sd_sync_cache(sdkp);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001824 }
Tejun Heoc3c94c52007-03-21 00:13:59 +09001825
James Bottomleycc5d2c82007-03-20 12:26:03 -05001826 if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) {
1827 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
1828 sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001829 }
1830
Alan Stern39b7f1e2005-11-04 14:44:41 -05001831 scsi_disk_put(sdkp);
1832}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Tejun Heoc3c94c52007-03-21 00:13:59 +09001834static int sd_suspend(struct device *dev, pm_message_t mesg)
1835{
Tejun Heoc3c94c52007-03-21 00:13:59 +09001836 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04001837 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001838
1839 if (!sdkp)
1840 return 0; /* this can happen */
1841
1842 if (sdkp->WCE) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05001843 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
Tejun Heoc3c94c52007-03-21 00:13:59 +09001844 ret = sd_sync_cache(sdkp);
1845 if (ret)
Alan Stern09ff92f2007-05-21 09:55:04 -04001846 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001847 }
1848
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01001849 if ((mesg.event & PM_EVENT_SLEEP) && sdkp->device->manage_start_stop) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05001850 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
1851 ret = sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001852 }
1853
Alan Stern09ff92f2007-05-21 09:55:04 -04001854done:
1855 scsi_disk_put(sdkp);
1856 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001857}
1858
1859static int sd_resume(struct device *dev)
1860{
Tejun Heoc3c94c52007-03-21 00:13:59 +09001861 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04001862 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001863
James Bottomleycc5d2c82007-03-20 12:26:03 -05001864 if (!sdkp->device->manage_start_stop)
Alan Stern09ff92f2007-05-21 09:55:04 -04001865 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001866
James Bottomleycc5d2c82007-03-20 12:26:03 -05001867 sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
Alan Stern09ff92f2007-05-21 09:55:04 -04001868 ret = sd_start_stop_device(sdkp, 1);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001869
Alan Stern09ff92f2007-05-21 09:55:04 -04001870done:
1871 scsi_disk_put(sdkp);
1872 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001873}
1874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875/**
1876 * init_sd - entry point for this driver (both when built in or when
1877 * a module).
1878 *
1879 * Note: this function registers this driver with the scsi mid-level.
1880 **/
1881static int __init init_sd(void)
1882{
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001883 int majors = 0, i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
1885 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
1886
1887 for (i = 0; i < SD_MAJORS; i++)
1888 if (register_blkdev(sd_major(i), "sd") == 0)
1889 majors++;
1890
1891 if (!majors)
1892 return -ENODEV;
1893
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001894 err = class_register(&sd_disk_class);
1895 if (err)
1896 goto err_out;
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001897
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001898 err = scsi_register_driver(&sd_template.gendrv);
1899 if (err)
1900 goto err_out_class;
1901
1902 return 0;
1903
1904err_out_class:
1905 class_unregister(&sd_disk_class);
1906err_out:
1907 for (i = 0; i < SD_MAJORS; i++)
1908 unregister_blkdev(sd_major(i), "sd");
1909 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911
1912/**
1913 * exit_sd - exit point for this driver (when it is a module).
1914 *
1915 * Note: this function unregisters this driver from the scsi mid-level.
1916 **/
1917static void __exit exit_sd(void)
1918{
1919 int i;
1920
1921 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
1922
1923 scsi_unregister_driver(&sd_template.gendrv);
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001924 class_unregister(&sd_disk_class);
1925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 for (i = 0; i < SD_MAJORS; i++)
1927 unregister_blkdev(sd_major(i), "sd");
1928}
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930module_init(init_sd);
1931module_exit(exit_sd);
Martin K. Petersene73aec82007-02-27 22:40:55 -05001932
1933static void sd_print_sense_hdr(struct scsi_disk *sdkp,
1934 struct scsi_sense_hdr *sshdr)
1935{
1936 sd_printk(KERN_INFO, sdkp, "");
1937 scsi_show_sense_hdr(sshdr);
1938 sd_printk(KERN_INFO, sdkp, "");
1939 scsi_show_extd_sense(sshdr->asc, sshdr->ascq);
1940}
1941
1942static void sd_print_result(struct scsi_disk *sdkp, int result)
1943{
1944 sd_printk(KERN_INFO, sdkp, "");
1945 scsi_show_result(result);
1946}
1947