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 <asm/uaccess.h>
52 #include <scsi/scsi.h>
53 #include <scsi/scsi_cmnd.h>
54 #include <scsi/scsi_dbg.h>
55 #include <scsi/scsi_device.h>
56 #include <scsi/scsi_driver.h>
57 #include <scsi/scsi_eh.h>
58 #include <scsi/scsi_host.h>
59 #include <scsi/scsi_ioctl.h>
60 #include <scsi/scsicam.h>
63 #include "scsi_logging.h"
65 MODULE_AUTHOR("Eric Youngdale");
66 MODULE_DESCRIPTION("SCSI disk (sd) driver");
67 MODULE_LICENSE("GPL");
69 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR
);
70 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR
);
71 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR
);
72 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR
);
73 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR
);
74 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR
);
75 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR
);
76 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR
);
77 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR
);
78 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR
);
79 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR
);
80 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR
);
81 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR
);
82 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR
);
83 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR
);
84 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR
);
85 MODULE_ALIAS_SCSI_DEVICE(TYPE_DISK
);
86 MODULE_ALIAS_SCSI_DEVICE(TYPE_MOD
);
87 MODULE_ALIAS_SCSI_DEVICE(TYPE_RBC
);
89 static int sd_revalidate_disk(struct gendisk
*);
90 static int sd_probe(struct device
*);
91 static int sd_remove(struct device
*);
92 static void sd_shutdown(struct device
*);
93 static int sd_suspend(struct device
*, pm_message_t state
);
94 static int sd_resume(struct device
*);
95 static void sd_rescan(struct device
*);
96 static int sd_done(struct scsi_cmnd
*);
97 static void sd_read_capacity(struct scsi_disk
*sdkp
, unsigned char *buffer
);
98 static void scsi_disk_release(struct class_device
*cdev
);
99 static void sd_print_sense_hdr(struct scsi_disk
*, struct scsi_sense_hdr
*);
100 static void sd_print_result(struct scsi_disk
*, int);
102 static DEFINE_IDR(sd_index_idr
);
103 static DEFINE_SPINLOCK(sd_index_lock
);
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)"
115 static ssize_t
sd_store_cache_type(struct class_device
*cdev
, const char *buf
,
118 int i
, ct
= -1, rcd
, wce
, sp
;
119 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
120 struct scsi_device
*sdp
= sdkp
->device
;
123 struct scsi_mode_data data
;
124 struct scsi_sense_hdr sshdr
;
127 if (sdp
->type
!= TYPE_DISK
)
128 /* no cache control on RBC devices; theoretically they
129 * can do it, but there's probably so many exceptions
130 * it's not worth the risk */
133 for (i
= 0; i
< ARRAY_SIZE(sd_cache_types
); i
++) {
134 const int len
= strlen(sd_cache_types
[i
]);
135 if (strncmp(sd_cache_types
[i
], buf
, len
) == 0 &&
143 rcd
= ct
& 0x01 ? 1 : 0;
144 wce
= ct
& 0x02 ? 1 : 0;
145 if (scsi_mode_sense(sdp
, 0x08, 8, buffer
, sizeof(buffer
), SD_TIMEOUT
,
146 SD_MAX_RETRIES
, &data
, NULL
))
148 len
= min_t(size_t, sizeof(buffer
), data
.length
- data
.header_length
-
149 data
.block_descriptor_length
);
150 buffer_data
= buffer
+ data
.header_length
+
151 data
.block_descriptor_length
;
152 buffer_data
[2] &= ~0x05;
153 buffer_data
[2] |= wce
<< 2 | rcd
;
154 sp
= buffer_data
[0] & 0x80 ? 1 : 0;
156 if (scsi_mode_select(sdp
, 1, sp
, 8, buffer_data
, len
, SD_TIMEOUT
,
157 SD_MAX_RETRIES
, &data
, &sshdr
)) {
158 if (scsi_sense_valid(&sshdr
))
159 sd_print_sense_hdr(sdkp
, &sshdr
);
162 sd_revalidate_disk(sdkp
->disk
);
166 static ssize_t
sd_store_manage_start_stop(struct class_device
*cdev
,
167 const char *buf
, size_t count
)
169 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
170 struct scsi_device
*sdp
= sdkp
->device
;
172 if (!capable(CAP_SYS_ADMIN
))
175 sdp
->manage_start_stop
= simple_strtoul(buf
, NULL
, 10);
180 static ssize_t
sd_store_allow_restart(struct class_device
*cdev
, const char *buf
,
183 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
184 struct scsi_device
*sdp
= sdkp
->device
;
186 if (!capable(CAP_SYS_ADMIN
))
189 if (sdp
->type
!= TYPE_DISK
)
192 sdp
->allow_restart
= simple_strtoul(buf
, NULL
, 10);
197 static ssize_t
sd_show_cache_type(struct class_device
*cdev
, char *buf
)
199 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
200 int ct
= sdkp
->RCD
+ 2*sdkp
->WCE
;
202 return snprintf(buf
, 40, "%s\n", sd_cache_types
[ct
]);
205 static ssize_t
sd_show_fua(struct class_device
*cdev
, char *buf
)
207 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
209 return snprintf(buf
, 20, "%u\n", sdkp
->DPOFUA
);
212 static ssize_t
sd_show_manage_start_stop(struct class_device
*cdev
, char *buf
)
214 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
215 struct scsi_device
*sdp
= sdkp
->device
;
217 return snprintf(buf
, 20, "%u\n", sdp
->manage_start_stop
);
220 static ssize_t
sd_show_allow_restart(struct class_device
*cdev
, char *buf
)
222 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
224 return snprintf(buf
, 40, "%d\n", sdkp
->device
->allow_restart
);
227 static struct class_device_attribute sd_disk_attrs
[] = {
228 __ATTR(cache_type
, S_IRUGO
|S_IWUSR
, sd_show_cache_type
,
229 sd_store_cache_type
),
230 __ATTR(FUA
, S_IRUGO
, sd_show_fua
, NULL
),
231 __ATTR(allow_restart
, S_IRUGO
|S_IWUSR
, sd_show_allow_restart
,
232 sd_store_allow_restart
),
233 __ATTR(manage_start_stop
, S_IRUGO
|S_IWUSR
, sd_show_manage_start_stop
,
234 sd_store_manage_start_stop
),
238 static struct class sd_disk_class
= {
240 .owner
= THIS_MODULE
,
241 .release
= scsi_disk_release
,
242 .class_dev_attrs
= sd_disk_attrs
,
245 static struct scsi_driver sd_template
= {
246 .owner
= THIS_MODULE
,
251 .suspend
= sd_suspend
,
253 .shutdown
= sd_shutdown
,
260 * Device no to disk mapping:
262 * major disc2 disc p1
263 * |............|.............|....|....| <- dev_t
266 * Inside a major, we have 16k disks, however mapped non-
267 * contiguously. The first 16 disks are for major0, the next
268 * ones with major1, ... Disk 256 is for major0 again, disk 272
270 * As we stay compatible with our numbering scheme, we can reuse
271 * the well-know SCSI majors 8, 65--71, 136--143.
273 static int sd_major(int major_idx
)
277 return SCSI_DISK0_MAJOR
;
279 return SCSI_DISK1_MAJOR
+ major_idx
- 1;
281 return SCSI_DISK8_MAJOR
+ major_idx
- 8;
284 return 0; /* shut up gcc */
288 static inline struct scsi_disk
*scsi_disk(struct gendisk
*disk
)
290 return container_of(disk
->private_data
, struct scsi_disk
, driver
);
293 static struct scsi_disk
*__scsi_disk_get(struct gendisk
*disk
)
295 struct scsi_disk
*sdkp
= NULL
;
297 if (disk
->private_data
) {
298 sdkp
= scsi_disk(disk
);
299 if (scsi_device_get(sdkp
->device
) == 0)
300 class_device_get(&sdkp
->cdev
);
307 static struct scsi_disk
*scsi_disk_get(struct gendisk
*disk
)
309 struct scsi_disk
*sdkp
;
311 mutex_lock(&sd_ref_mutex
);
312 sdkp
= __scsi_disk_get(disk
);
313 mutex_unlock(&sd_ref_mutex
);
317 static struct scsi_disk
*scsi_disk_get_from_dev(struct device
*dev
)
319 struct scsi_disk
*sdkp
;
321 mutex_lock(&sd_ref_mutex
);
322 sdkp
= dev_get_drvdata(dev
);
324 sdkp
= __scsi_disk_get(sdkp
->disk
);
325 mutex_unlock(&sd_ref_mutex
);
329 static void scsi_disk_put(struct scsi_disk
*sdkp
)
331 struct scsi_device
*sdev
= sdkp
->device
;
333 mutex_lock(&sd_ref_mutex
);
334 class_device_put(&sdkp
->cdev
);
335 scsi_device_put(sdev
);
336 mutex_unlock(&sd_ref_mutex
);
340 * sd_init_command - build a scsi (read or write) command from
341 * information in the request structure.
342 * @SCpnt: pointer to mid-level's per scsi command structure that
343 * contains request and into which the scsi command is written
345 * Returns 1 if successful and 0 if error (or cannot be done now).
347 static int sd_prep_fn(struct request_queue
*q
, struct request
*rq
)
349 struct scsi_cmnd
*SCpnt
;
350 struct scsi_device
*sdp
= q
->queuedata
;
351 struct gendisk
*disk
= rq
->rq_disk
;
352 sector_t block
= rq
->sector
;
353 unsigned int this_count
= rq
->nr_sectors
;
354 unsigned int timeout
= sdp
->timeout
;
357 if (rq
->cmd_type
== REQ_TYPE_BLOCK_PC
) {
358 ret
= scsi_setup_blk_pc_cmnd(sdp
, rq
);
360 } else if (rq
->cmd_type
!= REQ_TYPE_FS
) {
364 ret
= scsi_setup_fs_cmnd(sdp
, rq
);
365 if (ret
!= BLKPREP_OK
)
369 /* from here on until we're complete, any goto out
370 * is used for a killable error condition */
373 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO
, SCpnt
,
374 "sd_init_command: block=%llu, "
376 (unsigned long long)block
,
379 if (!sdp
|| !scsi_device_online(sdp
) ||
380 block
+ rq
->nr_sectors
> get_capacity(disk
)) {
381 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO
, SCpnt
,
382 "Finishing %ld sectors\n",
384 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO
, SCpnt
,
385 "Retry with 0x%p\n", SCpnt
));
391 * quietly refuse to do anything to a changed disc until
392 * the changed bit has been reset
394 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
398 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO
, SCpnt
, "block=%llu\n",
399 (unsigned long long)block
));
402 * If we have a 1K hardware sectorsize, prevent access to single
403 * 512 byte sectors. In theory we could handle this - in fact
404 * the scsi cdrom driver must be able to handle this because
405 * we typically use 1K blocksizes, and cdroms typically have
406 * 2K hardware sectorsizes. Of course, things are simpler
407 * with the cdrom, since it is read-only. For performance
408 * reasons, the filesystems should be able to handle this
409 * and not force the scsi disk driver to use bounce buffers
412 if (sdp
->sector_size
== 1024) {
413 if ((block
& 1) || (rq
->nr_sectors
& 1)) {
414 scmd_printk(KERN_ERR
, SCpnt
,
415 "Bad block number requested\n");
419 this_count
= this_count
>> 1;
422 if (sdp
->sector_size
== 2048) {
423 if ((block
& 3) || (rq
->nr_sectors
& 3)) {
424 scmd_printk(KERN_ERR
, SCpnt
,
425 "Bad block number requested\n");
429 this_count
= this_count
>> 2;
432 if (sdp
->sector_size
== 4096) {
433 if ((block
& 7) || (rq
->nr_sectors
& 7)) {
434 scmd_printk(KERN_ERR
, SCpnt
,
435 "Bad block number requested\n");
439 this_count
= this_count
>> 3;
442 if (rq_data_dir(rq
) == WRITE
) {
443 if (!sdp
->writeable
) {
446 SCpnt
->cmnd
[0] = WRITE_6
;
447 SCpnt
->sc_data_direction
= DMA_TO_DEVICE
;
448 } else if (rq_data_dir(rq
) == READ
) {
449 SCpnt
->cmnd
[0] = READ_6
;
450 SCpnt
->sc_data_direction
= DMA_FROM_DEVICE
;
452 scmd_printk(KERN_ERR
, SCpnt
, "Unknown command %x\n", rq
->cmd_flags
);
456 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO
, SCpnt
,
457 "%s %d/%ld 512 byte blocks.\n",
458 (rq_data_dir(rq
) == WRITE
) ?
459 "writing" : "reading", this_count
,
464 if (block
> 0xffffffff) {
465 SCpnt
->cmnd
[0] += READ_16
- READ_6
;
466 SCpnt
->cmnd
[1] |= blk_fua_rq(rq
) ? 0x8 : 0;
467 SCpnt
->cmnd
[2] = sizeof(block
) > 4 ? (unsigned char) (block
>> 56) & 0xff : 0;
468 SCpnt
->cmnd
[3] = sizeof(block
) > 4 ? (unsigned char) (block
>> 48) & 0xff : 0;
469 SCpnt
->cmnd
[4] = sizeof(block
) > 4 ? (unsigned char) (block
>> 40) & 0xff : 0;
470 SCpnt
->cmnd
[5] = sizeof(block
) > 4 ? (unsigned char) (block
>> 32) & 0xff : 0;
471 SCpnt
->cmnd
[6] = (unsigned char) (block
>> 24) & 0xff;
472 SCpnt
->cmnd
[7] = (unsigned char) (block
>> 16) & 0xff;
473 SCpnt
->cmnd
[8] = (unsigned char) (block
>> 8) & 0xff;
474 SCpnt
->cmnd
[9] = (unsigned char) block
& 0xff;
475 SCpnt
->cmnd
[10] = (unsigned char) (this_count
>> 24) & 0xff;
476 SCpnt
->cmnd
[11] = (unsigned char) (this_count
>> 16) & 0xff;
477 SCpnt
->cmnd
[12] = (unsigned char) (this_count
>> 8) & 0xff;
478 SCpnt
->cmnd
[13] = (unsigned char) this_count
& 0xff;
479 SCpnt
->cmnd
[14] = SCpnt
->cmnd
[15] = 0;
480 } else if ((this_count
> 0xff) || (block
> 0x1fffff) ||
481 SCpnt
->device
->use_10_for_rw
) {
482 if (this_count
> 0xffff)
485 SCpnt
->cmnd
[0] += READ_10
- READ_6
;
486 SCpnt
->cmnd
[1] |= blk_fua_rq(rq
) ? 0x8 : 0;
487 SCpnt
->cmnd
[2] = (unsigned char) (block
>> 24) & 0xff;
488 SCpnt
->cmnd
[3] = (unsigned char) (block
>> 16) & 0xff;
489 SCpnt
->cmnd
[4] = (unsigned char) (block
>> 8) & 0xff;
490 SCpnt
->cmnd
[5] = (unsigned char) block
& 0xff;
491 SCpnt
->cmnd
[6] = SCpnt
->cmnd
[9] = 0;
492 SCpnt
->cmnd
[7] = (unsigned char) (this_count
>> 8) & 0xff;
493 SCpnt
->cmnd
[8] = (unsigned char) this_count
& 0xff;
495 if (unlikely(blk_fua_rq(rq
))) {
497 * This happens only if this drive failed
498 * 10byte rw command with ILLEGAL_REQUEST
499 * during operation and thus turned off
502 scmd_printk(KERN_ERR
, SCpnt
,
503 "FUA write on READ/WRITE(6) drive\n");
507 SCpnt
->cmnd
[1] |= (unsigned char) ((block
>> 16) & 0x1f);
508 SCpnt
->cmnd
[2] = (unsigned char) ((block
>> 8) & 0xff);
509 SCpnt
->cmnd
[3] = (unsigned char) block
& 0xff;
510 SCpnt
->cmnd
[4] = (unsigned char) this_count
;
513 SCpnt
->request_bufflen
= this_count
* sdp
->sector_size
;
516 * We shouldn't disconnect in the middle of a sector, so with a dumb
517 * host adapter, it's safe to assume that we can at least transfer
518 * this many bytes between each connect / disconnect.
520 SCpnt
->transfersize
= sdp
->sector_size
;
521 SCpnt
->underflow
= this_count
<< 9;
522 SCpnt
->allowed
= SD_MAX_RETRIES
;
523 SCpnt
->timeout_per_command
= timeout
;
526 * This indicates that the command is ready from our end to be
531 return scsi_prep_return(q
, rq
, ret
);
535 * sd_open - open a scsi disk device
536 * @inode: only i_rdev member may be used
537 * @filp: only f_mode and f_flags may be used
539 * Returns 0 if successful. Returns a negated errno value in case
542 * Note: This can be called from a user context (e.g. fsck(1) )
543 * or from within the kernel (e.g. as a result of a mount(1) ).
544 * In the latter case @inode and @filp carry an abridged amount
545 * of information as noted above.
547 static int sd_open(struct inode
*inode
, struct file
*filp
)
549 struct gendisk
*disk
= inode
->i_bdev
->bd_disk
;
550 struct scsi_disk
*sdkp
;
551 struct scsi_device
*sdev
;
554 if (!(sdkp
= scsi_disk_get(disk
)))
558 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO
, sdkp
, "sd_open\n"));
563 * If the device is in error recovery, wait until it is done.
564 * If the device is offline, then disallow any access to it.
567 if (!scsi_block_when_processing_errors(sdev
))
570 if (sdev
->removable
|| sdkp
->write_prot
)
571 check_disk_change(inode
->i_bdev
);
574 * If the drive is empty, just let the open fail.
577 if (sdev
->removable
&& !sdkp
->media_present
&&
578 !(filp
->f_flags
& O_NDELAY
))
582 * If the device has the write protect tab set, have the open fail
583 * if the user expects to be able to write to the thing.
586 if (sdkp
->write_prot
&& (filp
->f_mode
& FMODE_WRITE
))
590 * It is possible that the disk changing stuff resulted in
591 * the device being taken offline. If this is the case,
592 * report this to the user, and don't pretend that the
593 * open actually succeeded.
596 if (!scsi_device_online(sdev
))
599 if (!sdkp
->openers
++ && sdev
->removable
) {
600 if (scsi_block_when_processing_errors(sdev
))
601 scsi_set_medium_removal(sdev
, SCSI_REMOVAL_PREVENT
);
612 * sd_release - invoked when the (last) close(2) is called on this
614 * @inode: only i_rdev member may be used
615 * @filp: only f_mode and f_flags may be used
619 * Note: may block (uninterruptible) if error recovery is underway
622 static int sd_release(struct inode
*inode
, struct file
*filp
)
624 struct gendisk
*disk
= inode
->i_bdev
->bd_disk
;
625 struct scsi_disk
*sdkp
= scsi_disk(disk
);
626 struct scsi_device
*sdev
= sdkp
->device
;
628 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO
, sdkp
, "sd_release\n"));
630 if (!--sdkp
->openers
&& sdev
->removable
) {
631 if (scsi_block_when_processing_errors(sdev
))
632 scsi_set_medium_removal(sdev
, SCSI_REMOVAL_ALLOW
);
636 * XXX and what if there are packets in flight and this close()
637 * XXX is followed by a "rmmod sd_mod"?
643 static int sd_getgeo(struct block_device
*bdev
, struct hd_geometry
*geo
)
645 struct scsi_disk
*sdkp
= scsi_disk(bdev
->bd_disk
);
646 struct scsi_device
*sdp
= sdkp
->device
;
647 struct Scsi_Host
*host
= sdp
->host
;
650 /* default to most commonly used values */
651 diskinfo
[0] = 0x40; /* 1 << 6 */
652 diskinfo
[1] = 0x20; /* 1 << 5 */
653 diskinfo
[2] = sdkp
->capacity
>> 11;
655 /* override with calculated, extended default, or driver values */
656 if (host
->hostt
->bios_param
)
657 host
->hostt
->bios_param(sdp
, bdev
, sdkp
->capacity
, diskinfo
);
659 scsicam_bios_param(bdev
, sdkp
->capacity
, diskinfo
);
661 geo
->heads
= diskinfo
[0];
662 geo
->sectors
= diskinfo
[1];
663 geo
->cylinders
= diskinfo
[2];
668 * sd_ioctl - process an ioctl
669 * @inode: only i_rdev/i_bdev members may be used
670 * @filp: only f_mode and f_flags may be used
671 * @cmd: ioctl command number
672 * @arg: this is third argument given to ioctl(2) system call.
673 * Often contains a pointer.
675 * Returns 0 if successful (some ioctls return postive numbers on
676 * success as well). Returns a negated errno value in case of error.
678 * Note: most ioctls are forward onto the block subsystem or further
679 * down in the scsi subsytem.
681 static int sd_ioctl(struct inode
* inode
, struct file
* filp
,
682 unsigned int cmd
, unsigned long arg
)
684 struct block_device
*bdev
= inode
->i_bdev
;
685 struct gendisk
*disk
= bdev
->bd_disk
;
686 struct scsi_device
*sdp
= scsi_disk(disk
)->device
;
687 void __user
*p
= (void __user
*)arg
;
690 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
691 disk
->disk_name
, cmd
));
694 * If we are in the middle of error recovery, don't let anyone
695 * else try and use this device. Also, if error recovery fails, it
696 * may try and take the device offline, in which case all further
697 * access to the device is prohibited.
699 error
= scsi_nonblockable_ioctl(sdp
, cmd
, p
, filp
);
700 if (!scsi_block_when_processing_errors(sdp
) || !error
)
704 * Send SCSI addressing ioctls directly to mid level, send other
705 * ioctls to block level and then onto mid level if they can't be
709 case SCSI_IOCTL_GET_IDLUN
:
710 case SCSI_IOCTL_GET_BUS_NUMBER
:
711 return scsi_ioctl(sdp
, cmd
, p
);
713 error
= scsi_cmd_ioctl(filp
, disk
->queue
, disk
, cmd
, p
);
714 if (error
!= -ENOTTY
)
717 return scsi_ioctl(sdp
, cmd
, p
);
720 static void set_media_not_present(struct scsi_disk
*sdkp
)
722 sdkp
->media_present
= 0;
724 sdkp
->device
->changed
= 1;
728 * sd_media_changed - check if our medium changed
729 * @disk: kernel device descriptor
731 * Returns 0 if not applicable or no change; 1 if change
733 * Note: this function is invoked from the block subsystem.
735 static int sd_media_changed(struct gendisk
*disk
)
737 struct scsi_disk
*sdkp
= scsi_disk(disk
);
738 struct scsi_device
*sdp
= sdkp
->device
;
741 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO
, sdkp
, "sd_media_changed\n"));
747 * If the device is offline, don't send any commands - just pretend as
748 * if the command failed. If the device ever comes back online, we
749 * can deal with it then. It is only because of unrecoverable errors
750 * that we would ever take a device offline in the first place.
752 if (!scsi_device_online(sdp
))
756 * Using TEST_UNIT_READY enables differentiation between drive with
757 * no cartridge loaded - NOT READY, drive with changed cartridge -
758 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
760 * Drives that auto spin down. eg iomega jaz 1G, will be started
761 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
762 * sd_revalidate() is called.
765 if (scsi_block_when_processing_errors(sdp
))
766 retval
= scsi_test_unit_ready(sdp
, SD_TIMEOUT
, SD_MAX_RETRIES
);
769 * Unable to test, unit probably not ready. This usually
770 * means there is no disc in the drive. Mark as changed,
771 * and we will figure it out later once the drive is
778 * For removable scsi disk we have to recognise the presence
779 * of a disk in the drive. This is kept in the struct scsi_disk
780 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
782 sdkp
->media_present
= 1;
784 retval
= sdp
->changed
;
790 set_media_not_present(sdkp
);
794 static int sd_sync_cache(struct scsi_disk
*sdkp
)
797 struct scsi_device
*sdp
= sdkp
->device
;
798 struct scsi_sense_hdr sshdr
;
800 if (!scsi_device_online(sdp
))
804 for (retries
= 3; retries
> 0; --retries
) {
805 unsigned char cmd
[10] = { 0 };
807 cmd
[0] = SYNCHRONIZE_CACHE
;
809 * Leave the rest of the command zero to indicate
812 res
= scsi_execute_req(sdp
, cmd
, DMA_NONE
, NULL
, 0, &sshdr
,
813 SD_TIMEOUT
, SD_MAX_RETRIES
);
819 sd_print_result(sdkp
, res
);
820 if (driver_byte(res
) & DRIVER_SENSE
)
821 sd_print_sense_hdr(sdkp
, &sshdr
);
829 static void sd_prepare_flush(struct request_queue
*q
, struct request
*rq
)
831 memset(rq
->cmd
, 0, sizeof(rq
->cmd
));
832 rq
->cmd_type
= REQ_TYPE_BLOCK_PC
;
833 rq
->timeout
= SD_TIMEOUT
;
834 rq
->cmd
[0] = SYNCHRONIZE_CACHE
;
838 static void sd_rescan(struct device
*dev
)
840 struct scsi_disk
*sdkp
= scsi_disk_get_from_dev(dev
);
843 sd_revalidate_disk(sdkp
->disk
);
851 * This gets directly called from VFS. When the ioctl
852 * is not recognized we go back to the other translation paths.
854 static long sd_compat_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
856 struct block_device
*bdev
= file
->f_path
.dentry
->d_inode
->i_bdev
;
857 struct gendisk
*disk
= bdev
->bd_disk
;
858 struct scsi_device
*sdev
= scsi_disk(disk
)->device
;
861 * If we are in the middle of error recovery, don't let anyone
862 * else try and use this device. Also, if error recovery fails, it
863 * may try and take the device offline, in which case all further
864 * access to the device is prohibited.
866 if (!scsi_block_when_processing_errors(sdev
))
869 if (sdev
->host
->hostt
->compat_ioctl
) {
872 ret
= sdev
->host
->hostt
->compat_ioctl(sdev
, cmd
, (void __user
*)arg
);
878 * Let the static ioctl translation table take care of it.
884 static struct block_device_operations sd_fops
= {
885 .owner
= THIS_MODULE
,
887 .release
= sd_release
,
891 .compat_ioctl
= sd_compat_ioctl
,
893 .media_changed
= sd_media_changed
,
894 .revalidate_disk
= sd_revalidate_disk
,
898 * sd_done - bottom half handler: called when the lower level
899 * driver has completed (successfully or otherwise) a scsi command.
900 * @SCpnt: mid-level's per command structure.
902 * Note: potentially run from within an ISR. Must not block.
904 static int sd_done(struct scsi_cmnd
*SCpnt
)
906 int result
= SCpnt
->result
;
907 unsigned int xfer_size
= SCpnt
->request_bufflen
;
908 unsigned int good_bytes
= result
? 0 : xfer_size
;
909 u64 start_lba
= SCpnt
->request
->sector
;
911 struct scsi_sense_hdr sshdr
;
913 int sense_deferred
= 0;
917 sense_valid
= scsi_command_normalize_sense(SCpnt
, &sshdr
);
919 sense_deferred
= scsi_sense_is_deferred(&sshdr
);
921 #ifdef CONFIG_SCSI_LOGGING
922 SCSI_LOG_HLCOMPLETE(1, scsi_print_result(SCpnt
));
924 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO
, SCpnt
,
925 "sd_done: sb[respc,sk,asc,"
926 "ascq]=%x,%x,%x,%x\n",
928 sshdr
.sense_key
, sshdr
.asc
,
932 if (driver_byte(result
) != DRIVER_SENSE
&&
933 (!sense_valid
|| sense_deferred
))
936 switch (sshdr
.sense_key
) {
939 if (!blk_fs_request(SCpnt
->request
))
941 info_valid
= scsi_get_sense_info_fld(SCpnt
->sense_buffer
,
942 SCSI_SENSE_BUFFERSIZE
,
946 if (xfer_size
<= SCpnt
->device
->sector_size
)
948 switch (SCpnt
->device
->sector_size
) {
964 /* Print something here with limiting frequency. */
968 /* This computation should always be done in terms of
969 * the resolution of the device's medium.
971 good_bytes
= (bad_lba
- start_lba
)*SCpnt
->device
->sector_size
;
973 case RECOVERED_ERROR
:
975 /* Inform the user, but make sure that it's not treated
978 scsi_print_sense("sd", SCpnt
);
980 memset(SCpnt
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
981 good_bytes
= xfer_size
;
983 case ILLEGAL_REQUEST
:
984 if (SCpnt
->device
->use_10_for_rw
&&
985 (SCpnt
->cmnd
[0] == READ_10
||
986 SCpnt
->cmnd
[0] == WRITE_10
))
987 SCpnt
->device
->use_10_for_rw
= 0;
988 if (SCpnt
->device
->use_10_for_ms
&&
989 (SCpnt
->cmnd
[0] == MODE_SENSE_10
||
990 SCpnt
->cmnd
[0] == MODE_SELECT_10
))
991 SCpnt
->device
->use_10_for_ms
= 0;
1000 static int media_not_present(struct scsi_disk
*sdkp
,
1001 struct scsi_sense_hdr
*sshdr
)
1004 if (!scsi_sense_valid(sshdr
))
1006 /* not invoked for commands that could return deferred errors */
1007 if (sshdr
->sense_key
!= NOT_READY
&&
1008 sshdr
->sense_key
!= UNIT_ATTENTION
)
1010 if (sshdr
->asc
!= 0x3A) /* medium not present */
1013 set_media_not_present(sdkp
);
1018 * spinup disk - called only in sd_revalidate_disk()
1021 sd_spinup_disk(struct scsi_disk
*sdkp
)
1023 unsigned char cmd
[10];
1024 unsigned long spintime_expire
= 0;
1025 int retries
, spintime
;
1026 unsigned int the_result
;
1027 struct scsi_sense_hdr sshdr
;
1028 int sense_valid
= 0;
1032 /* Spin up drives, as required. Only do this at boot time */
1033 /* Spinup needs to be done for module loads too. */
1038 cmd
[0] = TEST_UNIT_READY
;
1039 memset((void *) &cmd
[1], 0, 9);
1041 the_result
= scsi_execute_req(sdkp
->device
, cmd
,
1047 * If the drive has indicated to us that it
1048 * doesn't have any media in it, don't bother
1049 * with any more polling.
1051 if (media_not_present(sdkp
, &sshdr
))
1055 sense_valid
= scsi_sense_valid(&sshdr
);
1057 } while (retries
< 3 &&
1058 (!scsi_status_is_good(the_result
) ||
1059 ((driver_byte(the_result
) & DRIVER_SENSE
) &&
1060 sense_valid
&& sshdr
.sense_key
== UNIT_ATTENTION
)));
1062 if ((driver_byte(the_result
) & DRIVER_SENSE
) == 0) {
1063 /* no sense, TUR either succeeded or failed
1064 * with a status error */
1065 if(!spintime
&& !scsi_status_is_good(the_result
)) {
1066 sd_printk(KERN_NOTICE
, sdkp
, "Unit Not Ready\n");
1067 sd_print_result(sdkp
, the_result
);
1073 * The device does not want the automatic start to be issued.
1075 if (sdkp
->device
->no_start_on_add
) {
1080 * If manual intervention is required, or this is an
1081 * absent USB storage device, a spinup is meaningless.
1084 sshdr
.sense_key
== NOT_READY
&&
1085 sshdr
.asc
== 4 && sshdr
.ascq
== 3) {
1086 break; /* manual intervention required */
1089 * Issue command to spin up drive when not ready
1091 } else if (sense_valid
&& sshdr
.sense_key
== NOT_READY
) {
1093 sd_printk(KERN_NOTICE
, sdkp
, "Spinning up disk...");
1094 cmd
[0] = START_STOP
;
1095 cmd
[1] = 1; /* Return immediately */
1096 memset((void *) &cmd
[2], 0, 8);
1097 cmd
[4] = 1; /* Start spin cycle */
1098 scsi_execute_req(sdkp
->device
, cmd
, DMA_NONE
,
1100 SD_TIMEOUT
, SD_MAX_RETRIES
);
1101 spintime_expire
= jiffies
+ 100 * HZ
;
1104 /* Wait 1 second for next try */
1109 * Wait for USB flash devices with slow firmware.
1110 * Yes, this sense key/ASC combination shouldn't
1111 * occur here. It's characteristic of these devices.
1113 } else if (sense_valid
&&
1114 sshdr
.sense_key
== UNIT_ATTENTION
&&
1115 sshdr
.asc
== 0x28) {
1117 spintime_expire
= jiffies
+ 5 * HZ
;
1120 /* Wait 1 second for next try */
1123 /* we don't understand the sense code, so it's
1124 * probably pointless to loop */
1126 sd_printk(KERN_NOTICE
, sdkp
, "Unit Not Ready\n");
1127 sd_print_sense_hdr(sdkp
, &sshdr
);
1132 } while (spintime
&& time_before_eq(jiffies
, spintime_expire
));
1135 if (scsi_status_is_good(the_result
))
1138 printk("not responding...\n");
1143 * read disk capacity
1146 sd_read_capacity(struct scsi_disk
*sdkp
, unsigned char *buffer
)
1148 unsigned char cmd
[16];
1149 int the_result
, retries
;
1150 int sector_size
= 0;
1152 struct scsi_sense_hdr sshdr
;
1153 int sense_valid
= 0;
1154 struct scsi_device
*sdp
= sdkp
->device
;
1160 memset((void *) cmd
, 0, 16);
1161 cmd
[0] = SERVICE_ACTION_IN
;
1162 cmd
[1] = SAI_READ_CAPACITY_16
;
1164 memset((void *) buffer
, 0, 12);
1166 cmd
[0] = READ_CAPACITY
;
1167 memset((void *) &cmd
[1], 0, 9);
1168 memset((void *) buffer
, 0, 8);
1171 the_result
= scsi_execute_req(sdp
, cmd
, DMA_FROM_DEVICE
,
1172 buffer
, longrc
? 12 : 8, &sshdr
,
1173 SD_TIMEOUT
, SD_MAX_RETRIES
);
1175 if (media_not_present(sdkp
, &sshdr
))
1179 sense_valid
= scsi_sense_valid(&sshdr
);
1182 } while (the_result
&& retries
);
1184 if (the_result
&& !longrc
) {
1185 sd_printk(KERN_NOTICE
, sdkp
, "READ CAPACITY failed\n");
1186 sd_print_result(sdkp
, the_result
);
1187 if (driver_byte(the_result
) & DRIVER_SENSE
)
1188 sd_print_sense_hdr(sdkp
, &sshdr
);
1190 sd_printk(KERN_NOTICE
, sdkp
, "Sense not available.\n");
1192 /* Set dirty bit for removable devices if not ready -
1193 * sometimes drives will not report this properly. */
1194 if (sdp
->removable
&&
1195 sense_valid
&& sshdr
.sense_key
== NOT_READY
)
1198 /* Either no media are present but the drive didn't tell us,
1199 or they are present but the read capacity command fails */
1200 /* sdkp->media_present = 0; -- not always correct */
1201 sdkp
->capacity
= 0; /* unknown mapped to zero - as usual */
1204 } else if (the_result
&& longrc
) {
1205 /* READ CAPACITY(16) has been failed */
1206 sd_printk(KERN_NOTICE
, sdkp
, "READ CAPACITY(16) failed\n");
1207 sd_print_result(sdkp
, the_result
);
1208 sd_printk(KERN_NOTICE
, sdkp
, "Use 0xffffffff as device size\n");
1210 sdkp
->capacity
= 1 + (sector_t
) 0xffffffff;
1215 sector_size
= (buffer
[4] << 24) |
1216 (buffer
[5] << 16) | (buffer
[6] << 8) | buffer
[7];
1217 if (buffer
[0] == 0xff && buffer
[1] == 0xff &&
1218 buffer
[2] == 0xff && buffer
[3] == 0xff) {
1219 if(sizeof(sdkp
->capacity
) > 4) {
1220 sd_printk(KERN_NOTICE
, sdkp
, "Very big device. "
1221 "Trying to use READ CAPACITY(16).\n");
1225 sd_printk(KERN_ERR
, sdkp
, "Too big for this kernel. Use "
1226 "a kernel compiled with support for large "
1227 "block devices.\n");
1231 sdkp
->capacity
= 1 + (((sector_t
)buffer
[0] << 24) |
1236 sdkp
->capacity
= 1 + (((u64
)buffer
[0] << 56) |
1237 ((u64
)buffer
[1] << 48) |
1238 ((u64
)buffer
[2] << 40) |
1239 ((u64
)buffer
[3] << 32) |
1240 ((sector_t
)buffer
[4] << 24) |
1241 ((sector_t
)buffer
[5] << 16) |
1242 ((sector_t
)buffer
[6] << 8) |
1243 (sector_t
)buffer
[7]);
1245 sector_size
= (buffer
[8] << 24) |
1246 (buffer
[9] << 16) | (buffer
[10] << 8) | buffer
[11];
1249 /* Some devices return the total number of sectors, not the
1250 * highest sector number. Make the necessary adjustment. */
1251 if (sdp
->fix_capacity
) {
1254 /* Some devices have version which report the correct sizes
1255 * and others which do not. We guess size according to a heuristic
1256 * and err on the side of lowering the capacity. */
1258 if (sdp
->guess_capacity
)
1259 if (sdkp
->capacity
& 0x01) /* odd sizes are odd */
1264 if (sector_size
== 0) {
1266 sd_printk(KERN_NOTICE
, sdkp
, "Sector size 0 reported, "
1270 if (sector_size
!= 512 &&
1271 sector_size
!= 1024 &&
1272 sector_size
!= 2048 &&
1273 sector_size
!= 4096 &&
1274 sector_size
!= 256) {
1275 sd_printk(KERN_NOTICE
, sdkp
, "Unsupported sector size %d.\n",
1278 * The user might want to re-format the drive with
1279 * a supported sectorsize. Once this happens, it
1280 * would be relatively trivial to set the thing up.
1281 * For this reason, we leave the thing in the table.
1285 * set a bogus sector size so the normal read/write
1286 * logic in the block layer will eventually refuse any
1287 * request on this device without tripping over power
1288 * of two sector size assumptions
1294 * The msdos fs needs to know the hardware sector size
1295 * So I have created this table. See ll_rw_blk.c
1296 * Jacques Gelinas (Jacques@solucorp.qc.ca)
1298 int hard_sector
= sector_size
;
1299 sector_t sz
= (sdkp
->capacity
/2) * (hard_sector
/256);
1300 struct request_queue
*queue
= sdp
->request_queue
;
1303 blk_queue_hardsect_size(queue
, hard_sector
);
1304 /* avoid 64-bit division on 32-bit platforms */
1305 sector_div(sz
, 625);
1307 sector_div(mb
, 1950);
1309 sd_printk(KERN_NOTICE
, sdkp
,
1310 "%llu %d-byte hardware sectors (%llu MB)\n",
1311 (unsigned long long)sdkp
->capacity
,
1312 hard_sector
, (unsigned long long)mb
);
1315 /* Rescale capacity to 512-byte units */
1316 if (sector_size
== 4096)
1317 sdkp
->capacity
<<= 3;
1318 else if (sector_size
== 2048)
1319 sdkp
->capacity
<<= 2;
1320 else if (sector_size
== 1024)
1321 sdkp
->capacity
<<= 1;
1322 else if (sector_size
== 256)
1323 sdkp
->capacity
>>= 1;
1325 sdkp
->device
->sector_size
= sector_size
;
1328 /* called with buffer of length 512 */
1330 sd_do_mode_sense(struct scsi_device
*sdp
, int dbd
, int modepage
,
1331 unsigned char *buffer
, int len
, struct scsi_mode_data
*data
,
1332 struct scsi_sense_hdr
*sshdr
)
1334 return scsi_mode_sense(sdp
, dbd
, modepage
, buffer
, len
,
1335 SD_TIMEOUT
, SD_MAX_RETRIES
, data
,
1340 * read write protect setting, if possible - called only in sd_revalidate_disk()
1341 * called with buffer of length SD_BUF_SIZE
1344 sd_read_write_protect_flag(struct scsi_disk
*sdkp
, unsigned char *buffer
)
1347 struct scsi_device
*sdp
= sdkp
->device
;
1348 struct scsi_mode_data data
;
1350 set_disk_ro(sdkp
->disk
, 0);
1351 if (sdp
->skip_ms_page_3f
) {
1352 sd_printk(KERN_NOTICE
, sdkp
, "Assuming Write Enabled\n");
1356 if (sdp
->use_192_bytes_for_3f
) {
1357 res
= sd_do_mode_sense(sdp
, 0, 0x3F, buffer
, 192, &data
, NULL
);
1360 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1361 * We have to start carefully: some devices hang if we ask
1362 * for more than is available.
1364 res
= sd_do_mode_sense(sdp
, 0, 0x3F, buffer
, 4, &data
, NULL
);
1367 * Second attempt: ask for page 0 When only page 0 is
1368 * implemented, a request for page 3F may return Sense Key
1369 * 5: Illegal Request, Sense Code 24: Invalid field in
1372 if (!scsi_status_is_good(res
))
1373 res
= sd_do_mode_sense(sdp
, 0, 0, buffer
, 4, &data
, NULL
);
1376 * Third attempt: ask 255 bytes, as we did earlier.
1378 if (!scsi_status_is_good(res
))
1379 res
= sd_do_mode_sense(sdp
, 0, 0x3F, buffer
, 255,
1383 if (!scsi_status_is_good(res
)) {
1384 sd_printk(KERN_WARNING
, sdkp
,
1385 "Test WP failed, assume Write Enabled\n");
1387 sdkp
->write_prot
= ((data
.device_specific
& 0x80) != 0);
1388 set_disk_ro(sdkp
->disk
, sdkp
->write_prot
);
1389 sd_printk(KERN_NOTICE
, sdkp
, "Write Protect is %s\n",
1390 sdkp
->write_prot
? "on" : "off");
1391 sd_printk(KERN_DEBUG
, sdkp
,
1392 "Mode Sense: %02x %02x %02x %02x\n",
1393 buffer
[0], buffer
[1], buffer
[2], buffer
[3]);
1398 * sd_read_cache_type - called only from sd_revalidate_disk()
1399 * called with buffer of length SD_BUF_SIZE
1402 sd_read_cache_type(struct scsi_disk
*sdkp
, unsigned char *buffer
)
1405 struct scsi_device
*sdp
= sdkp
->device
;
1409 struct scsi_mode_data data
;
1410 struct scsi_sense_hdr sshdr
;
1412 if (sdp
->skip_ms_page_8
)
1415 if (sdp
->type
== TYPE_RBC
) {
1423 /* cautiously ask */
1424 res
= sd_do_mode_sense(sdp
, dbd
, modepage
, buffer
, 4, &data
, &sshdr
);
1426 if (!scsi_status_is_good(res
))
1429 if (!data
.header_length
) {
1431 sd_printk(KERN_ERR
, sdkp
, "Missing header in MODE_SENSE response\n");
1434 /* that went OK, now ask for the proper length */
1438 * We're only interested in the first three bytes, actually.
1439 * But the data cache page is defined for the first 20.
1446 /* Take headers and block descriptors into account */
1447 len
+= data
.header_length
+ data
.block_descriptor_length
;
1448 if (len
> SD_BUF_SIZE
)
1452 res
= sd_do_mode_sense(sdp
, dbd
, modepage
, buffer
, len
, &data
, &sshdr
);
1454 if (scsi_status_is_good(res
)) {
1455 int offset
= data
.header_length
+ data
.block_descriptor_length
;
1457 if (offset
>= SD_BUF_SIZE
- 2) {
1458 sd_printk(KERN_ERR
, sdkp
, "Malformed MODE SENSE response\n");
1462 if ((buffer
[offset
] & 0x3f) != modepage
) {
1463 sd_printk(KERN_ERR
, sdkp
, "Got wrong page\n");
1467 if (modepage
== 8) {
1468 sdkp
->WCE
= ((buffer
[offset
+ 2] & 0x04) != 0);
1469 sdkp
->RCD
= ((buffer
[offset
+ 2] & 0x01) != 0);
1471 sdkp
->WCE
= ((buffer
[offset
+ 2] & 0x01) == 0);
1475 sdkp
->DPOFUA
= (data
.device_specific
& 0x10) != 0;
1476 if (sdkp
->DPOFUA
&& !sdkp
->device
->use_10_for_rw
) {
1477 sd_printk(KERN_NOTICE
, sdkp
,
1478 "Uses READ/WRITE(6), disabling FUA\n");
1482 sd_printk(KERN_NOTICE
, sdkp
,
1483 "Write cache: %s, read cache: %s, %s\n",
1484 sdkp
->WCE
? "enabled" : "disabled",
1485 sdkp
->RCD
? "disabled" : "enabled",
1486 sdkp
->DPOFUA
? "supports DPO and FUA"
1487 : "doesn't support DPO or FUA");
1493 if (scsi_sense_valid(&sshdr
) &&
1494 sshdr
.sense_key
== ILLEGAL_REQUEST
&&
1495 sshdr
.asc
== 0x24 && sshdr
.ascq
== 0x0)
1496 /* Invalid field in CDB */
1497 sd_printk(KERN_NOTICE
, sdkp
, "Cache data unavailable\n");
1499 sd_printk(KERN_ERR
, sdkp
, "Asking for cache data failed\n");
1502 sd_printk(KERN_ERR
, sdkp
, "Assuming drive cache: write through\n");
1509 * sd_revalidate_disk - called the first time a new disk is seen,
1510 * performs disk spin up, read_capacity, etc.
1511 * @disk: struct gendisk we care about
1513 static int sd_revalidate_disk(struct gendisk
*disk
)
1515 struct scsi_disk
*sdkp
= scsi_disk(disk
);
1516 struct scsi_device
*sdp
= sdkp
->device
;
1517 unsigned char *buffer
;
1520 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO
, sdkp
,
1521 "sd_revalidate_disk\n"));
1524 * If the device is offline, don't try and read capacity or any
1525 * of the other niceties.
1527 if (!scsi_device_online(sdp
))
1530 buffer
= kmalloc(SD_BUF_SIZE
, GFP_KERNEL
);
1532 sd_printk(KERN_WARNING
, sdkp
, "sd_revalidate_disk: Memory "
1533 "allocation failure.\n");
1537 /* defaults, until the device tells us otherwise */
1538 sdp
->sector_size
= 512;
1540 sdkp
->media_present
= 1;
1541 sdkp
->write_prot
= 0;
1545 sd_spinup_disk(sdkp
);
1548 * Without media there is no reason to ask; moreover, some devices
1549 * react badly if we do.
1551 if (sdkp
->media_present
) {
1552 sd_read_capacity(sdkp
, buffer
);
1553 sd_read_write_protect_flag(sdkp
, buffer
);
1554 sd_read_cache_type(sdkp
, buffer
);
1558 * We now have all cache related info, determine how we deal
1559 * with ordered requests. Note that as the current SCSI
1560 * dispatch function can alter request order, we cannot use
1561 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1564 ordered
= sdkp
->DPOFUA
1565 ? QUEUE_ORDERED_DRAIN_FUA
: QUEUE_ORDERED_DRAIN_FLUSH
;
1567 ordered
= QUEUE_ORDERED_DRAIN
;
1569 blk_queue_ordered(sdkp
->disk
->queue
, ordered
, sd_prepare_flush
);
1571 set_capacity(disk
, sdkp
->capacity
);
1579 * sd_probe - called during driver initialization and whenever a
1580 * new scsi device is attached to the system. It is called once
1581 * for each scsi device (not just disks) present.
1582 * @dev: pointer to device object
1584 * Returns 0 if successful (or not interested in this scsi device
1585 * (e.g. scanner)); 1 when there is an error.
1587 * Note: this function is invoked from the scsi mid-level.
1588 * This function sets up the mapping between a given
1589 * <host,channel,id,lun> (found in sdp) and new device name
1590 * (e.g. /dev/sda). More precisely it is the block device major
1591 * and minor number that is chosen here.
1593 * Assume sd_attach is not re-entrant (for time being)
1594 * Also think about sd_attach() and sd_remove() running coincidentally.
1596 static int sd_probe(struct device
*dev
)
1598 struct scsi_device
*sdp
= to_scsi_device(dev
);
1599 struct scsi_disk
*sdkp
;
1605 if (sdp
->type
!= TYPE_DISK
&& sdp
->type
!= TYPE_MOD
&& sdp
->type
!= TYPE_RBC
)
1608 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO
, sdp
,
1612 sdkp
= kzalloc(sizeof(*sdkp
), GFP_KERNEL
);
1616 gd
= alloc_disk(16);
1620 if (!idr_pre_get(&sd_index_idr
, GFP_KERNEL
))
1623 spin_lock(&sd_index_lock
);
1624 error
= idr_get_new(&sd_index_idr
, NULL
, &index
);
1625 spin_unlock(&sd_index_lock
);
1627 if (index
>= SD_MAX_DISKS
)
1633 sdkp
->driver
= &sd_template
;
1635 sdkp
->index
= index
;
1638 if (!sdp
->timeout
) {
1639 if (sdp
->type
!= TYPE_MOD
)
1640 sdp
->timeout
= SD_TIMEOUT
;
1642 sdp
->timeout
= SD_MOD_TIMEOUT
;
1645 class_device_initialize(&sdkp
->cdev
);
1646 sdkp
->cdev
.dev
= &sdp
->sdev_gendev
;
1647 sdkp
->cdev
.class = &sd_disk_class
;
1648 strncpy(sdkp
->cdev
.class_id
, sdp
->sdev_gendev
.bus_id
, BUS_ID_SIZE
);
1650 if (class_device_add(&sdkp
->cdev
))
1653 get_device(&sdp
->sdev_gendev
);
1655 gd
->major
= sd_major((index
& 0xf0) >> 4);
1656 gd
->first_minor
= ((index
& 0xf) << 4) | (index
& 0xfff00);
1658 gd
->fops
= &sd_fops
;
1661 sprintf(gd
->disk_name
, "sd%c", 'a' + index
% 26);
1662 } else if (index
< (26 + 1) * 26) {
1663 sprintf(gd
->disk_name
, "sd%c%c",
1664 'a' + index
/ 26 - 1,'a' + index
% 26);
1666 const unsigned int m1
= (index
/ 26 - 1) / 26 - 1;
1667 const unsigned int m2
= (index
/ 26 - 1) % 26;
1668 const unsigned int m3
= index
% 26;
1669 sprintf(gd
->disk_name
, "sd%c%c%c",
1670 'a' + m1
, 'a' + m2
, 'a' + m3
);
1673 gd
->private_data
= &sdkp
->driver
;
1674 gd
->queue
= sdkp
->device
->request_queue
;
1676 sd_revalidate_disk(gd
);
1678 blk_queue_prep_rq(sdp
->request_queue
, sd_prep_fn
);
1680 gd
->driverfs_dev
= &sdp
->sdev_gendev
;
1681 gd
->flags
= GENHD_FL_DRIVERFS
;
1683 gd
->flags
|= GENHD_FL_REMOVABLE
;
1685 dev_set_drvdata(dev
, sdkp
);
1688 sd_printk(KERN_NOTICE
, sdkp
, "Attached SCSI %sdisk\n",
1689 sdp
->removable
? "removable " : "");
1702 * sd_remove - called whenever a scsi disk (previously recognized by
1703 * sd_probe) is detached from the system. It is called (potentially
1704 * multiple times) during sd module unload.
1705 * @sdp: pointer to mid level scsi device object
1707 * Note: this function is invoked from the scsi mid-level.
1708 * This function potentially frees up a device name (e.g. /dev/sdc)
1709 * that could be re-used by a subsequent sd_probe().
1710 * This function is not called when the built-in sd driver is "exit-ed".
1712 static int sd_remove(struct device
*dev
)
1714 struct scsi_disk
*sdkp
= dev_get_drvdata(dev
);
1716 class_device_del(&sdkp
->cdev
);
1717 del_gendisk(sdkp
->disk
);
1720 mutex_lock(&sd_ref_mutex
);
1721 dev_set_drvdata(dev
, NULL
);
1722 class_device_put(&sdkp
->cdev
);
1723 mutex_unlock(&sd_ref_mutex
);
1729 * scsi_disk_release - Called to free the scsi_disk structure
1730 * @cdev: pointer to embedded class device
1732 * sd_ref_mutex must be held entering this routine. Because it is
1733 * called on last put, you should always use the scsi_disk_get()
1734 * scsi_disk_put() helpers which manipulate the semaphore directly
1735 * and never do a direct class_device_put().
1737 static void scsi_disk_release(struct class_device
*cdev
)
1739 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
1740 struct gendisk
*disk
= sdkp
->disk
;
1742 spin_lock(&sd_index_lock
);
1743 idr_remove(&sd_index_idr
, sdkp
->index
);
1744 spin_unlock(&sd_index_lock
);
1746 disk
->private_data
= NULL
;
1748 put_device(&sdkp
->device
->sdev_gendev
);
1753 static int sd_start_stop_device(struct scsi_disk
*sdkp
, int start
)
1755 unsigned char cmd
[6] = { START_STOP
}; /* START_VALID */
1756 struct scsi_sense_hdr sshdr
;
1757 struct scsi_device
*sdp
= sdkp
->device
;
1761 cmd
[4] |= 1; /* START */
1763 if (!scsi_device_online(sdp
))
1766 res
= scsi_execute_req(sdp
, cmd
, DMA_NONE
, NULL
, 0, &sshdr
,
1767 SD_TIMEOUT
, SD_MAX_RETRIES
);
1769 sd_printk(KERN_WARNING
, sdkp
, "START_STOP FAILED\n");
1770 sd_print_result(sdkp
, res
);
1771 if (driver_byte(res
) & DRIVER_SENSE
)
1772 sd_print_sense_hdr(sdkp
, &sshdr
);
1779 * Send a SYNCHRONIZE CACHE instruction down to the device through
1780 * the normal SCSI command structure. Wait for the command to
1783 static void sd_shutdown(struct device
*dev
)
1785 struct scsi_disk
*sdkp
= scsi_disk_get_from_dev(dev
);
1788 return; /* this can happen */
1791 sd_printk(KERN_NOTICE
, sdkp
, "Synchronizing SCSI cache\n");
1792 sd_sync_cache(sdkp
);
1795 if (system_state
!= SYSTEM_RESTART
&& sdkp
->device
->manage_start_stop
) {
1796 sd_printk(KERN_NOTICE
, sdkp
, "Stopping disk\n");
1797 sd_start_stop_device(sdkp
, 0);
1800 scsi_disk_put(sdkp
);
1803 static int sd_suspend(struct device
*dev
, pm_message_t mesg
)
1805 struct scsi_disk
*sdkp
= scsi_disk_get_from_dev(dev
);
1809 return 0; /* this can happen */
1812 sd_printk(KERN_NOTICE
, sdkp
, "Synchronizing SCSI cache\n");
1813 ret
= sd_sync_cache(sdkp
);
1818 if (mesg
.event
== PM_EVENT_SUSPEND
&&
1819 sdkp
->device
->manage_start_stop
) {
1820 sd_printk(KERN_NOTICE
, sdkp
, "Stopping disk\n");
1821 ret
= sd_start_stop_device(sdkp
, 0);
1825 scsi_disk_put(sdkp
);
1829 static int sd_resume(struct device
*dev
)
1831 struct scsi_disk
*sdkp
= scsi_disk_get_from_dev(dev
);
1834 if (!sdkp
->device
->manage_start_stop
)
1837 sd_printk(KERN_NOTICE
, sdkp
, "Starting disk\n");
1838 ret
= sd_start_stop_device(sdkp
, 1);
1841 scsi_disk_put(sdkp
);
1846 * init_sd - entry point for this driver (both when built in or when
1849 * Note: this function registers this driver with the scsi mid-level.
1851 static int __init
init_sd(void)
1853 int majors
= 0, i
, err
;
1855 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
1857 for (i
= 0; i
< SD_MAJORS
; i
++)
1858 if (register_blkdev(sd_major(i
), "sd") == 0)
1864 err
= class_register(&sd_disk_class
);
1868 err
= scsi_register_driver(&sd_template
.gendrv
);
1875 class_unregister(&sd_disk_class
);
1877 for (i
= 0; i
< SD_MAJORS
; i
++)
1878 unregister_blkdev(sd_major(i
), "sd");
1883 * exit_sd - exit point for this driver (when it is a module).
1885 * Note: this function unregisters this driver from the scsi mid-level.
1887 static void __exit
exit_sd(void)
1891 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
1893 scsi_unregister_driver(&sd_template
.gendrv
);
1894 class_unregister(&sd_disk_class
);
1896 for (i
= 0; i
< SD_MAJORS
; i
++)
1897 unregister_blkdev(sd_major(i
), "sd");
1900 module_init(init_sd
);
1901 module_exit(exit_sd
);
1903 static void sd_print_sense_hdr(struct scsi_disk
*sdkp
,
1904 struct scsi_sense_hdr
*sshdr
)
1906 sd_printk(KERN_INFO
, sdkp
, "");
1907 scsi_show_sense_hdr(sshdr
);
1908 sd_printk(KERN_INFO
, sdkp
, "");
1909 scsi_show_extd_sense(sshdr
->asc
, sshdr
->ascq
);
1912 static void sd_print_result(struct scsi_disk
*sdkp
, int result
)
1914 sd_printk(KERN_INFO
, sdkp
, "");
1915 scsi_show_result(result
);