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