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