]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/scsi/sd.c
[SCSI] mpt fusion: Power Management fixes for MPT SAS PCI-E controllers
[mirror_ubuntu-artful-kernel.git] / drivers / scsi / sd.c
CommitLineData
1da177e4
LT
1/*
2 * sd.c Copyright (C) 1992 Drew Eckhardt
3 * Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale
4 *
5 * Linux scsi disk driver
6 * Initial versions: Drew Eckhardt
7 * Subsequent revisions: Eric Youngdale
8 * Modification history:
9 * - Drew Eckhardt <drew@colorado.edu> original
10 * - Eric Youngdale <eric@andante.org> add scatter-gather, multiple
11 * outstanding request, and other enhancements.
12 * Support loadable low-level scsi drivers.
13 * - Jirka Hanika <geo@ff.cuni.cz> support more scsi disks using
14 * eight major numbers.
15 * - Richard Gooch <rgooch@atnf.csiro.au> support devfs.
16 * - Torben Mathiasen <tmm@image.dk> Resource allocation fixes in
17 * sd_init and cleanups.
18 * - Alex Davis <letmein@erols.com> Fix problem where partition info
19 * not being read in sd_open. Fix problem where removable media
20 * could be ejected after sd_open.
21 * - Douglas Gilbert <dgilbert@interlog.com> cleanup for lk 2.5.x
22 * - Badari Pulavarty <pbadari@us.ibm.com>, Matthew Wilcox
23 * <willy@debian.org>, Kurt Garloff <garloff@suse.de>:
24 * Support 32k/1M disks.
25 *
26 * Logging policy (needs CONFIG_SCSI_LOGGING defined):
27 * - setting up transfer: SCSI_LOG_HLQUEUE levels 1 and 2
28 * - end of transfer (bh + scsi_lib): SCSI_LOG_HLCOMPLETE level 1
29 * - entering sd_ioctl: SCSI_LOG_IOCTL level 1
30 * - entering other commands: SCSI_LOG_HLQUEUE level 3
31 * Note: when the logging level is set by the user, it must be greater
32 * than the level indicated above to trigger output.
33 */
34
1da177e4
LT
35#include <linux/module.h>
36#include <linux/fs.h>
37#include <linux/kernel.h>
1da177e4
LT
38#include <linux/mm.h>
39#include <linux/bio.h>
40#include <linux/genhd.h>
41#include <linux/hdreg.h>
42#include <linux/errno.h>
43#include <linux/idr.h>
44#include <linux/interrupt.h>
45#include <linux/init.h>
46#include <linux/blkdev.h>
47#include <linux/blkpg.h>
1da177e4 48#include <linux/delay.h>
0b950672 49#include <linux/mutex.h>
1da177e4
LT
50#include <asm/uaccess.h>
51
52#include <scsi/scsi.h>
53#include <scsi/scsi_cmnd.h>
54#include <scsi/scsi_dbg.h>
55#include <scsi/scsi_device.h>
56#include <scsi/scsi_driver.h>
57#include <scsi/scsi_eh.h>
58#include <scsi/scsi_host.h>
59#include <scsi/scsi_ioctl.h>
1da177e4 60#include <scsi/scsicam.h>
e73aec82 61#include <scsi/sd.h>
1da177e4
LT
62
63#include "scsi_logging.h"
64
f018fa55
RH
65MODULE_AUTHOR("Eric Youngdale");
66MODULE_DESCRIPTION("SCSI disk (sd) driver");
67MODULE_LICENSE("GPL");
68
69MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR);
70MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR);
71MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR);
72MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR);
73MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR);
74MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR);
75MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR);
76MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR);
77MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR);
78MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR);
79MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR);
80MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR);
81MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR);
82MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR);
83MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR);
84MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR);
d7b8bcb0
MT
85MODULE_ALIAS_SCSI_DEVICE(TYPE_DISK);
86MODULE_ALIAS_SCSI_DEVICE(TYPE_MOD);
87MODULE_ALIAS_SCSI_DEVICE(TYPE_RBC);
f018fa55 88
7b3d9545
LT
89static int sd_revalidate_disk(struct gendisk *);
90static int sd_probe(struct device *);
91static int sd_remove(struct device *);
92static void sd_shutdown(struct device *);
93static int sd_suspend(struct device *, pm_message_t state);
94static int sd_resume(struct device *);
95static void sd_rescan(struct device *);
96static int sd_done(struct scsi_cmnd *);
97static void sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer);
98static void scsi_disk_release(struct class_device *cdev);
99static void sd_print_sense_hdr(struct scsi_disk *, struct scsi_sense_hdr *);
100static void sd_print_result(struct scsi_disk *, int);
101
1da177e4
LT
102static DEFINE_IDR(sd_index_idr);
103static DEFINE_SPINLOCK(sd_index_lock);
104
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) */
0b950672 108static DEFINE_MUTEX(sd_ref_mutex);
1da177e4 109
6bdaa1f1
JB
110static const char *sd_cache_types[] = {
111 "write through", "none", "write back",
112 "write back, no read (daft)"
113};
114
115static ssize_t sd_store_cache_type(struct class_device *cdev, const char *buf,
116 size_t count)
117{
118 int i, ct = -1, rcd, wce, sp;
119 struct scsi_disk *sdkp = to_scsi_disk(cdev);
120 struct scsi_device *sdp = sdkp->device;
121 char buffer[64];
122 char *buffer_data;
123 struct scsi_mode_data data;
124 struct scsi_sense_hdr sshdr;
125 int len;
126
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 */
131 return -EINVAL;
132
6391a113 133 for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
6bdaa1f1
JB
134 const int len = strlen(sd_cache_types[i]);
135 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
136 buf[len] == '\n') {
137 ct = i;
138 break;
139 }
140 }
141 if (ct < 0)
142 return -EINVAL;
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))
147 return -EINVAL;
a9312fb8 148 len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
6bdaa1f1
JB
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;
155
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))
e73aec82 159 sd_print_sense_hdr(sdkp, &sshdr);
6bdaa1f1
JB
160 return -EINVAL;
161 }
162 sd_revalidate_disk(sdkp->disk);
163 return count;
164}
165
c3c94c5a
TH
166static ssize_t sd_store_manage_start_stop(struct class_device *cdev,
167 const char *buf, size_t count)
168{
169 struct scsi_disk *sdkp = to_scsi_disk(cdev);
170 struct scsi_device *sdp = sdkp->device;
171
172 if (!capable(CAP_SYS_ADMIN))
173 return -EACCES;
174
175 sdp->manage_start_stop = simple_strtoul(buf, NULL, 10);
176
177 return count;
178}
179
a144c5ae
BK
180static ssize_t sd_store_allow_restart(struct class_device *cdev, const char *buf,
181 size_t count)
182{
183 struct scsi_disk *sdkp = to_scsi_disk(cdev);
184 struct scsi_device *sdp = sdkp->device;
185
186 if (!capable(CAP_SYS_ADMIN))
187 return -EACCES;
188
189 if (sdp->type != TYPE_DISK)
190 return -EINVAL;
191
192 sdp->allow_restart = simple_strtoul(buf, NULL, 10);
193
194 return count;
195}
196
6bdaa1f1
JB
197static ssize_t sd_show_cache_type(struct class_device *cdev, char *buf)
198{
199 struct scsi_disk *sdkp = to_scsi_disk(cdev);
200 int ct = sdkp->RCD + 2*sdkp->WCE;
201
202 return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
203}
204
205static ssize_t sd_show_fua(struct class_device *cdev, char *buf)
206{
207 struct scsi_disk *sdkp = to_scsi_disk(cdev);
208
209 return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
210}
211
c3c94c5a
TH
212static ssize_t sd_show_manage_start_stop(struct class_device *cdev, char *buf)
213{
214 struct scsi_disk *sdkp = to_scsi_disk(cdev);
215 struct scsi_device *sdp = sdkp->device;
216
217 return snprintf(buf, 20, "%u\n", sdp->manage_start_stop);
218}
219
a144c5ae
BK
220static ssize_t sd_show_allow_restart(struct class_device *cdev, char *buf)
221{
222 struct scsi_disk *sdkp = to_scsi_disk(cdev);
223
224 return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
225}
226
6bdaa1f1
JB
227static 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),
a144c5ae
BK
231 __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
232 sd_store_allow_restart),
c3c94c5a
TH
233 __ATTR(manage_start_stop, S_IRUGO|S_IWUSR, sd_show_manage_start_stop,
234 sd_store_manage_start_stop),
6bdaa1f1
JB
235 __ATTR_NULL,
236};
237
238static struct class sd_disk_class = {
239 .name = "scsi_disk",
240 .owner = THIS_MODULE,
241 .release = scsi_disk_release,
242 .class_dev_attrs = sd_disk_attrs,
243};
1da177e4
LT
244
245static struct scsi_driver sd_template = {
246 .owner = THIS_MODULE,
247 .gendrv = {
248 .name = "sd",
249 .probe = sd_probe,
250 .remove = sd_remove,
c3c94c5a
TH
251 .suspend = sd_suspend,
252 .resume = sd_resume,
1da177e4
LT
253 .shutdown = sd_shutdown,
254 },
255 .rescan = sd_rescan,
7b3d9545 256 .done = sd_done,
1da177e4
LT
257};
258
259/*
260 * Device no to disk mapping:
261 *
262 * major disc2 disc p1
263 * |............|.............|....|....| <- dev_t
264 * 31 20 19 8 7 4 3 0
265 *
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
269 * for major1, ...
270 * As we stay compatible with our numbering scheme, we can reuse
271 * the well-know SCSI majors 8, 65--71, 136--143.
272 */
273static int sd_major(int major_idx)
274{
275 switch (major_idx) {
276 case 0:
277 return SCSI_DISK0_MAJOR;
278 case 1 ... 7:
279 return SCSI_DISK1_MAJOR + major_idx - 1;
280 case 8 ... 15:
281 return SCSI_DISK8_MAJOR + major_idx - 8;
282 default:
283 BUG();
284 return 0; /* shut up gcc */
285 }
286}
287
1da177e4
LT
288static inline struct scsi_disk *scsi_disk(struct gendisk *disk)
289{
290 return container_of(disk->private_data, struct scsi_disk, driver);
291}
292
39b7f1e2 293static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
1da177e4
LT
294{
295 struct scsi_disk *sdkp = NULL;
296
39b7f1e2
AS
297 if (disk->private_data) {
298 sdkp = scsi_disk(disk);
299 if (scsi_device_get(sdkp->device) == 0)
6bdaa1f1 300 class_device_get(&sdkp->cdev);
39b7f1e2
AS
301 else
302 sdkp = NULL;
303 }
304 return sdkp;
305}
306
307static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
308{
309 struct scsi_disk *sdkp;
310
0b950672 311 mutex_lock(&sd_ref_mutex);
39b7f1e2 312 sdkp = __scsi_disk_get(disk);
0b950672 313 mutex_unlock(&sd_ref_mutex);
1da177e4 314 return sdkp;
39b7f1e2 315}
1da177e4 316
39b7f1e2
AS
317static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
318{
319 struct scsi_disk *sdkp;
320
0b950672 321 mutex_lock(&sd_ref_mutex);
39b7f1e2
AS
322 sdkp = dev_get_drvdata(dev);
323 if (sdkp)
324 sdkp = __scsi_disk_get(sdkp->disk);
0b950672 325 mutex_unlock(&sd_ref_mutex);
1da177e4
LT
326 return sdkp;
327}
328
329static void scsi_disk_put(struct scsi_disk *sdkp)
330{
331 struct scsi_device *sdev = sdkp->device;
332
0b950672 333 mutex_lock(&sd_ref_mutex);
6bdaa1f1 334 class_device_put(&sdkp->cdev);
1da177e4 335 scsi_device_put(sdev);
0b950672 336 mutex_unlock(&sd_ref_mutex);
1da177e4
LT
337}
338
339/**
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
344 *
345 * Returns 1 if successful and 0 if error (or cannot be done now).
346 **/
7f9a6bc4 347static int sd_prep_fn(struct request_queue *q, struct request *rq)
1da177e4 348{
7f9a6bc4
JB
349 struct scsi_cmnd *SCpnt;
350 struct scsi_device *sdp = q->queuedata;
776b23a0
CH
351 struct gendisk *disk = rq->rq_disk;
352 sector_t block = rq->sector;
7f9a6bc4 353 unsigned int this_count = rq->nr_sectors;
776b23a0 354 unsigned int timeout = sdp->timeout;
7f9a6bc4
JB
355 int ret;
356
357 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
358 ret = scsi_setup_blk_pc_cmnd(sdp, rq);
359 goto out;
360 } else if (rq->cmd_type != REQ_TYPE_FS) {
361 ret = BLKPREP_KILL;
362 goto out;
363 }
364 ret = scsi_setup_fs_cmnd(sdp, rq);
365 if (ret != BLKPREP_OK)
366 goto out;
367 SCpnt = rq->special;
368
369 /* from here on until we're complete, any goto out
370 * is used for a killable error condition */
371 ret = BLKPREP_KILL;
1da177e4 372
fa0d34be
MP
373 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
374 "sd_init_command: block=%llu, "
375 "count=%d\n",
376 (unsigned long long)block,
377 this_count));
1da177e4
LT
378
379 if (!sdp || !scsi_device_online(sdp) ||
380 block + rq->nr_sectors > get_capacity(disk)) {
fa0d34be
MP
381 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
382 "Finishing %ld sectors\n",
383 rq->nr_sectors));
384 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
385 "Retry with 0x%p\n", SCpnt));
7f9a6bc4 386 goto out;
1da177e4
LT
387 }
388
389 if (sdp->changed) {
390 /*
391 * quietly refuse to do anything to a changed disc until
392 * the changed bit has been reset
393 */
394 /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
7f9a6bc4 395 goto out;
1da177e4 396 }
7f9a6bc4 397
a0899d4d
HG
398 /*
399 * Some devices (some sdcards for one) don't like it if the
400 * last sector gets read in a larger then 1 sector read.
401 */
402 if (unlikely(sdp->last_sector_bug &&
403 rq->nr_sectors > sdp->sector_size / 512 &&
404 block + this_count == get_capacity(disk)))
405 this_count -= sdp->sector_size / 512;
406
fa0d34be
MP
407 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, "block=%llu\n",
408 (unsigned long long)block));
1da177e4
LT
409
410 /*
411 * If we have a 1K hardware sectorsize, prevent access to single
412 * 512 byte sectors. In theory we could handle this - in fact
413 * the scsi cdrom driver must be able to handle this because
414 * we typically use 1K blocksizes, and cdroms typically have
415 * 2K hardware sectorsizes. Of course, things are simpler
416 * with the cdrom, since it is read-only. For performance
417 * reasons, the filesystems should be able to handle this
418 * and not force the scsi disk driver to use bounce buffers
419 * for this.
420 */
421 if (sdp->sector_size == 1024) {
422 if ((block & 1) || (rq->nr_sectors & 1)) {
e73aec82
MP
423 scmd_printk(KERN_ERR, SCpnt,
424 "Bad block number requested\n");
7f9a6bc4 425 goto out;
1da177e4
LT
426 } else {
427 block = block >> 1;
428 this_count = this_count >> 1;
429 }
430 }
431 if (sdp->sector_size == 2048) {
432 if ((block & 3) || (rq->nr_sectors & 3)) {
e73aec82
MP
433 scmd_printk(KERN_ERR, SCpnt,
434 "Bad block number requested\n");
7f9a6bc4 435 goto out;
1da177e4
LT
436 } else {
437 block = block >> 2;
438 this_count = this_count >> 2;
439 }
440 }
441 if (sdp->sector_size == 4096) {
442 if ((block & 7) || (rq->nr_sectors & 7)) {
e73aec82
MP
443 scmd_printk(KERN_ERR, SCpnt,
444 "Bad block number requested\n");
7f9a6bc4 445 goto out;
1da177e4
LT
446 } else {
447 block = block >> 3;
448 this_count = this_count >> 3;
449 }
450 }
451 if (rq_data_dir(rq) == WRITE) {
452 if (!sdp->writeable) {
7f9a6bc4 453 goto out;
1da177e4
LT
454 }
455 SCpnt->cmnd[0] = WRITE_6;
456 SCpnt->sc_data_direction = DMA_TO_DEVICE;
457 } else if (rq_data_dir(rq) == READ) {
458 SCpnt->cmnd[0] = READ_6;
459 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
460 } else {
e73aec82 461 scmd_printk(KERN_ERR, SCpnt, "Unknown command %x\n", rq->cmd_flags);
7f9a6bc4 462 goto out;
1da177e4
LT
463 }
464
fa0d34be
MP
465 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
466 "%s %d/%ld 512 byte blocks.\n",
467 (rq_data_dir(rq) == WRITE) ?
468 "writing" : "reading", this_count,
469 rq->nr_sectors));
1da177e4
LT
470
471 SCpnt->cmnd[1] = 0;
472
473 if (block > 0xffffffff) {
474 SCpnt->cmnd[0] += READ_16 - READ_6;
007365ad 475 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
1da177e4
LT
476 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
477 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
478 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
479 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
480 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
481 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
482 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
483 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
484 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
485 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
486 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
487 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
488 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
489 } else if ((this_count > 0xff) || (block > 0x1fffff) ||
490 SCpnt->device->use_10_for_rw) {
491 if (this_count > 0xffff)
492 this_count = 0xffff;
493
494 SCpnt->cmnd[0] += READ_10 - READ_6;
007365ad 495 SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
1da177e4
LT
496 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
497 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
498 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
499 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
500 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
501 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
502 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
503 } else {
007365ad
TH
504 if (unlikely(blk_fua_rq(rq))) {
505 /*
506 * This happens only if this drive failed
507 * 10byte rw command with ILLEGAL_REQUEST
508 * during operation and thus turned off
509 * use_10_for_rw.
510 */
e73aec82
MP
511 scmd_printk(KERN_ERR, SCpnt,
512 "FUA write on READ/WRITE(6) drive\n");
7f9a6bc4 513 goto out;
007365ad
TH
514 }
515
1da177e4
LT
516 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
517 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
518 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
519 SCpnt->cmnd[4] = (unsigned char) this_count;
520 SCpnt->cmnd[5] = 0;
521 }
30b0c37b 522 SCpnt->sdb.length = this_count * sdp->sector_size;
1da177e4
LT
523
524 /*
525 * We shouldn't disconnect in the middle of a sector, so with a dumb
526 * host adapter, it's safe to assume that we can at least transfer
527 * this many bytes between each connect / disconnect.
528 */
529 SCpnt->transfersize = sdp->sector_size;
530 SCpnt->underflow = this_count << 9;
531 SCpnt->allowed = SD_MAX_RETRIES;
1da177e4
LT
532 SCpnt->timeout_per_command = timeout;
533
1da177e4
LT
534 /*
535 * This indicates that the command is ready from our end to be
536 * queued.
537 */
7f9a6bc4
JB
538 ret = BLKPREP_OK;
539 out:
540 return scsi_prep_return(q, rq, ret);
1da177e4
LT
541}
542
543/**
544 * sd_open - open a scsi disk device
545 * @inode: only i_rdev member may be used
546 * @filp: only f_mode and f_flags may be used
547 *
548 * Returns 0 if successful. Returns a negated errno value in case
549 * of error.
550 *
551 * Note: This can be called from a user context (e.g. fsck(1) )
552 * or from within the kernel (e.g. as a result of a mount(1) ).
553 * In the latter case @inode and @filp carry an abridged amount
554 * of information as noted above.
555 **/
556static int sd_open(struct inode *inode, struct file *filp)
557{
558 struct gendisk *disk = inode->i_bdev->bd_disk;
559 struct scsi_disk *sdkp;
560 struct scsi_device *sdev;
561 int retval;
562
563 if (!(sdkp = scsi_disk_get(disk)))
564 return -ENXIO;
565
566
fa0d34be 567 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_open\n"));
1da177e4
LT
568
569 sdev = sdkp->device;
570
571 /*
572 * If the device is in error recovery, wait until it is done.
573 * If the device is offline, then disallow any access to it.
574 */
575 retval = -ENXIO;
576 if (!scsi_block_when_processing_errors(sdev))
577 goto error_out;
578
579 if (sdev->removable || sdkp->write_prot)
580 check_disk_change(inode->i_bdev);
581
582 /*
583 * If the drive is empty, just let the open fail.
584 */
585 retval = -ENOMEDIUM;
586 if (sdev->removable && !sdkp->media_present &&
587 !(filp->f_flags & O_NDELAY))
588 goto error_out;
589
590 /*
591 * If the device has the write protect tab set, have the open fail
592 * if the user expects to be able to write to the thing.
593 */
594 retval = -EROFS;
595 if (sdkp->write_prot && (filp->f_mode & FMODE_WRITE))
596 goto error_out;
597
598 /*
599 * It is possible that the disk changing stuff resulted in
600 * the device being taken offline. If this is the case,
601 * report this to the user, and don't pretend that the
602 * open actually succeeded.
603 */
604 retval = -ENXIO;
605 if (!scsi_device_online(sdev))
606 goto error_out;
607
608 if (!sdkp->openers++ && sdev->removable) {
609 if (scsi_block_when_processing_errors(sdev))
610 scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
611 }
612
613 return 0;
614
615error_out:
616 scsi_disk_put(sdkp);
617 return retval;
618}
619
620/**
621 * sd_release - invoked when the (last) close(2) is called on this
622 * scsi disk.
623 * @inode: only i_rdev member may be used
624 * @filp: only f_mode and f_flags may be used
625 *
626 * Returns 0.
627 *
628 * Note: may block (uninterruptible) if error recovery is underway
629 * on this disk.
630 **/
631static int sd_release(struct inode *inode, struct file *filp)
632{
633 struct gendisk *disk = inode->i_bdev->bd_disk;
634 struct scsi_disk *sdkp = scsi_disk(disk);
635 struct scsi_device *sdev = sdkp->device;
636
56937f7b 637 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_release\n"));
1da177e4
LT
638
639 if (!--sdkp->openers && sdev->removable) {
640 if (scsi_block_when_processing_errors(sdev))
641 scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
642 }
643
644 /*
645 * XXX and what if there are packets in flight and this close()
646 * XXX is followed by a "rmmod sd_mod"?
647 */
648 scsi_disk_put(sdkp);
649 return 0;
650}
651
a885c8c4 652static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1da177e4
LT
653{
654 struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
655 struct scsi_device *sdp = sdkp->device;
656 struct Scsi_Host *host = sdp->host;
657 int diskinfo[4];
658
659 /* default to most commonly used values */
660 diskinfo[0] = 0x40; /* 1 << 6 */
661 diskinfo[1] = 0x20; /* 1 << 5 */
662 diskinfo[2] = sdkp->capacity >> 11;
663
664 /* override with calculated, extended default, or driver values */
665 if (host->hostt->bios_param)
666 host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
667 else
668 scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
669
a885c8c4
CH
670 geo->heads = diskinfo[0];
671 geo->sectors = diskinfo[1];
672 geo->cylinders = diskinfo[2];
1da177e4
LT
673 return 0;
674}
675
676/**
677 * sd_ioctl - process an ioctl
678 * @inode: only i_rdev/i_bdev members may be used
679 * @filp: only f_mode and f_flags may be used
680 * @cmd: ioctl command number
681 * @arg: this is third argument given to ioctl(2) system call.
682 * Often contains a pointer.
683 *
684 * Returns 0 if successful (some ioctls return postive numbers on
685 * success as well). Returns a negated errno value in case of error.
686 *
687 * Note: most ioctls are forward onto the block subsystem or further
3a4fa0a2 688 * down in the scsi subsystem.
1da177e4
LT
689 **/
690static int sd_ioctl(struct inode * inode, struct file * filp,
691 unsigned int cmd, unsigned long arg)
692{
693 struct block_device *bdev = inode->i_bdev;
694 struct gendisk *disk = bdev->bd_disk;
695 struct scsi_device *sdp = scsi_disk(disk)->device;
696 void __user *p = (void __user *)arg;
697 int error;
698
699 SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
700 disk->disk_name, cmd));
701
702 /*
703 * If we are in the middle of error recovery, don't let anyone
704 * else try and use this device. Also, if error recovery fails, it
705 * may try and take the device offline, in which case all further
706 * access to the device is prohibited.
707 */
708 error = scsi_nonblockable_ioctl(sdp, cmd, p, filp);
709 if (!scsi_block_when_processing_errors(sdp) || !error)
710 return error;
711
1da177e4
LT
712 /*
713 * Send SCSI addressing ioctls directly to mid level, send other
714 * ioctls to block level and then onto mid level if they can't be
715 * resolved.
716 */
717 switch (cmd) {
718 case SCSI_IOCTL_GET_IDLUN:
719 case SCSI_IOCTL_GET_BUS_NUMBER:
720 return scsi_ioctl(sdp, cmd, p);
721 default:
45e79a3a 722 error = scsi_cmd_ioctl(filp, disk->queue, disk, cmd, p);
1da177e4
LT
723 if (error != -ENOTTY)
724 return error;
725 }
726 return scsi_ioctl(sdp, cmd, p);
727}
728
729static void set_media_not_present(struct scsi_disk *sdkp)
730{
731 sdkp->media_present = 0;
732 sdkp->capacity = 0;
733 sdkp->device->changed = 1;
734}
735
736/**
737 * sd_media_changed - check if our medium changed
738 * @disk: kernel device descriptor
739 *
740 * Returns 0 if not applicable or no change; 1 if change
741 *
742 * Note: this function is invoked from the block subsystem.
743 **/
744static int sd_media_changed(struct gendisk *disk)
745{
746 struct scsi_disk *sdkp = scsi_disk(disk);
747 struct scsi_device *sdp = sdkp->device;
001aac25 748 struct scsi_sense_hdr *sshdr = NULL;
1da177e4
LT
749 int retval;
750
fa0d34be 751 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_media_changed\n"));
1da177e4
LT
752
753 if (!sdp->removable)
754 return 0;
755
756 /*
757 * If the device is offline, don't send any commands - just pretend as
758 * if the command failed. If the device ever comes back online, we
759 * can deal with it then. It is only because of unrecoverable errors
760 * that we would ever take a device offline in the first place.
761 */
285e9670
KS
762 if (!scsi_device_online(sdp)) {
763 set_media_not_present(sdkp);
764 retval = 1;
765 goto out;
766 }
1da177e4
LT
767
768 /*
769 * Using TEST_UNIT_READY enables differentiation between drive with
770 * no cartridge loaded - NOT READY, drive with changed cartridge -
771 * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
772 *
773 * Drives that auto spin down. eg iomega jaz 1G, will be started
774 * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
775 * sd_revalidate() is called.
776 */
777 retval = -ENODEV;
285e9670 778
001aac25
JB
779 if (scsi_block_when_processing_errors(sdp)) {
780 sshdr = kzalloc(sizeof(*sshdr), GFP_KERNEL);
781 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES,
782 sshdr);
783 }
1da177e4
LT
784
785 /*
786 * Unable to test, unit probably not ready. This usually
787 * means there is no disc in the drive. Mark as changed,
788 * and we will figure it out later once the drive is
789 * available again.
790 */
001aac25
JB
791 if (retval || (scsi_sense_valid(sshdr) &&
792 /* 0x3a is medium not present */
793 sshdr->asc == 0x3a)) {
285e9670
KS
794 set_media_not_present(sdkp);
795 retval = 1;
796 goto out;
797 }
1da177e4
LT
798
799 /*
800 * For removable scsi disk we have to recognise the presence
801 * of a disk in the drive. This is kept in the struct scsi_disk
802 * struct and tested at open ! Daniel Roche (dan@lectra.fr)
803 */
804 sdkp->media_present = 1;
805
806 retval = sdp->changed;
807 sdp->changed = 0;
285e9670
KS
808out:
809 if (retval != sdkp->previous_state)
810 sdev_evt_send_simple(sdp, SDEV_EVT_MEDIA_CHANGE, GFP_KERNEL);
811 sdkp->previous_state = retval;
001aac25 812 kfree(sshdr);
1da177e4 813 return retval;
1da177e4
LT
814}
815
e73aec82 816static int sd_sync_cache(struct scsi_disk *sdkp)
1da177e4 817{
1da177e4 818 int retries, res;
e73aec82 819 struct scsi_device *sdp = sdkp->device;
ea73a9f2 820 struct scsi_sense_hdr sshdr;
1da177e4
LT
821
822 if (!scsi_device_online(sdp))
823 return -ENODEV;
824
1da177e4 825
1da177e4
LT
826 for (retries = 3; retries > 0; --retries) {
827 unsigned char cmd[10] = { 0 };
828
829 cmd[0] = SYNCHRONIZE_CACHE;
830 /*
831 * Leave the rest of the command zero to indicate
832 * flush everything.
833 */
ea73a9f2
JB
834 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
835 SD_TIMEOUT, SD_MAX_RETRIES);
836 if (res == 0)
1da177e4
LT
837 break;
838 }
839
e73aec82
MP
840 if (res) {
841 sd_print_result(sdkp, res);
842 if (driver_byte(res) & DRIVER_SENSE)
843 sd_print_sense_hdr(sdkp, &sshdr);
1da177e4
LT
844 }
845
3721050a
TH
846 if (res)
847 return -EIO;
848 return 0;
1da177e4
LT
849}
850
165125e1 851static void sd_prepare_flush(struct request_queue *q, struct request *rq)
1da177e4 852{
c0ed79a3 853 memset(rq->cmd, 0, sizeof(rq->cmd));
4aff5e23 854 rq->cmd_type = REQ_TYPE_BLOCK_PC;
c0ed79a3
JB
855 rq->timeout = SD_TIMEOUT;
856 rq->cmd[0] = SYNCHRONIZE_CACHE;
461d4e90 857 rq->cmd_len = 10;
1da177e4
LT
858}
859
860static void sd_rescan(struct device *dev)
861{
39b7f1e2
AS
862 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
863
864 if (sdkp) {
865 sd_revalidate_disk(sdkp->disk);
866 scsi_disk_put(sdkp);
867 }
1da177e4
LT
868}
869
870
871#ifdef CONFIG_COMPAT
872/*
873 * This gets directly called from VFS. When the ioctl
874 * is not recognized we go back to the other translation paths.
875 */
876static long sd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
877{
7ac6207b 878 struct block_device *bdev = file->f_path.dentry->d_inode->i_bdev;
1da177e4
LT
879 struct gendisk *disk = bdev->bd_disk;
880 struct scsi_device *sdev = scsi_disk(disk)->device;
881
882 /*
883 * If we are in the middle of error recovery, don't let anyone
884 * else try and use this device. Also, if error recovery fails, it
885 * may try and take the device offline, in which case all further
886 * access to the device is prohibited.
887 */
888 if (!scsi_block_when_processing_errors(sdev))
889 return -ENODEV;
890
891 if (sdev->host->hostt->compat_ioctl) {
892 int ret;
893
894 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
895
896 return ret;
897 }
898
899 /*
900 * Let the static ioctl translation table take care of it.
901 */
902 return -ENOIOCTLCMD;
903}
904#endif
905
906static struct block_device_operations sd_fops = {
907 .owner = THIS_MODULE,
908 .open = sd_open,
909 .release = sd_release,
910 .ioctl = sd_ioctl,
a885c8c4 911 .getgeo = sd_getgeo,
1da177e4
LT
912#ifdef CONFIG_COMPAT
913 .compat_ioctl = sd_compat_ioctl,
914#endif
915 .media_changed = sd_media_changed,
916 .revalidate_disk = sd_revalidate_disk,
917};
918
919/**
7b3d9545 920 * sd_done - bottom half handler: called when the lower level
1da177e4
LT
921 * driver has completed (successfully or otherwise) a scsi command.
922 * @SCpnt: mid-level's per command structure.
923 *
924 * Note: potentially run from within an ISR. Must not block.
925 **/
7b3d9545 926static int sd_done(struct scsi_cmnd *SCpnt)
1da177e4
LT
927{
928 int result = SCpnt->result;
30b0c37b 929 unsigned int xfer_size = scsi_bufflen(SCpnt);
03aba2f7
LT
930 unsigned int good_bytes = result ? 0 : xfer_size;
931 u64 start_lba = SCpnt->request->sector;
366c246d 932 u64 end_lba = SCpnt->request->sector + (xfer_size / 512);
03aba2f7 933 u64 bad_lba;
1da177e4
LT
934 struct scsi_sense_hdr sshdr;
935 int sense_valid = 0;
936 int sense_deferred = 0;
937 int info_valid;
938
939 if (result) {
940 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
941 if (sense_valid)
942 sense_deferred = scsi_sense_is_deferred(&sshdr);
943 }
1da177e4 944#ifdef CONFIG_SCSI_LOGGING
fa0d34be 945 SCSI_LOG_HLCOMPLETE(1, scsi_print_result(SCpnt));
1da177e4 946 if (sense_valid) {
fa0d34be 947 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, SCpnt,
7b3d9545 948 "sd_done: sb[respc,sk,asc,"
fa0d34be
MP
949 "ascq]=%x,%x,%x,%x\n",
950 sshdr.response_code,
951 sshdr.sense_key, sshdr.asc,
952 sshdr.ascq));
1da177e4
LT
953 }
954#endif
03aba2f7
LT
955 if (driver_byte(result) != DRIVER_SENSE &&
956 (!sense_valid || sense_deferred))
957 goto out;
958
959 switch (sshdr.sense_key) {
960 case HARDWARE_ERROR:
961 case MEDIUM_ERROR:
962 if (!blk_fs_request(SCpnt->request))
963 goto out;
964 info_valid = scsi_get_sense_info_fld(SCpnt->sense_buffer,
965 SCSI_SENSE_BUFFERSIZE,
966 &bad_lba);
967 if (!info_valid)
968 goto out;
969 if (xfer_size <= SCpnt->device->sector_size)
970 goto out;
366c246d
JB
971 if (SCpnt->device->sector_size < 512) {
972 /* only legitimate sector_size here is 256 */
03aba2f7 973 start_lba <<= 1;
366c246d
JB
974 end_lba <<= 1;
975 } else {
976 /* be careful ... don't want any overflows */
977 u64 factor = SCpnt->device->sector_size / 512;
978 do_div(start_lba, factor);
979 do_div(end_lba, factor);
1da177e4 980 }
366c246d
JB
981
982 if (bad_lba < start_lba || bad_lba >= end_lba)
983 /* the bad lba was reported incorrectly, we have
984 * no idea where the error is
985 */
986 goto out;
987
03aba2f7
LT
988 /* This computation should always be done in terms of
989 * the resolution of the device's medium.
990 */
991 good_bytes = (bad_lba - start_lba)*SCpnt->device->sector_size;
992 break;
993 case RECOVERED_ERROR:
994 case NO_SENSE:
995 /* Inform the user, but make sure that it's not treated
996 * as a hard error.
997 */
998 scsi_print_sense("sd", SCpnt);
999 SCpnt->result = 0;
1000 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
1001 good_bytes = xfer_size;
1002 break;
1003 case ILLEGAL_REQUEST:
1004 if (SCpnt->device->use_10_for_rw &&
1005 (SCpnt->cmnd[0] == READ_10 ||
1006 SCpnt->cmnd[0] == WRITE_10))
1007 SCpnt->device->use_10_for_rw = 0;
1008 if (SCpnt->device->use_10_for_ms &&
1009 (SCpnt->cmnd[0] == MODE_SENSE_10 ||
1010 SCpnt->cmnd[0] == MODE_SELECT_10))
1011 SCpnt->device->use_10_for_ms = 0;
1012 break;
1013 default:
1014 break;
1da177e4 1015 }
03aba2f7 1016 out:
7b3d9545 1017 return good_bytes;
1da177e4
LT
1018}
1019
ea73a9f2
JB
1020static int media_not_present(struct scsi_disk *sdkp,
1021 struct scsi_sense_hdr *sshdr)
1da177e4 1022{
1da177e4 1023
ea73a9f2 1024 if (!scsi_sense_valid(sshdr))
1da177e4
LT
1025 return 0;
1026 /* not invoked for commands that could return deferred errors */
ea73a9f2
JB
1027 if (sshdr->sense_key != NOT_READY &&
1028 sshdr->sense_key != UNIT_ATTENTION)
1029 return 0;
1030 if (sshdr->asc != 0x3A) /* medium not present */
1031 return 0;
1032
1da177e4
LT
1033 set_media_not_present(sdkp);
1034 return 1;
1035}
1036
1037/*
1038 * spinup disk - called only in sd_revalidate_disk()
1039 */
1040static void
e73aec82 1041sd_spinup_disk(struct scsi_disk *sdkp)
ea73a9f2 1042{
1da177e4 1043 unsigned char cmd[10];
4451e472 1044 unsigned long spintime_expire = 0;
1da177e4
LT
1045 int retries, spintime;
1046 unsigned int the_result;
1047 struct scsi_sense_hdr sshdr;
1048 int sense_valid = 0;
1049
1050 spintime = 0;
1051
1052 /* Spin up drives, as required. Only do this at boot time */
1053 /* Spinup needs to be done for module loads too. */
1054 do {
1055 retries = 0;
1056
1057 do {
1058 cmd[0] = TEST_UNIT_READY;
1059 memset((void *) &cmd[1], 0, 9);
1060
ea73a9f2
JB
1061 the_result = scsi_execute_req(sdkp->device, cmd,
1062 DMA_NONE, NULL, 0,
1063 &sshdr, SD_TIMEOUT,
1064 SD_MAX_RETRIES);
1da177e4 1065
b4d38e38
AS
1066 /*
1067 * If the drive has indicated to us that it
1068 * doesn't have any media in it, don't bother
1069 * with any more polling.
1070 */
1071 if (media_not_present(sdkp, &sshdr))
1072 return;
1073
1da177e4 1074 if (the_result)
ea73a9f2 1075 sense_valid = scsi_sense_valid(&sshdr);
1da177e4
LT
1076 retries++;
1077 } while (retries < 3 &&
1078 (!scsi_status_is_good(the_result) ||
1079 ((driver_byte(the_result) & DRIVER_SENSE) &&
1080 sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1081
1da177e4
LT
1082 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1083 /* no sense, TUR either succeeded or failed
1084 * with a status error */
e73aec82
MP
1085 if(!spintime && !scsi_status_is_good(the_result)) {
1086 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1087 sd_print_result(sdkp, the_result);
1088 }
1da177e4
LT
1089 break;
1090 }
1091
1092 /*
1093 * The device does not want the automatic start to be issued.
1094 */
1095 if (sdkp->device->no_start_on_add) {
1096 break;
1097 }
1098
1099 /*
1100 * If manual intervention is required, or this is an
1101 * absent USB storage device, a spinup is meaningless.
1102 */
1103 if (sense_valid &&
1104 sshdr.sense_key == NOT_READY &&
1105 sshdr.asc == 4 && sshdr.ascq == 3) {
1106 break; /* manual intervention required */
1107
1108 /*
1109 * Issue command to spin up drive when not ready
1110 */
1111 } else if (sense_valid && sshdr.sense_key == NOT_READY) {
1112 if (!spintime) {
e73aec82 1113 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
1da177e4
LT
1114 cmd[0] = START_STOP;
1115 cmd[1] = 1; /* Return immediately */
1116 memset((void *) &cmd[2], 0, 8);
1117 cmd[4] = 1; /* Start spin cycle */
ea73a9f2
JB
1118 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1119 NULL, 0, &sshdr,
1120 SD_TIMEOUT, SD_MAX_RETRIES);
4451e472
AS
1121 spintime_expire = jiffies + 100 * HZ;
1122 spintime = 1;
1da177e4 1123 }
1da177e4
LT
1124 /* Wait 1 second for next try */
1125 msleep(1000);
1126 printk(".");
4451e472
AS
1127
1128 /*
1129 * Wait for USB flash devices with slow firmware.
1130 * Yes, this sense key/ASC combination shouldn't
1131 * occur here. It's characteristic of these devices.
1132 */
1133 } else if (sense_valid &&
1134 sshdr.sense_key == UNIT_ATTENTION &&
1135 sshdr.asc == 0x28) {
1136 if (!spintime) {
1137 spintime_expire = jiffies + 5 * HZ;
1138 spintime = 1;
1139 }
1140 /* Wait 1 second for next try */
1141 msleep(1000);
1da177e4
LT
1142 } else {
1143 /* we don't understand the sense code, so it's
1144 * probably pointless to loop */
1145 if(!spintime) {
e73aec82
MP
1146 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1147 sd_print_sense_hdr(sdkp, &sshdr);
1da177e4
LT
1148 }
1149 break;
1150 }
1151
4451e472 1152 } while (spintime && time_before_eq(jiffies, spintime_expire));
1da177e4
LT
1153
1154 if (spintime) {
1155 if (scsi_status_is_good(the_result))
1156 printk("ready\n");
1157 else
1158 printk("not responding...\n");
1159 }
1160}
1161
1162/*
1163 * read disk capacity
1164 */
1165static void
e73aec82 1166sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
ea73a9f2 1167{
1da177e4 1168 unsigned char cmd[16];
1da177e4
LT
1169 int the_result, retries;
1170 int sector_size = 0;
1171 int longrc = 0;
1172 struct scsi_sense_hdr sshdr;
1173 int sense_valid = 0;
ea73a9f2 1174 struct scsi_device *sdp = sdkp->device;
1da177e4
LT
1175
1176repeat:
1177 retries = 3;
1178 do {
1179 if (longrc) {
1180 memset((void *) cmd, 0, 16);
1181 cmd[0] = SERVICE_ACTION_IN;
1182 cmd[1] = SAI_READ_CAPACITY_16;
1183 cmd[13] = 12;
1184 memset((void *) buffer, 0, 12);
1185 } else {
1186 cmd[0] = READ_CAPACITY;
1187 memset((void *) &cmd[1], 0, 9);
1188 memset((void *) buffer, 0, 8);
1189 }
1190
ea73a9f2
JB
1191 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
1192 buffer, longrc ? 12 : 8, &sshdr,
1193 SD_TIMEOUT, SD_MAX_RETRIES);
1da177e4 1194
ea73a9f2 1195 if (media_not_present(sdkp, &sshdr))
1da177e4
LT
1196 return;
1197
1da177e4 1198 if (the_result)
ea73a9f2 1199 sense_valid = scsi_sense_valid(&sshdr);
1da177e4
LT
1200 retries--;
1201
1202 } while (the_result && retries);
1203
1204 if (the_result && !longrc) {
e73aec82
MP
1205 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY failed\n");
1206 sd_print_result(sdkp, the_result);
1da177e4 1207 if (driver_byte(the_result) & DRIVER_SENSE)
e73aec82 1208 sd_print_sense_hdr(sdkp, &sshdr);
1da177e4 1209 else
e73aec82 1210 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
1da177e4
LT
1211
1212 /* Set dirty bit for removable devices if not ready -
1213 * sometimes drives will not report this properly. */
1214 if (sdp->removable &&
1215 sense_valid && sshdr.sense_key == NOT_READY)
1216 sdp->changed = 1;
1217
1218 /* Either no media are present but the drive didn't tell us,
1219 or they are present but the read capacity command fails */
1220 /* sdkp->media_present = 0; -- not always correct */
69bdd88c 1221 sdkp->capacity = 0; /* unknown mapped to zero - as usual */
1da177e4
LT
1222
1223 return;
1224 } else if (the_result && longrc) {
1225 /* READ CAPACITY(16) has been failed */
e73aec82
MP
1226 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY(16) failed\n");
1227 sd_print_result(sdkp, the_result);
1228 sd_printk(KERN_NOTICE, sdkp, "Use 0xffffffff as device size\n");
1229
1da177e4
LT
1230 sdkp->capacity = 1 + (sector_t) 0xffffffff;
1231 goto got_data;
1232 }
1233
1234 if (!longrc) {
1235 sector_size = (buffer[4] << 24) |
1236 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
1237 if (buffer[0] == 0xff && buffer[1] == 0xff &&
1238 buffer[2] == 0xff && buffer[3] == 0xff) {
1239 if(sizeof(sdkp->capacity) > 4) {
e73aec82
MP
1240 sd_printk(KERN_NOTICE, sdkp, "Very big device. "
1241 "Trying to use READ CAPACITY(16).\n");
1da177e4
LT
1242 longrc = 1;
1243 goto repeat;
1244 }
e73aec82
MP
1245 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use "
1246 "a kernel compiled with support for large "
1247 "block devices.\n");
1da177e4
LT
1248 sdkp->capacity = 0;
1249 goto got_data;
1250 }
1251 sdkp->capacity = 1 + (((sector_t)buffer[0] << 24) |
1252 (buffer[1] << 16) |
1253 (buffer[2] << 8) |
1254 buffer[3]);
1255 } else {
1256 sdkp->capacity = 1 + (((u64)buffer[0] << 56) |
1257 ((u64)buffer[1] << 48) |
1258 ((u64)buffer[2] << 40) |
1259 ((u64)buffer[3] << 32) |
1260 ((sector_t)buffer[4] << 24) |
1261 ((sector_t)buffer[5] << 16) |
1262 ((sector_t)buffer[6] << 8) |
1263 (sector_t)buffer[7]);
1264
1265 sector_size = (buffer[8] << 24) |
1266 (buffer[9] << 16) | (buffer[10] << 8) | buffer[11];
1267 }
1268
1269 /* Some devices return the total number of sectors, not the
1270 * highest sector number. Make the necessary adjustment. */
61bf54b7 1271 if (sdp->fix_capacity) {
1da177e4
LT
1272 --sdkp->capacity;
1273
61bf54b7
ON
1274 /* Some devices have version which report the correct sizes
1275 * and others which do not. We guess size according to a heuristic
1276 * and err on the side of lowering the capacity. */
1277 } else {
1278 if (sdp->guess_capacity)
1279 if (sdkp->capacity & 0x01) /* odd sizes are odd */
1280 --sdkp->capacity;
1281 }
1282
1da177e4
LT
1283got_data:
1284 if (sector_size == 0) {
1285 sector_size = 512;
e73aec82
MP
1286 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
1287 "assuming 512.\n");
1da177e4
LT
1288 }
1289
1290 if (sector_size != 512 &&
1291 sector_size != 1024 &&
1292 sector_size != 2048 &&
1293 sector_size != 4096 &&
1294 sector_size != 256) {
e73aec82
MP
1295 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
1296 sector_size);
1da177e4
LT
1297 /*
1298 * The user might want to re-format the drive with
1299 * a supported sectorsize. Once this happens, it
1300 * would be relatively trivial to set the thing up.
1301 * For this reason, we leave the thing in the table.
1302 */
1303 sdkp->capacity = 0;
1304 /*
1305 * set a bogus sector size so the normal read/write
1306 * logic in the block layer will eventually refuse any
1307 * request on this device without tripping over power
1308 * of two sector size assumptions
1309 */
1310 sector_size = 512;
1311 }
1312 {
1313 /*
1314 * The msdos fs needs to know the hardware sector size
1315 * So I have created this table. See ll_rw_blk.c
1316 * Jacques Gelinas (Jacques@solucorp.qc.ca)
1317 */
1318 int hard_sector = sector_size;
7a691bd3 1319 sector_t sz = (sdkp->capacity/2) * (hard_sector/256);
165125e1 1320 struct request_queue *queue = sdp->request_queue;
7a691bd3 1321 sector_t mb = sz;
1da177e4
LT
1322
1323 blk_queue_hardsect_size(queue, hard_sector);
1324 /* avoid 64-bit division on 32-bit platforms */
7a691bd3 1325 sector_div(sz, 625);
1da177e4
LT
1326 mb -= sz - 974;
1327 sector_div(mb, 1950);
1328
e73aec82
MP
1329 sd_printk(KERN_NOTICE, sdkp,
1330 "%llu %d-byte hardware sectors (%llu MB)\n",
1331 (unsigned long long)sdkp->capacity,
1332 hard_sector, (unsigned long long)mb);
1da177e4
LT
1333 }
1334
1335 /* Rescale capacity to 512-byte units */
1336 if (sector_size == 4096)
1337 sdkp->capacity <<= 3;
1338 else if (sector_size == 2048)
1339 sdkp->capacity <<= 2;
1340 else if (sector_size == 1024)
1341 sdkp->capacity <<= 1;
1342 else if (sector_size == 256)
1343 sdkp->capacity >>= 1;
1344
1345 sdkp->device->sector_size = sector_size;
1346}
1347
1348/* called with buffer of length 512 */
1349static inline int
ea73a9f2
JB
1350sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
1351 unsigned char *buffer, int len, struct scsi_mode_data *data,
1352 struct scsi_sense_hdr *sshdr)
1da177e4 1353{
ea73a9f2 1354 return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
1cf72699 1355 SD_TIMEOUT, SD_MAX_RETRIES, data,
ea73a9f2 1356 sshdr);
1da177e4
LT
1357}
1358
1359/*
1360 * read write protect setting, if possible - called only in sd_revalidate_disk()
48970800 1361 * called with buffer of length SD_BUF_SIZE
1da177e4
LT
1362 */
1363static void
e73aec82 1364sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
ea73a9f2 1365{
1da177e4 1366 int res;
ea73a9f2 1367 struct scsi_device *sdp = sdkp->device;
1da177e4
LT
1368 struct scsi_mode_data data;
1369
1370 set_disk_ro(sdkp->disk, 0);
ea73a9f2 1371 if (sdp->skip_ms_page_3f) {
e73aec82 1372 sd_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
1da177e4
LT
1373 return;
1374 }
1375
ea73a9f2
JB
1376 if (sdp->use_192_bytes_for_3f) {
1377 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
1da177e4
LT
1378 } else {
1379 /*
1380 * First attempt: ask for all pages (0x3F), but only 4 bytes.
1381 * We have to start carefully: some devices hang if we ask
1382 * for more than is available.
1383 */
ea73a9f2 1384 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
1da177e4
LT
1385
1386 /*
1387 * Second attempt: ask for page 0 When only page 0 is
1388 * implemented, a request for page 3F may return Sense Key
1389 * 5: Illegal Request, Sense Code 24: Invalid field in
1390 * CDB.
1391 */
1392 if (!scsi_status_is_good(res))
ea73a9f2 1393 res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
1da177e4
LT
1394
1395 /*
1396 * Third attempt: ask 255 bytes, as we did earlier.
1397 */
1398 if (!scsi_status_is_good(res))
ea73a9f2
JB
1399 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
1400 &data, NULL);
1da177e4
LT
1401 }
1402
1403 if (!scsi_status_is_good(res)) {
e73aec82
MP
1404 sd_printk(KERN_WARNING, sdkp,
1405 "Test WP failed, assume Write Enabled\n");
1da177e4
LT
1406 } else {
1407 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
1408 set_disk_ro(sdkp->disk, sdkp->write_prot);
e73aec82
MP
1409 sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
1410 sdkp->write_prot ? "on" : "off");
1411 sd_printk(KERN_DEBUG, sdkp,
1412 "Mode Sense: %02x %02x %02x %02x\n",
1413 buffer[0], buffer[1], buffer[2], buffer[3]);
1da177e4
LT
1414 }
1415}
1416
1417/*
1418 * sd_read_cache_type - called only from sd_revalidate_disk()
48970800 1419 * called with buffer of length SD_BUF_SIZE
1da177e4
LT
1420 */
1421static void
e73aec82 1422sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
631e8a13 1423{
1da177e4 1424 int len = 0, res;
ea73a9f2 1425 struct scsi_device *sdp = sdkp->device;
1da177e4 1426
631e8a13
AV
1427 int dbd;
1428 int modepage;
1da177e4
LT
1429 struct scsi_mode_data data;
1430 struct scsi_sense_hdr sshdr;
1431
ea73a9f2 1432 if (sdp->skip_ms_page_8)
1da177e4
LT
1433 goto defaults;
1434
ea73a9f2 1435 if (sdp->type == TYPE_RBC) {
631e8a13
AV
1436 modepage = 6;
1437 dbd = 8;
1438 } else {
1439 modepage = 8;
1440 dbd = 0;
1441 }
1442
1da177e4 1443 /* cautiously ask */
ea73a9f2 1444 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, 4, &data, &sshdr);
1da177e4
LT
1445
1446 if (!scsi_status_is_good(res))
1447 goto bad_sense;
1448
6d73c851
AV
1449 if (!data.header_length) {
1450 modepage = 6;
e73aec82 1451 sd_printk(KERN_ERR, sdkp, "Missing header in MODE_SENSE response\n");
6d73c851
AV
1452 }
1453
1da177e4
LT
1454 /* that went OK, now ask for the proper length */
1455 len = data.length;
1456
1457 /*
1458 * We're only interested in the first three bytes, actually.
1459 * But the data cache page is defined for the first 20.
1460 */
1461 if (len < 3)
1462 goto bad_sense;
1463 if (len > 20)
1464 len = 20;
1465
1466 /* Take headers and block descriptors into account */
1467 len += data.header_length + data.block_descriptor_length;
48970800
AV
1468 if (len > SD_BUF_SIZE)
1469 goto bad_sense;
1da177e4
LT
1470
1471 /* Get the data */
ea73a9f2 1472 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr);
1da177e4
LT
1473
1474 if (scsi_status_is_good(res)) {
631e8a13 1475 int offset = data.header_length + data.block_descriptor_length;
1da177e4 1476
48970800 1477 if (offset >= SD_BUF_SIZE - 2) {
e73aec82 1478 sd_printk(KERN_ERR, sdkp, "Malformed MODE SENSE response\n");
48970800
AV
1479 goto defaults;
1480 }
1481
631e8a13 1482 if ((buffer[offset] & 0x3f) != modepage) {
e73aec82 1483 sd_printk(KERN_ERR, sdkp, "Got wrong page\n");
631e8a13
AV
1484 goto defaults;
1485 }
1486
1487 if (modepage == 8) {
1488 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
1489 sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
1490 } else {
1491 sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
1492 sdkp->RCD = 0;
1493 }
1da177e4 1494
007365ad
TH
1495 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
1496 if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
e73aec82
MP
1497 sd_printk(KERN_NOTICE, sdkp,
1498 "Uses READ/WRITE(6), disabling FUA\n");
007365ad
TH
1499 sdkp->DPOFUA = 0;
1500 }
1501
e73aec82
MP
1502 sd_printk(KERN_NOTICE, sdkp,
1503 "Write cache: %s, read cache: %s, %s\n",
fd44bab5
LT
1504 sdkp->WCE ? "enabled" : "disabled",
1505 sdkp->RCD ? "disabled" : "enabled",
1506 sdkp->DPOFUA ? "supports DPO and FUA"
1507 : "doesn't support DPO or FUA");
1da177e4
LT
1508
1509 return;
1510 }
1511
1512bad_sense:
ea73a9f2 1513 if (scsi_sense_valid(&sshdr) &&
1da177e4
LT
1514 sshdr.sense_key == ILLEGAL_REQUEST &&
1515 sshdr.asc == 0x24 && sshdr.ascq == 0x0)
e73aec82
MP
1516 /* Invalid field in CDB */
1517 sd_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
1da177e4 1518 else
e73aec82 1519 sd_printk(KERN_ERR, sdkp, "Asking for cache data failed\n");
1da177e4
LT
1520
1521defaults:
e73aec82 1522 sd_printk(KERN_ERR, sdkp, "Assuming drive cache: write through\n");
1da177e4
LT
1523 sdkp->WCE = 0;
1524 sdkp->RCD = 0;
48970800 1525 sdkp->DPOFUA = 0;
1da177e4
LT
1526}
1527
1528/**
1529 * sd_revalidate_disk - called the first time a new disk is seen,
1530 * performs disk spin up, read_capacity, etc.
1531 * @disk: struct gendisk we care about
1532 **/
1533static int sd_revalidate_disk(struct gendisk *disk)
1534{
1535 struct scsi_disk *sdkp = scsi_disk(disk);
1536 struct scsi_device *sdp = sdkp->device;
1da177e4 1537 unsigned char *buffer;
461d4e90 1538 unsigned ordered;
1da177e4 1539
fa0d34be
MP
1540 SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp,
1541 "sd_revalidate_disk\n"));
1da177e4
LT
1542
1543 /*
1544 * If the device is offline, don't try and read capacity or any
1545 * of the other niceties.
1546 */
1547 if (!scsi_device_online(sdp))
1548 goto out;
1549
a6123f14 1550 buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
1da177e4 1551 if (!buffer) {
e73aec82
MP
1552 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
1553 "allocation failure.\n");
ea73a9f2 1554 goto out;
1da177e4
LT
1555 }
1556
1557 /* defaults, until the device tells us otherwise */
1558 sdp->sector_size = 512;
1559 sdkp->capacity = 0;
1560 sdkp->media_present = 1;
1561 sdkp->write_prot = 0;
1562 sdkp->WCE = 0;
1563 sdkp->RCD = 0;
1564
e73aec82 1565 sd_spinup_disk(sdkp);
1da177e4
LT
1566
1567 /*
1568 * Without media there is no reason to ask; moreover, some devices
1569 * react badly if we do.
1570 */
1571 if (sdkp->media_present) {
e73aec82
MP
1572 sd_read_capacity(sdkp, buffer);
1573 sd_read_write_protect_flag(sdkp, buffer);
1574 sd_read_cache_type(sdkp, buffer);
1da177e4 1575 }
461d4e90
TH
1576
1577 /*
1578 * We now have all cache related info, determine how we deal
1579 * with ordered requests. Note that as the current SCSI
1580 * dispatch function can alter request order, we cannot use
1581 * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
1582 */
1583 if (sdkp->WCE)
007365ad
TH
1584 ordered = sdkp->DPOFUA
1585 ? QUEUE_ORDERED_DRAIN_FUA : QUEUE_ORDERED_DRAIN_FLUSH;
461d4e90
TH
1586 else
1587 ordered = QUEUE_ORDERED_DRAIN;
1588
1589 blk_queue_ordered(sdkp->disk->queue, ordered, sd_prepare_flush);
1590
1da177e4
LT
1591 set_capacity(disk, sdkp->capacity);
1592 kfree(buffer);
1593
1da177e4
LT
1594 out:
1595 return 0;
1596}
1597
1598/**
1599 * sd_probe - called during driver initialization and whenever a
1600 * new scsi device is attached to the system. It is called once
1601 * for each scsi device (not just disks) present.
1602 * @dev: pointer to device object
1603 *
1604 * Returns 0 if successful (or not interested in this scsi device
1605 * (e.g. scanner)); 1 when there is an error.
1606 *
1607 * Note: this function is invoked from the scsi mid-level.
1608 * This function sets up the mapping between a given
1609 * <host,channel,id,lun> (found in sdp) and new device name
1610 * (e.g. /dev/sda). More precisely it is the block device major
1611 * and minor number that is chosen here.
1612 *
1613 * Assume sd_attach is not re-entrant (for time being)
1614 * Also think about sd_attach() and sd_remove() running coincidentally.
1615 **/
1616static int sd_probe(struct device *dev)
1617{
1618 struct scsi_device *sdp = to_scsi_device(dev);
1619 struct scsi_disk *sdkp;
1620 struct gendisk *gd;
1621 u32 index;
1622 int error;
1623
1624 error = -ENODEV;
631e8a13 1625 if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
1da177e4
LT
1626 goto out;
1627
9ccfc756
JB
1628 SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
1629 "sd_attach\n"));
1da177e4
LT
1630
1631 error = -ENOMEM;
24669f75 1632 sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
1da177e4
LT
1633 if (!sdkp)
1634 goto out;
1635
1da177e4
LT
1636 gd = alloc_disk(16);
1637 if (!gd)
1638 goto out_free;
1639
1640 if (!idr_pre_get(&sd_index_idr, GFP_KERNEL))
1641 goto out_put;
1642
1643 spin_lock(&sd_index_lock);
1644 error = idr_get_new(&sd_index_idr, NULL, &index);
1645 spin_unlock(&sd_index_lock);
1646
1647 if (index >= SD_MAX_DISKS)
1648 error = -EBUSY;
1649 if (error)
1650 goto out_put;
1651
1652 sdkp->device = sdp;
1653 sdkp->driver = &sd_template;
1654 sdkp->disk = gd;
1655 sdkp->index = index;
1656 sdkp->openers = 0;
1657
1658 if (!sdp->timeout) {
631e8a13 1659 if (sdp->type != TYPE_MOD)
1da177e4
LT
1660 sdp->timeout = SD_TIMEOUT;
1661 else
1662 sdp->timeout = SD_MOD_TIMEOUT;
1663 }
1664
017f2e37
NST
1665 class_device_initialize(&sdkp->cdev);
1666 sdkp->cdev.dev = &sdp->sdev_gendev;
1667 sdkp->cdev.class = &sd_disk_class;
1668 strncpy(sdkp->cdev.class_id, sdp->sdev_gendev.bus_id, BUS_ID_SIZE);
1669
1670 if (class_device_add(&sdkp->cdev))
1671 goto out_put;
1672
1673 get_device(&sdp->sdev_gendev);
1674
1da177e4
LT
1675 gd->major = sd_major((index & 0xf0) >> 4);
1676 gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
1677 gd->minors = 16;
1678 gd->fops = &sd_fops;
1679
1680 if (index < 26) {
1681 sprintf(gd->disk_name, "sd%c", 'a' + index % 26);
1682 } else if (index < (26 + 1) * 26) {
1683 sprintf(gd->disk_name, "sd%c%c",
1684 'a' + index / 26 - 1,'a' + index % 26);
1685 } else {
1686 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
1687 const unsigned int m2 = (index / 26 - 1) % 26;
1688 const unsigned int m3 = index % 26;
1689 sprintf(gd->disk_name, "sd%c%c%c",
1690 'a' + m1, 'a' + m2, 'a' + m3);
1691 }
1692
1da177e4 1693 gd->private_data = &sdkp->driver;
461d4e90 1694 gd->queue = sdkp->device->request_queue;
1da177e4
LT
1695
1696 sd_revalidate_disk(gd);
1697
7f9a6bc4 1698 blk_queue_prep_rq(sdp->request_queue, sd_prep_fn);
03a5743a 1699
1da177e4
LT
1700 gd->driverfs_dev = &sdp->sdev_gendev;
1701 gd->flags = GENHD_FL_DRIVERFS;
1702 if (sdp->removable)
1703 gd->flags |= GENHD_FL_REMOVABLE;
1da177e4
LT
1704
1705 dev_set_drvdata(dev, sdkp);
1706 add_disk(gd);
1707
e73aec82
MP
1708 sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
1709 sdp->removable ? "removable " : "");
1da177e4
LT
1710
1711 return 0;
1712
6bdaa1f1 1713 out_put:
1da177e4 1714 put_disk(gd);
6bdaa1f1 1715 out_free:
1da177e4 1716 kfree(sdkp);
6bdaa1f1 1717 out:
1da177e4
LT
1718 return error;
1719}
1720
1721/**
1722 * sd_remove - called whenever a scsi disk (previously recognized by
1723 * sd_probe) is detached from the system. It is called (potentially
1724 * multiple times) during sd module unload.
1725 * @sdp: pointer to mid level scsi device object
1726 *
1727 * Note: this function is invoked from the scsi mid-level.
1728 * This function potentially frees up a device name (e.g. /dev/sdc)
1729 * that could be re-used by a subsequent sd_probe().
1730 * This function is not called when the built-in sd driver is "exit-ed".
1731 **/
1732static int sd_remove(struct device *dev)
1733{
1734 struct scsi_disk *sdkp = dev_get_drvdata(dev);
1735
6bdaa1f1 1736 class_device_del(&sdkp->cdev);
1da177e4
LT
1737 del_gendisk(sdkp->disk);
1738 sd_shutdown(dev);
39b7f1e2 1739
0b950672 1740 mutex_lock(&sd_ref_mutex);
39b7f1e2 1741 dev_set_drvdata(dev, NULL);
6bdaa1f1 1742 class_device_put(&sdkp->cdev);
0b950672 1743 mutex_unlock(&sd_ref_mutex);
1da177e4
LT
1744
1745 return 0;
1746}
1747
1748/**
1749 * scsi_disk_release - Called to free the scsi_disk structure
6bdaa1f1 1750 * @cdev: pointer to embedded class device
1da177e4 1751 *
0b950672 1752 * sd_ref_mutex must be held entering this routine. Because it is
1da177e4
LT
1753 * called on last put, you should always use the scsi_disk_get()
1754 * scsi_disk_put() helpers which manipulate the semaphore directly
6bdaa1f1 1755 * and never do a direct class_device_put().
1da177e4 1756 **/
6bdaa1f1 1757static void scsi_disk_release(struct class_device *cdev)
1da177e4 1758{
6bdaa1f1 1759 struct scsi_disk *sdkp = to_scsi_disk(cdev);
1da177e4
LT
1760 struct gendisk *disk = sdkp->disk;
1761
1762 spin_lock(&sd_index_lock);
1763 idr_remove(&sd_index_idr, sdkp->index);
1764 spin_unlock(&sd_index_lock);
1765
1766 disk->private_data = NULL;
1da177e4 1767 put_disk(disk);
39b7f1e2 1768 put_device(&sdkp->device->sdev_gendev);
1da177e4
LT
1769
1770 kfree(sdkp);
1771}
1772
cc5d2c8c 1773static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
c3c94c5a
TH
1774{
1775 unsigned char cmd[6] = { START_STOP }; /* START_VALID */
1776 struct scsi_sense_hdr sshdr;
cc5d2c8c 1777 struct scsi_device *sdp = sdkp->device;
c3c94c5a
TH
1778 int res;
1779
1780 if (start)
1781 cmd[4] |= 1; /* START */
1782
1783 if (!scsi_device_online(sdp))
1784 return -ENODEV;
1785
1786 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
1787 SD_TIMEOUT, SD_MAX_RETRIES);
1788 if (res) {
cc5d2c8c
JB
1789 sd_printk(KERN_WARNING, sdkp, "START_STOP FAILED\n");
1790 sd_print_result(sdkp, res);
c3c94c5a 1791 if (driver_byte(res) & DRIVER_SENSE)
cc5d2c8c 1792 sd_print_sense_hdr(sdkp, &sshdr);
c3c94c5a
TH
1793 }
1794
1795 return res;
1796}
1797
1da177e4
LT
1798/*
1799 * Send a SYNCHRONIZE CACHE instruction down to the device through
1800 * the normal SCSI command structure. Wait for the command to
1801 * complete.
1802 */
1803static void sd_shutdown(struct device *dev)
1804{
39b7f1e2 1805 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
1da177e4
LT
1806
1807 if (!sdkp)
1808 return; /* this can happen */
1809
39b7f1e2 1810 if (sdkp->WCE) {
e73aec82
MP
1811 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
1812 sd_sync_cache(sdkp);
39b7f1e2 1813 }
c3c94c5a 1814
cc5d2c8c
JB
1815 if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) {
1816 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
1817 sd_start_stop_device(sdkp, 0);
c3c94c5a
TH
1818 }
1819
39b7f1e2
AS
1820 scsi_disk_put(sdkp);
1821}
1da177e4 1822
c3c94c5a
TH
1823static int sd_suspend(struct device *dev, pm_message_t mesg)
1824{
c3c94c5a 1825 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
09ff92fe 1826 int ret = 0;
c3c94c5a
TH
1827
1828 if (!sdkp)
1829 return 0; /* this can happen */
1830
1831 if (sdkp->WCE) {
cc5d2c8c 1832 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
c3c94c5a
TH
1833 ret = sd_sync_cache(sdkp);
1834 if (ret)
09ff92fe 1835 goto done;
c3c94c5a
TH
1836 }
1837
3a2d5b70 1838 if ((mesg.event & PM_EVENT_SLEEP) && sdkp->device->manage_start_stop) {
cc5d2c8c
JB
1839 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
1840 ret = sd_start_stop_device(sdkp, 0);
c3c94c5a
TH
1841 }
1842
09ff92fe
AS
1843done:
1844 scsi_disk_put(sdkp);
1845 return ret;
c3c94c5a
TH
1846}
1847
1848static int sd_resume(struct device *dev)
1849{
c3c94c5a 1850 struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
09ff92fe 1851 int ret = 0;
c3c94c5a 1852
cc5d2c8c 1853 if (!sdkp->device->manage_start_stop)
09ff92fe 1854 goto done;
c3c94c5a 1855
cc5d2c8c 1856 sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
09ff92fe 1857 ret = sd_start_stop_device(sdkp, 1);
c3c94c5a 1858
09ff92fe
AS
1859done:
1860 scsi_disk_put(sdkp);
1861 return ret;
c3c94c5a
TH
1862}
1863
1da177e4
LT
1864/**
1865 * init_sd - entry point for this driver (both when built in or when
1866 * a module).
1867 *
1868 * Note: this function registers this driver with the scsi mid-level.
1869 **/
1870static int __init init_sd(void)
1871{
5e4009ba 1872 int majors = 0, i, err;
1da177e4
LT
1873
1874 SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
1875
1876 for (i = 0; i < SD_MAJORS; i++)
1877 if (register_blkdev(sd_major(i), "sd") == 0)
1878 majors++;
1879
1880 if (!majors)
1881 return -ENODEV;
1882
5e4009ba
JG
1883 err = class_register(&sd_disk_class);
1884 if (err)
1885 goto err_out;
6bdaa1f1 1886
5e4009ba
JG
1887 err = scsi_register_driver(&sd_template.gendrv);
1888 if (err)
1889 goto err_out_class;
1890
1891 return 0;
1892
1893err_out_class:
1894 class_unregister(&sd_disk_class);
1895err_out:
1896 for (i = 0; i < SD_MAJORS; i++)
1897 unregister_blkdev(sd_major(i), "sd");
1898 return err;
1da177e4
LT
1899}
1900
1901/**
1902 * exit_sd - exit point for this driver (when it is a module).
1903 *
1904 * Note: this function unregisters this driver from the scsi mid-level.
1905 **/
1906static void __exit exit_sd(void)
1907{
1908 int i;
1909
1910 SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
1911
1912 scsi_unregister_driver(&sd_template.gendrv);
5e4009ba
JG
1913 class_unregister(&sd_disk_class);
1914
1da177e4
LT
1915 for (i = 0; i < SD_MAJORS; i++)
1916 unregister_blkdev(sd_major(i), "sd");
1917}
1918
1da177e4
LT
1919module_init(init_sd);
1920module_exit(exit_sd);
e73aec82
MP
1921
1922static void sd_print_sense_hdr(struct scsi_disk *sdkp,
1923 struct scsi_sense_hdr *sshdr)
1924{
1925 sd_printk(KERN_INFO, sdkp, "");
1926 scsi_show_sense_hdr(sshdr);
1927 sd_printk(KERN_INFO, sdkp, "");
1928 scsi_show_extd_sense(sshdr->asc, sshdr->ascq);
1929}
1930
1931static void sd_print_result(struct scsi_disk *sdkp, int result)
1932{
1933 sd_printk(KERN_INFO, sdkp, "");
1934 scsi_show_result(result);
1935}
1936