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