blob: af9e406a3ad8ff38b8ddf0f07882fa29356766b0 [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>
James Bottomley7404ad3b2008-08-31 10:41:52 -050050#include <linux/string_helpers.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/uaccess.h>
52
53#include <scsi/scsi.h>
54#include <scsi/scsi_cmnd.h>
55#include <scsi/scsi_dbg.h>
56#include <scsi/scsi_device.h>
57#include <scsi/scsi_driver.h>
58#include <scsi/scsi_eh.h>
59#include <scsi/scsi_host.h>
60#include <scsi/scsi_ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <scsi/scsicam.h>
62
Martin K. Petersenaa916962008-06-17 12:47:32 -040063#include "sd.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include "scsi_logging.h"
65
Rene Hermanf018fa52006-03-08 00:14:20 -080066MODULE_AUTHOR("Eric Youngdale");
67MODULE_DESCRIPTION("SCSI disk (sd) driver");
68MODULE_LICENSE("GPL");
69
70MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR);
71MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR);
72MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR);
73MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR);
74MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR);
75MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR);
76MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR);
77MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR);
78MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR);
79MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR);
80MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR);
81MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR);
82MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR);
83MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR);
84MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR);
85MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR);
Michael Tokarevd7b8bcb2006-10-27 16:02:37 +040086MODULE_ALIAS_SCSI_DEVICE(TYPE_DISK);
87MODULE_ALIAS_SCSI_DEVICE(TYPE_MOD);
88MODULE_ALIAS_SCSI_DEVICE(TYPE_RBC);
Rene Hermanf018fa52006-03-08 00:14:20 -080089
Linus Torvalds7b3d9542008-01-06 10:17:12 -080090static int sd_revalidate_disk(struct gendisk *);
91static int sd_probe(struct device *);
92static int sd_remove(struct device *);
93static void sd_shutdown(struct device *);
94static int sd_suspend(struct device *, pm_message_t state);
95static int sd_resume(struct device *);
96static void sd_rescan(struct device *);
97static int sd_done(struct scsi_cmnd *);
98static void sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer);
Tony Jonesee959b02008-02-22 00:13:36 +010099static void scsi_disk_release(struct device *cdev);
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800100static void sd_print_sense_hdr(struct scsi_disk *, struct scsi_sense_hdr *);
101static void sd_print_result(struct scsi_disk *, int);
102
Tejun Heof27bac22008-07-14 14:59:30 +0900103static DEFINE_IDA(sd_index_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
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
Martin K. Petersene0597d72008-07-17 04:28:34 -0400237static ssize_t
238sd_show_protection_type(struct device *dev, struct device_attribute *attr,
239 char *buf)
240{
241 struct scsi_disk *sdkp = to_scsi_disk(dev);
242
243 return snprintf(buf, 20, "%u\n", sdkp->protection_type);
244}
245
246static ssize_t
247sd_show_app_tag_own(struct device *dev, struct device_attribute *attr,
248 char *buf)
249{
250 struct scsi_disk *sdkp = to_scsi_disk(dev);
251
252 return snprintf(buf, 20, "%u\n", sdkp->ATO);
253}
254
Tony Jonesee959b02008-02-22 00:13:36 +0100255static struct device_attribute sd_disk_attrs[] = {
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600256 __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
257 sd_store_cache_type),
258 __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
Brian Kinga144c5a2006-06-27 11:10:31 -0500259 __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
260 sd_store_allow_restart),
Tejun Heoc3c94c52007-03-21 00:13:59 +0900261 __ATTR(manage_start_stop, S_IRUGO|S_IWUSR, sd_show_manage_start_stop,
262 sd_store_manage_start_stop),
Martin K. Petersene0597d72008-07-17 04:28:34 -0400263 __ATTR(protection_type, S_IRUGO, sd_show_protection_type, NULL),
264 __ATTR(app_tag_own, S_IRUGO, sd_show_app_tag_own, NULL),
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600265 __ATTR_NULL,
266};
267
268static struct class sd_disk_class = {
269 .name = "scsi_disk",
270 .owner = THIS_MODULE,
Tony Jonesee959b02008-02-22 00:13:36 +0100271 .dev_release = scsi_disk_release,
272 .dev_attrs = sd_disk_attrs,
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600273};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275static struct scsi_driver sd_template = {
276 .owner = THIS_MODULE,
277 .gendrv = {
278 .name = "sd",
279 .probe = sd_probe,
280 .remove = sd_remove,
Tejun Heoc3c94c52007-03-21 00:13:59 +0900281 .suspend = sd_suspend,
282 .resume = sd_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 .shutdown = sd_shutdown,
284 },
285 .rescan = sd_rescan,
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800286 .done = sd_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287};
288
289/*
290 * Device no to disk mapping:
291 *
292 * major disc2 disc p1
293 * |............|.............|....|....| <- dev_t
294 * 31 20 19 8 7 4 3 0
295 *
296 * Inside a major, we have 16k disks, however mapped non-
297 * contiguously. The first 16 disks are for major0, the next
298 * ones with major1, ... Disk 256 is for major0 again, disk 272
299 * for major1, ...
300 * As we stay compatible with our numbering scheme, we can reuse
301 * the well-know SCSI majors 8, 65--71, 136--143.
302 */
303static int sd_major(int major_idx)
304{
305 switch (major_idx) {
306 case 0:
307 return SCSI_DISK0_MAJOR;
308 case 1 ... 7:
309 return SCSI_DISK1_MAJOR + major_idx - 1;
310 case 8 ... 15:
311 return SCSI_DISK8_MAJOR + major_idx - 8;
312 default:
313 BUG();
314 return 0; /* shut up gcc */
315 }
316}
317
Alan Stern39b7f1e2005-11-04 14:44:41 -0500318static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 struct scsi_disk *sdkp = NULL;
321
Alan Stern39b7f1e2005-11-04 14:44:41 -0500322 if (disk->private_data) {
323 sdkp = scsi_disk(disk);
324 if (scsi_device_get(sdkp->device) == 0)
Tony Jonesee959b02008-02-22 00:13:36 +0100325 get_device(&sdkp->dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500326 else
327 sdkp = NULL;
328 }
329 return sdkp;
330}
331
332static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
333{
334 struct scsi_disk *sdkp;
335
Arjan van de Ven0b950672006-01-11 13:16:10 +0100336 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500337 sdkp = __scsi_disk_get(disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100338 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return sdkp;
Alan Stern39b7f1e2005-11-04 14:44:41 -0500340}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Alan Stern39b7f1e2005-11-04 14:44:41 -0500342static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
343{
344 struct scsi_disk *sdkp;
345
Arjan van de Ven0b950672006-01-11 13:16:10 +0100346 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500347 sdkp = dev_get_drvdata(dev);
348 if (sdkp)
349 sdkp = __scsi_disk_get(sdkp->disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100350 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return sdkp;
352}
353
354static void scsi_disk_put(struct scsi_disk *sdkp)
355{
356 struct scsi_device *sdev = sdkp->device;
357
Arjan van de Ven0b950672006-01-11 13:16:10 +0100358 mutex_lock(&sd_ref_mutex);
Tony Jonesee959b02008-02-22 00:13:36 +0100359 put_device(&sdkp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 scsi_device_put(sdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100361 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
364/**
365 * sd_init_command - build a scsi (read or write) command from
366 * information in the request structure.
367 * @SCpnt: pointer to mid-level's per scsi command structure that
368 * contains request and into which the scsi command is written
369 *
370 * Returns 1 if successful and 0 if error (or cannot be done now).
371 **/
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500372static int sd_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500374 struct scsi_cmnd *SCpnt;
375 struct scsi_device *sdp = q->queuedata;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100376 struct gendisk *disk = rq->rq_disk;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400377 struct scsi_disk *sdkp;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100378 sector_t block = rq->sector;
Linus Torvalds18351072008-08-05 21:42:21 -0700379 sector_t threshold;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500380 unsigned int this_count = rq->nr_sectors;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100381 unsigned int timeout = sdp->timeout;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500382 int ret;
383
384 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
385 ret = scsi_setup_blk_pc_cmnd(sdp, rq);
386 goto out;
387 } else if (rq->cmd_type != REQ_TYPE_FS) {
388 ret = BLKPREP_KILL;
389 goto out;
390 }
391 ret = scsi_setup_fs_cmnd(sdp, rq);
392 if (ret != BLKPREP_OK)
393 goto out;
394 SCpnt = rq->special;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400395 sdkp = scsi_disk(disk);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500396
397 /* from here on until we're complete, any goto out
398 * is used for a killable error condition */
399 ret = BLKPREP_KILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500401 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
402 "sd_init_command: block=%llu, "
403 "count=%d\n",
404 (unsigned long long)block,
405 this_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 if (!sdp || !scsi_device_online(sdp) ||
408 block + rq->nr_sectors > get_capacity(disk)) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500409 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
410 "Finishing %ld sectors\n",
411 rq->nr_sectors));
412 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
413 "Retry with 0x%p\n", SCpnt));
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500414 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
417 if (sdp->changed) {
418 /*
419 * quietly refuse to do anything to a changed disc until
420 * the changed bit has been reset
421 */
422 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500423 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500425
Hans de Goedea0899d42008-01-20 11:12:26 +0100426 /*
Linus Torvalds18351072008-08-05 21:42:21 -0700427 * Some SD card readers can't handle multi-sector accesses which touch
428 * the last one or two hardware sectors. Split accesses as needed.
Hans de Goedea0899d42008-01-20 11:12:26 +0100429 */
Linus Torvalds18351072008-08-05 21:42:21 -0700430 threshold = get_capacity(disk) - SD_LAST_BUGGY_SECTORS *
431 (sdp->sector_size / 512);
432
433 if (unlikely(sdp->last_sector_bug && block + this_count > threshold)) {
434 if (block < threshold) {
435 /* Access up to the threshold but not beyond */
436 this_count = threshold - block;
437 } else {
438 /* Access only a single hardware sector */
439 this_count = sdp->sector_size / 512;
440 }
441 }
Hans de Goedea0899d42008-01-20 11:12:26 +0100442
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500443 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, "block=%llu\n",
444 (unsigned long long)block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 /*
447 * If we have a 1K hardware sectorsize, prevent access to single
448 * 512 byte sectors. In theory we could handle this - in fact
449 * the scsi cdrom driver must be able to handle this because
450 * we typically use 1K blocksizes, and cdroms typically have
451 * 2K hardware sectorsizes. Of course, things are simpler
452 * with the cdrom, since it is read-only. For performance
453 * reasons, the filesystems should be able to handle this
454 * and not force the scsi disk driver to use bounce buffers
455 * for this.
456 */
457 if (sdp->sector_size == 1024) {
458 if ((block & 1) || (rq->nr_sectors & 1)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500459 scmd_printk(KERN_ERR, SCpnt,
460 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500461 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 } else {
463 block = block >> 1;
464 this_count = this_count >> 1;
465 }
466 }
467 if (sdp->sector_size == 2048) {
468 if ((block & 3) || (rq->nr_sectors & 3)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500469 scmd_printk(KERN_ERR, SCpnt,
470 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500471 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 } else {
473 block = block >> 2;
474 this_count = this_count >> 2;
475 }
476 }
477 if (sdp->sector_size == 4096) {
478 if ((block & 7) || (rq->nr_sectors & 7)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500479 scmd_printk(KERN_ERR, SCpnt,
480 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500481 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 } else {
483 block = block >> 3;
484 this_count = this_count >> 3;
485 }
486 }
487 if (rq_data_dir(rq) == WRITE) {
488 if (!sdp->writeable) {
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500489 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491 SCpnt->cmnd[0] = WRITE_6;
492 SCpnt->sc_data_direction = DMA_TO_DEVICE;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400493
494 if (blk_integrity_rq(rq) &&
495 sd_dif_prepare(rq, block, sdp->sector_size) == -EIO)
496 goto out;
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 } else if (rq_data_dir(rq) == READ) {
499 SCpnt->cmnd[0] = READ_6;
500 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
501 } else {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500502 scmd_printk(KERN_ERR, SCpnt, "Unknown command %x\n", rq->cmd_flags);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500503 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500506 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
507 "%s %d/%ld 512 byte blocks.\n",
508 (rq_data_dir(rq) == WRITE) ?
509 "writing" : "reading", this_count,
510 rq->nr_sectors));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400512 /* Set RDPROTECT/WRPROTECT if disk is formatted with DIF */
513 if (scsi_host_dif_capable(sdp->host, sdkp->protection_type))
514 SCpnt->cmnd[1] = 1 << 5;
515 else
516 SCpnt->cmnd[1] = 0;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (block > 0xffffffff) {
519 SCpnt->cmnd[0] += READ_16 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100520 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
522 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
523 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
524 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
525 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
526 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
527 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
528 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
529 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
530 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
531 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
532 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
533 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
534 } else if ((this_count > 0xff) || (block > 0x1fffff) ||
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400535 scsi_device_protection(SCpnt->device) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 SCpnt->device->use_10_for_rw) {
537 if (this_count > 0xffff)
538 this_count = 0xffff;
539
540 SCpnt->cmnd[0] += READ_10 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100541 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
543 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
544 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
545 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
546 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
547 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
548 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
549 } else {
Tejun Heo007365a2006-01-06 09:53:52 +0100550 if (unlikely(blk_fua_rq(rq))) {
551 /*
552 * This happens only if this drive failed
553 * 10byte rw command with ILLEGAL_REQUEST
554 * during operation and thus turned off
555 * use_10_for_rw.
556 */
Martin K. Petersene73aec82007-02-27 22:40:55 -0500557 scmd_printk(KERN_ERR, SCpnt,
558 "FUA write on READ/WRITE(6) drive\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500559 goto out;
Tejun Heo007365a2006-01-06 09:53:52 +0100560 }
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
563 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
564 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
565 SCpnt->cmnd[4] = (unsigned char) this_count;
566 SCpnt->cmnd[5] = 0;
567 }
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200568 SCpnt->sdb.length = this_count * sdp->sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400570 /* If DIF or DIX is enabled, tell HBA how to handle request */
571 if (sdkp->protection_type || scsi_prot_sg_count(SCpnt))
572 sd_dif_op(SCpnt, sdkp->protection_type, scsi_prot_sg_count(SCpnt));
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /*
575 * We shouldn't disconnect in the middle of a sector, so with a dumb
576 * host adapter, it's safe to assume that we can at least transfer
577 * this many bytes between each connect / disconnect.
578 */
579 SCpnt->transfersize = sdp->sector_size;
580 SCpnt->underflow = this_count << 9;
581 SCpnt->allowed = SD_MAX_RETRIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 SCpnt->timeout_per_command = timeout;
583
584 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 * This indicates that the command is ready from our end to be
586 * queued.
587 */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500588 ret = BLKPREP_OK;
589 out:
590 return scsi_prep_return(q, rq, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593/**
594 * sd_open - open a scsi disk device
595 * @inode: only i_rdev member may be used
596 * @filp: only f_mode and f_flags may be used
597 *
598 * Returns 0 if successful. Returns a negated errno value in case
599 * of error.
600 *
601 * Note: This can be called from a user context (e.g. fsck(1) )
602 * or from within the kernel (e.g. as a result of a mount(1) ).
603 * In the latter case @inode and @filp carry an abridged amount
604 * of information as noted above.
605 **/
606static int sd_open(struct inode *inode, struct file *filp)
607{
608 struct gendisk *disk = inode->i_bdev->bd_disk;
609 struct scsi_disk *sdkp;
610 struct scsi_device *sdev;
611 int retval;
612
613 if (!(sdkp = scsi_disk_get(disk)))
614 return -ENXIO;
615
616
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500617 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_open\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 sdev = sdkp->device;
620
621 /*
622 * If the device is in error recovery, wait until it is done.
623 * If the device is offline, then disallow any access to it.
624 */
625 retval = -ENXIO;
626 if (!scsi_block_when_processing_errors(sdev))
627 goto error_out;
628
629 if (sdev->removable || sdkp->write_prot)
630 check_disk_change(inode->i_bdev);
631
632 /*
633 * If the drive is empty, just let the open fail.
634 */
635 retval = -ENOMEDIUM;
636 if (sdev->removable && !sdkp->media_present &&
637 !(filp->f_flags & O_NDELAY))
638 goto error_out;
639
640 /*
641 * If the device has the write protect tab set, have the open fail
642 * if the user expects to be able to write to the thing.
643 */
644 retval = -EROFS;
645 if (sdkp->write_prot && (filp->f_mode & FMODE_WRITE))
646 goto error_out;
647
648 /*
649 * It is possible that the disk changing stuff resulted in
650 * the device being taken offline. If this is the case,
651 * report this to the user, and don't pretend that the
652 * open actually succeeded.
653 */
654 retval = -ENXIO;
655 if (!scsi_device_online(sdev))
656 goto error_out;
657
658 if (!sdkp->openers++ && sdev->removable) {
659 if (scsi_block_when_processing_errors(sdev))
660 scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
661 }
662
663 return 0;
664
665error_out:
666 scsi_disk_put(sdkp);
667 return retval;
668}
669
670/**
671 * sd_release - invoked when the (last) close(2) is called on this
672 * scsi disk.
673 * @inode: only i_rdev member may be used
674 * @filp: only f_mode and f_flags may be used
675 *
676 * Returns 0.
677 *
678 * Note: may block (uninterruptible) if error recovery is underway
679 * on this disk.
680 **/
681static int sd_release(struct inode *inode, struct file *filp)
682{
683 struct gendisk *disk = inode->i_bdev->bd_disk;
684 struct scsi_disk *sdkp = scsi_disk(disk);
685 struct scsi_device *sdev = sdkp->device;
686
James Bottomley56937f72007-03-11 12:25:33 -0500687 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_release\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 if (!--sdkp->openers && sdev->removable) {
690 if (scsi_block_when_processing_errors(sdev))
691 scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
692 }
693
694 /*
695 * XXX and what if there are packets in flight and this close()
696 * XXX is followed by a "rmmod sd_mod"?
697 */
698 scsi_disk_put(sdkp);
699 return 0;
700}
701
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800702static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
705 struct scsi_device *sdp = sdkp->device;
706 struct Scsi_Host *host = sdp->host;
707 int diskinfo[4];
708
709 /* default to most commonly used values */
710 diskinfo[0] = 0x40; /* 1 << 6 */
711 diskinfo[1] = 0x20; /* 1 << 5 */
712 diskinfo[2] = sdkp->capacity >> 11;
713
714 /* override with calculated, extended default, or driver values */
715 if (host->hostt->bios_param)
716 host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
717 else
718 scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
719
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800720 geo->heads = diskinfo[0];
721 geo->sectors = diskinfo[1];
722 geo->cylinders = diskinfo[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return 0;
724}
725
726/**
727 * sd_ioctl - process an ioctl
728 * @inode: only i_rdev/i_bdev members may be used
729 * @filp: only f_mode and f_flags may be used
730 * @cmd: ioctl command number
731 * @arg: this is third argument given to ioctl(2) system call.
732 * Often contains a pointer.
733 *
734 * Returns 0 if successful (some ioctls return postive numbers on
735 * success as well). Returns a negated errno value in case of error.
736 *
737 * Note: most ioctls are forward onto the block subsystem or further
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200738 * down in the scsi subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 **/
740static int sd_ioctl(struct inode * inode, struct file * filp,
741 unsigned int cmd, unsigned long arg)
742{
743 struct block_device *bdev = inode->i_bdev;
744 struct gendisk *disk = bdev->bd_disk;
745 struct scsi_device *sdp = scsi_disk(disk)->device;
746 void __user *p = (void __user *)arg;
747 int error;
748
749 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
750 disk->disk_name, cmd));
751
752 /*
753 * If we are in the middle of error recovery, don't let anyone
754 * else try and use this device. Also, if error recovery fails, it
755 * may try and take the device offline, in which case all further
756 * access to the device is prohibited.
757 */
758 error = scsi_nonblockable_ioctl(sdp, cmd, p, filp);
759 if (!scsi_block_when_processing_errors(sdp) || !error)
760 return error;
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 /*
763 * Send SCSI addressing ioctls directly to mid level, send other
764 * ioctls to block level and then onto mid level if they can't be
765 * resolved.
766 */
767 switch (cmd) {
768 case SCSI_IOCTL_GET_IDLUN:
769 case SCSI_IOCTL_GET_BUS_NUMBER:
770 return scsi_ioctl(sdp, cmd, p);
771 default:
FUJITA Tomonori45e79a32007-07-09 12:39:20 +0200772 error = scsi_cmd_ioctl(filp, disk->queue, disk, cmd, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (error != -ENOTTY)
774 return error;
775 }
776 return scsi_ioctl(sdp, cmd, p);
777}
778
779static void set_media_not_present(struct scsi_disk *sdkp)
780{
781 sdkp->media_present = 0;
782 sdkp->capacity = 0;
783 sdkp->device->changed = 1;
784}
785
786/**
787 * sd_media_changed - check if our medium changed
788 * @disk: kernel device descriptor
789 *
790 * Returns 0 if not applicable or no change; 1 if change
791 *
792 * Note: this function is invoked from the block subsystem.
793 **/
794static int sd_media_changed(struct gendisk *disk)
795{
796 struct scsi_disk *sdkp = scsi_disk(disk);
797 struct scsi_device *sdp = sdkp->device;
James Bottomley001aac22007-12-02 19:10:40 +0200798 struct scsi_sense_hdr *sshdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 int retval;
800
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500801 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_media_changed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 if (!sdp->removable)
804 return 0;
805
806 /*
807 * If the device is offline, don't send any commands - just pretend as
808 * if the command failed. If the device ever comes back online, we
809 * can deal with it then. It is only because of unrecoverable errors
810 * that we would ever take a device offline in the first place.
811 */
Kay Sievers285e9672007-08-14 14:10:39 +0200812 if (!scsi_device_online(sdp)) {
813 set_media_not_present(sdkp);
814 retval = 1;
815 goto out;
816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 /*
819 * Using TEST_UNIT_READY enables differentiation between drive with
820 * no cartridge loaded - NOT READY, drive with changed cartridge -
821 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
822 *
823 * Drives that auto spin down. eg iomega jaz 1G, will be started
824 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
825 * sd_revalidate() is called.
826 */
827 retval = -ENODEV;
Kay Sievers285e9672007-08-14 14:10:39 +0200828
James Bottomley001aac22007-12-02 19:10:40 +0200829 if (scsi_block_when_processing_errors(sdp)) {
830 sshdr = kzalloc(sizeof(*sshdr), GFP_KERNEL);
831 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES,
832 sshdr);
833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 /*
836 * Unable to test, unit probably not ready. This usually
837 * means there is no disc in the drive. Mark as changed,
838 * and we will figure it out later once the drive is
839 * available again.
840 */
James Bottomley001aac22007-12-02 19:10:40 +0200841 if (retval || (scsi_sense_valid(sshdr) &&
842 /* 0x3a is medium not present */
843 sshdr->asc == 0x3a)) {
Kay Sievers285e9672007-08-14 14:10:39 +0200844 set_media_not_present(sdkp);
845 retval = 1;
846 goto out;
847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 /*
850 * For removable scsi disk we have to recognise the presence
851 * of a disk in the drive. This is kept in the struct scsi_disk
852 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
853 */
854 sdkp->media_present = 1;
855
856 retval = sdp->changed;
857 sdp->changed = 0;
Kay Sievers285e9672007-08-14 14:10:39 +0200858out:
859 if (retval != sdkp->previous_state)
860 sdev_evt_send_simple(sdp, SDEV_EVT_MEDIA_CHANGE, GFP_KERNEL);
861 sdkp->previous_state = retval;
James Bottomley001aac22007-12-02 19:10:40 +0200862 kfree(sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Martin K. Petersene73aec82007-02-27 22:40:55 -0500866static int sd_sync_cache(struct scsi_disk *sdkp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 int retries, res;
Martin K. Petersene73aec82007-02-27 22:40:55 -0500869 struct scsi_device *sdp = sdkp->device;
James Bottomleyea73a9f2005-08-28 11:33:52 -0500870 struct scsi_sense_hdr sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 if (!scsi_device_online(sdp))
873 return -ENODEV;
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 for (retries = 3; retries > 0; --retries) {
877 unsigned char cmd[10] = { 0 };
878
879 cmd[0] = SYNCHRONIZE_CACHE;
880 /*
881 * Leave the rest of the command zero to indicate
882 * flush everything.
883 */
James Bottomleyea73a9f2005-08-28 11:33:52 -0500884 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
885 SD_TIMEOUT, SD_MAX_RETRIES);
886 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 break;
888 }
889
Martin K. Petersene73aec82007-02-27 22:40:55 -0500890 if (res) {
891 sd_print_result(sdkp, res);
892 if (driver_byte(res) & DRIVER_SENSE)
893 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
895
Tejun Heo37210502007-03-21 00:07:18 +0900896 if (res)
897 return -EIO;
898 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
Jens Axboe165125e2007-07-24 09:28:11 +0200901static void sd_prepare_flush(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200903 rq->cmd_type = REQ_TYPE_BLOCK_PC;
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500904 rq->timeout = SD_TIMEOUT;
905 rq->cmd[0] = SYNCHRONIZE_CACHE;
Tejun Heo461d4e92006-01-06 09:52:55 +0100906 rq->cmd_len = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
909static void sd_rescan(struct device *dev)
910{
Alan Stern39b7f1e2005-11-04 14:44:41 -0500911 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
912
913 if (sdkp) {
914 sd_revalidate_disk(sdkp->disk);
915 scsi_disk_put(sdkp);
916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
919
920#ifdef CONFIG_COMPAT
921/*
922 * This gets directly called from VFS. When the ioctl
923 * is not recognized we go back to the other translation paths.
924 */
925static long sd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
926{
Josef Sipek7ac62072006-12-08 02:37:37 -0800927 struct block_device *bdev = file->f_path.dentry->d_inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 struct gendisk *disk = bdev->bd_disk;
929 struct scsi_device *sdev = scsi_disk(disk)->device;
930
931 /*
932 * If we are in the middle of error recovery, don't let anyone
933 * else try and use this device. Also, if error recovery fails, it
934 * may try and take the device offline, in which case all further
935 * access to the device is prohibited.
936 */
937 if (!scsi_block_when_processing_errors(sdev))
938 return -ENODEV;
939
940 if (sdev->host->hostt->compat_ioctl) {
941 int ret;
942
943 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
944
945 return ret;
946 }
947
948 /*
949 * Let the static ioctl translation table take care of it.
950 */
951 return -ENOIOCTLCMD;
952}
953#endif
954
955static struct block_device_operations sd_fops = {
956 .owner = THIS_MODULE,
957 .open = sd_open,
958 .release = sd_release,
959 .ioctl = sd_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800960 .getgeo = sd_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961#ifdef CONFIG_COMPAT
962 .compat_ioctl = sd_compat_ioctl,
963#endif
964 .media_changed = sd_media_changed,
965 .revalidate_disk = sd_revalidate_disk,
966};
967
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400968static unsigned int sd_completed_bytes(struct scsi_cmnd *scmd)
969{
970 u64 start_lba = scmd->request->sector;
971 u64 end_lba = scmd->request->sector + (scsi_bufflen(scmd) / 512);
972 u64 bad_lba;
973 int info_valid;
974
975 if (!blk_fs_request(scmd->request))
976 return 0;
977
978 info_valid = scsi_get_sense_info_fld(scmd->sense_buffer,
979 SCSI_SENSE_BUFFERSIZE,
980 &bad_lba);
981 if (!info_valid)
982 return 0;
983
984 if (scsi_bufflen(scmd) <= scmd->device->sector_size)
985 return 0;
986
987 if (scmd->device->sector_size < 512) {
988 /* only legitimate sector_size here is 256 */
989 start_lba <<= 1;
990 end_lba <<= 1;
991 } else {
992 /* be careful ... don't want any overflows */
993 u64 factor = scmd->device->sector_size / 512;
994 do_div(start_lba, factor);
995 do_div(end_lba, factor);
996 }
997
998 /* The bad lba was reported incorrectly, we have no idea where
999 * the error is.
1000 */
1001 if (bad_lba < start_lba || bad_lba >= end_lba)
1002 return 0;
1003
1004 /* This computation should always be done in terms of
1005 * the resolution of the device's medium.
1006 */
1007 return (bad_lba - start_lba) * scmd->device->sector_size;
1008}
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010/**
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001011 * sd_done - bottom half handler: called when the lower level
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 * driver has completed (successfully or otherwise) a scsi command.
1013 * @SCpnt: mid-level's per command structure.
1014 *
1015 * Note: potentially run from within an ISR. Must not block.
1016 **/
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001017static int sd_done(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
1019 int result = SCpnt->result;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001020 unsigned int good_bytes = result ? 0 : scsi_bufflen(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 struct scsi_sense_hdr sshdr;
1022 int sense_valid = 0;
1023 int sense_deferred = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 if (result) {
1026 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
1027 if (sense_valid)
1028 sense_deferred = scsi_sense_is_deferred(&sshdr);
1029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030#ifdef CONFIG_SCSI_LOGGING
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001031 SCSI_LOG_HLCOMPLETE(1, scsi_print_result(SCpnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (sense_valid) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001033 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, SCpnt,
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001034 "sd_done: sb[respc,sk,asc,"
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001035 "ascq]=%x,%x,%x,%x\n",
1036 sshdr.response_code,
1037 sshdr.sense_key, sshdr.asc,
1038 sshdr.ascq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040#endif
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001041 if (driver_byte(result) != DRIVER_SENSE &&
1042 (!sense_valid || sense_deferred))
1043 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001045 switch (sshdr.sense_key) {
1046 case HARDWARE_ERROR:
1047 case MEDIUM_ERROR:
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001048 good_bytes = sd_completed_bytes(SCpnt);
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001049 break;
1050 case RECOVERED_ERROR:
1051 case NO_SENSE:
1052 /* Inform the user, but make sure that it's not treated
1053 * as a hard error.
1054 */
1055 scsi_print_sense("sd", SCpnt);
1056 SCpnt->result = 0;
1057 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001058 good_bytes = scsi_bufflen(SCpnt);
1059 break;
1060 case ABORTED_COMMAND:
1061 if (sshdr.asc == 0x10) { /* DIF: Disk detected corruption */
1062 scsi_print_result(SCpnt);
1063 scsi_print_sense("sd", SCpnt);
1064 good_bytes = sd_completed_bytes(SCpnt);
1065 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001066 break;
1067 case ILLEGAL_REQUEST:
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001068 if (sshdr.asc == 0x10) { /* DIX: HBA detected corruption */
1069 scsi_print_result(SCpnt);
1070 scsi_print_sense("sd", SCpnt);
1071 good_bytes = sd_completed_bytes(SCpnt);
1072 }
1073 if (!scsi_device_protection(SCpnt->device) &&
1074 SCpnt->device->use_10_for_rw &&
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001075 (SCpnt->cmnd[0] == READ_10 ||
1076 SCpnt->cmnd[0] == WRITE_10))
1077 SCpnt->device->use_10_for_rw = 0;
1078 if (SCpnt->device->use_10_for_ms &&
1079 (SCpnt->cmnd[0] == MODE_SENSE_10 ||
1080 SCpnt->cmnd[0] == MODE_SELECT_10))
1081 SCpnt->device->use_10_for_ms = 0;
1082 break;
1083 default:
1084 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001086 out:
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001087 if (rq_data_dir(SCpnt->request) == READ && scsi_prot_sg_count(SCpnt))
1088 sd_dif_complete(SCpnt, good_bytes);
1089
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001090 return good_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091}
1092
James Bottomleyea73a9f2005-08-28 11:33:52 -05001093static int media_not_present(struct scsi_disk *sdkp,
1094 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
James Bottomleyea73a9f2005-08-28 11:33:52 -05001097 if (!scsi_sense_valid(sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return 0;
1099 /* not invoked for commands that could return deferred errors */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001100 if (sshdr->sense_key != NOT_READY &&
1101 sshdr->sense_key != UNIT_ATTENTION)
1102 return 0;
1103 if (sshdr->asc != 0x3A) /* medium not present */
1104 return 0;
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 set_media_not_present(sdkp);
1107 return 1;
1108}
1109
1110/*
1111 * spinup disk - called only in sd_revalidate_disk()
1112 */
1113static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001114sd_spinup_disk(struct scsi_disk *sdkp)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001115{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 unsigned char cmd[10];
Alan Stern4451e472005-07-12 10:45:17 -04001117 unsigned long spintime_expire = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 int retries, spintime;
1119 unsigned int the_result;
1120 struct scsi_sense_hdr sshdr;
1121 int sense_valid = 0;
1122
1123 spintime = 0;
1124
1125 /* Spin up drives, as required. Only do this at boot time */
1126 /* Spinup needs to be done for module loads too. */
1127 do {
1128 retries = 0;
1129
1130 do {
1131 cmd[0] = TEST_UNIT_READY;
1132 memset((void *) &cmd[1], 0, 9);
1133
James Bottomleyea73a9f2005-08-28 11:33:52 -05001134 the_result = scsi_execute_req(sdkp->device, cmd,
1135 DMA_NONE, NULL, 0,
1136 &sshdr, SD_TIMEOUT,
1137 SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Alan Sternb4d38e32006-10-11 16:48:28 -04001139 /*
1140 * If the drive has indicated to us that it
1141 * doesn't have any media in it, don't bother
1142 * with any more polling.
1143 */
1144 if (media_not_present(sdkp, &sshdr))
1145 return;
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001148 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 retries++;
1150 } while (retries < 3 &&
1151 (!scsi_status_is_good(the_result) ||
1152 ((driver_byte(the_result) & DRIVER_SENSE) &&
1153 sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1156 /* no sense, TUR either succeeded or failed
1157 * with a status error */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001158 if(!spintime && !scsi_status_is_good(the_result)) {
1159 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1160 sd_print_result(sdkp, the_result);
1161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 break;
1163 }
1164
1165 /*
1166 * The device does not want the automatic start to be issued.
1167 */
1168 if (sdkp->device->no_start_on_add) {
1169 break;
1170 }
1171
1172 /*
1173 * If manual intervention is required, or this is an
1174 * absent USB storage device, a spinup is meaningless.
1175 */
1176 if (sense_valid &&
1177 sshdr.sense_key == NOT_READY &&
1178 sshdr.asc == 4 && sshdr.ascq == 3) {
1179 break; /* manual intervention required */
1180
1181 /*
1182 * Issue command to spin up drive when not ready
1183 */
1184 } else if (sense_valid && sshdr.sense_key == NOT_READY) {
1185 if (!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001186 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 cmd[0] = START_STOP;
1188 cmd[1] = 1; /* Return immediately */
1189 memset((void *) &cmd[2], 0, 8);
1190 cmd[4] = 1; /* Start spin cycle */
Stefan Richterd2886ea2008-05-11 00:34:07 +02001191 if (sdkp->device->start_stop_pwr_cond)
1192 cmd[4] |= 1 << 4;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001193 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1194 NULL, 0, &sshdr,
1195 SD_TIMEOUT, SD_MAX_RETRIES);
Alan Stern4451e472005-07-12 10:45:17 -04001196 spintime_expire = jiffies + 100 * HZ;
1197 spintime = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 /* Wait 1 second for next try */
1200 msleep(1000);
1201 printk(".");
Alan Stern4451e472005-07-12 10:45:17 -04001202
1203 /*
1204 * Wait for USB flash devices with slow firmware.
1205 * Yes, this sense key/ASC combination shouldn't
1206 * occur here. It's characteristic of these devices.
1207 */
1208 } else if (sense_valid &&
1209 sshdr.sense_key == UNIT_ATTENTION &&
1210 sshdr.asc == 0x28) {
1211 if (!spintime) {
1212 spintime_expire = jiffies + 5 * HZ;
1213 spintime = 1;
1214 }
1215 /* Wait 1 second for next try */
1216 msleep(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 } else {
1218 /* we don't understand the sense code, so it's
1219 * probably pointless to loop */
1220 if(!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001221 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1222 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224 break;
1225 }
1226
Alan Stern4451e472005-07-12 10:45:17 -04001227 } while (spintime && time_before_eq(jiffies, spintime_expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 if (spintime) {
1230 if (scsi_status_is_good(the_result))
1231 printk("ready\n");
1232 else
1233 printk("not responding...\n");
1234 }
1235}
1236
Martin K. Petersene0597d72008-07-17 04:28:34 -04001237
1238/*
1239 * Determine whether disk supports Data Integrity Field.
1240 */
1241void sd_read_protection_type(struct scsi_disk *sdkp, unsigned char *buffer)
1242{
1243 struct scsi_device *sdp = sdkp->device;
1244 u8 type;
1245
1246 if (scsi_device_protection(sdp) == 0 || (buffer[12] & 1) == 0)
1247 type = 0;
1248 else
1249 type = ((buffer[12] >> 1) & 7) + 1; /* P_TYPE 0 = Type 1 */
1250
1251 switch (type) {
1252 case SD_DIF_TYPE0_PROTECTION:
1253 sdkp->protection_type = 0;
1254 break;
1255
1256 case SD_DIF_TYPE1_PROTECTION:
1257 case SD_DIF_TYPE3_PROTECTION:
1258 sdkp->protection_type = type;
1259 break;
1260
1261 case SD_DIF_TYPE2_PROTECTION:
1262 sd_printk(KERN_ERR, sdkp, "formatted with DIF Type 2 " \
1263 "protection which is currently unsupported. " \
1264 "Disabling disk!\n");
1265 goto disable;
1266
1267 default:
1268 sd_printk(KERN_ERR, sdkp, "formatted with unknown " \
1269 "protection type %d. Disabling disk!\n", type);
1270 goto disable;
1271 }
1272
1273 return;
1274
1275disable:
1276 sdkp->protection_type = 0;
1277 sdkp->capacity = 0;
1278}
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280/*
1281 * read disk capacity
1282 */
1283static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001284sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001285{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 unsigned char cmd[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 int the_result, retries;
1288 int sector_size = 0;
Martin K. Petersene0597d72008-07-17 04:28:34 -04001289 /* Force READ CAPACITY(16) when PROTECT=1 */
1290 int longrc = scsi_device_protection(sdkp->device) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 struct scsi_sense_hdr sshdr;
1292 int sense_valid = 0;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001293 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295repeat:
1296 retries = 3;
1297 do {
1298 if (longrc) {
1299 memset((void *) cmd, 0, 16);
1300 cmd[0] = SERVICE_ACTION_IN;
1301 cmd[1] = SAI_READ_CAPACITY_16;
Martin K. Petersene0597d72008-07-17 04:28:34 -04001302 cmd[13] = 13;
1303 memset((void *) buffer, 0, 13);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 } else {
1305 cmd[0] = READ_CAPACITY;
1306 memset((void *) &cmd[1], 0, 9);
1307 memset((void *) buffer, 0, 8);
1308 }
1309
James Bottomleyea73a9f2005-08-28 11:33:52 -05001310 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
Martin K. Petersene0597d72008-07-17 04:28:34 -04001311 buffer, longrc ? 13 : 8, &sshdr,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001312 SD_TIMEOUT, SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
James Bottomleyea73a9f2005-08-28 11:33:52 -05001314 if (media_not_present(sdkp, &sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return;
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001318 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 retries--;
1320
1321 } while (the_result && retries);
1322
1323 if (the_result && !longrc) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001324 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY failed\n");
1325 sd_print_result(sdkp, the_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (driver_byte(the_result) & DRIVER_SENSE)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001327 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001329 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 /* Set dirty bit for removable devices if not ready -
1332 * sometimes drives will not report this properly. */
1333 if (sdp->removable &&
1334 sense_valid && sshdr.sense_key == NOT_READY)
1335 sdp->changed = 1;
1336
1337 /* Either no media are present but the drive didn't tell us,
1338 or they are present but the read capacity command fails */
1339 /* sdkp->media_present = 0; -- not always correct */
Hannes Reinecke69bdd882006-09-01 15:50:23 +02001340 sdkp->capacity = 0; /* unknown mapped to zero - as usual */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 return;
1343 } else if (the_result && longrc) {
1344 /* READ CAPACITY(16) has been failed */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001345 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY(16) failed\n");
1346 sd_print_result(sdkp, the_result);
1347 sd_printk(KERN_NOTICE, sdkp, "Use 0xffffffff as device size\n");
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 sdkp->capacity = 1 + (sector_t) 0xffffffff;
1350 goto got_data;
1351 }
1352
1353 if (!longrc) {
1354 sector_size = (buffer[4] << 24) |
1355 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
1356 if (buffer[0] == 0xff && buffer[1] == 0xff &&
1357 buffer[2] == 0xff && buffer[3] == 0xff) {
1358 if(sizeof(sdkp->capacity) > 4) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001359 sd_printk(KERN_NOTICE, sdkp, "Very big device. "
1360 "Trying to use READ CAPACITY(16).\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 longrc = 1;
1362 goto repeat;
1363 }
Martin K. Petersene73aec82007-02-27 22:40:55 -05001364 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use "
1365 "a kernel compiled with support for large "
1366 "block devices.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 sdkp->capacity = 0;
1368 goto got_data;
1369 }
1370 sdkp->capacity = 1 + (((sector_t)buffer[0] << 24) |
1371 (buffer[1] << 16) |
1372 (buffer[2] << 8) |
1373 buffer[3]);
1374 } else {
1375 sdkp->capacity = 1 + (((u64)buffer[0] << 56) |
1376 ((u64)buffer[1] << 48) |
1377 ((u64)buffer[2] << 40) |
1378 ((u64)buffer[3] << 32) |
1379 ((sector_t)buffer[4] << 24) |
1380 ((sector_t)buffer[5] << 16) |
1381 ((sector_t)buffer[6] << 8) |
1382 (sector_t)buffer[7]);
1383
1384 sector_size = (buffer[8] << 24) |
1385 (buffer[9] << 16) | (buffer[10] << 8) | buffer[11];
Martin K. Petersene0597d72008-07-17 04:28:34 -04001386
1387 sd_read_protection_type(sdkp, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
1389
1390 /* Some devices return the total number of sectors, not the
1391 * highest sector number. Make the necessary adjustment. */
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001392 if (sdp->fix_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 --sdkp->capacity;
1394
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001395 /* Some devices have version which report the correct sizes
1396 * and others which do not. We guess size according to a heuristic
1397 * and err on the side of lowering the capacity. */
1398 } else {
1399 if (sdp->guess_capacity)
1400 if (sdkp->capacity & 0x01) /* odd sizes are odd */
1401 --sdkp->capacity;
1402 }
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404got_data:
1405 if (sector_size == 0) {
1406 sector_size = 512;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001407 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
1408 "assuming 512.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
1410
1411 if (sector_size != 512 &&
1412 sector_size != 1024 &&
1413 sector_size != 2048 &&
1414 sector_size != 4096 &&
1415 sector_size != 256) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001416 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
1417 sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 /*
1419 * The user might want to re-format the drive with
1420 * a supported sectorsize. Once this happens, it
1421 * would be relatively trivial to set the thing up.
1422 * For this reason, we leave the thing in the table.
1423 */
1424 sdkp->capacity = 0;
1425 /*
1426 * set a bogus sector size so the normal read/write
1427 * logic in the block layer will eventually refuse any
1428 * request on this device without tripping over power
1429 * of two sector size assumptions
1430 */
1431 sector_size = 512;
1432 }
James Bottomley7404ad3b2008-08-31 10:41:52 -05001433 blk_queue_hardsect_size(sdp->request_queue, sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
James Bottomley7404ad3b2008-08-31 10:41:52 -05001435 {
1436 char cap_str_2[10], cap_str_10[10];
1437 u64 sz = sdkp->capacity << ffz(~sector_size);
1438
1439 string_get_size(sz, STRING_UNITS_2, cap_str_2,
1440 sizeof(cap_str_2));
1441 string_get_size(sz, STRING_UNITS_10, cap_str_10,
1442 sizeof(cap_str_10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Martin K. Petersene73aec82007-02-27 22:40:55 -05001444 sd_printk(KERN_NOTICE, sdkp,
James Bottomley7404ad3b2008-08-31 10:41:52 -05001445 "%llu %d-byte hardware sectors: (%s/%s)\n",
Martin K. Petersene73aec82007-02-27 22:40:55 -05001446 (unsigned long long)sdkp->capacity,
James Bottomley7404ad3b2008-08-31 10:41:52 -05001447 sector_size, cap_str_10, cap_str_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449
1450 /* Rescale capacity to 512-byte units */
1451 if (sector_size == 4096)
1452 sdkp->capacity <<= 3;
1453 else if (sector_size == 2048)
1454 sdkp->capacity <<= 2;
1455 else if (sector_size == 1024)
1456 sdkp->capacity <<= 1;
1457 else if (sector_size == 256)
1458 sdkp->capacity >>= 1;
1459
1460 sdkp->device->sector_size = sector_size;
1461}
1462
1463/* called with buffer of length 512 */
1464static inline int
James Bottomleyea73a9f2005-08-28 11:33:52 -05001465sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
1466 unsigned char *buffer, int len, struct scsi_mode_data *data,
1467 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
James Bottomleyea73a9f2005-08-28 11:33:52 -05001469 return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
James Bottomley1cf72692005-08-28 11:27:01 -05001470 SD_TIMEOUT, SD_MAX_RETRIES, data,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001471 sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}
1473
1474/*
1475 * read write protect setting, if possible - called only in sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001476 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 */
1478static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001479sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001480{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 int res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001482 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 struct scsi_mode_data data;
1484
1485 set_disk_ro(sdkp->disk, 0);
James Bottomleyea73a9f2005-08-28 11:33:52 -05001486 if (sdp->skip_ms_page_3f) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001487 sd_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 return;
1489 }
1490
James Bottomleyea73a9f2005-08-28 11:33:52 -05001491 if (sdp->use_192_bytes_for_3f) {
1492 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 } else {
1494 /*
1495 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1496 * We have to start carefully: some devices hang if we ask
1497 * for more than is available.
1498 */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001499 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 /*
1502 * Second attempt: ask for page 0 When only page 0 is
1503 * implemented, a request for page 3F may return Sense Key
1504 * 5: Illegal Request, Sense Code 24: Invalid field in
1505 * CDB.
1506 */
1507 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001508 res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510 /*
1511 * Third attempt: ask 255 bytes, as we did earlier.
1512 */
1513 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001514 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
1515 &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 }
1517
1518 if (!scsi_status_is_good(res)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001519 sd_printk(KERN_WARNING, sdkp,
1520 "Test WP failed, assume Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 } else {
1522 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
1523 set_disk_ro(sdkp->disk, sdkp->write_prot);
Martin K. Petersene73aec82007-02-27 22:40:55 -05001524 sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
1525 sdkp->write_prot ? "on" : "off");
1526 sd_printk(KERN_DEBUG, sdkp,
1527 "Mode Sense: %02x %02x %02x %02x\n",
1528 buffer[0], buffer[1], buffer[2], buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
1530}
1531
1532/*
1533 * sd_read_cache_type - called only from sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001534 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 */
1536static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001537sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
Al Viro 631e8a12005-05-16 01:59:55 +01001538{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 int len = 0, res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001540 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Al Viro 631e8a12005-05-16 01:59:55 +01001542 int dbd;
1543 int modepage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 struct scsi_mode_data data;
1545 struct scsi_sense_hdr sshdr;
1546
James Bottomleyea73a9f2005-08-28 11:33:52 -05001547 if (sdp->skip_ms_page_8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 goto defaults;
1549
James Bottomleyea73a9f2005-08-28 11:33:52 -05001550 if (sdp->type == TYPE_RBC) {
Al Viro 631e8a12005-05-16 01:59:55 +01001551 modepage = 6;
1552 dbd = 8;
1553 } else {
1554 modepage = 8;
1555 dbd = 0;
1556 }
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 /* cautiously ask */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001559 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, 4, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 if (!scsi_status_is_good(res))
1562 goto bad_sense;
1563
Al Viro6d73c852006-02-23 02:03:16 +01001564 if (!data.header_length) {
1565 modepage = 6;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001566 sd_printk(KERN_ERR, sdkp, "Missing header in MODE_SENSE response\n");
Al Viro6d73c852006-02-23 02:03:16 +01001567 }
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 /* that went OK, now ask for the proper length */
1570 len = data.length;
1571
1572 /*
1573 * We're only interested in the first three bytes, actually.
1574 * But the data cache page is defined for the first 20.
1575 */
1576 if (len < 3)
1577 goto bad_sense;
1578 if (len > 20)
1579 len = 20;
1580
1581 /* Take headers and block descriptors into account */
1582 len += data.header_length + data.block_descriptor_length;
Al Viro48970802006-02-26 08:34:10 -06001583 if (len > SD_BUF_SIZE)
1584 goto bad_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 /* Get the data */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001587 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589 if (scsi_status_is_good(res)) {
Al Viro 631e8a12005-05-16 01:59:55 +01001590 int offset = data.header_length + data.block_descriptor_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Al Viro48970802006-02-26 08:34:10 -06001592 if (offset >= SD_BUF_SIZE - 2) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001593 sd_printk(KERN_ERR, sdkp, "Malformed MODE SENSE response\n");
Al Viro48970802006-02-26 08:34:10 -06001594 goto defaults;
1595 }
1596
Al Viro 631e8a12005-05-16 01:59:55 +01001597 if ((buffer[offset] & 0x3f) != modepage) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001598 sd_printk(KERN_ERR, sdkp, "Got wrong page\n");
Al Viro 631e8a12005-05-16 01:59:55 +01001599 goto defaults;
1600 }
1601
1602 if (modepage == 8) {
1603 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
1604 sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
1605 } else {
1606 sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
1607 sdkp->RCD = 0;
1608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Tejun Heo007365a2006-01-06 09:53:52 +01001610 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
1611 if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001612 sd_printk(KERN_NOTICE, sdkp,
1613 "Uses READ/WRITE(6), disabling FUA\n");
Tejun Heo007365a2006-01-06 09:53:52 +01001614 sdkp->DPOFUA = 0;
1615 }
1616
Martin K. Petersene73aec82007-02-27 22:40:55 -05001617 sd_printk(KERN_NOTICE, sdkp,
1618 "Write cache: %s, read cache: %s, %s\n",
Luben Tuikovfd44bab2006-11-15 12:47:08 -08001619 sdkp->WCE ? "enabled" : "disabled",
1620 sdkp->RCD ? "disabled" : "enabled",
1621 sdkp->DPOFUA ? "supports DPO and FUA"
1622 : "doesn't support DPO or FUA");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 return;
1625 }
1626
1627bad_sense:
James Bottomleyea73a9f2005-08-28 11:33:52 -05001628 if (scsi_sense_valid(&sshdr) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 sshdr.sense_key == ILLEGAL_REQUEST &&
1630 sshdr.asc == 0x24 && sshdr.ascq == 0x0)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001631 /* Invalid field in CDB */
1632 sd_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001634 sd_printk(KERN_ERR, sdkp, "Asking for cache data failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636defaults:
Martin K. Petersene73aec82007-02-27 22:40:55 -05001637 sd_printk(KERN_ERR, sdkp, "Assuming drive cache: write through\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 sdkp->WCE = 0;
1639 sdkp->RCD = 0;
Al Viro48970802006-02-26 08:34:10 -06001640 sdkp->DPOFUA = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
Martin K. Petersene0597d72008-07-17 04:28:34 -04001643/*
1644 * The ATO bit indicates whether the DIF application tag is available
1645 * for use by the operating system.
1646 */
1647void sd_read_app_tag_own(struct scsi_disk *sdkp, unsigned char *buffer)
1648{
1649 int res, offset;
1650 struct scsi_device *sdp = sdkp->device;
1651 struct scsi_mode_data data;
1652 struct scsi_sense_hdr sshdr;
1653
1654 if (sdp->type != TYPE_DISK)
1655 return;
1656
1657 if (sdkp->protection_type == 0)
1658 return;
1659
1660 res = scsi_mode_sense(sdp, 1, 0x0a, buffer, 36, SD_TIMEOUT,
1661 SD_MAX_RETRIES, &data, &sshdr);
1662
1663 if (!scsi_status_is_good(res) || !data.header_length ||
1664 data.length < 6) {
1665 sd_printk(KERN_WARNING, sdkp,
1666 "getting Control mode page failed, assume no ATO\n");
1667
1668 if (scsi_sense_valid(&sshdr))
1669 sd_print_sense_hdr(sdkp, &sshdr);
1670
1671 return;
1672 }
1673
1674 offset = data.header_length + data.block_descriptor_length;
1675
1676 if ((buffer[offset] & 0x3f) != 0x0a) {
1677 sd_printk(KERN_ERR, sdkp, "ATO Got wrong page\n");
1678 return;
1679 }
1680
1681 if ((buffer[offset + 5] & 0x80) == 0)
1682 return;
1683
1684 sdkp->ATO = 1;
1685
1686 return;
1687}
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689/**
1690 * sd_revalidate_disk - called the first time a new disk is seen,
1691 * performs disk spin up, read_capacity, etc.
1692 * @disk: struct gendisk we care about
1693 **/
1694static int sd_revalidate_disk(struct gendisk *disk)
1695{
1696 struct scsi_disk *sdkp = scsi_disk(disk);
1697 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 unsigned char *buffer;
Tejun Heo461d4e92006-01-06 09:52:55 +01001699 unsigned ordered;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001701 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp,
1702 "sd_revalidate_disk\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704 /*
1705 * If the device is offline, don't try and read capacity or any
1706 * of the other niceties.
1707 */
1708 if (!scsi_device_online(sdp))
1709 goto out;
1710
Bernhard Wallea6123f12007-05-21 17:15:26 +02001711 buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (!buffer) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001713 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
1714 "allocation failure.\n");
James Bottomleyea73a9f2005-08-28 11:33:52 -05001715 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
1717
1718 /* defaults, until the device tells us otherwise */
1719 sdp->sector_size = 512;
1720 sdkp->capacity = 0;
1721 sdkp->media_present = 1;
1722 sdkp->write_prot = 0;
1723 sdkp->WCE = 0;
1724 sdkp->RCD = 0;
Martin K. Petersene0597d72008-07-17 04:28:34 -04001725 sdkp->ATO = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Martin K. Petersene73aec82007-02-27 22:40:55 -05001727 sd_spinup_disk(sdkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 /*
1730 * Without media there is no reason to ask; moreover, some devices
1731 * react badly if we do.
1732 */
1733 if (sdkp->media_present) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001734 sd_read_capacity(sdkp, buffer);
1735 sd_read_write_protect_flag(sdkp, buffer);
1736 sd_read_cache_type(sdkp, buffer);
Martin K. Petersene0597d72008-07-17 04:28:34 -04001737 sd_read_app_tag_own(sdkp, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
Tejun Heo461d4e92006-01-06 09:52:55 +01001739
1740 /*
1741 * We now have all cache related info, determine how we deal
1742 * with ordered requests. Note that as the current SCSI
1743 * dispatch function can alter request order, we cannot use
1744 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1745 */
1746 if (sdkp->WCE)
Tejun Heo007365a2006-01-06 09:53:52 +01001747 ordered = sdkp->DPOFUA
1748 ? QUEUE_ORDERED_DRAIN_FUA : QUEUE_ORDERED_DRAIN_FLUSH;
Tejun Heo461d4e92006-01-06 09:52:55 +01001749 else
1750 ordered = QUEUE_ORDERED_DRAIN;
1751
1752 blk_queue_ordered(sdkp->disk->queue, ordered, sd_prepare_flush);
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 set_capacity(disk, sdkp->capacity);
1755 kfree(buffer);
1756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 out:
1758 return 0;
1759}
1760
1761/**
1762 * sd_probe - called during driver initialization and whenever a
1763 * new scsi device is attached to the system. It is called once
1764 * for each scsi device (not just disks) present.
1765 * @dev: pointer to device object
1766 *
1767 * Returns 0 if successful (or not interested in this scsi device
1768 * (e.g. scanner)); 1 when there is an error.
1769 *
1770 * Note: this function is invoked from the scsi mid-level.
1771 * This function sets up the mapping between a given
1772 * <host,channel,id,lun> (found in sdp) and new device name
1773 * (e.g. /dev/sda). More precisely it is the block device major
1774 * and minor number that is chosen here.
1775 *
1776 * Assume sd_attach is not re-entrant (for time being)
1777 * Also think about sd_attach() and sd_remove() running coincidentally.
1778 **/
1779static int sd_probe(struct device *dev)
1780{
1781 struct scsi_device *sdp = to_scsi_device(dev);
1782 struct scsi_disk *sdkp;
1783 struct gendisk *gd;
1784 u32 index;
1785 int error;
1786
1787 error = -ENODEV;
Al Viro 631e8a12005-05-16 01:59:55 +01001788 if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 goto out;
1790
James Bottomley9ccfc752005-10-02 11:45:08 -05001791 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
1792 "sd_attach\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 error = -ENOMEM;
Jes Sorensen24669f752006-01-16 10:31:18 -05001795 sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 if (!sdkp)
1797 goto out;
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 gd = alloc_disk(16);
1800 if (!gd)
1801 goto out_free;
1802
Tejun Heof27bac22008-07-14 14:59:30 +09001803 do {
1804 if (!ida_pre_get(&sd_index_ida, GFP_KERNEL))
1805 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Tejun Heof27bac22008-07-14 14:59:30 +09001807 error = ida_get_new(&sd_index_ida, &index);
1808 } while (error == -EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 if (error)
1811 goto out_put;
1812
Tejun Heof27bac22008-07-14 14:59:30 +09001813 error = -EBUSY;
1814 if (index >= SD_MAX_DISKS)
1815 goto out_free_index;
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 sdkp->device = sdp;
1818 sdkp->driver = &sd_template;
1819 sdkp->disk = gd;
1820 sdkp->index = index;
1821 sdkp->openers = 0;
Kay Sieversc02e6002008-03-19 13:09:56 +01001822 sdkp->previous_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 if (!sdp->timeout) {
Al Viro 631e8a12005-05-16 01:59:55 +01001825 if (sdp->type != TYPE_MOD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 sdp->timeout = SD_TIMEOUT;
1827 else
1828 sdp->timeout = SD_MOD_TIMEOUT;
1829 }
1830
Tony Jonesee959b02008-02-22 00:13:36 +01001831 device_initialize(&sdkp->dev);
1832 sdkp->dev.parent = &sdp->sdev_gendev;
1833 sdkp->dev.class = &sd_disk_class;
1834 strncpy(sdkp->dev.bus_id, sdp->sdev_gendev.bus_id, BUS_ID_SIZE);
Nagendra Singh Tomar017f2e32007-02-02 17:34:56 +05301835
Tony Jonesee959b02008-02-22 00:13:36 +01001836 if (device_add(&sdkp->dev))
Tejun Heof27bac22008-07-14 14:59:30 +09001837 goto out_free_index;
Nagendra Singh Tomar017f2e32007-02-02 17:34:56 +05301838
1839 get_device(&sdp->sdev_gendev);
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 gd->major = sd_major((index & 0xf0) >> 4);
1842 gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
1843 gd->minors = 16;
1844 gd->fops = &sd_fops;
1845
1846 if (index < 26) {
1847 sprintf(gd->disk_name, "sd%c", 'a' + index % 26);
1848 } else if (index < (26 + 1) * 26) {
1849 sprintf(gd->disk_name, "sd%c%c",
1850 'a' + index / 26 - 1,'a' + index % 26);
1851 } else {
1852 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
1853 const unsigned int m2 = (index / 26 - 1) % 26;
1854 const unsigned int m3 = index % 26;
1855 sprintf(gd->disk_name, "sd%c%c%c",
1856 'a' + m1, 'a' + m2, 'a' + m3);
1857 }
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 gd->private_data = &sdkp->driver;
Tejun Heo461d4e92006-01-06 09:52:55 +01001860 gd->queue = sdkp->device->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
1862 sd_revalidate_disk(gd);
1863
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001864 blk_queue_prep_rq(sdp->request_queue, sd_prep_fn);
James Bottomley03a57432007-08-03 16:41:11 -05001865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 gd->driverfs_dev = &sdp->sdev_gendev;
1867 gd->flags = GENHD_FL_DRIVERFS;
1868 if (sdp->removable)
1869 gd->flags |= GENHD_FL_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
1871 dev_set_drvdata(dev, sdkp);
1872 add_disk(gd);
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001873 sd_dif_config_host(sdkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Martin K. Petersene73aec82007-02-27 22:40:55 -05001875 sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
1876 sdp->removable ? "removable " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 return 0;
1879
Tejun Heof27bac22008-07-14 14:59:30 +09001880 out_free_index:
1881 ida_remove(&sd_index_ida, index);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001882 out_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 put_disk(gd);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001884 out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 kfree(sdkp);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001886 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 return error;
1888}
1889
1890/**
1891 * sd_remove - called whenever a scsi disk (previously recognized by
1892 * sd_probe) is detached from the system. It is called (potentially
1893 * multiple times) during sd module unload.
1894 * @sdp: pointer to mid level scsi device object
1895 *
1896 * Note: this function is invoked from the scsi mid-level.
1897 * This function potentially frees up a device name (e.g. /dev/sdc)
1898 * that could be re-used by a subsequent sd_probe().
1899 * This function is not called when the built-in sd driver is "exit-ed".
1900 **/
1901static int sd_remove(struct device *dev)
1902{
1903 struct scsi_disk *sdkp = dev_get_drvdata(dev);
1904
Tony Jonesee959b02008-02-22 00:13:36 +01001905 device_del(&sdkp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 del_gendisk(sdkp->disk);
1907 sd_shutdown(dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001908
Arjan van de Ven0b950672006-01-11 13:16:10 +01001909 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001910 dev_set_drvdata(dev, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001911 put_device(&sdkp->dev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001912 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 return 0;
1915}
1916
1917/**
1918 * scsi_disk_release - Called to free the scsi_disk structure
Tony Jonesee959b02008-02-22 00:13:36 +01001919 * @dev: pointer to embedded class device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 *
Arjan van de Ven0b950672006-01-11 13:16:10 +01001921 * sd_ref_mutex must be held entering this routine. Because it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 * called on last put, you should always use the scsi_disk_get()
1923 * scsi_disk_put() helpers which manipulate the semaphore directly
Tony Jonesee959b02008-02-22 00:13:36 +01001924 * and never do a direct put_device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 **/
Tony Jonesee959b02008-02-22 00:13:36 +01001926static void scsi_disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
Tony Jonesee959b02008-02-22 00:13:36 +01001928 struct scsi_disk *sdkp = to_scsi_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 struct gendisk *disk = sdkp->disk;
1930
Tejun Heof27bac22008-07-14 14:59:30 +09001931 ida_remove(&sd_index_ida, sdkp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 disk->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 put_disk(disk);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001935 put_device(&sdkp->device->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 kfree(sdkp);
1938}
1939
James Bottomleycc5d2c82007-03-20 12:26:03 -05001940static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
Tejun Heoc3c94c52007-03-21 00:13:59 +09001941{
1942 unsigned char cmd[6] = { START_STOP }; /* START_VALID */
1943 struct scsi_sense_hdr sshdr;
James Bottomleycc5d2c82007-03-20 12:26:03 -05001944 struct scsi_device *sdp = sdkp->device;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001945 int res;
1946
1947 if (start)
1948 cmd[4] |= 1; /* START */
1949
Stefan Richterd2886ea2008-05-11 00:34:07 +02001950 if (sdp->start_stop_pwr_cond)
1951 cmd[4] |= start ? 1 << 4 : 3 << 4; /* Active or Standby */
1952
Tejun Heoc3c94c52007-03-21 00:13:59 +09001953 if (!scsi_device_online(sdp))
1954 return -ENODEV;
1955
1956 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
1957 SD_TIMEOUT, SD_MAX_RETRIES);
1958 if (res) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05001959 sd_printk(KERN_WARNING, sdkp, "START_STOP FAILED\n");
1960 sd_print_result(sdkp, res);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001961 if (driver_byte(res) & DRIVER_SENSE)
James Bottomleycc5d2c82007-03-20 12:26:03 -05001962 sd_print_sense_hdr(sdkp, &sshdr);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001963 }
1964
1965 return res;
1966}
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968/*
1969 * Send a SYNCHRONIZE CACHE instruction down to the device through
1970 * the normal SCSI command structure. Wait for the command to
1971 * complete.
1972 */
1973static void sd_shutdown(struct device *dev)
1974{
Alan Stern39b7f1e2005-11-04 14:44:41 -05001975 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 if (!sdkp)
1978 return; /* this can happen */
1979
Alan Stern39b7f1e2005-11-04 14:44:41 -05001980 if (sdkp->WCE) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001981 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
1982 sd_sync_cache(sdkp);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001983 }
Tejun Heoc3c94c52007-03-21 00:13:59 +09001984
James Bottomleycc5d2c82007-03-20 12:26:03 -05001985 if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) {
1986 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
1987 sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09001988 }
1989
Alan Stern39b7f1e2005-11-04 14:44:41 -05001990 scsi_disk_put(sdkp);
1991}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Tejun Heoc3c94c52007-03-21 00:13:59 +09001993static int sd_suspend(struct device *dev, pm_message_t mesg)
1994{
Tejun Heoc3c94c52007-03-21 00:13:59 +09001995 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04001996 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09001997
1998 if (!sdkp)
1999 return 0; /* this can happen */
2000
2001 if (sdkp->WCE) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05002002 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
Tejun Heoc3c94c52007-03-21 00:13:59 +09002003 ret = sd_sync_cache(sdkp);
2004 if (ret)
Alan Stern09ff92f2007-05-21 09:55:04 -04002005 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002006 }
2007
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01002008 if ((mesg.event & PM_EVENT_SLEEP) && sdkp->device->manage_start_stop) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05002009 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
2010 ret = sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002011 }
2012
Alan Stern09ff92f2007-05-21 09:55:04 -04002013done:
2014 scsi_disk_put(sdkp);
2015 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002016}
2017
2018static int sd_resume(struct device *dev)
2019{
Tejun Heoc3c94c52007-03-21 00:13:59 +09002020 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04002021 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002022
James Bottomleycc5d2c82007-03-20 12:26:03 -05002023 if (!sdkp->device->manage_start_stop)
Alan Stern09ff92f2007-05-21 09:55:04 -04002024 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002025
James Bottomleycc5d2c82007-03-20 12:26:03 -05002026 sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
Alan Stern09ff92f2007-05-21 09:55:04 -04002027 ret = sd_start_stop_device(sdkp, 1);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002028
Alan Stern09ff92f2007-05-21 09:55:04 -04002029done:
2030 scsi_disk_put(sdkp);
2031 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002032}
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034/**
2035 * init_sd - entry point for this driver (both when built in or when
2036 * a module).
2037 *
2038 * Note: this function registers this driver with the scsi mid-level.
2039 **/
2040static int __init init_sd(void)
2041{
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002042 int majors = 0, i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
2045
2046 for (i = 0; i < SD_MAJORS; i++)
2047 if (register_blkdev(sd_major(i), "sd") == 0)
2048 majors++;
2049
2050 if (!majors)
2051 return -ENODEV;
2052
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002053 err = class_register(&sd_disk_class);
2054 if (err)
2055 goto err_out;
James Bottomley6bdaa1f2006-03-18 14:14:21 -06002056
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002057 err = scsi_register_driver(&sd_template.gendrv);
2058 if (err)
2059 goto err_out_class;
2060
2061 return 0;
2062
2063err_out_class:
2064 class_unregister(&sd_disk_class);
2065err_out:
2066 for (i = 0; i < SD_MAJORS; i++)
2067 unregister_blkdev(sd_major(i), "sd");
2068 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069}
2070
2071/**
2072 * exit_sd - exit point for this driver (when it is a module).
2073 *
2074 * Note: this function unregisters this driver from the scsi mid-level.
2075 **/
2076static void __exit exit_sd(void)
2077{
2078 int i;
2079
2080 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
2081
2082 scsi_unregister_driver(&sd_template.gendrv);
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002083 class_unregister(&sd_disk_class);
2084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 for (i = 0; i < SD_MAJORS; i++)
2086 unregister_blkdev(sd_major(i), "sd");
2087}
2088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089module_init(init_sd);
2090module_exit(exit_sd);
Martin K. Petersene73aec82007-02-27 22:40:55 -05002091
2092static void sd_print_sense_hdr(struct scsi_disk *sdkp,
2093 struct scsi_sense_hdr *sshdr)
2094{
2095 sd_printk(KERN_INFO, sdkp, "");
2096 scsi_show_sense_hdr(sshdr);
2097 sd_printk(KERN_INFO, sdkp, "");
2098 scsi_show_extd_sense(sshdr->asc, sshdr->ascq);
2099}
2100
2101static void sd_print_result(struct scsi_disk *sdkp, int result)
2102{
2103 sd_printk(KERN_INFO, sdkp, "");
2104 scsi_show_result(result);
2105}
2106