blob: aeab5d9dff27bd316a82d45eb55bf1010d510158 [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 Bottomley7404ad32008-08-31 10:41:52 -050050#include <linux/string_helpers.h>
Arjan van de Ven4ace92f2009-01-04 05:32:28 -080051#include <linux/async.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/uaccess.h>
53
54#include <scsi/scsi.h>
55#include <scsi/scsi_cmnd.h>
56#include <scsi/scsi_dbg.h>
57#include <scsi/scsi_device.h>
58#include <scsi/scsi_driver.h>
59#include <scsi/scsi_eh.h>
60#include <scsi/scsi_host.h>
61#include <scsi/scsi_ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <scsi/scsicam.h>
63
Martin K. Petersenaa916962008-06-17 12:47:32 -040064#include "sd.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include "scsi_logging.h"
66
Rene Hermanf018fa52006-03-08 00:14:20 -080067MODULE_AUTHOR("Eric Youngdale");
68MODULE_DESCRIPTION("SCSI disk (sd) driver");
69MODULE_LICENSE("GPL");
70
71MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR);
72MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR);
73MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR);
74MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR);
75MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR);
76MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR);
77MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR);
78MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR);
79MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR);
80MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR);
81MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR);
82MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR);
83MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR);
84MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR);
85MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR);
86MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR);
Michael Tokarevd7b8bcb2006-10-27 16:02:37 +040087MODULE_ALIAS_SCSI_DEVICE(TYPE_DISK);
88MODULE_ALIAS_SCSI_DEVICE(TYPE_MOD);
89MODULE_ALIAS_SCSI_DEVICE(TYPE_RBC);
Rene Hermanf018fa52006-03-08 00:14:20 -080090
Tejun Heo870d6652008-08-25 19:47:25 +090091#if !defined(CONFIG_DEBUG_BLOCK_EXT_DEVT)
Tejun Heof615b482008-08-25 19:47:24 +090092#define SD_MINORS 16
Tejun Heo870d6652008-08-25 19:47:25 +090093#else
Tejun Heo3e1a7ff2008-08-25 19:56:17 +090094#define SD_MINORS 0
Tejun Heo870d6652008-08-25 19:47:25 +090095#endif
96
Linus Torvalds7b3d9542008-01-06 10:17:12 -080097static int sd_revalidate_disk(struct gendisk *);
98static int sd_probe(struct device *);
99static int sd_remove(struct device *);
100static void sd_shutdown(struct device *);
101static int sd_suspend(struct device *, pm_message_t state);
102static int sd_resume(struct device *);
103static void sd_rescan(struct device *);
104static int sd_done(struct scsi_cmnd *);
105static void sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer);
Tony Jonesee959b02008-02-22 00:13:36 +0100106static void scsi_disk_release(struct device *cdev);
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800107static void sd_print_sense_hdr(struct scsi_disk *, struct scsi_sense_hdr *);
108static void sd_print_result(struct scsi_disk *, int);
109
Tejun Heo4034cc62009-02-21 11:04:45 +0900110static DEFINE_SPINLOCK(sd_index_lock);
Tejun Heof27bac22008-07-14 14:59:30 +0900111static DEFINE_IDA(sd_index_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113/* This semaphore is used to mediate the 0->1 reference get in the
114 * face of object destruction (i.e. we can't allow a get on an
115 * object after last put) */
Arjan van de Ven0b950672006-01-11 13:16:10 +0100116static DEFINE_MUTEX(sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600118static const char *sd_cache_types[] = {
119 "write through", "none", "write back",
120 "write back, no read (daft)"
121};
122
Tony Jonesee959b02008-02-22 00:13:36 +0100123static ssize_t
124sd_store_cache_type(struct device *dev, struct device_attribute *attr,
125 const char *buf, size_t count)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600126{
127 int i, ct = -1, rcd, wce, sp;
Tony Jonesee959b02008-02-22 00:13:36 +0100128 struct scsi_disk *sdkp = to_scsi_disk(dev);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600129 struct scsi_device *sdp = sdkp->device;
130 char buffer[64];
131 char *buffer_data;
132 struct scsi_mode_data data;
133 struct scsi_sense_hdr sshdr;
134 int len;
135
136 if (sdp->type != TYPE_DISK)
137 /* no cache control on RBC devices; theoretically they
138 * can do it, but there's probably so many exceptions
139 * it's not worth the risk */
140 return -EINVAL;
141
Tobias Klauser6391a112006-06-08 22:23:48 -0700142 for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600143 const int len = strlen(sd_cache_types[i]);
144 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
145 buf[len] == '\n') {
146 ct = i;
147 break;
148 }
149 }
150 if (ct < 0)
151 return -EINVAL;
152 rcd = ct & 0x01 ? 1 : 0;
153 wce = ct & 0x02 ? 1 : 0;
154 if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
155 SD_MAX_RETRIES, &data, NULL))
156 return -EINVAL;
Andrew Mortona9312fb2006-03-25 03:08:30 -0800157 len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600158 data.block_descriptor_length);
159 buffer_data = buffer + data.header_length +
160 data.block_descriptor_length;
161 buffer_data[2] &= ~0x05;
162 buffer_data[2] |= wce << 2 | rcd;
163 sp = buffer_data[0] & 0x80 ? 1 : 0;
164
165 if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
166 SD_MAX_RETRIES, &data, &sshdr)) {
167 if (scsi_sense_valid(&sshdr))
Martin K. Petersene73aec82007-02-27 22:40:55 -0500168 sd_print_sense_hdr(sdkp, &sshdr);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600169 return -EINVAL;
170 }
Andrew Pattersonf98a8ca2008-09-04 14:27:35 -0600171 revalidate_disk(sdkp->disk);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600172 return count;
173}
174
Tony Jonesee959b02008-02-22 00:13:36 +0100175static ssize_t
176sd_store_manage_start_stop(struct device *dev, struct device_attribute *attr,
177 const char *buf, size_t count)
Tejun Heoc3c94c52007-03-21 00:13:59 +0900178{
Tony Jonesee959b02008-02-22 00:13:36 +0100179 struct scsi_disk *sdkp = to_scsi_disk(dev);
Tejun Heoc3c94c52007-03-21 00:13:59 +0900180 struct scsi_device *sdp = sdkp->device;
181
182 if (!capable(CAP_SYS_ADMIN))
183 return -EACCES;
184
185 sdp->manage_start_stop = simple_strtoul(buf, NULL, 10);
186
187 return count;
188}
189
Tony Jonesee959b02008-02-22 00:13:36 +0100190static ssize_t
191sd_store_allow_restart(struct device *dev, struct device_attribute *attr,
192 const char *buf, size_t count)
Brian Kinga144c5a2006-06-27 11:10:31 -0500193{
Tony Jonesee959b02008-02-22 00:13:36 +0100194 struct scsi_disk *sdkp = to_scsi_disk(dev);
Brian Kinga144c5a2006-06-27 11:10:31 -0500195 struct scsi_device *sdp = sdkp->device;
196
197 if (!capable(CAP_SYS_ADMIN))
198 return -EACCES;
199
200 if (sdp->type != TYPE_DISK)
201 return -EINVAL;
202
203 sdp->allow_restart = simple_strtoul(buf, NULL, 10);
204
205 return count;
206}
207
Tony Jonesee959b02008-02-22 00:13:36 +0100208static ssize_t
209sd_show_cache_type(struct device *dev, struct device_attribute *attr,
210 char *buf)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600211{
Tony Jonesee959b02008-02-22 00:13:36 +0100212 struct scsi_disk *sdkp = to_scsi_disk(dev);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600213 int ct = sdkp->RCD + 2*sdkp->WCE;
214
215 return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
216}
217
Tony Jonesee959b02008-02-22 00:13:36 +0100218static ssize_t
219sd_show_fua(struct device *dev, struct device_attribute *attr, char *buf)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600220{
Tony Jonesee959b02008-02-22 00:13:36 +0100221 struct scsi_disk *sdkp = to_scsi_disk(dev);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600222
223 return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
224}
225
Tony Jonesee959b02008-02-22 00:13:36 +0100226static ssize_t
227sd_show_manage_start_stop(struct device *dev, struct device_attribute *attr,
228 char *buf)
Tejun Heoc3c94c52007-03-21 00:13:59 +0900229{
Tony Jonesee959b02008-02-22 00:13:36 +0100230 struct scsi_disk *sdkp = to_scsi_disk(dev);
Tejun Heoc3c94c52007-03-21 00:13:59 +0900231 struct scsi_device *sdp = sdkp->device;
232
233 return snprintf(buf, 20, "%u\n", sdp->manage_start_stop);
234}
235
Tony Jonesee959b02008-02-22 00:13:36 +0100236static ssize_t
237sd_show_allow_restart(struct device *dev, struct device_attribute *attr,
238 char *buf)
Brian Kinga144c5a2006-06-27 11:10:31 -0500239{
Tony Jonesee959b02008-02-22 00:13:36 +0100240 struct scsi_disk *sdkp = to_scsi_disk(dev);
Brian Kinga144c5a2006-06-27 11:10:31 -0500241
242 return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
243}
244
Martin K. Petersene0597d72008-07-17 04:28:34 -0400245static ssize_t
246sd_show_protection_type(struct device *dev, struct device_attribute *attr,
247 char *buf)
248{
249 struct scsi_disk *sdkp = to_scsi_disk(dev);
250
251 return snprintf(buf, 20, "%u\n", sdkp->protection_type);
252}
253
254static ssize_t
255sd_show_app_tag_own(struct device *dev, struct device_attribute *attr,
256 char *buf)
257{
258 struct scsi_disk *sdkp = to_scsi_disk(dev);
259
260 return snprintf(buf, 20, "%u\n", sdkp->ATO);
261}
262
Tony Jonesee959b02008-02-22 00:13:36 +0100263static struct device_attribute sd_disk_attrs[] = {
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600264 __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
265 sd_store_cache_type),
266 __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
Brian Kinga144c5a2006-06-27 11:10:31 -0500267 __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
268 sd_store_allow_restart),
Tejun Heoc3c94c52007-03-21 00:13:59 +0900269 __ATTR(manage_start_stop, S_IRUGO|S_IWUSR, sd_show_manage_start_stop,
270 sd_store_manage_start_stop),
Martin K. Petersene0597d72008-07-17 04:28:34 -0400271 __ATTR(protection_type, S_IRUGO, sd_show_protection_type, NULL),
272 __ATTR(app_tag_own, S_IRUGO, sd_show_app_tag_own, NULL),
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600273 __ATTR_NULL,
274};
275
276static struct class sd_disk_class = {
277 .name = "scsi_disk",
278 .owner = THIS_MODULE,
Tony Jonesee959b02008-02-22 00:13:36 +0100279 .dev_release = scsi_disk_release,
280 .dev_attrs = sd_disk_attrs,
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600281};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283static struct scsi_driver sd_template = {
284 .owner = THIS_MODULE,
285 .gendrv = {
286 .name = "sd",
287 .probe = sd_probe,
288 .remove = sd_remove,
Tejun Heoc3c94c52007-03-21 00:13:59 +0900289 .suspend = sd_suspend,
290 .resume = sd_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 .shutdown = sd_shutdown,
292 },
293 .rescan = sd_rescan,
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800294 .done = sd_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295};
296
297/*
298 * Device no to disk mapping:
299 *
300 * major disc2 disc p1
301 * |............|.............|....|....| <- dev_t
302 * 31 20 19 8 7 4 3 0
303 *
304 * Inside a major, we have 16k disks, however mapped non-
305 * contiguously. The first 16 disks are for major0, the next
306 * ones with major1, ... Disk 256 is for major0 again, disk 272
307 * for major1, ...
308 * As we stay compatible with our numbering scheme, we can reuse
309 * the well-know SCSI majors 8, 65--71, 136--143.
310 */
311static int sd_major(int major_idx)
312{
313 switch (major_idx) {
314 case 0:
315 return SCSI_DISK0_MAJOR;
316 case 1 ... 7:
317 return SCSI_DISK1_MAJOR + major_idx - 1;
318 case 8 ... 15:
319 return SCSI_DISK8_MAJOR + major_idx - 8;
320 default:
321 BUG();
322 return 0; /* shut up gcc */
323 }
324}
325
Alan Stern39b7f1e2005-11-04 14:44:41 -0500326static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 struct scsi_disk *sdkp = NULL;
329
Alan Stern39b7f1e2005-11-04 14:44:41 -0500330 if (disk->private_data) {
331 sdkp = scsi_disk(disk);
332 if (scsi_device_get(sdkp->device) == 0)
Tony Jonesee959b02008-02-22 00:13:36 +0100333 get_device(&sdkp->dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500334 else
335 sdkp = NULL;
336 }
337 return sdkp;
338}
339
340static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
341{
342 struct scsi_disk *sdkp;
343
Arjan van de Ven0b950672006-01-11 13:16:10 +0100344 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500345 sdkp = __scsi_disk_get(disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100346 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return sdkp;
Alan Stern39b7f1e2005-11-04 14:44:41 -0500348}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Alan Stern39b7f1e2005-11-04 14:44:41 -0500350static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
351{
352 struct scsi_disk *sdkp;
353
Arjan van de Ven0b950672006-01-11 13:16:10 +0100354 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500355 sdkp = dev_get_drvdata(dev);
356 if (sdkp)
357 sdkp = __scsi_disk_get(sdkp->disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100358 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return sdkp;
360}
361
362static void scsi_disk_put(struct scsi_disk *sdkp)
363{
364 struct scsi_device *sdev = sdkp->device;
365
Arjan van de Ven0b950672006-01-11 13:16:10 +0100366 mutex_lock(&sd_ref_mutex);
Tony Jonesee959b02008-02-22 00:13:36 +0100367 put_device(&sdkp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 scsi_device_put(sdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100369 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
372/**
373 * sd_init_command - build a scsi (read or write) command from
374 * information in the request structure.
375 * @SCpnt: pointer to mid-level's per scsi command structure that
376 * contains request and into which the scsi command is written
377 *
378 * Returns 1 if successful and 0 if error (or cannot be done now).
379 **/
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500380static int sd_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500382 struct scsi_cmnd *SCpnt;
383 struct scsi_device *sdp = q->queuedata;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100384 struct gendisk *disk = rq->rq_disk;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400385 struct scsi_disk *sdkp;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100386 sector_t block = rq->sector;
Linus Torvalds18351072008-08-05 21:42:21 -0700387 sector_t threshold;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500388 unsigned int this_count = rq->nr_sectors;
Martin K. Petersenbd623e72008-09-19 18:47:19 -0400389 int ret, host_dif;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500390
391 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
392 ret = scsi_setup_blk_pc_cmnd(sdp, rq);
393 goto out;
394 } else if (rq->cmd_type != REQ_TYPE_FS) {
395 ret = BLKPREP_KILL;
396 goto out;
397 }
398 ret = scsi_setup_fs_cmnd(sdp, rq);
399 if (ret != BLKPREP_OK)
400 goto out;
401 SCpnt = rq->special;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400402 sdkp = scsi_disk(disk);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500403
404 /* from here on until we're complete, any goto out
405 * is used for a killable error condition */
406 ret = BLKPREP_KILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500408 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
409 "sd_init_command: block=%llu, "
410 "count=%d\n",
411 (unsigned long long)block,
412 this_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 if (!sdp || !scsi_device_online(sdp) ||
415 block + rq->nr_sectors > get_capacity(disk)) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500416 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
417 "Finishing %ld sectors\n",
418 rq->nr_sectors));
419 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
420 "Retry with 0x%p\n", SCpnt));
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500421 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423
424 if (sdp->changed) {
425 /*
426 * quietly refuse to do anything to a changed disc until
427 * the changed bit has been reset
428 */
429 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500430 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500432
Hans de Goedea0899d42008-01-20 11:12:26 +0100433 /*
Linus Torvalds18351072008-08-05 21:42:21 -0700434 * Some SD card readers can't handle multi-sector accesses which touch
435 * the last one or two hardware sectors. Split accesses as needed.
Hans de Goedea0899d42008-01-20 11:12:26 +0100436 */
Linus Torvalds18351072008-08-05 21:42:21 -0700437 threshold = get_capacity(disk) - SD_LAST_BUGGY_SECTORS *
438 (sdp->sector_size / 512);
439
440 if (unlikely(sdp->last_sector_bug && block + this_count > threshold)) {
441 if (block < threshold) {
442 /* Access up to the threshold but not beyond */
443 this_count = threshold - block;
444 } else {
445 /* Access only a single hardware sector */
446 this_count = sdp->sector_size / 512;
447 }
448 }
Hans de Goedea0899d42008-01-20 11:12:26 +0100449
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500450 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, "block=%llu\n",
451 (unsigned long long)block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 /*
454 * If we have a 1K hardware sectorsize, prevent access to single
455 * 512 byte sectors. In theory we could handle this - in fact
456 * the scsi cdrom driver must be able to handle this because
457 * we typically use 1K blocksizes, and cdroms typically have
458 * 2K hardware sectorsizes. Of course, things are simpler
459 * with the cdrom, since it is read-only. For performance
460 * reasons, the filesystems should be able to handle this
461 * and not force the scsi disk driver to use bounce buffers
462 * for this.
463 */
464 if (sdp->sector_size == 1024) {
465 if ((block & 1) || (rq->nr_sectors & 1)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500466 scmd_printk(KERN_ERR, SCpnt,
467 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500468 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 } else {
470 block = block >> 1;
471 this_count = this_count >> 1;
472 }
473 }
474 if (sdp->sector_size == 2048) {
475 if ((block & 3) || (rq->nr_sectors & 3)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500476 scmd_printk(KERN_ERR, SCpnt,
477 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500478 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 } else {
480 block = block >> 2;
481 this_count = this_count >> 2;
482 }
483 }
484 if (sdp->sector_size == 4096) {
485 if ((block & 7) || (rq->nr_sectors & 7)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500486 scmd_printk(KERN_ERR, SCpnt,
487 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500488 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 } else {
490 block = block >> 3;
491 this_count = this_count >> 3;
492 }
493 }
494 if (rq_data_dir(rq) == WRITE) {
495 if (!sdp->writeable) {
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500496 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498 SCpnt->cmnd[0] = WRITE_6;
499 SCpnt->sc_data_direction = DMA_TO_DEVICE;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400500
501 if (blk_integrity_rq(rq) &&
502 sd_dif_prepare(rq, block, sdp->sector_size) == -EIO)
503 goto out;
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 } else if (rq_data_dir(rq) == READ) {
506 SCpnt->cmnd[0] = READ_6;
507 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
508 } else {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500509 scmd_printk(KERN_ERR, SCpnt, "Unknown command %x\n", rq->cmd_flags);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500510 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500513 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
514 "%s %d/%ld 512 byte blocks.\n",
515 (rq_data_dir(rq) == WRITE) ?
516 "writing" : "reading", this_count,
517 rq->nr_sectors));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400519 /* Set RDPROTECT/WRPROTECT if disk is formatted with DIF */
Martin K. Petersenbd623e72008-09-19 18:47:19 -0400520 host_dif = scsi_host_dif_capable(sdp->host, sdkp->protection_type);
521 if (host_dif)
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400522 SCpnt->cmnd[1] = 1 << 5;
523 else
524 SCpnt->cmnd[1] = 0;
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (block > 0xffffffff) {
527 SCpnt->cmnd[0] += READ_16 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100528 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
530 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
531 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
532 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
533 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
534 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
535 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
536 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
537 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
538 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
539 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
540 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
541 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
542 } else if ((this_count > 0xff) || (block > 0x1fffff) ||
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400543 scsi_device_protection(SCpnt->device) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 SCpnt->device->use_10_for_rw) {
545 if (this_count > 0xffff)
546 this_count = 0xffff;
547
548 SCpnt->cmnd[0] += READ_10 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100549 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
551 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
552 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
553 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
554 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
555 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
556 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
557 } else {
Tejun Heo007365a2006-01-06 09:53:52 +0100558 if (unlikely(blk_fua_rq(rq))) {
559 /*
560 * This happens only if this drive failed
561 * 10byte rw command with ILLEGAL_REQUEST
562 * during operation and thus turned off
563 * use_10_for_rw.
564 */
Martin K. Petersene73aec82007-02-27 22:40:55 -0500565 scmd_printk(KERN_ERR, SCpnt,
566 "FUA write on READ/WRITE(6) drive\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500567 goto out;
Tejun Heo007365a2006-01-06 09:53:52 +0100568 }
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
571 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
572 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
573 SCpnt->cmnd[4] = (unsigned char) this_count;
574 SCpnt->cmnd[5] = 0;
575 }
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200576 SCpnt->sdb.length = this_count * sdp->sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400578 /* If DIF or DIX is enabled, tell HBA how to handle request */
Martin K. Petersenbd623e72008-09-19 18:47:19 -0400579 if (host_dif || scsi_prot_sg_count(SCpnt))
Martin K. Petersen9e066882008-09-19 18:47:21 -0400580 sd_dif_op(SCpnt, host_dif, scsi_prot_sg_count(SCpnt),
581 sdkp->protection_type);
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /*
584 * We shouldn't disconnect in the middle of a sector, so with a dumb
585 * host adapter, it's safe to assume that we can at least transfer
586 * this many bytes between each connect / disconnect.
587 */
588 SCpnt->transfersize = sdp->sector_size;
589 SCpnt->underflow = this_count << 9;
590 SCpnt->allowed = SD_MAX_RETRIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 * This indicates that the command is ready from our end to be
594 * queued.
595 */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500596 ret = BLKPREP_OK;
597 out:
598 return scsi_prep_return(q, rq, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601/**
602 * sd_open - open a scsi disk device
603 * @inode: only i_rdev member may be used
604 * @filp: only f_mode and f_flags may be used
605 *
606 * Returns 0 if successful. Returns a negated errno value in case
607 * of error.
608 *
609 * Note: This can be called from a user context (e.g. fsck(1) )
610 * or from within the kernel (e.g. as a result of a mount(1) ).
611 * In the latter case @inode and @filp carry an abridged amount
612 * of information as noted above.
613 **/
Al Viro0338e292008-03-02 10:41:04 -0500614static int sd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Al Viro0338e292008-03-02 10:41:04 -0500616 struct scsi_disk *sdkp = scsi_disk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct scsi_device *sdev;
618 int retval;
619
Al Viro0338e292008-03-02 10:41:04 -0500620 if (!sdkp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return -ENXIO;
622
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500623 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_open\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 sdev = sdkp->device;
626
627 /*
628 * If the device is in error recovery, wait until it is done.
629 * If the device is offline, then disallow any access to it.
630 */
631 retval = -ENXIO;
632 if (!scsi_block_when_processing_errors(sdev))
633 goto error_out;
634
635 if (sdev->removable || sdkp->write_prot)
Al Viro0338e292008-03-02 10:41:04 -0500636 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 /*
639 * If the drive is empty, just let the open fail.
640 */
641 retval = -ENOMEDIUM;
Al Viro0338e292008-03-02 10:41:04 -0500642 if (sdev->removable && !sdkp->media_present && !(mode & FMODE_NDELAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 goto error_out;
644
645 /*
646 * If the device has the write protect tab set, have the open fail
647 * if the user expects to be able to write to the thing.
648 */
649 retval = -EROFS;
Al Viro0338e292008-03-02 10:41:04 -0500650 if (sdkp->write_prot && (mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 goto error_out;
652
653 /*
654 * It is possible that the disk changing stuff resulted in
655 * the device being taken offline. If this is the case,
656 * report this to the user, and don't pretend that the
657 * open actually succeeded.
658 */
659 retval = -ENXIO;
660 if (!scsi_device_online(sdev))
661 goto error_out;
662
663 if (!sdkp->openers++ && sdev->removable) {
664 if (scsi_block_when_processing_errors(sdev))
665 scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
666 }
667
668 return 0;
669
670error_out:
671 scsi_disk_put(sdkp);
672 return retval;
673}
674
675/**
676 * sd_release - invoked when the (last) close(2) is called on this
677 * scsi disk.
678 * @inode: only i_rdev member may be used
679 * @filp: only f_mode and f_flags may be used
680 *
681 * Returns 0.
682 *
683 * Note: may block (uninterruptible) if error recovery is underway
684 * on this disk.
685 **/
Al Viro0338e292008-03-02 10:41:04 -0500686static int sd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 struct scsi_disk *sdkp = scsi_disk(disk);
689 struct scsi_device *sdev = sdkp->device;
690
James Bottomley56937f72007-03-11 12:25:33 -0500691 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_release\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 if (!--sdkp->openers && sdev->removable) {
694 if (scsi_block_when_processing_errors(sdev))
695 scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
696 }
697
698 /*
699 * XXX and what if there are packets in flight and this close()
700 * XXX is followed by a "rmmod sd_mod"?
701 */
702 scsi_disk_put(sdkp);
703 return 0;
704}
705
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800706static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
709 struct scsi_device *sdp = sdkp->device;
710 struct Scsi_Host *host = sdp->host;
711 int diskinfo[4];
712
713 /* default to most commonly used values */
714 diskinfo[0] = 0x40; /* 1 << 6 */
715 diskinfo[1] = 0x20; /* 1 << 5 */
716 diskinfo[2] = sdkp->capacity >> 11;
717
718 /* override with calculated, extended default, or driver values */
719 if (host->hostt->bios_param)
720 host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
721 else
722 scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
723
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800724 geo->heads = diskinfo[0];
725 geo->sectors = diskinfo[1];
726 geo->cylinders = diskinfo[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return 0;
728}
729
730/**
731 * sd_ioctl - process an ioctl
732 * @inode: only i_rdev/i_bdev members may be used
733 * @filp: only f_mode and f_flags may be used
734 * @cmd: ioctl command number
735 * @arg: this is third argument given to ioctl(2) system call.
736 * Often contains a pointer.
737 *
738 * Returns 0 if successful (some ioctls return postive numbers on
739 * success as well). Returns a negated errno value in case of error.
740 *
741 * Note: most ioctls are forward onto the block subsystem or further
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200742 * down in the scsi subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 **/
Al Viro0338e292008-03-02 10:41:04 -0500744static int sd_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 unsigned int cmd, unsigned long arg)
746{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 struct gendisk *disk = bdev->bd_disk;
748 struct scsi_device *sdp = scsi_disk(disk)->device;
749 void __user *p = (void __user *)arg;
750 int error;
751
752 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
753 disk->disk_name, cmd));
754
755 /*
756 * If we are in the middle of error recovery, don't let anyone
757 * else try and use this device. Also, if error recovery fails, it
758 * may try and take the device offline, in which case all further
759 * access to the device is prohibited.
760 */
Al Viro83ff6fe2008-03-02 08:15:49 -0500761 error = scsi_nonblockable_ioctl(sdp, cmd, p,
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +0100762 (mode & FMODE_NDELAY) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (!scsi_block_when_processing_errors(sdp) || !error)
764 return error;
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 /*
767 * Send SCSI addressing ioctls directly to mid level, send other
768 * ioctls to block level and then onto mid level if they can't be
769 * resolved.
770 */
771 switch (cmd) {
772 case SCSI_IOCTL_GET_IDLUN:
773 case SCSI_IOCTL_GET_BUS_NUMBER:
774 return scsi_ioctl(sdp, cmd, p);
775 default:
Al Viro0338e292008-03-02 10:41:04 -0500776 error = scsi_cmd_ioctl(disk->queue, disk, mode, cmd, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (error != -ENOTTY)
778 return error;
779 }
780 return scsi_ioctl(sdp, cmd, p);
781}
782
783static void set_media_not_present(struct scsi_disk *sdkp)
784{
785 sdkp->media_present = 0;
786 sdkp->capacity = 0;
787 sdkp->device->changed = 1;
788}
789
790/**
791 * sd_media_changed - check if our medium changed
792 * @disk: kernel device descriptor
793 *
794 * Returns 0 if not applicable or no change; 1 if change
795 *
796 * Note: this function is invoked from the block subsystem.
797 **/
798static int sd_media_changed(struct gendisk *disk)
799{
800 struct scsi_disk *sdkp = scsi_disk(disk);
801 struct scsi_device *sdp = sdkp->device;
James Bottomley001aac22007-12-02 19:10:40 +0200802 struct scsi_sense_hdr *sshdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 int retval;
804
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500805 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_media_changed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 if (!sdp->removable)
808 return 0;
809
810 /*
811 * If the device is offline, don't send any commands - just pretend as
812 * if the command failed. If the device ever comes back online, we
813 * can deal with it then. It is only because of unrecoverable errors
814 * that we would ever take a device offline in the first place.
815 */
Kay Sievers285e9672007-08-14 14:10:39 +0200816 if (!scsi_device_online(sdp)) {
817 set_media_not_present(sdkp);
818 retval = 1;
819 goto out;
820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /*
823 * Using TEST_UNIT_READY enables differentiation between drive with
824 * no cartridge loaded - NOT READY, drive with changed cartridge -
825 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
826 *
827 * Drives that auto spin down. eg iomega jaz 1G, will be started
828 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
829 * sd_revalidate() is called.
830 */
831 retval = -ENODEV;
Kay Sievers285e9672007-08-14 14:10:39 +0200832
James Bottomley001aac22007-12-02 19:10:40 +0200833 if (scsi_block_when_processing_errors(sdp)) {
834 sshdr = kzalloc(sizeof(*sshdr), GFP_KERNEL);
835 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES,
836 sshdr);
837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 /*
840 * Unable to test, unit probably not ready. This usually
841 * means there is no disc in the drive. Mark as changed,
842 * and we will figure it out later once the drive is
843 * available again.
844 */
James Bottomley001aac22007-12-02 19:10:40 +0200845 if (retval || (scsi_sense_valid(sshdr) &&
846 /* 0x3a is medium not present */
847 sshdr->asc == 0x3a)) {
Kay Sievers285e9672007-08-14 14:10:39 +0200848 set_media_not_present(sdkp);
849 retval = 1;
850 goto out;
851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 /*
854 * For removable scsi disk we have to recognise the presence
855 * of a disk in the drive. This is kept in the struct scsi_disk
856 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
857 */
858 sdkp->media_present = 1;
859
860 retval = sdp->changed;
861 sdp->changed = 0;
Kay Sievers285e9672007-08-14 14:10:39 +0200862out:
863 if (retval != sdkp->previous_state)
864 sdev_evt_send_simple(sdp, SDEV_EVT_MEDIA_CHANGE, GFP_KERNEL);
865 sdkp->previous_state = retval;
James Bottomley001aac22007-12-02 19:10:40 +0200866 kfree(sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
Martin K. Petersene73aec82007-02-27 22:40:55 -0500870static int sd_sync_cache(struct scsi_disk *sdkp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 int retries, res;
Martin K. Petersene73aec82007-02-27 22:40:55 -0500873 struct scsi_device *sdp = sdkp->device;
James Bottomleyea73a9f2005-08-28 11:33:52 -0500874 struct scsi_sense_hdr sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 if (!scsi_device_online(sdp))
877 return -ENODEV;
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 for (retries = 3; retries > 0; --retries) {
881 unsigned char cmd[10] = { 0 };
882
883 cmd[0] = SYNCHRONIZE_CACHE;
884 /*
885 * Leave the rest of the command zero to indicate
886 * flush everything.
887 */
James Bottomleyea73a9f2005-08-28 11:33:52 -0500888 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900889 SD_TIMEOUT, SD_MAX_RETRIES, NULL);
James Bottomleyea73a9f2005-08-28 11:33:52 -0500890 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 break;
892 }
893
Martin K. Petersene73aec82007-02-27 22:40:55 -0500894 if (res) {
895 sd_print_result(sdkp, res);
896 if (driver_byte(res) & DRIVER_SENSE)
897 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899
Tejun Heo37210502007-03-21 00:07:18 +0900900 if (res)
901 return -EIO;
902 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
Jens Axboe165125e2007-07-24 09:28:11 +0200905static void sd_prepare_flush(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200907 rq->cmd_type = REQ_TYPE_BLOCK_PC;
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500908 rq->timeout = SD_TIMEOUT;
909 rq->cmd[0] = SYNCHRONIZE_CACHE;
Tejun Heo461d4e92006-01-06 09:52:55 +0100910 rq->cmd_len = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
912
913static void sd_rescan(struct device *dev)
914{
Alan Stern39b7f1e2005-11-04 14:44:41 -0500915 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
916
917 if (sdkp) {
Andrew Pattersonf98a8ca2008-09-04 14:27:35 -0600918 revalidate_disk(sdkp->disk);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500919 scsi_disk_put(sdkp);
920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
923
924#ifdef CONFIG_COMPAT
925/*
926 * This gets directly called from VFS. When the ioctl
927 * is not recognized we go back to the other translation paths.
928 */
Al Viro0338e292008-03-02 10:41:04 -0500929static int sd_compat_ioctl(struct block_device *bdev, fmode_t mode,
930 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Al Viro0338e292008-03-02 10:41:04 -0500932 struct scsi_device *sdev = scsi_disk(bdev->bd_disk)->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 /*
935 * If we are in the middle of error recovery, don't let anyone
936 * else try and use this device. Also, if error recovery fails, it
937 * may try and take the device offline, in which case all further
938 * access to the device is prohibited.
939 */
940 if (!scsi_block_when_processing_errors(sdev))
941 return -ENODEV;
942
943 if (sdev->host->hostt->compat_ioctl) {
944 int ret;
945
946 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
947
948 return ret;
949 }
950
951 /*
952 * Let the static ioctl translation table take care of it.
953 */
954 return -ENOIOCTLCMD;
955}
956#endif
957
958static struct block_device_operations sd_fops = {
959 .owner = THIS_MODULE,
Al Viro0338e292008-03-02 10:41:04 -0500960 .open = sd_open,
961 .release = sd_release,
962 .locked_ioctl = sd_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800963 .getgeo = sd_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964#ifdef CONFIG_COMPAT
Al Viro0338e292008-03-02 10:41:04 -0500965 .compat_ioctl = sd_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966#endif
967 .media_changed = sd_media_changed,
968 .revalidate_disk = sd_revalidate_disk,
969};
970
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400971static unsigned int sd_completed_bytes(struct scsi_cmnd *scmd)
972{
973 u64 start_lba = scmd->request->sector;
974 u64 end_lba = scmd->request->sector + (scsi_bufflen(scmd) / 512);
975 u64 bad_lba;
976 int info_valid;
977
978 if (!blk_fs_request(scmd->request))
979 return 0;
980
981 info_valid = scsi_get_sense_info_fld(scmd->sense_buffer,
982 SCSI_SENSE_BUFFERSIZE,
983 &bad_lba);
984 if (!info_valid)
985 return 0;
986
987 if (scsi_bufflen(scmd) <= scmd->device->sector_size)
988 return 0;
989
990 if (scmd->device->sector_size < 512) {
991 /* only legitimate sector_size here is 256 */
992 start_lba <<= 1;
993 end_lba <<= 1;
994 } else {
995 /* be careful ... don't want any overflows */
996 u64 factor = scmd->device->sector_size / 512;
997 do_div(start_lba, factor);
998 do_div(end_lba, factor);
999 }
1000
1001 /* The bad lba was reported incorrectly, we have no idea where
1002 * the error is.
1003 */
1004 if (bad_lba < start_lba || bad_lba >= end_lba)
1005 return 0;
1006
1007 /* This computation should always be done in terms of
1008 * the resolution of the device's medium.
1009 */
1010 return (bad_lba - start_lba) * scmd->device->sector_size;
1011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013/**
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001014 * sd_done - bottom half handler: called when the lower level
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 * driver has completed (successfully or otherwise) a scsi command.
1016 * @SCpnt: mid-level's per command structure.
1017 *
1018 * Note: potentially run from within an ISR. Must not block.
1019 **/
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001020static int sd_done(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 int result = SCpnt->result;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001023 unsigned int good_bytes = result ? 0 : scsi_bufflen(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 struct scsi_sense_hdr sshdr;
1025 int sense_valid = 0;
1026 int sense_deferred = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
1028 if (result) {
1029 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
1030 if (sense_valid)
1031 sense_deferred = scsi_sense_is_deferred(&sshdr);
1032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033#ifdef CONFIG_SCSI_LOGGING
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001034 SCSI_LOG_HLCOMPLETE(1, scsi_print_result(SCpnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (sense_valid) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001036 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, SCpnt,
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001037 "sd_done: sb[respc,sk,asc,"
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001038 "ascq]=%x,%x,%x,%x\n",
1039 sshdr.response_code,
1040 sshdr.sense_key, sshdr.asc,
1041 sshdr.ascq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043#endif
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001044 if (driver_byte(result) != DRIVER_SENSE &&
1045 (!sense_valid || sense_deferred))
1046 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001048 switch (sshdr.sense_key) {
1049 case HARDWARE_ERROR:
1050 case MEDIUM_ERROR:
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001051 good_bytes = sd_completed_bytes(SCpnt);
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001052 break;
1053 case RECOVERED_ERROR:
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001054 /* Inform the user, but make sure that it's not treated
1055 * as a hard error.
1056 */
1057 scsi_print_sense("sd", SCpnt);
1058 SCpnt->result = 0;
1059 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001060 good_bytes = scsi_bufflen(SCpnt);
1061 break;
Jamie Wellnitz10dab222008-09-11 21:39:36 -04001062 case NO_SENSE:
1063 /* This indicates a false check condition, so ignore it. An
1064 * unknown amount of data was transferred so treat it as an
1065 * error.
1066 */
1067 scsi_print_sense("sd", SCpnt);
1068 SCpnt->result = 0;
1069 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
1070 break;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001071 case ABORTED_COMMAND:
1072 if (sshdr.asc == 0x10) { /* DIF: Disk detected corruption */
1073 scsi_print_result(SCpnt);
1074 scsi_print_sense("sd", SCpnt);
1075 good_bytes = sd_completed_bytes(SCpnt);
1076 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001077 break;
1078 case ILLEGAL_REQUEST:
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001079 if (sshdr.asc == 0x10) { /* DIX: HBA detected corruption */
1080 scsi_print_result(SCpnt);
1081 scsi_print_sense("sd", SCpnt);
1082 good_bytes = sd_completed_bytes(SCpnt);
1083 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001084 break;
1085 default:
1086 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001088 out:
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001089 if (rq_data_dir(SCpnt->request) == READ && scsi_prot_sg_count(SCpnt))
1090 sd_dif_complete(SCpnt, good_bytes);
1091
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001092 return good_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
James Bottomleyea73a9f2005-08-28 11:33:52 -05001095static int media_not_present(struct scsi_disk *sdkp,
1096 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
James Bottomleyea73a9f2005-08-28 11:33:52 -05001099 if (!scsi_sense_valid(sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return 0;
1101 /* not invoked for commands that could return deferred errors */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001102 if (sshdr->sense_key != NOT_READY &&
1103 sshdr->sense_key != UNIT_ATTENTION)
1104 return 0;
1105 if (sshdr->asc != 0x3A) /* medium not present */
1106 return 0;
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 set_media_not_present(sdkp);
1109 return 1;
1110}
1111
1112/*
1113 * spinup disk - called only in sd_revalidate_disk()
1114 */
1115static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001116sd_spinup_disk(struct scsi_disk *sdkp)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001117{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 unsigned char cmd[10];
Alan Stern4451e472005-07-12 10:45:17 -04001119 unsigned long spintime_expire = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 int retries, spintime;
1121 unsigned int the_result;
1122 struct scsi_sense_hdr sshdr;
1123 int sense_valid = 0;
1124
1125 spintime = 0;
1126
1127 /* Spin up drives, as required. Only do this at boot time */
1128 /* Spinup needs to be done for module loads too. */
1129 do {
1130 retries = 0;
1131
1132 do {
1133 cmd[0] = TEST_UNIT_READY;
1134 memset((void *) &cmd[1], 0, 9);
1135
James Bottomleyea73a9f2005-08-28 11:33:52 -05001136 the_result = scsi_execute_req(sdkp->device, cmd,
1137 DMA_NONE, NULL, 0,
1138 &sshdr, SD_TIMEOUT,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09001139 SD_MAX_RETRIES, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Alan Sternb4d38e32006-10-11 16:48:28 -04001141 /*
1142 * If the drive has indicated to us that it
1143 * doesn't have any media in it, don't bother
1144 * with any more polling.
1145 */
1146 if (media_not_present(sdkp, &sshdr))
1147 return;
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001150 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 retries++;
1152 } while (retries < 3 &&
1153 (!scsi_status_is_good(the_result) ||
1154 ((driver_byte(the_result) & DRIVER_SENSE) &&
1155 sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1158 /* no sense, TUR either succeeded or failed
1159 * with a status error */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001160 if(!spintime && !scsi_status_is_good(the_result)) {
1161 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1162 sd_print_result(sdkp, the_result);
1163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 break;
1165 }
1166
1167 /*
1168 * The device does not want the automatic start to be issued.
1169 */
Matthew Wilcox33dd6f92009-02-20 06:53:48 -07001170 if (sdkp->device->no_start_on_add)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Matthew Wilcox33dd6f92009-02-20 06:53:48 -07001173 if (sense_valid && sshdr.sense_key == NOT_READY) {
1174 if (sshdr.asc == 4 && sshdr.ascq == 3)
1175 break; /* manual intervention required */
1176 if (sshdr.asc == 4 && sshdr.ascq == 0xb)
1177 break; /* standby */
1178 if (sshdr.asc == 4 && sshdr.ascq == 0xc)
1179 break; /* unavailable */
1180 /*
1181 * Issue command to spin up drive when not ready
1182 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001184 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 cmd[0] = START_STOP;
1186 cmd[1] = 1; /* Return immediately */
1187 memset((void *) &cmd[2], 0, 8);
1188 cmd[4] = 1; /* Start spin cycle */
Stefan Richterd2886ea2008-05-11 00:34:07 +02001189 if (sdkp->device->start_stop_pwr_cond)
1190 cmd[4] |= 1 << 4;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001191 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1192 NULL, 0, &sshdr,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09001193 SD_TIMEOUT, SD_MAX_RETRIES,
1194 NULL);
Alan Stern4451e472005-07-12 10:45:17 -04001195 spintime_expire = jiffies + 100 * HZ;
1196 spintime = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 /* Wait 1 second for next try */
1199 msleep(1000);
1200 printk(".");
Alan Stern4451e472005-07-12 10:45:17 -04001201
1202 /*
1203 * Wait for USB flash devices with slow firmware.
1204 * Yes, this sense key/ASC combination shouldn't
1205 * occur here. It's characteristic of these devices.
1206 */
1207 } else if (sense_valid &&
1208 sshdr.sense_key == UNIT_ATTENTION &&
1209 sshdr.asc == 0x28) {
1210 if (!spintime) {
1211 spintime_expire = jiffies + 5 * HZ;
1212 spintime = 1;
1213 }
1214 /* Wait 1 second for next try */
1215 msleep(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 } else {
1217 /* we don't understand the sense code, so it's
1218 * probably pointless to loop */
1219 if(!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001220 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1221 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
1223 break;
1224 }
1225
Alan Stern4451e472005-07-12 10:45:17 -04001226 } while (spintime && time_before_eq(jiffies, spintime_expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 if (spintime) {
1229 if (scsi_status_is_good(the_result))
1230 printk("ready\n");
1231 else
1232 printk("not responding...\n");
1233 }
1234}
1235
Martin K. Petersene0597d72008-07-17 04:28:34 -04001236
1237/*
1238 * Determine whether disk supports Data Integrity Field.
1239 */
1240void sd_read_protection_type(struct scsi_disk *sdkp, unsigned char *buffer)
1241{
1242 struct scsi_device *sdp = sdkp->device;
1243 u8 type;
1244
1245 if (scsi_device_protection(sdp) == 0 || (buffer[12] & 1) == 0)
1246 type = 0;
1247 else
1248 type = ((buffer[12] >> 1) & 7) + 1; /* P_TYPE 0 = Type 1 */
1249
Martin K. Petersenbe922f42008-09-19 18:47:20 -04001250 sdkp->protection_type = type;
1251
Martin K. Petersene0597d72008-07-17 04:28:34 -04001252 switch (type) {
1253 case SD_DIF_TYPE0_PROTECTION:
Martin K. Petersene0597d72008-07-17 04:28:34 -04001254 case SD_DIF_TYPE1_PROTECTION:
1255 case SD_DIF_TYPE3_PROTECTION:
Martin K. Petersene0597d72008-07-17 04:28:34 -04001256 break;
1257
1258 case SD_DIF_TYPE2_PROTECTION:
1259 sd_printk(KERN_ERR, sdkp, "formatted with DIF Type 2 " \
1260 "protection which is currently unsupported. " \
1261 "Disabling disk!\n");
1262 goto disable;
1263
1264 default:
1265 sd_printk(KERN_ERR, sdkp, "formatted with unknown " \
1266 "protection type %d. Disabling disk!\n", type);
1267 goto disable;
1268 }
1269
1270 return;
1271
1272disable:
Martin K. Petersene0597d72008-07-17 04:28:34 -04001273 sdkp->capacity = 0;
1274}
1275
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001276static void read_capacity_error(struct scsi_disk *sdkp, struct scsi_device *sdp,
1277 struct scsi_sense_hdr *sshdr, int sense_valid,
1278 int the_result)
1279{
1280 sd_print_result(sdkp, the_result);
1281 if (driver_byte(the_result) & DRIVER_SENSE)
1282 sd_print_sense_hdr(sdkp, sshdr);
1283 else
1284 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
1285
1286 /*
1287 * Set dirty bit for removable devices if not ready -
1288 * sometimes drives will not report this properly.
1289 */
1290 if (sdp->removable &&
1291 sense_valid && sshdr->sense_key == NOT_READY)
1292 sdp->changed = 1;
1293
1294 /*
1295 * We used to set media_present to 0 here to indicate no media
1296 * in the drive, but some drives fail read capacity even with
1297 * media present, so we can't do that.
1298 */
1299 sdkp->capacity = 0; /* unknown mapped to zero - as usual */
1300}
1301
1302#define RC16_LEN 32
1303#if RC16_LEN > SD_BUF_SIZE
1304#error RC16_LEN must not be more than SD_BUF_SIZE
1305#endif
1306
1307static int read_capacity_16(struct scsi_disk *sdkp, struct scsi_device *sdp,
1308 unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001309{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 unsigned char cmd[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 struct scsi_sense_hdr sshdr;
1312 int sense_valid = 0;
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001313 int the_result;
1314 int retries = 3;
1315 unsigned long long lba;
1316 unsigned sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 do {
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001319 memset(cmd, 0, 16);
1320 cmd[0] = SERVICE_ACTION_IN;
1321 cmd[1] = SAI_READ_CAPACITY_16;
1322 cmd[13] = RC16_LEN;
1323 memset(buffer, 0, RC16_LEN);
1324
James Bottomleyea73a9f2005-08-28 11:33:52 -05001325 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001326 buffer, RC16_LEN, &sshdr,
1327 SD_TIMEOUT, SD_MAX_RETRIES, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
James Bottomleyea73a9f2005-08-28 11:33:52 -05001329 if (media_not_present(sdkp, &sshdr))
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001330 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Matthew Wilcox2b301302009-03-12 14:20:30 -04001332 if (the_result) {
James Bottomleyea73a9f2005-08-28 11:33:52 -05001333 sense_valid = scsi_sense_valid(&sshdr);
Matthew Wilcox2b301302009-03-12 14:20:30 -04001334 if (sense_valid &&
1335 sshdr.sense_key == ILLEGAL_REQUEST &&
1336 (sshdr.asc == 0x20 || sshdr.asc == 0x24) &&
1337 sshdr.ascq == 0x00)
1338 /* Invalid Command Operation Code or
1339 * Invalid Field in CDB, just retry
1340 * silently with RC10 */
1341 return -EINVAL;
1342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 retries--;
1344
1345 } while (the_result && retries);
1346
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001347 if (the_result) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001348 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY(16) failed\n");
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001349 read_capacity_error(sdkp, sdp, &sshdr, sense_valid, the_result);
1350 return -EINVAL;
1351 }
Martin K. Petersene73aec82007-02-27 22:40:55 -05001352
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001353 sector_size = (buffer[8] << 24) | (buffer[9] << 16) |
1354 (buffer[10] << 8) | buffer[11];
1355 lba = (((u64)buffer[0] << 56) | ((u64)buffer[1] << 48) |
1356 ((u64)buffer[2] << 40) | ((u64)buffer[3] << 32) |
1357 ((u64)buffer[4] << 24) | ((u64)buffer[5] << 16) |
1358 ((u64)buffer[6] << 8) | (u64)buffer[7]);
1359
1360 sd_read_protection_type(sdkp, buffer);
1361
1362 if ((sizeof(sdkp->capacity) == 4) && (lba >= 0xffffffffULL)) {
1363 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use a "
1364 "kernel compiled with support for large block "
1365 "devices.\n");
1366 sdkp->capacity = 0;
1367 return -EOVERFLOW;
1368 }
1369
1370 sdkp->capacity = lba + 1;
1371 return sector_size;
1372}
1373
1374static int read_capacity_10(struct scsi_disk *sdkp, struct scsi_device *sdp,
1375 unsigned char *buffer)
1376{
1377 unsigned char cmd[16];
1378 struct scsi_sense_hdr sshdr;
1379 int sense_valid = 0;
1380 int the_result;
1381 int retries = 3;
1382 sector_t lba;
1383 unsigned sector_size;
1384
1385 do {
1386 cmd[0] = READ_CAPACITY;
1387 memset(&cmd[1], 0, 9);
1388 memset(buffer, 0, 8);
1389
1390 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
1391 buffer, 8, &sshdr,
1392 SD_TIMEOUT, SD_MAX_RETRIES, NULL);
1393
1394 if (media_not_present(sdkp, &sshdr))
1395 return -ENODEV;
1396
1397 if (the_result)
1398 sense_valid = scsi_sense_valid(&sshdr);
1399 retries--;
1400
1401 } while (the_result && retries);
1402
1403 if (the_result) {
1404 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY failed\n");
1405 read_capacity_error(sdkp, sdp, &sshdr, sense_valid, the_result);
1406 return -EINVAL;
1407 }
1408
1409 sector_size = (buffer[4] << 24) | (buffer[5] << 16) |
1410 (buffer[6] << 8) | buffer[7];
1411 lba = (buffer[0] << 24) | (buffer[1] << 16) |
1412 (buffer[2] << 8) | buffer[3];
1413
1414 if ((sizeof(sdkp->capacity) == 4) && (lba == 0xffffffff)) {
1415 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use a "
1416 "kernel compiled with support for large block "
1417 "devices.\n");
1418 sdkp->capacity = 0;
1419 return -EOVERFLOW;
1420 }
1421
1422 sdkp->capacity = lba + 1;
1423 return sector_size;
1424}
1425
Matthew Wilcox2b301302009-03-12 14:20:30 -04001426static int sd_try_rc16_first(struct scsi_device *sdp)
1427{
1428 if (sdp->scsi_level > SCSI_SPC_2)
1429 return 1;
1430 if (scsi_device_protection(sdp))
1431 return 1;
1432 return 0;
1433}
1434
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001435/*
1436 * read disk capacity
1437 */
1438static void
1439sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
1440{
1441 int sector_size;
1442 struct scsi_device *sdp = sdkp->device;
Martin K. Petersen70a9b872009-03-09 11:33:31 -04001443 sector_t old_capacity = sdkp->capacity;
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001444
Matthew Wilcox2b301302009-03-12 14:20:30 -04001445 if (sd_try_rc16_first(sdp)) {
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001446 sector_size = read_capacity_16(sdkp, sdp, buffer);
1447 if (sector_size == -EOVERFLOW)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 goto got_data;
Matthew Wilcox2b301302009-03-12 14:20:30 -04001449 if (sector_size == -ENODEV)
1450 return;
1451 if (sector_size < 0)
1452 sector_size = read_capacity_10(sdkp, sdp, buffer);
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001453 if (sector_size < 0)
1454 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 } else {
Matthew Wilcox0da205e2009-03-12 14:20:29 -04001456 sector_size = read_capacity_10(sdkp, sdp, buffer);
1457 if (sector_size == -EOVERFLOW)
1458 goto got_data;
1459 if (sector_size < 0)
1460 return;
1461 if ((sizeof(sdkp->capacity) > 4) &&
1462 (sdkp->capacity > 0xffffffffULL)) {
1463 int old_sector_size = sector_size;
1464 sd_printk(KERN_NOTICE, sdkp, "Very big device. "
1465 "Trying to use READ CAPACITY(16).\n");
1466 sector_size = read_capacity_16(sdkp, sdp, buffer);
1467 if (sector_size < 0) {
1468 sd_printk(KERN_NOTICE, sdkp,
1469 "Using 0xffffffff as device size\n");
1470 sdkp->capacity = 1 + (sector_t) 0xffffffff;
1471 sector_size = old_sector_size;
1472 goto got_data;
1473 }
1474 }
1475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Alan Stern5c211ca2009-02-18 10:54:44 -05001477 /* Some devices are known to return the total number of blocks,
1478 * not the highest block number. Some devices have versions
1479 * which do this and others which do not. Some devices we might
1480 * suspect of doing this but we don't know for certain.
1481 *
1482 * If we know the reported capacity is wrong, decrement it. If
1483 * we can only guess, then assume the number of blocks is even
1484 * (usually true but not always) and err on the side of lowering
1485 * the capacity.
1486 */
1487 if (sdp->fix_capacity ||
1488 (sdp->guess_capacity && (sdkp->capacity & 0x01))) {
1489 sd_printk(KERN_INFO, sdkp, "Adjusting the sector count "
1490 "from its reported value: %llu\n",
1491 (unsigned long long) sdkp->capacity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 --sdkp->capacity;
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001493 }
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495got_data:
1496 if (sector_size == 0) {
1497 sector_size = 512;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001498 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
1499 "assuming 512.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
1501
1502 if (sector_size != 512 &&
1503 sector_size != 1024 &&
1504 sector_size != 2048 &&
1505 sector_size != 4096 &&
1506 sector_size != 256) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001507 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
1508 sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 /*
1510 * The user might want to re-format the drive with
1511 * a supported sectorsize. Once this happens, it
1512 * would be relatively trivial to set the thing up.
1513 * For this reason, we leave the thing in the table.
1514 */
1515 sdkp->capacity = 0;
1516 /*
1517 * set a bogus sector size so the normal read/write
1518 * logic in the block layer will eventually refuse any
1519 * request on this device without tripping over power
1520 * of two sector size assumptions
1521 */
1522 sector_size = 512;
1523 }
James Bottomley7404ad32008-08-31 10:41:52 -05001524 blk_queue_hardsect_size(sdp->request_queue, sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
James Bottomley7404ad32008-08-31 10:41:52 -05001526 {
1527 char cap_str_2[10], cap_str_10[10];
H. Peter Anvin520a2c22008-10-14 11:34:20 -07001528 u64 sz = (u64)sdkp->capacity << ilog2(sector_size);
James Bottomley7404ad32008-08-31 10:41:52 -05001529
1530 string_get_size(sz, STRING_UNITS_2, cap_str_2,
1531 sizeof(cap_str_2));
1532 string_get_size(sz, STRING_UNITS_10, cap_str_10,
1533 sizeof(cap_str_10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Martin K. Petersen70a9b872009-03-09 11:33:31 -04001535 if (sdkp->first_scan || old_capacity != sdkp->capacity)
1536 sd_printk(KERN_NOTICE, sdkp,
1537 "%llu %d-byte hardware sectors: (%s/%s)\n",
1538 (unsigned long long)sdkp->capacity,
1539 sector_size, cap_str_10, cap_str_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
1541
1542 /* Rescale capacity to 512-byte units */
1543 if (sector_size == 4096)
1544 sdkp->capacity <<= 3;
1545 else if (sector_size == 2048)
1546 sdkp->capacity <<= 2;
1547 else if (sector_size == 1024)
1548 sdkp->capacity <<= 1;
1549 else if (sector_size == 256)
1550 sdkp->capacity >>= 1;
1551
1552 sdkp->device->sector_size = sector_size;
1553}
1554
1555/* called with buffer of length 512 */
1556static inline int
James Bottomleyea73a9f2005-08-28 11:33:52 -05001557sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
1558 unsigned char *buffer, int len, struct scsi_mode_data *data,
1559 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
James Bottomleyea73a9f2005-08-28 11:33:52 -05001561 return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
James Bottomley1cf72692005-08-28 11:27:01 -05001562 SD_TIMEOUT, SD_MAX_RETRIES, data,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001563 sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
1566/*
1567 * read write protect setting, if possible - called only in sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001568 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 */
1570static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001571sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001572{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 int res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001574 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 struct scsi_mode_data data;
Martin K. Petersen70a9b872009-03-09 11:33:31 -04001576 int old_wp = sdkp->write_prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 set_disk_ro(sdkp->disk, 0);
James Bottomleyea73a9f2005-08-28 11:33:52 -05001579 if (sdp->skip_ms_page_3f) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001580 sd_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 return;
1582 }
1583
James Bottomleyea73a9f2005-08-28 11:33:52 -05001584 if (sdp->use_192_bytes_for_3f) {
1585 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 } else {
1587 /*
1588 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1589 * We have to start carefully: some devices hang if we ask
1590 * for more than is available.
1591 */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001592 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 /*
1595 * Second attempt: ask for page 0 When only page 0 is
1596 * implemented, a request for page 3F may return Sense Key
1597 * 5: Illegal Request, Sense Code 24: Invalid field in
1598 * CDB.
1599 */
1600 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001601 res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
1603 /*
1604 * Third attempt: ask 255 bytes, as we did earlier.
1605 */
1606 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001607 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
1608 &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 }
1610
1611 if (!scsi_status_is_good(res)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001612 sd_printk(KERN_WARNING, sdkp,
1613 "Test WP failed, assume Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 } else {
1615 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
1616 set_disk_ro(sdkp->disk, sdkp->write_prot);
Martin K. Petersen70a9b872009-03-09 11:33:31 -04001617 if (sdkp->first_scan || old_wp != sdkp->write_prot) {
1618 sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
1619 sdkp->write_prot ? "on" : "off");
1620 sd_printk(KERN_DEBUG, sdkp,
1621 "Mode Sense: %02x %02x %02x %02x\n",
1622 buffer[0], buffer[1], buffer[2], buffer[3]);
1623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 }
1625}
1626
1627/*
1628 * sd_read_cache_type - called only from sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001629 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 */
1631static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001632sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
Al Viro 631e8a12005-05-16 01:59:55 +01001633{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 int len = 0, res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001635 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Al Viro 631e8a12005-05-16 01:59:55 +01001637 int dbd;
1638 int modepage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 struct scsi_mode_data data;
1640 struct scsi_sense_hdr sshdr;
Martin K. Petersen70a9b872009-03-09 11:33:31 -04001641 int old_wce = sdkp->WCE;
1642 int old_rcd = sdkp->RCD;
1643 int old_dpofua = sdkp->DPOFUA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
James Bottomleyea73a9f2005-08-28 11:33:52 -05001645 if (sdp->skip_ms_page_8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 goto defaults;
1647
James Bottomleyea73a9f2005-08-28 11:33:52 -05001648 if (sdp->type == TYPE_RBC) {
Al Viro 631e8a12005-05-16 01:59:55 +01001649 modepage = 6;
1650 dbd = 8;
1651 } else {
1652 modepage = 8;
1653 dbd = 0;
1654 }
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 /* cautiously ask */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001657 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, 4, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 if (!scsi_status_is_good(res))
1660 goto bad_sense;
1661
Al Viro6d73c852006-02-23 02:03:16 +01001662 if (!data.header_length) {
1663 modepage = 6;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001664 sd_printk(KERN_ERR, sdkp, "Missing header in MODE_SENSE response\n");
Al Viro6d73c852006-02-23 02:03:16 +01001665 }
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 /* that went OK, now ask for the proper length */
1668 len = data.length;
1669
1670 /*
1671 * We're only interested in the first three bytes, actually.
1672 * But the data cache page is defined for the first 20.
1673 */
1674 if (len < 3)
1675 goto bad_sense;
1676 if (len > 20)
1677 len = 20;
1678
1679 /* Take headers and block descriptors into account */
1680 len += data.header_length + data.block_descriptor_length;
Al Viro48970802006-02-26 08:34:10 -06001681 if (len > SD_BUF_SIZE)
1682 goto bad_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 /* Get the data */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001685 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687 if (scsi_status_is_good(res)) {
Al Viro 631e8a12005-05-16 01:59:55 +01001688 int offset = data.header_length + data.block_descriptor_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Al Viro48970802006-02-26 08:34:10 -06001690 if (offset >= SD_BUF_SIZE - 2) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001691 sd_printk(KERN_ERR, sdkp, "Malformed MODE SENSE response\n");
Al Viro48970802006-02-26 08:34:10 -06001692 goto defaults;
1693 }
1694
Al Viro 631e8a12005-05-16 01:59:55 +01001695 if ((buffer[offset] & 0x3f) != modepage) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001696 sd_printk(KERN_ERR, sdkp, "Got wrong page\n");
Al Viro 631e8a12005-05-16 01:59:55 +01001697 goto defaults;
1698 }
1699
1700 if (modepage == 8) {
1701 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
1702 sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
1703 } else {
1704 sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
1705 sdkp->RCD = 0;
1706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Tejun Heo007365a2006-01-06 09:53:52 +01001708 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
1709 if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001710 sd_printk(KERN_NOTICE, sdkp,
1711 "Uses READ/WRITE(6), disabling FUA\n");
Tejun Heo007365a2006-01-06 09:53:52 +01001712 sdkp->DPOFUA = 0;
1713 }
1714
Martin K. Petersen70a9b872009-03-09 11:33:31 -04001715 if (sdkp->first_scan || old_wce != sdkp->WCE ||
1716 old_rcd != sdkp->RCD || old_dpofua != sdkp->DPOFUA)
1717 sd_printk(KERN_NOTICE, sdkp,
1718 "Write cache: %s, read cache: %s, %s\n",
1719 sdkp->WCE ? "enabled" : "disabled",
1720 sdkp->RCD ? "disabled" : "enabled",
1721 sdkp->DPOFUA ? "supports DPO and FUA"
1722 : "doesn't support DPO or FUA");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724 return;
1725 }
1726
1727bad_sense:
James Bottomleyea73a9f2005-08-28 11:33:52 -05001728 if (scsi_sense_valid(&sshdr) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 sshdr.sense_key == ILLEGAL_REQUEST &&
1730 sshdr.asc == 0x24 && sshdr.ascq == 0x0)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001731 /* Invalid field in CDB */
1732 sd_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001734 sd_printk(KERN_ERR, sdkp, "Asking for cache data failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736defaults:
Martin K. Petersene73aec82007-02-27 22:40:55 -05001737 sd_printk(KERN_ERR, sdkp, "Assuming drive cache: write through\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 sdkp->WCE = 0;
1739 sdkp->RCD = 0;
Al Viro48970802006-02-26 08:34:10 -06001740 sdkp->DPOFUA = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
1742
Martin K. Petersene0597d72008-07-17 04:28:34 -04001743/*
1744 * The ATO bit indicates whether the DIF application tag is available
1745 * for use by the operating system.
1746 */
1747void sd_read_app_tag_own(struct scsi_disk *sdkp, unsigned char *buffer)
1748{
1749 int res, offset;
1750 struct scsi_device *sdp = sdkp->device;
1751 struct scsi_mode_data data;
1752 struct scsi_sense_hdr sshdr;
1753
1754 if (sdp->type != TYPE_DISK)
1755 return;
1756
1757 if (sdkp->protection_type == 0)
1758 return;
1759
1760 res = scsi_mode_sense(sdp, 1, 0x0a, buffer, 36, SD_TIMEOUT,
1761 SD_MAX_RETRIES, &data, &sshdr);
1762
1763 if (!scsi_status_is_good(res) || !data.header_length ||
1764 data.length < 6) {
1765 sd_printk(KERN_WARNING, sdkp,
1766 "getting Control mode page failed, assume no ATO\n");
1767
1768 if (scsi_sense_valid(&sshdr))
1769 sd_print_sense_hdr(sdkp, &sshdr);
1770
1771 return;
1772 }
1773
1774 offset = data.header_length + data.block_descriptor_length;
1775
1776 if ((buffer[offset] & 0x3f) != 0x0a) {
1777 sd_printk(KERN_ERR, sdkp, "ATO Got wrong page\n");
1778 return;
1779 }
1780
1781 if ((buffer[offset + 5] & 0x80) == 0)
1782 return;
1783
1784 sdkp->ATO = 1;
1785
1786 return;
1787}
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789/**
1790 * sd_revalidate_disk - called the first time a new disk is seen,
1791 * performs disk spin up, read_capacity, etc.
1792 * @disk: struct gendisk we care about
1793 **/
1794static int sd_revalidate_disk(struct gendisk *disk)
1795{
1796 struct scsi_disk *sdkp = scsi_disk(disk);
1797 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 unsigned char *buffer;
Tejun Heo461d4e92006-01-06 09:52:55 +01001799 unsigned ordered;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001801 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp,
1802 "sd_revalidate_disk\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
1804 /*
1805 * If the device is offline, don't try and read capacity or any
1806 * of the other niceties.
1807 */
1808 if (!scsi_device_online(sdp))
1809 goto out;
1810
Bernhard Wallea6123f12007-05-21 17:15:26 +02001811 buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 if (!buffer) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001813 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
1814 "allocation failure.\n");
James Bottomleyea73a9f2005-08-28 11:33:52 -05001815 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 }
1817
Martin K. Petersene73aec82007-02-27 22:40:55 -05001818 sd_spinup_disk(sdkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 /*
1821 * Without media there is no reason to ask; moreover, some devices
1822 * react badly if we do.
1823 */
1824 if (sdkp->media_present) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001825 sd_read_capacity(sdkp, buffer);
1826 sd_read_write_protect_flag(sdkp, buffer);
1827 sd_read_cache_type(sdkp, buffer);
Martin K. Petersene0597d72008-07-17 04:28:34 -04001828 sd_read_app_tag_own(sdkp, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
Tejun Heo461d4e92006-01-06 09:52:55 +01001830
Martin K. Petersen70a9b872009-03-09 11:33:31 -04001831 sdkp->first_scan = 0;
1832
Tejun Heo461d4e92006-01-06 09:52:55 +01001833 /*
1834 * We now have all cache related info, determine how we deal
1835 * with ordered requests. Note that as the current SCSI
1836 * dispatch function can alter request order, we cannot use
1837 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1838 */
1839 if (sdkp->WCE)
Tejun Heo007365a2006-01-06 09:53:52 +01001840 ordered = sdkp->DPOFUA
1841 ? QUEUE_ORDERED_DRAIN_FUA : QUEUE_ORDERED_DRAIN_FLUSH;
Tejun Heo461d4e92006-01-06 09:52:55 +01001842 else
1843 ordered = QUEUE_ORDERED_DRAIN;
1844
1845 blk_queue_ordered(sdkp->disk->queue, ordered, sd_prepare_flush);
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 set_capacity(disk, sdkp->capacity);
1848 kfree(buffer);
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 out:
1851 return 0;
1852}
1853
1854/**
Tejun Heo3e1a7ff2008-08-25 19:56:17 +09001855 * sd_format_disk_name - format disk name
1856 * @prefix: name prefix - ie. "sd" for SCSI disks
1857 * @index: index of the disk to format name for
1858 * @buf: output buffer
1859 * @buflen: length of the output buffer
1860 *
1861 * SCSI disk names starts at sda. The 26th device is sdz and the
1862 * 27th is sdaa. The last one for two lettered suffix is sdzz
1863 * which is followed by sdaaa.
1864 *
1865 * This is basically 26 base counting with one extra 'nil' entry
1866 * at the beggining from the second digit on and can be
1867 * determined using similar method as 26 base conversion with the
1868 * index shifted -1 after each digit is computed.
1869 *
1870 * CONTEXT:
1871 * Don't care.
1872 *
1873 * RETURNS:
1874 * 0 on success, -errno on failure.
1875 */
1876static int sd_format_disk_name(char *prefix, int index, char *buf, int buflen)
1877{
1878 const int base = 'z' - 'a' + 1;
1879 char *begin = buf + strlen(prefix);
1880 char *end = buf + buflen;
1881 char *p;
1882 int unit;
1883
1884 p = end - 1;
1885 *p = '\0';
1886 unit = base;
1887 do {
1888 if (p == begin)
1889 return -EINVAL;
1890 *--p = 'a' + (index % unit);
1891 index = (index / unit) - 1;
1892 } while (index >= 0);
1893
1894 memmove(begin, p, end - p);
1895 memcpy(buf, prefix, strlen(prefix));
1896
1897 return 0;
1898}
1899
Arjan van de Ven4ace92f2009-01-04 05:32:28 -08001900/*
1901 * The asynchronous part of sd_probe
1902 */
1903static void sd_probe_async(void *data, async_cookie_t cookie)
1904{
1905 struct scsi_disk *sdkp = data;
1906 struct scsi_device *sdp;
1907 struct gendisk *gd;
1908 u32 index;
1909 struct device *dev;
1910
1911 sdp = sdkp->device;
1912 gd = sdkp->disk;
1913 index = sdkp->index;
1914 dev = &sdp->sdev_gendev;
1915
1916 if (!sdp->request_queue->rq_timeout) {
1917 if (sdp->type != TYPE_MOD)
1918 blk_queue_rq_timeout(sdp->request_queue, SD_TIMEOUT);
1919 else
1920 blk_queue_rq_timeout(sdp->request_queue,
1921 SD_MOD_TIMEOUT);
1922 }
1923
1924 device_initialize(&sdkp->dev);
1925 sdkp->dev.parent = &sdp->sdev_gendev;
1926 sdkp->dev.class = &sd_disk_class;
Linus Torvaldscd764692009-01-08 16:27:31 -08001927 dev_set_name(&sdkp->dev, dev_name(&sdp->sdev_gendev));
Arjan van de Ven4ace92f2009-01-04 05:32:28 -08001928
1929 if (device_add(&sdkp->dev))
1930 goto out_free_index;
1931
1932 get_device(&sdp->sdev_gendev);
1933
1934 if (index < SD_MAX_DISKS) {
1935 gd->major = sd_major((index & 0xf0) >> 4);
1936 gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
1937 gd->minors = SD_MINORS;
1938 }
1939 gd->fops = &sd_fops;
1940 gd->private_data = &sdkp->driver;
1941 gd->queue = sdkp->device->request_queue;
1942
Martin K. Petersen70a9b872009-03-09 11:33:31 -04001943 /* defaults, until the device tells us otherwise */
1944 sdp->sector_size = 512;
1945 sdkp->capacity = 0;
1946 sdkp->media_present = 1;
1947 sdkp->write_prot = 0;
1948 sdkp->WCE = 0;
1949 sdkp->RCD = 0;
1950 sdkp->ATO = 0;
1951 sdkp->first_scan = 1;
1952
Arjan van de Ven4ace92f2009-01-04 05:32:28 -08001953 sd_revalidate_disk(gd);
1954
1955 blk_queue_prep_rq(sdp->request_queue, sd_prep_fn);
1956
1957 gd->driverfs_dev = &sdp->sdev_gendev;
1958 gd->flags = GENHD_FL_EXT_DEVT | GENHD_FL_DRIVERFS;
1959 if (sdp->removable)
1960 gd->flags |= GENHD_FL_REMOVABLE;
1961
1962 dev_set_drvdata(dev, sdkp);
1963 add_disk(gd);
1964 sd_dif_config_host(sdkp);
1965
1966 sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
1967 sdp->removable ? "removable " : "");
1968
1969 return;
1970
1971 out_free_index:
1972 ida_remove(&sd_index_ida, index);
1973}
1974
Tejun Heo3e1a7ff2008-08-25 19:56:17 +09001975/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 * sd_probe - called during driver initialization and whenever a
1977 * new scsi device is attached to the system. It is called once
1978 * for each scsi device (not just disks) present.
1979 * @dev: pointer to device object
1980 *
1981 * Returns 0 if successful (or not interested in this scsi device
1982 * (e.g. scanner)); 1 when there is an error.
1983 *
1984 * Note: this function is invoked from the scsi mid-level.
1985 * This function sets up the mapping between a given
1986 * <host,channel,id,lun> (found in sdp) and new device name
1987 * (e.g. /dev/sda). More precisely it is the block device major
1988 * and minor number that is chosen here.
1989 *
1990 * Assume sd_attach is not re-entrant (for time being)
1991 * Also think about sd_attach() and sd_remove() running coincidentally.
1992 **/
1993static int sd_probe(struct device *dev)
1994{
1995 struct scsi_device *sdp = to_scsi_device(dev);
1996 struct scsi_disk *sdkp;
1997 struct gendisk *gd;
1998 u32 index;
1999 int error;
2000
2001 error = -ENODEV;
Al Viro 631e8a12005-05-16 01:59:55 +01002002 if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 goto out;
2004
James Bottomley9ccfc752005-10-02 11:45:08 -05002005 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
2006 "sd_attach\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
2008 error = -ENOMEM;
Jes Sorensen24669f752006-01-16 10:31:18 -05002009 sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (!sdkp)
2011 goto out;
2012
Tejun Heo689d6fa2008-08-25 19:56:16 +09002013 gd = alloc_disk(SD_MINORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 if (!gd)
2015 goto out_free;
2016
Tejun Heof27bac22008-07-14 14:59:30 +09002017 do {
2018 if (!ida_pre_get(&sd_index_ida, GFP_KERNEL))
2019 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Tejun Heo4034cc62009-02-21 11:04:45 +09002021 spin_lock(&sd_index_lock);
Tejun Heof27bac22008-07-14 14:59:30 +09002022 error = ida_get_new(&sd_index_ida, &index);
Tejun Heo4034cc62009-02-21 11:04:45 +09002023 spin_unlock(&sd_index_lock);
Tejun Heof27bac22008-07-14 14:59:30 +09002024 } while (error == -EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 if (error)
2027 goto out_put;
2028
Tejun Heo3e1a7ff2008-08-25 19:56:17 +09002029 error = sd_format_disk_name("sd", index, gd->disk_name, DISK_NAME_LEN);
2030 if (error)
Tejun Heof27bac22008-07-14 14:59:30 +09002031 goto out_free_index;
2032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 sdkp->device = sdp;
2034 sdkp->driver = &sd_template;
2035 sdkp->disk = gd;
2036 sdkp->index = index;
2037 sdkp->openers = 0;
Kay Sieversc02e6002008-03-19 13:09:56 +01002038 sdkp->previous_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Arjan van de Ven4ace92f2009-01-04 05:32:28 -08002040 async_schedule(sd_probe_async, sdkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042 return 0;
2043
Tejun Heof27bac22008-07-14 14:59:30 +09002044 out_free_index:
Tejun Heo4034cc62009-02-21 11:04:45 +09002045 spin_lock(&sd_index_lock);
Tejun Heof27bac22008-07-14 14:59:30 +09002046 ida_remove(&sd_index_ida, index);
Tejun Heo4034cc62009-02-21 11:04:45 +09002047 spin_unlock(&sd_index_lock);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06002048 out_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 put_disk(gd);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06002050 out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 kfree(sdkp);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06002052 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 return error;
2054}
2055
2056/**
2057 * sd_remove - called whenever a scsi disk (previously recognized by
2058 * sd_probe) is detached from the system. It is called (potentially
2059 * multiple times) during sd module unload.
2060 * @sdp: pointer to mid level scsi device object
2061 *
2062 * Note: this function is invoked from the scsi mid-level.
2063 * This function potentially frees up a device name (e.g. /dev/sdc)
2064 * that could be re-used by a subsequent sd_probe().
2065 * This function is not called when the built-in sd driver is "exit-ed".
2066 **/
2067static int sd_remove(struct device *dev)
2068{
2069 struct scsi_disk *sdkp = dev_get_drvdata(dev);
2070
Tony Jonesee959b02008-02-22 00:13:36 +01002071 device_del(&sdkp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 del_gendisk(sdkp->disk);
2073 sd_shutdown(dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -05002074
Arjan van de Ven0b950672006-01-11 13:16:10 +01002075 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -05002076 dev_set_drvdata(dev, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01002077 put_device(&sdkp->dev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01002078 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 return 0;
2081}
2082
2083/**
2084 * scsi_disk_release - Called to free the scsi_disk structure
Tony Jonesee959b02008-02-22 00:13:36 +01002085 * @dev: pointer to embedded class device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 *
Arjan van de Ven0b950672006-01-11 13:16:10 +01002087 * sd_ref_mutex must be held entering this routine. Because it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 * called on last put, you should always use the scsi_disk_get()
2089 * scsi_disk_put() helpers which manipulate the semaphore directly
Tony Jonesee959b02008-02-22 00:13:36 +01002090 * and never do a direct put_device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 **/
Tony Jonesee959b02008-02-22 00:13:36 +01002092static void scsi_disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
Tony Jonesee959b02008-02-22 00:13:36 +01002094 struct scsi_disk *sdkp = to_scsi_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 struct gendisk *disk = sdkp->disk;
2096
Tejun Heo4034cc62009-02-21 11:04:45 +09002097 spin_lock(&sd_index_lock);
Tejun Heof27bac22008-07-14 14:59:30 +09002098 ida_remove(&sd_index_ida, sdkp->index);
Tejun Heo4034cc62009-02-21 11:04:45 +09002099 spin_unlock(&sd_index_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 disk->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 put_disk(disk);
Alan Stern39b7f1e2005-11-04 14:44:41 -05002103 put_device(&sdkp->device->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 kfree(sdkp);
2106}
2107
James Bottomleycc5d2c82007-03-20 12:26:03 -05002108static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
Tejun Heoc3c94c52007-03-21 00:13:59 +09002109{
2110 unsigned char cmd[6] = { START_STOP }; /* START_VALID */
2111 struct scsi_sense_hdr sshdr;
James Bottomleycc5d2c82007-03-20 12:26:03 -05002112 struct scsi_device *sdp = sdkp->device;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002113 int res;
2114
2115 if (start)
2116 cmd[4] |= 1; /* START */
2117
Stefan Richterd2886ea2008-05-11 00:34:07 +02002118 if (sdp->start_stop_pwr_cond)
2119 cmd[4] |= start ? 1 << 4 : 3 << 4; /* Active or Standby */
2120
Tejun Heoc3c94c52007-03-21 00:13:59 +09002121 if (!scsi_device_online(sdp))
2122 return -ENODEV;
2123
2124 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09002125 SD_TIMEOUT, SD_MAX_RETRIES, NULL);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002126 if (res) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05002127 sd_printk(KERN_WARNING, sdkp, "START_STOP FAILED\n");
2128 sd_print_result(sdkp, res);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002129 if (driver_byte(res) & DRIVER_SENSE)
James Bottomleycc5d2c82007-03-20 12:26:03 -05002130 sd_print_sense_hdr(sdkp, &sshdr);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002131 }
2132
2133 return res;
2134}
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136/*
2137 * Send a SYNCHRONIZE CACHE instruction down to the device through
2138 * the normal SCSI command structure. Wait for the command to
2139 * complete.
2140 */
2141static void sd_shutdown(struct device *dev)
2142{
Alan Stern39b7f1e2005-11-04 14:44:41 -05002143 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 if (!sdkp)
2146 return; /* this can happen */
2147
Alan Stern39b7f1e2005-11-04 14:44:41 -05002148 if (sdkp->WCE) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05002149 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
2150 sd_sync_cache(sdkp);
Alan Stern39b7f1e2005-11-04 14:44:41 -05002151 }
Tejun Heoc3c94c52007-03-21 00:13:59 +09002152
James Bottomleycc5d2c82007-03-20 12:26:03 -05002153 if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) {
2154 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
2155 sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002156 }
2157
Alan Stern39b7f1e2005-11-04 14:44:41 -05002158 scsi_disk_put(sdkp);
2159}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Tejun Heoc3c94c52007-03-21 00:13:59 +09002161static int sd_suspend(struct device *dev, pm_message_t mesg)
2162{
Tejun Heoc3c94c52007-03-21 00:13:59 +09002163 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04002164 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002165
2166 if (!sdkp)
2167 return 0; /* this can happen */
2168
2169 if (sdkp->WCE) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05002170 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
Tejun Heoc3c94c52007-03-21 00:13:59 +09002171 ret = sd_sync_cache(sdkp);
2172 if (ret)
Alan Stern09ff92f2007-05-21 09:55:04 -04002173 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002174 }
2175
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01002176 if ((mesg.event & PM_EVENT_SLEEP) && sdkp->device->manage_start_stop) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05002177 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
2178 ret = sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002179 }
2180
Alan Stern09ff92f2007-05-21 09:55:04 -04002181done:
2182 scsi_disk_put(sdkp);
2183 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002184}
2185
2186static int sd_resume(struct device *dev)
2187{
Tejun Heoc3c94c52007-03-21 00:13:59 +09002188 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04002189 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002190
James Bottomleycc5d2c82007-03-20 12:26:03 -05002191 if (!sdkp->device->manage_start_stop)
Alan Stern09ff92f2007-05-21 09:55:04 -04002192 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002193
James Bottomleycc5d2c82007-03-20 12:26:03 -05002194 sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
Alan Stern09ff92f2007-05-21 09:55:04 -04002195 ret = sd_start_stop_device(sdkp, 1);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002196
Alan Stern09ff92f2007-05-21 09:55:04 -04002197done:
2198 scsi_disk_put(sdkp);
2199 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002200}
2201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202/**
2203 * init_sd - entry point for this driver (both when built in or when
2204 * a module).
2205 *
2206 * Note: this function registers this driver with the scsi mid-level.
2207 **/
2208static int __init init_sd(void)
2209{
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002210 int majors = 0, i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
2212 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
2213
2214 for (i = 0; i < SD_MAJORS; i++)
2215 if (register_blkdev(sd_major(i), "sd") == 0)
2216 majors++;
2217
2218 if (!majors)
2219 return -ENODEV;
2220
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002221 err = class_register(&sd_disk_class);
2222 if (err)
2223 goto err_out;
James Bottomley6bdaa1f2006-03-18 14:14:21 -06002224
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002225 err = scsi_register_driver(&sd_template.gendrv);
2226 if (err)
2227 goto err_out_class;
2228
2229 return 0;
2230
2231err_out_class:
2232 class_unregister(&sd_disk_class);
2233err_out:
2234 for (i = 0; i < SD_MAJORS; i++)
2235 unregister_blkdev(sd_major(i), "sd");
2236 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237}
2238
2239/**
2240 * exit_sd - exit point for this driver (when it is a module).
2241 *
2242 * Note: this function unregisters this driver from the scsi mid-level.
2243 **/
2244static void __exit exit_sd(void)
2245{
2246 int i;
2247
2248 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
2249
2250 scsi_unregister_driver(&sd_template.gendrv);
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002251 class_unregister(&sd_disk_class);
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 for (i = 0; i < SD_MAJORS; i++)
2254 unregister_blkdev(sd_major(i), "sd");
2255}
2256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257module_init(init_sd);
2258module_exit(exit_sd);
Martin K. Petersene73aec82007-02-27 22:40:55 -05002259
2260static void sd_print_sense_hdr(struct scsi_disk *sdkp,
2261 struct scsi_sense_hdr *sshdr)
2262{
2263 sd_printk(KERN_INFO, sdkp, "");
2264 scsi_show_sense_hdr(sshdr);
2265 sd_printk(KERN_INFO, sdkp, "");
2266 scsi_show_extd_sense(sshdr->asc, sshdr->ascq);
2267}
2268
2269static void sd_print_result(struct scsi_disk *sdkp, int result)
2270{
2271 sd_printk(KERN_INFO, sdkp, "");
2272 scsi_show_result(result);
2273}
2274