]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/scsi/sd.c
Merge tag 'drm-intel-fixes-2013-07-22' of git://people.freedesktop.org/~danvet/drm...
[karo-tx-linux.git] / drivers / scsi / sd.c
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
35 #include <linux/module.h>
36 #include <linux/fs.h>
37 #include <linux/kernel.h>
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>
48 #include <linux/delay.h>
49 #include <linux/mutex.h>
50 #include <linux/string_helpers.h>
51 #include <linux/async.h>
52 #include <linux/slab.h>
53 #include <linux/pm_runtime.h>
54 #include <asm/uaccess.h>
55 #include <asm/unaligned.h>
56
57 #include <scsi/scsi.h>
58 #include <scsi/scsi_cmnd.h>
59 #include <scsi/scsi_dbg.h>
60 #include <scsi/scsi_device.h>
61 #include <scsi/scsi_driver.h>
62 #include <scsi/scsi_eh.h>
63 #include <scsi/scsi_host.h>
64 #include <scsi/scsi_ioctl.h>
65 #include <scsi/scsicam.h>
66
67 #include "sd.h"
68 #include "scsi_priv.h"
69 #include "scsi_logging.h"
70
71 MODULE_AUTHOR("Eric Youngdale");
72 MODULE_DESCRIPTION("SCSI disk (sd) driver");
73 MODULE_LICENSE("GPL");
74
75 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR);
76 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR);
77 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR);
78 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR);
79 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR);
80 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR);
81 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR);
82 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR);
83 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR);
84 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR);
85 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR);
86 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR);
87 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR);
88 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR);
89 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR);
90 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR);
91 MODULE_ALIAS_SCSI_DEVICE(TYPE_DISK);
92 MODULE_ALIAS_SCSI_DEVICE(TYPE_MOD);
93 MODULE_ALIAS_SCSI_DEVICE(TYPE_RBC);
94
95 #if !defined(CONFIG_DEBUG_BLOCK_EXT_DEVT)
96 #define SD_MINORS       16
97 #else
98 #define SD_MINORS       0
99 #endif
100
101 static void sd_config_discard(struct scsi_disk *, unsigned int);
102 static void sd_config_write_same(struct scsi_disk *);
103 static int  sd_revalidate_disk(struct gendisk *);
104 static void sd_unlock_native_capacity(struct gendisk *disk);
105 static int  sd_probe(struct device *);
106 static int  sd_remove(struct device *);
107 static void sd_shutdown(struct device *);
108 static int sd_suspend(struct device *);
109 static int sd_resume(struct device *);
110 static void sd_rescan(struct device *);
111 static int sd_done(struct scsi_cmnd *);
112 static int sd_eh_action(struct scsi_cmnd *, unsigned char *, int, int);
113 static void sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer);
114 static void scsi_disk_release(struct device *cdev);
115 static void sd_print_sense_hdr(struct scsi_disk *, struct scsi_sense_hdr *);
116 static void sd_print_result(struct scsi_disk *, int);
117
118 static DEFINE_SPINLOCK(sd_index_lock);
119 static DEFINE_IDA(sd_index_ida);
120
121 /* This semaphore is used to mediate the 0->1 reference get in the
122  * face of object destruction (i.e. we can't allow a get on an
123  * object after last put) */
124 static DEFINE_MUTEX(sd_ref_mutex);
125
126 static struct kmem_cache *sd_cdb_cache;
127 static mempool_t *sd_cdb_pool;
128
129 static const char *sd_cache_types[] = {
130         "write through", "none", "write back",
131         "write back, no read (daft)"
132 };
133
134 static ssize_t
135 sd_store_cache_type(struct device *dev, struct device_attribute *attr,
136                     const char *buf, size_t count)
137 {
138         int i, ct = -1, rcd, wce, sp;
139         struct scsi_disk *sdkp = to_scsi_disk(dev);
140         struct scsi_device *sdp = sdkp->device;
141         char buffer[64];
142         char *buffer_data;
143         struct scsi_mode_data data;
144         struct scsi_sense_hdr sshdr;
145         static const char temp[] = "temporary ";
146         int len;
147
148         if (sdp->type != TYPE_DISK)
149                 /* no cache control on RBC devices; theoretically they
150                  * can do it, but there's probably so many exceptions
151                  * it's not worth the risk */
152                 return -EINVAL;
153
154         if (strncmp(buf, temp, sizeof(temp) - 1) == 0) {
155                 buf += sizeof(temp) - 1;
156                 sdkp->cache_override = 1;
157         } else {
158                 sdkp->cache_override = 0;
159         }
160
161         for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
162                 len = strlen(sd_cache_types[i]);
163                 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
164                     buf[len] == '\n') {
165                         ct = i;
166                         break;
167                 }
168         }
169         if (ct < 0)
170                 return -EINVAL;
171         rcd = ct & 0x01 ? 1 : 0;
172         wce = ct & 0x02 ? 1 : 0;
173
174         if (sdkp->cache_override) {
175                 sdkp->WCE = wce;
176                 sdkp->RCD = rcd;
177                 return count;
178         }
179
180         if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
181                             SD_MAX_RETRIES, &data, NULL))
182                 return -EINVAL;
183         len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
184                   data.block_descriptor_length);
185         buffer_data = buffer + data.header_length +
186                 data.block_descriptor_length;
187         buffer_data[2] &= ~0x05;
188         buffer_data[2] |= wce << 2 | rcd;
189         sp = buffer_data[0] & 0x80 ? 1 : 0;
190
191         if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
192                              SD_MAX_RETRIES, &data, &sshdr)) {
193                 if (scsi_sense_valid(&sshdr))
194                         sd_print_sense_hdr(sdkp, &sshdr);
195                 return -EINVAL;
196         }
197         revalidate_disk(sdkp->disk);
198         return count;
199 }
200
201 static ssize_t
202 sd_store_manage_start_stop(struct device *dev, struct device_attribute *attr,
203                            const char *buf, size_t count)
204 {
205         struct scsi_disk *sdkp = to_scsi_disk(dev);
206         struct scsi_device *sdp = sdkp->device;
207
208         if (!capable(CAP_SYS_ADMIN))
209                 return -EACCES;
210
211         sdp->manage_start_stop = simple_strtoul(buf, NULL, 10);
212
213         return count;
214 }
215
216 static ssize_t
217 sd_store_allow_restart(struct device *dev, struct device_attribute *attr,
218                        const char *buf, size_t count)
219 {
220         struct scsi_disk *sdkp = to_scsi_disk(dev);
221         struct scsi_device *sdp = sdkp->device;
222
223         if (!capable(CAP_SYS_ADMIN))
224                 return -EACCES;
225
226         if (sdp->type != TYPE_DISK)
227                 return -EINVAL;
228
229         sdp->allow_restart = simple_strtoul(buf, NULL, 10);
230
231         return count;
232 }
233
234 static ssize_t
235 sd_show_cache_type(struct device *dev, struct device_attribute *attr,
236                    char *buf)
237 {
238         struct scsi_disk *sdkp = to_scsi_disk(dev);
239         int ct = sdkp->RCD + 2*sdkp->WCE;
240
241         return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
242 }
243
244 static ssize_t
245 sd_show_fua(struct device *dev, struct device_attribute *attr, char *buf)
246 {
247         struct scsi_disk *sdkp = to_scsi_disk(dev);
248
249         return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
250 }
251
252 static ssize_t
253 sd_show_manage_start_stop(struct device *dev, struct device_attribute *attr,
254                           char *buf)
255 {
256         struct scsi_disk *sdkp = to_scsi_disk(dev);
257         struct scsi_device *sdp = sdkp->device;
258
259         return snprintf(buf, 20, "%u\n", sdp->manage_start_stop);
260 }
261
262 static ssize_t
263 sd_show_allow_restart(struct device *dev, struct device_attribute *attr,
264                       char *buf)
265 {
266         struct scsi_disk *sdkp = to_scsi_disk(dev);
267
268         return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
269 }
270
271 static ssize_t
272 sd_show_protection_type(struct device *dev, struct device_attribute *attr,
273                         char *buf)
274 {
275         struct scsi_disk *sdkp = to_scsi_disk(dev);
276
277         return snprintf(buf, 20, "%u\n", sdkp->protection_type);
278 }
279
280 static ssize_t
281 sd_store_protection_type(struct device *dev, struct device_attribute *attr,
282                          const char *buf, size_t count)
283 {
284         struct scsi_disk *sdkp = to_scsi_disk(dev);
285         unsigned int val;
286         int err;
287
288         if (!capable(CAP_SYS_ADMIN))
289                 return -EACCES;
290
291         err = kstrtouint(buf, 10, &val);
292
293         if (err)
294                 return err;
295
296         if (val >= 0 && val <= SD_DIF_TYPE3_PROTECTION)
297                 sdkp->protection_type = val;
298
299         return count;
300 }
301
302 static ssize_t
303 sd_show_protection_mode(struct device *dev, struct device_attribute *attr,
304                         char *buf)
305 {
306         struct scsi_disk *sdkp = to_scsi_disk(dev);
307         struct scsi_device *sdp = sdkp->device;
308         unsigned int dif, dix;
309
310         dif = scsi_host_dif_capable(sdp->host, sdkp->protection_type);
311         dix = scsi_host_dix_capable(sdp->host, sdkp->protection_type);
312
313         if (!dix && scsi_host_dix_capable(sdp->host, SD_DIF_TYPE0_PROTECTION)) {
314                 dif = 0;
315                 dix = 1;
316         }
317
318         if (!dif && !dix)
319                 return snprintf(buf, 20, "none\n");
320
321         return snprintf(buf, 20, "%s%u\n", dix ? "dix" : "dif", dif);
322 }
323
324 static ssize_t
325 sd_show_app_tag_own(struct device *dev, struct device_attribute *attr,
326                     char *buf)
327 {
328         struct scsi_disk *sdkp = to_scsi_disk(dev);
329
330         return snprintf(buf, 20, "%u\n", sdkp->ATO);
331 }
332
333 static ssize_t
334 sd_show_thin_provisioning(struct device *dev, struct device_attribute *attr,
335                           char *buf)
336 {
337         struct scsi_disk *sdkp = to_scsi_disk(dev);
338
339         return snprintf(buf, 20, "%u\n", sdkp->lbpme);
340 }
341
342 static const char *lbp_mode[] = {
343         [SD_LBP_FULL]           = "full",
344         [SD_LBP_UNMAP]          = "unmap",
345         [SD_LBP_WS16]           = "writesame_16",
346         [SD_LBP_WS10]           = "writesame_10",
347         [SD_LBP_ZERO]           = "writesame_zero",
348         [SD_LBP_DISABLE]        = "disabled",
349 };
350
351 static ssize_t
352 sd_show_provisioning_mode(struct device *dev, struct device_attribute *attr,
353                           char *buf)
354 {
355         struct scsi_disk *sdkp = to_scsi_disk(dev);
356
357         return snprintf(buf, 20, "%s\n", lbp_mode[sdkp->provisioning_mode]);
358 }
359
360 static ssize_t
361 sd_store_provisioning_mode(struct device *dev, struct device_attribute *attr,
362                            const char *buf, size_t count)
363 {
364         struct scsi_disk *sdkp = to_scsi_disk(dev);
365         struct scsi_device *sdp = sdkp->device;
366
367         if (!capable(CAP_SYS_ADMIN))
368                 return -EACCES;
369
370         if (sdp->type != TYPE_DISK)
371                 return -EINVAL;
372
373         if (!strncmp(buf, lbp_mode[SD_LBP_UNMAP], 20))
374                 sd_config_discard(sdkp, SD_LBP_UNMAP);
375         else if (!strncmp(buf, lbp_mode[SD_LBP_WS16], 20))
376                 sd_config_discard(sdkp, SD_LBP_WS16);
377         else if (!strncmp(buf, lbp_mode[SD_LBP_WS10], 20))
378                 sd_config_discard(sdkp, SD_LBP_WS10);
379         else if (!strncmp(buf, lbp_mode[SD_LBP_ZERO], 20))
380                 sd_config_discard(sdkp, SD_LBP_ZERO);
381         else if (!strncmp(buf, lbp_mode[SD_LBP_DISABLE], 20))
382                 sd_config_discard(sdkp, SD_LBP_DISABLE);
383         else
384                 return -EINVAL;
385
386         return count;
387 }
388
389 static ssize_t
390 sd_show_max_medium_access_timeouts(struct device *dev,
391                                    struct device_attribute *attr, char *buf)
392 {
393         struct scsi_disk *sdkp = to_scsi_disk(dev);
394
395         return snprintf(buf, 20, "%u\n", sdkp->max_medium_access_timeouts);
396 }
397
398 static ssize_t
399 sd_store_max_medium_access_timeouts(struct device *dev,
400                                     struct device_attribute *attr,
401                                     const char *buf, size_t count)
402 {
403         struct scsi_disk *sdkp = to_scsi_disk(dev);
404         int err;
405
406         if (!capable(CAP_SYS_ADMIN))
407                 return -EACCES;
408
409         err = kstrtouint(buf, 10, &sdkp->max_medium_access_timeouts);
410
411         return err ? err : count;
412 }
413
414 static ssize_t
415 sd_show_write_same_blocks(struct device *dev, struct device_attribute *attr,
416                           char *buf)
417 {
418         struct scsi_disk *sdkp = to_scsi_disk(dev);
419
420         return snprintf(buf, 20, "%u\n", sdkp->max_ws_blocks);
421 }
422
423 static ssize_t
424 sd_store_write_same_blocks(struct device *dev, struct device_attribute *attr,
425                            const char *buf, size_t count)
426 {
427         struct scsi_disk *sdkp = to_scsi_disk(dev);
428         struct scsi_device *sdp = sdkp->device;
429         unsigned long max;
430         int err;
431
432         if (!capable(CAP_SYS_ADMIN))
433                 return -EACCES;
434
435         if (sdp->type != TYPE_DISK)
436                 return -EINVAL;
437
438         err = kstrtoul(buf, 10, &max);
439
440         if (err)
441                 return err;
442
443         if (max == 0)
444                 sdp->no_write_same = 1;
445         else if (max <= SD_MAX_WS16_BLOCKS) {
446                 sdp->no_write_same = 0;
447                 sdkp->max_ws_blocks = max;
448         }
449
450         sd_config_write_same(sdkp);
451
452         return count;
453 }
454
455 static struct device_attribute sd_disk_attrs[] = {
456         __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
457                sd_store_cache_type),
458         __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
459         __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
460                sd_store_allow_restart),
461         __ATTR(manage_start_stop, S_IRUGO|S_IWUSR, sd_show_manage_start_stop,
462                sd_store_manage_start_stop),
463         __ATTR(protection_type, S_IRUGO|S_IWUSR, sd_show_protection_type,
464                sd_store_protection_type),
465         __ATTR(protection_mode, S_IRUGO, sd_show_protection_mode, NULL),
466         __ATTR(app_tag_own, S_IRUGO, sd_show_app_tag_own, NULL),
467         __ATTR(thin_provisioning, S_IRUGO, sd_show_thin_provisioning, NULL),
468         __ATTR(provisioning_mode, S_IRUGO|S_IWUSR, sd_show_provisioning_mode,
469                sd_store_provisioning_mode),
470         __ATTR(max_write_same_blocks, S_IRUGO|S_IWUSR,
471                sd_show_write_same_blocks, sd_store_write_same_blocks),
472         __ATTR(max_medium_access_timeouts, S_IRUGO|S_IWUSR,
473                sd_show_max_medium_access_timeouts,
474                sd_store_max_medium_access_timeouts),
475         __ATTR_NULL,
476 };
477
478 static struct class sd_disk_class = {
479         .name           = "scsi_disk",
480         .owner          = THIS_MODULE,
481         .dev_release    = scsi_disk_release,
482         .dev_attrs      = sd_disk_attrs,
483 };
484
485 static const struct dev_pm_ops sd_pm_ops = {
486         .suspend                = sd_suspend,
487         .resume                 = sd_resume,
488         .poweroff               = sd_suspend,
489         .restore                = sd_resume,
490         .runtime_suspend        = sd_suspend,
491         .runtime_resume         = sd_resume,
492 };
493
494 static struct scsi_driver sd_template = {
495         .owner                  = THIS_MODULE,
496         .gendrv = {
497                 .name           = "sd",
498                 .probe          = sd_probe,
499                 .remove         = sd_remove,
500                 .shutdown       = sd_shutdown,
501                 .pm             = &sd_pm_ops,
502         },
503         .rescan                 = sd_rescan,
504         .done                   = sd_done,
505         .eh_action              = sd_eh_action,
506 };
507
508 /*
509  * Dummy kobj_map->probe function.
510  * The default ->probe function will call modprobe, which is
511  * pointless as this module is already loaded.
512  */
513 static struct kobject *sd_default_probe(dev_t devt, int *partno, void *data)
514 {
515         return NULL;
516 }
517
518 /*
519  * Device no to disk mapping:
520  * 
521  *       major         disc2     disc  p1
522  *   |............|.............|....|....| <- dev_t
523  *    31        20 19          8 7  4 3  0
524  * 
525  * Inside a major, we have 16k disks, however mapped non-
526  * contiguously. The first 16 disks are for major0, the next
527  * ones with major1, ... Disk 256 is for major0 again, disk 272 
528  * for major1, ... 
529  * As we stay compatible with our numbering scheme, we can reuse 
530  * the well-know SCSI majors 8, 65--71, 136--143.
531  */
532 static int sd_major(int major_idx)
533 {
534         switch (major_idx) {
535         case 0:
536                 return SCSI_DISK0_MAJOR;
537         case 1 ... 7:
538                 return SCSI_DISK1_MAJOR + major_idx - 1;
539         case 8 ... 15:
540                 return SCSI_DISK8_MAJOR + major_idx - 8;
541         default:
542                 BUG();
543                 return 0;       /* shut up gcc */
544         }
545 }
546
547 static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
548 {
549         struct scsi_disk *sdkp = NULL;
550
551         if (disk->private_data) {
552                 sdkp = scsi_disk(disk);
553                 if (scsi_device_get(sdkp->device) == 0)
554                         get_device(&sdkp->dev);
555                 else
556                         sdkp = NULL;
557         }
558         return sdkp;
559 }
560
561 static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
562 {
563         struct scsi_disk *sdkp;
564
565         mutex_lock(&sd_ref_mutex);
566         sdkp = __scsi_disk_get(disk);
567         mutex_unlock(&sd_ref_mutex);
568         return sdkp;
569 }
570
571 static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
572 {
573         struct scsi_disk *sdkp;
574
575         mutex_lock(&sd_ref_mutex);
576         sdkp = dev_get_drvdata(dev);
577         if (sdkp)
578                 sdkp = __scsi_disk_get(sdkp->disk);
579         mutex_unlock(&sd_ref_mutex);
580         return sdkp;
581 }
582
583 static void scsi_disk_put(struct scsi_disk *sdkp)
584 {
585         struct scsi_device *sdev = sdkp->device;
586
587         mutex_lock(&sd_ref_mutex);
588         put_device(&sdkp->dev);
589         scsi_device_put(sdev);
590         mutex_unlock(&sd_ref_mutex);
591 }
592
593 static void sd_prot_op(struct scsi_cmnd *scmd, unsigned int dif)
594 {
595         unsigned int prot_op = SCSI_PROT_NORMAL;
596         unsigned int dix = scsi_prot_sg_count(scmd);
597
598         if (scmd->sc_data_direction == DMA_FROM_DEVICE) {
599                 if (dif && dix)
600                         prot_op = SCSI_PROT_READ_PASS;
601                 else if (dif && !dix)
602                         prot_op = SCSI_PROT_READ_STRIP;
603                 else if (!dif && dix)
604                         prot_op = SCSI_PROT_READ_INSERT;
605         } else {
606                 if (dif && dix)
607                         prot_op = SCSI_PROT_WRITE_PASS;
608                 else if (dif && !dix)
609                         prot_op = SCSI_PROT_WRITE_INSERT;
610                 else if (!dif && dix)
611                         prot_op = SCSI_PROT_WRITE_STRIP;
612         }
613
614         scsi_set_prot_op(scmd, prot_op);
615         scsi_set_prot_type(scmd, dif);
616 }
617
618 static void sd_config_discard(struct scsi_disk *sdkp, unsigned int mode)
619 {
620         struct request_queue *q = sdkp->disk->queue;
621         unsigned int logical_block_size = sdkp->device->sector_size;
622         unsigned int max_blocks = 0;
623
624         q->limits.discard_zeroes_data = sdkp->lbprz;
625         q->limits.discard_alignment = sdkp->unmap_alignment *
626                 logical_block_size;
627         q->limits.discard_granularity =
628                 max(sdkp->physical_block_size,
629                     sdkp->unmap_granularity * logical_block_size);
630
631         sdkp->provisioning_mode = mode;
632
633         switch (mode) {
634
635         case SD_LBP_DISABLE:
636                 q->limits.max_discard_sectors = 0;
637                 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, q);
638                 return;
639
640         case SD_LBP_UNMAP:
641                 max_blocks = min_not_zero(sdkp->max_unmap_blocks,
642                                           (u32)SD_MAX_WS16_BLOCKS);
643                 break;
644
645         case SD_LBP_WS16:
646                 max_blocks = min_not_zero(sdkp->max_ws_blocks,
647                                           (u32)SD_MAX_WS16_BLOCKS);
648                 break;
649
650         case SD_LBP_WS10:
651                 max_blocks = min_not_zero(sdkp->max_ws_blocks,
652                                           (u32)SD_MAX_WS10_BLOCKS);
653                 break;
654
655         case SD_LBP_ZERO:
656                 max_blocks = min_not_zero(sdkp->max_ws_blocks,
657                                           (u32)SD_MAX_WS10_BLOCKS);
658                 q->limits.discard_zeroes_data = 1;
659                 break;
660         }
661
662         q->limits.max_discard_sectors = max_blocks * (logical_block_size >> 9);
663         queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
664 }
665
666 /**
667  * sd_setup_discard_cmnd - unmap blocks on thinly provisioned device
668  * @sdp: scsi device to operate one
669  * @rq: Request to prepare
670  *
671  * Will issue either UNMAP or WRITE SAME(16) depending on preference
672  * indicated by target device.
673  **/
674 static int sd_setup_discard_cmnd(struct scsi_device *sdp, struct request *rq)
675 {
676         struct scsi_disk *sdkp = scsi_disk(rq->rq_disk);
677         sector_t sector = blk_rq_pos(rq);
678         unsigned int nr_sectors = blk_rq_sectors(rq);
679         unsigned int nr_bytes = blk_rq_bytes(rq);
680         unsigned int len;
681         int ret;
682         char *buf;
683         struct page *page;
684
685         sector >>= ilog2(sdp->sector_size) - 9;
686         nr_sectors >>= ilog2(sdp->sector_size) - 9;
687         rq->timeout = SD_TIMEOUT;
688
689         memset(rq->cmd, 0, rq->cmd_len);
690
691         page = alloc_page(GFP_ATOMIC | __GFP_ZERO);
692         if (!page)
693                 return BLKPREP_DEFER;
694
695         switch (sdkp->provisioning_mode) {
696         case SD_LBP_UNMAP:
697                 buf = page_address(page);
698
699                 rq->cmd_len = 10;
700                 rq->cmd[0] = UNMAP;
701                 rq->cmd[8] = 24;
702
703                 put_unaligned_be16(6 + 16, &buf[0]);
704                 put_unaligned_be16(16, &buf[2]);
705                 put_unaligned_be64(sector, &buf[8]);
706                 put_unaligned_be32(nr_sectors, &buf[16]);
707
708                 len = 24;
709                 break;
710
711         case SD_LBP_WS16:
712                 rq->cmd_len = 16;
713                 rq->cmd[0] = WRITE_SAME_16;
714                 rq->cmd[1] = 0x8; /* UNMAP */
715                 put_unaligned_be64(sector, &rq->cmd[2]);
716                 put_unaligned_be32(nr_sectors, &rq->cmd[10]);
717
718                 len = sdkp->device->sector_size;
719                 break;
720
721         case SD_LBP_WS10:
722         case SD_LBP_ZERO:
723                 rq->cmd_len = 10;
724                 rq->cmd[0] = WRITE_SAME;
725                 if (sdkp->provisioning_mode == SD_LBP_WS10)
726                         rq->cmd[1] = 0x8; /* UNMAP */
727                 put_unaligned_be32(sector, &rq->cmd[2]);
728                 put_unaligned_be16(nr_sectors, &rq->cmd[7]);
729
730                 len = sdkp->device->sector_size;
731                 break;
732
733         default:
734                 ret = BLKPREP_KILL;
735                 goto out;
736         }
737
738         blk_add_request_payload(rq, page, len);
739         ret = scsi_setup_blk_pc_cmnd(sdp, rq);
740         rq->buffer = page_address(page);
741         rq->__data_len = nr_bytes;
742
743 out:
744         if (ret != BLKPREP_OK) {
745                 __free_page(page);
746                 rq->buffer = NULL;
747         }
748         return ret;
749 }
750
751 static void sd_config_write_same(struct scsi_disk *sdkp)
752 {
753         struct request_queue *q = sdkp->disk->queue;
754         unsigned int logical_block_size = sdkp->device->sector_size;
755
756         if (sdkp->device->no_write_same) {
757                 sdkp->max_ws_blocks = 0;
758                 goto out;
759         }
760
761         /* Some devices can not handle block counts above 0xffff despite
762          * supporting WRITE SAME(16). Consequently we default to 64k
763          * blocks per I/O unless the device explicitly advertises a
764          * bigger limit.
765          */
766         if (sdkp->max_ws_blocks > SD_MAX_WS10_BLOCKS)
767                 sdkp->max_ws_blocks = min_not_zero(sdkp->max_ws_blocks,
768                                                    (u32)SD_MAX_WS16_BLOCKS);
769         else if (sdkp->ws16 || sdkp->ws10 || sdkp->device->no_report_opcodes)
770                 sdkp->max_ws_blocks = min_not_zero(sdkp->max_ws_blocks,
771                                                    (u32)SD_MAX_WS10_BLOCKS);
772         else {
773                 sdkp->device->no_write_same = 1;
774                 sdkp->max_ws_blocks = 0;
775         }
776
777 out:
778         blk_queue_max_write_same_sectors(q, sdkp->max_ws_blocks *
779                                          (logical_block_size >> 9));
780 }
781
782 /**
783  * sd_setup_write_same_cmnd - write the same data to multiple blocks
784  * @sdp: scsi device to operate one
785  * @rq: Request to prepare
786  *
787  * Will issue either WRITE SAME(10) or WRITE SAME(16) depending on
788  * preference indicated by target device.
789  **/
790 static int sd_setup_write_same_cmnd(struct scsi_device *sdp, struct request *rq)
791 {
792         struct scsi_disk *sdkp = scsi_disk(rq->rq_disk);
793         struct bio *bio = rq->bio;
794         sector_t sector = blk_rq_pos(rq);
795         unsigned int nr_sectors = blk_rq_sectors(rq);
796         unsigned int nr_bytes = blk_rq_bytes(rq);
797         int ret;
798
799         if (sdkp->device->no_write_same)
800                 return BLKPREP_KILL;
801
802         BUG_ON(bio_offset(bio) || bio_iovec(bio)->bv_len != sdp->sector_size);
803
804         sector >>= ilog2(sdp->sector_size) - 9;
805         nr_sectors >>= ilog2(sdp->sector_size) - 9;
806
807         rq->__data_len = sdp->sector_size;
808         rq->timeout = SD_WRITE_SAME_TIMEOUT;
809         memset(rq->cmd, 0, rq->cmd_len);
810
811         if (sdkp->ws16 || sector > 0xffffffff || nr_sectors > 0xffff) {
812                 rq->cmd_len = 16;
813                 rq->cmd[0] = WRITE_SAME_16;
814                 put_unaligned_be64(sector, &rq->cmd[2]);
815                 put_unaligned_be32(nr_sectors, &rq->cmd[10]);
816         } else {
817                 rq->cmd_len = 10;
818                 rq->cmd[0] = WRITE_SAME;
819                 put_unaligned_be32(sector, &rq->cmd[2]);
820                 put_unaligned_be16(nr_sectors, &rq->cmd[7]);
821         }
822
823         ret = scsi_setup_blk_pc_cmnd(sdp, rq);
824         rq->__data_len = nr_bytes;
825
826         return ret;
827 }
828
829 static int scsi_setup_flush_cmnd(struct scsi_device *sdp, struct request *rq)
830 {
831         rq->timeout = SD_FLUSH_TIMEOUT;
832         rq->retries = SD_MAX_RETRIES;
833         rq->cmd[0] = SYNCHRONIZE_CACHE;
834         rq->cmd_len = 10;
835
836         return scsi_setup_blk_pc_cmnd(sdp, rq);
837 }
838
839 static void sd_unprep_fn(struct request_queue *q, struct request *rq)
840 {
841         if (rq->cmd_flags & REQ_DISCARD) {
842                 free_page((unsigned long)rq->buffer);
843                 rq->buffer = NULL;
844         }
845 }
846
847 /**
848  *      sd_prep_fn - build a scsi (read or write) command from
849  *      information in the request structure.
850  *      @SCpnt: pointer to mid-level's per scsi command structure that
851  *      contains request and into which the scsi command is written
852  *
853  *      Returns 1 if successful and 0 if error (or cannot be done now).
854  **/
855 static int sd_prep_fn(struct request_queue *q, struct request *rq)
856 {
857         struct scsi_cmnd *SCpnt;
858         struct scsi_device *sdp = q->queuedata;
859         struct gendisk *disk = rq->rq_disk;
860         struct scsi_disk *sdkp;
861         sector_t block = blk_rq_pos(rq);
862         sector_t threshold;
863         unsigned int this_count = blk_rq_sectors(rq);
864         int ret, host_dif;
865         unsigned char protect;
866
867         /*
868          * Discard request come in as REQ_TYPE_FS but we turn them into
869          * block PC requests to make life easier.
870          */
871         if (rq->cmd_flags & REQ_DISCARD) {
872                 ret = sd_setup_discard_cmnd(sdp, rq);
873                 goto out;
874         } else if (rq->cmd_flags & REQ_WRITE_SAME) {
875                 ret = sd_setup_write_same_cmnd(sdp, rq);
876                 goto out;
877         } else if (rq->cmd_flags & REQ_FLUSH) {
878                 ret = scsi_setup_flush_cmnd(sdp, rq);
879                 goto out;
880         } else if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
881                 ret = scsi_setup_blk_pc_cmnd(sdp, rq);
882                 goto out;
883         } else if (rq->cmd_type != REQ_TYPE_FS) {
884                 ret = BLKPREP_KILL;
885                 goto out;
886         }
887         ret = scsi_setup_fs_cmnd(sdp, rq);
888         if (ret != BLKPREP_OK)
889                 goto out;
890         SCpnt = rq->special;
891         sdkp = scsi_disk(disk);
892
893         /* from here on until we're complete, any goto out
894          * is used for a killable error condition */
895         ret = BLKPREP_KILL;
896
897         SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
898                                         "sd_prep_fn: block=%llu, "
899                                         "count=%d\n",
900                                         (unsigned long long)block,
901                                         this_count));
902
903         if (!sdp || !scsi_device_online(sdp) ||
904             block + blk_rq_sectors(rq) > get_capacity(disk)) {
905                 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
906                                                 "Finishing %u sectors\n",
907                                                 blk_rq_sectors(rq)));
908                 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
909                                                 "Retry with 0x%p\n", SCpnt));
910                 goto out;
911         }
912
913         if (sdp->changed) {
914                 /*
915                  * quietly refuse to do anything to a changed disc until 
916                  * the changed bit has been reset
917                  */
918                 /* printk("SCSI disk has been changed or is not present. Prohibiting further I/O.\n"); */
919                 goto out;
920         }
921
922         /*
923          * Some SD card readers can't handle multi-sector accesses which touch
924          * the last one or two hardware sectors.  Split accesses as needed.
925          */
926         threshold = get_capacity(disk) - SD_LAST_BUGGY_SECTORS *
927                 (sdp->sector_size / 512);
928
929         if (unlikely(sdp->last_sector_bug && block + this_count > threshold)) {
930                 if (block < threshold) {
931                         /* Access up to the threshold but not beyond */
932                         this_count = threshold - block;
933                 } else {
934                         /* Access only a single hardware sector */
935                         this_count = sdp->sector_size / 512;
936                 }
937         }
938
939         SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, "block=%llu\n",
940                                         (unsigned long long)block));
941
942         /*
943          * If we have a 1K hardware sectorsize, prevent access to single
944          * 512 byte sectors.  In theory we could handle this - in fact
945          * the scsi cdrom driver must be able to handle this because
946          * we typically use 1K blocksizes, and cdroms typically have
947          * 2K hardware sectorsizes.  Of course, things are simpler
948          * with the cdrom, since it is read-only.  For performance
949          * reasons, the filesystems should be able to handle this
950          * and not force the scsi disk driver to use bounce buffers
951          * for this.
952          */
953         if (sdp->sector_size == 1024) {
954                 if ((block & 1) || (blk_rq_sectors(rq) & 1)) {
955                         scmd_printk(KERN_ERR, SCpnt,
956                                     "Bad block number requested\n");
957                         goto out;
958                 } else {
959                         block = block >> 1;
960                         this_count = this_count >> 1;
961                 }
962         }
963         if (sdp->sector_size == 2048) {
964                 if ((block & 3) || (blk_rq_sectors(rq) & 3)) {
965                         scmd_printk(KERN_ERR, SCpnt,
966                                     "Bad block number requested\n");
967                         goto out;
968                 } else {
969                         block = block >> 2;
970                         this_count = this_count >> 2;
971                 }
972         }
973         if (sdp->sector_size == 4096) {
974                 if ((block & 7) || (blk_rq_sectors(rq) & 7)) {
975                         scmd_printk(KERN_ERR, SCpnt,
976                                     "Bad block number requested\n");
977                         goto out;
978                 } else {
979                         block = block >> 3;
980                         this_count = this_count >> 3;
981                 }
982         }
983         if (rq_data_dir(rq) == WRITE) {
984                 if (!sdp->writeable) {
985                         goto out;
986                 }
987                 SCpnt->cmnd[0] = WRITE_6;
988                 SCpnt->sc_data_direction = DMA_TO_DEVICE;
989
990                 if (blk_integrity_rq(rq))
991                         sd_dif_prepare(rq, block, sdp->sector_size);
992
993         } else if (rq_data_dir(rq) == READ) {
994                 SCpnt->cmnd[0] = READ_6;
995                 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
996         } else {
997                 scmd_printk(KERN_ERR, SCpnt, "Unknown command %x\n", rq->cmd_flags);
998                 goto out;
999         }
1000
1001         SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
1002                                         "%s %d/%u 512 byte blocks.\n",
1003                                         (rq_data_dir(rq) == WRITE) ?
1004                                         "writing" : "reading", this_count,
1005                                         blk_rq_sectors(rq)));
1006
1007         /* Set RDPROTECT/WRPROTECT if disk is formatted with DIF */
1008         host_dif = scsi_host_dif_capable(sdp->host, sdkp->protection_type);
1009         if (host_dif)
1010                 protect = 1 << 5;
1011         else
1012                 protect = 0;
1013
1014         if (host_dif == SD_DIF_TYPE2_PROTECTION) {
1015                 SCpnt->cmnd = mempool_alloc(sd_cdb_pool, GFP_ATOMIC);
1016
1017                 if (unlikely(SCpnt->cmnd == NULL)) {
1018                         ret = BLKPREP_DEFER;
1019                         goto out;
1020                 }
1021
1022                 SCpnt->cmd_len = SD_EXT_CDB_SIZE;
1023                 memset(SCpnt->cmnd, 0, SCpnt->cmd_len);
1024                 SCpnt->cmnd[0] = VARIABLE_LENGTH_CMD;
1025                 SCpnt->cmnd[7] = 0x18;
1026                 SCpnt->cmnd[9] = (rq_data_dir(rq) == READ) ? READ_32 : WRITE_32;
1027                 SCpnt->cmnd[10] = protect | ((rq->cmd_flags & REQ_FUA) ? 0x8 : 0);
1028
1029                 /* LBA */
1030                 SCpnt->cmnd[12] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
1031                 SCpnt->cmnd[13] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
1032                 SCpnt->cmnd[14] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
1033                 SCpnt->cmnd[15] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
1034                 SCpnt->cmnd[16] = (unsigned char) (block >> 24) & 0xff;
1035                 SCpnt->cmnd[17] = (unsigned char) (block >> 16) & 0xff;
1036                 SCpnt->cmnd[18] = (unsigned char) (block >> 8) & 0xff;
1037                 SCpnt->cmnd[19] = (unsigned char) block & 0xff;
1038
1039                 /* Expected Indirect LBA */
1040                 SCpnt->cmnd[20] = (unsigned char) (block >> 24) & 0xff;
1041                 SCpnt->cmnd[21] = (unsigned char) (block >> 16) & 0xff;
1042                 SCpnt->cmnd[22] = (unsigned char) (block >> 8) & 0xff;
1043                 SCpnt->cmnd[23] = (unsigned char) block & 0xff;
1044
1045                 /* Transfer length */
1046                 SCpnt->cmnd[28] = (unsigned char) (this_count >> 24) & 0xff;
1047                 SCpnt->cmnd[29] = (unsigned char) (this_count >> 16) & 0xff;
1048                 SCpnt->cmnd[30] = (unsigned char) (this_count >> 8) & 0xff;
1049                 SCpnt->cmnd[31] = (unsigned char) this_count & 0xff;
1050         } else if (sdp->use_16_for_rw) {
1051                 SCpnt->cmnd[0] += READ_16 - READ_6;
1052                 SCpnt->cmnd[1] = protect | ((rq->cmd_flags & REQ_FUA) ? 0x8 : 0);
1053                 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
1054                 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
1055                 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
1056                 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
1057                 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
1058                 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
1059                 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
1060                 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
1061                 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
1062                 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
1063                 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
1064                 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
1065                 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
1066         } else if ((this_count > 0xff) || (block > 0x1fffff) ||
1067                    scsi_device_protection(SCpnt->device) ||
1068                    SCpnt->device->use_10_for_rw) {
1069                 if (this_count > 0xffff)
1070                         this_count = 0xffff;
1071
1072                 SCpnt->cmnd[0] += READ_10 - READ_6;
1073                 SCpnt->cmnd[1] = protect | ((rq->cmd_flags & REQ_FUA) ? 0x8 : 0);
1074                 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
1075                 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
1076                 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
1077                 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
1078                 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
1079                 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
1080                 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
1081         } else {
1082                 if (unlikely(rq->cmd_flags & REQ_FUA)) {
1083                         /*
1084                          * This happens only if this drive failed
1085                          * 10byte rw command with ILLEGAL_REQUEST
1086                          * during operation and thus turned off
1087                          * use_10_for_rw.
1088                          */
1089                         scmd_printk(KERN_ERR, SCpnt,
1090                                     "FUA write on READ/WRITE(6) drive\n");
1091                         goto out;
1092                 }
1093
1094                 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
1095                 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
1096                 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
1097                 SCpnt->cmnd[4] = (unsigned char) this_count;
1098                 SCpnt->cmnd[5] = 0;
1099         }
1100         SCpnt->sdb.length = this_count * sdp->sector_size;
1101
1102         /* If DIF or DIX is enabled, tell HBA how to handle request */
1103         if (host_dif || scsi_prot_sg_count(SCpnt))
1104                 sd_prot_op(SCpnt, host_dif);
1105
1106         /*
1107          * We shouldn't disconnect in the middle of a sector, so with a dumb
1108          * host adapter, it's safe to assume that we can at least transfer
1109          * this many bytes between each connect / disconnect.
1110          */
1111         SCpnt->transfersize = sdp->sector_size;
1112         SCpnt->underflow = this_count << 9;
1113         SCpnt->allowed = SD_MAX_RETRIES;
1114
1115         /*
1116          * This indicates that the command is ready from our end to be
1117          * queued.
1118          */
1119         ret = BLKPREP_OK;
1120  out:
1121         return scsi_prep_return(q, rq, ret);
1122 }
1123
1124 /**
1125  *      sd_open - open a scsi disk device
1126  *      @inode: only i_rdev member may be used
1127  *      @filp: only f_mode and f_flags may be used
1128  *
1129  *      Returns 0 if successful. Returns a negated errno value in case 
1130  *      of error.
1131  *
1132  *      Note: This can be called from a user context (e.g. fsck(1) )
1133  *      or from within the kernel (e.g. as a result of a mount(1) ).
1134  *      In the latter case @inode and @filp carry an abridged amount
1135  *      of information as noted above.
1136  *
1137  *      Locking: called with bdev->bd_mutex held.
1138  **/
1139 static int sd_open(struct block_device *bdev, fmode_t mode)
1140 {
1141         struct scsi_disk *sdkp = scsi_disk_get(bdev->bd_disk);
1142         struct scsi_device *sdev;
1143         int retval;
1144
1145         if (!sdkp)
1146                 return -ENXIO;
1147
1148         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_open\n"));
1149
1150         sdev = sdkp->device;
1151
1152         /*
1153          * If the device is in error recovery, wait until it is done.
1154          * If the device is offline, then disallow any access to it.
1155          */
1156         retval = -ENXIO;
1157         if (!scsi_block_when_processing_errors(sdev))
1158                 goto error_out;
1159
1160         if (sdev->removable || sdkp->write_prot)
1161                 check_disk_change(bdev);
1162
1163         /*
1164          * If the drive is empty, just let the open fail.
1165          */
1166         retval = -ENOMEDIUM;
1167         if (sdev->removable && !sdkp->media_present && !(mode & FMODE_NDELAY))
1168                 goto error_out;
1169
1170         /*
1171          * If the device has the write protect tab set, have the open fail
1172          * if the user expects to be able to write to the thing.
1173          */
1174         retval = -EROFS;
1175         if (sdkp->write_prot && (mode & FMODE_WRITE))
1176                 goto error_out;
1177
1178         /*
1179          * It is possible that the disk changing stuff resulted in
1180          * the device being taken offline.  If this is the case,
1181          * report this to the user, and don't pretend that the
1182          * open actually succeeded.
1183          */
1184         retval = -ENXIO;
1185         if (!scsi_device_online(sdev))
1186                 goto error_out;
1187
1188         if ((atomic_inc_return(&sdkp->openers) == 1) && sdev->removable) {
1189                 if (scsi_block_when_processing_errors(sdev))
1190                         scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
1191         }
1192
1193         return 0;
1194
1195 error_out:
1196         scsi_disk_put(sdkp);
1197         return retval;  
1198 }
1199
1200 /**
1201  *      sd_release - invoked when the (last) close(2) is called on this
1202  *      scsi disk.
1203  *      @inode: only i_rdev member may be used
1204  *      @filp: only f_mode and f_flags may be used
1205  *
1206  *      Returns 0. 
1207  *
1208  *      Note: may block (uninterruptible) if error recovery is underway
1209  *      on this disk.
1210  *
1211  *      Locking: called with bdev->bd_mutex held.
1212  **/
1213 static void sd_release(struct gendisk *disk, fmode_t mode)
1214 {
1215         struct scsi_disk *sdkp = scsi_disk(disk);
1216         struct scsi_device *sdev = sdkp->device;
1217
1218         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_release\n"));
1219
1220         if (atomic_dec_return(&sdkp->openers) == 0 && sdev->removable) {
1221                 if (scsi_block_when_processing_errors(sdev))
1222                         scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
1223         }
1224
1225         /*
1226          * XXX and what if there are packets in flight and this close()
1227          * XXX is followed by a "rmmod sd_mod"?
1228          */
1229
1230         scsi_disk_put(sdkp);
1231 }
1232
1233 static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1234 {
1235         struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
1236         struct scsi_device *sdp = sdkp->device;
1237         struct Scsi_Host *host = sdp->host;
1238         int diskinfo[4];
1239
1240         /* default to most commonly used values */
1241         diskinfo[0] = 0x40;     /* 1 << 6 */
1242         diskinfo[1] = 0x20;     /* 1 << 5 */
1243         diskinfo[2] = sdkp->capacity >> 11;
1244         
1245         /* override with calculated, extended default, or driver values */
1246         if (host->hostt->bios_param)
1247                 host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
1248         else
1249                 scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
1250
1251         geo->heads = diskinfo[0];
1252         geo->sectors = diskinfo[1];
1253         geo->cylinders = diskinfo[2];
1254         return 0;
1255 }
1256
1257 /**
1258  *      sd_ioctl - process an ioctl
1259  *      @inode: only i_rdev/i_bdev members may be used
1260  *      @filp: only f_mode and f_flags may be used
1261  *      @cmd: ioctl command number
1262  *      @arg: this is third argument given to ioctl(2) system call.
1263  *      Often contains a pointer.
1264  *
1265  *      Returns 0 if successful (some ioctls return positive numbers on
1266  *      success as well). Returns a negated errno value in case of error.
1267  *
1268  *      Note: most ioctls are forward onto the block subsystem or further
1269  *      down in the scsi subsystem.
1270  **/
1271 static int sd_ioctl(struct block_device *bdev, fmode_t mode,
1272                     unsigned int cmd, unsigned long arg)
1273 {
1274         struct gendisk *disk = bdev->bd_disk;
1275         struct scsi_disk *sdkp = scsi_disk(disk);
1276         struct scsi_device *sdp = sdkp->device;
1277         void __user *p = (void __user *)arg;
1278         int error;
1279     
1280         SCSI_LOG_IOCTL(1, sd_printk(KERN_INFO, sdkp, "sd_ioctl: disk=%s, "
1281                                     "cmd=0x%x\n", disk->disk_name, cmd));
1282
1283         error = scsi_verify_blk_ioctl(bdev, cmd);
1284         if (error < 0)
1285                 return error;
1286
1287         /*
1288          * If we are in the middle of error recovery, don't let anyone
1289          * else try and use this device.  Also, if error recovery fails, it
1290          * may try and take the device offline, in which case all further
1291          * access to the device is prohibited.
1292          */
1293         error = scsi_nonblockable_ioctl(sdp, cmd, p,
1294                                         (mode & FMODE_NDELAY) != 0);
1295         if (!scsi_block_when_processing_errors(sdp) || !error)
1296                 goto out;
1297
1298         /*
1299          * Send SCSI addressing ioctls directly to mid level, send other
1300          * ioctls to block level and then onto mid level if they can't be
1301          * resolved.
1302          */
1303         switch (cmd) {
1304                 case SCSI_IOCTL_GET_IDLUN:
1305                 case SCSI_IOCTL_GET_BUS_NUMBER:
1306                         error = scsi_ioctl(sdp, cmd, p);
1307                         break;
1308                 default:
1309                         error = scsi_cmd_blk_ioctl(bdev, mode, cmd, p);
1310                         if (error != -ENOTTY)
1311                                 break;
1312                         error = scsi_ioctl(sdp, cmd, p);
1313                         break;
1314         }
1315 out:
1316         return error;
1317 }
1318
1319 static void set_media_not_present(struct scsi_disk *sdkp)
1320 {
1321         if (sdkp->media_present)
1322                 sdkp->device->changed = 1;
1323
1324         if (sdkp->device->removable) {
1325                 sdkp->media_present = 0;
1326                 sdkp->capacity = 0;
1327         }
1328 }
1329
1330 static int media_not_present(struct scsi_disk *sdkp,
1331                              struct scsi_sense_hdr *sshdr)
1332 {
1333         if (!scsi_sense_valid(sshdr))
1334                 return 0;
1335
1336         /* not invoked for commands that could return deferred errors */
1337         switch (sshdr->sense_key) {
1338         case UNIT_ATTENTION:
1339         case NOT_READY:
1340                 /* medium not present */
1341                 if (sshdr->asc == 0x3A) {
1342                         set_media_not_present(sdkp);
1343                         return 1;
1344                 }
1345         }
1346         return 0;
1347 }
1348
1349 /**
1350  *      sd_check_events - check media events
1351  *      @disk: kernel device descriptor
1352  *      @clearing: disk events currently being cleared
1353  *
1354  *      Returns mask of DISK_EVENT_*.
1355  *
1356  *      Note: this function is invoked from the block subsystem.
1357  **/
1358 static unsigned int sd_check_events(struct gendisk *disk, unsigned int clearing)
1359 {
1360         struct scsi_disk *sdkp = scsi_disk(disk);
1361         struct scsi_device *sdp = sdkp->device;
1362         struct scsi_sense_hdr *sshdr = NULL;
1363         int retval;
1364
1365         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_check_events\n"));
1366
1367         /*
1368          * If the device is offline, don't send any commands - just pretend as
1369          * if the command failed.  If the device ever comes back online, we
1370          * can deal with it then.  It is only because of unrecoverable errors
1371          * that we would ever take a device offline in the first place.
1372          */
1373         if (!scsi_device_online(sdp)) {
1374                 set_media_not_present(sdkp);
1375                 goto out;
1376         }
1377
1378         /*
1379          * Using TEST_UNIT_READY enables differentiation between drive with
1380          * no cartridge loaded - NOT READY, drive with changed cartridge -
1381          * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
1382          *
1383          * Drives that auto spin down. eg iomega jaz 1G, will be started
1384          * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
1385          * sd_revalidate() is called.
1386          */
1387         retval = -ENODEV;
1388
1389         if (scsi_block_when_processing_errors(sdp)) {
1390                 sshdr  = kzalloc(sizeof(*sshdr), GFP_KERNEL);
1391                 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES,
1392                                               sshdr);
1393         }
1394
1395         /* failed to execute TUR, assume media not present */
1396         if (host_byte(retval)) {
1397                 set_media_not_present(sdkp);
1398                 goto out;
1399         }
1400
1401         if (media_not_present(sdkp, sshdr))
1402                 goto out;
1403
1404         /*
1405          * For removable scsi disk we have to recognise the presence
1406          * of a disk in the drive.
1407          */
1408         if (!sdkp->media_present)
1409                 sdp->changed = 1;
1410         sdkp->media_present = 1;
1411 out:
1412         /*
1413          * sdp->changed is set under the following conditions:
1414          *
1415          *      Medium present state has changed in either direction.
1416          *      Device has indicated UNIT_ATTENTION.
1417          */
1418         kfree(sshdr);
1419         retval = sdp->changed ? DISK_EVENT_MEDIA_CHANGE : 0;
1420         sdp->changed = 0;
1421         return retval;
1422 }
1423
1424 static int sd_sync_cache(struct scsi_disk *sdkp)
1425 {
1426         int retries, res;
1427         struct scsi_device *sdp = sdkp->device;
1428         struct scsi_sense_hdr sshdr;
1429
1430         if (!scsi_device_online(sdp))
1431                 return -ENODEV;
1432
1433
1434         for (retries = 3; retries > 0; --retries) {
1435                 unsigned char cmd[10] = { 0 };
1436
1437                 cmd[0] = SYNCHRONIZE_CACHE;
1438                 /*
1439                  * Leave the rest of the command zero to indicate
1440                  * flush everything.
1441                  */
1442                 res = scsi_execute_req_flags(sdp, cmd, DMA_NONE, NULL, 0,
1443                                              &sshdr, SD_FLUSH_TIMEOUT,
1444                                              SD_MAX_RETRIES, NULL, REQ_PM);
1445                 if (res == 0)
1446                         break;
1447         }
1448
1449         if (res) {
1450                 sd_print_result(sdkp, res);
1451                 if (driver_byte(res) & DRIVER_SENSE)
1452                         sd_print_sense_hdr(sdkp, &sshdr);
1453         }
1454
1455         if (res)
1456                 return -EIO;
1457         return 0;
1458 }
1459
1460 static void sd_rescan(struct device *dev)
1461 {
1462         struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
1463
1464         if (sdkp) {
1465                 revalidate_disk(sdkp->disk);
1466                 scsi_disk_put(sdkp);
1467         }
1468 }
1469
1470
1471 #ifdef CONFIG_COMPAT
1472 /* 
1473  * This gets directly called from VFS. When the ioctl 
1474  * is not recognized we go back to the other translation paths. 
1475  */
1476 static int sd_compat_ioctl(struct block_device *bdev, fmode_t mode,
1477                            unsigned int cmd, unsigned long arg)
1478 {
1479         struct scsi_device *sdev = scsi_disk(bdev->bd_disk)->device;
1480         int ret;
1481
1482         ret = scsi_verify_blk_ioctl(bdev, cmd);
1483         if (ret < 0)
1484                 return ret;
1485
1486         /*
1487          * If we are in the middle of error recovery, don't let anyone
1488          * else try and use this device.  Also, if error recovery fails, it
1489          * may try and take the device offline, in which case all further
1490          * access to the device is prohibited.
1491          */
1492         if (!scsi_block_when_processing_errors(sdev))
1493                 return -ENODEV;
1494                
1495         if (sdev->host->hostt->compat_ioctl) {
1496                 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
1497
1498                 return ret;
1499         }
1500
1501         /* 
1502          * Let the static ioctl translation table take care of it.
1503          */
1504         return -ENOIOCTLCMD; 
1505 }
1506 #endif
1507
1508 static const struct block_device_operations sd_fops = {
1509         .owner                  = THIS_MODULE,
1510         .open                   = sd_open,
1511         .release                = sd_release,
1512         .ioctl                  = sd_ioctl,
1513         .getgeo                 = sd_getgeo,
1514 #ifdef CONFIG_COMPAT
1515         .compat_ioctl           = sd_compat_ioctl,
1516 #endif
1517         .check_events           = sd_check_events,
1518         .revalidate_disk        = sd_revalidate_disk,
1519         .unlock_native_capacity = sd_unlock_native_capacity,
1520 };
1521
1522 /**
1523  *      sd_eh_action - error handling callback
1524  *      @scmd:          sd-issued command that has failed
1525  *      @eh_cmnd:       The command that was sent during error handling
1526  *      @eh_cmnd_len:   Length of eh_cmnd in bytes
1527  *      @eh_disp:       The recovery disposition suggested by the midlayer
1528  *
1529  *      This function is called by the SCSI midlayer upon completion of
1530  *      an error handling command (TEST UNIT READY, START STOP UNIT,
1531  *      etc.) The command sent to the device by the error handler is
1532  *      stored in eh_cmnd. The result of sending the eh command is
1533  *      passed in eh_disp.
1534  **/
1535 static int sd_eh_action(struct scsi_cmnd *scmd, unsigned char *eh_cmnd,
1536                         int eh_cmnd_len, int eh_disp)
1537 {
1538         struct scsi_disk *sdkp = scsi_disk(scmd->request->rq_disk);
1539
1540         if (!scsi_device_online(scmd->device) ||
1541             !scsi_medium_access_command(scmd))
1542                 return eh_disp;
1543
1544         /*
1545          * The device has timed out executing a medium access command.
1546          * However, the TEST UNIT READY command sent during error
1547          * handling completed successfully. Either the device is in the
1548          * process of recovering or has it suffered an internal failure
1549          * that prevents access to the storage medium.
1550          */
1551         if (host_byte(scmd->result) == DID_TIME_OUT && eh_disp == SUCCESS &&
1552             eh_cmnd_len && eh_cmnd[0] == TEST_UNIT_READY)
1553                 sdkp->medium_access_timed_out++;
1554
1555         /*
1556          * If the device keeps failing read/write commands but TEST UNIT
1557          * READY always completes successfully we assume that medium
1558          * access is no longer possible and take the device offline.
1559          */
1560         if (sdkp->medium_access_timed_out >= sdkp->max_medium_access_timeouts) {
1561                 scmd_printk(KERN_ERR, scmd,
1562                             "Medium access timeout failure. Offlining disk!\n");
1563                 scsi_device_set_state(scmd->device, SDEV_OFFLINE);
1564
1565                 return FAILED;
1566         }
1567
1568         return eh_disp;
1569 }
1570
1571 static unsigned int sd_completed_bytes(struct scsi_cmnd *scmd)
1572 {
1573         u64 start_lba = blk_rq_pos(scmd->request);
1574         u64 end_lba = blk_rq_pos(scmd->request) + (scsi_bufflen(scmd) / 512);
1575         u64 bad_lba;
1576         int info_valid;
1577         /*
1578          * resid is optional but mostly filled in.  When it's unused,
1579          * its value is zero, so we assume the whole buffer transferred
1580          */
1581         unsigned int transferred = scsi_bufflen(scmd) - scsi_get_resid(scmd);
1582         unsigned int good_bytes;
1583
1584         if (scmd->request->cmd_type != REQ_TYPE_FS)
1585                 return 0;
1586
1587         info_valid = scsi_get_sense_info_fld(scmd->sense_buffer,
1588                                              SCSI_SENSE_BUFFERSIZE,
1589                                              &bad_lba);
1590         if (!info_valid)
1591                 return 0;
1592
1593         if (scsi_bufflen(scmd) <= scmd->device->sector_size)
1594                 return 0;
1595
1596         if (scmd->device->sector_size < 512) {
1597                 /* only legitimate sector_size here is 256 */
1598                 start_lba <<= 1;
1599                 end_lba <<= 1;
1600         } else {
1601                 /* be careful ... don't want any overflows */
1602                 u64 factor = scmd->device->sector_size / 512;
1603                 do_div(start_lba, factor);
1604                 do_div(end_lba, factor);
1605         }
1606
1607         /* The bad lba was reported incorrectly, we have no idea where
1608          * the error is.
1609          */
1610         if (bad_lba < start_lba  || bad_lba >= end_lba)
1611                 return 0;
1612
1613         /* This computation should always be done in terms of
1614          * the resolution of the device's medium.
1615          */
1616         good_bytes = (bad_lba - start_lba) * scmd->device->sector_size;
1617         return min(good_bytes, transferred);
1618 }
1619
1620 /**
1621  *      sd_done - bottom half handler: called when the lower level
1622  *      driver has completed (successfully or otherwise) a scsi command.
1623  *      @SCpnt: mid-level's per command structure.
1624  *
1625  *      Note: potentially run from within an ISR. Must not block.
1626  **/
1627 static int sd_done(struct scsi_cmnd *SCpnt)
1628 {
1629         int result = SCpnt->result;
1630         unsigned int good_bytes = result ? 0 : scsi_bufflen(SCpnt);
1631         struct scsi_sense_hdr sshdr;
1632         struct scsi_disk *sdkp = scsi_disk(SCpnt->request->rq_disk);
1633         struct request *req = SCpnt->request;
1634         int sense_valid = 0;
1635         int sense_deferred = 0;
1636         unsigned char op = SCpnt->cmnd[0];
1637         unsigned char unmap = SCpnt->cmnd[1] & 8;
1638
1639         if (req->cmd_flags & REQ_DISCARD || req->cmd_flags & REQ_WRITE_SAME) {
1640                 if (!result) {
1641                         good_bytes = blk_rq_bytes(req);
1642                         scsi_set_resid(SCpnt, 0);
1643                 } else {
1644                         good_bytes = 0;
1645                         scsi_set_resid(SCpnt, blk_rq_bytes(req));
1646                 }
1647         }
1648
1649         if (result) {
1650                 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
1651                 if (sense_valid)
1652                         sense_deferred = scsi_sense_is_deferred(&sshdr);
1653         }
1654 #ifdef CONFIG_SCSI_LOGGING
1655         SCSI_LOG_HLCOMPLETE(1, scsi_print_result(SCpnt));
1656         if (sense_valid) {
1657                 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, SCpnt,
1658                                                    "sd_done: sb[respc,sk,asc,"
1659                                                    "ascq]=%x,%x,%x,%x\n",
1660                                                    sshdr.response_code,
1661                                                    sshdr.sense_key, sshdr.asc,
1662                                                    sshdr.ascq));
1663         }
1664 #endif
1665         if (driver_byte(result) != DRIVER_SENSE &&
1666             (!sense_valid || sense_deferred))
1667                 goto out;
1668
1669         sdkp->medium_access_timed_out = 0;
1670
1671         switch (sshdr.sense_key) {
1672         case HARDWARE_ERROR:
1673         case MEDIUM_ERROR:
1674                 good_bytes = sd_completed_bytes(SCpnt);
1675                 break;
1676         case RECOVERED_ERROR:
1677                 good_bytes = scsi_bufflen(SCpnt);
1678                 break;
1679         case NO_SENSE:
1680                 /* This indicates a false check condition, so ignore it.  An
1681                  * unknown amount of data was transferred so treat it as an
1682                  * error.
1683                  */
1684                 scsi_print_sense("sd", SCpnt);
1685                 SCpnt->result = 0;
1686                 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
1687                 break;
1688         case ABORTED_COMMAND:
1689                 if (sshdr.asc == 0x10)  /* DIF: Target detected corruption */
1690                         good_bytes = sd_completed_bytes(SCpnt);
1691                 break;
1692         case ILLEGAL_REQUEST:
1693                 if (sshdr.asc == 0x10)  /* DIX: Host detected corruption */
1694                         good_bytes = sd_completed_bytes(SCpnt);
1695                 /* INVALID COMMAND OPCODE or INVALID FIELD IN CDB */
1696                 if (sshdr.asc == 0x20 || sshdr.asc == 0x24) {
1697                         switch (op) {
1698                         case UNMAP:
1699                                 sd_config_discard(sdkp, SD_LBP_DISABLE);
1700                                 break;
1701                         case WRITE_SAME_16:
1702                         case WRITE_SAME:
1703                                 if (unmap)
1704                                         sd_config_discard(sdkp, SD_LBP_DISABLE);
1705                                 else {
1706                                         sdkp->device->no_write_same = 1;
1707                                         sd_config_write_same(sdkp);
1708
1709                                         good_bytes = 0;
1710                                         req->__data_len = blk_rq_bytes(req);
1711                                         req->cmd_flags |= REQ_QUIET;
1712                                 }
1713                         }
1714                 }
1715                 break;
1716         default:
1717                 break;
1718         }
1719  out:
1720         if (rq_data_dir(SCpnt->request) == READ && scsi_prot_sg_count(SCpnt))
1721                 sd_dif_complete(SCpnt, good_bytes);
1722
1723         if (scsi_host_dif_capable(sdkp->device->host, sdkp->protection_type)
1724             == SD_DIF_TYPE2_PROTECTION && SCpnt->cmnd != SCpnt->request->cmd) {
1725
1726                 /* We have to print a failed command here as the
1727                  * extended CDB gets freed before scsi_io_completion()
1728                  * is called.
1729                  */
1730                 if (result)
1731                         scsi_print_command(SCpnt);
1732
1733                 mempool_free(SCpnt->cmnd, sd_cdb_pool);
1734                 SCpnt->cmnd = NULL;
1735                 SCpnt->cmd_len = 0;
1736         }
1737
1738         return good_bytes;
1739 }
1740
1741 /*
1742  * spinup disk - called only in sd_revalidate_disk()
1743  */
1744 static void
1745 sd_spinup_disk(struct scsi_disk *sdkp)
1746 {
1747         unsigned char cmd[10];
1748         unsigned long spintime_expire = 0;
1749         int retries, spintime;
1750         unsigned int the_result;
1751         struct scsi_sense_hdr sshdr;
1752         int sense_valid = 0;
1753
1754         spintime = 0;
1755
1756         /* Spin up drives, as required.  Only do this at boot time */
1757         /* Spinup needs to be done for module loads too. */
1758         do {
1759                 retries = 0;
1760
1761                 do {
1762                         cmd[0] = TEST_UNIT_READY;
1763                         memset((void *) &cmd[1], 0, 9);
1764
1765                         the_result = scsi_execute_req(sdkp->device, cmd,
1766                                                       DMA_NONE, NULL, 0,
1767                                                       &sshdr, SD_TIMEOUT,
1768                                                       SD_MAX_RETRIES, NULL);
1769
1770                         /*
1771                          * If the drive has indicated to us that it
1772                          * doesn't have any media in it, don't bother
1773                          * with any more polling.
1774                          */
1775                         if (media_not_present(sdkp, &sshdr))
1776                                 return;
1777
1778                         if (the_result)
1779                                 sense_valid = scsi_sense_valid(&sshdr);
1780                         retries++;
1781                 } while (retries < 3 && 
1782                          (!scsi_status_is_good(the_result) ||
1783                           ((driver_byte(the_result) & DRIVER_SENSE) &&
1784                           sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1785
1786                 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1787                         /* no sense, TUR either succeeded or failed
1788                          * with a status error */
1789                         if(!spintime && !scsi_status_is_good(the_result)) {
1790                                 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1791                                 sd_print_result(sdkp, the_result);
1792                         }
1793                         break;
1794                 }
1795                                         
1796                 /*
1797                  * The device does not want the automatic start to be issued.
1798                  */
1799                 if (sdkp->device->no_start_on_add)
1800                         break;
1801
1802                 if (sense_valid && sshdr.sense_key == NOT_READY) {
1803                         if (sshdr.asc == 4 && sshdr.ascq == 3)
1804                                 break;  /* manual intervention required */
1805                         if (sshdr.asc == 4 && sshdr.ascq == 0xb)
1806                                 break;  /* standby */
1807                         if (sshdr.asc == 4 && sshdr.ascq == 0xc)
1808                                 break;  /* unavailable */
1809                         /*
1810                          * Issue command to spin up drive when not ready
1811                          */
1812                         if (!spintime) {
1813                                 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
1814                                 cmd[0] = START_STOP;
1815                                 cmd[1] = 1;     /* Return immediately */
1816                                 memset((void *) &cmd[2], 0, 8);
1817                                 cmd[4] = 1;     /* Start spin cycle */
1818                                 if (sdkp->device->start_stop_pwr_cond)
1819                                         cmd[4] |= 1 << 4;
1820                                 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1821                                                  NULL, 0, &sshdr,
1822                                                  SD_TIMEOUT, SD_MAX_RETRIES,
1823                                                  NULL);
1824                                 spintime_expire = jiffies + 100 * HZ;
1825                                 spintime = 1;
1826                         }
1827                         /* Wait 1 second for next try */
1828                         msleep(1000);
1829                         printk(".");
1830
1831                 /*
1832                  * Wait for USB flash devices with slow firmware.
1833                  * Yes, this sense key/ASC combination shouldn't
1834                  * occur here.  It's characteristic of these devices.
1835                  */
1836                 } else if (sense_valid &&
1837                                 sshdr.sense_key == UNIT_ATTENTION &&
1838                                 sshdr.asc == 0x28) {
1839                         if (!spintime) {
1840                                 spintime_expire = jiffies + 5 * HZ;
1841                                 spintime = 1;
1842                         }
1843                         /* Wait 1 second for next try */
1844                         msleep(1000);
1845                 } else {
1846                         /* we don't understand the sense code, so it's
1847                          * probably pointless to loop */
1848                         if(!spintime) {
1849                                 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1850                                 sd_print_sense_hdr(sdkp, &sshdr);
1851                         }
1852                         break;
1853                 }
1854                                 
1855         } while (spintime && time_before_eq(jiffies, spintime_expire));
1856
1857         if (spintime) {
1858                 if (scsi_status_is_good(the_result))
1859                         printk("ready\n");
1860                 else
1861                         printk("not responding...\n");
1862         }
1863 }
1864
1865
1866 /*
1867  * Determine whether disk supports Data Integrity Field.
1868  */
1869 static int sd_read_protection_type(struct scsi_disk *sdkp, unsigned char *buffer)
1870 {
1871         struct scsi_device *sdp = sdkp->device;
1872         u8 type;
1873         int ret = 0;
1874
1875         if (scsi_device_protection(sdp) == 0 || (buffer[12] & 1) == 0)
1876                 return ret;
1877
1878         type = ((buffer[12] >> 1) & 7) + 1; /* P_TYPE 0 = Type 1 */
1879
1880         if (type > SD_DIF_TYPE3_PROTECTION)
1881                 ret = -ENODEV;
1882         else if (scsi_host_dif_capable(sdp->host, type))
1883                 ret = 1;
1884
1885         if (sdkp->first_scan || type != sdkp->protection_type)
1886                 switch (ret) {
1887                 case -ENODEV:
1888                         sd_printk(KERN_ERR, sdkp, "formatted with unsupported" \
1889                                   " protection type %u. Disabling disk!\n",
1890                                   type);
1891                         break;
1892                 case 1:
1893                         sd_printk(KERN_NOTICE, sdkp,
1894                                   "Enabling DIF Type %u protection\n", type);
1895                         break;
1896                 case 0:
1897                         sd_printk(KERN_NOTICE, sdkp,
1898                                   "Disabling DIF Type %u protection\n", type);
1899                         break;
1900                 }
1901
1902         sdkp->protection_type = type;
1903
1904         return ret;
1905 }
1906
1907 static void read_capacity_error(struct scsi_disk *sdkp, struct scsi_device *sdp,
1908                         struct scsi_sense_hdr *sshdr, int sense_valid,
1909                         int the_result)
1910 {
1911         sd_print_result(sdkp, the_result);
1912         if (driver_byte(the_result) & DRIVER_SENSE)
1913                 sd_print_sense_hdr(sdkp, sshdr);
1914         else
1915                 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
1916
1917         /*
1918          * Set dirty bit for removable devices if not ready -
1919          * sometimes drives will not report this properly.
1920          */
1921         if (sdp->removable &&
1922             sense_valid && sshdr->sense_key == NOT_READY)
1923                 set_media_not_present(sdkp);
1924
1925         /*
1926          * We used to set media_present to 0 here to indicate no media
1927          * in the drive, but some drives fail read capacity even with
1928          * media present, so we can't do that.
1929          */
1930         sdkp->capacity = 0; /* unknown mapped to zero - as usual */
1931 }
1932
1933 #define RC16_LEN 32
1934 #if RC16_LEN > SD_BUF_SIZE
1935 #error RC16_LEN must not be more than SD_BUF_SIZE
1936 #endif
1937
1938 #define READ_CAPACITY_RETRIES_ON_RESET  10
1939
1940 static int read_capacity_16(struct scsi_disk *sdkp, struct scsi_device *sdp,
1941                                                 unsigned char *buffer)
1942 {
1943         unsigned char cmd[16];
1944         struct scsi_sense_hdr sshdr;
1945         int sense_valid = 0;
1946         int the_result;
1947         int retries = 3, reset_retries = READ_CAPACITY_RETRIES_ON_RESET;
1948         unsigned int alignment;
1949         unsigned long long lba;
1950         unsigned sector_size;
1951
1952         if (sdp->no_read_capacity_16)
1953                 return -EINVAL;
1954
1955         do {
1956                 memset(cmd, 0, 16);
1957                 cmd[0] = SERVICE_ACTION_IN;
1958                 cmd[1] = SAI_READ_CAPACITY_16;
1959                 cmd[13] = RC16_LEN;
1960                 memset(buffer, 0, RC16_LEN);
1961
1962                 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
1963                                         buffer, RC16_LEN, &sshdr,
1964                                         SD_TIMEOUT, SD_MAX_RETRIES, NULL);
1965
1966                 if (media_not_present(sdkp, &sshdr))
1967                         return -ENODEV;
1968
1969                 if (the_result) {
1970                         sense_valid = scsi_sense_valid(&sshdr);
1971                         if (sense_valid &&
1972                             sshdr.sense_key == ILLEGAL_REQUEST &&
1973                             (sshdr.asc == 0x20 || sshdr.asc == 0x24) &&
1974                             sshdr.ascq == 0x00)
1975                                 /* Invalid Command Operation Code or
1976                                  * Invalid Field in CDB, just retry
1977                                  * silently with RC10 */
1978                                 return -EINVAL;
1979                         if (sense_valid &&
1980                             sshdr.sense_key == UNIT_ATTENTION &&
1981                             sshdr.asc == 0x29 && sshdr.ascq == 0x00)
1982                                 /* Device reset might occur several times,
1983                                  * give it one more chance */
1984                                 if (--reset_retries > 0)
1985                                         continue;
1986                 }
1987                 retries--;
1988
1989         } while (the_result && retries);
1990
1991         if (the_result) {
1992                 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY(16) failed\n");
1993                 read_capacity_error(sdkp, sdp, &sshdr, sense_valid, the_result);
1994                 return -EINVAL;
1995         }
1996
1997         sector_size = get_unaligned_be32(&buffer[8]);
1998         lba = get_unaligned_be64(&buffer[0]);
1999
2000         if (sd_read_protection_type(sdkp, buffer) < 0) {
2001                 sdkp->capacity = 0;
2002                 return -ENODEV;
2003         }
2004
2005         if ((sizeof(sdkp->capacity) == 4) && (lba >= 0xffffffffULL)) {
2006                 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use a "
2007                         "kernel compiled with support for large block "
2008                         "devices.\n");
2009                 sdkp->capacity = 0;
2010                 return -EOVERFLOW;
2011         }
2012
2013         /* Logical blocks per physical block exponent */
2014         sdkp->physical_block_size = (1 << (buffer[13] & 0xf)) * sector_size;
2015
2016         /* Lowest aligned logical block */
2017         alignment = ((buffer[14] & 0x3f) << 8 | buffer[15]) * sector_size;
2018         blk_queue_alignment_offset(sdp->request_queue, alignment);
2019         if (alignment && sdkp->first_scan)
2020                 sd_printk(KERN_NOTICE, sdkp,
2021                           "physical block alignment offset: %u\n", alignment);
2022
2023         if (buffer[14] & 0x80) { /* LBPME */
2024                 sdkp->lbpme = 1;
2025
2026                 if (buffer[14] & 0x40) /* LBPRZ */
2027                         sdkp->lbprz = 1;
2028
2029                 sd_config_discard(sdkp, SD_LBP_WS16);
2030         }
2031
2032         sdkp->capacity = lba + 1;
2033         return sector_size;
2034 }
2035
2036 static int read_capacity_10(struct scsi_disk *sdkp, struct scsi_device *sdp,
2037                                                 unsigned char *buffer)
2038 {
2039         unsigned char cmd[16];
2040         struct scsi_sense_hdr sshdr;
2041         int sense_valid = 0;
2042         int the_result;
2043         int retries = 3, reset_retries = READ_CAPACITY_RETRIES_ON_RESET;
2044         sector_t lba;
2045         unsigned sector_size;
2046
2047         do {
2048                 cmd[0] = READ_CAPACITY;
2049                 memset(&cmd[1], 0, 9);
2050                 memset(buffer, 0, 8);
2051
2052                 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
2053                                         buffer, 8, &sshdr,
2054                                         SD_TIMEOUT, SD_MAX_RETRIES, NULL);
2055
2056                 if (media_not_present(sdkp, &sshdr))
2057                         return -ENODEV;
2058
2059                 if (the_result) {
2060                         sense_valid = scsi_sense_valid(&sshdr);
2061                         if (sense_valid &&
2062                             sshdr.sense_key == UNIT_ATTENTION &&
2063                             sshdr.asc == 0x29 && sshdr.ascq == 0x00)
2064                                 /* Device reset might occur several times,
2065                                  * give it one more chance */
2066                                 if (--reset_retries > 0)
2067                                         continue;
2068                 }
2069                 retries--;
2070
2071         } while (the_result && retries);
2072
2073         if (the_result) {
2074                 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY failed\n");
2075                 read_capacity_error(sdkp, sdp, &sshdr, sense_valid, the_result);
2076                 return -EINVAL;
2077         }
2078
2079         sector_size = get_unaligned_be32(&buffer[4]);
2080         lba = get_unaligned_be32(&buffer[0]);
2081
2082         if (sdp->no_read_capacity_16 && (lba == 0xffffffff)) {
2083                 /* Some buggy (usb cardreader) devices return an lba of
2084                    0xffffffff when the want to report a size of 0 (with
2085                    which they really mean no media is present) */
2086                 sdkp->capacity = 0;
2087                 sdkp->physical_block_size = sector_size;
2088                 return sector_size;
2089         }
2090
2091         if ((sizeof(sdkp->capacity) == 4) && (lba == 0xffffffff)) {
2092                 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use a "
2093                         "kernel compiled with support for large block "
2094                         "devices.\n");
2095                 sdkp->capacity = 0;
2096                 return -EOVERFLOW;
2097         }
2098
2099         sdkp->capacity = lba + 1;
2100         sdkp->physical_block_size = sector_size;
2101         return sector_size;
2102 }
2103
2104 static int sd_try_rc16_first(struct scsi_device *sdp)
2105 {
2106         if (sdp->host->max_cmd_len < 16)
2107                 return 0;
2108         if (sdp->try_rc_10_first)
2109                 return 0;
2110         if (sdp->scsi_level > SCSI_SPC_2)
2111                 return 1;
2112         if (scsi_device_protection(sdp))
2113                 return 1;
2114         return 0;
2115 }
2116
2117 /*
2118  * read disk capacity
2119  */
2120 static void
2121 sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
2122 {
2123         int sector_size;
2124         struct scsi_device *sdp = sdkp->device;
2125         sector_t old_capacity = sdkp->capacity;
2126
2127         if (sd_try_rc16_first(sdp)) {
2128                 sector_size = read_capacity_16(sdkp, sdp, buffer);
2129                 if (sector_size == -EOVERFLOW)
2130                         goto got_data;
2131                 if (sector_size == -ENODEV)
2132                         return;
2133                 if (sector_size < 0)
2134                         sector_size = read_capacity_10(sdkp, sdp, buffer);
2135                 if (sector_size < 0)
2136                         return;
2137         } else {
2138                 sector_size = read_capacity_10(sdkp, sdp, buffer);
2139                 if (sector_size == -EOVERFLOW)
2140                         goto got_data;
2141                 if (sector_size < 0)
2142                         return;
2143                 if ((sizeof(sdkp->capacity) > 4) &&
2144                     (sdkp->capacity > 0xffffffffULL)) {
2145                         int old_sector_size = sector_size;
2146                         sd_printk(KERN_NOTICE, sdkp, "Very big device. "
2147                                         "Trying to use READ CAPACITY(16).\n");
2148                         sector_size = read_capacity_16(sdkp, sdp, buffer);
2149                         if (sector_size < 0) {
2150                                 sd_printk(KERN_NOTICE, sdkp,
2151                                         "Using 0xffffffff as device size\n");
2152                                 sdkp->capacity = 1 + (sector_t) 0xffffffff;
2153                                 sector_size = old_sector_size;
2154                                 goto got_data;
2155                         }
2156                 }
2157         }
2158
2159         /* Some devices are known to return the total number of blocks,
2160          * not the highest block number.  Some devices have versions
2161          * which do this and others which do not.  Some devices we might
2162          * suspect of doing this but we don't know for certain.
2163          *
2164          * If we know the reported capacity is wrong, decrement it.  If
2165          * we can only guess, then assume the number of blocks is even
2166          * (usually true but not always) and err on the side of lowering
2167          * the capacity.
2168          */
2169         if (sdp->fix_capacity ||
2170             (sdp->guess_capacity && (sdkp->capacity & 0x01))) {
2171                 sd_printk(KERN_INFO, sdkp, "Adjusting the sector count "
2172                                 "from its reported value: %llu\n",
2173                                 (unsigned long long) sdkp->capacity);
2174                 --sdkp->capacity;
2175         }
2176
2177 got_data:
2178         if (sector_size == 0) {
2179                 sector_size = 512;
2180                 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
2181                           "assuming 512.\n");
2182         }
2183
2184         if (sector_size != 512 &&
2185             sector_size != 1024 &&
2186             sector_size != 2048 &&
2187             sector_size != 4096 &&
2188             sector_size != 256) {
2189                 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
2190                           sector_size);
2191                 /*
2192                  * The user might want to re-format the drive with
2193                  * a supported sectorsize.  Once this happens, it
2194                  * would be relatively trivial to set the thing up.
2195                  * For this reason, we leave the thing in the table.
2196                  */
2197                 sdkp->capacity = 0;
2198                 /*
2199                  * set a bogus sector size so the normal read/write
2200                  * logic in the block layer will eventually refuse any
2201                  * request on this device without tripping over power
2202                  * of two sector size assumptions
2203                  */
2204                 sector_size = 512;
2205         }
2206         blk_queue_logical_block_size(sdp->request_queue, sector_size);
2207
2208         {
2209                 char cap_str_2[10], cap_str_10[10];
2210                 u64 sz = (u64)sdkp->capacity << ilog2(sector_size);
2211
2212                 string_get_size(sz, STRING_UNITS_2, cap_str_2,
2213                                 sizeof(cap_str_2));
2214                 string_get_size(sz, STRING_UNITS_10, cap_str_10,
2215                                 sizeof(cap_str_10));
2216
2217                 if (sdkp->first_scan || old_capacity != sdkp->capacity) {
2218                         sd_printk(KERN_NOTICE, sdkp,
2219                                   "%llu %d-byte logical blocks: (%s/%s)\n",
2220                                   (unsigned long long)sdkp->capacity,
2221                                   sector_size, cap_str_10, cap_str_2);
2222
2223                         if (sdkp->physical_block_size != sector_size)
2224                                 sd_printk(KERN_NOTICE, sdkp,
2225                                           "%u-byte physical blocks\n",
2226                                           sdkp->physical_block_size);
2227                 }
2228         }
2229
2230         sdp->use_16_for_rw = (sdkp->capacity > 0xffffffff);
2231
2232         /* Rescale capacity to 512-byte units */
2233         if (sector_size == 4096)
2234                 sdkp->capacity <<= 3;
2235         else if (sector_size == 2048)
2236                 sdkp->capacity <<= 2;
2237         else if (sector_size == 1024)
2238                 sdkp->capacity <<= 1;
2239         else if (sector_size == 256)
2240                 sdkp->capacity >>= 1;
2241
2242         blk_queue_physical_block_size(sdp->request_queue,
2243                                       sdkp->physical_block_size);
2244         sdkp->device->sector_size = sector_size;
2245 }
2246
2247 /* called with buffer of length 512 */
2248 static inline int
2249 sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
2250                  unsigned char *buffer, int len, struct scsi_mode_data *data,
2251                  struct scsi_sense_hdr *sshdr)
2252 {
2253         return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
2254                                SD_TIMEOUT, SD_MAX_RETRIES, data,
2255                                sshdr);
2256 }
2257
2258 /*
2259  * read write protect setting, if possible - called only in sd_revalidate_disk()
2260  * called with buffer of length SD_BUF_SIZE
2261  */
2262 static void
2263 sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
2264 {
2265         int res;
2266         struct scsi_device *sdp = sdkp->device;
2267         struct scsi_mode_data data;
2268         int old_wp = sdkp->write_prot;
2269
2270         set_disk_ro(sdkp->disk, 0);
2271         if (sdp->skip_ms_page_3f) {
2272                 sd_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
2273                 return;
2274         }
2275
2276         if (sdp->use_192_bytes_for_3f) {
2277                 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
2278         } else {
2279                 /*
2280                  * First attempt: ask for all pages (0x3F), but only 4 bytes.
2281                  * We have to start carefully: some devices hang if we ask
2282                  * for more than is available.
2283                  */
2284                 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
2285
2286                 /*
2287                  * Second attempt: ask for page 0 When only page 0 is
2288                  * implemented, a request for page 3F may return Sense Key
2289                  * 5: Illegal Request, Sense Code 24: Invalid field in
2290                  * CDB.
2291                  */
2292                 if (!scsi_status_is_good(res))
2293                         res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
2294
2295                 /*
2296                  * Third attempt: ask 255 bytes, as we did earlier.
2297                  */
2298                 if (!scsi_status_is_good(res))
2299                         res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
2300                                                &data, NULL);
2301         }
2302
2303         if (!scsi_status_is_good(res)) {
2304                 sd_printk(KERN_WARNING, sdkp,
2305                           "Test WP failed, assume Write Enabled\n");
2306         } else {
2307                 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
2308                 set_disk_ro(sdkp->disk, sdkp->write_prot);
2309                 if (sdkp->first_scan || old_wp != sdkp->write_prot) {
2310                         sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
2311                                   sdkp->write_prot ? "on" : "off");
2312                         sd_printk(KERN_DEBUG, sdkp,
2313                                   "Mode Sense: %02x %02x %02x %02x\n",
2314                                   buffer[0], buffer[1], buffer[2], buffer[3]);
2315                 }
2316         }
2317 }
2318
2319 /*
2320  * sd_read_cache_type - called only from sd_revalidate_disk()
2321  * called with buffer of length SD_BUF_SIZE
2322  */
2323 static void
2324 sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
2325 {
2326         int len = 0, res;
2327         struct scsi_device *sdp = sdkp->device;
2328
2329         int dbd;
2330         int modepage;
2331         int first_len;
2332         struct scsi_mode_data data;
2333         struct scsi_sense_hdr sshdr;
2334         int old_wce = sdkp->WCE;
2335         int old_rcd = sdkp->RCD;
2336         int old_dpofua = sdkp->DPOFUA;
2337
2338
2339         if (sdkp->cache_override)
2340                 return;
2341
2342         first_len = 4;
2343         if (sdp->skip_ms_page_8) {
2344                 if (sdp->type == TYPE_RBC)
2345                         goto defaults;
2346                 else {
2347                         if (sdp->skip_ms_page_3f)
2348                                 goto defaults;
2349                         modepage = 0x3F;
2350                         if (sdp->use_192_bytes_for_3f)
2351                                 first_len = 192;
2352                         dbd = 0;
2353                 }
2354         } else if (sdp->type == TYPE_RBC) {
2355                 modepage = 6;
2356                 dbd = 8;
2357         } else {
2358                 modepage = 8;
2359                 dbd = 0;
2360         }
2361
2362         /* cautiously ask */
2363         res = sd_do_mode_sense(sdp, dbd, modepage, buffer, first_len,
2364                         &data, &sshdr);
2365
2366         if (!scsi_status_is_good(res))
2367                 goto bad_sense;
2368
2369         if (!data.header_length) {
2370                 modepage = 6;
2371                 first_len = 0;
2372                 sd_printk(KERN_ERR, sdkp, "Missing header in MODE_SENSE response\n");
2373         }
2374
2375         /* that went OK, now ask for the proper length */
2376         len = data.length;
2377
2378         /*
2379          * We're only interested in the first three bytes, actually.
2380          * But the data cache page is defined for the first 20.
2381          */
2382         if (len < 3)
2383                 goto bad_sense;
2384         else if (len > SD_BUF_SIZE) {
2385                 sd_printk(KERN_NOTICE, sdkp, "Truncating mode parameter "
2386                           "data from %d to %d bytes\n", len, SD_BUF_SIZE);
2387                 len = SD_BUF_SIZE;
2388         }
2389         if (modepage == 0x3F && sdp->use_192_bytes_for_3f)
2390                 len = 192;
2391
2392         /* Get the data */
2393         if (len > first_len)
2394                 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len,
2395                                 &data, &sshdr);
2396
2397         if (scsi_status_is_good(res)) {
2398                 int offset = data.header_length + data.block_descriptor_length;
2399
2400                 while (offset < len) {
2401                         u8 page_code = buffer[offset] & 0x3F;
2402                         u8 spf       = buffer[offset] & 0x40;
2403
2404                         if (page_code == 8 || page_code == 6) {
2405                                 /* We're interested only in the first 3 bytes.
2406                                  */
2407                                 if (len - offset <= 2) {
2408                                         sd_printk(KERN_ERR, sdkp, "Incomplete "
2409                                                   "mode parameter data\n");
2410                                         goto defaults;
2411                                 } else {
2412                                         modepage = page_code;
2413                                         goto Page_found;
2414                                 }
2415                         } else {
2416                                 /* Go to the next page */
2417                                 if (spf && len - offset > 3)
2418                                         offset += 4 + (buffer[offset+2] << 8) +
2419                                                 buffer[offset+3];
2420                                 else if (!spf && len - offset > 1)
2421                                         offset += 2 + buffer[offset+1];
2422                                 else {
2423                                         sd_printk(KERN_ERR, sdkp, "Incomplete "
2424                                                   "mode parameter data\n");
2425                                         goto defaults;
2426                                 }
2427                         }
2428                 }
2429
2430                 if (modepage == 0x3F) {
2431                         sd_printk(KERN_ERR, sdkp, "No Caching mode page "
2432                                   "present\n");
2433                         goto defaults;
2434                 } else if ((buffer[offset] & 0x3f) != modepage) {
2435                         sd_printk(KERN_ERR, sdkp, "Got wrong page\n");
2436                         goto defaults;
2437                 }
2438         Page_found:
2439                 if (modepage == 8) {
2440                         sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
2441                         sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
2442                 } else {
2443                         sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
2444                         sdkp->RCD = 0;
2445                 }
2446
2447                 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
2448                 if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
2449                         sd_printk(KERN_NOTICE, sdkp,
2450                                   "Uses READ/WRITE(6), disabling FUA\n");
2451                         sdkp->DPOFUA = 0;
2452                 }
2453
2454                 if (sdkp->first_scan || old_wce != sdkp->WCE ||
2455                     old_rcd != sdkp->RCD || old_dpofua != sdkp->DPOFUA)
2456                         sd_printk(KERN_NOTICE, sdkp,
2457                                   "Write cache: %s, read cache: %s, %s\n",
2458                                   sdkp->WCE ? "enabled" : "disabled",
2459                                   sdkp->RCD ? "disabled" : "enabled",
2460                                   sdkp->DPOFUA ? "supports DPO and FUA"
2461                                   : "doesn't support DPO or FUA");
2462
2463                 return;
2464         }
2465
2466 bad_sense:
2467         if (scsi_sense_valid(&sshdr) &&
2468             sshdr.sense_key == ILLEGAL_REQUEST &&
2469             sshdr.asc == 0x24 && sshdr.ascq == 0x0)
2470                 /* Invalid field in CDB */
2471                 sd_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
2472         else
2473                 sd_printk(KERN_ERR, sdkp, "Asking for cache data failed\n");
2474
2475 defaults:
2476         if (sdp->wce_default_on) {
2477                 sd_printk(KERN_NOTICE, sdkp, "Assuming drive cache: write back\n");
2478                 sdkp->WCE = 1;
2479         } else {
2480                 sd_printk(KERN_ERR, sdkp, "Assuming drive cache: write through\n");
2481                 sdkp->WCE = 0;
2482         }
2483         sdkp->RCD = 0;
2484         sdkp->DPOFUA = 0;
2485 }
2486
2487 /*
2488  * The ATO bit indicates whether the DIF application tag is available
2489  * for use by the operating system.
2490  */
2491 static void sd_read_app_tag_own(struct scsi_disk *sdkp, unsigned char *buffer)
2492 {
2493         int res, offset;
2494         struct scsi_device *sdp = sdkp->device;
2495         struct scsi_mode_data data;
2496         struct scsi_sense_hdr sshdr;
2497
2498         if (sdp->type != TYPE_DISK)
2499                 return;
2500
2501         if (sdkp->protection_type == 0)
2502                 return;
2503
2504         res = scsi_mode_sense(sdp, 1, 0x0a, buffer, 36, SD_TIMEOUT,
2505                               SD_MAX_RETRIES, &data, &sshdr);
2506
2507         if (!scsi_status_is_good(res) || !data.header_length ||
2508             data.length < 6) {
2509                 sd_printk(KERN_WARNING, sdkp,
2510                           "getting Control mode page failed, assume no ATO\n");
2511
2512                 if (scsi_sense_valid(&sshdr))
2513                         sd_print_sense_hdr(sdkp, &sshdr);
2514
2515                 return;
2516         }
2517
2518         offset = data.header_length + data.block_descriptor_length;
2519
2520         if ((buffer[offset] & 0x3f) != 0x0a) {
2521                 sd_printk(KERN_ERR, sdkp, "ATO Got wrong page\n");
2522                 return;
2523         }
2524
2525         if ((buffer[offset + 5] & 0x80) == 0)
2526                 return;
2527
2528         sdkp->ATO = 1;
2529
2530         return;
2531 }
2532
2533 /**
2534  * sd_read_block_limits - Query disk device for preferred I/O sizes.
2535  * @disk: disk to query
2536  */
2537 static void sd_read_block_limits(struct scsi_disk *sdkp)
2538 {
2539         unsigned int sector_sz = sdkp->device->sector_size;
2540         const int vpd_len = 64;
2541         unsigned char *buffer = kmalloc(vpd_len, GFP_KERNEL);
2542
2543         if (!buffer ||
2544             /* Block Limits VPD */
2545             scsi_get_vpd_page(sdkp->device, 0xb0, buffer, vpd_len))
2546                 goto out;
2547
2548         blk_queue_io_min(sdkp->disk->queue,
2549                          get_unaligned_be16(&buffer[6]) * sector_sz);
2550         blk_queue_io_opt(sdkp->disk->queue,
2551                          get_unaligned_be32(&buffer[12]) * sector_sz);
2552
2553         if (buffer[3] == 0x3c) {
2554                 unsigned int lba_count, desc_count;
2555
2556                 sdkp->max_ws_blocks = (u32)get_unaligned_be64(&buffer[36]);
2557
2558                 if (!sdkp->lbpme)
2559                         goto out;
2560
2561                 lba_count = get_unaligned_be32(&buffer[20]);
2562                 desc_count = get_unaligned_be32(&buffer[24]);
2563
2564                 if (lba_count && desc_count)
2565                         sdkp->max_unmap_blocks = lba_count;
2566
2567                 sdkp->unmap_granularity = get_unaligned_be32(&buffer[28]);
2568
2569                 if (buffer[32] & 0x80)
2570                         sdkp->unmap_alignment =
2571                                 get_unaligned_be32(&buffer[32]) & ~(1 << 31);
2572
2573                 if (!sdkp->lbpvpd) { /* LBP VPD page not provided */
2574
2575                         if (sdkp->max_unmap_blocks)
2576                                 sd_config_discard(sdkp, SD_LBP_UNMAP);
2577                         else
2578                                 sd_config_discard(sdkp, SD_LBP_WS16);
2579
2580                 } else {        /* LBP VPD page tells us what to use */
2581
2582                         if (sdkp->lbpu && sdkp->max_unmap_blocks)
2583                                 sd_config_discard(sdkp, SD_LBP_UNMAP);
2584                         else if (sdkp->lbpws)
2585                                 sd_config_discard(sdkp, SD_LBP_WS16);
2586                         else if (sdkp->lbpws10)
2587                                 sd_config_discard(sdkp, SD_LBP_WS10);
2588                         else
2589                                 sd_config_discard(sdkp, SD_LBP_DISABLE);
2590                 }
2591         }
2592
2593  out:
2594         kfree(buffer);
2595 }
2596
2597 /**
2598  * sd_read_block_characteristics - Query block dev. characteristics
2599  * @disk: disk to query
2600  */
2601 static void sd_read_block_characteristics(struct scsi_disk *sdkp)
2602 {
2603         unsigned char *buffer;
2604         u16 rot;
2605         const int vpd_len = 64;
2606
2607         buffer = kmalloc(vpd_len, GFP_KERNEL);
2608
2609         if (!buffer ||
2610             /* Block Device Characteristics VPD */
2611             scsi_get_vpd_page(sdkp->device, 0xb1, buffer, vpd_len))
2612                 goto out;
2613
2614         rot = get_unaligned_be16(&buffer[4]);
2615
2616         if (rot == 1)
2617                 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, sdkp->disk->queue);
2618
2619  out:
2620         kfree(buffer);
2621 }
2622
2623 /**
2624  * sd_read_block_provisioning - Query provisioning VPD page
2625  * @disk: disk to query
2626  */
2627 static void sd_read_block_provisioning(struct scsi_disk *sdkp)
2628 {
2629         unsigned char *buffer;
2630         const int vpd_len = 8;
2631
2632         if (sdkp->lbpme == 0)
2633                 return;
2634
2635         buffer = kmalloc(vpd_len, GFP_KERNEL);
2636
2637         if (!buffer || scsi_get_vpd_page(sdkp->device, 0xb2, buffer, vpd_len))
2638                 goto out;
2639
2640         sdkp->lbpvpd    = 1;
2641         sdkp->lbpu      = (buffer[5] >> 7) & 1; /* UNMAP */
2642         sdkp->lbpws     = (buffer[5] >> 6) & 1; /* WRITE SAME(16) with UNMAP */
2643         sdkp->lbpws10   = (buffer[5] >> 5) & 1; /* WRITE SAME(10) with UNMAP */
2644
2645  out:
2646         kfree(buffer);
2647 }
2648
2649 static void sd_read_write_same(struct scsi_disk *sdkp, unsigned char *buffer)
2650 {
2651         struct scsi_device *sdev = sdkp->device;
2652
2653         if (scsi_report_opcode(sdev, buffer, SD_BUF_SIZE, INQUIRY) < 0) {
2654                 sdev->no_report_opcodes = 1;
2655
2656                 /* Disable WRITE SAME if REPORT SUPPORTED OPERATION
2657                  * CODES is unsupported and the device has an ATA
2658                  * Information VPD page (SAT).
2659                  */
2660                 if (!scsi_get_vpd_page(sdev, 0x89, buffer, SD_BUF_SIZE))
2661                         sdev->no_write_same = 1;
2662         }
2663
2664         if (scsi_report_opcode(sdev, buffer, SD_BUF_SIZE, WRITE_SAME_16) == 1)
2665                 sdkp->ws16 = 1;
2666
2667         if (scsi_report_opcode(sdev, buffer, SD_BUF_SIZE, WRITE_SAME) == 1)
2668                 sdkp->ws10 = 1;
2669 }
2670
2671 static int sd_try_extended_inquiry(struct scsi_device *sdp)
2672 {
2673         /*
2674          * Although VPD inquiries can go to SCSI-2 type devices,
2675          * some USB ones crash on receiving them, and the pages
2676          * we currently ask for are for SPC-3 and beyond
2677          */
2678         if (sdp->scsi_level > SCSI_SPC_2 && !sdp->skip_vpd_pages)
2679                 return 1;
2680         return 0;
2681 }
2682
2683 /**
2684  *      sd_revalidate_disk - called the first time a new disk is seen,
2685  *      performs disk spin up, read_capacity, etc.
2686  *      @disk: struct gendisk we care about
2687  **/
2688 static int sd_revalidate_disk(struct gendisk *disk)
2689 {
2690         struct scsi_disk *sdkp = scsi_disk(disk);
2691         struct scsi_device *sdp = sdkp->device;
2692         unsigned char *buffer;
2693         unsigned flush = 0;
2694
2695         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp,
2696                                       "sd_revalidate_disk\n"));
2697
2698         /*
2699          * If the device is offline, don't try and read capacity or any
2700          * of the other niceties.
2701          */
2702         if (!scsi_device_online(sdp))
2703                 goto out;
2704
2705         buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
2706         if (!buffer) {
2707                 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
2708                           "allocation failure.\n");
2709                 goto out;
2710         }
2711
2712         sd_spinup_disk(sdkp);
2713
2714         /*
2715          * Without media there is no reason to ask; moreover, some devices
2716          * react badly if we do.
2717          */
2718         if (sdkp->media_present) {
2719                 sd_read_capacity(sdkp, buffer);
2720
2721                 if (sd_try_extended_inquiry(sdp)) {
2722                         sd_read_block_provisioning(sdkp);
2723                         sd_read_block_limits(sdkp);
2724                         sd_read_block_characteristics(sdkp);
2725                 }
2726
2727                 sd_read_write_protect_flag(sdkp, buffer);
2728                 sd_read_cache_type(sdkp, buffer);
2729                 sd_read_app_tag_own(sdkp, buffer);
2730                 sd_read_write_same(sdkp, buffer);
2731         }
2732
2733         sdkp->first_scan = 0;
2734
2735         /*
2736          * We now have all cache related info, determine how we deal
2737          * with flush requests.
2738          */
2739         if (sdkp->WCE) {
2740                 flush |= REQ_FLUSH;
2741                 if (sdkp->DPOFUA)
2742                         flush |= REQ_FUA;
2743         }
2744
2745         blk_queue_flush(sdkp->disk->queue, flush);
2746
2747         set_capacity(disk, sdkp->capacity);
2748         sd_config_write_same(sdkp);
2749         kfree(buffer);
2750
2751  out:
2752         return 0;
2753 }
2754
2755 /**
2756  *      sd_unlock_native_capacity - unlock native capacity
2757  *      @disk: struct gendisk to set capacity for
2758  *
2759  *      Block layer calls this function if it detects that partitions
2760  *      on @disk reach beyond the end of the device.  If the SCSI host
2761  *      implements ->unlock_native_capacity() method, it's invoked to
2762  *      give it a chance to adjust the device capacity.
2763  *
2764  *      CONTEXT:
2765  *      Defined by block layer.  Might sleep.
2766  */
2767 static void sd_unlock_native_capacity(struct gendisk *disk)
2768 {
2769         struct scsi_device *sdev = scsi_disk(disk)->device;
2770
2771         if (sdev->host->hostt->unlock_native_capacity)
2772                 sdev->host->hostt->unlock_native_capacity(sdev);
2773 }
2774
2775 /**
2776  *      sd_format_disk_name - format disk name
2777  *      @prefix: name prefix - ie. "sd" for SCSI disks
2778  *      @index: index of the disk to format name for
2779  *      @buf: output buffer
2780  *      @buflen: length of the output buffer
2781  *
2782  *      SCSI disk names starts at sda.  The 26th device is sdz and the
2783  *      27th is sdaa.  The last one for two lettered suffix is sdzz
2784  *      which is followed by sdaaa.
2785  *
2786  *      This is basically 26 base counting with one extra 'nil' entry
2787  *      at the beginning from the second digit on and can be
2788  *      determined using similar method as 26 base conversion with the
2789  *      index shifted -1 after each digit is computed.
2790  *
2791  *      CONTEXT:
2792  *      Don't care.
2793  *
2794  *      RETURNS:
2795  *      0 on success, -errno on failure.
2796  */
2797 static int sd_format_disk_name(char *prefix, int index, char *buf, int buflen)
2798 {
2799         const int base = 'z' - 'a' + 1;
2800         char *begin = buf + strlen(prefix);
2801         char *end = buf + buflen;
2802         char *p;
2803         int unit;
2804
2805         p = end - 1;
2806         *p = '\0';
2807         unit = base;
2808         do {
2809                 if (p == begin)
2810                         return -EINVAL;
2811                 *--p = 'a' + (index % unit);
2812                 index = (index / unit) - 1;
2813         } while (index >= 0);
2814
2815         memmove(begin, p, end - p);
2816         memcpy(buf, prefix, strlen(prefix));
2817
2818         return 0;
2819 }
2820
2821 /*
2822  * The asynchronous part of sd_probe
2823  */
2824 static void sd_probe_async(void *data, async_cookie_t cookie)
2825 {
2826         struct scsi_disk *sdkp = data;
2827         struct scsi_device *sdp;
2828         struct gendisk *gd;
2829         u32 index;
2830         struct device *dev;
2831
2832         sdp = sdkp->device;
2833         gd = sdkp->disk;
2834         index = sdkp->index;
2835         dev = &sdp->sdev_gendev;
2836
2837         gd->major = sd_major((index & 0xf0) >> 4);
2838         gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
2839         gd->minors = SD_MINORS;
2840
2841         gd->fops = &sd_fops;
2842         gd->private_data = &sdkp->driver;
2843         gd->queue = sdkp->device->request_queue;
2844
2845         /* defaults, until the device tells us otherwise */
2846         sdp->sector_size = 512;
2847         sdkp->capacity = 0;
2848         sdkp->media_present = 1;
2849         sdkp->write_prot = 0;
2850         sdkp->cache_override = 0;
2851         sdkp->WCE = 0;
2852         sdkp->RCD = 0;
2853         sdkp->ATO = 0;
2854         sdkp->first_scan = 1;
2855         sdkp->max_medium_access_timeouts = SD_MAX_MEDIUM_TIMEOUTS;
2856
2857         sd_revalidate_disk(gd);
2858
2859         blk_queue_prep_rq(sdp->request_queue, sd_prep_fn);
2860         blk_queue_unprep_rq(sdp->request_queue, sd_unprep_fn);
2861
2862         gd->driverfs_dev = &sdp->sdev_gendev;
2863         gd->flags = GENHD_FL_EXT_DEVT;
2864         if (sdp->removable) {
2865                 gd->flags |= GENHD_FL_REMOVABLE;
2866                 gd->events |= DISK_EVENT_MEDIA_CHANGE;
2867         }
2868
2869         add_disk(gd);
2870         if (sdkp->capacity)
2871                 sd_dif_config_host(sdkp);
2872
2873         sd_revalidate_disk(gd);
2874
2875         sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
2876                   sdp->removable ? "removable " : "");
2877         blk_pm_runtime_init(sdp->request_queue, dev);
2878         scsi_autopm_put_device(sdp);
2879         put_device(&sdkp->dev);
2880 }
2881
2882 /**
2883  *      sd_probe - called during driver initialization and whenever a
2884  *      new scsi device is attached to the system. It is called once
2885  *      for each scsi device (not just disks) present.
2886  *      @dev: pointer to device object
2887  *
2888  *      Returns 0 if successful (or not interested in this scsi device 
2889  *      (e.g. scanner)); 1 when there is an error.
2890  *
2891  *      Note: this function is invoked from the scsi mid-level.
2892  *      This function sets up the mapping between a given 
2893  *      <host,channel,id,lun> (found in sdp) and new device name 
2894  *      (e.g. /dev/sda). More precisely it is the block device major 
2895  *      and minor number that is chosen here.
2896  *
2897  *      Assume sd_probe is not re-entrant (for time being)
2898  *      Also think about sd_probe() and sd_remove() running coincidentally.
2899  **/
2900 static int sd_probe(struct device *dev)
2901 {
2902         struct scsi_device *sdp = to_scsi_device(dev);
2903         struct scsi_disk *sdkp;
2904         struct gendisk *gd;
2905         int index;
2906         int error;
2907
2908         error = -ENODEV;
2909         if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
2910                 goto out;
2911
2912         SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
2913                                         "sd_probe\n"));
2914
2915         error = -ENOMEM;
2916         sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
2917         if (!sdkp)
2918                 goto out;
2919
2920         gd = alloc_disk(SD_MINORS);
2921         if (!gd)
2922                 goto out_free;
2923
2924         do {
2925                 if (!ida_pre_get(&sd_index_ida, GFP_KERNEL))
2926                         goto out_put;
2927
2928                 spin_lock(&sd_index_lock);
2929                 error = ida_get_new(&sd_index_ida, &index);
2930                 spin_unlock(&sd_index_lock);
2931         } while (error == -EAGAIN);
2932
2933         if (error) {
2934                 sdev_printk(KERN_WARNING, sdp, "sd_probe: memory exhausted.\n");
2935                 goto out_put;
2936         }
2937
2938         error = sd_format_disk_name("sd", index, gd->disk_name, DISK_NAME_LEN);
2939         if (error) {
2940                 sdev_printk(KERN_WARNING, sdp, "SCSI disk (sd) name length exceeded.\n");
2941                 goto out_free_index;
2942         }
2943
2944         sdkp->device = sdp;
2945         sdkp->driver = &sd_template;
2946         sdkp->disk = gd;
2947         sdkp->index = index;
2948         atomic_set(&sdkp->openers, 0);
2949         atomic_set(&sdkp->device->ioerr_cnt, 0);
2950
2951         if (!sdp->request_queue->rq_timeout) {
2952                 if (sdp->type != TYPE_MOD)
2953                         blk_queue_rq_timeout(sdp->request_queue, SD_TIMEOUT);
2954                 else
2955                         blk_queue_rq_timeout(sdp->request_queue,
2956                                              SD_MOD_TIMEOUT);
2957         }
2958
2959         device_initialize(&sdkp->dev);
2960         sdkp->dev.parent = dev;
2961         sdkp->dev.class = &sd_disk_class;
2962         dev_set_name(&sdkp->dev, "%s", dev_name(dev));
2963
2964         if (device_add(&sdkp->dev))
2965                 goto out_free_index;
2966
2967         get_device(dev);
2968         dev_set_drvdata(dev, sdkp);
2969
2970         get_device(&sdkp->dev); /* prevent release before async_schedule */
2971         async_schedule_domain(sd_probe_async, sdkp, &scsi_sd_probe_domain);
2972
2973         return 0;
2974
2975  out_free_index:
2976         spin_lock(&sd_index_lock);
2977         ida_remove(&sd_index_ida, index);
2978         spin_unlock(&sd_index_lock);
2979  out_put:
2980         put_disk(gd);
2981  out_free:
2982         kfree(sdkp);
2983  out:
2984         return error;
2985 }
2986
2987 /**
2988  *      sd_remove - called whenever a scsi disk (previously recognized by
2989  *      sd_probe) is detached from the system. It is called (potentially
2990  *      multiple times) during sd module unload.
2991  *      @sdp: pointer to mid level scsi device object
2992  *
2993  *      Note: this function is invoked from the scsi mid-level.
2994  *      This function potentially frees up a device name (e.g. /dev/sdc)
2995  *      that could be re-used by a subsequent sd_probe().
2996  *      This function is not called when the built-in sd driver is "exit-ed".
2997  **/
2998 static int sd_remove(struct device *dev)
2999 {
3000         struct scsi_disk *sdkp;
3001         dev_t devt;
3002
3003         sdkp = dev_get_drvdata(dev);
3004         devt = disk_devt(sdkp->disk);
3005         scsi_autopm_get_device(sdkp->device);
3006
3007         async_synchronize_full_domain(&scsi_sd_probe_domain);
3008         blk_queue_prep_rq(sdkp->device->request_queue, scsi_prep_fn);
3009         blk_queue_unprep_rq(sdkp->device->request_queue, NULL);
3010         device_del(&sdkp->dev);
3011         del_gendisk(sdkp->disk);
3012         sd_shutdown(dev);
3013
3014         blk_register_region(devt, SD_MINORS, NULL,
3015                             sd_default_probe, NULL, NULL);
3016
3017         mutex_lock(&sd_ref_mutex);
3018         dev_set_drvdata(dev, NULL);
3019         put_device(&sdkp->dev);
3020         mutex_unlock(&sd_ref_mutex);
3021
3022         return 0;
3023 }
3024
3025 /**
3026  *      scsi_disk_release - Called to free the scsi_disk structure
3027  *      @dev: pointer to embedded class device
3028  *
3029  *      sd_ref_mutex must be held entering this routine.  Because it is
3030  *      called on last put, you should always use the scsi_disk_get()
3031  *      scsi_disk_put() helpers which manipulate the semaphore directly
3032  *      and never do a direct put_device.
3033  **/
3034 static void scsi_disk_release(struct device *dev)
3035 {
3036         struct scsi_disk *sdkp = to_scsi_disk(dev);
3037         struct gendisk *disk = sdkp->disk;
3038         
3039         spin_lock(&sd_index_lock);
3040         ida_remove(&sd_index_ida, sdkp->index);
3041         spin_unlock(&sd_index_lock);
3042
3043         disk->private_data = NULL;
3044         put_disk(disk);
3045         put_device(&sdkp->device->sdev_gendev);
3046
3047         kfree(sdkp);
3048 }
3049
3050 static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
3051 {
3052         unsigned char cmd[6] = { START_STOP };  /* START_VALID */
3053         struct scsi_sense_hdr sshdr;
3054         struct scsi_device *sdp = sdkp->device;
3055         int res;
3056
3057         if (start)
3058                 cmd[4] |= 1;    /* START */
3059
3060         if (sdp->start_stop_pwr_cond)
3061                 cmd[4] |= start ? 1 << 4 : 3 << 4;      /* Active or Standby */
3062
3063         if (!scsi_device_online(sdp))
3064                 return -ENODEV;
3065
3066         res = scsi_execute_req_flags(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
3067                                SD_TIMEOUT, SD_MAX_RETRIES, NULL, REQ_PM);
3068         if (res) {
3069                 sd_printk(KERN_WARNING, sdkp, "START_STOP FAILED\n");
3070                 sd_print_result(sdkp, res);
3071                 if (driver_byte(res) & DRIVER_SENSE)
3072                         sd_print_sense_hdr(sdkp, &sshdr);
3073         }
3074
3075         return res;
3076 }
3077
3078 /*
3079  * Send a SYNCHRONIZE CACHE instruction down to the device through
3080  * the normal SCSI command structure.  Wait for the command to
3081  * complete.
3082  */
3083 static void sd_shutdown(struct device *dev)
3084 {
3085         struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
3086
3087         if (!sdkp)
3088                 return;         /* this can happen */
3089
3090         if (pm_runtime_suspended(dev))
3091                 goto exit;
3092
3093         if (sdkp->WCE) {
3094                 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
3095                 sd_sync_cache(sdkp);
3096         }
3097
3098         if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) {
3099                 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
3100                 sd_start_stop_device(sdkp, 0);
3101         }
3102
3103 exit:
3104         scsi_disk_put(sdkp);
3105 }
3106
3107 static int sd_suspend(struct device *dev)
3108 {
3109         struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
3110         int ret = 0;
3111
3112         if (!sdkp)
3113                 return 0;       /* this can happen */
3114
3115         if (sdkp->WCE) {
3116                 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
3117                 ret = sd_sync_cache(sdkp);
3118                 if (ret)
3119                         goto done;
3120         }
3121
3122         if (sdkp->device->manage_start_stop) {
3123                 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
3124                 ret = sd_start_stop_device(sdkp, 0);
3125         }
3126
3127 done:
3128         scsi_disk_put(sdkp);
3129         return ret;
3130 }
3131
3132 static int sd_resume(struct device *dev)
3133 {
3134         struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
3135         int ret = 0;
3136
3137         if (!sdkp->device->manage_start_stop)
3138                 goto done;
3139
3140         sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
3141         ret = sd_start_stop_device(sdkp, 1);
3142
3143 done:
3144         scsi_disk_put(sdkp);
3145         return ret;
3146 }
3147
3148 /**
3149  *      init_sd - entry point for this driver (both when built in or when
3150  *      a module).
3151  *
3152  *      Note: this function registers this driver with the scsi mid-level.
3153  **/
3154 static int __init init_sd(void)
3155 {
3156         int majors = 0, i, err;
3157
3158         SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
3159
3160         for (i = 0; i < SD_MAJORS; i++) {
3161                 if (register_blkdev(sd_major(i), "sd") != 0)
3162                         continue;
3163                 majors++;
3164                 blk_register_region(sd_major(i), SD_MINORS, NULL,
3165                                     sd_default_probe, NULL, NULL);
3166         }
3167
3168         if (!majors)
3169                 return -ENODEV;
3170
3171         err = class_register(&sd_disk_class);
3172         if (err)
3173                 goto err_out;
3174
3175         sd_cdb_cache = kmem_cache_create("sd_ext_cdb", SD_EXT_CDB_SIZE,
3176                                          0, 0, NULL);
3177         if (!sd_cdb_cache) {
3178                 printk(KERN_ERR "sd: can't init extended cdb cache\n");
3179                 goto err_out_class;
3180         }
3181
3182         sd_cdb_pool = mempool_create_slab_pool(SD_MEMPOOL_SIZE, sd_cdb_cache);
3183         if (!sd_cdb_pool) {
3184                 printk(KERN_ERR "sd: can't init extended cdb pool\n");
3185                 goto err_out_cache;
3186         }
3187
3188         err = scsi_register_driver(&sd_template.gendrv);
3189         if (err)
3190                 goto err_out_driver;
3191
3192         return 0;
3193
3194 err_out_driver:
3195         mempool_destroy(sd_cdb_pool);
3196
3197 err_out_cache:
3198         kmem_cache_destroy(sd_cdb_cache);
3199
3200 err_out_class:
3201         class_unregister(&sd_disk_class);
3202 err_out:
3203         for (i = 0; i < SD_MAJORS; i++)
3204                 unregister_blkdev(sd_major(i), "sd");
3205         return err;
3206 }
3207
3208 /**
3209  *      exit_sd - exit point for this driver (when it is a module).
3210  *
3211  *      Note: this function unregisters this driver from the scsi mid-level.
3212  **/
3213 static void __exit exit_sd(void)
3214 {
3215         int i;
3216
3217         SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
3218
3219         scsi_unregister_driver(&sd_template.gendrv);
3220         mempool_destroy(sd_cdb_pool);
3221         kmem_cache_destroy(sd_cdb_cache);
3222
3223         class_unregister(&sd_disk_class);
3224
3225         for (i = 0; i < SD_MAJORS; i++) {
3226                 blk_unregister_region(sd_major(i), SD_MINORS);
3227                 unregister_blkdev(sd_major(i), "sd");
3228         }
3229 }
3230
3231 module_init(init_sd);
3232 module_exit(exit_sd);
3233
3234 static void sd_print_sense_hdr(struct scsi_disk *sdkp,
3235                                struct scsi_sense_hdr *sshdr)
3236 {
3237         sd_printk(KERN_INFO, sdkp, " ");
3238         scsi_show_sense_hdr(sshdr);
3239         sd_printk(KERN_INFO, sdkp, " ");
3240         scsi_show_extd_sense(sshdr->asc, sshdr->ascq);
3241 }
3242
3243 static void sd_print_result(struct scsi_disk *sdkp, int result)
3244 {
3245         sd_printk(KERN_INFO, sdkp, " ");
3246         scsi_show_result(result);
3247 }
3248