blob: e035c11140104c1db29bdf5fa1f9664e5a9dabb3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sd.c Copyright (C) 1992 Drew Eckhardt
3 * Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale
4 *
5 * Linux scsi disk driver
6 * Initial versions: Drew Eckhardt
7 * Subsequent revisions: Eric Youngdale
8 * Modification history:
9 * - Drew Eckhardt <drew@colorado.edu> original
10 * - Eric Youngdale <eric@andante.org> add scatter-gather, multiple
11 * outstanding request, and other enhancements.
12 * Support loadable low-level scsi drivers.
13 * - Jirka Hanika <geo@ff.cuni.cz> support more scsi disks using
14 * eight major numbers.
15 * - Richard Gooch <rgooch@atnf.csiro.au> support devfs.
16 * - Torben Mathiasen <tmm@image.dk> Resource allocation fixes in
17 * sd_init and cleanups.
18 * - Alex Davis <letmein@erols.com> Fix problem where partition info
19 * not being read in sd_open. Fix problem where removable media
20 * could be ejected after sd_open.
21 * - Douglas Gilbert <dgilbert@interlog.com> cleanup for lk 2.5.x
22 * - Badari Pulavarty <pbadari@us.ibm.com>, Matthew Wilcox
23 * <willy@debian.org>, Kurt Garloff <garloff@suse.de>:
24 * Support 32k/1M disks.
25 *
26 * Logging policy (needs CONFIG_SCSI_LOGGING defined):
27 * - setting up transfer: SCSI_LOG_HLQUEUE levels 1 and 2
28 * - end of transfer (bh + scsi_lib): SCSI_LOG_HLCOMPLETE level 1
29 * - entering sd_ioctl: SCSI_LOG_IOCTL level 1
30 * - entering other commands: SCSI_LOG_HLQUEUE level 3
31 * Note: when the logging level is set by the user, it must be greater
32 * than the level indicated above to trigger output.
33 */
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/module.h>
36#include <linux/fs.h>
37#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/mm.h>
39#include <linux/bio.h>
40#include <linux/genhd.h>
41#include <linux/hdreg.h>
42#include <linux/errno.h>
43#include <linux/idr.h>
44#include <linux/interrupt.h>
45#include <linux/init.h>
46#include <linux/blkdev.h>
47#include <linux/blkpg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/delay.h>
Arjan van de Ven0b950672006-01-11 13:16:10 +010049#include <linux/mutex.h>
James Bottomley7404ad3b2008-08-31 10:41:52 -050050#include <linux/string_helpers.h>
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 Heof27bac22008-07-14 14:59:30 +0900110static DEFINE_IDA(sd_index_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112/* This semaphore is used to mediate the 0->1 reference get in the
113 * face of object destruction (i.e. we can't allow a get on an
114 * object after last put) */
Arjan van de Ven0b950672006-01-11 13:16:10 +0100115static DEFINE_MUTEX(sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600117static const char *sd_cache_types[] = {
118 "write through", "none", "write back",
119 "write back, no read (daft)"
120};
121
Tony Jonesee959b02008-02-22 00:13:36 +0100122static ssize_t
123sd_store_cache_type(struct device *dev, struct device_attribute *attr,
124 const char *buf, size_t count)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600125{
126 int i, ct = -1, rcd, wce, sp;
Tony Jonesee959b02008-02-22 00:13:36 +0100127 struct scsi_disk *sdkp = to_scsi_disk(dev);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600128 struct scsi_device *sdp = sdkp->device;
129 char buffer[64];
130 char *buffer_data;
131 struct scsi_mode_data data;
132 struct scsi_sense_hdr sshdr;
133 int len;
134
135 if (sdp->type != TYPE_DISK)
136 /* no cache control on RBC devices; theoretically they
137 * can do it, but there's probably so many exceptions
138 * it's not worth the risk */
139 return -EINVAL;
140
Tobias Klauser6391a112006-06-08 22:23:48 -0700141 for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600142 const int len = strlen(sd_cache_types[i]);
143 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
144 buf[len] == '\n') {
145 ct = i;
146 break;
147 }
148 }
149 if (ct < 0)
150 return -EINVAL;
151 rcd = ct & 0x01 ? 1 : 0;
152 wce = ct & 0x02 ? 1 : 0;
153 if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
154 SD_MAX_RETRIES, &data, NULL))
155 return -EINVAL;
Andrew Mortona9312fb2006-03-25 03:08:30 -0800156 len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600157 data.block_descriptor_length);
158 buffer_data = buffer + data.header_length +
159 data.block_descriptor_length;
160 buffer_data[2] &= ~0x05;
161 buffer_data[2] |= wce << 2 | rcd;
162 sp = buffer_data[0] & 0x80 ? 1 : 0;
163
164 if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
165 SD_MAX_RETRIES, &data, &sshdr)) {
166 if (scsi_sense_valid(&sshdr))
Martin K. Petersene73aec82007-02-27 22:40:55 -0500167 sd_print_sense_hdr(sdkp, &sshdr);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600168 return -EINVAL;
169 }
Andrew Pattersonf98a8ca2008-09-04 14:27:35 -0600170 revalidate_disk(sdkp->disk);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600171 return count;
172}
173
Tony Jonesee959b02008-02-22 00:13:36 +0100174static ssize_t
175sd_store_manage_start_stop(struct device *dev, struct device_attribute *attr,
176 const char *buf, size_t count)
Tejun Heoc3c94c52007-03-21 00:13:59 +0900177{
Tony Jonesee959b02008-02-22 00:13:36 +0100178 struct scsi_disk *sdkp = to_scsi_disk(dev);
Tejun Heoc3c94c52007-03-21 00:13:59 +0900179 struct scsi_device *sdp = sdkp->device;
180
181 if (!capable(CAP_SYS_ADMIN))
182 return -EACCES;
183
184 sdp->manage_start_stop = simple_strtoul(buf, NULL, 10);
185
186 return count;
187}
188
Tony Jonesee959b02008-02-22 00:13:36 +0100189static ssize_t
190sd_store_allow_restart(struct device *dev, struct device_attribute *attr,
191 const char *buf, size_t count)
Brian Kinga144c5a2006-06-27 11:10:31 -0500192{
Tony Jonesee959b02008-02-22 00:13:36 +0100193 struct scsi_disk *sdkp = to_scsi_disk(dev);
Brian Kinga144c5a2006-06-27 11:10:31 -0500194 struct scsi_device *sdp = sdkp->device;
195
196 if (!capable(CAP_SYS_ADMIN))
197 return -EACCES;
198
199 if (sdp->type != TYPE_DISK)
200 return -EINVAL;
201
202 sdp->allow_restart = simple_strtoul(buf, NULL, 10);
203
204 return count;
205}
206
Tony Jonesee959b02008-02-22 00:13:36 +0100207static ssize_t
208sd_show_cache_type(struct device *dev, struct device_attribute *attr,
209 char *buf)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600210{
Tony Jonesee959b02008-02-22 00:13:36 +0100211 struct scsi_disk *sdkp = to_scsi_disk(dev);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600212 int ct = sdkp->RCD + 2*sdkp->WCE;
213
214 return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
215}
216
Tony Jonesee959b02008-02-22 00:13:36 +0100217static ssize_t
218sd_show_fua(struct device *dev, struct device_attribute *attr, char *buf)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600219{
Tony Jonesee959b02008-02-22 00:13:36 +0100220 struct scsi_disk *sdkp = to_scsi_disk(dev);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600221
222 return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
223}
224
Tony Jonesee959b02008-02-22 00:13:36 +0100225static ssize_t
226sd_show_manage_start_stop(struct device *dev, struct device_attribute *attr,
227 char *buf)
Tejun Heoc3c94c52007-03-21 00:13:59 +0900228{
Tony Jonesee959b02008-02-22 00:13:36 +0100229 struct scsi_disk *sdkp = to_scsi_disk(dev);
Tejun Heoc3c94c52007-03-21 00:13:59 +0900230 struct scsi_device *sdp = sdkp->device;
231
232 return snprintf(buf, 20, "%u\n", sdp->manage_start_stop);
233}
234
Tony Jonesee959b02008-02-22 00:13:36 +0100235static ssize_t
236sd_show_allow_restart(struct device *dev, struct device_attribute *attr,
237 char *buf)
Brian Kinga144c5a2006-06-27 11:10:31 -0500238{
Tony Jonesee959b02008-02-22 00:13:36 +0100239 struct scsi_disk *sdkp = to_scsi_disk(dev);
Brian Kinga144c5a2006-06-27 11:10:31 -0500240
241 return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
242}
243
Martin K. Petersene0597d72008-07-17 04:28:34 -0400244static ssize_t
245sd_show_protection_type(struct device *dev, struct device_attribute *attr,
246 char *buf)
247{
248 struct scsi_disk *sdkp = to_scsi_disk(dev);
249
250 return snprintf(buf, 20, "%u\n", sdkp->protection_type);
251}
252
253static ssize_t
254sd_show_app_tag_own(struct device *dev, struct device_attribute *attr,
255 char *buf)
256{
257 struct scsi_disk *sdkp = to_scsi_disk(dev);
258
259 return snprintf(buf, 20, "%u\n", sdkp->ATO);
260}
261
Tony Jonesee959b02008-02-22 00:13:36 +0100262static struct device_attribute sd_disk_attrs[] = {
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600263 __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
264 sd_store_cache_type),
265 __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
Brian Kinga144c5a2006-06-27 11:10:31 -0500266 __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
267 sd_store_allow_restart),
Tejun Heoc3c94c52007-03-21 00:13:59 +0900268 __ATTR(manage_start_stop, S_IRUGO|S_IWUSR, sd_show_manage_start_stop,
269 sd_store_manage_start_stop),
Martin K. Petersene0597d72008-07-17 04:28:34 -0400270 __ATTR(protection_type, S_IRUGO, sd_show_protection_type, NULL),
271 __ATTR(app_tag_own, S_IRUGO, sd_show_app_tag_own, NULL),
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600272 __ATTR_NULL,
273};
274
275static struct class sd_disk_class = {
276 .name = "scsi_disk",
277 .owner = THIS_MODULE,
Tony Jonesee959b02008-02-22 00:13:36 +0100278 .dev_release = scsi_disk_release,
279 .dev_attrs = sd_disk_attrs,
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600280};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282static struct scsi_driver sd_template = {
283 .owner = THIS_MODULE,
284 .gendrv = {
285 .name = "sd",
286 .probe = sd_probe,
287 .remove = sd_remove,
Tejun Heoc3c94c52007-03-21 00:13:59 +0900288 .suspend = sd_suspend,
289 .resume = sd_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 .shutdown = sd_shutdown,
291 },
292 .rescan = sd_rescan,
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800293 .done = sd_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294};
295
296/*
297 * Device no to disk mapping:
298 *
299 * major disc2 disc p1
300 * |............|.............|....|....| <- dev_t
301 * 31 20 19 8 7 4 3 0
302 *
303 * Inside a major, we have 16k disks, however mapped non-
304 * contiguously. The first 16 disks are for major0, the next
305 * ones with major1, ... Disk 256 is for major0 again, disk 272
306 * for major1, ...
307 * As we stay compatible with our numbering scheme, we can reuse
308 * the well-know SCSI majors 8, 65--71, 136--143.
309 */
310static int sd_major(int major_idx)
311{
312 switch (major_idx) {
313 case 0:
314 return SCSI_DISK0_MAJOR;
315 case 1 ... 7:
316 return SCSI_DISK1_MAJOR + major_idx - 1;
317 case 8 ... 15:
318 return SCSI_DISK8_MAJOR + major_idx - 8;
319 default:
320 BUG();
321 return 0; /* shut up gcc */
322 }
323}
324
Alan Stern39b7f1e2005-11-04 14:44:41 -0500325static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct scsi_disk *sdkp = NULL;
328
Alan Stern39b7f1e2005-11-04 14:44:41 -0500329 if (disk->private_data) {
330 sdkp = scsi_disk(disk);
331 if (scsi_device_get(sdkp->device) == 0)
Tony Jonesee959b02008-02-22 00:13:36 +0100332 get_device(&sdkp->dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500333 else
334 sdkp = NULL;
335 }
336 return sdkp;
337}
338
339static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
340{
341 struct scsi_disk *sdkp;
342
Arjan van de Ven0b950672006-01-11 13:16:10 +0100343 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500344 sdkp = __scsi_disk_get(disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100345 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return sdkp;
Alan Stern39b7f1e2005-11-04 14:44:41 -0500347}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Alan Stern39b7f1e2005-11-04 14:44:41 -0500349static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
350{
351 struct scsi_disk *sdkp;
352
Arjan van de Ven0b950672006-01-11 13:16:10 +0100353 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500354 sdkp = dev_get_drvdata(dev);
355 if (sdkp)
356 sdkp = __scsi_disk_get(sdkp->disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100357 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return sdkp;
359}
360
361static void scsi_disk_put(struct scsi_disk *sdkp)
362{
363 struct scsi_device *sdev = sdkp->device;
364
Arjan van de Ven0b950672006-01-11 13:16:10 +0100365 mutex_lock(&sd_ref_mutex);
Tony Jonesee959b02008-02-22 00:13:36 +0100366 put_device(&sdkp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 scsi_device_put(sdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100368 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
371/**
372 * sd_init_command - build a scsi (read or write) command from
373 * information in the request structure.
374 * @SCpnt: pointer to mid-level's per scsi command structure that
375 * contains request and into which the scsi command is written
376 *
377 * Returns 1 if successful and 0 if error (or cannot be done now).
378 **/
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500379static int sd_prep_fn(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500381 struct scsi_cmnd *SCpnt;
382 struct scsi_device *sdp = q->queuedata;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100383 struct gendisk *disk = rq->rq_disk;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400384 struct scsi_disk *sdkp;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100385 sector_t block = rq->sector;
Linus Torvalds18351072008-08-05 21:42:21 -0700386 sector_t threshold;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500387 unsigned int this_count = rq->nr_sectors;
Martin K. Petersenbd623e72008-09-19 18:47:19 -0400388 int ret, host_dif;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500389
390 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
391 ret = scsi_setup_blk_pc_cmnd(sdp, rq);
392 goto out;
393 } else if (rq->cmd_type != REQ_TYPE_FS) {
394 ret = BLKPREP_KILL;
395 goto out;
396 }
397 ret = scsi_setup_fs_cmnd(sdp, rq);
398 if (ret != BLKPREP_OK)
399 goto out;
400 SCpnt = rq->special;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400401 sdkp = scsi_disk(disk);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500402
403 /* from here on until we're complete, any goto out
404 * is used for a killable error condition */
405 ret = BLKPREP_KILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500407 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
408 "sd_init_command: block=%llu, "
409 "count=%d\n",
410 (unsigned long long)block,
411 this_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 if (!sdp || !scsi_device_online(sdp) ||
414 block + rq->nr_sectors > get_capacity(disk)) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500415 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
416 "Finishing %ld sectors\n",
417 rq->nr_sectors));
418 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
419 "Retry with 0x%p\n", SCpnt));
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500420 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
423 if (sdp->changed) {
424 /*
425 * quietly refuse to do anything to a changed disc until
426 * the changed bit has been reset
427 */
428 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500429 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500431
Hans de Goedea0899d42008-01-20 11:12:26 +0100432 /*
Linus Torvalds18351072008-08-05 21:42:21 -0700433 * Some SD card readers can't handle multi-sector accesses which touch
434 * the last one or two hardware sectors. Split accesses as needed.
Hans de Goedea0899d42008-01-20 11:12:26 +0100435 */
Linus Torvalds18351072008-08-05 21:42:21 -0700436 threshold = get_capacity(disk) - SD_LAST_BUGGY_SECTORS *
437 (sdp->sector_size / 512);
438
439 if (unlikely(sdp->last_sector_bug && block + this_count > threshold)) {
440 if (block < threshold) {
441 /* Access up to the threshold but not beyond */
442 this_count = threshold - block;
443 } else {
444 /* Access only a single hardware sector */
445 this_count = sdp->sector_size / 512;
446 }
447 }
Hans de Goedea0899d42008-01-20 11:12:26 +0100448
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500449 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, "block=%llu\n",
450 (unsigned long long)block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 /*
453 * If we have a 1K hardware sectorsize, prevent access to single
454 * 512 byte sectors. In theory we could handle this - in fact
455 * the scsi cdrom driver must be able to handle this because
456 * we typically use 1K blocksizes, and cdroms typically have
457 * 2K hardware sectorsizes. Of course, things are simpler
458 * with the cdrom, since it is read-only. For performance
459 * reasons, the filesystems should be able to handle this
460 * and not force the scsi disk driver to use bounce buffers
461 * for this.
462 */
463 if (sdp->sector_size == 1024) {
464 if ((block & 1) || (rq->nr_sectors & 1)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500465 scmd_printk(KERN_ERR, SCpnt,
466 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500467 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 } else {
469 block = block >> 1;
470 this_count = this_count >> 1;
471 }
472 }
473 if (sdp->sector_size == 2048) {
474 if ((block & 3) || (rq->nr_sectors & 3)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500475 scmd_printk(KERN_ERR, SCpnt,
476 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500477 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 } else {
479 block = block >> 2;
480 this_count = this_count >> 2;
481 }
482 }
483 if (sdp->sector_size == 4096) {
484 if ((block & 7) || (rq->nr_sectors & 7)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500485 scmd_printk(KERN_ERR, SCpnt,
486 "Bad block number requested\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500487 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 } else {
489 block = block >> 3;
490 this_count = this_count >> 3;
491 }
492 }
493 if (rq_data_dir(rq) == WRITE) {
494 if (!sdp->writeable) {
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500495 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497 SCpnt->cmnd[0] = WRITE_6;
498 SCpnt->sc_data_direction = DMA_TO_DEVICE;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400499
500 if (blk_integrity_rq(rq) &&
501 sd_dif_prepare(rq, block, sdp->sector_size) == -EIO)
502 goto out;
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 } else if (rq_data_dir(rq) == READ) {
505 SCpnt->cmnd[0] = READ_6;
506 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
507 } else {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500508 scmd_printk(KERN_ERR, SCpnt, "Unknown command %x\n", rq->cmd_flags);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500509 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500512 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
513 "%s %d/%ld 512 byte blocks.\n",
514 (rq_data_dir(rq) == WRITE) ?
515 "writing" : "reading", this_count,
516 rq->nr_sectors));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400518 /* Set RDPROTECT/WRPROTECT if disk is formatted with DIF */
Martin K. Petersenbd623e72008-09-19 18:47:19 -0400519 host_dif = scsi_host_dif_capable(sdp->host, sdkp->protection_type);
520 if (host_dif)
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400521 SCpnt->cmnd[1] = 1 << 5;
522 else
523 SCpnt->cmnd[1] = 0;
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (block > 0xffffffff) {
526 SCpnt->cmnd[0] += READ_16 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100527 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
529 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
530 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
531 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
532 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
533 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
534 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
535 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
536 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
537 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
538 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
539 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
540 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
541 } else if ((this_count > 0xff) || (block > 0x1fffff) ||
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400542 scsi_device_protection(SCpnt->device) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 SCpnt->device->use_10_for_rw) {
544 if (this_count > 0xffff)
545 this_count = 0xffff;
546
547 SCpnt->cmnd[0] += READ_10 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100548 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
550 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
551 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
552 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
553 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
554 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
555 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
556 } else {
Tejun Heo007365a2006-01-06 09:53:52 +0100557 if (unlikely(blk_fua_rq(rq))) {
558 /*
559 * This happens only if this drive failed
560 * 10byte rw command with ILLEGAL_REQUEST
561 * during operation and thus turned off
562 * use_10_for_rw.
563 */
Martin K. Petersene73aec82007-02-27 22:40:55 -0500564 scmd_printk(KERN_ERR, SCpnt,
565 "FUA write on READ/WRITE(6) drive\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500566 goto out;
Tejun Heo007365a2006-01-06 09:53:52 +0100567 }
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
570 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
571 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
572 SCpnt->cmnd[4] = (unsigned char) this_count;
573 SCpnt->cmnd[5] = 0;
574 }
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200575 SCpnt->sdb.length = this_count * sdp->sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400577 /* If DIF or DIX is enabled, tell HBA how to handle request */
Martin K. Petersenbd623e72008-09-19 18:47:19 -0400578 if (host_dif || scsi_prot_sg_count(SCpnt))
Martin K. Petersen9e066882008-09-19 18:47:21 -0400579 sd_dif_op(SCpnt, host_dif, scsi_prot_sg_count(SCpnt),
580 sdkp->protection_type);
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /*
583 * We shouldn't disconnect in the middle of a sector, so with a dumb
584 * host adapter, it's safe to assume that we can at least transfer
585 * this many bytes between each connect / disconnect.
586 */
587 SCpnt->transfersize = sdp->sector_size;
588 SCpnt->underflow = this_count << 9;
589 SCpnt->allowed = SD_MAX_RETRIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 * This indicates that the command is ready from our end to be
593 * queued.
594 */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500595 ret = BLKPREP_OK;
596 out:
597 return scsi_prep_return(q, rq, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600/**
601 * sd_open - open a scsi disk device
602 * @inode: only i_rdev member may be used
603 * @filp: only f_mode and f_flags may be used
604 *
605 * Returns 0 if successful. Returns a negated errno value in case
606 * of error.
607 *
608 * Note: This can be called from a user context (e.g. fsck(1) )
609 * or from within the kernel (e.g. as a result of a mount(1) ).
610 * In the latter case @inode and @filp carry an abridged amount
611 * of information as noted above.
612 **/
Al Viro0338e292008-03-02 10:41:04 -0500613static int sd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Al Viro0338e292008-03-02 10:41:04 -0500615 struct scsi_disk *sdkp = scsi_disk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 struct scsi_device *sdev;
617 int retval;
618
Al Viro0338e292008-03-02 10:41:04 -0500619 if (!sdkp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return -ENXIO;
621
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500622 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_open\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 sdev = sdkp->device;
625
626 /*
627 * If the device is in error recovery, wait until it is done.
628 * If the device is offline, then disallow any access to it.
629 */
630 retval = -ENXIO;
631 if (!scsi_block_when_processing_errors(sdev))
632 goto error_out;
633
634 if (sdev->removable || sdkp->write_prot)
Al Viro0338e292008-03-02 10:41:04 -0500635 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 /*
638 * If the drive is empty, just let the open fail.
639 */
640 retval = -ENOMEDIUM;
Al Viro0338e292008-03-02 10:41:04 -0500641 if (sdev->removable && !sdkp->media_present && !(mode & FMODE_NDELAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 goto error_out;
643
644 /*
645 * If the device has the write protect tab set, have the open fail
646 * if the user expects to be able to write to the thing.
647 */
648 retval = -EROFS;
Al Viro0338e292008-03-02 10:41:04 -0500649 if (sdkp->write_prot && (mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 goto error_out;
651
652 /*
653 * It is possible that the disk changing stuff resulted in
654 * the device being taken offline. If this is the case,
655 * report this to the user, and don't pretend that the
656 * open actually succeeded.
657 */
658 retval = -ENXIO;
659 if (!scsi_device_online(sdev))
660 goto error_out;
661
662 if (!sdkp->openers++ && sdev->removable) {
663 if (scsi_block_when_processing_errors(sdev))
664 scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
665 }
666
667 return 0;
668
669error_out:
670 scsi_disk_put(sdkp);
671 return retval;
672}
673
674/**
675 * sd_release - invoked when the (last) close(2) is called on this
676 * scsi disk.
677 * @inode: only i_rdev member may be used
678 * @filp: only f_mode and f_flags may be used
679 *
680 * Returns 0.
681 *
682 * Note: may block (uninterruptible) if error recovery is underway
683 * on this disk.
684 **/
Al Viro0338e292008-03-02 10:41:04 -0500685static int sd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 struct scsi_disk *sdkp = scsi_disk(disk);
688 struct scsi_device *sdev = sdkp->device;
689
James Bottomley56937f72007-03-11 12:25:33 -0500690 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_release\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 if (!--sdkp->openers && sdev->removable) {
693 if (scsi_block_when_processing_errors(sdev))
694 scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
695 }
696
697 /*
698 * XXX and what if there are packets in flight and this close()
699 * XXX is followed by a "rmmod sd_mod"?
700 */
701 scsi_disk_put(sdkp);
702 return 0;
703}
704
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800705static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
707 struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
708 struct scsi_device *sdp = sdkp->device;
709 struct Scsi_Host *host = sdp->host;
710 int diskinfo[4];
711
712 /* default to most commonly used values */
713 diskinfo[0] = 0x40; /* 1 << 6 */
714 diskinfo[1] = 0x20; /* 1 << 5 */
715 diskinfo[2] = sdkp->capacity >> 11;
716
717 /* override with calculated, extended default, or driver values */
718 if (host->hostt->bios_param)
719 host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
720 else
721 scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
722
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800723 geo->heads = diskinfo[0];
724 geo->sectors = diskinfo[1];
725 geo->cylinders = diskinfo[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return 0;
727}
728
729/**
730 * sd_ioctl - process an ioctl
731 * @inode: only i_rdev/i_bdev members may be used
732 * @filp: only f_mode and f_flags may be used
733 * @cmd: ioctl command number
734 * @arg: this is third argument given to ioctl(2) system call.
735 * Often contains a pointer.
736 *
737 * Returns 0 if successful (some ioctls return postive numbers on
738 * success as well). Returns a negated errno value in case of error.
739 *
740 * Note: most ioctls are forward onto the block subsystem or further
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200741 * down in the scsi subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 **/
Al Viro0338e292008-03-02 10:41:04 -0500743static int sd_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 unsigned int cmd, unsigned long arg)
745{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 struct gendisk *disk = bdev->bd_disk;
747 struct scsi_device *sdp = scsi_disk(disk)->device;
748 void __user *p = (void __user *)arg;
749 int error;
750
751 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
752 disk->disk_name, cmd));
753
754 /*
755 * If we are in the middle of error recovery, don't let anyone
756 * else try and use this device. Also, if error recovery fails, it
757 * may try and take the device offline, in which case all further
758 * access to the device is prohibited.
759 */
Al Viro83ff6fe2008-03-02 08:15:49 -0500760 error = scsi_nonblockable_ioctl(sdp, cmd, p,
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +0100761 (mode & FMODE_NDELAY) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (!scsi_block_when_processing_errors(sdp) || !error)
763 return error;
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 /*
766 * Send SCSI addressing ioctls directly to mid level, send other
767 * ioctls to block level and then onto mid level if they can't be
768 * resolved.
769 */
770 switch (cmd) {
771 case SCSI_IOCTL_GET_IDLUN:
772 case SCSI_IOCTL_GET_BUS_NUMBER:
773 return scsi_ioctl(sdp, cmd, p);
774 default:
Al Viro0338e292008-03-02 10:41:04 -0500775 error = scsi_cmd_ioctl(disk->queue, disk, mode, cmd, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (error != -ENOTTY)
777 return error;
778 }
779 return scsi_ioctl(sdp, cmd, p);
780}
781
782static void set_media_not_present(struct scsi_disk *sdkp)
783{
784 sdkp->media_present = 0;
785 sdkp->capacity = 0;
786 sdkp->device->changed = 1;
787}
788
789/**
790 * sd_media_changed - check if our medium changed
791 * @disk: kernel device descriptor
792 *
793 * Returns 0 if not applicable or no change; 1 if change
794 *
795 * Note: this function is invoked from the block subsystem.
796 **/
797static int sd_media_changed(struct gendisk *disk)
798{
799 struct scsi_disk *sdkp = scsi_disk(disk);
800 struct scsi_device *sdp = sdkp->device;
James Bottomley001aac22007-12-02 19:10:40 +0200801 struct scsi_sense_hdr *sshdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 int retval;
803
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -0500804 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_media_changed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 if (!sdp->removable)
807 return 0;
808
809 /*
810 * If the device is offline, don't send any commands - just pretend as
811 * if the command failed. If the device ever comes back online, we
812 * can deal with it then. It is only because of unrecoverable errors
813 * that we would ever take a device offline in the first place.
814 */
Kay Sievers285e9672007-08-14 14:10:39 +0200815 if (!scsi_device_online(sdp)) {
816 set_media_not_present(sdkp);
817 retval = 1;
818 goto out;
819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 /*
822 * Using TEST_UNIT_READY enables differentiation between drive with
823 * no cartridge loaded - NOT READY, drive with changed cartridge -
824 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
825 *
826 * Drives that auto spin down. eg iomega jaz 1G, will be started
827 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
828 * sd_revalidate() is called.
829 */
830 retval = -ENODEV;
Kay Sievers285e9672007-08-14 14:10:39 +0200831
James Bottomley001aac22007-12-02 19:10:40 +0200832 if (scsi_block_when_processing_errors(sdp)) {
833 sshdr = kzalloc(sizeof(*sshdr), GFP_KERNEL);
834 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES,
835 sshdr);
836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 /*
839 * Unable to test, unit probably not ready. This usually
840 * means there is no disc in the drive. Mark as changed,
841 * and we will figure it out later once the drive is
842 * available again.
843 */
James Bottomley001aac22007-12-02 19:10:40 +0200844 if (retval || (scsi_sense_valid(sshdr) &&
845 /* 0x3a is medium not present */
846 sshdr->asc == 0x3a)) {
Kay Sievers285e9672007-08-14 14:10:39 +0200847 set_media_not_present(sdkp);
848 retval = 1;
849 goto out;
850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 /*
853 * For removable scsi disk we have to recognise the presence
854 * of a disk in the drive. This is kept in the struct scsi_disk
855 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
856 */
857 sdkp->media_present = 1;
858
859 retval = sdp->changed;
860 sdp->changed = 0;
Kay Sievers285e9672007-08-14 14:10:39 +0200861out:
862 if (retval != sdkp->previous_state)
863 sdev_evt_send_simple(sdp, SDEV_EVT_MEDIA_CHANGE, GFP_KERNEL);
864 sdkp->previous_state = retval;
James Bottomley001aac22007-12-02 19:10:40 +0200865 kfree(sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
Martin K. Petersene73aec82007-02-27 22:40:55 -0500869static int sd_sync_cache(struct scsi_disk *sdkp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 int retries, res;
Martin K. Petersene73aec82007-02-27 22:40:55 -0500872 struct scsi_device *sdp = sdkp->device;
James Bottomleyea73a9f2005-08-28 11:33:52 -0500873 struct scsi_sense_hdr sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 if (!scsi_device_online(sdp))
876 return -ENODEV;
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 for (retries = 3; retries > 0; --retries) {
880 unsigned char cmd[10] = { 0 };
881
882 cmd[0] = SYNCHRONIZE_CACHE;
883 /*
884 * Leave the rest of the command zero to indicate
885 * flush everything.
886 */
James Bottomleyea73a9f2005-08-28 11:33:52 -0500887 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900888 SD_TIMEOUT, SD_MAX_RETRIES, NULL);
James Bottomleyea73a9f2005-08-28 11:33:52 -0500889 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 break;
891 }
892
Martin K. Petersene73aec82007-02-27 22:40:55 -0500893 if (res) {
894 sd_print_result(sdkp, res);
895 if (driver_byte(res) & DRIVER_SENSE)
896 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898
Tejun Heo37210502007-03-21 00:07:18 +0900899 if (res)
900 return -EIO;
901 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
Jens Axboe165125e2007-07-24 09:28:11 +0200904static void sd_prepare_flush(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200906 rq->cmd_type = REQ_TYPE_BLOCK_PC;
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500907 rq->timeout = SD_TIMEOUT;
908 rq->cmd[0] = SYNCHRONIZE_CACHE;
Tejun Heo461d4e92006-01-06 09:52:55 +0100909 rq->cmd_len = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
912static void sd_rescan(struct device *dev)
913{
Alan Stern39b7f1e2005-11-04 14:44:41 -0500914 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
915
916 if (sdkp) {
Andrew Pattersonf98a8ca2008-09-04 14:27:35 -0600917 revalidate_disk(sdkp->disk);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500918 scsi_disk_put(sdkp);
919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
922
923#ifdef CONFIG_COMPAT
924/*
925 * This gets directly called from VFS. When the ioctl
926 * is not recognized we go back to the other translation paths.
927 */
Al Viro0338e292008-03-02 10:41:04 -0500928static int sd_compat_ioctl(struct block_device *bdev, fmode_t mode,
929 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Al Viro0338e292008-03-02 10:41:04 -0500931 struct scsi_device *sdev = scsi_disk(bdev->bd_disk)->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 /*
934 * If we are in the middle of error recovery, don't let anyone
935 * else try and use this device. Also, if error recovery fails, it
936 * may try and take the device offline, in which case all further
937 * access to the device is prohibited.
938 */
939 if (!scsi_block_when_processing_errors(sdev))
940 return -ENODEV;
941
942 if (sdev->host->hostt->compat_ioctl) {
943 int ret;
944
945 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
946
947 return ret;
948 }
949
950 /*
951 * Let the static ioctl translation table take care of it.
952 */
953 return -ENOIOCTLCMD;
954}
955#endif
956
957static struct block_device_operations sd_fops = {
958 .owner = THIS_MODULE,
Al Viro0338e292008-03-02 10:41:04 -0500959 .open = sd_open,
960 .release = sd_release,
961 .locked_ioctl = sd_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800962 .getgeo = sd_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963#ifdef CONFIG_COMPAT
Al Viro0338e292008-03-02 10:41:04 -0500964 .compat_ioctl = sd_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965#endif
966 .media_changed = sd_media_changed,
967 .revalidate_disk = sd_revalidate_disk,
968};
969
Martin K. Petersenaf55ff62008-07-17 04:28:35 -0400970static unsigned int sd_completed_bytes(struct scsi_cmnd *scmd)
971{
972 u64 start_lba = scmd->request->sector;
973 u64 end_lba = scmd->request->sector + (scsi_bufflen(scmd) / 512);
974 u64 bad_lba;
975 int info_valid;
976
977 if (!blk_fs_request(scmd->request))
978 return 0;
979
980 info_valid = scsi_get_sense_info_fld(scmd->sense_buffer,
981 SCSI_SENSE_BUFFERSIZE,
982 &bad_lba);
983 if (!info_valid)
984 return 0;
985
986 if (scsi_bufflen(scmd) <= scmd->device->sector_size)
987 return 0;
988
989 if (scmd->device->sector_size < 512) {
990 /* only legitimate sector_size here is 256 */
991 start_lba <<= 1;
992 end_lba <<= 1;
993 } else {
994 /* be careful ... don't want any overflows */
995 u64 factor = scmd->device->sector_size / 512;
996 do_div(start_lba, factor);
997 do_div(end_lba, factor);
998 }
999
1000 /* The bad lba was reported incorrectly, we have no idea where
1001 * the error is.
1002 */
1003 if (bad_lba < start_lba || bad_lba >= end_lba)
1004 return 0;
1005
1006 /* This computation should always be done in terms of
1007 * the resolution of the device's medium.
1008 */
1009 return (bad_lba - start_lba) * scmd->device->sector_size;
1010}
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012/**
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001013 * sd_done - bottom half handler: called when the lower level
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 * driver has completed (successfully or otherwise) a scsi command.
1015 * @SCpnt: mid-level's per command structure.
1016 *
1017 * Note: potentially run from within an ISR. Must not block.
1018 **/
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001019static int sd_done(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
1021 int result = SCpnt->result;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001022 unsigned int good_bytes = result ? 0 : scsi_bufflen(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 struct scsi_sense_hdr sshdr;
1024 int sense_valid = 0;
1025 int sense_deferred = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 if (result) {
1028 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
1029 if (sense_valid)
1030 sense_deferred = scsi_sense_is_deferred(&sshdr);
1031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032#ifdef CONFIG_SCSI_LOGGING
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001033 SCSI_LOG_HLCOMPLETE(1, scsi_print_result(SCpnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (sense_valid) {
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001035 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, SCpnt,
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001036 "sd_done: sb[respc,sk,asc,"
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001037 "ascq]=%x,%x,%x,%x\n",
1038 sshdr.response_code,
1039 sshdr.sense_key, sshdr.asc,
1040 sshdr.ascq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
1042#endif
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001043 if (driver_byte(result) != DRIVER_SENSE &&
1044 (!sense_valid || sense_deferred))
1045 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001047 switch (sshdr.sense_key) {
1048 case HARDWARE_ERROR:
1049 case MEDIUM_ERROR:
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001050 good_bytes = sd_completed_bytes(SCpnt);
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001051 break;
1052 case RECOVERED_ERROR:
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001053 /* Inform the user, but make sure that it's not treated
1054 * as a hard error.
1055 */
1056 scsi_print_sense("sd", SCpnt);
1057 SCpnt->result = 0;
1058 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001059 good_bytes = scsi_bufflen(SCpnt);
1060 break;
Jamie Wellnitz10dab222008-09-11 21:39:36 -04001061 case NO_SENSE:
1062 /* This indicates a false check condition, so ignore it. An
1063 * unknown amount of data was transferred so treat it as an
1064 * error.
1065 */
1066 scsi_print_sense("sd", SCpnt);
1067 SCpnt->result = 0;
1068 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
1069 break;
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001070 case ABORTED_COMMAND:
1071 if (sshdr.asc == 0x10) { /* DIF: Disk detected corruption */
1072 scsi_print_result(SCpnt);
1073 scsi_print_sense("sd", SCpnt);
1074 good_bytes = sd_completed_bytes(SCpnt);
1075 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001076 break;
1077 case ILLEGAL_REQUEST:
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001078 if (sshdr.asc == 0x10) { /* DIX: HBA detected corruption */
1079 scsi_print_result(SCpnt);
1080 scsi_print_sense("sd", SCpnt);
1081 good_bytes = sd_completed_bytes(SCpnt);
1082 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001083 break;
1084 default:
1085 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001087 out:
Martin K. Petersenaf55ff62008-07-17 04:28:35 -04001088 if (rq_data_dir(SCpnt->request) == READ && scsi_prot_sg_count(SCpnt))
1089 sd_dif_complete(SCpnt, good_bytes);
1090
Linus Torvalds7b3d9542008-01-06 10:17:12 -08001091 return good_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
James Bottomleyea73a9f2005-08-28 11:33:52 -05001094static int media_not_present(struct scsi_disk *sdkp,
1095 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
James Bottomleyea73a9f2005-08-28 11:33:52 -05001098 if (!scsi_sense_valid(sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return 0;
1100 /* not invoked for commands that could return deferred errors */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001101 if (sshdr->sense_key != NOT_READY &&
1102 sshdr->sense_key != UNIT_ATTENTION)
1103 return 0;
1104 if (sshdr->asc != 0x3A) /* medium not present */
1105 return 0;
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 set_media_not_present(sdkp);
1108 return 1;
1109}
1110
1111/*
1112 * spinup disk - called only in sd_revalidate_disk()
1113 */
1114static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001115sd_spinup_disk(struct scsi_disk *sdkp)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001116{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 unsigned char cmd[10];
Alan Stern4451e472005-07-12 10:45:17 -04001118 unsigned long spintime_expire = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 int retries, spintime;
1120 unsigned int the_result;
1121 struct scsi_sense_hdr sshdr;
1122 int sense_valid = 0;
1123
1124 spintime = 0;
1125
1126 /* Spin up drives, as required. Only do this at boot time */
1127 /* Spinup needs to be done for module loads too. */
1128 do {
1129 retries = 0;
1130
1131 do {
1132 cmd[0] = TEST_UNIT_READY;
1133 memset((void *) &cmd[1], 0, 9);
1134
James Bottomleyea73a9f2005-08-28 11:33:52 -05001135 the_result = scsi_execute_req(sdkp->device, cmd,
1136 DMA_NONE, NULL, 0,
1137 &sshdr, SD_TIMEOUT,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09001138 SD_MAX_RETRIES, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Alan Sternb4d38e32006-10-11 16:48:28 -04001140 /*
1141 * If the drive has indicated to us that it
1142 * doesn't have any media in it, don't bother
1143 * with any more polling.
1144 */
1145 if (media_not_present(sdkp, &sshdr))
1146 return;
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001149 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 retries++;
1151 } while (retries < 3 &&
1152 (!scsi_status_is_good(the_result) ||
1153 ((driver_byte(the_result) & DRIVER_SENSE) &&
1154 sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1157 /* no sense, TUR either succeeded or failed
1158 * with a status error */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001159 if(!spintime && !scsi_status_is_good(the_result)) {
1160 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1161 sd_print_result(sdkp, the_result);
1162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 break;
1164 }
1165
1166 /*
1167 * The device does not want the automatic start to be issued.
1168 */
1169 if (sdkp->device->no_start_on_add) {
1170 break;
1171 }
1172
1173 /*
1174 * If manual intervention is required, or this is an
1175 * absent USB storage device, a spinup is meaningless.
1176 */
1177 if (sense_valid &&
1178 sshdr.sense_key == NOT_READY &&
1179 sshdr.asc == 4 && sshdr.ascq == 3) {
1180 break; /* manual intervention required */
1181
1182 /*
1183 * Issue command to spin up drive when not ready
1184 */
1185 } else if (sense_valid && sshdr.sense_key == NOT_READY) {
1186 if (!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001187 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 cmd[0] = START_STOP;
1189 cmd[1] = 1; /* Return immediately */
1190 memset((void *) &cmd[2], 0, 8);
1191 cmd[4] = 1; /* Start spin cycle */
Stefan Richterd2886ea2008-05-11 00:34:07 +02001192 if (sdkp->device->start_stop_pwr_cond)
1193 cmd[4] |= 1 << 4;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001194 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1195 NULL, 0, &sshdr,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09001196 SD_TIMEOUT, SD_MAX_RETRIES,
1197 NULL);
Alan Stern4451e472005-07-12 10:45:17 -04001198 spintime_expire = jiffies + 100 * HZ;
1199 spintime = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 /* Wait 1 second for next try */
1202 msleep(1000);
1203 printk(".");
Alan Stern4451e472005-07-12 10:45:17 -04001204
1205 /*
1206 * Wait for USB flash devices with slow firmware.
1207 * Yes, this sense key/ASC combination shouldn't
1208 * occur here. It's characteristic of these devices.
1209 */
1210 } else if (sense_valid &&
1211 sshdr.sense_key == UNIT_ATTENTION &&
1212 sshdr.asc == 0x28) {
1213 if (!spintime) {
1214 spintime_expire = jiffies + 5 * HZ;
1215 spintime = 1;
1216 }
1217 /* Wait 1 second for next try */
1218 msleep(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 } else {
1220 /* we don't understand the sense code, so it's
1221 * probably pointless to loop */
1222 if(!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001223 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1224 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
1226 break;
1227 }
1228
Alan Stern4451e472005-07-12 10:45:17 -04001229 } while (spintime && time_before_eq(jiffies, spintime_expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 if (spintime) {
1232 if (scsi_status_is_good(the_result))
1233 printk("ready\n");
1234 else
1235 printk("not responding...\n");
1236 }
1237}
1238
Martin K. Petersene0597d72008-07-17 04:28:34 -04001239
1240/*
1241 * Determine whether disk supports Data Integrity Field.
1242 */
1243void sd_read_protection_type(struct scsi_disk *sdkp, unsigned char *buffer)
1244{
1245 struct scsi_device *sdp = sdkp->device;
1246 u8 type;
1247
1248 if (scsi_device_protection(sdp) == 0 || (buffer[12] & 1) == 0)
1249 type = 0;
1250 else
1251 type = ((buffer[12] >> 1) & 7) + 1; /* P_TYPE 0 = Type 1 */
1252
Martin K. Petersenbe922f42008-09-19 18:47:20 -04001253 sdkp->protection_type = type;
1254
Martin K. Petersene0597d72008-07-17 04:28:34 -04001255 switch (type) {
1256 case SD_DIF_TYPE0_PROTECTION:
Martin K. Petersene0597d72008-07-17 04:28:34 -04001257 case SD_DIF_TYPE1_PROTECTION:
1258 case SD_DIF_TYPE3_PROTECTION:
Martin K. Petersene0597d72008-07-17 04:28:34 -04001259 break;
1260
1261 case SD_DIF_TYPE2_PROTECTION:
1262 sd_printk(KERN_ERR, sdkp, "formatted with DIF Type 2 " \
1263 "protection which is currently unsupported. " \
1264 "Disabling disk!\n");
1265 goto disable;
1266
1267 default:
1268 sd_printk(KERN_ERR, sdkp, "formatted with unknown " \
1269 "protection type %d. Disabling disk!\n", type);
1270 goto disable;
1271 }
1272
1273 return;
1274
1275disable:
Martin K. Petersene0597d72008-07-17 04:28:34 -04001276 sdkp->capacity = 0;
1277}
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279/*
1280 * read disk capacity
1281 */
1282static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001283sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001284{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 unsigned char cmd[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 int the_result, retries;
1287 int sector_size = 0;
Martin K. Petersene0597d72008-07-17 04:28:34 -04001288 /* Force READ CAPACITY(16) when PROTECT=1 */
1289 int longrc = scsi_device_protection(sdkp->device) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 struct scsi_sense_hdr sshdr;
1291 int sense_valid = 0;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001292 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294repeat:
1295 retries = 3;
1296 do {
1297 if (longrc) {
1298 memset((void *) cmd, 0, 16);
1299 cmd[0] = SERVICE_ACTION_IN;
1300 cmd[1] = SAI_READ_CAPACITY_16;
Martin K. Petersene0597d72008-07-17 04:28:34 -04001301 cmd[13] = 13;
1302 memset((void *) buffer, 0, 13);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 } else {
1304 cmd[0] = READ_CAPACITY;
1305 memset((void *) &cmd[1], 0, 9);
1306 memset((void *) buffer, 0, 8);
1307 }
1308
James Bottomleyea73a9f2005-08-28 11:33:52 -05001309 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
Martin K. Petersene0597d72008-07-17 04:28:34 -04001310 buffer, longrc ? 13 : 8, &sshdr,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09001311 SD_TIMEOUT, SD_MAX_RETRIES, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
James Bottomleyea73a9f2005-08-28 11:33:52 -05001313 if (media_not_present(sdkp, &sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 return;
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001317 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 retries--;
1319
1320 } while (the_result && retries);
1321
1322 if (the_result && !longrc) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001323 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY failed\n");
1324 sd_print_result(sdkp, the_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 if (driver_byte(the_result) & DRIVER_SENSE)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001326 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001328 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 /* Set dirty bit for removable devices if not ready -
1331 * sometimes drives will not report this properly. */
1332 if (sdp->removable &&
1333 sense_valid && sshdr.sense_key == NOT_READY)
1334 sdp->changed = 1;
1335
1336 /* Either no media are present but the drive didn't tell us,
1337 or they are present but the read capacity command fails */
1338 /* sdkp->media_present = 0; -- not always correct */
Hannes Reinecke69bdd882006-09-01 15:50:23 +02001339 sdkp->capacity = 0; /* unknown mapped to zero - as usual */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 return;
1342 } else if (the_result && longrc) {
1343 /* READ CAPACITY(16) has been failed */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001344 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY(16) failed\n");
1345 sd_print_result(sdkp, the_result);
1346 sd_printk(KERN_NOTICE, sdkp, "Use 0xffffffff as device size\n");
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 sdkp->capacity = 1 + (sector_t) 0xffffffff;
1349 goto got_data;
1350 }
1351
1352 if (!longrc) {
1353 sector_size = (buffer[4] << 24) |
1354 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
1355 if (buffer[0] == 0xff && buffer[1] == 0xff &&
1356 buffer[2] == 0xff && buffer[3] == 0xff) {
1357 if(sizeof(sdkp->capacity) > 4) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001358 sd_printk(KERN_NOTICE, sdkp, "Very big device. "
1359 "Trying to use READ CAPACITY(16).\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 longrc = 1;
1361 goto repeat;
1362 }
Martin K. Petersene73aec82007-02-27 22:40:55 -05001363 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use "
1364 "a kernel compiled with support for large "
1365 "block devices.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 sdkp->capacity = 0;
1367 goto got_data;
1368 }
1369 sdkp->capacity = 1 + (((sector_t)buffer[0] << 24) |
1370 (buffer[1] << 16) |
1371 (buffer[2] << 8) |
1372 buffer[3]);
1373 } else {
1374 sdkp->capacity = 1 + (((u64)buffer[0] << 56) |
1375 ((u64)buffer[1] << 48) |
1376 ((u64)buffer[2] << 40) |
1377 ((u64)buffer[3] << 32) |
1378 ((sector_t)buffer[4] << 24) |
1379 ((sector_t)buffer[5] << 16) |
1380 ((sector_t)buffer[6] << 8) |
1381 (sector_t)buffer[7]);
1382
1383 sector_size = (buffer[8] << 24) |
1384 (buffer[9] << 16) | (buffer[10] << 8) | buffer[11];
Martin K. Petersene0597d72008-07-17 04:28:34 -04001385
1386 sd_read_protection_type(sdkp, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
1388
1389 /* Some devices return the total number of sectors, not the
1390 * highest sector number. Make the necessary adjustment. */
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001391 if (sdp->fix_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 --sdkp->capacity;
1393
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001394 /* Some devices have version which report the correct sizes
1395 * and others which do not. We guess size according to a heuristic
1396 * and err on the side of lowering the capacity. */
1397 } else {
1398 if (sdp->guess_capacity)
1399 if (sdkp->capacity & 0x01) /* odd sizes are odd */
1400 --sdkp->capacity;
1401 }
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403got_data:
1404 if (sector_size == 0) {
1405 sector_size = 512;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001406 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
1407 "assuming 512.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409
1410 if (sector_size != 512 &&
1411 sector_size != 1024 &&
1412 sector_size != 2048 &&
1413 sector_size != 4096 &&
1414 sector_size != 256) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001415 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
1416 sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 /*
1418 * The user might want to re-format the drive with
1419 * a supported sectorsize. Once this happens, it
1420 * would be relatively trivial to set the thing up.
1421 * For this reason, we leave the thing in the table.
1422 */
1423 sdkp->capacity = 0;
1424 /*
1425 * set a bogus sector size so the normal read/write
1426 * logic in the block layer will eventually refuse any
1427 * request on this device without tripping over power
1428 * of two sector size assumptions
1429 */
1430 sector_size = 512;
1431 }
James Bottomley7404ad3b2008-08-31 10:41:52 -05001432 blk_queue_hardsect_size(sdp->request_queue, sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
James Bottomley7404ad3b2008-08-31 10:41:52 -05001434 {
1435 char cap_str_2[10], cap_str_10[10];
H. Peter Anvin520a2c22008-10-14 11:34:20 -07001436 u64 sz = (u64)sdkp->capacity << ilog2(sector_size);
James Bottomley7404ad3b2008-08-31 10:41:52 -05001437
1438 string_get_size(sz, STRING_UNITS_2, cap_str_2,
1439 sizeof(cap_str_2));
1440 string_get_size(sz, STRING_UNITS_10, cap_str_10,
1441 sizeof(cap_str_10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Martin K. Petersene73aec82007-02-27 22:40:55 -05001443 sd_printk(KERN_NOTICE, sdkp,
James Bottomley7404ad3b2008-08-31 10:41:52 -05001444 "%llu %d-byte hardware sectors: (%s/%s)\n",
Martin K. Petersene73aec82007-02-27 22:40:55 -05001445 (unsigned long long)sdkp->capacity,
James Bottomley7404ad3b2008-08-31 10:41:52 -05001446 sector_size, cap_str_10, cap_str_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 }
1448
1449 /* Rescale capacity to 512-byte units */
1450 if (sector_size == 4096)
1451 sdkp->capacity <<= 3;
1452 else if (sector_size == 2048)
1453 sdkp->capacity <<= 2;
1454 else if (sector_size == 1024)
1455 sdkp->capacity <<= 1;
1456 else if (sector_size == 256)
1457 sdkp->capacity >>= 1;
1458
1459 sdkp->device->sector_size = sector_size;
1460}
1461
1462/* called with buffer of length 512 */
1463static inline int
James Bottomleyea73a9f2005-08-28 11:33:52 -05001464sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
1465 unsigned char *buffer, int len, struct scsi_mode_data *data,
1466 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
James Bottomleyea73a9f2005-08-28 11:33:52 -05001468 return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
James Bottomley1cf72692005-08-28 11:27:01 -05001469 SD_TIMEOUT, SD_MAX_RETRIES, data,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001470 sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471}
1472
1473/*
1474 * read write protect setting, if possible - called only in sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001475 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 */
1477static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001478sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001479{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 int res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001481 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 struct scsi_mode_data data;
1483
1484 set_disk_ro(sdkp->disk, 0);
James Bottomleyea73a9f2005-08-28 11:33:52 -05001485 if (sdp->skip_ms_page_3f) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001486 sd_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return;
1488 }
1489
James Bottomleyea73a9f2005-08-28 11:33:52 -05001490 if (sdp->use_192_bytes_for_3f) {
1491 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 } else {
1493 /*
1494 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1495 * We have to start carefully: some devices hang if we ask
1496 * for more than is available.
1497 */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001498 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 /*
1501 * Second attempt: ask for page 0 When only page 0 is
1502 * implemented, a request for page 3F may return Sense Key
1503 * 5: Illegal Request, Sense Code 24: Invalid field in
1504 * CDB.
1505 */
1506 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001507 res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 /*
1510 * Third attempt: ask 255 bytes, as we did earlier.
1511 */
1512 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001513 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
1514 &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
1516
1517 if (!scsi_status_is_good(res)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001518 sd_printk(KERN_WARNING, sdkp,
1519 "Test WP failed, assume Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 } else {
1521 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
1522 set_disk_ro(sdkp->disk, sdkp->write_prot);
Martin K. Petersene73aec82007-02-27 22:40:55 -05001523 sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
1524 sdkp->write_prot ? "on" : "off");
1525 sd_printk(KERN_DEBUG, sdkp,
1526 "Mode Sense: %02x %02x %02x %02x\n",
1527 buffer[0], buffer[1], buffer[2], buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529}
1530
1531/*
1532 * sd_read_cache_type - called only from sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001533 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 */
1535static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001536sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
Al Viro 631e8a12005-05-16 01:59:55 +01001537{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 int len = 0, res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001539 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Al Viro 631e8a12005-05-16 01:59:55 +01001541 int dbd;
1542 int modepage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 struct scsi_mode_data data;
1544 struct scsi_sense_hdr sshdr;
1545
James Bottomleyea73a9f2005-08-28 11:33:52 -05001546 if (sdp->skip_ms_page_8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 goto defaults;
1548
James Bottomleyea73a9f2005-08-28 11:33:52 -05001549 if (sdp->type == TYPE_RBC) {
Al Viro 631e8a12005-05-16 01:59:55 +01001550 modepage = 6;
1551 dbd = 8;
1552 } else {
1553 modepage = 8;
1554 dbd = 0;
1555 }
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 /* cautiously ask */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001558 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, 4, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 if (!scsi_status_is_good(res))
1561 goto bad_sense;
1562
Al Viro6d73c852006-02-23 02:03:16 +01001563 if (!data.header_length) {
1564 modepage = 6;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001565 sd_printk(KERN_ERR, sdkp, "Missing header in MODE_SENSE response\n");
Al Viro6d73c852006-02-23 02:03:16 +01001566 }
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 /* that went OK, now ask for the proper length */
1569 len = data.length;
1570
1571 /*
1572 * We're only interested in the first three bytes, actually.
1573 * But the data cache page is defined for the first 20.
1574 */
1575 if (len < 3)
1576 goto bad_sense;
1577 if (len > 20)
1578 len = 20;
1579
1580 /* Take headers and block descriptors into account */
1581 len += data.header_length + data.block_descriptor_length;
Al Viro48970802006-02-26 08:34:10 -06001582 if (len > SD_BUF_SIZE)
1583 goto bad_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 /* Get the data */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001586 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 if (scsi_status_is_good(res)) {
Al Viro 631e8a12005-05-16 01:59:55 +01001589 int offset = data.header_length + data.block_descriptor_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Al Viro48970802006-02-26 08:34:10 -06001591 if (offset >= SD_BUF_SIZE - 2) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001592 sd_printk(KERN_ERR, sdkp, "Malformed MODE SENSE response\n");
Al Viro48970802006-02-26 08:34:10 -06001593 goto defaults;
1594 }
1595
Al Viro 631e8a12005-05-16 01:59:55 +01001596 if ((buffer[offset] & 0x3f) != modepage) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001597 sd_printk(KERN_ERR, sdkp, "Got wrong page\n");
Al Viro 631e8a12005-05-16 01:59:55 +01001598 goto defaults;
1599 }
1600
1601 if (modepage == 8) {
1602 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
1603 sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
1604 } else {
1605 sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
1606 sdkp->RCD = 0;
1607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Tejun Heo007365a2006-01-06 09:53:52 +01001609 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
1610 if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001611 sd_printk(KERN_NOTICE, sdkp,
1612 "Uses READ/WRITE(6), disabling FUA\n");
Tejun Heo007365a2006-01-06 09:53:52 +01001613 sdkp->DPOFUA = 0;
1614 }
1615
Martin K. Petersene73aec82007-02-27 22:40:55 -05001616 sd_printk(KERN_NOTICE, sdkp,
1617 "Write cache: %s, read cache: %s, %s\n",
Luben Tuikovfd44bab2006-11-15 12:47:08 -08001618 sdkp->WCE ? "enabled" : "disabled",
1619 sdkp->RCD ? "disabled" : "enabled",
1620 sdkp->DPOFUA ? "supports DPO and FUA"
1621 : "doesn't support DPO or FUA");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623 return;
1624 }
1625
1626bad_sense:
James Bottomleyea73a9f2005-08-28 11:33:52 -05001627 if (scsi_sense_valid(&sshdr) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 sshdr.sense_key == ILLEGAL_REQUEST &&
1629 sshdr.asc == 0x24 && sshdr.ascq == 0x0)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001630 /* Invalid field in CDB */
1631 sd_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001633 sd_printk(KERN_ERR, sdkp, "Asking for cache data failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635defaults:
Martin K. Petersene73aec82007-02-27 22:40:55 -05001636 sd_printk(KERN_ERR, sdkp, "Assuming drive cache: write through\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 sdkp->WCE = 0;
1638 sdkp->RCD = 0;
Al Viro48970802006-02-26 08:34:10 -06001639 sdkp->DPOFUA = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641
Martin K. Petersene0597d72008-07-17 04:28:34 -04001642/*
1643 * The ATO bit indicates whether the DIF application tag is available
1644 * for use by the operating system.
1645 */
1646void sd_read_app_tag_own(struct scsi_disk *sdkp, unsigned char *buffer)
1647{
1648 int res, offset;
1649 struct scsi_device *sdp = sdkp->device;
1650 struct scsi_mode_data data;
1651 struct scsi_sense_hdr sshdr;
1652
1653 if (sdp->type != TYPE_DISK)
1654 return;
1655
1656 if (sdkp->protection_type == 0)
1657 return;
1658
1659 res = scsi_mode_sense(sdp, 1, 0x0a, buffer, 36, SD_TIMEOUT,
1660 SD_MAX_RETRIES, &data, &sshdr);
1661
1662 if (!scsi_status_is_good(res) || !data.header_length ||
1663 data.length < 6) {
1664 sd_printk(KERN_WARNING, sdkp,
1665 "getting Control mode page failed, assume no ATO\n");
1666
1667 if (scsi_sense_valid(&sshdr))
1668 sd_print_sense_hdr(sdkp, &sshdr);
1669
1670 return;
1671 }
1672
1673 offset = data.header_length + data.block_descriptor_length;
1674
1675 if ((buffer[offset] & 0x3f) != 0x0a) {
1676 sd_printk(KERN_ERR, sdkp, "ATO Got wrong page\n");
1677 return;
1678 }
1679
1680 if ((buffer[offset + 5] & 0x80) == 0)
1681 return;
1682
1683 sdkp->ATO = 1;
1684
1685 return;
1686}
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688/**
1689 * sd_revalidate_disk - called the first time a new disk is seen,
1690 * performs disk spin up, read_capacity, etc.
1691 * @disk: struct gendisk we care about
1692 **/
1693static int sd_revalidate_disk(struct gendisk *disk)
1694{
1695 struct scsi_disk *sdkp = scsi_disk(disk);
1696 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 unsigned char *buffer;
Tejun Heo461d4e92006-01-06 09:52:55 +01001698 unsigned ordered;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Martin K. Petersenfa0d34b2007-02-27 22:41:19 -05001700 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp,
1701 "sd_revalidate_disk\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703 /*
1704 * If the device is offline, don't try and read capacity or any
1705 * of the other niceties.
1706 */
1707 if (!scsi_device_online(sdp))
1708 goto out;
1709
Bernhard Wallea6123f12007-05-21 17:15:26 +02001710 buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 if (!buffer) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001712 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
1713 "allocation failure.\n");
James Bottomleyea73a9f2005-08-28 11:33:52 -05001714 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 }
1716
1717 /* defaults, until the device tells us otherwise */
1718 sdp->sector_size = 512;
1719 sdkp->capacity = 0;
1720 sdkp->media_present = 1;
1721 sdkp->write_prot = 0;
1722 sdkp->WCE = 0;
1723 sdkp->RCD = 0;
Martin K. Petersene0597d72008-07-17 04:28:34 -04001724 sdkp->ATO = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Martin K. Petersene73aec82007-02-27 22:40:55 -05001726 sd_spinup_disk(sdkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 /*
1729 * Without media there is no reason to ask; moreover, some devices
1730 * react badly if we do.
1731 */
1732 if (sdkp->media_present) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001733 sd_read_capacity(sdkp, buffer);
1734 sd_read_write_protect_flag(sdkp, buffer);
1735 sd_read_cache_type(sdkp, buffer);
Martin K. Petersene0597d72008-07-17 04:28:34 -04001736 sd_read_app_tag_own(sdkp, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
Tejun Heo461d4e92006-01-06 09:52:55 +01001738
1739 /*
1740 * We now have all cache related info, determine how we deal
1741 * with ordered requests. Note that as the current SCSI
1742 * dispatch function can alter request order, we cannot use
1743 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1744 */
1745 if (sdkp->WCE)
Tejun Heo007365a2006-01-06 09:53:52 +01001746 ordered = sdkp->DPOFUA
1747 ? QUEUE_ORDERED_DRAIN_FUA : QUEUE_ORDERED_DRAIN_FLUSH;
Tejun Heo461d4e92006-01-06 09:52:55 +01001748 else
1749 ordered = QUEUE_ORDERED_DRAIN;
1750
1751 blk_queue_ordered(sdkp->disk->queue, ordered, sd_prepare_flush);
1752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 set_capacity(disk, sdkp->capacity);
1754 kfree(buffer);
1755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 out:
1757 return 0;
1758}
1759
1760/**
Tejun Heo3e1a7ff2008-08-25 19:56:17 +09001761 * sd_format_disk_name - format disk name
1762 * @prefix: name prefix - ie. "sd" for SCSI disks
1763 * @index: index of the disk to format name for
1764 * @buf: output buffer
1765 * @buflen: length of the output buffer
1766 *
1767 * SCSI disk names starts at sda. The 26th device is sdz and the
1768 * 27th is sdaa. The last one for two lettered suffix is sdzz
1769 * which is followed by sdaaa.
1770 *
1771 * This is basically 26 base counting with one extra 'nil' entry
1772 * at the beggining from the second digit on and can be
1773 * determined using similar method as 26 base conversion with the
1774 * index shifted -1 after each digit is computed.
1775 *
1776 * CONTEXT:
1777 * Don't care.
1778 *
1779 * RETURNS:
1780 * 0 on success, -errno on failure.
1781 */
1782static int sd_format_disk_name(char *prefix, int index, char *buf, int buflen)
1783{
1784 const int base = 'z' - 'a' + 1;
1785 char *begin = buf + strlen(prefix);
1786 char *end = buf + buflen;
1787 char *p;
1788 int unit;
1789
1790 p = end - 1;
1791 *p = '\0';
1792 unit = base;
1793 do {
1794 if (p == begin)
1795 return -EINVAL;
1796 *--p = 'a' + (index % unit);
1797 index = (index / unit) - 1;
1798 } while (index >= 0);
1799
1800 memmove(begin, p, end - p);
1801 memcpy(buf, prefix, strlen(prefix));
1802
1803 return 0;
1804}
1805
Arjan van de Ven4ace92f2009-01-04 05:32:28 -08001806/*
1807 * The asynchronous part of sd_probe
1808 */
1809static void sd_probe_async(void *data, async_cookie_t cookie)
1810{
1811 struct scsi_disk *sdkp = data;
1812 struct scsi_device *sdp;
1813 struct gendisk *gd;
1814 u32 index;
1815 struct device *dev;
1816
1817 sdp = sdkp->device;
1818 gd = sdkp->disk;
1819 index = sdkp->index;
1820 dev = &sdp->sdev_gendev;
1821
1822 if (!sdp->request_queue->rq_timeout) {
1823 if (sdp->type != TYPE_MOD)
1824 blk_queue_rq_timeout(sdp->request_queue, SD_TIMEOUT);
1825 else
1826 blk_queue_rq_timeout(sdp->request_queue,
1827 SD_MOD_TIMEOUT);
1828 }
1829
1830 device_initialize(&sdkp->dev);
1831 sdkp->dev.parent = &sdp->sdev_gendev;
1832 sdkp->dev.class = &sd_disk_class;
1833 strncpy(sdkp->dev.bus_id, sdp->sdev_gendev.bus_id, BUS_ID_SIZE);
1834
1835 if (device_add(&sdkp->dev))
1836 goto out_free_index;
1837
1838 get_device(&sdp->sdev_gendev);
1839
1840 if (index < SD_MAX_DISKS) {
1841 gd->major = sd_major((index & 0xf0) >> 4);
1842 gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
1843 gd->minors = SD_MINORS;
1844 }
1845 gd->fops = &sd_fops;
1846 gd->private_data = &sdkp->driver;
1847 gd->queue = sdkp->device->request_queue;
1848
1849 sd_revalidate_disk(gd);
1850
1851 blk_queue_prep_rq(sdp->request_queue, sd_prep_fn);
1852
1853 gd->driverfs_dev = &sdp->sdev_gendev;
1854 gd->flags = GENHD_FL_EXT_DEVT | GENHD_FL_DRIVERFS;
1855 if (sdp->removable)
1856 gd->flags |= GENHD_FL_REMOVABLE;
1857
1858 dev_set_drvdata(dev, sdkp);
1859 add_disk(gd);
1860 sd_dif_config_host(sdkp);
1861
1862 sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
1863 sdp->removable ? "removable " : "");
1864
1865 return;
1866
1867 out_free_index:
1868 ida_remove(&sd_index_ida, index);
1869}
1870
Tejun Heo3e1a7ff2008-08-25 19:56:17 +09001871/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 * sd_probe - called during driver initialization and whenever a
1873 * new scsi device is attached to the system. It is called once
1874 * for each scsi device (not just disks) present.
1875 * @dev: pointer to device object
1876 *
1877 * Returns 0 if successful (or not interested in this scsi device
1878 * (e.g. scanner)); 1 when there is an error.
1879 *
1880 * Note: this function is invoked from the scsi mid-level.
1881 * This function sets up the mapping between a given
1882 * <host,channel,id,lun> (found in sdp) and new device name
1883 * (e.g. /dev/sda). More precisely it is the block device major
1884 * and minor number that is chosen here.
1885 *
1886 * Assume sd_attach is not re-entrant (for time being)
1887 * Also think about sd_attach() and sd_remove() running coincidentally.
1888 **/
1889static int sd_probe(struct device *dev)
1890{
1891 struct scsi_device *sdp = to_scsi_device(dev);
1892 struct scsi_disk *sdkp;
1893 struct gendisk *gd;
1894 u32 index;
1895 int error;
1896
1897 error = -ENODEV;
Al Viro 631e8a12005-05-16 01:59:55 +01001898 if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 goto out;
1900
James Bottomley9ccfc752005-10-02 11:45:08 -05001901 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
1902 "sd_attach\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 error = -ENOMEM;
Jes Sorensen24669f752006-01-16 10:31:18 -05001905 sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 if (!sdkp)
1907 goto out;
1908
Tejun Heo689d6fa2008-08-25 19:56:16 +09001909 gd = alloc_disk(SD_MINORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 if (!gd)
1911 goto out_free;
1912
Tejun Heof27bac22008-07-14 14:59:30 +09001913 do {
1914 if (!ida_pre_get(&sd_index_ida, GFP_KERNEL))
1915 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Tejun Heof27bac22008-07-14 14:59:30 +09001917 error = ida_get_new(&sd_index_ida, &index);
1918 } while (error == -EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (error)
1921 goto out_put;
1922
Tejun Heo3e1a7ff2008-08-25 19:56:17 +09001923 error = sd_format_disk_name("sd", index, gd->disk_name, DISK_NAME_LEN);
1924 if (error)
Tejun Heof27bac22008-07-14 14:59:30 +09001925 goto out_free_index;
1926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 sdkp->device = sdp;
1928 sdkp->driver = &sd_template;
1929 sdkp->disk = gd;
1930 sdkp->index = index;
1931 sdkp->openers = 0;
Kay Sieversc02e6002008-03-19 13:09:56 +01001932 sdkp->previous_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Arjan van de Ven4ace92f2009-01-04 05:32:28 -08001934 async_schedule(sd_probe_async, sdkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 return 0;
1937
Tejun Heof27bac22008-07-14 14:59:30 +09001938 out_free_index:
1939 ida_remove(&sd_index_ida, index);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001940 out_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 put_disk(gd);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001942 out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 kfree(sdkp);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001944 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 return error;
1946}
1947
1948/**
1949 * sd_remove - called whenever a scsi disk (previously recognized by
1950 * sd_probe) is detached from the system. It is called (potentially
1951 * multiple times) during sd module unload.
1952 * @sdp: pointer to mid level scsi device object
1953 *
1954 * Note: this function is invoked from the scsi mid-level.
1955 * This function potentially frees up a device name (e.g. /dev/sdc)
1956 * that could be re-used by a subsequent sd_probe().
1957 * This function is not called when the built-in sd driver is "exit-ed".
1958 **/
1959static int sd_remove(struct device *dev)
1960{
1961 struct scsi_disk *sdkp = dev_get_drvdata(dev);
1962
Tony Jonesee959b02008-02-22 00:13:36 +01001963 device_del(&sdkp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 del_gendisk(sdkp->disk);
1965 sd_shutdown(dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001966
Arjan van de Ven0b950672006-01-11 13:16:10 +01001967 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001968 dev_set_drvdata(dev, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001969 put_device(&sdkp->dev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001970 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 return 0;
1973}
1974
1975/**
1976 * scsi_disk_release - Called to free the scsi_disk structure
Tony Jonesee959b02008-02-22 00:13:36 +01001977 * @dev: pointer to embedded class device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 *
Arjan van de Ven0b950672006-01-11 13:16:10 +01001979 * sd_ref_mutex must be held entering this routine. Because it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 * called on last put, you should always use the scsi_disk_get()
1981 * scsi_disk_put() helpers which manipulate the semaphore directly
Tony Jonesee959b02008-02-22 00:13:36 +01001982 * and never do a direct put_device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 **/
Tony Jonesee959b02008-02-22 00:13:36 +01001984static void scsi_disk_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
Tony Jonesee959b02008-02-22 00:13:36 +01001986 struct scsi_disk *sdkp = to_scsi_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 struct gendisk *disk = sdkp->disk;
1988
Tejun Heof27bac22008-07-14 14:59:30 +09001989 ida_remove(&sd_index_ida, sdkp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 disk->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 put_disk(disk);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001993 put_device(&sdkp->device->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995 kfree(sdkp);
1996}
1997
James Bottomleycc5d2c82007-03-20 12:26:03 -05001998static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
Tejun Heoc3c94c52007-03-21 00:13:59 +09001999{
2000 unsigned char cmd[6] = { START_STOP }; /* START_VALID */
2001 struct scsi_sense_hdr sshdr;
James Bottomleycc5d2c82007-03-20 12:26:03 -05002002 struct scsi_device *sdp = sdkp->device;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002003 int res;
2004
2005 if (start)
2006 cmd[4] |= 1; /* START */
2007
Stefan Richterd2886ea2008-05-11 00:34:07 +02002008 if (sdp->start_stop_pwr_cond)
2009 cmd[4] |= start ? 1 << 4 : 3 << 4; /* Active or Standby */
2010
Tejun Heoc3c94c52007-03-21 00:13:59 +09002011 if (!scsi_device_online(sdp))
2012 return -ENODEV;
2013
2014 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09002015 SD_TIMEOUT, SD_MAX_RETRIES, NULL);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002016 if (res) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05002017 sd_printk(KERN_WARNING, sdkp, "START_STOP FAILED\n");
2018 sd_print_result(sdkp, res);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002019 if (driver_byte(res) & DRIVER_SENSE)
James Bottomleycc5d2c82007-03-20 12:26:03 -05002020 sd_print_sense_hdr(sdkp, &sshdr);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002021 }
2022
2023 return res;
2024}
2025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026/*
2027 * Send a SYNCHRONIZE CACHE instruction down to the device through
2028 * the normal SCSI command structure. Wait for the command to
2029 * complete.
2030 */
2031static void sd_shutdown(struct device *dev)
2032{
Alan Stern39b7f1e2005-11-04 14:44:41 -05002033 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 if (!sdkp)
2036 return; /* this can happen */
2037
Alan Stern39b7f1e2005-11-04 14:44:41 -05002038 if (sdkp->WCE) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05002039 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
2040 sd_sync_cache(sdkp);
Alan Stern39b7f1e2005-11-04 14:44:41 -05002041 }
Tejun Heoc3c94c52007-03-21 00:13:59 +09002042
James Bottomleycc5d2c82007-03-20 12:26:03 -05002043 if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) {
2044 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
2045 sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002046 }
2047
Alan Stern39b7f1e2005-11-04 14:44:41 -05002048 scsi_disk_put(sdkp);
2049}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Tejun Heoc3c94c52007-03-21 00:13:59 +09002051static int sd_suspend(struct device *dev, pm_message_t mesg)
2052{
Tejun Heoc3c94c52007-03-21 00:13:59 +09002053 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04002054 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002055
2056 if (!sdkp)
2057 return 0; /* this can happen */
2058
2059 if (sdkp->WCE) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05002060 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
Tejun Heoc3c94c52007-03-21 00:13:59 +09002061 ret = sd_sync_cache(sdkp);
2062 if (ret)
Alan Stern09ff92f2007-05-21 09:55:04 -04002063 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002064 }
2065
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01002066 if ((mesg.event & PM_EVENT_SLEEP) && sdkp->device->manage_start_stop) {
James Bottomleycc5d2c82007-03-20 12:26:03 -05002067 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
2068 ret = sd_start_stop_device(sdkp, 0);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002069 }
2070
Alan Stern09ff92f2007-05-21 09:55:04 -04002071done:
2072 scsi_disk_put(sdkp);
2073 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002074}
2075
2076static int sd_resume(struct device *dev)
2077{
Tejun Heoc3c94c52007-03-21 00:13:59 +09002078 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Alan Stern09ff92f2007-05-21 09:55:04 -04002079 int ret = 0;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002080
James Bottomleycc5d2c82007-03-20 12:26:03 -05002081 if (!sdkp->device->manage_start_stop)
Alan Stern09ff92f2007-05-21 09:55:04 -04002082 goto done;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002083
James Bottomleycc5d2c82007-03-20 12:26:03 -05002084 sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
Alan Stern09ff92f2007-05-21 09:55:04 -04002085 ret = sd_start_stop_device(sdkp, 1);
Tejun Heoc3c94c52007-03-21 00:13:59 +09002086
Alan Stern09ff92f2007-05-21 09:55:04 -04002087done:
2088 scsi_disk_put(sdkp);
2089 return ret;
Tejun Heoc3c94c52007-03-21 00:13:59 +09002090}
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092/**
2093 * init_sd - entry point for this driver (both when built in or when
2094 * a module).
2095 *
2096 * Note: this function registers this driver with the scsi mid-level.
2097 **/
2098static int __init init_sd(void)
2099{
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002100 int majors = 0, i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
2103
2104 for (i = 0; i < SD_MAJORS; i++)
2105 if (register_blkdev(sd_major(i), "sd") == 0)
2106 majors++;
2107
2108 if (!majors)
2109 return -ENODEV;
2110
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002111 err = class_register(&sd_disk_class);
2112 if (err)
2113 goto err_out;
James Bottomley6bdaa1f2006-03-18 14:14:21 -06002114
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002115 err = scsi_register_driver(&sd_template.gendrv);
2116 if (err)
2117 goto err_out_class;
2118
2119 return 0;
2120
2121err_out_class:
2122 class_unregister(&sd_disk_class);
2123err_out:
2124 for (i = 0; i < SD_MAJORS; i++)
2125 unregister_blkdev(sd_major(i), "sd");
2126 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127}
2128
2129/**
2130 * exit_sd - exit point for this driver (when it is a module).
2131 *
2132 * Note: this function unregisters this driver from the scsi mid-level.
2133 **/
2134static void __exit exit_sd(void)
2135{
2136 int i;
2137
2138 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
2139
2140 scsi_unregister_driver(&sd_template.gendrv);
Jeff Garzik5e4009b2006-10-04 05:32:54 -04002141 class_unregister(&sd_disk_class);
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 for (i = 0; i < SD_MAJORS; i++)
2144 unregister_blkdev(sd_major(i), "sd");
2145}
2146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147module_init(init_sd);
2148module_exit(exit_sd);
Martin K. Petersene73aec82007-02-27 22:40:55 -05002149
2150static void sd_print_sense_hdr(struct scsi_disk *sdkp,
2151 struct scsi_sense_hdr *sshdr)
2152{
2153 sd_printk(KERN_INFO, sdkp, "");
2154 scsi_show_sense_hdr(sshdr);
2155 sd_printk(KERN_INFO, sdkp, "");
2156 scsi_show_extd_sense(sshdr->asc, sshdr->ascq);
2157}
2158
2159static void sd_print_result(struct scsi_disk *sdkp, int result)
2160{
2161 sd_printk(KERN_INFO, sdkp, "");
2162 scsi_show_result(result);
2163}
2164