blob: b5562b851e785cd598630e2408c0a3f7316532db [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sd.c Copyright (C) 1992 Drew Eckhardt
3 * Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale
4 *
5 * Linux scsi disk driver
6 * Initial versions: Drew Eckhardt
7 * Subsequent revisions: Eric Youngdale
8 * Modification history:
9 * - Drew Eckhardt <drew@colorado.edu> original
10 * - Eric Youngdale <eric@andante.org> add scatter-gather, multiple
11 * outstanding request, and other enhancements.
12 * Support loadable low-level scsi drivers.
13 * - Jirka Hanika <geo@ff.cuni.cz> support more scsi disks using
14 * eight major numbers.
15 * - Richard Gooch <rgooch@atnf.csiro.au> support devfs.
16 * - Torben Mathiasen <tmm@image.dk> Resource allocation fixes in
17 * sd_init and cleanups.
18 * - Alex Davis <letmein@erols.com> Fix problem where partition info
19 * not being read in sd_open. Fix problem where removable media
20 * could be ejected after sd_open.
21 * - Douglas Gilbert <dgilbert@interlog.com> cleanup for lk 2.5.x
22 * - Badari Pulavarty <pbadari@us.ibm.com>, Matthew Wilcox
23 * <willy@debian.org>, Kurt Garloff <garloff@suse.de>:
24 * Support 32k/1M disks.
25 *
26 * Logging policy (needs CONFIG_SCSI_LOGGING defined):
27 * - setting up transfer: SCSI_LOG_HLQUEUE levels 1 and 2
28 * - end of transfer (bh + scsi_lib): SCSI_LOG_HLCOMPLETE level 1
29 * - entering sd_ioctl: SCSI_LOG_IOCTL level 1
30 * - entering other commands: SCSI_LOG_HLQUEUE level 3
31 * Note: when the logging level is set by the user, it must be greater
32 * than the level indicated above to trigger output.
33 */
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/module.h>
36#include <linux/fs.h>
37#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/mm.h>
39#include <linux/bio.h>
40#include <linux/genhd.h>
41#include <linux/hdreg.h>
42#include <linux/errno.h>
43#include <linux/idr.h>
44#include <linux/interrupt.h>
45#include <linux/init.h>
46#include <linux/blkdev.h>
47#include <linux/blkpg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/delay.h>
Arjan van de Ven0b950672006-01-11 13:16:10 +010049#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/uaccess.h>
51
52#include <scsi/scsi.h>
53#include <scsi/scsi_cmnd.h>
54#include <scsi/scsi_dbg.h>
55#include <scsi/scsi_device.h>
56#include <scsi/scsi_driver.h>
57#include <scsi/scsi_eh.h>
58#include <scsi/scsi_host.h>
59#include <scsi/scsi_ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <scsi/scsicam.h>
Martin K. Petersene73aec82007-02-27 22:40:55 -050061#include <scsi/sd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#include "scsi_logging.h"
64
Rene Hermanf018fa52006-03-08 00:14:20 -080065MODULE_AUTHOR("Eric Youngdale");
66MODULE_DESCRIPTION("SCSI disk (sd) driver");
67MODULE_LICENSE("GPL");
68
69MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR);
70MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR);
71MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR);
72MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR);
73MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR);
74MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR);
75MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR);
76MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR);
77MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR);
78MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR);
79MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR);
80MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR);
81MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR);
82MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR);
83MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR);
84MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR);
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static DEFINE_IDR(sd_index_idr);
87static DEFINE_SPINLOCK(sd_index_lock);
88
89/* This semaphore is used to mediate the 0->1 reference get in the
90 * face of object destruction (i.e. we can't allow a get on an
91 * object after last put) */
Arjan van de Ven0b950672006-01-11 13:16:10 +010092static DEFINE_MUTEX(sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
James Bottomley6bdaa1f2006-03-18 14:14:21 -060094static const char *sd_cache_types[] = {
95 "write through", "none", "write back",
96 "write back, no read (daft)"
97};
98
99static ssize_t sd_store_cache_type(struct class_device *cdev, const char *buf,
100 size_t count)
101{
102 int i, ct = -1, rcd, wce, sp;
103 struct scsi_disk *sdkp = to_scsi_disk(cdev);
104 struct scsi_device *sdp = sdkp->device;
105 char buffer[64];
106 char *buffer_data;
107 struct scsi_mode_data data;
108 struct scsi_sense_hdr sshdr;
109 int len;
110
111 if (sdp->type != TYPE_DISK)
112 /* no cache control on RBC devices; theoretically they
113 * can do it, but there's probably so many exceptions
114 * it's not worth the risk */
115 return -EINVAL;
116
Tobias Klauser6391a112006-06-08 22:23:48 -0700117 for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600118 const int len = strlen(sd_cache_types[i]);
119 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
120 buf[len] == '\n') {
121 ct = i;
122 break;
123 }
124 }
125 if (ct < 0)
126 return -EINVAL;
127 rcd = ct & 0x01 ? 1 : 0;
128 wce = ct & 0x02 ? 1 : 0;
129 if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
130 SD_MAX_RETRIES, &data, NULL))
131 return -EINVAL;
Andrew Mortona9312fb2006-03-25 03:08:30 -0800132 len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600133 data.block_descriptor_length);
134 buffer_data = buffer + data.header_length +
135 data.block_descriptor_length;
136 buffer_data[2] &= ~0x05;
137 buffer_data[2] |= wce << 2 | rcd;
138 sp = buffer_data[0] & 0x80 ? 1 : 0;
139
140 if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
141 SD_MAX_RETRIES, &data, &sshdr)) {
142 if (scsi_sense_valid(&sshdr))
Martin K. Petersene73aec82007-02-27 22:40:55 -0500143 sd_print_sense_hdr(sdkp, &sshdr);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600144 return -EINVAL;
145 }
146 sd_revalidate_disk(sdkp->disk);
147 return count;
148}
149
Brian Kinga144c5a2006-06-27 11:10:31 -0500150static ssize_t sd_store_allow_restart(struct class_device *cdev, const char *buf,
151 size_t count)
152{
153 struct scsi_disk *sdkp = to_scsi_disk(cdev);
154 struct scsi_device *sdp = sdkp->device;
155
156 if (!capable(CAP_SYS_ADMIN))
157 return -EACCES;
158
159 if (sdp->type != TYPE_DISK)
160 return -EINVAL;
161
162 sdp->allow_restart = simple_strtoul(buf, NULL, 10);
163
164 return count;
165}
166
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600167static ssize_t sd_show_cache_type(struct class_device *cdev, char *buf)
168{
169 struct scsi_disk *sdkp = to_scsi_disk(cdev);
170 int ct = sdkp->RCD + 2*sdkp->WCE;
171
172 return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
173}
174
175static ssize_t sd_show_fua(struct class_device *cdev, char *buf)
176{
177 struct scsi_disk *sdkp = to_scsi_disk(cdev);
178
179 return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
180}
181
Brian Kinga144c5a2006-06-27 11:10:31 -0500182static ssize_t sd_show_allow_restart(struct class_device *cdev, char *buf)
183{
184 struct scsi_disk *sdkp = to_scsi_disk(cdev);
185
186 return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
187}
188
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600189static struct class_device_attribute sd_disk_attrs[] = {
190 __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
191 sd_store_cache_type),
192 __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
Brian Kinga144c5a2006-06-27 11:10:31 -0500193 __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
194 sd_store_allow_restart),
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600195 __ATTR_NULL,
196};
197
198static struct class sd_disk_class = {
199 .name = "scsi_disk",
200 .owner = THIS_MODULE,
201 .release = scsi_disk_release,
202 .class_dev_attrs = sd_disk_attrs,
203};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205static struct scsi_driver sd_template = {
206 .owner = THIS_MODULE,
207 .gendrv = {
208 .name = "sd",
209 .probe = sd_probe,
210 .remove = sd_remove,
211 .shutdown = sd_shutdown,
212 },
213 .rescan = sd_rescan,
214 .init_command = sd_init_command,
215 .issue_flush = sd_issue_flush,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216};
217
218/*
219 * Device no to disk mapping:
220 *
221 * major disc2 disc p1
222 * |............|.............|....|....| <- dev_t
223 * 31 20 19 8 7 4 3 0
224 *
225 * Inside a major, we have 16k disks, however mapped non-
226 * contiguously. The first 16 disks are for major0, the next
227 * ones with major1, ... Disk 256 is for major0 again, disk 272
228 * for major1, ...
229 * As we stay compatible with our numbering scheme, we can reuse
230 * the well-know SCSI majors 8, 65--71, 136--143.
231 */
232static int sd_major(int major_idx)
233{
234 switch (major_idx) {
235 case 0:
236 return SCSI_DISK0_MAJOR;
237 case 1 ... 7:
238 return SCSI_DISK1_MAJOR + major_idx - 1;
239 case 8 ... 15:
240 return SCSI_DISK8_MAJOR + major_idx - 8;
241 default:
242 BUG();
243 return 0; /* shut up gcc */
244 }
245}
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247static inline struct scsi_disk *scsi_disk(struct gendisk *disk)
248{
249 return container_of(disk->private_data, struct scsi_disk, driver);
250}
251
Alan Stern39b7f1e2005-11-04 14:44:41 -0500252static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 struct scsi_disk *sdkp = NULL;
255
Alan Stern39b7f1e2005-11-04 14:44:41 -0500256 if (disk->private_data) {
257 sdkp = scsi_disk(disk);
258 if (scsi_device_get(sdkp->device) == 0)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600259 class_device_get(&sdkp->cdev);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500260 else
261 sdkp = NULL;
262 }
263 return sdkp;
264}
265
266static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
267{
268 struct scsi_disk *sdkp;
269
Arjan van de Ven0b950672006-01-11 13:16:10 +0100270 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500271 sdkp = __scsi_disk_get(disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100272 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return sdkp;
Alan Stern39b7f1e2005-11-04 14:44:41 -0500274}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Alan Stern39b7f1e2005-11-04 14:44:41 -0500276static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
277{
278 struct scsi_disk *sdkp;
279
Arjan van de Ven0b950672006-01-11 13:16:10 +0100280 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500281 sdkp = dev_get_drvdata(dev);
282 if (sdkp)
283 sdkp = __scsi_disk_get(sdkp->disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100284 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return sdkp;
286}
287
288static void scsi_disk_put(struct scsi_disk *sdkp)
289{
290 struct scsi_device *sdev = sdkp->device;
291
Arjan van de Ven0b950672006-01-11 13:16:10 +0100292 mutex_lock(&sd_ref_mutex);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600293 class_device_put(&sdkp->cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 scsi_device_put(sdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100295 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
298/**
299 * sd_init_command - build a scsi (read or write) command from
300 * information in the request structure.
301 * @SCpnt: pointer to mid-level's per scsi command structure that
302 * contains request and into which the scsi command is written
303 *
304 * Returns 1 if successful and 0 if error (or cannot be done now).
305 **/
306static int sd_init_command(struct scsi_cmnd * SCpnt)
307{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct scsi_device *sdp = SCpnt->device;
309 struct request *rq = SCpnt->request;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100310 struct gendisk *disk = rq->rq_disk;
311 sector_t block = rq->sector;
312 unsigned int this_count = SCpnt->request_bufflen >> 9;
313 unsigned int timeout = sdp->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 SCSI_LOG_HLQUEUE(1, printk("sd_init_command: disk=%s, block=%llu, "
316 "count=%d\n", disk->disk_name,
317 (unsigned long long)block, this_count));
318
319 if (!sdp || !scsi_device_online(sdp) ||
320 block + rq->nr_sectors > get_capacity(disk)) {
321 SCSI_LOG_HLQUEUE(2, printk("Finishing %ld sectors\n",
322 rq->nr_sectors));
323 SCSI_LOG_HLQUEUE(2, printk("Retry with 0x%p\n", SCpnt));
324 return 0;
325 }
326
327 if (sdp->changed) {
328 /*
329 * quietly refuse to do anything to a changed disc until
330 * the changed bit has been reset
331 */
332 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
333 return 0;
334 }
335 SCSI_LOG_HLQUEUE(2, printk("%s : block=%llu\n",
336 disk->disk_name, (unsigned long long)block));
337
338 /*
339 * If we have a 1K hardware sectorsize, prevent access to single
340 * 512 byte sectors. In theory we could handle this - in fact
341 * the scsi cdrom driver must be able to handle this because
342 * we typically use 1K blocksizes, and cdroms typically have
343 * 2K hardware sectorsizes. Of course, things are simpler
344 * with the cdrom, since it is read-only. For performance
345 * reasons, the filesystems should be able to handle this
346 * and not force the scsi disk driver to use bounce buffers
347 * for this.
348 */
349 if (sdp->sector_size == 1024) {
350 if ((block & 1) || (rq->nr_sectors & 1)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500351 scmd_printk(KERN_ERR, SCpnt,
352 "Bad block number requested\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return 0;
354 } else {
355 block = block >> 1;
356 this_count = this_count >> 1;
357 }
358 }
359 if (sdp->sector_size == 2048) {
360 if ((block & 3) || (rq->nr_sectors & 3)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500361 scmd_printk(KERN_ERR, SCpnt,
362 "Bad block number requested\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return 0;
364 } else {
365 block = block >> 2;
366 this_count = this_count >> 2;
367 }
368 }
369 if (sdp->sector_size == 4096) {
370 if ((block & 7) || (rq->nr_sectors & 7)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500371 scmd_printk(KERN_ERR, SCpnt,
372 "Bad block number requested\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return 0;
374 } else {
375 block = block >> 3;
376 this_count = this_count >> 3;
377 }
378 }
379 if (rq_data_dir(rq) == WRITE) {
380 if (!sdp->writeable) {
381 return 0;
382 }
383 SCpnt->cmnd[0] = WRITE_6;
384 SCpnt->sc_data_direction = DMA_TO_DEVICE;
385 } else if (rq_data_dir(rq) == READ) {
386 SCpnt->cmnd[0] = READ_6;
387 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
388 } else {
Martin K. Petersene73aec82007-02-27 22:40:55 -0500389 scmd_printk(KERN_ERR, SCpnt, "Unknown command %x\n", rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return 0;
391 }
392
393 SCSI_LOG_HLQUEUE(2, printk("%s : %s %d/%ld 512 byte blocks.\n",
394 disk->disk_name, (rq_data_dir(rq) == WRITE) ?
395 "writing" : "reading", this_count, rq->nr_sectors));
396
397 SCpnt->cmnd[1] = 0;
398
399 if (block > 0xffffffff) {
400 SCpnt->cmnd[0] += READ_16 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100401 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
403 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
404 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
405 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
406 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
407 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
408 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
409 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
410 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
411 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
412 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
413 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
414 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
415 } else if ((this_count > 0xff) || (block > 0x1fffff) ||
416 SCpnt->device->use_10_for_rw) {
417 if (this_count > 0xffff)
418 this_count = 0xffff;
419
420 SCpnt->cmnd[0] += READ_10 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100421 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
423 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
424 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
425 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
426 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
427 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
428 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
429 } else {
Tejun Heo007365a2006-01-06 09:53:52 +0100430 if (unlikely(blk_fua_rq(rq))) {
431 /*
432 * This happens only if this drive failed
433 * 10byte rw command with ILLEGAL_REQUEST
434 * during operation and thus turned off
435 * use_10_for_rw.
436 */
Martin K. Petersene73aec82007-02-27 22:40:55 -0500437 scmd_printk(KERN_ERR, SCpnt,
438 "FUA write on READ/WRITE(6) drive\n");
Tejun Heo007365a2006-01-06 09:53:52 +0100439 return 0;
440 }
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
443 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
444 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
445 SCpnt->cmnd[4] = (unsigned char) this_count;
446 SCpnt->cmnd[5] = 0;
447 }
Christoph Hellwig631c2282006-07-08 20:42:15 +0200448 SCpnt->request_bufflen = this_count * sdp->sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 /*
451 * We shouldn't disconnect in the middle of a sector, so with a dumb
452 * host adapter, it's safe to assume that we can at least transfer
453 * this many bytes between each connect / disconnect.
454 */
455 SCpnt->transfersize = sdp->sector_size;
456 SCpnt->underflow = this_count << 9;
457 SCpnt->allowed = SD_MAX_RETRIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 SCpnt->timeout_per_command = timeout;
459
460 /*
461 * This is the completion routine we use. This is matched in terms
462 * of capability to this function.
463 */
464 SCpnt->done = sd_rw_intr;
465
466 /*
467 * This indicates that the command is ready from our end to be
468 * queued.
469 */
470 return 1;
471}
472
473/**
474 * sd_open - open a scsi disk device
475 * @inode: only i_rdev member may be used
476 * @filp: only f_mode and f_flags may be used
477 *
478 * Returns 0 if successful. Returns a negated errno value in case
479 * of error.
480 *
481 * Note: This can be called from a user context (e.g. fsck(1) )
482 * or from within the kernel (e.g. as a result of a mount(1) ).
483 * In the latter case @inode and @filp carry an abridged amount
484 * of information as noted above.
485 **/
486static int sd_open(struct inode *inode, struct file *filp)
487{
488 struct gendisk *disk = inode->i_bdev->bd_disk;
489 struct scsi_disk *sdkp;
490 struct scsi_device *sdev;
491 int retval;
492
493 if (!(sdkp = scsi_disk_get(disk)))
494 return -ENXIO;
495
496
497 SCSI_LOG_HLQUEUE(3, printk("sd_open: disk=%s\n", disk->disk_name));
498
499 sdev = sdkp->device;
500
501 /*
502 * If the device is in error recovery, wait until it is done.
503 * If the device is offline, then disallow any access to it.
504 */
505 retval = -ENXIO;
506 if (!scsi_block_when_processing_errors(sdev))
507 goto error_out;
508
509 if (sdev->removable || sdkp->write_prot)
510 check_disk_change(inode->i_bdev);
511
512 /*
513 * If the drive is empty, just let the open fail.
514 */
515 retval = -ENOMEDIUM;
516 if (sdev->removable && !sdkp->media_present &&
517 !(filp->f_flags & O_NDELAY))
518 goto error_out;
519
520 /*
521 * If the device has the write protect tab set, have the open fail
522 * if the user expects to be able to write to the thing.
523 */
524 retval = -EROFS;
525 if (sdkp->write_prot && (filp->f_mode & FMODE_WRITE))
526 goto error_out;
527
528 /*
529 * It is possible that the disk changing stuff resulted in
530 * the device being taken offline. If this is the case,
531 * report this to the user, and don't pretend that the
532 * open actually succeeded.
533 */
534 retval = -ENXIO;
535 if (!scsi_device_online(sdev))
536 goto error_out;
537
538 if (!sdkp->openers++ && sdev->removable) {
539 if (scsi_block_when_processing_errors(sdev))
540 scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
541 }
542
543 return 0;
544
545error_out:
546 scsi_disk_put(sdkp);
547 return retval;
548}
549
550/**
551 * sd_release - invoked when the (last) close(2) is called on this
552 * scsi disk.
553 * @inode: only i_rdev member may be used
554 * @filp: only f_mode and f_flags may be used
555 *
556 * Returns 0.
557 *
558 * Note: may block (uninterruptible) if error recovery is underway
559 * on this disk.
560 **/
561static int sd_release(struct inode *inode, struct file *filp)
562{
563 struct gendisk *disk = inode->i_bdev->bd_disk;
564 struct scsi_disk *sdkp = scsi_disk(disk);
565 struct scsi_device *sdev = sdkp->device;
566
567 SCSI_LOG_HLQUEUE(3, printk("sd_release: disk=%s\n", disk->disk_name));
568
569 if (!--sdkp->openers && sdev->removable) {
570 if (scsi_block_when_processing_errors(sdev))
571 scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
572 }
573
574 /*
575 * XXX and what if there are packets in flight and this close()
576 * XXX is followed by a "rmmod sd_mod"?
577 */
578 scsi_disk_put(sdkp);
579 return 0;
580}
581
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800582static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
585 struct scsi_device *sdp = sdkp->device;
586 struct Scsi_Host *host = sdp->host;
587 int diskinfo[4];
588
589 /* default to most commonly used values */
590 diskinfo[0] = 0x40; /* 1 << 6 */
591 diskinfo[1] = 0x20; /* 1 << 5 */
592 diskinfo[2] = sdkp->capacity >> 11;
593
594 /* override with calculated, extended default, or driver values */
595 if (host->hostt->bios_param)
596 host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
597 else
598 scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
599
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800600 geo->heads = diskinfo[0];
601 geo->sectors = diskinfo[1];
602 geo->cylinders = diskinfo[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return 0;
604}
605
606/**
607 * sd_ioctl - process an ioctl
608 * @inode: only i_rdev/i_bdev members may be used
609 * @filp: only f_mode and f_flags may be used
610 * @cmd: ioctl command number
611 * @arg: this is third argument given to ioctl(2) system call.
612 * Often contains a pointer.
613 *
614 * Returns 0 if successful (some ioctls return postive numbers on
615 * success as well). Returns a negated errno value in case of error.
616 *
617 * Note: most ioctls are forward onto the block subsystem or further
618 * down in the scsi subsytem.
619 **/
620static int sd_ioctl(struct inode * inode, struct file * filp,
621 unsigned int cmd, unsigned long arg)
622{
623 struct block_device *bdev = inode->i_bdev;
624 struct gendisk *disk = bdev->bd_disk;
625 struct scsi_device *sdp = scsi_disk(disk)->device;
626 void __user *p = (void __user *)arg;
627 int error;
628
629 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
630 disk->disk_name, cmd));
631
632 /*
633 * If we are in the middle of error recovery, don't let anyone
634 * else try and use this device. Also, if error recovery fails, it
635 * may try and take the device offline, in which case all further
636 * access to the device is prohibited.
637 */
638 error = scsi_nonblockable_ioctl(sdp, cmd, p, filp);
639 if (!scsi_block_when_processing_errors(sdp) || !error)
640 return error;
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /*
643 * Send SCSI addressing ioctls directly to mid level, send other
644 * ioctls to block level and then onto mid level if they can't be
645 * resolved.
646 */
647 switch (cmd) {
648 case SCSI_IOCTL_GET_IDLUN:
649 case SCSI_IOCTL_GET_BUS_NUMBER:
650 return scsi_ioctl(sdp, cmd, p);
651 default:
652 error = scsi_cmd_ioctl(filp, disk, cmd, p);
653 if (error != -ENOTTY)
654 return error;
655 }
656 return scsi_ioctl(sdp, cmd, p);
657}
658
659static void set_media_not_present(struct scsi_disk *sdkp)
660{
661 sdkp->media_present = 0;
662 sdkp->capacity = 0;
663 sdkp->device->changed = 1;
664}
665
666/**
667 * sd_media_changed - check if our medium changed
668 * @disk: kernel device descriptor
669 *
670 * Returns 0 if not applicable or no change; 1 if change
671 *
672 * Note: this function is invoked from the block subsystem.
673 **/
674static int sd_media_changed(struct gendisk *disk)
675{
676 struct scsi_disk *sdkp = scsi_disk(disk);
677 struct scsi_device *sdp = sdkp->device;
678 int retval;
679
680 SCSI_LOG_HLQUEUE(3, printk("sd_media_changed: disk=%s\n",
681 disk->disk_name));
682
683 if (!sdp->removable)
684 return 0;
685
686 /*
687 * If the device is offline, don't send any commands - just pretend as
688 * if the command failed. If the device ever comes back online, we
689 * can deal with it then. It is only because of unrecoverable errors
690 * that we would ever take a device offline in the first place.
691 */
692 if (!scsi_device_online(sdp))
693 goto not_present;
694
695 /*
696 * Using TEST_UNIT_READY enables differentiation between drive with
697 * no cartridge loaded - NOT READY, drive with changed cartridge -
698 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
699 *
700 * Drives that auto spin down. eg iomega jaz 1G, will be started
701 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
702 * sd_revalidate() is called.
703 */
704 retval = -ENODEV;
705 if (scsi_block_when_processing_errors(sdp))
706 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES);
707
708 /*
709 * Unable to test, unit probably not ready. This usually
710 * means there is no disc in the drive. Mark as changed,
711 * and we will figure it out later once the drive is
712 * available again.
713 */
714 if (retval)
715 goto not_present;
716
717 /*
718 * For removable scsi disk we have to recognise the presence
719 * of a disk in the drive. This is kept in the struct scsi_disk
720 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
721 */
722 sdkp->media_present = 1;
723
724 retval = sdp->changed;
725 sdp->changed = 0;
726
727 return retval;
728
729not_present:
730 set_media_not_present(sdkp);
731 return 1;
732}
733
Martin K. Petersene73aec82007-02-27 22:40:55 -0500734static int sd_sync_cache(struct scsi_disk *sdkp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 int retries, res;
Martin K. Petersene73aec82007-02-27 22:40:55 -0500737 struct scsi_device *sdp = sdkp->device;
James Bottomleyea73a9f2005-08-28 11:33:52 -0500738 struct scsi_sense_hdr sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 if (!scsi_device_online(sdp))
741 return -ENODEV;
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 for (retries = 3; retries > 0; --retries) {
745 unsigned char cmd[10] = { 0 };
746
747 cmd[0] = SYNCHRONIZE_CACHE;
748 /*
749 * Leave the rest of the command zero to indicate
750 * flush everything.
751 */
James Bottomleyea73a9f2005-08-28 11:33:52 -0500752 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
753 SD_TIMEOUT, SD_MAX_RETRIES);
754 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 break;
756 }
757
Martin K. Petersene73aec82007-02-27 22:40:55 -0500758 if (res) {
759 sd_print_result(sdkp, res);
760 if (driver_byte(res) & DRIVER_SENSE)
761 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return res;
765}
766
767static int sd_issue_flush(struct device *dev, sector_t *error_sector)
768{
Alan Stern39b7f1e2005-11-04 14:44:41 -0500769 int ret = 0;
Alan Stern39b7f1e2005-11-04 14:44:41 -0500770 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 if (!sdkp)
773 return -ENODEV;
774
Alan Stern39b7f1e2005-11-04 14:44:41 -0500775 if (sdkp->WCE)
Martin K. Petersene73aec82007-02-27 22:40:55 -0500776 ret = sd_sync_cache(sdkp);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500777 scsi_disk_put(sdkp);
778 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
Tejun Heo461d4e92006-01-06 09:52:55 +0100781static void sd_prepare_flush(request_queue_t *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500783 memset(rq->cmd, 0, sizeof(rq->cmd));
Jens Axboe4aff5e22006-08-10 08:44:47 +0200784 rq->cmd_type = REQ_TYPE_BLOCK_PC;
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500785 rq->timeout = SD_TIMEOUT;
786 rq->cmd[0] = SYNCHRONIZE_CACHE;
Tejun Heo461d4e92006-01-06 09:52:55 +0100787 rq->cmd_len = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
790static void sd_rescan(struct device *dev)
791{
Alan Stern39b7f1e2005-11-04 14:44:41 -0500792 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
793
794 if (sdkp) {
795 sd_revalidate_disk(sdkp->disk);
796 scsi_disk_put(sdkp);
797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
800
801#ifdef CONFIG_COMPAT
802/*
803 * This gets directly called from VFS. When the ioctl
804 * is not recognized we go back to the other translation paths.
805 */
806static long sd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
807{
Josef Sipek7ac62072006-12-08 02:37:37 -0800808 struct block_device *bdev = file->f_path.dentry->d_inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 struct gendisk *disk = bdev->bd_disk;
810 struct scsi_device *sdev = scsi_disk(disk)->device;
811
812 /*
813 * If we are in the middle of error recovery, don't let anyone
814 * else try and use this device. Also, if error recovery fails, it
815 * may try and take the device offline, in which case all further
816 * access to the device is prohibited.
817 */
818 if (!scsi_block_when_processing_errors(sdev))
819 return -ENODEV;
820
821 if (sdev->host->hostt->compat_ioctl) {
822 int ret;
823
824 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
825
826 return ret;
827 }
828
829 /*
830 * Let the static ioctl translation table take care of it.
831 */
832 return -ENOIOCTLCMD;
833}
834#endif
835
836static struct block_device_operations sd_fops = {
837 .owner = THIS_MODULE,
838 .open = sd_open,
839 .release = sd_release,
840 .ioctl = sd_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800841 .getgeo = sd_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842#ifdef CONFIG_COMPAT
843 .compat_ioctl = sd_compat_ioctl,
844#endif
845 .media_changed = sd_media_changed,
846 .revalidate_disk = sd_revalidate_disk,
847};
848
849/**
850 * sd_rw_intr - bottom half handler: called when the lower level
851 * driver has completed (successfully or otherwise) a scsi command.
852 * @SCpnt: mid-level's per command structure.
853 *
854 * Note: potentially run from within an ISR. Must not block.
855 **/
856static void sd_rw_intr(struct scsi_cmnd * SCpnt)
857{
858 int result = SCpnt->result;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700859 unsigned int xfer_size = SCpnt->request_bufflen;
860 unsigned int good_bytes = result ? 0 : xfer_size;
861 u64 start_lba = SCpnt->request->sector;
862 u64 bad_lba;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 struct scsi_sense_hdr sshdr;
864 int sense_valid = 0;
865 int sense_deferred = 0;
866 int info_valid;
867
868 if (result) {
869 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
870 if (sense_valid)
871 sense_deferred = scsi_sense_is_deferred(&sshdr);
872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873#ifdef CONFIG_SCSI_LOGGING
874 SCSI_LOG_HLCOMPLETE(1, printk("sd_rw_intr: %s: res=0x%x\n",
875 SCpnt->request->rq_disk->disk_name, result));
876 if (sense_valid) {
877 SCSI_LOG_HLCOMPLETE(1, printk("sd_rw_intr: sb[respc,sk,asc,"
878 "ascq]=%x,%x,%x,%x\n", sshdr.response_code,
879 sshdr.sense_key, sshdr.asc, sshdr.ascq));
880 }
881#endif
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700882 if (driver_byte(result) != DRIVER_SENSE &&
883 (!sense_valid || sense_deferred))
884 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700886 switch (sshdr.sense_key) {
887 case HARDWARE_ERROR:
888 case MEDIUM_ERROR:
889 if (!blk_fs_request(SCpnt->request))
890 goto out;
891 info_valid = scsi_get_sense_info_fld(SCpnt->sense_buffer,
892 SCSI_SENSE_BUFFERSIZE,
893 &bad_lba);
894 if (!info_valid)
895 goto out;
896 if (xfer_size <= SCpnt->device->sector_size)
897 goto out;
898 switch (SCpnt->device->sector_size) {
899 case 256:
900 start_lba <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700902 case 512:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700904 case 1024:
905 start_lba >>= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700907 case 2048:
908 start_lba >>= 2;
909 break;
910 case 4096:
911 start_lba >>= 3;
912 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 default:
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700914 /* Print something here with limiting frequency. */
915 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 break;
917 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700918 /* This computation should always be done in terms of
919 * the resolution of the device's medium.
920 */
921 good_bytes = (bad_lba - start_lba)*SCpnt->device->sector_size;
922 break;
923 case RECOVERED_ERROR:
924 case NO_SENSE:
925 /* Inform the user, but make sure that it's not treated
926 * as a hard error.
927 */
928 scsi_print_sense("sd", SCpnt);
929 SCpnt->result = 0;
930 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
931 good_bytes = xfer_size;
932 break;
933 case ILLEGAL_REQUEST:
934 if (SCpnt->device->use_10_for_rw &&
935 (SCpnt->cmnd[0] == READ_10 ||
936 SCpnt->cmnd[0] == WRITE_10))
937 SCpnt->device->use_10_for_rw = 0;
938 if (SCpnt->device->use_10_for_ms &&
939 (SCpnt->cmnd[0] == MODE_SENSE_10 ||
940 SCpnt->cmnd[0] == MODE_SELECT_10))
941 SCpnt->device->use_10_for_ms = 0;
942 break;
943 default:
944 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700946 out:
947 scsi_io_completion(SCpnt, good_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
James Bottomleyea73a9f2005-08-28 11:33:52 -0500950static int media_not_present(struct scsi_disk *sdkp,
951 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
James Bottomleyea73a9f2005-08-28 11:33:52 -0500954 if (!scsi_sense_valid(sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return 0;
956 /* not invoked for commands that could return deferred errors */
James Bottomleyea73a9f2005-08-28 11:33:52 -0500957 if (sshdr->sense_key != NOT_READY &&
958 sshdr->sense_key != UNIT_ATTENTION)
959 return 0;
960 if (sshdr->asc != 0x3A) /* medium not present */
961 return 0;
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 set_media_not_present(sdkp);
964 return 1;
965}
966
967/*
968 * spinup disk - called only in sd_revalidate_disk()
969 */
970static void
Martin K. Petersene73aec82007-02-27 22:40:55 -0500971sd_spinup_disk(struct scsi_disk *sdkp)
James Bottomleyea73a9f2005-08-28 11:33:52 -0500972{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 unsigned char cmd[10];
Alan Stern4451e472005-07-12 10:45:17 -0400974 unsigned long spintime_expire = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 int retries, spintime;
976 unsigned int the_result;
977 struct scsi_sense_hdr sshdr;
978 int sense_valid = 0;
979
980 spintime = 0;
981
982 /* Spin up drives, as required. Only do this at boot time */
983 /* Spinup needs to be done for module loads too. */
984 do {
985 retries = 0;
986
987 do {
988 cmd[0] = TEST_UNIT_READY;
989 memset((void *) &cmd[1], 0, 9);
990
James Bottomleyea73a9f2005-08-28 11:33:52 -0500991 the_result = scsi_execute_req(sdkp->device, cmd,
992 DMA_NONE, NULL, 0,
993 &sshdr, SD_TIMEOUT,
994 SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Alan Sternb4d38e32006-10-11 16:48:28 -0400996 /*
997 * If the drive has indicated to us that it
998 * doesn't have any media in it, don't bother
999 * with any more polling.
1000 */
1001 if (media_not_present(sdkp, &sshdr))
1002 return;
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001005 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 retries++;
1007 } while (retries < 3 &&
1008 (!scsi_status_is_good(the_result) ||
1009 ((driver_byte(the_result) & DRIVER_SENSE) &&
1010 sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1013 /* no sense, TUR either succeeded or failed
1014 * with a status error */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001015 if(!spintime && !scsi_status_is_good(the_result)) {
1016 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1017 sd_print_result(sdkp, the_result);
1018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 break;
1020 }
1021
1022 /*
1023 * The device does not want the automatic start to be issued.
1024 */
1025 if (sdkp->device->no_start_on_add) {
1026 break;
1027 }
1028
1029 /*
1030 * If manual intervention is required, or this is an
1031 * absent USB storage device, a spinup is meaningless.
1032 */
1033 if (sense_valid &&
1034 sshdr.sense_key == NOT_READY &&
1035 sshdr.asc == 4 && sshdr.ascq == 3) {
1036 break; /* manual intervention required */
1037
1038 /*
1039 * Issue command to spin up drive when not ready
1040 */
1041 } else if (sense_valid && sshdr.sense_key == NOT_READY) {
1042 if (!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001043 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 cmd[0] = START_STOP;
1045 cmd[1] = 1; /* Return immediately */
1046 memset((void *) &cmd[2], 0, 8);
1047 cmd[4] = 1; /* Start spin cycle */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001048 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1049 NULL, 0, &sshdr,
1050 SD_TIMEOUT, SD_MAX_RETRIES);
Alan Stern4451e472005-07-12 10:45:17 -04001051 spintime_expire = jiffies + 100 * HZ;
1052 spintime = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 /* Wait 1 second for next try */
1055 msleep(1000);
1056 printk(".");
Alan Stern4451e472005-07-12 10:45:17 -04001057
1058 /*
1059 * Wait for USB flash devices with slow firmware.
1060 * Yes, this sense key/ASC combination shouldn't
1061 * occur here. It's characteristic of these devices.
1062 */
1063 } else if (sense_valid &&
1064 sshdr.sense_key == UNIT_ATTENTION &&
1065 sshdr.asc == 0x28) {
1066 if (!spintime) {
1067 spintime_expire = jiffies + 5 * HZ;
1068 spintime = 1;
1069 }
1070 /* Wait 1 second for next try */
1071 msleep(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 } else {
1073 /* we don't understand the sense code, so it's
1074 * probably pointless to loop */
1075 if(!spintime) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001076 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1077 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079 break;
1080 }
1081
Alan Stern4451e472005-07-12 10:45:17 -04001082 } while (spintime && time_before_eq(jiffies, spintime_expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 if (spintime) {
1085 if (scsi_status_is_good(the_result))
1086 printk("ready\n");
1087 else
1088 printk("not responding...\n");
1089 }
1090}
1091
1092/*
1093 * read disk capacity
1094 */
1095static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001096sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001097{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 unsigned char cmd[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 int the_result, retries;
1100 int sector_size = 0;
1101 int longrc = 0;
1102 struct scsi_sense_hdr sshdr;
1103 int sense_valid = 0;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001104 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106repeat:
1107 retries = 3;
1108 do {
1109 if (longrc) {
1110 memset((void *) cmd, 0, 16);
1111 cmd[0] = SERVICE_ACTION_IN;
1112 cmd[1] = SAI_READ_CAPACITY_16;
1113 cmd[13] = 12;
1114 memset((void *) buffer, 0, 12);
1115 } else {
1116 cmd[0] = READ_CAPACITY;
1117 memset((void *) &cmd[1], 0, 9);
1118 memset((void *) buffer, 0, 8);
1119 }
1120
James Bottomleyea73a9f2005-08-28 11:33:52 -05001121 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
1122 buffer, longrc ? 12 : 8, &sshdr,
1123 SD_TIMEOUT, SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
James Bottomleyea73a9f2005-08-28 11:33:52 -05001125 if (media_not_present(sdkp, &sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return;
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001129 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 retries--;
1131
1132 } while (the_result && retries);
1133
1134 if (the_result && !longrc) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001135 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY failed\n");
1136 sd_print_result(sdkp, the_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (driver_byte(the_result) & DRIVER_SENSE)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001138 sd_print_sense_hdr(sdkp, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001140 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142 /* Set dirty bit for removable devices if not ready -
1143 * sometimes drives will not report this properly. */
1144 if (sdp->removable &&
1145 sense_valid && sshdr.sense_key == NOT_READY)
1146 sdp->changed = 1;
1147
1148 /* Either no media are present but the drive didn't tell us,
1149 or they are present but the read capacity command fails */
1150 /* sdkp->media_present = 0; -- not always correct */
Hannes Reinecke69bdd882006-09-01 15:50:23 +02001151 sdkp->capacity = 0; /* unknown mapped to zero - as usual */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 return;
1154 } else if (the_result && longrc) {
1155 /* READ CAPACITY(16) has been failed */
Martin K. Petersene73aec82007-02-27 22:40:55 -05001156 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY(16) failed\n");
1157 sd_print_result(sdkp, the_result);
1158 sd_printk(KERN_NOTICE, sdkp, "Use 0xffffffff as device size\n");
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 sdkp->capacity = 1 + (sector_t) 0xffffffff;
1161 goto got_data;
1162 }
1163
1164 if (!longrc) {
1165 sector_size = (buffer[4] << 24) |
1166 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
1167 if (buffer[0] == 0xff && buffer[1] == 0xff &&
1168 buffer[2] == 0xff && buffer[3] == 0xff) {
1169 if(sizeof(sdkp->capacity) > 4) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001170 sd_printk(KERN_NOTICE, sdkp, "Very big device. "
1171 "Trying to use READ CAPACITY(16).\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 longrc = 1;
1173 goto repeat;
1174 }
Martin K. Petersene73aec82007-02-27 22:40:55 -05001175 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use "
1176 "a kernel compiled with support for large "
1177 "block devices.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 sdkp->capacity = 0;
1179 goto got_data;
1180 }
1181 sdkp->capacity = 1 + (((sector_t)buffer[0] << 24) |
1182 (buffer[1] << 16) |
1183 (buffer[2] << 8) |
1184 buffer[3]);
1185 } else {
1186 sdkp->capacity = 1 + (((u64)buffer[0] << 56) |
1187 ((u64)buffer[1] << 48) |
1188 ((u64)buffer[2] << 40) |
1189 ((u64)buffer[3] << 32) |
1190 ((sector_t)buffer[4] << 24) |
1191 ((sector_t)buffer[5] << 16) |
1192 ((sector_t)buffer[6] << 8) |
1193 (sector_t)buffer[7]);
1194
1195 sector_size = (buffer[8] << 24) |
1196 (buffer[9] << 16) | (buffer[10] << 8) | buffer[11];
1197 }
1198
1199 /* Some devices return the total number of sectors, not the
1200 * highest sector number. Make the necessary adjustment. */
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001201 if (sdp->fix_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 --sdkp->capacity;
1203
Oliver Neukum61bf54b2007-02-08 09:04:48 +01001204 /* Some devices have version which report the correct sizes
1205 * and others which do not. We guess size according to a heuristic
1206 * and err on the side of lowering the capacity. */
1207 } else {
1208 if (sdp->guess_capacity)
1209 if (sdkp->capacity & 0x01) /* odd sizes are odd */
1210 --sdkp->capacity;
1211 }
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213got_data:
1214 if (sector_size == 0) {
1215 sector_size = 512;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001216 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
1217 "assuming 512.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
1219
1220 if (sector_size != 512 &&
1221 sector_size != 1024 &&
1222 sector_size != 2048 &&
1223 sector_size != 4096 &&
1224 sector_size != 256) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001225 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
1226 sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 /*
1228 * The user might want to re-format the drive with
1229 * a supported sectorsize. Once this happens, it
1230 * would be relatively trivial to set the thing up.
1231 * For this reason, we leave the thing in the table.
1232 */
1233 sdkp->capacity = 0;
1234 /*
1235 * set a bogus sector size so the normal read/write
1236 * logic in the block layer will eventually refuse any
1237 * request on this device without tripping over power
1238 * of two sector size assumptions
1239 */
1240 sector_size = 512;
1241 }
1242 {
1243 /*
1244 * The msdos fs needs to know the hardware sector size
1245 * So I have created this table. See ll_rw_blk.c
1246 * Jacques Gelinas (Jacques@solucorp.qc.ca)
1247 */
1248 int hard_sector = sector_size;
James Bottomley7a691bd2005-10-28 13:17:30 -05001249 sector_t sz = (sdkp->capacity/2) * (hard_sector/256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 request_queue_t *queue = sdp->request_queue;
James Bottomley7a691bd2005-10-28 13:17:30 -05001251 sector_t mb = sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 blk_queue_hardsect_size(queue, hard_sector);
1254 /* avoid 64-bit division on 32-bit platforms */
James Bottomley7a691bd2005-10-28 13:17:30 -05001255 sector_div(sz, 625);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 mb -= sz - 974;
1257 sector_div(mb, 1950);
1258
Martin K. Petersene73aec82007-02-27 22:40:55 -05001259 sd_printk(KERN_NOTICE, sdkp,
1260 "%llu %d-byte hardware sectors (%llu MB)\n",
1261 (unsigned long long)sdkp->capacity,
1262 hard_sector, (unsigned long long)mb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
1264
1265 /* Rescale capacity to 512-byte units */
1266 if (sector_size == 4096)
1267 sdkp->capacity <<= 3;
1268 else if (sector_size == 2048)
1269 sdkp->capacity <<= 2;
1270 else if (sector_size == 1024)
1271 sdkp->capacity <<= 1;
1272 else if (sector_size == 256)
1273 sdkp->capacity >>= 1;
1274
1275 sdkp->device->sector_size = sector_size;
1276}
1277
1278/* called with buffer of length 512 */
1279static inline int
James Bottomleyea73a9f2005-08-28 11:33:52 -05001280sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
1281 unsigned char *buffer, int len, struct scsi_mode_data *data,
1282 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
James Bottomleyea73a9f2005-08-28 11:33:52 -05001284 return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
James Bottomley1cf72692005-08-28 11:27:01 -05001285 SD_TIMEOUT, SD_MAX_RETRIES, data,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001286 sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
1288
1289/*
1290 * read write protect setting, if possible - called only in sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001291 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 */
1293static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001294sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001295{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 int res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001297 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 struct scsi_mode_data data;
1299
1300 set_disk_ro(sdkp->disk, 0);
James Bottomleyea73a9f2005-08-28 11:33:52 -05001301 if (sdp->skip_ms_page_3f) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001302 sd_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 return;
1304 }
1305
James Bottomleyea73a9f2005-08-28 11:33:52 -05001306 if (sdp->use_192_bytes_for_3f) {
1307 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 } else {
1309 /*
1310 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1311 * We have to start carefully: some devices hang if we ask
1312 * for more than is available.
1313 */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001314 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 /*
1317 * Second attempt: ask for page 0 When only page 0 is
1318 * implemented, a request for page 3F may return Sense Key
1319 * 5: Illegal Request, Sense Code 24: Invalid field in
1320 * CDB.
1321 */
1322 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001323 res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 /*
1326 * Third attempt: ask 255 bytes, as we did earlier.
1327 */
1328 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001329 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
1330 &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
1332
1333 if (!scsi_status_is_good(res)) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001334 sd_printk(KERN_WARNING, sdkp,
1335 "Test WP failed, assume Write Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 } else {
1337 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
1338 set_disk_ro(sdkp->disk, sdkp->write_prot);
Martin K. Petersene73aec82007-02-27 22:40:55 -05001339 sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
1340 sdkp->write_prot ? "on" : "off");
1341 sd_printk(KERN_DEBUG, sdkp,
1342 "Mode Sense: %02x %02x %02x %02x\n",
1343 buffer[0], buffer[1], buffer[2], buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
1345}
1346
1347/*
1348 * sd_read_cache_type - called only from sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001349 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 */
1351static void
Martin K. Petersene73aec82007-02-27 22:40:55 -05001352sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
Al Viro 631e8a12005-05-16 01:59:55 +01001353{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 int len = 0, res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001355 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Al Viro 631e8a12005-05-16 01:59:55 +01001357 int dbd;
1358 int modepage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 struct scsi_mode_data data;
1360 struct scsi_sense_hdr sshdr;
1361
James Bottomleyea73a9f2005-08-28 11:33:52 -05001362 if (sdp->skip_ms_page_8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 goto defaults;
1364
James Bottomleyea73a9f2005-08-28 11:33:52 -05001365 if (sdp->type == TYPE_RBC) {
Al Viro 631e8a12005-05-16 01:59:55 +01001366 modepage = 6;
1367 dbd = 8;
1368 } else {
1369 modepage = 8;
1370 dbd = 0;
1371 }
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 /* cautiously ask */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001374 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, 4, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 if (!scsi_status_is_good(res))
1377 goto bad_sense;
1378
Al Viro6d73c852006-02-23 02:03:16 +01001379 if (!data.header_length) {
1380 modepage = 6;
Martin K. Petersene73aec82007-02-27 22:40:55 -05001381 sd_printk(KERN_ERR, sdkp, "Missing header in MODE_SENSE response\n");
Al Viro6d73c852006-02-23 02:03:16 +01001382 }
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 /* that went OK, now ask for the proper length */
1385 len = data.length;
1386
1387 /*
1388 * We're only interested in the first three bytes, actually.
1389 * But the data cache page is defined for the first 20.
1390 */
1391 if (len < 3)
1392 goto bad_sense;
1393 if (len > 20)
1394 len = 20;
1395
1396 /* Take headers and block descriptors into account */
1397 len += data.header_length + data.block_descriptor_length;
Al Viro48970802006-02-26 08:34:10 -06001398 if (len > SD_BUF_SIZE)
1399 goto bad_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 /* Get the data */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001402 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404 if (scsi_status_is_good(res)) {
Al Viro 631e8a12005-05-16 01:59:55 +01001405 int offset = data.header_length + data.block_descriptor_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Al Viro48970802006-02-26 08:34:10 -06001407 if (offset >= SD_BUF_SIZE - 2) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001408 sd_printk(KERN_ERR, sdkp, "Malformed MODE SENSE response\n");
Al Viro48970802006-02-26 08:34:10 -06001409 goto defaults;
1410 }
1411
Al Viro 631e8a12005-05-16 01:59:55 +01001412 if ((buffer[offset] & 0x3f) != modepage) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001413 sd_printk(KERN_ERR, sdkp, "Got wrong page\n");
Al Viro 631e8a12005-05-16 01:59:55 +01001414 goto defaults;
1415 }
1416
1417 if (modepage == 8) {
1418 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
1419 sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
1420 } else {
1421 sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
1422 sdkp->RCD = 0;
1423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Tejun Heo007365a2006-01-06 09:53:52 +01001425 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
1426 if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001427 sd_printk(KERN_NOTICE, sdkp,
1428 "Uses READ/WRITE(6), disabling FUA\n");
Tejun Heo007365a2006-01-06 09:53:52 +01001429 sdkp->DPOFUA = 0;
1430 }
1431
Martin K. Petersene73aec82007-02-27 22:40:55 -05001432 sd_printk(KERN_NOTICE, sdkp,
1433 "Write cache: %s, read cache: %s, %s\n",
Luben Tuikovfd44bab2006-11-15 12:47:08 -08001434 sdkp->WCE ? "enabled" : "disabled",
1435 sdkp->RCD ? "disabled" : "enabled",
1436 sdkp->DPOFUA ? "supports DPO and FUA"
1437 : "doesn't support DPO or FUA");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 return;
1440 }
1441
1442bad_sense:
James Bottomleyea73a9f2005-08-28 11:33:52 -05001443 if (scsi_sense_valid(&sshdr) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 sshdr.sense_key == ILLEGAL_REQUEST &&
1445 sshdr.asc == 0x24 && sshdr.ascq == 0x0)
Martin K. Petersene73aec82007-02-27 22:40:55 -05001446 /* Invalid field in CDB */
1447 sd_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 else
Martin K. Petersene73aec82007-02-27 22:40:55 -05001449 sd_printk(KERN_ERR, sdkp, "Asking for cache data failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451defaults:
Martin K. Petersene73aec82007-02-27 22:40:55 -05001452 sd_printk(KERN_ERR, sdkp, "Assuming drive cache: write through\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 sdkp->WCE = 0;
1454 sdkp->RCD = 0;
Al Viro48970802006-02-26 08:34:10 -06001455 sdkp->DPOFUA = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
1457
1458/**
1459 * sd_revalidate_disk - called the first time a new disk is seen,
1460 * performs disk spin up, read_capacity, etc.
1461 * @disk: struct gendisk we care about
1462 **/
1463static int sd_revalidate_disk(struct gendisk *disk)
1464{
1465 struct scsi_disk *sdkp = scsi_disk(disk);
1466 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 unsigned char *buffer;
Tejun Heo461d4e92006-01-06 09:52:55 +01001468 unsigned ordered;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 SCSI_LOG_HLQUEUE(3, printk("sd_revalidate_disk: disk=%s\n", disk->disk_name));
1471
1472 /*
1473 * If the device is offline, don't try and read capacity or any
1474 * of the other niceties.
1475 */
1476 if (!scsi_device_online(sdp))
1477 goto out;
1478
Al Viro48970802006-02-26 08:34:10 -06001479 buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL | __GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 if (!buffer) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001481 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
1482 "allocation failure.\n");
James Bottomleyea73a9f2005-08-28 11:33:52 -05001483 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
1485
1486 /* defaults, until the device tells us otherwise */
1487 sdp->sector_size = 512;
1488 sdkp->capacity = 0;
1489 sdkp->media_present = 1;
1490 sdkp->write_prot = 0;
1491 sdkp->WCE = 0;
1492 sdkp->RCD = 0;
1493
Martin K. Petersene73aec82007-02-27 22:40:55 -05001494 sd_spinup_disk(sdkp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 /*
1497 * Without media there is no reason to ask; moreover, some devices
1498 * react badly if we do.
1499 */
1500 if (sdkp->media_present) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001501 sd_read_capacity(sdkp, buffer);
1502 sd_read_write_protect_flag(sdkp, buffer);
1503 sd_read_cache_type(sdkp, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 }
Tejun Heo461d4e92006-01-06 09:52:55 +01001505
1506 /*
1507 * We now have all cache related info, determine how we deal
1508 * with ordered requests. Note that as the current SCSI
1509 * dispatch function can alter request order, we cannot use
1510 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1511 */
1512 if (sdkp->WCE)
Tejun Heo007365a2006-01-06 09:53:52 +01001513 ordered = sdkp->DPOFUA
1514 ? QUEUE_ORDERED_DRAIN_FUA : QUEUE_ORDERED_DRAIN_FLUSH;
Tejun Heo461d4e92006-01-06 09:52:55 +01001515 else
1516 ordered = QUEUE_ORDERED_DRAIN;
1517
1518 blk_queue_ordered(sdkp->disk->queue, ordered, sd_prepare_flush);
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 set_capacity(disk, sdkp->capacity);
1521 kfree(buffer);
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 out:
1524 return 0;
1525}
1526
1527/**
1528 * sd_probe - called during driver initialization and whenever a
1529 * new scsi device is attached to the system. It is called once
1530 * for each scsi device (not just disks) present.
1531 * @dev: pointer to device object
1532 *
1533 * Returns 0 if successful (or not interested in this scsi device
1534 * (e.g. scanner)); 1 when there is an error.
1535 *
1536 * Note: this function is invoked from the scsi mid-level.
1537 * This function sets up the mapping between a given
1538 * <host,channel,id,lun> (found in sdp) and new device name
1539 * (e.g. /dev/sda). More precisely it is the block device major
1540 * and minor number that is chosen here.
1541 *
1542 * Assume sd_attach is not re-entrant (for time being)
1543 * Also think about sd_attach() and sd_remove() running coincidentally.
1544 **/
1545static int sd_probe(struct device *dev)
1546{
1547 struct scsi_device *sdp = to_scsi_device(dev);
1548 struct scsi_disk *sdkp;
1549 struct gendisk *gd;
1550 u32 index;
1551 int error;
1552
1553 error = -ENODEV;
Al Viro 631e8a12005-05-16 01:59:55 +01001554 if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 goto out;
1556
James Bottomley9ccfc752005-10-02 11:45:08 -05001557 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
1558 "sd_attach\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 error = -ENOMEM;
Jes Sorensen24669f752006-01-16 10:31:18 -05001561 sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 if (!sdkp)
1563 goto out;
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 gd = alloc_disk(16);
1566 if (!gd)
1567 goto out_free;
1568
1569 if (!idr_pre_get(&sd_index_idr, GFP_KERNEL))
1570 goto out_put;
1571
1572 spin_lock(&sd_index_lock);
1573 error = idr_get_new(&sd_index_idr, NULL, &index);
1574 spin_unlock(&sd_index_lock);
1575
1576 if (index >= SD_MAX_DISKS)
1577 error = -EBUSY;
1578 if (error)
1579 goto out_put;
1580
1581 sdkp->device = sdp;
1582 sdkp->driver = &sd_template;
1583 sdkp->disk = gd;
1584 sdkp->index = index;
1585 sdkp->openers = 0;
1586
1587 if (!sdp->timeout) {
Al Viro 631e8a12005-05-16 01:59:55 +01001588 if (sdp->type != TYPE_MOD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 sdp->timeout = SD_TIMEOUT;
1590 else
1591 sdp->timeout = SD_MOD_TIMEOUT;
1592 }
1593
Nagendra Singh Tomar017f2e32007-02-02 17:34:56 +05301594 class_device_initialize(&sdkp->cdev);
1595 sdkp->cdev.dev = &sdp->sdev_gendev;
1596 sdkp->cdev.class = &sd_disk_class;
1597 strncpy(sdkp->cdev.class_id, sdp->sdev_gendev.bus_id, BUS_ID_SIZE);
1598
1599 if (class_device_add(&sdkp->cdev))
1600 goto out_put;
1601
1602 get_device(&sdp->sdev_gendev);
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 gd->major = sd_major((index & 0xf0) >> 4);
1605 gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
1606 gd->minors = 16;
1607 gd->fops = &sd_fops;
1608
1609 if (index < 26) {
1610 sprintf(gd->disk_name, "sd%c", 'a' + index % 26);
1611 } else if (index < (26 + 1) * 26) {
1612 sprintf(gd->disk_name, "sd%c%c",
1613 'a' + index / 26 - 1,'a' + index % 26);
1614 } else {
1615 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
1616 const unsigned int m2 = (index / 26 - 1) % 26;
1617 const unsigned int m3 = index % 26;
1618 sprintf(gd->disk_name, "sd%c%c%c",
1619 'a' + m1, 'a' + m2, 'a' + m3);
1620 }
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 gd->private_data = &sdkp->driver;
Tejun Heo461d4e92006-01-06 09:52:55 +01001623 gd->queue = sdkp->device->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 sd_revalidate_disk(gd);
1626
1627 gd->driverfs_dev = &sdp->sdev_gendev;
1628 gd->flags = GENHD_FL_DRIVERFS;
1629 if (sdp->removable)
1630 gd->flags |= GENHD_FL_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 dev_set_drvdata(dev, sdkp);
1633 add_disk(gd);
1634
Martin K. Petersene73aec82007-02-27 22:40:55 -05001635 sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
1636 sdp->removable ? "removable " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 return 0;
1639
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001640 out_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 put_disk(gd);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001642 out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 kfree(sdkp);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001644 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 return error;
1646}
1647
1648/**
1649 * sd_remove - called whenever a scsi disk (previously recognized by
1650 * sd_probe) is detached from the system. It is called (potentially
1651 * multiple times) during sd module unload.
1652 * @sdp: pointer to mid level scsi device object
1653 *
1654 * Note: this function is invoked from the scsi mid-level.
1655 * This function potentially frees up a device name (e.g. /dev/sdc)
1656 * that could be re-used by a subsequent sd_probe().
1657 * This function is not called when the built-in sd driver is "exit-ed".
1658 **/
1659static int sd_remove(struct device *dev)
1660{
1661 struct scsi_disk *sdkp = dev_get_drvdata(dev);
1662
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001663 class_device_del(&sdkp->cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 del_gendisk(sdkp->disk);
1665 sd_shutdown(dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001666
Arjan van de Ven0b950672006-01-11 13:16:10 +01001667 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001668 dev_set_drvdata(dev, NULL);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001669 class_device_put(&sdkp->cdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001670 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672 return 0;
1673}
1674
1675/**
1676 * scsi_disk_release - Called to free the scsi_disk structure
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001677 * @cdev: pointer to embedded class device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 *
Arjan van de Ven0b950672006-01-11 13:16:10 +01001679 * sd_ref_mutex must be held entering this routine. Because it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 * called on last put, you should always use the scsi_disk_get()
1681 * scsi_disk_put() helpers which manipulate the semaphore directly
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001682 * and never do a direct class_device_put().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 **/
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001684static void scsi_disk_release(struct class_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001686 struct scsi_disk *sdkp = to_scsi_disk(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 struct gendisk *disk = sdkp->disk;
1688
1689 spin_lock(&sd_index_lock);
1690 idr_remove(&sd_index_idr, sdkp->index);
1691 spin_unlock(&sd_index_lock);
1692
1693 disk->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 put_disk(disk);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001695 put_device(&sdkp->device->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 kfree(sdkp);
1698}
1699
1700/*
1701 * Send a SYNCHRONIZE CACHE instruction down to the device through
1702 * the normal SCSI command structure. Wait for the command to
1703 * complete.
1704 */
1705static void sd_shutdown(struct device *dev)
1706{
Alan Stern39b7f1e2005-11-04 14:44:41 -05001707 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
1709 if (!sdkp)
1710 return; /* this can happen */
1711
Alan Stern39b7f1e2005-11-04 14:44:41 -05001712 if (sdkp->WCE) {
Martin K. Petersene73aec82007-02-27 22:40:55 -05001713 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
1714 sd_sync_cache(sdkp);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001715 }
1716 scsi_disk_put(sdkp);
1717}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719/**
1720 * init_sd - entry point for this driver (both when built in or when
1721 * a module).
1722 *
1723 * Note: this function registers this driver with the scsi mid-level.
1724 **/
1725static int __init init_sd(void)
1726{
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001727 int majors = 0, i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
1730
1731 for (i = 0; i < SD_MAJORS; i++)
1732 if (register_blkdev(sd_major(i), "sd") == 0)
1733 majors++;
1734
1735 if (!majors)
1736 return -ENODEV;
1737
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001738 err = class_register(&sd_disk_class);
1739 if (err)
1740 goto err_out;
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001741
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001742 err = scsi_register_driver(&sd_template.gendrv);
1743 if (err)
1744 goto err_out_class;
1745
1746 return 0;
1747
1748err_out_class:
1749 class_unregister(&sd_disk_class);
1750err_out:
1751 for (i = 0; i < SD_MAJORS; i++)
1752 unregister_blkdev(sd_major(i), "sd");
1753 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754}
1755
1756/**
1757 * exit_sd - exit point for this driver (when it is a module).
1758 *
1759 * Note: this function unregisters this driver from the scsi mid-level.
1760 **/
1761static void __exit exit_sd(void)
1762{
1763 int i;
1764
1765 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
1766
1767 scsi_unregister_driver(&sd_template.gendrv);
Jeff Garzik5e4009b2006-10-04 05:32:54 -04001768 class_unregister(&sd_disk_class);
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 for (i = 0; i < SD_MAJORS; i++)
1771 unregister_blkdev(sd_major(i), "sd");
1772}
1773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774module_init(init_sd);
1775module_exit(exit_sd);
Martin K. Petersene73aec82007-02-27 22:40:55 -05001776
1777static void sd_print_sense_hdr(struct scsi_disk *sdkp,
1778 struct scsi_sense_hdr *sshdr)
1779{
1780 sd_printk(KERN_INFO, sdkp, "");
1781 scsi_show_sense_hdr(sshdr);
1782 sd_printk(KERN_INFO, sdkp, "");
1783 scsi_show_extd_sense(sshdr->asc, sshdr->ascq);
1784}
1785
1786static void sd_print_result(struct scsi_disk *sdkp, int result)
1787{
1788 sd_printk(KERN_INFO, sdkp, "");
1789 scsi_show_result(result);
1790}
1791