blob: 2e96c3d8f7e2cb6661233fc2ebfd190aeea64c2e [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
35#include <linux/config.h>
36#include <linux/module.h>
37#include <linux/fs.h>
38#include <linux/kernel.h>
39#include <linux/sched.h>
40#include <linux/mm.h>
41#include <linux/bio.h>
42#include <linux/genhd.h>
43#include <linux/hdreg.h>
44#include <linux/errno.h>
45#include <linux/idr.h>
46#include <linux/interrupt.h>
47#include <linux/init.h>
48#include <linux/blkdev.h>
49#include <linux/blkpg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/delay.h>
Arjan van de Ven0b950672006-01-11 13:16:10 +010051#include <linux/mutex.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
64#include "scsi_logging.h"
65
66/*
67 * More than enough for everybody ;) The huge number of majors
68 * is a leftover from 16bit dev_t days, we don't really need that
69 * much numberspace.
70 */
71#define SD_MAJORS 16
72
Rene Hermanf018fa52006-03-08 00:14:20 -080073MODULE_AUTHOR("Eric Youngdale");
74MODULE_DESCRIPTION("SCSI disk (sd) driver");
75MODULE_LICENSE("GPL");
76
77MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR);
78MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR);
79MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR);
80MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR);
81MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR);
82MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR);
83MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR);
84MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR);
85MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR);
86MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR);
87MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR);
88MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR);
89MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR);
90MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR);
91MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR);
92MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR);
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
95 * This is limited by the naming scheme enforced in sd_probe,
96 * add another character to it if you really need more disks.
97 */
98#define SD_MAX_DISKS (((26 * 26) + 26 + 1) * 26)
99
100/*
101 * Time out in seconds for disks and Magneto-opticals (which are slower).
102 */
103#define SD_TIMEOUT (30 * HZ)
104#define SD_MOD_TIMEOUT (75 * HZ)
105
106/*
107 * Number of allowed retries
108 */
109#define SD_MAX_RETRIES 5
110#define SD_PASSTHROUGH_RETRIES 1
111
Al Viro48970802006-02-26 08:34:10 -0600112/*
113 * Size of the initial data buffer for mode and read capacity data
114 */
115#define SD_BUF_SIZE 512
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117struct scsi_disk {
118 struct scsi_driver *driver; /* always &sd_template */
119 struct scsi_device *device;
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600120 struct class_device cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 struct gendisk *disk;
122 unsigned int openers; /* protected by BKL for now, yuck */
123 sector_t capacity; /* size in 512-byte sectors */
124 u32 index;
125 u8 media_present;
126 u8 write_prot;
127 unsigned WCE : 1; /* state of disk WCE bit */
128 unsigned RCD : 1; /* state of disk RCD bit, unused */
Tejun Heo007365a2006-01-06 09:53:52 +0100129 unsigned DPOFUA : 1; /* state of disk DPOFUA bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600131#define to_scsi_disk(obj) container_of(obj,struct scsi_disk,cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133static DEFINE_IDR(sd_index_idr);
134static DEFINE_SPINLOCK(sd_index_lock);
135
136/* This semaphore is used to mediate the 0->1 reference get in the
137 * face of object destruction (i.e. we can't allow a get on an
138 * object after last put) */
Arjan van de Ven0b950672006-01-11 13:16:10 +0100139static DEFINE_MUTEX(sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141static int sd_revalidate_disk(struct gendisk *disk);
142static void sd_rw_intr(struct scsi_cmnd * SCpnt);
143
144static int sd_probe(struct device *);
145static int sd_remove(struct device *);
146static void sd_shutdown(struct device *dev);
147static void sd_rescan(struct device *);
148static int sd_init_command(struct scsi_cmnd *);
149static int sd_issue_flush(struct device *, sector_t *);
Tejun Heo461d4e92006-01-06 09:52:55 +0100150static void sd_prepare_flush(request_queue_t *, struct request *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static void sd_read_capacity(struct scsi_disk *sdkp, char *diskname,
James Bottomleyea73a9f2005-08-28 11:33:52 -0500152 unsigned char *buffer);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600153static void scsi_disk_release(struct class_device *cdev);
154
155static const char *sd_cache_types[] = {
156 "write through", "none", "write back",
157 "write back, no read (daft)"
158};
159
160static ssize_t sd_store_cache_type(struct class_device *cdev, const char *buf,
161 size_t count)
162{
163 int i, ct = -1, rcd, wce, sp;
164 struct scsi_disk *sdkp = to_scsi_disk(cdev);
165 struct scsi_device *sdp = sdkp->device;
166 char buffer[64];
167 char *buffer_data;
168 struct scsi_mode_data data;
169 struct scsi_sense_hdr sshdr;
170 int len;
171
172 if (sdp->type != TYPE_DISK)
173 /* no cache control on RBC devices; theoretically they
174 * can do it, but there's probably so many exceptions
175 * it's not worth the risk */
176 return -EINVAL;
177
Tobias Klauser6391a112006-06-08 22:23:48 -0700178 for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600179 const int len = strlen(sd_cache_types[i]);
180 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
181 buf[len] == '\n') {
182 ct = i;
183 break;
184 }
185 }
186 if (ct < 0)
187 return -EINVAL;
188 rcd = ct & 0x01 ? 1 : 0;
189 wce = ct & 0x02 ? 1 : 0;
190 if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
191 SD_MAX_RETRIES, &data, NULL))
192 return -EINVAL;
Andrew Mortona9312fb2006-03-25 03:08:30 -0800193 len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600194 data.block_descriptor_length);
195 buffer_data = buffer + data.header_length +
196 data.block_descriptor_length;
197 buffer_data[2] &= ~0x05;
198 buffer_data[2] |= wce << 2 | rcd;
199 sp = buffer_data[0] & 0x80 ? 1 : 0;
200
201 if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
202 SD_MAX_RETRIES, &data, &sshdr)) {
203 if (scsi_sense_valid(&sshdr))
204 scsi_print_sense_hdr(sdkp->disk->disk_name, &sshdr);
205 return -EINVAL;
206 }
207 sd_revalidate_disk(sdkp->disk);
208 return count;
209}
210
Brian Kinga144c5a2006-06-27 11:10:31 -0500211static ssize_t sd_store_allow_restart(struct class_device *cdev, const char *buf,
212 size_t count)
213{
214 struct scsi_disk *sdkp = to_scsi_disk(cdev);
215 struct scsi_device *sdp = sdkp->device;
216
217 if (!capable(CAP_SYS_ADMIN))
218 return -EACCES;
219
220 if (sdp->type != TYPE_DISK)
221 return -EINVAL;
222
223 sdp->allow_restart = simple_strtoul(buf, NULL, 10);
224
225 return count;
226}
227
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600228static ssize_t sd_show_cache_type(struct class_device *cdev, char *buf)
229{
230 struct scsi_disk *sdkp = to_scsi_disk(cdev);
231 int ct = sdkp->RCD + 2*sdkp->WCE;
232
233 return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
234}
235
236static ssize_t sd_show_fua(struct class_device *cdev, char *buf)
237{
238 struct scsi_disk *sdkp = to_scsi_disk(cdev);
239
240 return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
241}
242
Brian Kinga144c5a2006-06-27 11:10:31 -0500243static ssize_t sd_show_allow_restart(struct class_device *cdev, char *buf)
244{
245 struct scsi_disk *sdkp = to_scsi_disk(cdev);
246
247 return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
248}
249
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600250static struct class_device_attribute sd_disk_attrs[] = {
251 __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
252 sd_store_cache_type),
253 __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
Brian Kinga144c5a2006-06-27 11:10:31 -0500254 __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
255 sd_store_allow_restart),
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600256 __ATTR_NULL,
257};
258
259static struct class sd_disk_class = {
260 .name = "scsi_disk",
261 .owner = THIS_MODULE,
262 .release = scsi_disk_release,
263 .class_dev_attrs = sd_disk_attrs,
264};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266static struct scsi_driver sd_template = {
267 .owner = THIS_MODULE,
268 .gendrv = {
269 .name = "sd",
270 .probe = sd_probe,
271 .remove = sd_remove,
272 .shutdown = sd_shutdown,
273 },
274 .rescan = sd_rescan,
275 .init_command = sd_init_command,
276 .issue_flush = sd_issue_flush,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277};
278
279/*
280 * Device no to disk mapping:
281 *
282 * major disc2 disc p1
283 * |............|.............|....|....| <- dev_t
284 * 31 20 19 8 7 4 3 0
285 *
286 * Inside a major, we have 16k disks, however mapped non-
287 * contiguously. The first 16 disks are for major0, the next
288 * ones with major1, ... Disk 256 is for major0 again, disk 272
289 * for major1, ...
290 * As we stay compatible with our numbering scheme, we can reuse
291 * the well-know SCSI majors 8, 65--71, 136--143.
292 */
293static int sd_major(int major_idx)
294{
295 switch (major_idx) {
296 case 0:
297 return SCSI_DISK0_MAJOR;
298 case 1 ... 7:
299 return SCSI_DISK1_MAJOR + major_idx - 1;
300 case 8 ... 15:
301 return SCSI_DISK8_MAJOR + major_idx - 8;
302 default:
303 BUG();
304 return 0; /* shut up gcc */
305 }
306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308static inline struct scsi_disk *scsi_disk(struct gendisk *disk)
309{
310 return container_of(disk->private_data, struct scsi_disk, driver);
311}
312
Alan Stern39b7f1e2005-11-04 14:44:41 -0500313static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 struct scsi_disk *sdkp = NULL;
316
Alan Stern39b7f1e2005-11-04 14:44:41 -0500317 if (disk->private_data) {
318 sdkp = scsi_disk(disk);
319 if (scsi_device_get(sdkp->device) == 0)
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600320 class_device_get(&sdkp->cdev);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500321 else
322 sdkp = NULL;
323 }
324 return sdkp;
325}
326
327static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
328{
329 struct scsi_disk *sdkp;
330
Arjan van de Ven0b950672006-01-11 13:16:10 +0100331 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500332 sdkp = __scsi_disk_get(disk);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100333 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return sdkp;
Alan Stern39b7f1e2005-11-04 14:44:41 -0500335}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Alan Stern39b7f1e2005-11-04 14:44:41 -0500337static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
338{
339 struct scsi_disk *sdkp;
340
Arjan van de Ven0b950672006-01-11 13:16:10 +0100341 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500342 sdkp = dev_get_drvdata(dev);
343 if (sdkp)
344 sdkp = __scsi_disk_get(sdkp->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;
347}
348
349static void scsi_disk_put(struct scsi_disk *sdkp)
350{
351 struct scsi_device *sdev = sdkp->device;
352
Arjan van de Ven0b950672006-01-11 13:16:10 +0100353 mutex_lock(&sd_ref_mutex);
James Bottomley6bdaa1f2006-03-18 14:14:21 -0600354 class_device_put(&sdkp->cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 scsi_device_put(sdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100356 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
359/**
360 * sd_init_command - build a scsi (read or write) command from
361 * information in the request structure.
362 * @SCpnt: pointer to mid-level's per scsi command structure that
363 * contains request and into which the scsi command is written
364 *
365 * Returns 1 if successful and 0 if error (or cannot be done now).
366 **/
367static int sd_init_command(struct scsi_cmnd * SCpnt)
368{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 struct scsi_device *sdp = SCpnt->device;
370 struct request *rq = SCpnt->request;
Christoph Hellwig776b23a2006-01-06 18:34:07 +0100371 struct gendisk *disk = rq->rq_disk;
372 sector_t block = rq->sector;
373 unsigned int this_count = SCpnt->request_bufflen >> 9;
374 unsigned int timeout = sdp->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 SCSI_LOG_HLQUEUE(1, printk("sd_init_command: disk=%s, block=%llu, "
377 "count=%d\n", disk->disk_name,
378 (unsigned long long)block, this_count));
379
380 if (!sdp || !scsi_device_online(sdp) ||
381 block + rq->nr_sectors > get_capacity(disk)) {
382 SCSI_LOG_HLQUEUE(2, printk("Finishing %ld sectors\n",
383 rq->nr_sectors));
384 SCSI_LOG_HLQUEUE(2, printk("Retry with 0x%p\n", SCpnt));
385 return 0;
386 }
387
388 if (sdp->changed) {
389 /*
390 * quietly refuse to do anything to a changed disc until
391 * the changed bit has been reset
392 */
393 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
394 return 0;
395 }
396 SCSI_LOG_HLQUEUE(2, printk("%s : block=%llu\n",
397 disk->disk_name, (unsigned long long)block));
398
399 /*
400 * If we have a 1K hardware sectorsize, prevent access to single
401 * 512 byte sectors. In theory we could handle this - in fact
402 * the scsi cdrom driver must be able to handle this because
403 * we typically use 1K blocksizes, and cdroms typically have
404 * 2K hardware sectorsizes. Of course, things are simpler
405 * with the cdrom, since it is read-only. For performance
406 * reasons, the filesystems should be able to handle this
407 * and not force the scsi disk driver to use bounce buffers
408 * for this.
409 */
410 if (sdp->sector_size == 1024) {
411 if ((block & 1) || (rq->nr_sectors & 1)) {
412 printk(KERN_ERR "sd: Bad block number requested");
413 return 0;
414 } else {
415 block = block >> 1;
416 this_count = this_count >> 1;
417 }
418 }
419 if (sdp->sector_size == 2048) {
420 if ((block & 3) || (rq->nr_sectors & 3)) {
421 printk(KERN_ERR "sd: Bad block number requested");
422 return 0;
423 } else {
424 block = block >> 2;
425 this_count = this_count >> 2;
426 }
427 }
428 if (sdp->sector_size == 4096) {
429 if ((block & 7) || (rq->nr_sectors & 7)) {
430 printk(KERN_ERR "sd: Bad block number requested");
431 return 0;
432 } else {
433 block = block >> 3;
434 this_count = this_count >> 3;
435 }
436 }
437 if (rq_data_dir(rq) == WRITE) {
438 if (!sdp->writeable) {
439 return 0;
440 }
441 SCpnt->cmnd[0] = WRITE_6;
442 SCpnt->sc_data_direction = DMA_TO_DEVICE;
443 } else if (rq_data_dir(rq) == READ) {
444 SCpnt->cmnd[0] = READ_6;
445 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
446 } else {
447 printk(KERN_ERR "sd: Unknown command %lx\n", rq->flags);
448/* overkill panic("Unknown sd command %lx\n", rq->flags); */
449 return 0;
450 }
451
452 SCSI_LOG_HLQUEUE(2, printk("%s : %s %d/%ld 512 byte blocks.\n",
453 disk->disk_name, (rq_data_dir(rq) == WRITE) ?
454 "writing" : "reading", this_count, rq->nr_sectors));
455
456 SCpnt->cmnd[1] = 0;
457
458 if (block > 0xffffffff) {
459 SCpnt->cmnd[0] += READ_16 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100460 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
462 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
463 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
464 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
465 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
466 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
467 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
468 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
469 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
470 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
471 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
472 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
473 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
474 } else if ((this_count > 0xff) || (block > 0x1fffff) ||
475 SCpnt->device->use_10_for_rw) {
476 if (this_count > 0xffff)
477 this_count = 0xffff;
478
479 SCpnt->cmnd[0] += READ_10 - READ_6;
Tejun Heo007365a2006-01-06 09:53:52 +0100480 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
482 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
483 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
484 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
485 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
486 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
487 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
488 } else {
Tejun Heo007365a2006-01-06 09:53:52 +0100489 if (unlikely(blk_fua_rq(rq))) {
490 /*
491 * This happens only if this drive failed
492 * 10byte rw command with ILLEGAL_REQUEST
493 * during operation and thus turned off
494 * use_10_for_rw.
495 */
496 printk(KERN_ERR "sd: FUA write on READ/WRITE(6) drive\n");
497 return 0;
498 }
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
501 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
502 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
503 SCpnt->cmnd[4] = (unsigned char) this_count;
504 SCpnt->cmnd[5] = 0;
505 }
506 SCpnt->request_bufflen = SCpnt->bufflen =
507 this_count * sdp->sector_size;
508
509 /*
510 * We shouldn't disconnect in the middle of a sector, so with a dumb
511 * host adapter, it's safe to assume that we can at least transfer
512 * this many bytes between each connect / disconnect.
513 */
514 SCpnt->transfersize = sdp->sector_size;
515 SCpnt->underflow = this_count << 9;
516 SCpnt->allowed = SD_MAX_RETRIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 SCpnt->timeout_per_command = timeout;
518
519 /*
520 * This is the completion routine we use. This is matched in terms
521 * of capability to this function.
522 */
523 SCpnt->done = sd_rw_intr;
524
525 /*
526 * This indicates that the command is ready from our end to be
527 * queued.
528 */
529 return 1;
530}
531
532/**
533 * sd_open - open a scsi disk device
534 * @inode: only i_rdev member may be used
535 * @filp: only f_mode and f_flags may be used
536 *
537 * Returns 0 if successful. Returns a negated errno value in case
538 * of error.
539 *
540 * Note: This can be called from a user context (e.g. fsck(1) )
541 * or from within the kernel (e.g. as a result of a mount(1) ).
542 * In the latter case @inode and @filp carry an abridged amount
543 * of information as noted above.
544 **/
545static int sd_open(struct inode *inode, struct file *filp)
546{
547 struct gendisk *disk = inode->i_bdev->bd_disk;
548 struct scsi_disk *sdkp;
549 struct scsi_device *sdev;
550 int retval;
551
552 if (!(sdkp = scsi_disk_get(disk)))
553 return -ENXIO;
554
555
556 SCSI_LOG_HLQUEUE(3, printk("sd_open: disk=%s\n", disk->disk_name));
557
558 sdev = sdkp->device;
559
560 /*
561 * If the device is in error recovery, wait until it is done.
562 * If the device is offline, then disallow any access to it.
563 */
564 retval = -ENXIO;
565 if (!scsi_block_when_processing_errors(sdev))
566 goto error_out;
567
568 if (sdev->removable || sdkp->write_prot)
569 check_disk_change(inode->i_bdev);
570
571 /*
572 * If the drive is empty, just let the open fail.
573 */
574 retval = -ENOMEDIUM;
575 if (sdev->removable && !sdkp->media_present &&
576 !(filp->f_flags & O_NDELAY))
577 goto error_out;
578
579 /*
580 * If the device has the write protect tab set, have the open fail
581 * if the user expects to be able to write to the thing.
582 */
583 retval = -EROFS;
584 if (sdkp->write_prot && (filp->f_mode & FMODE_WRITE))
585 goto error_out;
586
587 /*
588 * It is possible that the disk changing stuff resulted in
589 * the device being taken offline. If this is the case,
590 * report this to the user, and don't pretend that the
591 * open actually succeeded.
592 */
593 retval = -ENXIO;
594 if (!scsi_device_online(sdev))
595 goto error_out;
596
597 if (!sdkp->openers++ && sdev->removable) {
598 if (scsi_block_when_processing_errors(sdev))
599 scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
600 }
601
602 return 0;
603
604error_out:
605 scsi_disk_put(sdkp);
606 return retval;
607}
608
609/**
610 * sd_release - invoked when the (last) close(2) is called on this
611 * scsi disk.
612 * @inode: only i_rdev member may be used
613 * @filp: only f_mode and f_flags may be used
614 *
615 * Returns 0.
616 *
617 * Note: may block (uninterruptible) if error recovery is underway
618 * on this disk.
619 **/
620static int sd_release(struct inode *inode, struct file *filp)
621{
622 struct gendisk *disk = inode->i_bdev->bd_disk;
623 struct scsi_disk *sdkp = scsi_disk(disk);
624 struct scsi_device *sdev = sdkp->device;
625
626 SCSI_LOG_HLQUEUE(3, printk("sd_release: disk=%s\n", disk->disk_name));
627
628 if (!--sdkp->openers && sdev->removable) {
629 if (scsi_block_when_processing_errors(sdev))
630 scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
631 }
632
633 /*
634 * XXX and what if there are packets in flight and this close()
635 * XXX is followed by a "rmmod sd_mod"?
636 */
637 scsi_disk_put(sdkp);
638 return 0;
639}
640
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800641static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
644 struct scsi_device *sdp = sdkp->device;
645 struct Scsi_Host *host = sdp->host;
646 int diskinfo[4];
647
648 /* default to most commonly used values */
649 diskinfo[0] = 0x40; /* 1 << 6 */
650 diskinfo[1] = 0x20; /* 1 << 5 */
651 diskinfo[2] = sdkp->capacity >> 11;
652
653 /* override with calculated, extended default, or driver values */
654 if (host->hostt->bios_param)
655 host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
656 else
657 scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
658
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800659 geo->heads = diskinfo[0];
660 geo->sectors = diskinfo[1];
661 geo->cylinders = diskinfo[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return 0;
663}
664
665/**
666 * sd_ioctl - process an ioctl
667 * @inode: only i_rdev/i_bdev members may be used
668 * @filp: only f_mode and f_flags may be used
669 * @cmd: ioctl command number
670 * @arg: this is third argument given to ioctl(2) system call.
671 * Often contains a pointer.
672 *
673 * Returns 0 if successful (some ioctls return postive numbers on
674 * success as well). Returns a negated errno value in case of error.
675 *
676 * Note: most ioctls are forward onto the block subsystem or further
677 * down in the scsi subsytem.
678 **/
679static int sd_ioctl(struct inode * inode, struct file * filp,
680 unsigned int cmd, unsigned long arg)
681{
682 struct block_device *bdev = inode->i_bdev;
683 struct gendisk *disk = bdev->bd_disk;
684 struct scsi_device *sdp = scsi_disk(disk)->device;
685 void __user *p = (void __user *)arg;
686 int error;
687
688 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
689 disk->disk_name, cmd));
690
691 /*
692 * If we are in the middle of error recovery, don't let anyone
693 * else try and use this device. Also, if error recovery fails, it
694 * may try and take the device offline, in which case all further
695 * access to the device is prohibited.
696 */
697 error = scsi_nonblockable_ioctl(sdp, cmd, p, filp);
698 if (!scsi_block_when_processing_errors(sdp) || !error)
699 return error;
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 /*
702 * Send SCSI addressing ioctls directly to mid level, send other
703 * ioctls to block level and then onto mid level if they can't be
704 * resolved.
705 */
706 switch (cmd) {
707 case SCSI_IOCTL_GET_IDLUN:
708 case SCSI_IOCTL_GET_BUS_NUMBER:
709 return scsi_ioctl(sdp, cmd, p);
710 default:
711 error = scsi_cmd_ioctl(filp, disk, cmd, p);
712 if (error != -ENOTTY)
713 return error;
714 }
715 return scsi_ioctl(sdp, cmd, p);
716}
717
718static void set_media_not_present(struct scsi_disk *sdkp)
719{
720 sdkp->media_present = 0;
721 sdkp->capacity = 0;
722 sdkp->device->changed = 1;
723}
724
725/**
726 * sd_media_changed - check if our medium changed
727 * @disk: kernel device descriptor
728 *
729 * Returns 0 if not applicable or no change; 1 if change
730 *
731 * Note: this function is invoked from the block subsystem.
732 **/
733static int sd_media_changed(struct gendisk *disk)
734{
735 struct scsi_disk *sdkp = scsi_disk(disk);
736 struct scsi_device *sdp = sdkp->device;
737 int retval;
738
739 SCSI_LOG_HLQUEUE(3, printk("sd_media_changed: disk=%s\n",
740 disk->disk_name));
741
742 if (!sdp->removable)
743 return 0;
744
745 /*
746 * If the device is offline, don't send any commands - just pretend as
747 * if the command failed. If the device ever comes back online, we
748 * can deal with it then. It is only because of unrecoverable errors
749 * that we would ever take a device offline in the first place.
750 */
751 if (!scsi_device_online(sdp))
752 goto not_present;
753
754 /*
755 * Using TEST_UNIT_READY enables differentiation between drive with
756 * no cartridge loaded - NOT READY, drive with changed cartridge -
757 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
758 *
759 * Drives that auto spin down. eg iomega jaz 1G, will be started
760 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
761 * sd_revalidate() is called.
762 */
763 retval = -ENODEV;
764 if (scsi_block_when_processing_errors(sdp))
765 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES);
766
767 /*
768 * Unable to test, unit probably not ready. This usually
769 * means there is no disc in the drive. Mark as changed,
770 * and we will figure it out later once the drive is
771 * available again.
772 */
773 if (retval)
774 goto not_present;
775
776 /*
777 * For removable scsi disk we have to recognise the presence
778 * of a disk in the drive. This is kept in the struct scsi_disk
779 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
780 */
781 sdkp->media_present = 1;
782
783 retval = sdp->changed;
784 sdp->changed = 0;
785
786 return retval;
787
788not_present:
789 set_media_not_present(sdkp);
790 return 1;
791}
792
793static int sd_sync_cache(struct scsi_device *sdp)
794{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 int retries, res;
James Bottomleyea73a9f2005-08-28 11:33:52 -0500796 struct scsi_sense_hdr sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 if (!scsi_device_online(sdp))
799 return -ENODEV;
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 for (retries = 3; retries > 0; --retries) {
803 unsigned char cmd[10] = { 0 };
804
805 cmd[0] = SYNCHRONIZE_CACHE;
806 /*
807 * Leave the rest of the command zero to indicate
808 * flush everything.
809 */
James Bottomleyea73a9f2005-08-28 11:33:52 -0500810 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
811 SD_TIMEOUT, SD_MAX_RETRIES);
812 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 break;
814 }
815
James Bottomleyea73a9f2005-08-28 11:33:52 -0500816 if (res) { printk(KERN_WARNING "FAILED\n status = %x, message = %02x, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 "host = %d, driver = %02x\n ",
818 status_byte(res), msg_byte(res),
819 host_byte(res), driver_byte(res));
820 if (driver_byte(res) & DRIVER_SENSE)
James Bottomleyea73a9f2005-08-28 11:33:52 -0500821 scsi_print_sense_hdr("sd", &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return res;
825}
826
827static int sd_issue_flush(struct device *dev, sector_t *error_sector)
828{
Alan Stern39b7f1e2005-11-04 14:44:41 -0500829 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 struct scsi_device *sdp = to_scsi_device(dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -0500831 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 if (!sdkp)
834 return -ENODEV;
835
Alan Stern39b7f1e2005-11-04 14:44:41 -0500836 if (sdkp->WCE)
837 ret = sd_sync_cache(sdp);
838 scsi_disk_put(sdkp);
839 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Tejun Heo461d4e92006-01-06 09:52:55 +0100842static void sd_prepare_flush(request_queue_t *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500844 memset(rq->cmd, 0, sizeof(rq->cmd));
Tejun Heo461d4e92006-01-06 09:52:55 +0100845 rq->flags |= REQ_BLOCK_PC;
James Bottomleyc0ed79a2005-11-08 09:21:07 -0500846 rq->timeout = SD_TIMEOUT;
847 rq->cmd[0] = SYNCHRONIZE_CACHE;
Tejun Heo461d4e92006-01-06 09:52:55 +0100848 rq->cmd_len = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
851static void sd_rescan(struct device *dev)
852{
Alan Stern39b7f1e2005-11-04 14:44:41 -0500853 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
854
855 if (sdkp) {
856 sd_revalidate_disk(sdkp->disk);
857 scsi_disk_put(sdkp);
858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
861
862#ifdef CONFIG_COMPAT
863/*
864 * This gets directly called from VFS. When the ioctl
865 * is not recognized we go back to the other translation paths.
866 */
867static long sd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
868{
869 struct block_device *bdev = file->f_dentry->d_inode->i_bdev;
870 struct gendisk *disk = bdev->bd_disk;
871 struct scsi_device *sdev = scsi_disk(disk)->device;
872
873 /*
874 * If we are in the middle of error recovery, don't let anyone
875 * else try and use this device. Also, if error recovery fails, it
876 * may try and take the device offline, in which case all further
877 * access to the device is prohibited.
878 */
879 if (!scsi_block_when_processing_errors(sdev))
880 return -ENODEV;
881
882 if (sdev->host->hostt->compat_ioctl) {
883 int ret;
884
885 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
886
887 return ret;
888 }
889
890 /*
891 * Let the static ioctl translation table take care of it.
892 */
893 return -ENOIOCTLCMD;
894}
895#endif
896
897static struct block_device_operations sd_fops = {
898 .owner = THIS_MODULE,
899 .open = sd_open,
900 .release = sd_release,
901 .ioctl = sd_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800902 .getgeo = sd_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903#ifdef CONFIG_COMPAT
904 .compat_ioctl = sd_compat_ioctl,
905#endif
906 .media_changed = sd_media_changed,
907 .revalidate_disk = sd_revalidate_disk,
908};
909
910/**
911 * sd_rw_intr - bottom half handler: called when the lower level
912 * driver has completed (successfully or otherwise) a scsi command.
913 * @SCpnt: mid-level's per command structure.
914 *
915 * Note: potentially run from within an ISR. Must not block.
916 **/
917static void sd_rw_intr(struct scsi_cmnd * SCpnt)
918{
919 int result = SCpnt->result;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700920 unsigned int xfer_size = SCpnt->request_bufflen;
921 unsigned int good_bytes = result ? 0 : xfer_size;
922 u64 start_lba = SCpnt->request->sector;
923 u64 bad_lba;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 struct scsi_sense_hdr sshdr;
925 int sense_valid = 0;
926 int sense_deferred = 0;
927 int info_valid;
928
929 if (result) {
930 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
931 if (sense_valid)
932 sense_deferred = scsi_sense_is_deferred(&sshdr);
933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934#ifdef CONFIG_SCSI_LOGGING
935 SCSI_LOG_HLCOMPLETE(1, printk("sd_rw_intr: %s: res=0x%x\n",
936 SCpnt->request->rq_disk->disk_name, result));
937 if (sense_valid) {
938 SCSI_LOG_HLCOMPLETE(1, printk("sd_rw_intr: sb[respc,sk,asc,"
939 "ascq]=%x,%x,%x,%x\n", sshdr.response_code,
940 sshdr.sense_key, sshdr.asc, sshdr.ascq));
941 }
942#endif
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700943 if (driver_byte(result) != DRIVER_SENSE &&
944 (!sense_valid || sense_deferred))
945 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700947 switch (sshdr.sense_key) {
948 case HARDWARE_ERROR:
949 case MEDIUM_ERROR:
950 if (!blk_fs_request(SCpnt->request))
951 goto out;
952 info_valid = scsi_get_sense_info_fld(SCpnt->sense_buffer,
953 SCSI_SENSE_BUFFERSIZE,
954 &bad_lba);
955 if (!info_valid)
956 goto out;
957 if (xfer_size <= SCpnt->device->sector_size)
958 goto out;
959 switch (SCpnt->device->sector_size) {
960 case 256:
961 start_lba <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700963 case 512:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700965 case 1024:
966 start_lba >>= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 break;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700968 case 2048:
969 start_lba >>= 2;
970 break;
971 case 4096:
972 start_lba >>= 3;
973 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 default:
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700975 /* Print something here with limiting frequency. */
976 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 break;
978 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700979 /* This computation should always be done in terms of
980 * the resolution of the device's medium.
981 */
982 good_bytes = (bad_lba - start_lba)*SCpnt->device->sector_size;
983 break;
984 case RECOVERED_ERROR:
985 case NO_SENSE:
986 /* Inform the user, but make sure that it's not treated
987 * as a hard error.
988 */
989 scsi_print_sense("sd", SCpnt);
990 SCpnt->result = 0;
991 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
992 good_bytes = xfer_size;
993 break;
994 case ILLEGAL_REQUEST:
995 if (SCpnt->device->use_10_for_rw &&
996 (SCpnt->cmnd[0] == READ_10 ||
997 SCpnt->cmnd[0] == WRITE_10))
998 SCpnt->device->use_10_for_rw = 0;
999 if (SCpnt->device->use_10_for_ms &&
1000 (SCpnt->cmnd[0] == MODE_SENSE_10 ||
1001 SCpnt->cmnd[0] == MODE_SELECT_10))
1002 SCpnt->device->use_10_for_ms = 0;
1003 break;
1004 default:
1005 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
Luben Tuikov03aba2f2006-06-23 09:39:09 -07001007 out:
1008 scsi_io_completion(SCpnt, good_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
James Bottomleyea73a9f2005-08-28 11:33:52 -05001011static int media_not_present(struct scsi_disk *sdkp,
1012 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
James Bottomleyea73a9f2005-08-28 11:33:52 -05001015 if (!scsi_sense_valid(sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return 0;
1017 /* not invoked for commands that could return deferred errors */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001018 if (sshdr->sense_key != NOT_READY &&
1019 sshdr->sense_key != UNIT_ATTENTION)
1020 return 0;
1021 if (sshdr->asc != 0x3A) /* medium not present */
1022 return 0;
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 set_media_not_present(sdkp);
1025 return 1;
1026}
1027
1028/*
1029 * spinup disk - called only in sd_revalidate_disk()
1030 */
1031static void
James Bottomleyea73a9f2005-08-28 11:33:52 -05001032sd_spinup_disk(struct scsi_disk *sdkp, char *diskname)
1033{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 unsigned char cmd[10];
Alan Stern4451e472005-07-12 10:45:17 -04001035 unsigned long spintime_expire = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 int retries, spintime;
1037 unsigned int the_result;
1038 struct scsi_sense_hdr sshdr;
1039 int sense_valid = 0;
1040
1041 spintime = 0;
1042
1043 /* Spin up drives, as required. Only do this at boot time */
1044 /* Spinup needs to be done for module loads too. */
1045 do {
1046 retries = 0;
1047
1048 do {
1049 cmd[0] = TEST_UNIT_READY;
1050 memset((void *) &cmd[1], 0, 9);
1051
James Bottomleyea73a9f2005-08-28 11:33:52 -05001052 the_result = scsi_execute_req(sdkp->device, cmd,
1053 DMA_NONE, NULL, 0,
1054 &sshdr, SD_TIMEOUT,
1055 SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001058 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 retries++;
1060 } while (retries < 3 &&
1061 (!scsi_status_is_good(the_result) ||
1062 ((driver_byte(the_result) & DRIVER_SENSE) &&
1063 sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1064
1065 /*
1066 * If the drive has indicated to us that it doesn't have
1067 * any media in it, don't bother with any of the rest of
1068 * this crap.
1069 */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001070 if (media_not_present(sdkp, &sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 return;
1072
1073 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1074 /* no sense, TUR either succeeded or failed
1075 * with a status error */
1076 if(!spintime && !scsi_status_is_good(the_result))
1077 printk(KERN_NOTICE "%s: Unit Not Ready, "
1078 "error = 0x%x\n", diskname, the_result);
1079 break;
1080 }
1081
1082 /*
1083 * The device does not want the automatic start to be issued.
1084 */
1085 if (sdkp->device->no_start_on_add) {
1086 break;
1087 }
1088
1089 /*
1090 * If manual intervention is required, or this is an
1091 * absent USB storage device, a spinup is meaningless.
1092 */
1093 if (sense_valid &&
1094 sshdr.sense_key == NOT_READY &&
1095 sshdr.asc == 4 && sshdr.ascq == 3) {
1096 break; /* manual intervention required */
1097
1098 /*
1099 * Issue command to spin up drive when not ready
1100 */
1101 } else if (sense_valid && sshdr.sense_key == NOT_READY) {
1102 if (!spintime) {
1103 printk(KERN_NOTICE "%s: Spinning up disk...",
1104 diskname);
1105 cmd[0] = START_STOP;
1106 cmd[1] = 1; /* Return immediately */
1107 memset((void *) &cmd[2], 0, 8);
1108 cmd[4] = 1; /* Start spin cycle */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001109 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1110 NULL, 0, &sshdr,
1111 SD_TIMEOUT, SD_MAX_RETRIES);
Alan Stern4451e472005-07-12 10:45:17 -04001112 spintime_expire = jiffies + 100 * HZ;
1113 spintime = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 /* Wait 1 second for next try */
1116 msleep(1000);
1117 printk(".");
Alan Stern4451e472005-07-12 10:45:17 -04001118
1119 /*
1120 * Wait for USB flash devices with slow firmware.
1121 * Yes, this sense key/ASC combination shouldn't
1122 * occur here. It's characteristic of these devices.
1123 */
1124 } else if (sense_valid &&
1125 sshdr.sense_key == UNIT_ATTENTION &&
1126 sshdr.asc == 0x28) {
1127 if (!spintime) {
1128 spintime_expire = jiffies + 5 * HZ;
1129 spintime = 1;
1130 }
1131 /* Wait 1 second for next try */
1132 msleep(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 } else {
1134 /* we don't understand the sense code, so it's
1135 * probably pointless to loop */
1136 if(!spintime) {
1137 printk(KERN_NOTICE "%s: Unit Not Ready, "
1138 "sense:\n", diskname);
James Bottomleyea73a9f2005-08-28 11:33:52 -05001139 scsi_print_sense_hdr("", &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
1141 break;
1142 }
1143
Alan Stern4451e472005-07-12 10:45:17 -04001144 } while (spintime && time_before_eq(jiffies, spintime_expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 if (spintime) {
1147 if (scsi_status_is_good(the_result))
1148 printk("ready\n");
1149 else
1150 printk("not responding...\n");
1151 }
1152}
1153
1154/*
1155 * read disk capacity
1156 */
1157static void
1158sd_read_capacity(struct scsi_disk *sdkp, char *diskname,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001159 unsigned char *buffer)
1160{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 unsigned char cmd[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 int the_result, retries;
1163 int sector_size = 0;
1164 int longrc = 0;
1165 struct scsi_sense_hdr sshdr;
1166 int sense_valid = 0;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001167 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169repeat:
1170 retries = 3;
1171 do {
1172 if (longrc) {
1173 memset((void *) cmd, 0, 16);
1174 cmd[0] = SERVICE_ACTION_IN;
1175 cmd[1] = SAI_READ_CAPACITY_16;
1176 cmd[13] = 12;
1177 memset((void *) buffer, 0, 12);
1178 } else {
1179 cmd[0] = READ_CAPACITY;
1180 memset((void *) &cmd[1], 0, 9);
1181 memset((void *) buffer, 0, 8);
1182 }
1183
James Bottomleyea73a9f2005-08-28 11:33:52 -05001184 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
1185 buffer, longrc ? 12 : 8, &sshdr,
1186 SD_TIMEOUT, SD_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
James Bottomleyea73a9f2005-08-28 11:33:52 -05001188 if (media_not_present(sdkp, &sshdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return;
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (the_result)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001192 sense_valid = scsi_sense_valid(&sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 retries--;
1194
1195 } while (the_result && retries);
1196
1197 if (the_result && !longrc) {
1198 printk(KERN_NOTICE "%s : READ CAPACITY failed.\n"
1199 "%s : status=%x, message=%02x, host=%d, driver=%02x \n",
1200 diskname, diskname,
1201 status_byte(the_result),
1202 msg_byte(the_result),
1203 host_byte(the_result),
1204 driver_byte(the_result));
1205
1206 if (driver_byte(the_result) & DRIVER_SENSE)
James Bottomleyea73a9f2005-08-28 11:33:52 -05001207 scsi_print_sense_hdr("sd", &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 else
1209 printk("%s : sense not available. \n", diskname);
1210
1211 /* Set dirty bit for removable devices if not ready -
1212 * sometimes drives will not report this properly. */
1213 if (sdp->removable &&
1214 sense_valid && sshdr.sense_key == NOT_READY)
1215 sdp->changed = 1;
1216
1217 /* Either no media are present but the drive didn't tell us,
1218 or they are present but the read capacity command fails */
1219 /* sdkp->media_present = 0; -- not always correct */
1220 sdkp->capacity = 0x200000; /* 1 GB - random */
1221
1222 return;
1223 } else if (the_result && longrc) {
1224 /* READ CAPACITY(16) has been failed */
1225 printk(KERN_NOTICE "%s : READ CAPACITY(16) failed.\n"
1226 "%s : status=%x, message=%02x, host=%d, driver=%02x \n",
1227 diskname, diskname,
1228 status_byte(the_result),
1229 msg_byte(the_result),
1230 host_byte(the_result),
1231 driver_byte(the_result));
1232 printk(KERN_NOTICE "%s : use 0xffffffff as device size\n",
1233 diskname);
1234
1235 sdkp->capacity = 1 + (sector_t) 0xffffffff;
1236 goto got_data;
1237 }
1238
1239 if (!longrc) {
1240 sector_size = (buffer[4] << 24) |
1241 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
1242 if (buffer[0] == 0xff && buffer[1] == 0xff &&
1243 buffer[2] == 0xff && buffer[3] == 0xff) {
1244 if(sizeof(sdkp->capacity) > 4) {
1245 printk(KERN_NOTICE "%s : very big device. try to use"
1246 " READ CAPACITY(16).\n", diskname);
1247 longrc = 1;
1248 goto repeat;
1249 }
1250 printk(KERN_ERR "%s: too big for this kernel. Use a "
1251 "kernel compiled with support for large block "
1252 "devices.\n", diskname);
1253 sdkp->capacity = 0;
1254 goto got_data;
1255 }
1256 sdkp->capacity = 1 + (((sector_t)buffer[0] << 24) |
1257 (buffer[1] << 16) |
1258 (buffer[2] << 8) |
1259 buffer[3]);
1260 } else {
1261 sdkp->capacity = 1 + (((u64)buffer[0] << 56) |
1262 ((u64)buffer[1] << 48) |
1263 ((u64)buffer[2] << 40) |
1264 ((u64)buffer[3] << 32) |
1265 ((sector_t)buffer[4] << 24) |
1266 ((sector_t)buffer[5] << 16) |
1267 ((sector_t)buffer[6] << 8) |
1268 (sector_t)buffer[7]);
1269
1270 sector_size = (buffer[8] << 24) |
1271 (buffer[9] << 16) | (buffer[10] << 8) | buffer[11];
1272 }
1273
1274 /* Some devices return the total number of sectors, not the
1275 * highest sector number. Make the necessary adjustment. */
1276 if (sdp->fix_capacity)
1277 --sdkp->capacity;
1278
1279got_data:
1280 if (sector_size == 0) {
1281 sector_size = 512;
1282 printk(KERN_NOTICE "%s : sector size 0 reported, "
1283 "assuming 512.\n", diskname);
1284 }
1285
1286 if (sector_size != 512 &&
1287 sector_size != 1024 &&
1288 sector_size != 2048 &&
1289 sector_size != 4096 &&
1290 sector_size != 256) {
1291 printk(KERN_NOTICE "%s : unsupported sector size "
1292 "%d.\n", diskname, sector_size);
1293 /*
1294 * The user might want to re-format the drive with
1295 * a supported sectorsize. Once this happens, it
1296 * would be relatively trivial to set the thing up.
1297 * For this reason, we leave the thing in the table.
1298 */
1299 sdkp->capacity = 0;
1300 /*
1301 * set a bogus sector size so the normal read/write
1302 * logic in the block layer will eventually refuse any
1303 * request on this device without tripping over power
1304 * of two sector size assumptions
1305 */
1306 sector_size = 512;
1307 }
1308 {
1309 /*
1310 * The msdos fs needs to know the hardware sector size
1311 * So I have created this table. See ll_rw_blk.c
1312 * Jacques Gelinas (Jacques@solucorp.qc.ca)
1313 */
1314 int hard_sector = sector_size;
James Bottomley7a691bd2005-10-28 13:17:30 -05001315 sector_t sz = (sdkp->capacity/2) * (hard_sector/256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 request_queue_t *queue = sdp->request_queue;
James Bottomley7a691bd2005-10-28 13:17:30 -05001317 sector_t mb = sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 blk_queue_hardsect_size(queue, hard_sector);
1320 /* avoid 64-bit division on 32-bit platforms */
James Bottomley7a691bd2005-10-28 13:17:30 -05001321 sector_div(sz, 625);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 mb -= sz - 974;
1323 sector_div(mb, 1950);
1324
1325 printk(KERN_NOTICE "SCSI device %s: "
1326 "%llu %d-byte hdwr sectors (%llu MB)\n",
1327 diskname, (unsigned long long)sdkp->capacity,
1328 hard_sector, (unsigned long long)mb);
1329 }
1330
1331 /* Rescale capacity to 512-byte units */
1332 if (sector_size == 4096)
1333 sdkp->capacity <<= 3;
1334 else if (sector_size == 2048)
1335 sdkp->capacity <<= 2;
1336 else if (sector_size == 1024)
1337 sdkp->capacity <<= 1;
1338 else if (sector_size == 256)
1339 sdkp->capacity >>= 1;
1340
1341 sdkp->device->sector_size = sector_size;
1342}
1343
1344/* called with buffer of length 512 */
1345static inline int
James Bottomleyea73a9f2005-08-28 11:33:52 -05001346sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
1347 unsigned char *buffer, int len, struct scsi_mode_data *data,
1348 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
James Bottomleyea73a9f2005-08-28 11:33:52 -05001350 return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
James Bottomley1cf72692005-08-28 11:27:01 -05001351 SD_TIMEOUT, SD_MAX_RETRIES, data,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001352 sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
1355/*
1356 * read write protect setting, if possible - called only in sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001357 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 */
1359static void
1360sd_read_write_protect_flag(struct scsi_disk *sdkp, char *diskname,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001361 unsigned char *buffer)
1362{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 int res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001364 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 struct scsi_mode_data data;
1366
1367 set_disk_ro(sdkp->disk, 0);
James Bottomleyea73a9f2005-08-28 11:33:52 -05001368 if (sdp->skip_ms_page_3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 printk(KERN_NOTICE "%s: assuming Write Enabled\n", diskname);
1370 return;
1371 }
1372
James Bottomleyea73a9f2005-08-28 11:33:52 -05001373 if (sdp->use_192_bytes_for_3f) {
1374 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 } else {
1376 /*
1377 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1378 * We have to start carefully: some devices hang if we ask
1379 * for more than is available.
1380 */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001381 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 /*
1384 * Second attempt: ask for page 0 When only page 0 is
1385 * implemented, a request for page 3F may return Sense Key
1386 * 5: Illegal Request, Sense Code 24: Invalid field in
1387 * CDB.
1388 */
1389 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001390 res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 /*
1393 * Third attempt: ask 255 bytes, as we did earlier.
1394 */
1395 if (!scsi_status_is_good(res))
James Bottomleyea73a9f2005-08-28 11:33:52 -05001396 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
1397 &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399
1400 if (!scsi_status_is_good(res)) {
1401 printk(KERN_WARNING
1402 "%s: test WP failed, assume Write Enabled\n", diskname);
1403 } else {
1404 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
1405 set_disk_ro(sdkp->disk, sdkp->write_prot);
1406 printk(KERN_NOTICE "%s: Write Protect is %s\n", diskname,
1407 sdkp->write_prot ? "on" : "off");
1408 printk(KERN_DEBUG "%s: Mode Sense: %02x %02x %02x %02x\n",
1409 diskname, buffer[0], buffer[1], buffer[2], buffer[3]);
1410 }
1411}
1412
1413/*
1414 * sd_read_cache_type - called only from sd_revalidate_disk()
Al Viro48970802006-02-26 08:34:10 -06001415 * called with buffer of length SD_BUF_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 */
1417static void
1418sd_read_cache_type(struct scsi_disk *sdkp, char *diskname,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001419 unsigned char *buffer)
Al Viro 631e8a12005-05-16 01:59:55 +01001420{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 int len = 0, res;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001422 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Al Viro 631e8a12005-05-16 01:59:55 +01001424 int dbd;
1425 int modepage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 struct scsi_mode_data data;
1427 struct scsi_sense_hdr sshdr;
1428
James Bottomleyea73a9f2005-08-28 11:33:52 -05001429 if (sdp->skip_ms_page_8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 goto defaults;
1431
James Bottomleyea73a9f2005-08-28 11:33:52 -05001432 if (sdp->type == TYPE_RBC) {
Al Viro 631e8a12005-05-16 01:59:55 +01001433 modepage = 6;
1434 dbd = 8;
1435 } else {
1436 modepage = 8;
1437 dbd = 0;
1438 }
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 /* cautiously ask */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001441 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, 4, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 if (!scsi_status_is_good(res))
1444 goto bad_sense;
1445
Al Viro6d73c852006-02-23 02:03:16 +01001446 if (!data.header_length) {
1447 modepage = 6;
1448 printk(KERN_ERR "%s: missing header in MODE_SENSE response\n",
1449 diskname);
1450 }
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 /* that went OK, now ask for the proper length */
1453 len = data.length;
1454
1455 /*
1456 * We're only interested in the first three bytes, actually.
1457 * But the data cache page is defined for the first 20.
1458 */
1459 if (len < 3)
1460 goto bad_sense;
1461 if (len > 20)
1462 len = 20;
1463
1464 /* Take headers and block descriptors into account */
1465 len += data.header_length + data.block_descriptor_length;
Al Viro48970802006-02-26 08:34:10 -06001466 if (len > SD_BUF_SIZE)
1467 goto bad_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 /* Get the data */
James Bottomleyea73a9f2005-08-28 11:33:52 -05001470 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 if (scsi_status_is_good(res)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 int ct = 0;
Al Viro 631e8a12005-05-16 01:59:55 +01001474 int offset = data.header_length + data.block_descriptor_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Al Viro48970802006-02-26 08:34:10 -06001476 if (offset >= SD_BUF_SIZE - 2) {
1477 printk(KERN_ERR "%s: malformed MODE SENSE response",
1478 diskname);
1479 goto defaults;
1480 }
1481
Al Viro 631e8a12005-05-16 01:59:55 +01001482 if ((buffer[offset] & 0x3f) != modepage) {
1483 printk(KERN_ERR "%s: got wrong page\n", diskname);
1484 goto defaults;
1485 }
1486
1487 if (modepage == 8) {
1488 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
1489 sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
1490 } else {
1491 sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
1492 sdkp->RCD = 0;
1493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Tejun Heo007365a2006-01-06 09:53:52 +01001495 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
1496 if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
1497 printk(KERN_NOTICE "SCSI device %s: uses "
1498 "READ/WRITE(6), disabling FUA\n", diskname);
1499 sdkp->DPOFUA = 0;
1500 }
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 ct = sdkp->RCD + 2*sdkp->WCE;
1503
Tejun Heo007365a2006-01-06 09:53:52 +01001504 printk(KERN_NOTICE "SCSI device %s: drive cache: %s%s\n",
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001505 diskname, sd_cache_types[ct],
Tejun Heo007365a2006-01-06 09:53:52 +01001506 sdkp->DPOFUA ? " w/ FUA" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508 return;
1509 }
1510
1511bad_sense:
James Bottomleyea73a9f2005-08-28 11:33:52 -05001512 if (scsi_sense_valid(&sshdr) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 sshdr.sense_key == ILLEGAL_REQUEST &&
1514 sshdr.asc == 0x24 && sshdr.ascq == 0x0)
1515 printk(KERN_NOTICE "%s: cache data unavailable\n",
1516 diskname); /* Invalid field in CDB */
1517 else
1518 printk(KERN_ERR "%s: asking for cache data failed\n",
1519 diskname);
1520
1521defaults:
1522 printk(KERN_ERR "%s: assuming drive cache: write through\n",
1523 diskname);
1524 sdkp->WCE = 0;
1525 sdkp->RCD = 0;
Al Viro48970802006-02-26 08:34:10 -06001526 sdkp->DPOFUA = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
1528
1529/**
1530 * sd_revalidate_disk - called the first time a new disk is seen,
1531 * performs disk spin up, read_capacity, etc.
1532 * @disk: struct gendisk we care about
1533 **/
1534static int sd_revalidate_disk(struct gendisk *disk)
1535{
1536 struct scsi_disk *sdkp = scsi_disk(disk);
1537 struct scsi_device *sdp = sdkp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 unsigned char *buffer;
Tejun Heo461d4e92006-01-06 09:52:55 +01001539 unsigned ordered;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 SCSI_LOG_HLQUEUE(3, printk("sd_revalidate_disk: disk=%s\n", disk->disk_name));
1542
1543 /*
1544 * If the device is offline, don't try and read capacity or any
1545 * of the other niceties.
1546 */
1547 if (!scsi_device_online(sdp))
1548 goto out;
1549
Al Viro48970802006-02-26 08:34:10 -06001550 buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL | __GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 if (!buffer) {
1552 printk(KERN_WARNING "(sd_revalidate_disk:) Memory allocation "
1553 "failure.\n");
James Bottomleyea73a9f2005-08-28 11:33:52 -05001554 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
1556
1557 /* defaults, until the device tells us otherwise */
1558 sdp->sector_size = 512;
1559 sdkp->capacity = 0;
1560 sdkp->media_present = 1;
1561 sdkp->write_prot = 0;
1562 sdkp->WCE = 0;
1563 sdkp->RCD = 0;
1564
James Bottomleyea73a9f2005-08-28 11:33:52 -05001565 sd_spinup_disk(sdkp, disk->disk_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
1567 /*
1568 * Without media there is no reason to ask; moreover, some devices
1569 * react badly if we do.
1570 */
1571 if (sdkp->media_present) {
James Bottomleyea73a9f2005-08-28 11:33:52 -05001572 sd_read_capacity(sdkp, disk->disk_name, buffer);
Alan Stern38d76df2005-12-09 11:34:45 -05001573 sd_read_write_protect_flag(sdkp, disk->disk_name, buffer);
James Bottomleyea73a9f2005-08-28 11:33:52 -05001574 sd_read_cache_type(sdkp, disk->disk_name, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
Tejun Heo461d4e92006-01-06 09:52:55 +01001576
1577 /*
1578 * We now have all cache related info, determine how we deal
1579 * with ordered requests. Note that as the current SCSI
1580 * dispatch function can alter request order, we cannot use
1581 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1582 */
1583 if (sdkp->WCE)
Tejun Heo007365a2006-01-06 09:53:52 +01001584 ordered = sdkp->DPOFUA
1585 ? QUEUE_ORDERED_DRAIN_FUA : QUEUE_ORDERED_DRAIN_FLUSH;
Tejun Heo461d4e92006-01-06 09:52:55 +01001586 else
1587 ordered = QUEUE_ORDERED_DRAIN;
1588
1589 blk_queue_ordered(sdkp->disk->queue, ordered, sd_prepare_flush);
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 set_capacity(disk, sdkp->capacity);
1592 kfree(buffer);
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 out:
1595 return 0;
1596}
1597
1598/**
1599 * sd_probe - called during driver initialization and whenever a
1600 * new scsi device is attached to the system. It is called once
1601 * for each scsi device (not just disks) present.
1602 * @dev: pointer to device object
1603 *
1604 * Returns 0 if successful (or not interested in this scsi device
1605 * (e.g. scanner)); 1 when there is an error.
1606 *
1607 * Note: this function is invoked from the scsi mid-level.
1608 * This function sets up the mapping between a given
1609 * <host,channel,id,lun> (found in sdp) and new device name
1610 * (e.g. /dev/sda). More precisely it is the block device major
1611 * and minor number that is chosen here.
1612 *
1613 * Assume sd_attach is not re-entrant (for time being)
1614 * Also think about sd_attach() and sd_remove() running coincidentally.
1615 **/
1616static int sd_probe(struct device *dev)
1617{
1618 struct scsi_device *sdp = to_scsi_device(dev);
1619 struct scsi_disk *sdkp;
1620 struct gendisk *gd;
1621 u32 index;
1622 int error;
1623
1624 error = -ENODEV;
Al Viro 631e8a12005-05-16 01:59:55 +01001625 if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 goto out;
1627
James Bottomley9ccfc752005-10-02 11:45:08 -05001628 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
1629 "sd_attach\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 error = -ENOMEM;
Jes Sorensen24669f752006-01-16 10:31:18 -05001632 sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if (!sdkp)
1634 goto out;
1635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 gd = alloc_disk(16);
1637 if (!gd)
1638 goto out_free;
1639
1640 if (!idr_pre_get(&sd_index_idr, GFP_KERNEL))
1641 goto out_put;
1642
1643 spin_lock(&sd_index_lock);
1644 error = idr_get_new(&sd_index_idr, NULL, &index);
1645 spin_unlock(&sd_index_lock);
1646
1647 if (index >= SD_MAX_DISKS)
1648 error = -EBUSY;
1649 if (error)
1650 goto out_put;
1651
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001652 class_device_initialize(&sdkp->cdev);
1653 sdkp->cdev.dev = &sdp->sdev_gendev;
1654 sdkp->cdev.class = &sd_disk_class;
1655 strncpy(sdkp->cdev.class_id, sdp->sdev_gendev.bus_id, BUS_ID_SIZE);
1656
1657 if (class_device_add(&sdkp->cdev))
1658 goto out_put;
1659
Alan Stern39b7f1e2005-11-04 14:44:41 -05001660 get_device(&sdp->sdev_gendev);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 sdkp->device = sdp;
1663 sdkp->driver = &sd_template;
1664 sdkp->disk = gd;
1665 sdkp->index = index;
1666 sdkp->openers = 0;
1667
1668 if (!sdp->timeout) {
Al Viro 631e8a12005-05-16 01:59:55 +01001669 if (sdp->type != TYPE_MOD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 sdp->timeout = SD_TIMEOUT;
1671 else
1672 sdp->timeout = SD_MOD_TIMEOUT;
1673 }
1674
1675 gd->major = sd_major((index & 0xf0) >> 4);
1676 gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
1677 gd->minors = 16;
1678 gd->fops = &sd_fops;
1679
1680 if (index < 26) {
1681 sprintf(gd->disk_name, "sd%c", 'a' + index % 26);
1682 } else if (index < (26 + 1) * 26) {
1683 sprintf(gd->disk_name, "sd%c%c",
1684 'a' + index / 26 - 1,'a' + index % 26);
1685 } else {
1686 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
1687 const unsigned int m2 = (index / 26 - 1) % 26;
1688 const unsigned int m3 = index % 26;
1689 sprintf(gd->disk_name, "sd%c%c%c",
1690 'a' + m1, 'a' + m2, 'a' + m3);
1691 }
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 gd->private_data = &sdkp->driver;
Tejun Heo461d4e92006-01-06 09:52:55 +01001694 gd->queue = sdkp->device->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 sd_revalidate_disk(gd);
1697
1698 gd->driverfs_dev = &sdp->sdev_gendev;
1699 gd->flags = GENHD_FL_DRIVERFS;
1700 if (sdp->removable)
1701 gd->flags |= GENHD_FL_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703 dev_set_drvdata(dev, sdkp);
1704 add_disk(gd);
1705
James Bottomley9ccfc752005-10-02 11:45:08 -05001706 sdev_printk(KERN_NOTICE, sdp, "Attached scsi %sdisk %s\n",
1707 sdp->removable ? "removable " : "", gd->disk_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
1709 return 0;
1710
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001711 out_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 put_disk(gd);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001713 out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 kfree(sdkp);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001715 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 return error;
1717}
1718
1719/**
1720 * sd_remove - called whenever a scsi disk (previously recognized by
1721 * sd_probe) is detached from the system. It is called (potentially
1722 * multiple times) during sd module unload.
1723 * @sdp: pointer to mid level scsi device object
1724 *
1725 * Note: this function is invoked from the scsi mid-level.
1726 * This function potentially frees up a device name (e.g. /dev/sdc)
1727 * that could be re-used by a subsequent sd_probe().
1728 * This function is not called when the built-in sd driver is "exit-ed".
1729 **/
1730static int sd_remove(struct device *dev)
1731{
1732 struct scsi_disk *sdkp = dev_get_drvdata(dev);
1733
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001734 class_device_del(&sdkp->cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 del_gendisk(sdkp->disk);
1736 sd_shutdown(dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001737
Arjan van de Ven0b950672006-01-11 13:16:10 +01001738 mutex_lock(&sd_ref_mutex);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001739 dev_set_drvdata(dev, NULL);
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001740 class_device_put(&sdkp->cdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001741 mutex_unlock(&sd_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743 return 0;
1744}
1745
1746/**
1747 * scsi_disk_release - Called to free the scsi_disk structure
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001748 * @cdev: pointer to embedded class device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 *
Arjan van de Ven0b950672006-01-11 13:16:10 +01001750 * sd_ref_mutex must be held entering this routine. Because it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 * called on last put, you should always use the scsi_disk_get()
1752 * scsi_disk_put() helpers which manipulate the semaphore directly
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001753 * and never do a direct class_device_put().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 **/
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001755static void scsi_disk_release(struct class_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001757 struct scsi_disk *sdkp = to_scsi_disk(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 struct gendisk *disk = sdkp->disk;
1759
1760 spin_lock(&sd_index_lock);
1761 idr_remove(&sd_index_idr, sdkp->index);
1762 spin_unlock(&sd_index_lock);
1763
1764 disk->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 put_disk(disk);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001766 put_device(&sdkp->device->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 kfree(sdkp);
1769}
1770
1771/*
1772 * Send a SYNCHRONIZE CACHE instruction down to the device through
1773 * the normal SCSI command structure. Wait for the command to
1774 * complete.
1775 */
1776static void sd_shutdown(struct device *dev)
1777{
1778 struct scsi_device *sdp = to_scsi_device(dev);
Alan Stern39b7f1e2005-11-04 14:44:41 -05001779 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 if (!sdkp)
1782 return; /* this can happen */
1783
Alan Stern39b7f1e2005-11-04 14:44:41 -05001784 if (sdkp->WCE) {
1785 printk(KERN_NOTICE "Synchronizing SCSI cache for disk %s: \n",
1786 sdkp->disk->disk_name);
1787 sd_sync_cache(sdp);
1788 }
1789 scsi_disk_put(sdkp);
1790}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792/**
1793 * init_sd - entry point for this driver (both when built in or when
1794 * a module).
1795 *
1796 * Note: this function registers this driver with the scsi mid-level.
1797 **/
1798static int __init init_sd(void)
1799{
1800 int majors = 0, i;
1801
1802 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
1803
1804 for (i = 0; i < SD_MAJORS; i++)
1805 if (register_blkdev(sd_major(i), "sd") == 0)
1806 majors++;
1807
1808 if (!majors)
1809 return -ENODEV;
1810
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001811 class_register(&sd_disk_class);
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return scsi_register_driver(&sd_template.gendrv);
1814}
1815
1816/**
1817 * exit_sd - exit point for this driver (when it is a module).
1818 *
1819 * Note: this function unregisters this driver from the scsi mid-level.
1820 **/
1821static void __exit exit_sd(void)
1822{
1823 int i;
1824
1825 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
1826
1827 scsi_unregister_driver(&sd_template.gendrv);
1828 for (i = 0; i < SD_MAJORS; i++)
1829 unregister_blkdev(sd_major(i), "sd");
James Bottomley6bdaa1f2006-03-18 14:14:21 -06001830
1831 class_unregister(&sd_disk_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834module_init(init_sd);
1835module_exit(exit_sd);