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