2 * sd.c Copyright (C) 1992 Drew Eckhardt
3 * Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale
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.
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.
35 #include <linux/module.h>
37 #include <linux/kernel.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>
48 #include <linux/delay.h>
49 #include <linux/mutex.h>
50 #include <linux/string_helpers.h>
51 #include <asm/uaccess.h>
53 #include <scsi/scsi.h>
54 #include <scsi/scsi_cmnd.h>
55 #include <scsi/scsi_dbg.h>
56 #include <scsi/scsi_device.h>
57 #include <scsi/scsi_driver.h>
58 #include <scsi/scsi_eh.h>
59 #include <scsi/scsi_host.h>
60 #include <scsi/scsi_ioctl.h>
61 #include <scsi/scsicam.h>
64 #include "scsi_logging.h"
66 MODULE_AUTHOR("Eric Youngdale");
67 MODULE_DESCRIPTION("SCSI disk (sd) driver");
68 MODULE_LICENSE("GPL");
70 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR);
71 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR);
72 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR);
73 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR);
74 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR);
75 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR);
76 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR);
77 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR);
78 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR);
79 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR);
80 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR);
81 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR);
82 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR);
83 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR);
84 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR);
85 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR);
86 MODULE_ALIAS_SCSI_DEVICE(TYPE_DISK);
87 MODULE_ALIAS_SCSI_DEVICE(TYPE_MOD);
88 MODULE_ALIAS_SCSI_DEVICE(TYPE_RBC);
90 static int sd_revalidate_disk(struct gendisk *);
91 static int sd_probe(struct device *);
92 static int sd_remove(struct device *);
93 static void sd_shutdown(struct device *);
94 static int sd_suspend(struct device *, pm_message_t state);
95 static int sd_resume(struct device *);
96 static void sd_rescan(struct device *);
97 static int sd_done(struct scsi_cmnd *);
98 static void sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer);
99 static void scsi_disk_release(struct device *cdev);
100 static void sd_print_sense_hdr(struct scsi_disk *, struct scsi_sense_hdr *);
101 static void sd_print_result(struct scsi_disk *, int);
103 static DEFINE_IDA(sd_index_ida);
105 /* This semaphore is used to mediate the 0->1 reference get in the
106 * face of object destruction (i.e. we can't allow a get on an
107 * object after last put) */
108 static DEFINE_MUTEX(sd_ref_mutex);
110 static const char *sd_cache_types[] = {
111 "write through", "none", "write back",
112 "write back, no read (daft)"
116 sd_store_cache_type(struct device *dev, struct device_attribute *attr,
117 const char *buf, size_t count)
119 int i, ct = -1, rcd, wce, sp;
120 struct scsi_disk *sdkp = to_scsi_disk(dev);
121 struct scsi_device *sdp = sdkp->device;
124 struct scsi_mode_data data;
125 struct scsi_sense_hdr sshdr;
128 if (sdp->type != TYPE_DISK)
129 /* no cache control on RBC devices; theoretically they
130 * can do it, but there's probably so many exceptions
131 * it's not worth the risk */
134 for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
135 const int len = strlen(sd_cache_types[i]);
136 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
144 rcd = ct & 0x01 ? 1 : 0;
145 wce = ct & 0x02 ? 1 : 0;
146 if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
147 SD_MAX_RETRIES, &data, NULL))
149 len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
150 data.block_descriptor_length);
151 buffer_data = buffer + data.header_length +
152 data.block_descriptor_length;
153 buffer_data[2] &= ~0x05;
154 buffer_data[2] |= wce << 2 | rcd;
155 sp = buffer_data[0] & 0x80 ? 1 : 0;
157 if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
158 SD_MAX_RETRIES, &data, &sshdr)) {
159 if (scsi_sense_valid(&sshdr))
160 sd_print_sense_hdr(sdkp, &sshdr);
163 sd_revalidate_disk(sdkp->disk);
168 sd_store_manage_start_stop(struct device *dev, struct device_attribute *attr,
169 const char *buf, size_t count)
171 struct scsi_disk *sdkp = to_scsi_disk(dev);
172 struct scsi_device *sdp = sdkp->device;
174 if (!capable(CAP_SYS_ADMIN))
177 sdp->manage_start_stop = simple_strtoul(buf, NULL, 10);
183 sd_store_allow_restart(struct device *dev, struct device_attribute *attr,
184 const char *buf, size_t count)
186 struct scsi_disk *sdkp = to_scsi_disk(dev);
187 struct scsi_device *sdp = sdkp->device;
189 if (!capable(CAP_SYS_ADMIN))
192 if (sdp->type != TYPE_DISK)
195 sdp->allow_restart = simple_strtoul(buf, NULL, 10);
201 sd_show_cache_type(struct device *dev, struct device_attribute *attr,
204 struct scsi_disk *sdkp = to_scsi_disk(dev);
205 int ct = sdkp->RCD + 2*sdkp->WCE;
207 return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
211 sd_show_fua(struct device *dev, struct device_attribute *attr, char *buf)
213 struct scsi_disk *sdkp = to_scsi_disk(dev);
215 return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
219 sd_show_manage_start_stop(struct device *dev, struct device_attribute *attr,
222 struct scsi_disk *sdkp = to_scsi_disk(dev);
223 struct scsi_device *sdp = sdkp->device;
225 return snprintf(buf, 20, "%u\n", sdp->manage_start_stop);
229 sd_show_allow_restart(struct device *dev, struct device_attribute *attr,
232 struct scsi_disk *sdkp = to_scsi_disk(dev);
234 return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
238 sd_show_protection_type(struct device *dev, struct device_attribute *attr,
241 struct scsi_disk *sdkp = to_scsi_disk(dev);
243 return snprintf(buf, 20, "%u\n", sdkp->protection_type);
247 sd_show_app_tag_own(struct device *dev, struct device_attribute *attr,
250 struct scsi_disk *sdkp = to_scsi_disk(dev);
252 return snprintf(buf, 20, "%u\n", sdkp->ATO);
255 static struct device_attribute sd_disk_attrs[] = {
256 __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
257 sd_store_cache_type),
258 __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
259 __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
260 sd_store_allow_restart),
261 __ATTR(manage_start_stop, S_IRUGO|S_IWUSR, sd_show_manage_start_stop,
262 sd_store_manage_start_stop),
263 __ATTR(protection_type, S_IRUGO, sd_show_protection_type, NULL),
264 __ATTR(app_tag_own, S_IRUGO, sd_show_app_tag_own, NULL),
268 static struct class sd_disk_class = {
270 .owner = THIS_MODULE,
271 .dev_release = scsi_disk_release,
272 .dev_attrs = sd_disk_attrs,
275 static struct scsi_driver sd_template = {
276 .owner = THIS_MODULE,
281 .suspend = sd_suspend,
283 .shutdown = sd_shutdown,
290 * Device no to disk mapping:
292 * major disc2 disc p1
293 * |............|.............|....|....| <- dev_t
296 * Inside a major, we have 16k disks, however mapped non-
297 * contiguously. The first 16 disks are for major0, the next
298 * ones with major1, ... Disk 256 is for major0 again, disk 272
300 * As we stay compatible with our numbering scheme, we can reuse
301 * the well-know SCSI majors 8, 65--71, 136--143.
303 static int sd_major(int major_idx)
307 return SCSI_DISK0_MAJOR;
309 return SCSI_DISK1_MAJOR + major_idx - 1;
311 return SCSI_DISK8_MAJOR + major_idx - 8;
314 return 0; /* shut up gcc */
318 static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
320 struct scsi_disk *sdkp = NULL;
322 if (disk->private_data) {
323 sdkp = scsi_disk(disk);
324 if (scsi_device_get(sdkp->device) == 0)
325 get_device(&sdkp->dev);
332 static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
334 struct scsi_disk *sdkp;
336 mutex_lock(&sd_ref_mutex);
337 sdkp = __scsi_disk_get(disk);
338 mutex_unlock(&sd_ref_mutex);
342 static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
344 struct scsi_disk *sdkp;
346 mutex_lock(&sd_ref_mutex);
347 sdkp = dev_get_drvdata(dev);
349 sdkp = __scsi_disk_get(sdkp->disk);
350 mutex_unlock(&sd_ref_mutex);
354 static void scsi_disk_put(struct scsi_disk *sdkp)
356 struct scsi_device *sdev = sdkp->device;
358 mutex_lock(&sd_ref_mutex);
359 put_device(&sdkp->dev);
360 scsi_device_put(sdev);
361 mutex_unlock(&sd_ref_mutex);
365 * sd_init_command - build a scsi (read or write) command from
366 * information in the request structure.
367 * @SCpnt: pointer to mid-level's per scsi command structure that
368 * contains request and into which the scsi command is written
370 * Returns 1 if successful and 0 if error (or cannot be done now).
372 static int sd_prep_fn(struct request_queue *q, struct request *rq)
374 struct scsi_cmnd *SCpnt;
375 struct scsi_device *sdp = q->queuedata;
376 struct gendisk *disk = rq->rq_disk;
377 struct scsi_disk *sdkp;
378 sector_t block = rq->sector;
380 unsigned int this_count = rq->nr_sectors;
381 unsigned int timeout = sdp->timeout;
384 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
385 ret = scsi_setup_blk_pc_cmnd(sdp, rq);
387 } else if (rq->cmd_type != REQ_TYPE_FS) {
391 ret = scsi_setup_fs_cmnd(sdp, rq);
392 if (ret != BLKPREP_OK)
395 sdkp = scsi_disk(disk);
397 /* from here on until we're complete, any goto out
398 * is used for a killable error condition */
401 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
402 "sd_init_command: block=%llu, "
404 (unsigned long long)block,
407 if (!sdp || !scsi_device_online(sdp) ||
408 block + rq->nr_sectors > get_capacity(disk)) {
409 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
410 "Finishing %ld sectors\n",
412 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
413 "Retry with 0x%p\n", SCpnt));
419 * quietly refuse to do anything to a changed disc until
420 * the changed bit has been reset
422 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
427 * Some SD card readers can't handle multi-sector accesses which touch
428 * the last one or two hardware sectors. Split accesses as needed.
430 threshold = get_capacity(disk) - SD_LAST_BUGGY_SECTORS *
431 (sdp->sector_size / 512);
433 if (unlikely(sdp->last_sector_bug && block + this_count > threshold)) {
434 if (block < threshold) {
435 /* Access up to the threshold but not beyond */
436 this_count = threshold - block;
438 /* Access only a single hardware sector */
439 this_count = sdp->sector_size / 512;
443 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, "block=%llu\n",
444 (unsigned long long)block));
447 * If we have a 1K hardware sectorsize, prevent access to single
448 * 512 byte sectors. In theory we could handle this - in fact
449 * the scsi cdrom driver must be able to handle this because
450 * we typically use 1K blocksizes, and cdroms typically have
451 * 2K hardware sectorsizes. Of course, things are simpler
452 * with the cdrom, since it is read-only. For performance
453 * reasons, the filesystems should be able to handle this
454 * and not force the scsi disk driver to use bounce buffers
457 if (sdp->sector_size == 1024) {
458 if ((block & 1) || (rq->nr_sectors & 1)) {
459 scmd_printk(KERN_ERR, SCpnt,
460 "Bad block number requested\n");
464 this_count = this_count >> 1;
467 if (sdp->sector_size == 2048) {
468 if ((block & 3) || (rq->nr_sectors & 3)) {
469 scmd_printk(KERN_ERR, SCpnt,
470 "Bad block number requested\n");
474 this_count = this_count >> 2;
477 if (sdp->sector_size == 4096) {
478 if ((block & 7) || (rq->nr_sectors & 7)) {
479 scmd_printk(KERN_ERR, SCpnt,
480 "Bad block number requested\n");
484 this_count = this_count >> 3;
487 if (rq_data_dir(rq) == WRITE) {
488 if (!sdp->writeable) {
491 SCpnt->cmnd[0] = WRITE_6;
492 SCpnt->sc_data_direction = DMA_TO_DEVICE;
494 if (blk_integrity_rq(rq) &&
495 sd_dif_prepare(rq, block, sdp->sector_size) == -EIO)
498 } else if (rq_data_dir(rq) == READ) {
499 SCpnt->cmnd[0] = READ_6;
500 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
502 scmd_printk(KERN_ERR, SCpnt, "Unknown command %x\n", rq->cmd_flags);
506 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
507 "%s %d/%ld 512 byte blocks.\n",
508 (rq_data_dir(rq) == WRITE) ?
509 "writing" : "reading", this_count,
512 /* Set RDPROTECT/WRPROTECT if disk is formatted with DIF */
513 if (scsi_host_dif_capable(sdp->host, sdkp->protection_type))
514 SCpnt->cmnd[1] = 1 << 5;
518 if (block > 0xffffffff) {
519 SCpnt->cmnd[0] += READ_16 - READ_6;
520 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
521 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
522 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
523 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
524 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
525 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
526 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
527 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
528 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
529 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
530 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
531 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
532 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
533 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
534 } else if ((this_count > 0xff) || (block > 0x1fffff) ||
535 scsi_device_protection(SCpnt->device) ||
536 SCpnt->device->use_10_for_rw) {
537 if (this_count > 0xffff)
540 SCpnt->cmnd[0] += READ_10 - READ_6;
541 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
542 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
543 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
544 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
545 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
546 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
547 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
548 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
550 if (unlikely(blk_fua_rq(rq))) {
552 * This happens only if this drive failed
553 * 10byte rw command with ILLEGAL_REQUEST
554 * during operation and thus turned off
557 scmd_printk(KERN_ERR, SCpnt,
558 "FUA write on READ/WRITE(6) drive\n");
562 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
563 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
564 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
565 SCpnt->cmnd[4] = (unsigned char) this_count;
568 SCpnt->sdb.length = this_count * sdp->sector_size;
570 /* If DIF or DIX is enabled, tell HBA how to handle request */
571 if (sdkp->protection_type || scsi_prot_sg_count(SCpnt))
572 sd_dif_op(SCpnt, sdkp->protection_type, scsi_prot_sg_count(SCpnt));
575 * We shouldn't disconnect in the middle of a sector, so with a dumb
576 * host adapter, it's safe to assume that we can at least transfer
577 * this many bytes between each connect / disconnect.
579 SCpnt->transfersize = sdp->sector_size;
580 SCpnt->underflow = this_count << 9;
581 SCpnt->allowed = SD_MAX_RETRIES;
582 SCpnt->timeout_per_command = timeout;
585 * This indicates that the command is ready from our end to be
590 return scsi_prep_return(q, rq, ret);
594 * sd_open - open a scsi disk device
595 * @inode: only i_rdev member may be used
596 * @filp: only f_mode and f_flags may be used
598 * Returns 0 if successful. Returns a negated errno value in case
601 * Note: This can be called from a user context (e.g. fsck(1) )
602 * or from within the kernel (e.g. as a result of a mount(1) ).
603 * In the latter case @inode and @filp carry an abridged amount
604 * of information as noted above.
606 static int sd_open(struct inode *inode, struct file *filp)
608 struct gendisk *disk = inode->i_bdev->bd_disk;
609 struct scsi_disk *sdkp;
610 struct scsi_device *sdev;
613 if (!(sdkp = scsi_disk_get(disk)))
617 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_open\n"));
622 * If the device is in error recovery, wait until it is done.
623 * If the device is offline, then disallow any access to it.
626 if (!scsi_block_when_processing_errors(sdev))
629 if (sdev->removable || sdkp->write_prot)
630 check_disk_change(inode->i_bdev);
633 * If the drive is empty, just let the open fail.
636 if (sdev->removable && !sdkp->media_present &&
637 !(filp->f_flags & O_NDELAY))
641 * If the device has the write protect tab set, have the open fail
642 * if the user expects to be able to write to the thing.
645 if (sdkp->write_prot && (filp->f_mode & FMODE_WRITE))
649 * It is possible that the disk changing stuff resulted in
650 * the device being taken offline. If this is the case,
651 * report this to the user, and don't pretend that the
652 * open actually succeeded.
655 if (!scsi_device_online(sdev))
658 if (!sdkp->openers++ && sdev->removable) {
659 if (scsi_block_when_processing_errors(sdev))
660 scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
671 * sd_release - invoked when the (last) close(2) is called on this
673 * @inode: only i_rdev member may be used
674 * @filp: only f_mode and f_flags may be used
678 * Note: may block (uninterruptible) if error recovery is underway
681 static int sd_release(struct inode *inode, struct file *filp)
683 struct gendisk *disk = inode->i_bdev->bd_disk;
684 struct scsi_disk *sdkp = scsi_disk(disk);
685 struct scsi_device *sdev = sdkp->device;
687 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_release\n"));
689 if (!--sdkp->openers && sdev->removable) {
690 if (scsi_block_when_processing_errors(sdev))
691 scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
695 * XXX and what if there are packets in flight and this close()
696 * XXX is followed by a "rmmod sd_mod"?
702 static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
704 struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
705 struct scsi_device *sdp = sdkp->device;
706 struct Scsi_Host *host = sdp->host;
709 /* default to most commonly used values */
710 diskinfo[0] = 0x40; /* 1 << 6 */
711 diskinfo[1] = 0x20; /* 1 << 5 */
712 diskinfo[2] = sdkp->capacity >> 11;
714 /* override with calculated, extended default, or driver values */
715 if (host->hostt->bios_param)
716 host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
718 scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
720 geo->heads = diskinfo[0];
721 geo->sectors = diskinfo[1];
722 geo->cylinders = diskinfo[2];
727 * sd_ioctl - process an ioctl
728 * @inode: only i_rdev/i_bdev members may be used
729 * @filp: only f_mode and f_flags may be used
730 * @cmd: ioctl command number
731 * @arg: this is third argument given to ioctl(2) system call.
732 * Often contains a pointer.
734 * Returns 0 if successful (some ioctls return postive numbers on
735 * success as well). Returns a negated errno value in case of error.
737 * Note: most ioctls are forward onto the block subsystem or further
738 * down in the scsi subsystem.
740 static int sd_ioctl(struct inode * inode, struct file * filp,
741 unsigned int cmd, unsigned long arg)
743 struct block_device *bdev = inode->i_bdev;
744 struct gendisk *disk = bdev->bd_disk;
745 struct scsi_device *sdp = scsi_disk(disk)->device;
746 void __user *p = (void __user *)arg;
749 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
750 disk->disk_name, cmd));
753 * If we are in the middle of error recovery, don't let anyone
754 * else try and use this device. Also, if error recovery fails, it
755 * may try and take the device offline, in which case all further
756 * access to the device is prohibited.
758 error = scsi_nonblockable_ioctl(sdp, cmd, p, filp);
759 if (!scsi_block_when_processing_errors(sdp) || !error)
763 * Send SCSI addressing ioctls directly to mid level, send other
764 * ioctls to block level and then onto mid level if they can't be
768 case SCSI_IOCTL_GET_IDLUN:
769 case SCSI_IOCTL_GET_BUS_NUMBER:
770 return scsi_ioctl(sdp, cmd, p);
772 error = scsi_cmd_ioctl(filp, disk->queue, disk, cmd, p);
773 if (error != -ENOTTY)
776 return scsi_ioctl(sdp, cmd, p);
779 static void set_media_not_present(struct scsi_disk *sdkp)
781 sdkp->media_present = 0;
783 sdkp->device->changed = 1;
787 * sd_media_changed - check if our medium changed
788 * @disk: kernel device descriptor
790 * Returns 0 if not applicable or no change; 1 if change
792 * Note: this function is invoked from the block subsystem.
794 static int sd_media_changed(struct gendisk *disk)
796 struct scsi_disk *sdkp = scsi_disk(disk);
797 struct scsi_device *sdp = sdkp->device;
798 struct scsi_sense_hdr *sshdr = NULL;
801 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_media_changed\n"));
807 * If the device is offline, don't send any commands - just pretend as
808 * if the command failed. If the device ever comes back online, we
809 * can deal with it then. It is only because of unrecoverable errors
810 * that we would ever take a device offline in the first place.
812 if (!scsi_device_online(sdp)) {
813 set_media_not_present(sdkp);
819 * Using TEST_UNIT_READY enables differentiation between drive with
820 * no cartridge loaded - NOT READY, drive with changed cartridge -
821 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
823 * Drives that auto spin down. eg iomega jaz 1G, will be started
824 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
825 * sd_revalidate() is called.
829 if (scsi_block_when_processing_errors(sdp)) {
830 sshdr = kzalloc(sizeof(*sshdr), GFP_KERNEL);
831 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES,
836 * Unable to test, unit probably not ready. This usually
837 * means there is no disc in the drive. Mark as changed,
838 * and we will figure it out later once the drive is
841 if (retval || (scsi_sense_valid(sshdr) &&
842 /* 0x3a is medium not present */
843 sshdr->asc == 0x3a)) {
844 set_media_not_present(sdkp);
850 * For removable scsi disk we have to recognise the presence
851 * of a disk in the drive. This is kept in the struct scsi_disk
852 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
854 sdkp->media_present = 1;
856 retval = sdp->changed;
859 if (retval != sdkp->previous_state)
860 sdev_evt_send_simple(sdp, SDEV_EVT_MEDIA_CHANGE, GFP_KERNEL);
861 sdkp->previous_state = retval;
866 static int sd_sync_cache(struct scsi_disk *sdkp)
869 struct scsi_device *sdp = sdkp->device;
870 struct scsi_sense_hdr sshdr;
872 if (!scsi_device_online(sdp))
876 for (retries = 3; retries > 0; --retries) {
877 unsigned char cmd[10] = { 0 };
879 cmd[0] = SYNCHRONIZE_CACHE;
881 * Leave the rest of the command zero to indicate
884 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
885 SD_TIMEOUT, SD_MAX_RETRIES);
891 sd_print_result(sdkp, res);
892 if (driver_byte(res) & DRIVER_SENSE)
893 sd_print_sense_hdr(sdkp, &sshdr);
901 static void sd_prepare_flush(struct request_queue *q, struct request *rq)
903 rq->cmd_type = REQ_TYPE_BLOCK_PC;
904 rq->timeout = SD_TIMEOUT;
905 rq->cmd[0] = SYNCHRONIZE_CACHE;
909 static void sd_rescan(struct device *dev)
911 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
914 sd_revalidate_disk(sdkp->disk);
922 * This gets directly called from VFS. When the ioctl
923 * is not recognized we go back to the other translation paths.
925 static long sd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
927 struct block_device *bdev = file->f_path.dentry->d_inode->i_bdev;
928 struct gendisk *disk = bdev->bd_disk;
929 struct scsi_device *sdev = scsi_disk(disk)->device;
932 * If we are in the middle of error recovery, don't let anyone
933 * else try and use this device. Also, if error recovery fails, it
934 * may try and take the device offline, in which case all further
935 * access to the device is prohibited.
937 if (!scsi_block_when_processing_errors(sdev))
940 if (sdev->host->hostt->compat_ioctl) {
943 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
949 * Let the static ioctl translation table take care of it.
955 static struct block_device_operations sd_fops = {
956 .owner = THIS_MODULE,
958 .release = sd_release,
962 .compat_ioctl = sd_compat_ioctl,
964 .media_changed = sd_media_changed,
965 .revalidate_disk = sd_revalidate_disk,
968 static unsigned int sd_completed_bytes(struct scsi_cmnd *scmd)
970 u64 start_lba = scmd->request->sector;
971 u64 end_lba = scmd->request->sector + (scsi_bufflen(scmd) / 512);
975 if (!blk_fs_request(scmd->request))
978 info_valid = scsi_get_sense_info_fld(scmd->sense_buffer,
979 SCSI_SENSE_BUFFERSIZE,
984 if (scsi_bufflen(scmd) <= scmd->device->sector_size)
987 if (scmd->device->sector_size < 512) {
988 /* only legitimate sector_size here is 256 */
992 /* be careful ... don't want any overflows */
993 u64 factor = scmd->device->sector_size / 512;
994 do_div(start_lba, factor);
995 do_div(end_lba, factor);
998 /* The bad lba was reported incorrectly, we have no idea where
1001 if (bad_lba < start_lba || bad_lba >= end_lba)
1004 /* This computation should always be done in terms of
1005 * the resolution of the device's medium.
1007 return (bad_lba - start_lba) * scmd->device->sector_size;
1011 * sd_done - bottom half handler: called when the lower level
1012 * driver has completed (successfully or otherwise) a scsi command.
1013 * @SCpnt: mid-level's per command structure.
1015 * Note: potentially run from within an ISR. Must not block.
1017 static int sd_done(struct scsi_cmnd *SCpnt)
1019 int result = SCpnt->result;
1020 unsigned int good_bytes = result ? 0 : scsi_bufflen(SCpnt);
1021 struct scsi_sense_hdr sshdr;
1022 int sense_valid = 0;
1023 int sense_deferred = 0;
1026 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
1028 sense_deferred = scsi_sense_is_deferred(&sshdr);
1030 #ifdef CONFIG_SCSI_LOGGING
1031 SCSI_LOG_HLCOMPLETE(1, scsi_print_result(SCpnt));
1033 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, SCpnt,
1034 "sd_done: sb[respc,sk,asc,"
1035 "ascq]=%x,%x,%x,%x\n",
1036 sshdr.response_code,
1037 sshdr.sense_key, sshdr.asc,
1041 if (driver_byte(result) != DRIVER_SENSE &&
1042 (!sense_valid || sense_deferred))
1045 switch (sshdr.sense_key) {
1046 case HARDWARE_ERROR:
1048 good_bytes = sd_completed_bytes(SCpnt);
1050 case RECOVERED_ERROR:
1052 /* Inform the user, but make sure that it's not treated
1055 scsi_print_sense("sd", SCpnt);
1057 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
1058 good_bytes = scsi_bufflen(SCpnt);
1060 case ABORTED_COMMAND:
1061 if (sshdr.asc == 0x10) { /* DIF: Disk detected corruption */
1062 scsi_print_result(SCpnt);
1063 scsi_print_sense("sd", SCpnt);
1064 good_bytes = sd_completed_bytes(SCpnt);
1067 case ILLEGAL_REQUEST:
1068 if (sshdr.asc == 0x10) { /* DIX: HBA detected corruption */
1069 scsi_print_result(SCpnt);
1070 scsi_print_sense("sd", SCpnt);
1071 good_bytes = sd_completed_bytes(SCpnt);
1073 if (!scsi_device_protection(SCpnt->device) &&
1074 SCpnt->device->use_10_for_rw &&
1075 (SCpnt->cmnd[0] == READ_10 ||
1076 SCpnt->cmnd[0] == WRITE_10))
1077 SCpnt->device->use_10_for_rw = 0;
1078 if (SCpnt->device->use_10_for_ms &&
1079 (SCpnt->cmnd[0] == MODE_SENSE_10 ||
1080 SCpnt->cmnd[0] == MODE_SELECT_10))
1081 SCpnt->device->use_10_for_ms = 0;
1087 if (rq_data_dir(SCpnt->request) == READ && scsi_prot_sg_count(SCpnt))
1088 sd_dif_complete(SCpnt, good_bytes);
1093 static int media_not_present(struct scsi_disk *sdkp,
1094 struct scsi_sense_hdr *sshdr)
1097 if (!scsi_sense_valid(sshdr))
1099 /* not invoked for commands that could return deferred errors */
1100 if (sshdr->sense_key != NOT_READY &&
1101 sshdr->sense_key != UNIT_ATTENTION)
1103 if (sshdr->asc != 0x3A) /* medium not present */
1106 set_media_not_present(sdkp);
1111 * spinup disk - called only in sd_revalidate_disk()
1114 sd_spinup_disk(struct scsi_disk *sdkp)
1116 unsigned char cmd[10];
1117 unsigned long spintime_expire = 0;
1118 int retries, spintime;
1119 unsigned int the_result;
1120 struct scsi_sense_hdr sshdr;
1121 int sense_valid = 0;
1125 /* Spin up drives, as required. Only do this at boot time */
1126 /* Spinup needs to be done for module loads too. */
1131 cmd[0] = TEST_UNIT_READY;
1132 memset((void *) &cmd[1], 0, 9);
1134 the_result = scsi_execute_req(sdkp->device, cmd,
1140 * If the drive has indicated to us that it
1141 * doesn't have any media in it, don't bother
1142 * with any more polling.
1144 if (media_not_present(sdkp, &sshdr))
1148 sense_valid = scsi_sense_valid(&sshdr);
1150 } while (retries < 3 &&
1151 (!scsi_status_is_good(the_result) ||
1152 ((driver_byte(the_result) & DRIVER_SENSE) &&
1153 sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1155 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1156 /* no sense, TUR either succeeded or failed
1157 * with a status error */
1158 if(!spintime && !scsi_status_is_good(the_result)) {
1159 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1160 sd_print_result(sdkp, the_result);
1166 * The device does not want the automatic start to be issued.
1168 if (sdkp->device->no_start_on_add) {
1173 * If manual intervention is required, or this is an
1174 * absent USB storage device, a spinup is meaningless.
1177 sshdr.sense_key == NOT_READY &&
1178 sshdr.asc == 4 && sshdr.ascq == 3) {
1179 break; /* manual intervention required */
1182 * Issue command to spin up drive when not ready
1184 } else if (sense_valid && sshdr.sense_key == NOT_READY) {
1186 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
1187 cmd[0] = START_STOP;
1188 cmd[1] = 1; /* Return immediately */
1189 memset((void *) &cmd[2], 0, 8);
1190 cmd[4] = 1; /* Start spin cycle */
1191 if (sdkp->device->start_stop_pwr_cond)
1193 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1195 SD_TIMEOUT, SD_MAX_RETRIES);
1196 spintime_expire = jiffies + 100 * HZ;
1199 /* Wait 1 second for next try */
1204 * Wait for USB flash devices with slow firmware.
1205 * Yes, this sense key/ASC combination shouldn't
1206 * occur here. It's characteristic of these devices.
1208 } else if (sense_valid &&
1209 sshdr.sense_key == UNIT_ATTENTION &&
1210 sshdr.asc == 0x28) {
1212 spintime_expire = jiffies + 5 * HZ;
1215 /* Wait 1 second for next try */
1218 /* we don't understand the sense code, so it's
1219 * probably pointless to loop */
1221 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1222 sd_print_sense_hdr(sdkp, &sshdr);
1227 } while (spintime && time_before_eq(jiffies, spintime_expire));
1230 if (scsi_status_is_good(the_result))
1233 printk("not responding...\n");
1239 * Determine whether disk supports Data Integrity Field.
1241 void sd_read_protection_type(struct scsi_disk *sdkp, unsigned char *buffer)
1243 struct scsi_device *sdp = sdkp->device;
1246 if (scsi_device_protection(sdp) == 0 || (buffer[12] & 1) == 0)
1249 type = ((buffer[12] >> 1) & 7) + 1; /* P_TYPE 0 = Type 1 */
1252 case SD_DIF_TYPE0_PROTECTION:
1253 sdkp->protection_type = 0;
1256 case SD_DIF_TYPE1_PROTECTION:
1257 case SD_DIF_TYPE3_PROTECTION:
1258 sdkp->protection_type = type;
1261 case SD_DIF_TYPE2_PROTECTION:
1262 sd_printk(KERN_ERR, sdkp, "formatted with DIF Type 2 " \
1263 "protection which is currently unsupported. " \
1264 "Disabling disk!\n");
1268 sd_printk(KERN_ERR, sdkp, "formatted with unknown " \
1269 "protection type %d. Disabling disk!\n", type);
1276 sdkp->protection_type = 0;
1281 * read disk capacity
1284 sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
1286 unsigned char cmd[16];
1287 int the_result, retries;
1288 int sector_size = 0;
1289 /* Force READ CAPACITY(16) when PROTECT=1 */
1290 int longrc = scsi_device_protection(sdkp->device) ? 1 : 0;
1291 struct scsi_sense_hdr sshdr;
1292 int sense_valid = 0;
1293 struct scsi_device *sdp = sdkp->device;
1299 memset((void *) cmd, 0, 16);
1300 cmd[0] = SERVICE_ACTION_IN;
1301 cmd[1] = SAI_READ_CAPACITY_16;
1303 memset((void *) buffer, 0, 13);
1305 cmd[0] = READ_CAPACITY;
1306 memset((void *) &cmd[1], 0, 9);
1307 memset((void *) buffer, 0, 8);
1310 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
1311 buffer, longrc ? 13 : 8, &sshdr,
1312 SD_TIMEOUT, SD_MAX_RETRIES);
1314 if (media_not_present(sdkp, &sshdr))
1318 sense_valid = scsi_sense_valid(&sshdr);
1321 } while (the_result && retries);
1323 if (the_result && !longrc) {
1324 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY failed\n");
1325 sd_print_result(sdkp, the_result);
1326 if (driver_byte(the_result) & DRIVER_SENSE)
1327 sd_print_sense_hdr(sdkp, &sshdr);
1329 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
1331 /* Set dirty bit for removable devices if not ready -
1332 * sometimes drives will not report this properly. */
1333 if (sdp->removable &&
1334 sense_valid && sshdr.sense_key == NOT_READY)
1337 /* Either no media are present but the drive didn't tell us,
1338 or they are present but the read capacity command fails */
1339 /* sdkp->media_present = 0; -- not always correct */
1340 sdkp->capacity = 0; /* unknown mapped to zero - as usual */
1343 } else if (the_result && longrc) {
1344 /* READ CAPACITY(16) has been failed */
1345 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY(16) failed\n");
1346 sd_print_result(sdkp, the_result);
1347 sd_printk(KERN_NOTICE, sdkp, "Use 0xffffffff as device size\n");
1349 sdkp->capacity = 1 + (sector_t) 0xffffffff;
1354 sector_size = (buffer[4] << 24) |
1355 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
1356 if (buffer[0] == 0xff && buffer[1] == 0xff &&
1357 buffer[2] == 0xff && buffer[3] == 0xff) {
1358 if(sizeof(sdkp->capacity) > 4) {
1359 sd_printk(KERN_NOTICE, sdkp, "Very big device. "
1360 "Trying to use READ CAPACITY(16).\n");
1364 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use "
1365 "a kernel compiled with support for large "
1366 "block devices.\n");
1370 sdkp->capacity = 1 + (((sector_t)buffer[0] << 24) |
1375 sdkp->capacity = 1 + (((u64)buffer[0] << 56) |
1376 ((u64)buffer[1] << 48) |
1377 ((u64)buffer[2] << 40) |
1378 ((u64)buffer[3] << 32) |
1379 ((sector_t)buffer[4] << 24) |
1380 ((sector_t)buffer[5] << 16) |
1381 ((sector_t)buffer[6] << 8) |
1382 (sector_t)buffer[7]);
1384 sector_size = (buffer[8] << 24) |
1385 (buffer[9] << 16) | (buffer[10] << 8) | buffer[11];
1387 sd_read_protection_type(sdkp, buffer);
1390 /* Some devices return the total number of sectors, not the
1391 * highest sector number. Make the necessary adjustment. */
1392 if (sdp->fix_capacity) {
1395 /* Some devices have version which report the correct sizes
1396 * and others which do not. We guess size according to a heuristic
1397 * and err on the side of lowering the capacity. */
1399 if (sdp->guess_capacity)
1400 if (sdkp->capacity & 0x01) /* odd sizes are odd */
1405 if (sector_size == 0) {
1407 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
1411 if (sector_size != 512 &&
1412 sector_size != 1024 &&
1413 sector_size != 2048 &&
1414 sector_size != 4096 &&
1415 sector_size != 256) {
1416 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
1419 * The user might want to re-format the drive with
1420 * a supported sectorsize. Once this happens, it
1421 * would be relatively trivial to set the thing up.
1422 * For this reason, we leave the thing in the table.
1426 * set a bogus sector size so the normal read/write
1427 * logic in the block layer will eventually refuse any
1428 * request on this device without tripping over power
1429 * of two sector size assumptions
1433 blk_queue_hardsect_size(sdp->request_queue, sector_size);
1436 char cap_str_2[10], cap_str_10[10];
1437 u64 sz = sdkp->capacity << ffz(~sector_size);
1439 string_get_size(sz, STRING_UNITS_2, cap_str_2,
1441 string_get_size(sz, STRING_UNITS_10, cap_str_10,
1442 sizeof(cap_str_10));
1444 sd_printk(KERN_NOTICE, sdkp,
1445 "%llu %d-byte hardware sectors: (%s/%s)\n",
1446 (unsigned long long)sdkp->capacity,
1447 sector_size, cap_str_10, cap_str_2);
1450 /* Rescale capacity to 512-byte units */
1451 if (sector_size == 4096)
1452 sdkp->capacity <<= 3;
1453 else if (sector_size == 2048)
1454 sdkp->capacity <<= 2;
1455 else if (sector_size == 1024)
1456 sdkp->capacity <<= 1;
1457 else if (sector_size == 256)
1458 sdkp->capacity >>= 1;
1460 sdkp->device->sector_size = sector_size;
1463 /* called with buffer of length 512 */
1465 sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
1466 unsigned char *buffer, int len, struct scsi_mode_data *data,
1467 struct scsi_sense_hdr *sshdr)
1469 return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
1470 SD_TIMEOUT, SD_MAX_RETRIES, data,
1475 * read write protect setting, if possible - called only in sd_revalidate_disk()
1476 * called with buffer of length SD_BUF_SIZE
1479 sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
1482 struct scsi_device *sdp = sdkp->device;
1483 struct scsi_mode_data data;
1485 set_disk_ro(sdkp->disk, 0);
1486 if (sdp->skip_ms_page_3f) {
1487 sd_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
1491 if (sdp->use_192_bytes_for_3f) {
1492 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
1495 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1496 * We have to start carefully: some devices hang if we ask
1497 * for more than is available.
1499 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
1502 * Second attempt: ask for page 0 When only page 0 is
1503 * implemented, a request for page 3F may return Sense Key
1504 * 5: Illegal Request, Sense Code 24: Invalid field in
1507 if (!scsi_status_is_good(res))
1508 res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
1511 * Third attempt: ask 255 bytes, as we did earlier.
1513 if (!scsi_status_is_good(res))
1514 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
1518 if (!scsi_status_is_good(res)) {
1519 sd_printk(KERN_WARNING, sdkp,
1520 "Test WP failed, assume Write Enabled\n");
1522 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
1523 set_disk_ro(sdkp->disk, sdkp->write_prot);
1524 sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
1525 sdkp->write_prot ? "on" : "off");
1526 sd_printk(KERN_DEBUG, sdkp,
1527 "Mode Sense: %02x %02x %02x %02x\n",
1528 buffer[0], buffer[1], buffer[2], buffer[3]);
1533 * sd_read_cache_type - called only from sd_revalidate_disk()
1534 * called with buffer of length SD_BUF_SIZE
1537 sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
1540 struct scsi_device *sdp = sdkp->device;
1544 struct scsi_mode_data data;
1545 struct scsi_sense_hdr sshdr;
1547 if (sdp->skip_ms_page_8)
1550 if (sdp->type == TYPE_RBC) {
1558 /* cautiously ask */
1559 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, 4, &data, &sshdr);
1561 if (!scsi_status_is_good(res))
1564 if (!data.header_length) {
1566 sd_printk(KERN_ERR, sdkp, "Missing header in MODE_SENSE response\n");
1569 /* that went OK, now ask for the proper length */
1573 * We're only interested in the first three bytes, actually.
1574 * But the data cache page is defined for the first 20.
1581 /* Take headers and block descriptors into account */
1582 len += data.header_length + data.block_descriptor_length;
1583 if (len > SD_BUF_SIZE)
1587 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr);
1589 if (scsi_status_is_good(res)) {
1590 int offset = data.header_length + data.block_descriptor_length;
1592 if (offset >= SD_BUF_SIZE - 2) {
1593 sd_printk(KERN_ERR, sdkp, "Malformed MODE SENSE response\n");
1597 if ((buffer[offset] & 0x3f) != modepage) {
1598 sd_printk(KERN_ERR, sdkp, "Got wrong page\n");
1602 if (modepage == 8) {
1603 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
1604 sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
1606 sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
1610 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
1611 if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
1612 sd_printk(KERN_NOTICE, sdkp,
1613 "Uses READ/WRITE(6), disabling FUA\n");
1617 sd_printk(KERN_NOTICE, sdkp,
1618 "Write cache: %s, read cache: %s, %s\n",
1619 sdkp->WCE ? "enabled" : "disabled",
1620 sdkp->RCD ? "disabled" : "enabled",
1621 sdkp->DPOFUA ? "supports DPO and FUA"
1622 : "doesn't support DPO or FUA");
1628 if (scsi_sense_valid(&sshdr) &&
1629 sshdr.sense_key == ILLEGAL_REQUEST &&
1630 sshdr.asc == 0x24 && sshdr.ascq == 0x0)
1631 /* Invalid field in CDB */
1632 sd_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
1634 sd_printk(KERN_ERR, sdkp, "Asking for cache data failed\n");
1637 sd_printk(KERN_ERR, sdkp, "Assuming drive cache: write through\n");
1644 * The ATO bit indicates whether the DIF application tag is available
1645 * for use by the operating system.
1647 void sd_read_app_tag_own(struct scsi_disk *sdkp, unsigned char *buffer)
1650 struct scsi_device *sdp = sdkp->device;
1651 struct scsi_mode_data data;
1652 struct scsi_sense_hdr sshdr;
1654 if (sdp->type != TYPE_DISK)
1657 if (sdkp->protection_type == 0)
1660 res = scsi_mode_sense(sdp, 1, 0x0a, buffer, 36, SD_TIMEOUT,
1661 SD_MAX_RETRIES, &data, &sshdr);
1663 if (!scsi_status_is_good(res) || !data.header_length ||
1665 sd_printk(KERN_WARNING, sdkp,
1666 "getting Control mode page failed, assume no ATO\n");
1668 if (scsi_sense_valid(&sshdr))
1669 sd_print_sense_hdr(sdkp, &sshdr);
1674 offset = data.header_length + data.block_descriptor_length;
1676 if ((buffer[offset] & 0x3f) != 0x0a) {
1677 sd_printk(KERN_ERR, sdkp, "ATO Got wrong page\n");
1681 if ((buffer[offset + 5] & 0x80) == 0)
1690 * sd_revalidate_disk - called the first time a new disk is seen,
1691 * performs disk spin up, read_capacity, etc.
1692 * @disk: struct gendisk we care about
1694 static int sd_revalidate_disk(struct gendisk *disk)
1696 struct scsi_disk *sdkp = scsi_disk(disk);
1697 struct scsi_device *sdp = sdkp->device;
1698 unsigned char *buffer;
1701 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp,
1702 "sd_revalidate_disk\n"));
1705 * If the device is offline, don't try and read capacity or any
1706 * of the other niceties.
1708 if (!scsi_device_online(sdp))
1711 buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
1713 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
1714 "allocation failure.\n");
1718 /* defaults, until the device tells us otherwise */
1719 sdp->sector_size = 512;
1721 sdkp->media_present = 1;
1722 sdkp->write_prot = 0;
1727 sd_spinup_disk(sdkp);
1730 * Without media there is no reason to ask; moreover, some devices
1731 * react badly if we do.
1733 if (sdkp->media_present) {
1734 sd_read_capacity(sdkp, buffer);
1735 sd_read_write_protect_flag(sdkp, buffer);
1736 sd_read_cache_type(sdkp, buffer);
1737 sd_read_app_tag_own(sdkp, buffer);
1741 * We now have all cache related info, determine how we deal
1742 * with ordered requests. Note that as the current SCSI
1743 * dispatch function can alter request order, we cannot use
1744 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1747 ordered = sdkp->DPOFUA
1748 ? QUEUE_ORDERED_DRAIN_FUA : QUEUE_ORDERED_DRAIN_FLUSH;
1750 ordered = QUEUE_ORDERED_DRAIN;
1752 blk_queue_ordered(sdkp->disk->queue, ordered, sd_prepare_flush);
1754 set_capacity(disk, sdkp->capacity);
1762 * sd_probe - called during driver initialization and whenever a
1763 * new scsi device is attached to the system. It is called once
1764 * for each scsi device (not just disks) present.
1765 * @dev: pointer to device object
1767 * Returns 0 if successful (or not interested in this scsi device
1768 * (e.g. scanner)); 1 when there is an error.
1770 * Note: this function is invoked from the scsi mid-level.
1771 * This function sets up the mapping between a given
1772 * <host,channel,id,lun> (found in sdp) and new device name
1773 * (e.g. /dev/sda). More precisely it is the block device major
1774 * and minor number that is chosen here.
1776 * Assume sd_attach is not re-entrant (for time being)
1777 * Also think about sd_attach() and sd_remove() running coincidentally.
1779 static int sd_probe(struct device *dev)
1781 struct scsi_device *sdp = to_scsi_device(dev);
1782 struct scsi_disk *sdkp;
1788 if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
1791 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
1795 sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
1799 gd = alloc_disk(16);
1804 if (!ida_pre_get(&sd_index_ida, GFP_KERNEL))
1807 error = ida_get_new(&sd_index_ida, &index);
1808 } while (error == -EAGAIN);
1814 if (index >= SD_MAX_DISKS)
1815 goto out_free_index;
1818 sdkp->driver = &sd_template;
1820 sdkp->index = index;
1822 sdkp->previous_state = 1;
1824 if (!sdp->timeout) {
1825 if (sdp->type != TYPE_MOD)
1826 sdp->timeout = SD_TIMEOUT;
1828 sdp->timeout = SD_MOD_TIMEOUT;
1831 device_initialize(&sdkp->dev);
1832 sdkp->dev.parent = &sdp->sdev_gendev;
1833 sdkp->dev.class = &sd_disk_class;
1834 strncpy(sdkp->dev.bus_id, sdp->sdev_gendev.bus_id, BUS_ID_SIZE);
1836 if (device_add(&sdkp->dev))
1837 goto out_free_index;
1839 get_device(&sdp->sdev_gendev);
1841 gd->major = sd_major((index & 0xf0) >> 4);
1842 gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
1844 gd->fops = &sd_fops;
1847 sprintf(gd->disk_name, "sd%c", 'a' + index % 26);
1848 } else if (index < (26 + 1) * 26) {
1849 sprintf(gd->disk_name, "sd%c%c",
1850 'a' + index / 26 - 1,'a' + index % 26);
1852 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
1853 const unsigned int m2 = (index / 26 - 1) % 26;
1854 const unsigned int m3 = index % 26;
1855 sprintf(gd->disk_name, "sd%c%c%c",
1856 'a' + m1, 'a' + m2, 'a' + m3);
1859 gd->private_data = &sdkp->driver;
1860 gd->queue = sdkp->device->request_queue;
1862 sd_revalidate_disk(gd);
1864 blk_queue_prep_rq(sdp->request_queue, sd_prep_fn);
1866 gd->driverfs_dev = &sdp->sdev_gendev;
1867 gd->flags = GENHD_FL_DRIVERFS;
1869 gd->flags |= GENHD_FL_REMOVABLE;
1871 dev_set_drvdata(dev, sdkp);
1873 sd_dif_config_host(sdkp);
1875 sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
1876 sdp->removable ? "removable " : "");
1881 ida_remove(&sd_index_ida, index);
1891 * sd_remove - called whenever a scsi disk (previously recognized by
1892 * sd_probe) is detached from the system. It is called (potentially
1893 * multiple times) during sd module unload.
1894 * @sdp: pointer to mid level scsi device object
1896 * Note: this function is invoked from the scsi mid-level.
1897 * This function potentially frees up a device name (e.g. /dev/sdc)
1898 * that could be re-used by a subsequent sd_probe().
1899 * This function is not called when the built-in sd driver is "exit-ed".
1901 static int sd_remove(struct device *dev)
1903 struct scsi_disk *sdkp = dev_get_drvdata(dev);
1905 device_del(&sdkp->dev);
1906 del_gendisk(sdkp->disk);
1909 mutex_lock(&sd_ref_mutex);
1910 dev_set_drvdata(dev, NULL);
1911 put_device(&sdkp->dev);
1912 mutex_unlock(&sd_ref_mutex);
1918 * scsi_disk_release - Called to free the scsi_disk structure
1919 * @dev: pointer to embedded class device
1921 * sd_ref_mutex must be held entering this routine. Because it is
1922 * called on last put, you should always use the scsi_disk_get()
1923 * scsi_disk_put() helpers which manipulate the semaphore directly
1924 * and never do a direct put_device.
1926 static void scsi_disk_release(struct device *dev)
1928 struct scsi_disk *sdkp = to_scsi_disk(dev);
1929 struct gendisk *disk = sdkp->disk;
1931 ida_remove(&sd_index_ida, sdkp->index);
1933 disk->private_data = NULL;
1935 put_device(&sdkp->device->sdev_gendev);
1940 static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
1942 unsigned char cmd[6] = { START_STOP }; /* START_VALID */
1943 struct scsi_sense_hdr sshdr;
1944 struct scsi_device *sdp = sdkp->device;
1948 cmd[4] |= 1; /* START */
1950 if (sdp->start_stop_pwr_cond)
1951 cmd[4] |= start ? 1 << 4 : 3 << 4; /* Active or Standby */
1953 if (!scsi_device_online(sdp))
1956 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
1957 SD_TIMEOUT, SD_MAX_RETRIES);
1959 sd_printk(KERN_WARNING, sdkp, "START_STOP FAILED\n");
1960 sd_print_result(sdkp, res);
1961 if (driver_byte(res) & DRIVER_SENSE)
1962 sd_print_sense_hdr(sdkp, &sshdr);
1969 * Send a SYNCHRONIZE CACHE instruction down to the device through
1970 * the normal SCSI command structure. Wait for the command to
1973 static void sd_shutdown(struct device *dev)
1975 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
1978 return; /* this can happen */
1981 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
1982 sd_sync_cache(sdkp);
1985 if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) {
1986 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
1987 sd_start_stop_device(sdkp, 0);
1990 scsi_disk_put(sdkp);
1993 static int sd_suspend(struct device *dev, pm_message_t mesg)
1995 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
1999 return 0; /* this can happen */
2002 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
2003 ret = sd_sync_cache(sdkp);
2008 if ((mesg.event & PM_EVENT_SLEEP) && sdkp->device->manage_start_stop) {
2009 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
2010 ret = sd_start_stop_device(sdkp, 0);
2014 scsi_disk_put(sdkp);
2018 static int sd_resume(struct device *dev)
2020 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
2023 if (!sdkp->device->manage_start_stop)
2026 sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
2027 ret = sd_start_stop_device(sdkp, 1);
2030 scsi_disk_put(sdkp);
2035 * init_sd - entry point for this driver (both when built in or when
2038 * Note: this function registers this driver with the scsi mid-level.
2040 static int __init init_sd(void)
2042 int majors = 0, i, err;
2044 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
2046 for (i = 0; i < SD_MAJORS; i++)
2047 if (register_blkdev(sd_major(i), "sd") == 0)
2053 err = class_register(&sd_disk_class);
2057 err = scsi_register_driver(&sd_template.gendrv);
2064 class_unregister(&sd_disk_class);
2066 for (i = 0; i < SD_MAJORS; i++)
2067 unregister_blkdev(sd_major(i), "sd");
2072 * exit_sd - exit point for this driver (when it is a module).
2074 * Note: this function unregisters this driver from the scsi mid-level.
2076 static void __exit exit_sd(void)
2080 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
2082 scsi_unregister_driver(&sd_template.gendrv);
2083 class_unregister(&sd_disk_class);
2085 for (i = 0; i < SD_MAJORS; i++)
2086 unregister_blkdev(sd_major(i), "sd");
2089 module_init(init_sd);
2090 module_exit(exit_sd);
2092 static void sd_print_sense_hdr(struct scsi_disk *sdkp,
2093 struct scsi_sense_hdr *sshdr)
2095 sd_printk(KERN_INFO, sdkp, "");
2096 scsi_show_sense_hdr(sshdr);
2097 sd_printk(KERN_INFO, sdkp, "");
2098 scsi_show_extd_sense(sshdr->asc, sshdr->ascq);
2101 static void sd_print_result(struct scsi_disk *sdkp, int result)
2103 sd_printk(KERN_INFO, sdkp, "");
2104 scsi_show_result(result);