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/config.h>
36 #include <linux/module.h>
38 #include <linux/kernel.h>
39 #include <linux/sched.h>
41 #include <linux/bio.h>
42 #include <linux/genhd.h>
43 #include <linux/hdreg.h>
44 #include <linux/errno.h>
45 #include <linux/idr.h>
46 #include <linux/interrupt.h>
47 #include <linux/init.h>
48 #include <linux/blkdev.h>
49 #include <linux/blkpg.h>
50 #include <linux/delay.h>
51 #include <linux/mutex.h>
52 #include <asm/uaccess.h>
54 #include <scsi/scsi.h>
55 #include <scsi/scsi_cmnd.h>
56 #include <scsi/scsi_dbg.h>
57 #include <scsi/scsi_device.h>
58 #include <scsi/scsi_driver.h>
59 #include <scsi/scsi_eh.h>
60 #include <scsi/scsi_host.h>
61 #include <scsi/scsi_ioctl.h>
62 #include <scsi/scsicam.h>
64 #include "scsi_logging.h"
67 * More than enough for everybody ;) The huge number of majors
68 * is a leftover from 16bit dev_t days, we don't really need that
73 MODULE_AUTHOR("Eric Youngdale");
74 MODULE_DESCRIPTION("SCSI disk (sd) driver");
75 MODULE_LICENSE("GPL");
77 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR
);
78 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR
);
79 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR
);
80 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR
);
81 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR
);
82 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR
);
83 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR
);
84 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR
);
85 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR
);
86 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR
);
87 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR
);
88 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR
);
89 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR
);
90 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR
);
91 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR
);
92 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR
);
95 * This is limited by the naming scheme enforced in sd_probe,
96 * add another character to it if you really need more disks.
98 #define SD_MAX_DISKS (((26 * 26) + 26 + 1) * 26)
101 * Time out in seconds for disks and Magneto-opticals (which are slower).
103 #define SD_TIMEOUT (30 * HZ)
104 #define SD_MOD_TIMEOUT (75 * HZ)
107 * Number of allowed retries
109 #define SD_MAX_RETRIES 5
110 #define SD_PASSTHROUGH_RETRIES 1
113 * Size of the initial data buffer for mode and read capacity data
115 #define SD_BUF_SIZE 512
118 struct scsi_driver
*driver
; /* always &sd_template */
119 struct scsi_device
*device
;
120 struct class_device cdev
;
121 struct gendisk
*disk
;
122 unsigned int openers
; /* protected by BKL for now, yuck */
123 sector_t capacity
; /* size in 512-byte sectors */
127 unsigned WCE
: 1; /* state of disk WCE bit */
128 unsigned RCD
: 1; /* state of disk RCD bit, unused */
129 unsigned DPOFUA
: 1; /* state of disk DPOFUA bit */
131 #define to_scsi_disk(obj) container_of(obj,struct scsi_disk,cdev)
133 static DEFINE_IDR(sd_index_idr
);
134 static DEFINE_SPINLOCK(sd_index_lock
);
136 /* This semaphore is used to mediate the 0->1 reference get in the
137 * face of object destruction (i.e. we can't allow a get on an
138 * object after last put) */
139 static DEFINE_MUTEX(sd_ref_mutex
);
141 static int sd_revalidate_disk(struct gendisk
*disk
);
142 static void sd_rw_intr(struct scsi_cmnd
* SCpnt
);
144 static int sd_probe(struct device
*);
145 static int sd_remove(struct device
*);
146 static void sd_shutdown(struct device
*dev
);
147 static void sd_rescan(struct device
*);
148 static int sd_init_command(struct scsi_cmnd
*);
149 static int sd_issue_flush(struct device
*, sector_t
*);
150 static void sd_prepare_flush(request_queue_t
*, struct request
*);
151 static void sd_read_capacity(struct scsi_disk
*sdkp
, char *diskname
,
152 unsigned char *buffer
);
153 static void scsi_disk_release(struct class_device
*cdev
);
155 static const char *sd_cache_types
[] = {
156 "write through", "none", "write back",
157 "write back, no read (daft)"
160 static ssize_t
sd_store_cache_type(struct class_device
*cdev
, const char *buf
,
163 int i
, ct
= -1, rcd
, wce
, sp
;
164 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
165 struct scsi_device
*sdp
= sdkp
->device
;
168 struct scsi_mode_data data
;
169 struct scsi_sense_hdr sshdr
;
172 if (sdp
->type
!= TYPE_DISK
)
173 /* no cache control on RBC devices; theoretically they
174 * can do it, but there's probably so many exceptions
175 * it's not worth the risk */
178 for (i
= 0; i
< sizeof(sd_cache_types
)/sizeof(sd_cache_types
[0]); i
++) {
179 const int len
= strlen(sd_cache_types
[i
]);
180 if (strncmp(sd_cache_types
[i
], buf
, len
) == 0 &&
188 rcd
= ct
& 0x01 ? 1 : 0;
189 wce
= ct
& 0x02 ? 1 : 0;
190 if (scsi_mode_sense(sdp
, 0x08, 8, buffer
, sizeof(buffer
), SD_TIMEOUT
,
191 SD_MAX_RETRIES
, &data
, NULL
))
193 len
= min_t(size_t, sizeof(buffer
), data
.length
- data
.header_length
-
194 data
.block_descriptor_length
);
195 buffer_data
= buffer
+ data
.header_length
+
196 data
.block_descriptor_length
;
197 buffer_data
[2] &= ~0x05;
198 buffer_data
[2] |= wce
<< 2 | rcd
;
199 sp
= buffer_data
[0] & 0x80 ? 1 : 0;
201 if (scsi_mode_select(sdp
, 1, sp
, 8, buffer_data
, len
, SD_TIMEOUT
,
202 SD_MAX_RETRIES
, &data
, &sshdr
)) {
203 if (scsi_sense_valid(&sshdr
))
204 scsi_print_sense_hdr(sdkp
->disk
->disk_name
, &sshdr
);
207 sd_revalidate_disk(sdkp
->disk
);
211 static ssize_t
sd_show_cache_type(struct class_device
*cdev
, char *buf
)
213 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
214 int ct
= sdkp
->RCD
+ 2*sdkp
->WCE
;
216 return snprintf(buf
, 40, "%s\n", sd_cache_types
[ct
]);
219 static ssize_t
sd_show_fua(struct class_device
*cdev
, char *buf
)
221 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
223 return snprintf(buf
, 20, "%u\n", sdkp
->DPOFUA
);
226 static struct class_device_attribute sd_disk_attrs
[] = {
227 __ATTR(cache_type
, S_IRUGO
|S_IWUSR
, sd_show_cache_type
,
228 sd_store_cache_type
),
229 __ATTR(FUA
, S_IRUGO
, sd_show_fua
, NULL
),
233 static struct class sd_disk_class
= {
235 .owner
= THIS_MODULE
,
236 .release
= scsi_disk_release
,
237 .class_dev_attrs
= sd_disk_attrs
,
240 static struct scsi_driver sd_template
= {
241 .owner
= THIS_MODULE
,
246 .shutdown
= sd_shutdown
,
249 .init_command
= sd_init_command
,
250 .issue_flush
= sd_issue_flush
,
254 * Device no to disk mapping:
256 * major disc2 disc p1
257 * |............|.............|....|....| <- dev_t
260 * Inside a major, we have 16k disks, however mapped non-
261 * contiguously. The first 16 disks are for major0, the next
262 * ones with major1, ... Disk 256 is for major0 again, disk 272
264 * As we stay compatible with our numbering scheme, we can reuse
265 * the well-know SCSI majors 8, 65--71, 136--143.
267 static int sd_major(int major_idx
)
271 return SCSI_DISK0_MAJOR
;
273 return SCSI_DISK1_MAJOR
+ major_idx
- 1;
275 return SCSI_DISK8_MAJOR
+ major_idx
- 8;
278 return 0; /* shut up gcc */
282 static inline struct scsi_disk
*scsi_disk(struct gendisk
*disk
)
284 return container_of(disk
->private_data
, struct scsi_disk
, driver
);
287 static struct scsi_disk
*__scsi_disk_get(struct gendisk
*disk
)
289 struct scsi_disk
*sdkp
= NULL
;
291 if (disk
->private_data
) {
292 sdkp
= scsi_disk(disk
);
293 if (scsi_device_get(sdkp
->device
) == 0)
294 class_device_get(&sdkp
->cdev
);
301 static struct scsi_disk
*scsi_disk_get(struct gendisk
*disk
)
303 struct scsi_disk
*sdkp
;
305 mutex_lock(&sd_ref_mutex
);
306 sdkp
= __scsi_disk_get(disk
);
307 mutex_unlock(&sd_ref_mutex
);
311 static struct scsi_disk
*scsi_disk_get_from_dev(struct device
*dev
)
313 struct scsi_disk
*sdkp
;
315 mutex_lock(&sd_ref_mutex
);
316 sdkp
= dev_get_drvdata(dev
);
318 sdkp
= __scsi_disk_get(sdkp
->disk
);
319 mutex_unlock(&sd_ref_mutex
);
323 static void scsi_disk_put(struct scsi_disk
*sdkp
)
325 struct scsi_device
*sdev
= sdkp
->device
;
327 mutex_lock(&sd_ref_mutex
);
328 class_device_put(&sdkp
->cdev
);
329 scsi_device_put(sdev
);
330 mutex_unlock(&sd_ref_mutex
);
334 * sd_init_command - build a scsi (read or write) command from
335 * information in the request structure.
336 * @SCpnt: pointer to mid-level's per scsi command structure that
337 * contains request and into which the scsi command is written
339 * Returns 1 if successful and 0 if error (or cannot be done now).
341 static int sd_init_command(struct scsi_cmnd
* SCpnt
)
343 struct scsi_device
*sdp
= SCpnt
->device
;
344 struct request
*rq
= SCpnt
->request
;
345 struct gendisk
*disk
= rq
->rq_disk
;
346 sector_t block
= rq
->sector
;
347 unsigned int this_count
= SCpnt
->request_bufflen
>> 9;
348 unsigned int timeout
= sdp
->timeout
;
350 SCSI_LOG_HLQUEUE(1, printk("sd_init_command: disk=%s, block=%llu, "
351 "count=%d\n", disk
->disk_name
,
352 (unsigned long long)block
, this_count
));
354 if (!sdp
|| !scsi_device_online(sdp
) ||
355 block
+ rq
->nr_sectors
> get_capacity(disk
)) {
356 SCSI_LOG_HLQUEUE(2, printk("Finishing %ld sectors\n",
358 SCSI_LOG_HLQUEUE(2, printk("Retry with 0x%p\n", SCpnt
));
364 * quietly refuse to do anything to a changed disc until
365 * the changed bit has been reset
367 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
370 SCSI_LOG_HLQUEUE(2, printk("%s : block=%llu\n",
371 disk
->disk_name
, (unsigned long long)block
));
374 * If we have a 1K hardware sectorsize, prevent access to single
375 * 512 byte sectors. In theory we could handle this - in fact
376 * the scsi cdrom driver must be able to handle this because
377 * we typically use 1K blocksizes, and cdroms typically have
378 * 2K hardware sectorsizes. Of course, things are simpler
379 * with the cdrom, since it is read-only. For performance
380 * reasons, the filesystems should be able to handle this
381 * and not force the scsi disk driver to use bounce buffers
384 if (sdp
->sector_size
== 1024) {
385 if ((block
& 1) || (rq
->nr_sectors
& 1)) {
386 printk(KERN_ERR
"sd: Bad block number requested");
390 this_count
= this_count
>> 1;
393 if (sdp
->sector_size
== 2048) {
394 if ((block
& 3) || (rq
->nr_sectors
& 3)) {
395 printk(KERN_ERR
"sd: Bad block number requested");
399 this_count
= this_count
>> 2;
402 if (sdp
->sector_size
== 4096) {
403 if ((block
& 7) || (rq
->nr_sectors
& 7)) {
404 printk(KERN_ERR
"sd: Bad block number requested");
408 this_count
= this_count
>> 3;
411 if (rq_data_dir(rq
) == WRITE
) {
412 if (!sdp
->writeable
) {
415 SCpnt
->cmnd
[0] = WRITE_6
;
416 SCpnt
->sc_data_direction
= DMA_TO_DEVICE
;
417 } else if (rq_data_dir(rq
) == READ
) {
418 SCpnt
->cmnd
[0] = READ_6
;
419 SCpnt
->sc_data_direction
= DMA_FROM_DEVICE
;
421 printk(KERN_ERR
"sd: Unknown command %lx\n", rq
->flags
);
422 /* overkill panic("Unknown sd command %lx\n", rq->flags); */
426 SCSI_LOG_HLQUEUE(2, printk("%s : %s %d/%ld 512 byte blocks.\n",
427 disk
->disk_name
, (rq_data_dir(rq
) == WRITE
) ?
428 "writing" : "reading", this_count
, rq
->nr_sectors
));
432 if (block
> 0xffffffff) {
433 SCpnt
->cmnd
[0] += READ_16
- READ_6
;
434 SCpnt
->cmnd
[1] |= blk_fua_rq(rq
) ? 0x8 : 0;
435 SCpnt
->cmnd
[2] = sizeof(block
) > 4 ? (unsigned char) (block
>> 56) & 0xff : 0;
436 SCpnt
->cmnd
[3] = sizeof(block
) > 4 ? (unsigned char) (block
>> 48) & 0xff : 0;
437 SCpnt
->cmnd
[4] = sizeof(block
) > 4 ? (unsigned char) (block
>> 40) & 0xff : 0;
438 SCpnt
->cmnd
[5] = sizeof(block
) > 4 ? (unsigned char) (block
>> 32) & 0xff : 0;
439 SCpnt
->cmnd
[6] = (unsigned char) (block
>> 24) & 0xff;
440 SCpnt
->cmnd
[7] = (unsigned char) (block
>> 16) & 0xff;
441 SCpnt
->cmnd
[8] = (unsigned char) (block
>> 8) & 0xff;
442 SCpnt
->cmnd
[9] = (unsigned char) block
& 0xff;
443 SCpnt
->cmnd
[10] = (unsigned char) (this_count
>> 24) & 0xff;
444 SCpnt
->cmnd
[11] = (unsigned char) (this_count
>> 16) & 0xff;
445 SCpnt
->cmnd
[12] = (unsigned char) (this_count
>> 8) & 0xff;
446 SCpnt
->cmnd
[13] = (unsigned char) this_count
& 0xff;
447 SCpnt
->cmnd
[14] = SCpnt
->cmnd
[15] = 0;
448 } else if ((this_count
> 0xff) || (block
> 0x1fffff) ||
449 SCpnt
->device
->use_10_for_rw
) {
450 if (this_count
> 0xffff)
453 SCpnt
->cmnd
[0] += READ_10
- READ_6
;
454 SCpnt
->cmnd
[1] |= blk_fua_rq(rq
) ? 0x8 : 0;
455 SCpnt
->cmnd
[2] = (unsigned char) (block
>> 24) & 0xff;
456 SCpnt
->cmnd
[3] = (unsigned char) (block
>> 16) & 0xff;
457 SCpnt
->cmnd
[4] = (unsigned char) (block
>> 8) & 0xff;
458 SCpnt
->cmnd
[5] = (unsigned char) block
& 0xff;
459 SCpnt
->cmnd
[6] = SCpnt
->cmnd
[9] = 0;
460 SCpnt
->cmnd
[7] = (unsigned char) (this_count
>> 8) & 0xff;
461 SCpnt
->cmnd
[8] = (unsigned char) this_count
& 0xff;
463 if (unlikely(blk_fua_rq(rq
))) {
465 * This happens only if this drive failed
466 * 10byte rw command with ILLEGAL_REQUEST
467 * during operation and thus turned off
470 printk(KERN_ERR
"sd: FUA write on READ/WRITE(6) drive\n");
474 SCpnt
->cmnd
[1] |= (unsigned char) ((block
>> 16) & 0x1f);
475 SCpnt
->cmnd
[2] = (unsigned char) ((block
>> 8) & 0xff);
476 SCpnt
->cmnd
[3] = (unsigned char) block
& 0xff;
477 SCpnt
->cmnd
[4] = (unsigned char) this_count
;
480 SCpnt
->request_bufflen
= SCpnt
->bufflen
=
481 this_count
* sdp
->sector_size
;
484 * We shouldn't disconnect in the middle of a sector, so with a dumb
485 * host adapter, it's safe to assume that we can at least transfer
486 * this many bytes between each connect / disconnect.
488 SCpnt
->transfersize
= sdp
->sector_size
;
489 SCpnt
->underflow
= this_count
<< 9;
490 SCpnt
->allowed
= SD_MAX_RETRIES
;
491 SCpnt
->timeout_per_command
= timeout
;
494 * This is the completion routine we use. This is matched in terms
495 * of capability to this function.
497 SCpnt
->done
= sd_rw_intr
;
500 * This indicates that the command is ready from our end to be
507 * sd_open - open a scsi disk device
508 * @inode: only i_rdev member may be used
509 * @filp: only f_mode and f_flags may be used
511 * Returns 0 if successful. Returns a negated errno value in case
514 * Note: This can be called from a user context (e.g. fsck(1) )
515 * or from within the kernel (e.g. as a result of a mount(1) ).
516 * In the latter case @inode and @filp carry an abridged amount
517 * of information as noted above.
519 static int sd_open(struct inode
*inode
, struct file
*filp
)
521 struct gendisk
*disk
= inode
->i_bdev
->bd_disk
;
522 struct scsi_disk
*sdkp
;
523 struct scsi_device
*sdev
;
526 if (!(sdkp
= scsi_disk_get(disk
)))
530 SCSI_LOG_HLQUEUE(3, printk("sd_open: disk=%s\n", disk
->disk_name
));
535 * If the device is in error recovery, wait until it is done.
536 * If the device is offline, then disallow any access to it.
539 if (!scsi_block_when_processing_errors(sdev
))
542 if (sdev
->removable
|| sdkp
->write_prot
)
543 check_disk_change(inode
->i_bdev
);
546 * If the drive is empty, just let the open fail.
549 if (sdev
->removable
&& !sdkp
->media_present
&&
550 !(filp
->f_flags
& O_NDELAY
))
554 * If the device has the write protect tab set, have the open fail
555 * if the user expects to be able to write to the thing.
558 if (sdkp
->write_prot
&& (filp
->f_mode
& FMODE_WRITE
))
562 * It is possible that the disk changing stuff resulted in
563 * the device being taken offline. If this is the case,
564 * report this to the user, and don't pretend that the
565 * open actually succeeded.
568 if (!scsi_device_online(sdev
))
571 if (!sdkp
->openers
++ && sdev
->removable
) {
572 if (scsi_block_when_processing_errors(sdev
))
573 scsi_set_medium_removal(sdev
, SCSI_REMOVAL_PREVENT
);
584 * sd_release - invoked when the (last) close(2) is called on this
586 * @inode: only i_rdev member may be used
587 * @filp: only f_mode and f_flags may be used
591 * Note: may block (uninterruptible) if error recovery is underway
594 static int sd_release(struct inode
*inode
, struct file
*filp
)
596 struct gendisk
*disk
= inode
->i_bdev
->bd_disk
;
597 struct scsi_disk
*sdkp
= scsi_disk(disk
);
598 struct scsi_device
*sdev
= sdkp
->device
;
600 SCSI_LOG_HLQUEUE(3, printk("sd_release: disk=%s\n", disk
->disk_name
));
602 if (!--sdkp
->openers
&& sdev
->removable
) {
603 if (scsi_block_when_processing_errors(sdev
))
604 scsi_set_medium_removal(sdev
, SCSI_REMOVAL_ALLOW
);
608 * XXX and what if there are packets in flight and this close()
609 * XXX is followed by a "rmmod sd_mod"?
615 static int sd_getgeo(struct block_device
*bdev
, struct hd_geometry
*geo
)
617 struct scsi_disk
*sdkp
= scsi_disk(bdev
->bd_disk
);
618 struct scsi_device
*sdp
= sdkp
->device
;
619 struct Scsi_Host
*host
= sdp
->host
;
622 /* default to most commonly used values */
623 diskinfo
[0] = 0x40; /* 1 << 6 */
624 diskinfo
[1] = 0x20; /* 1 << 5 */
625 diskinfo
[2] = sdkp
->capacity
>> 11;
627 /* override with calculated, extended default, or driver values */
628 if (host
->hostt
->bios_param
)
629 host
->hostt
->bios_param(sdp
, bdev
, sdkp
->capacity
, diskinfo
);
631 scsicam_bios_param(bdev
, sdkp
->capacity
, diskinfo
);
633 geo
->heads
= diskinfo
[0];
634 geo
->sectors
= diskinfo
[1];
635 geo
->cylinders
= diskinfo
[2];
640 * sd_ioctl - process an ioctl
641 * @inode: only i_rdev/i_bdev members may be used
642 * @filp: only f_mode and f_flags may be used
643 * @cmd: ioctl command number
644 * @arg: this is third argument given to ioctl(2) system call.
645 * Often contains a pointer.
647 * Returns 0 if successful (some ioctls return postive numbers on
648 * success as well). Returns a negated errno value in case of error.
650 * Note: most ioctls are forward onto the block subsystem or further
651 * down in the scsi subsytem.
653 static int sd_ioctl(struct inode
* inode
, struct file
* filp
,
654 unsigned int cmd
, unsigned long arg
)
656 struct block_device
*bdev
= inode
->i_bdev
;
657 struct gendisk
*disk
= bdev
->bd_disk
;
658 struct scsi_device
*sdp
= scsi_disk(disk
)->device
;
659 void __user
*p
= (void __user
*)arg
;
662 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
663 disk
->disk_name
, cmd
));
666 * If we are in the middle of error recovery, don't let anyone
667 * else try and use this device. Also, if error recovery fails, it
668 * may try and take the device offline, in which case all further
669 * access to the device is prohibited.
671 error
= scsi_nonblockable_ioctl(sdp
, cmd
, p
, filp
);
672 if (!scsi_block_when_processing_errors(sdp
) || !error
)
676 * Send SCSI addressing ioctls directly to mid level, send other
677 * ioctls to block level and then onto mid level if they can't be
681 case SCSI_IOCTL_GET_IDLUN
:
682 case SCSI_IOCTL_GET_BUS_NUMBER
:
683 return scsi_ioctl(sdp
, cmd
, p
);
685 error
= scsi_cmd_ioctl(filp
, disk
, cmd
, p
);
686 if (error
!= -ENOTTY
)
689 return scsi_ioctl(sdp
, cmd
, p
);
692 static void set_media_not_present(struct scsi_disk
*sdkp
)
694 sdkp
->media_present
= 0;
696 sdkp
->device
->changed
= 1;
700 * sd_media_changed - check if our medium changed
701 * @disk: kernel device descriptor
703 * Returns 0 if not applicable or no change; 1 if change
705 * Note: this function is invoked from the block subsystem.
707 static int sd_media_changed(struct gendisk
*disk
)
709 struct scsi_disk
*sdkp
= scsi_disk(disk
);
710 struct scsi_device
*sdp
= sdkp
->device
;
713 SCSI_LOG_HLQUEUE(3, printk("sd_media_changed: disk=%s\n",
720 * If the device is offline, don't send any commands - just pretend as
721 * if the command failed. If the device ever comes back online, we
722 * can deal with it then. It is only because of unrecoverable errors
723 * that we would ever take a device offline in the first place.
725 if (!scsi_device_online(sdp
))
729 * Using TEST_UNIT_READY enables differentiation between drive with
730 * no cartridge loaded - NOT READY, drive with changed cartridge -
731 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
733 * Drives that auto spin down. eg iomega jaz 1G, will be started
734 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
735 * sd_revalidate() is called.
738 if (scsi_block_when_processing_errors(sdp
))
739 retval
= scsi_test_unit_ready(sdp
, SD_TIMEOUT
, SD_MAX_RETRIES
);
742 * Unable to test, unit probably not ready. This usually
743 * means there is no disc in the drive. Mark as changed,
744 * and we will figure it out later once the drive is
751 * For removable scsi disk we have to recognise the presence
752 * of a disk in the drive. This is kept in the struct scsi_disk
753 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
755 sdkp
->media_present
= 1;
757 retval
= sdp
->changed
;
763 set_media_not_present(sdkp
);
767 static int sd_sync_cache(struct scsi_device
*sdp
)
770 struct scsi_sense_hdr sshdr
;
772 if (!scsi_device_online(sdp
))
776 for (retries
= 3; retries
> 0; --retries
) {
777 unsigned char cmd
[10] = { 0 };
779 cmd
[0] = SYNCHRONIZE_CACHE
;
781 * Leave the rest of the command zero to indicate
784 res
= scsi_execute_req(sdp
, cmd
, DMA_NONE
, NULL
, 0, &sshdr
,
785 SD_TIMEOUT
, SD_MAX_RETRIES
);
790 if (res
) { printk(KERN_WARNING
"FAILED\n status = %x, message = %02x, "
791 "host = %d, driver = %02x\n ",
792 status_byte(res
), msg_byte(res
),
793 host_byte(res
), driver_byte(res
));
794 if (driver_byte(res
) & DRIVER_SENSE
)
795 scsi_print_sense_hdr("sd", &sshdr
);
801 static int sd_issue_flush(struct device
*dev
, sector_t
*error_sector
)
804 struct scsi_device
*sdp
= to_scsi_device(dev
);
805 struct scsi_disk
*sdkp
= scsi_disk_get_from_dev(dev
);
811 ret
= sd_sync_cache(sdp
);
816 static void sd_prepare_flush(request_queue_t
*q
, struct request
*rq
)
818 memset(rq
->cmd
, 0, sizeof(rq
->cmd
));
819 rq
->flags
|= REQ_BLOCK_PC
;
820 rq
->timeout
= SD_TIMEOUT
;
821 rq
->cmd
[0] = SYNCHRONIZE_CACHE
;
825 static void sd_rescan(struct device
*dev
)
827 struct scsi_disk
*sdkp
= scsi_disk_get_from_dev(dev
);
830 sd_revalidate_disk(sdkp
->disk
);
838 * This gets directly called from VFS. When the ioctl
839 * is not recognized we go back to the other translation paths.
841 static long sd_compat_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
843 struct block_device
*bdev
= file
->f_dentry
->d_inode
->i_bdev
;
844 struct gendisk
*disk
= bdev
->bd_disk
;
845 struct scsi_device
*sdev
= scsi_disk(disk
)->device
;
848 * If we are in the middle of error recovery, don't let anyone
849 * else try and use this device. Also, if error recovery fails, it
850 * may try and take the device offline, in which case all further
851 * access to the device is prohibited.
853 if (!scsi_block_when_processing_errors(sdev
))
856 if (sdev
->host
->hostt
->compat_ioctl
) {
859 ret
= sdev
->host
->hostt
->compat_ioctl(sdev
, cmd
, (void __user
*)arg
);
865 * Let the static ioctl translation table take care of it.
871 static struct block_device_operations sd_fops
= {
872 .owner
= THIS_MODULE
,
874 .release
= sd_release
,
878 .compat_ioctl
= sd_compat_ioctl
,
880 .media_changed
= sd_media_changed
,
881 .revalidate_disk
= sd_revalidate_disk
,
885 * sd_rw_intr - bottom half handler: called when the lower level
886 * driver has completed (successfully or otherwise) a scsi command.
887 * @SCpnt: mid-level's per command structure.
889 * Note: potentially run from within an ISR. Must not block.
891 static void sd_rw_intr(struct scsi_cmnd
* SCpnt
)
893 int result
= SCpnt
->result
;
894 int this_count
= SCpnt
->bufflen
;
895 int good_bytes
= (result
== 0 ? this_count
: 0);
896 sector_t block_sectors
= 1;
898 sector_t error_sector
;
899 struct scsi_sense_hdr sshdr
;
901 int sense_deferred
= 0;
905 sense_valid
= scsi_command_normalize_sense(SCpnt
, &sshdr
);
907 sense_deferred
= scsi_sense_is_deferred(&sshdr
);
910 #ifdef CONFIG_SCSI_LOGGING
911 SCSI_LOG_HLCOMPLETE(1, printk("sd_rw_intr: %s: res=0x%x\n",
912 SCpnt
->request
->rq_disk
->disk_name
, result
));
914 SCSI_LOG_HLCOMPLETE(1, printk("sd_rw_intr: sb[respc,sk,asc,"
915 "ascq]=%x,%x,%x,%x\n", sshdr
.response_code
,
916 sshdr
.sense_key
, sshdr
.asc
, sshdr
.ascq
));
920 Handle MEDIUM ERRORs that indicate partial success. Since this is a
921 relatively rare error condition, no care is taken to avoid
922 unnecessary additional work such as memcpy's that could be avoided.
924 if (driver_byte(result
) != 0 &&
925 sense_valid
&& !sense_deferred
) {
926 switch (sshdr
.sense_key
) {
928 if (!blk_fs_request(SCpnt
->request
))
930 info_valid
= scsi_get_sense_info_fld(
931 SCpnt
->sense_buffer
, SCSI_SENSE_BUFFERSIZE
,
934 * May want to warn and skip if following cast results
935 * in actual truncation (if sector_t < 64 bits)
937 error_sector
= (sector_t
)first_err_block
;
938 if (SCpnt
->request
->bio
!= NULL
)
939 block_sectors
= bio_sectors(SCpnt
->request
->bio
);
940 switch (SCpnt
->device
->sector_size
) {
943 if (block_sectors
< 2)
948 if (block_sectors
< 4)
953 if (block_sectors
< 8)
963 error_sector
&= ~(block_sectors
- 1);
964 good_bytes
= (error_sector
- SCpnt
->request
->sector
) << 9;
965 if (good_bytes
< 0 || good_bytes
>= this_count
)
969 case RECOVERED_ERROR
: /* an error occurred, but it recovered */
970 case NO_SENSE
: /* LLDD got sense data */
972 * Inform the user, but make sure that it's not treated
975 scsi_print_sense("sd", SCpnt
);
977 memset(SCpnt
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
978 good_bytes
= this_count
;
981 case ILLEGAL_REQUEST
:
982 if (SCpnt
->device
->use_10_for_rw
&&
983 (SCpnt
->cmnd
[0] == READ_10
||
984 SCpnt
->cmnd
[0] == WRITE_10
))
985 SCpnt
->device
->use_10_for_rw
= 0;
986 if (SCpnt
->device
->use_10_for_ms
&&
987 (SCpnt
->cmnd
[0] == MODE_SENSE_10
||
988 SCpnt
->cmnd
[0] == MODE_SELECT_10
))
989 SCpnt
->device
->use_10_for_ms
= 0;
997 * This calls the generic completion function, now that we know
998 * how many actual sectors finished, and how many sectors we need
999 * to say have failed.
1001 scsi_io_completion(SCpnt
, good_bytes
, block_sectors
<< 9);
1004 static int media_not_present(struct scsi_disk
*sdkp
,
1005 struct scsi_sense_hdr
*sshdr
)
1008 if (!scsi_sense_valid(sshdr
))
1010 /* not invoked for commands that could return deferred errors */
1011 if (sshdr
->sense_key
!= NOT_READY
&&
1012 sshdr
->sense_key
!= UNIT_ATTENTION
)
1014 if (sshdr
->asc
!= 0x3A) /* medium not present */
1017 set_media_not_present(sdkp
);
1022 * spinup disk - called only in sd_revalidate_disk()
1025 sd_spinup_disk(struct scsi_disk
*sdkp
, char *diskname
)
1027 unsigned char cmd
[10];
1028 unsigned long spintime_expire
= 0;
1029 int retries
, spintime
;
1030 unsigned int the_result
;
1031 struct scsi_sense_hdr sshdr
;
1032 int sense_valid
= 0;
1036 /* Spin up drives, as required. Only do this at boot time */
1037 /* Spinup needs to be done for module loads too. */
1042 cmd
[0] = TEST_UNIT_READY
;
1043 memset((void *) &cmd
[1], 0, 9);
1045 the_result
= scsi_execute_req(sdkp
->device
, cmd
,
1051 sense_valid
= scsi_sense_valid(&sshdr
);
1053 } while (retries
< 3 &&
1054 (!scsi_status_is_good(the_result
) ||
1055 ((driver_byte(the_result
) & DRIVER_SENSE
) &&
1056 sense_valid
&& sshdr
.sense_key
== UNIT_ATTENTION
)));
1059 * If the drive has indicated to us that it doesn't have
1060 * any media in it, don't bother with any of the rest of
1063 if (media_not_present(sdkp
, &sshdr
))
1066 if ((driver_byte(the_result
) & DRIVER_SENSE
) == 0) {
1067 /* no sense, TUR either succeeded or failed
1068 * with a status error */
1069 if(!spintime
&& !scsi_status_is_good(the_result
))
1070 printk(KERN_NOTICE
"%s: Unit Not Ready, "
1071 "error = 0x%x\n", diskname
, the_result
);
1076 * The device does not want the automatic start to be issued.
1078 if (sdkp
->device
->no_start_on_add
) {
1083 * If manual intervention is required, or this is an
1084 * absent USB storage device, a spinup is meaningless.
1087 sshdr
.sense_key
== NOT_READY
&&
1088 sshdr
.asc
== 4 && sshdr
.ascq
== 3) {
1089 break; /* manual intervention required */
1092 * Issue command to spin up drive when not ready
1094 } else if (sense_valid
&& sshdr
.sense_key
== NOT_READY
) {
1096 printk(KERN_NOTICE
"%s: Spinning up disk...",
1098 cmd
[0] = START_STOP
;
1099 cmd
[1] = 1; /* Return immediately */
1100 memset((void *) &cmd
[2], 0, 8);
1101 cmd
[4] = 1; /* Start spin cycle */
1102 scsi_execute_req(sdkp
->device
, cmd
, DMA_NONE
,
1104 SD_TIMEOUT
, SD_MAX_RETRIES
);
1105 spintime_expire
= jiffies
+ 100 * HZ
;
1108 /* Wait 1 second for next try */
1113 * Wait for USB flash devices with slow firmware.
1114 * Yes, this sense key/ASC combination shouldn't
1115 * occur here. It's characteristic of these devices.
1117 } else if (sense_valid
&&
1118 sshdr
.sense_key
== UNIT_ATTENTION
&&
1119 sshdr
.asc
== 0x28) {
1121 spintime_expire
= jiffies
+ 5 * HZ
;
1124 /* Wait 1 second for next try */
1127 /* we don't understand the sense code, so it's
1128 * probably pointless to loop */
1130 printk(KERN_NOTICE
"%s: Unit Not Ready, "
1131 "sense:\n", diskname
);
1132 scsi_print_sense_hdr("", &sshdr
);
1137 } while (spintime
&& time_before_eq(jiffies
, spintime_expire
));
1140 if (scsi_status_is_good(the_result
))
1143 printk("not responding...\n");
1148 * read disk capacity
1151 sd_read_capacity(struct scsi_disk
*sdkp
, char *diskname
,
1152 unsigned char *buffer
)
1154 unsigned char cmd
[16];
1155 int the_result
, retries
;
1156 int sector_size
= 0;
1158 struct scsi_sense_hdr sshdr
;
1159 int sense_valid
= 0;
1160 struct scsi_device
*sdp
= sdkp
->device
;
1166 memset((void *) cmd
, 0, 16);
1167 cmd
[0] = SERVICE_ACTION_IN
;
1168 cmd
[1] = SAI_READ_CAPACITY_16
;
1170 memset((void *) buffer
, 0, 12);
1172 cmd
[0] = READ_CAPACITY
;
1173 memset((void *) &cmd
[1], 0, 9);
1174 memset((void *) buffer
, 0, 8);
1177 the_result
= scsi_execute_req(sdp
, cmd
, DMA_FROM_DEVICE
,
1178 buffer
, longrc
? 12 : 8, &sshdr
,
1179 SD_TIMEOUT
, SD_MAX_RETRIES
);
1181 if (media_not_present(sdkp
, &sshdr
))
1185 sense_valid
= scsi_sense_valid(&sshdr
);
1188 } while (the_result
&& retries
);
1190 if (the_result
&& !longrc
) {
1191 printk(KERN_NOTICE
"%s : READ CAPACITY failed.\n"
1192 "%s : status=%x, message=%02x, host=%d, driver=%02x \n",
1194 status_byte(the_result
),
1195 msg_byte(the_result
),
1196 host_byte(the_result
),
1197 driver_byte(the_result
));
1199 if (driver_byte(the_result
) & DRIVER_SENSE
)
1200 scsi_print_sense_hdr("sd", &sshdr
);
1202 printk("%s : sense not available. \n", diskname
);
1204 /* Set dirty bit for removable devices if not ready -
1205 * sometimes drives will not report this properly. */
1206 if (sdp
->removable
&&
1207 sense_valid
&& sshdr
.sense_key
== NOT_READY
)
1210 /* Either no media are present but the drive didn't tell us,
1211 or they are present but the read capacity command fails */
1212 /* sdkp->media_present = 0; -- not always correct */
1213 sdkp
->capacity
= 0x200000; /* 1 GB - random */
1216 } else if (the_result
&& longrc
) {
1217 /* READ CAPACITY(16) has been failed */
1218 printk(KERN_NOTICE
"%s : READ CAPACITY(16) failed.\n"
1219 "%s : status=%x, message=%02x, host=%d, driver=%02x \n",
1221 status_byte(the_result
),
1222 msg_byte(the_result
),
1223 host_byte(the_result
),
1224 driver_byte(the_result
));
1225 printk(KERN_NOTICE
"%s : use 0xffffffff as device size\n",
1228 sdkp
->capacity
= 1 + (sector_t
) 0xffffffff;
1233 sector_size
= (buffer
[4] << 24) |
1234 (buffer
[5] << 16) | (buffer
[6] << 8) | buffer
[7];
1235 if (buffer
[0] == 0xff && buffer
[1] == 0xff &&
1236 buffer
[2] == 0xff && buffer
[3] == 0xff) {
1237 if(sizeof(sdkp
->capacity
) > 4) {
1238 printk(KERN_NOTICE
"%s : very big device. try to use"
1239 " READ CAPACITY(16).\n", diskname
);
1243 printk(KERN_ERR
"%s: too big for this kernel. Use a "
1244 "kernel compiled with support for large block "
1245 "devices.\n", diskname
);
1249 sdkp
->capacity
= 1 + (((sector_t
)buffer
[0] << 24) |
1254 sdkp
->capacity
= 1 + (((u64
)buffer
[0] << 56) |
1255 ((u64
)buffer
[1] << 48) |
1256 ((u64
)buffer
[2] << 40) |
1257 ((u64
)buffer
[3] << 32) |
1258 ((sector_t
)buffer
[4] << 24) |
1259 ((sector_t
)buffer
[5] << 16) |
1260 ((sector_t
)buffer
[6] << 8) |
1261 (sector_t
)buffer
[7]);
1263 sector_size
= (buffer
[8] << 24) |
1264 (buffer
[9] << 16) | (buffer
[10] << 8) | buffer
[11];
1267 /* Some devices return the total number of sectors, not the
1268 * highest sector number. Make the necessary adjustment. */
1269 if (sdp
->fix_capacity
)
1273 if (sector_size
== 0) {
1275 printk(KERN_NOTICE
"%s : sector size 0 reported, "
1276 "assuming 512.\n", diskname
);
1279 if (sector_size
!= 512 &&
1280 sector_size
!= 1024 &&
1281 sector_size
!= 2048 &&
1282 sector_size
!= 4096 &&
1283 sector_size
!= 256) {
1284 printk(KERN_NOTICE
"%s : unsupported sector size "
1285 "%d.\n", diskname
, sector_size
);
1287 * The user might want to re-format the drive with
1288 * a supported sectorsize. Once this happens, it
1289 * would be relatively trivial to set the thing up.
1290 * For this reason, we leave the thing in the table.
1294 * set a bogus sector size so the normal read/write
1295 * logic in the block layer will eventually refuse any
1296 * request on this device without tripping over power
1297 * of two sector size assumptions
1303 * The msdos fs needs to know the hardware sector size
1304 * So I have created this table. See ll_rw_blk.c
1305 * Jacques Gelinas (Jacques@solucorp.qc.ca)
1307 int hard_sector
= sector_size
;
1308 sector_t sz
= (sdkp
->capacity
/2) * (hard_sector
/256);
1309 request_queue_t
*queue
= sdp
->request_queue
;
1312 blk_queue_hardsect_size(queue
, hard_sector
);
1313 /* avoid 64-bit division on 32-bit platforms */
1314 sector_div(sz
, 625);
1316 sector_div(mb
, 1950);
1318 printk(KERN_NOTICE
"SCSI device %s: "
1319 "%llu %d-byte hdwr sectors (%llu MB)\n",
1320 diskname
, (unsigned long long)sdkp
->capacity
,
1321 hard_sector
, (unsigned long long)mb
);
1324 /* Rescale capacity to 512-byte units */
1325 if (sector_size
== 4096)
1326 sdkp
->capacity
<<= 3;
1327 else if (sector_size
== 2048)
1328 sdkp
->capacity
<<= 2;
1329 else if (sector_size
== 1024)
1330 sdkp
->capacity
<<= 1;
1331 else if (sector_size
== 256)
1332 sdkp
->capacity
>>= 1;
1334 sdkp
->device
->sector_size
= sector_size
;
1337 /* called with buffer of length 512 */
1339 sd_do_mode_sense(struct scsi_device
*sdp
, int dbd
, int modepage
,
1340 unsigned char *buffer
, int len
, struct scsi_mode_data
*data
,
1341 struct scsi_sense_hdr
*sshdr
)
1343 return scsi_mode_sense(sdp
, dbd
, modepage
, buffer
, len
,
1344 SD_TIMEOUT
, SD_MAX_RETRIES
, data
,
1349 * read write protect setting, if possible - called only in sd_revalidate_disk()
1350 * called with buffer of length SD_BUF_SIZE
1353 sd_read_write_protect_flag(struct scsi_disk
*sdkp
, char *diskname
,
1354 unsigned char *buffer
)
1357 struct scsi_device
*sdp
= sdkp
->device
;
1358 struct scsi_mode_data data
;
1360 set_disk_ro(sdkp
->disk
, 0);
1361 if (sdp
->skip_ms_page_3f
) {
1362 printk(KERN_NOTICE
"%s: assuming Write Enabled\n", diskname
);
1366 if (sdp
->use_192_bytes_for_3f
) {
1367 res
= sd_do_mode_sense(sdp
, 0, 0x3F, buffer
, 192, &data
, NULL
);
1370 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1371 * We have to start carefully: some devices hang if we ask
1372 * for more than is available.
1374 res
= sd_do_mode_sense(sdp
, 0, 0x3F, buffer
, 4, &data
, NULL
);
1377 * Second attempt: ask for page 0 When only page 0 is
1378 * implemented, a request for page 3F may return Sense Key
1379 * 5: Illegal Request, Sense Code 24: Invalid field in
1382 if (!scsi_status_is_good(res
))
1383 res
= sd_do_mode_sense(sdp
, 0, 0, buffer
, 4, &data
, NULL
);
1386 * Third attempt: ask 255 bytes, as we did earlier.
1388 if (!scsi_status_is_good(res
))
1389 res
= sd_do_mode_sense(sdp
, 0, 0x3F, buffer
, 255,
1393 if (!scsi_status_is_good(res
)) {
1395 "%s: test WP failed, assume Write Enabled\n", diskname
);
1397 sdkp
->write_prot
= ((data
.device_specific
& 0x80) != 0);
1398 set_disk_ro(sdkp
->disk
, sdkp
->write_prot
);
1399 printk(KERN_NOTICE
"%s: Write Protect is %s\n", diskname
,
1400 sdkp
->write_prot
? "on" : "off");
1401 printk(KERN_DEBUG
"%s: Mode Sense: %02x %02x %02x %02x\n",
1402 diskname
, buffer
[0], buffer
[1], buffer
[2], buffer
[3]);
1407 * sd_read_cache_type - called only from sd_revalidate_disk()
1408 * called with buffer of length SD_BUF_SIZE
1411 sd_read_cache_type(struct scsi_disk
*sdkp
, char *diskname
,
1412 unsigned char *buffer
)
1415 struct scsi_device
*sdp
= sdkp
->device
;
1419 struct scsi_mode_data data
;
1420 struct scsi_sense_hdr sshdr
;
1422 if (sdp
->skip_ms_page_8
)
1425 if (sdp
->type
== TYPE_RBC
) {
1433 /* cautiously ask */
1434 res
= sd_do_mode_sense(sdp
, dbd
, modepage
, buffer
, 4, &data
, &sshdr
);
1436 if (!scsi_status_is_good(res
))
1439 if (!data
.header_length
) {
1441 printk(KERN_ERR
"%s: missing header in MODE_SENSE response\n",
1445 /* that went OK, now ask for the proper length */
1449 * We're only interested in the first three bytes, actually.
1450 * But the data cache page is defined for the first 20.
1457 /* Take headers and block descriptors into account */
1458 len
+= data
.header_length
+ data
.block_descriptor_length
;
1459 if (len
> SD_BUF_SIZE
)
1463 res
= sd_do_mode_sense(sdp
, dbd
, modepage
, buffer
, len
, &data
, &sshdr
);
1465 if (scsi_status_is_good(res
)) {
1467 int offset
= data
.header_length
+ data
.block_descriptor_length
;
1469 if (offset
>= SD_BUF_SIZE
- 2) {
1470 printk(KERN_ERR
"%s: malformed MODE SENSE response",
1475 if ((buffer
[offset
] & 0x3f) != modepage
) {
1476 printk(KERN_ERR
"%s: got wrong page\n", diskname
);
1480 if (modepage
== 8) {
1481 sdkp
->WCE
= ((buffer
[offset
+ 2] & 0x04) != 0);
1482 sdkp
->RCD
= ((buffer
[offset
+ 2] & 0x01) != 0);
1484 sdkp
->WCE
= ((buffer
[offset
+ 2] & 0x01) == 0);
1488 sdkp
->DPOFUA
= (data
.device_specific
& 0x10) != 0;
1489 if (sdkp
->DPOFUA
&& !sdkp
->device
->use_10_for_rw
) {
1490 printk(KERN_NOTICE
"SCSI device %s: uses "
1491 "READ/WRITE(6), disabling FUA\n", diskname
);
1495 ct
= sdkp
->RCD
+ 2*sdkp
->WCE
;
1497 printk(KERN_NOTICE
"SCSI device %s: drive cache: %s%s\n",
1498 diskname
, sd_cache_types
[ct
],
1499 sdkp
->DPOFUA
? " w/ FUA" : "");
1505 if (scsi_sense_valid(&sshdr
) &&
1506 sshdr
.sense_key
== ILLEGAL_REQUEST
&&
1507 sshdr
.asc
== 0x24 && sshdr
.ascq
== 0x0)
1508 printk(KERN_NOTICE
"%s: cache data unavailable\n",
1509 diskname
); /* Invalid field in CDB */
1511 printk(KERN_ERR
"%s: asking for cache data failed\n",
1515 printk(KERN_ERR
"%s: assuming drive cache: write through\n",
1523 * sd_revalidate_disk - called the first time a new disk is seen,
1524 * performs disk spin up, read_capacity, etc.
1525 * @disk: struct gendisk we care about
1527 static int sd_revalidate_disk(struct gendisk
*disk
)
1529 struct scsi_disk
*sdkp
= scsi_disk(disk
);
1530 struct scsi_device
*sdp
= sdkp
->device
;
1531 unsigned char *buffer
;
1534 SCSI_LOG_HLQUEUE(3, printk("sd_revalidate_disk: disk=%s\n", disk
->disk_name
));
1537 * If the device is offline, don't try and read capacity or any
1538 * of the other niceties.
1540 if (!scsi_device_online(sdp
))
1543 buffer
= kmalloc(SD_BUF_SIZE
, GFP_KERNEL
| __GFP_DMA
);
1545 printk(KERN_WARNING
"(sd_revalidate_disk:) Memory allocation "
1550 /* defaults, until the device tells us otherwise */
1551 sdp
->sector_size
= 512;
1553 sdkp
->media_present
= 1;
1554 sdkp
->write_prot
= 0;
1558 sd_spinup_disk(sdkp
, disk
->disk_name
);
1561 * Without media there is no reason to ask; moreover, some devices
1562 * react badly if we do.
1564 if (sdkp
->media_present
) {
1565 sd_read_capacity(sdkp
, disk
->disk_name
, buffer
);
1566 sd_read_write_protect_flag(sdkp
, disk
->disk_name
, buffer
);
1567 sd_read_cache_type(sdkp
, disk
->disk_name
, buffer
);
1571 * We now have all cache related info, determine how we deal
1572 * with ordered requests. Note that as the current SCSI
1573 * dispatch function can alter request order, we cannot use
1574 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1577 ordered
= sdkp
->DPOFUA
1578 ? QUEUE_ORDERED_DRAIN_FUA
: QUEUE_ORDERED_DRAIN_FLUSH
;
1580 ordered
= QUEUE_ORDERED_DRAIN
;
1582 blk_queue_ordered(sdkp
->disk
->queue
, ordered
, sd_prepare_flush
);
1584 set_capacity(disk
, sdkp
->capacity
);
1592 * sd_probe - called during driver initialization and whenever a
1593 * new scsi device is attached to the system. It is called once
1594 * for each scsi device (not just disks) present.
1595 * @dev: pointer to device object
1597 * Returns 0 if successful (or not interested in this scsi device
1598 * (e.g. scanner)); 1 when there is an error.
1600 * Note: this function is invoked from the scsi mid-level.
1601 * This function sets up the mapping between a given
1602 * <host,channel,id,lun> (found in sdp) and new device name
1603 * (e.g. /dev/sda). More precisely it is the block device major
1604 * and minor number that is chosen here.
1606 * Assume sd_attach is not re-entrant (for time being)
1607 * Also think about sd_attach() and sd_remove() running coincidentally.
1609 static int sd_probe(struct device
*dev
)
1611 struct scsi_device
*sdp
= to_scsi_device(dev
);
1612 struct scsi_disk
*sdkp
;
1618 if (sdp
->type
!= TYPE_DISK
&& sdp
->type
!= TYPE_MOD
&& sdp
->type
!= TYPE_RBC
)
1621 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO
, sdp
,
1625 sdkp
= kzalloc(sizeof(*sdkp
), GFP_KERNEL
);
1629 gd
= alloc_disk(16);
1633 if (!idr_pre_get(&sd_index_idr
, GFP_KERNEL
))
1636 spin_lock(&sd_index_lock
);
1637 error
= idr_get_new(&sd_index_idr
, NULL
, &index
);
1638 spin_unlock(&sd_index_lock
);
1640 if (index
>= SD_MAX_DISKS
)
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
);
1656 sdkp
->driver
= &sd_template
;
1658 sdkp
->index
= index
;
1661 if (!sdp
->timeout
) {
1662 if (sdp
->type
!= TYPE_MOD
)
1663 sdp
->timeout
= SD_TIMEOUT
;
1665 sdp
->timeout
= SD_MOD_TIMEOUT
;
1668 gd
->major
= sd_major((index
& 0xf0) >> 4);
1669 gd
->first_minor
= ((index
& 0xf) << 4) | (index
& 0xfff00);
1671 gd
->fops
= &sd_fops
;
1674 sprintf(gd
->disk_name
, "sd%c", 'a' + index
% 26);
1675 } else if (index
< (26 + 1) * 26) {
1676 sprintf(gd
->disk_name
, "sd%c%c",
1677 'a' + index
/ 26 - 1,'a' + index
% 26);
1679 const unsigned int m1
= (index
/ 26 - 1) / 26 - 1;
1680 const unsigned int m2
= (index
/ 26 - 1) % 26;
1681 const unsigned int m3
= index
% 26;
1682 sprintf(gd
->disk_name
, "sd%c%c%c",
1683 'a' + m1
, 'a' + m2
, 'a' + m3
);
1686 gd
->private_data
= &sdkp
->driver
;
1687 gd
->queue
= sdkp
->device
->request_queue
;
1689 sd_revalidate_disk(gd
);
1691 gd
->driverfs_dev
= &sdp
->sdev_gendev
;
1692 gd
->flags
= GENHD_FL_DRIVERFS
;
1694 gd
->flags
|= GENHD_FL_REMOVABLE
;
1696 dev_set_drvdata(dev
, sdkp
);
1699 sdev_printk(KERN_NOTICE
, sdp
, "Attached scsi %sdisk %s\n",
1700 sdp
->removable
? "removable " : "", gd
->disk_name
);
1713 * sd_remove - called whenever a scsi disk (previously recognized by
1714 * sd_probe) is detached from the system. It is called (potentially
1715 * multiple times) during sd module unload.
1716 * @sdp: pointer to mid level scsi device object
1718 * Note: this function is invoked from the scsi mid-level.
1719 * This function potentially frees up a device name (e.g. /dev/sdc)
1720 * that could be re-used by a subsequent sd_probe().
1721 * This function is not called when the built-in sd driver is "exit-ed".
1723 static int sd_remove(struct device
*dev
)
1725 struct scsi_disk
*sdkp
= dev_get_drvdata(dev
);
1727 class_device_del(&sdkp
->cdev
);
1728 del_gendisk(sdkp
->disk
);
1731 mutex_lock(&sd_ref_mutex
);
1732 dev_set_drvdata(dev
, NULL
);
1733 class_device_put(&sdkp
->cdev
);
1734 mutex_unlock(&sd_ref_mutex
);
1740 * scsi_disk_release - Called to free the scsi_disk structure
1741 * @cdev: pointer to embedded class device
1743 * sd_ref_mutex must be held entering this routine. Because it is
1744 * called on last put, you should always use the scsi_disk_get()
1745 * scsi_disk_put() helpers which manipulate the semaphore directly
1746 * and never do a direct class_device_put().
1748 static void scsi_disk_release(struct class_device
*cdev
)
1750 struct scsi_disk
*sdkp
= to_scsi_disk(cdev
);
1751 struct gendisk
*disk
= sdkp
->disk
;
1753 spin_lock(&sd_index_lock
);
1754 idr_remove(&sd_index_idr
, sdkp
->index
);
1755 spin_unlock(&sd_index_lock
);
1757 disk
->private_data
= NULL
;
1759 put_device(&sdkp
->device
->sdev_gendev
);
1765 * Send a SYNCHRONIZE CACHE instruction down to the device through
1766 * the normal SCSI command structure. Wait for the command to
1769 static void sd_shutdown(struct device
*dev
)
1771 struct scsi_device
*sdp
= to_scsi_device(dev
);
1772 struct scsi_disk
*sdkp
= scsi_disk_get_from_dev(dev
);
1775 return; /* this can happen */
1778 printk(KERN_NOTICE
"Synchronizing SCSI cache for disk %s: \n",
1779 sdkp
->disk
->disk_name
);
1782 scsi_disk_put(sdkp
);
1786 * init_sd - entry point for this driver (both when built in or when
1789 * Note: this function registers this driver with the scsi mid-level.
1791 static int __init
init_sd(void)
1795 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
1797 for (i
= 0; i
< SD_MAJORS
; i
++)
1798 if (register_blkdev(sd_major(i
), "sd") == 0)
1804 class_register(&sd_disk_class
);
1806 return scsi_register_driver(&sd_template
.gendrv
);
1810 * exit_sd - exit point for this driver (when it is a module).
1812 * Note: this function unregisters this driver from the scsi mid-level.
1814 static void __exit
exit_sd(void)
1818 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
1820 scsi_unregister_driver(&sd_template
.gendrv
);
1821 for (i
= 0; i
< SD_MAJORS
; i
++)
1822 unregister_blkdev(sd_major(i
), "sd");
1824 class_unregister(&sd_disk_class
);
1827 module_init(init_sd
);
1828 module_exit(exit_sd
);