| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Jeff Garzik | af36d7f | 2005-08-28 20:18:39 -0400 | [diff] [blame] | 2 | *  libata-scsi.c - helper library for ATA | 
|  | 3 | * | 
|  | 4 | *  Maintained by:  Jeff Garzik <jgarzik@pobox.com> | 
|  | 5 | *    		    Please ALWAYS copy linux-ide@vger.kernel.org | 
|  | 6 | *		    on emails. | 
|  | 7 | * | 
|  | 8 | *  Copyright 2003-2004 Red Hat, Inc.  All rights reserved. | 
|  | 9 | *  Copyright 2003-2004 Jeff Garzik | 
|  | 10 | * | 
|  | 11 | * | 
|  | 12 | *  This program is free software; you can redistribute it and/or modify | 
|  | 13 | *  it under the terms of the GNU General Public License as published by | 
|  | 14 | *  the Free Software Foundation; either version 2, or (at your option) | 
|  | 15 | *  any later version. | 
|  | 16 | * | 
|  | 17 | *  This program is distributed in the hope that it will be useful, | 
|  | 18 | *  but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 19 | *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 20 | *  GNU General Public License for more details. | 
|  | 21 | * | 
|  | 22 | *  You should have received a copy of the GNU General Public License | 
|  | 23 | *  along with this program; see the file COPYING.  If not, write to | 
|  | 24 | *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 
|  | 25 | * | 
|  | 26 | * | 
|  | 27 | *  libata documentation is available via 'make {ps|pdf}docs', | 
|  | 28 | *  as Documentation/DocBook/libata.* | 
|  | 29 | * | 
|  | 30 | *  Hardware documentation available from | 
|  | 31 | *  - http://www.t10.org/ | 
|  | 32 | *  - http://www.t13.org/ | 
|  | 33 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | */ | 
|  | 35 |  | 
|  | 36 | #include <linux/kernel.h> | 
|  | 37 | #include <linux/blkdev.h> | 
|  | 38 | #include <linux/spinlock.h> | 
|  | 39 | #include <scsi/scsi.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <scsi/scsi_host.h> | 
| Christoph Hellwig | beb4048 | 2006-06-10 18:01:03 +0200 | [diff] [blame] | 41 | #include <scsi/scsi_cmnd.h> | 
| Mike Christie | 85837eb | 2005-11-11 16:38:53 -0600 | [diff] [blame] | 42 | #include <scsi/scsi_eh.h> | 
| Jeff Garzik | 005a5a0 | 2005-10-30 23:31:48 -0500 | [diff] [blame] | 43 | #include <scsi/scsi_device.h> | 
| Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 44 | #include <scsi/scsi_tcq.h> | 
| Tejun Heo | 30afc84 | 2006-03-18 18:40:14 +0900 | [diff] [blame] | 45 | #include <scsi/scsi_transport.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <linux/libata.h> | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 47 | #include <linux/hdreg.h> | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 48 | #include <linux/uaccess.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 |  | 
|  | 50 | #include "libata.h" | 
|  | 51 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 52 | #define SECTOR_SIZE		512 | 
|  | 53 | #define ATA_SCSI_RBUF_SIZE	4096 | 
|  | 54 |  | 
|  | 55 | static DEFINE_SPINLOCK(ata_scsi_rbuf_lock); | 
|  | 56 | static u8 ata_scsi_rbuf[ATA_SCSI_RBUF_SIZE]; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 57 |  | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 58 | typedef unsigned int (*ata_xlat_func_t)(struct ata_queued_cmd *qc); | 
| Tejun Heo | ab5b3a5 | 2006-05-31 18:27:34 +0900 | [diff] [blame] | 59 |  | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 60 | static struct ata_device *__ata_scsi_find_dev(struct ata_port *ap, | 
| Tejun Heo | ab5b3a5 | 2006-05-31 18:27:34 +0900 | [diff] [blame] | 61 | const struct scsi_device *scsidev); | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 62 | static struct ata_device *ata_scsi_find_dev(struct ata_port *ap, | 
| Tejun Heo | ab5b3a5 | 2006-05-31 18:27:34 +0900 | [diff] [blame] | 63 | const struct scsi_device *scsidev); | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 64 | static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel, | 
|  | 65 | unsigned int id, unsigned int lun); | 
| Tejun Heo | ab5b3a5 | 2006-05-31 18:27:34 +0900 | [diff] [blame] | 66 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 |  | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 68 | #define RW_RECOVERY_MPAGE 0x1 | 
|  | 69 | #define RW_RECOVERY_MPAGE_LEN 12 | 
|  | 70 | #define CACHE_MPAGE 0x8 | 
|  | 71 | #define CACHE_MPAGE_LEN 20 | 
|  | 72 | #define CONTROL_MPAGE 0xa | 
|  | 73 | #define CONTROL_MPAGE_LEN 12 | 
|  | 74 | #define ALL_MPAGES 0x3f | 
|  | 75 | #define ALL_SUB_MPAGES 0xff | 
|  | 76 |  | 
|  | 77 |  | 
| Jeff Garzik | 24f7568 | 2007-09-21 07:54:49 -0400 | [diff] [blame] | 78 | static const u8 def_rw_recovery_mpage[RW_RECOVERY_MPAGE_LEN] = { | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 79 | RW_RECOVERY_MPAGE, | 
|  | 80 | RW_RECOVERY_MPAGE_LEN - 2, | 
| Jeff Garzik | 24f7568 | 2007-09-21 07:54:49 -0400 | [diff] [blame] | 81 | (1 << 7),	/* AWRE */ | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 82 | 0,		/* read retry count */ | 
|  | 83 | 0, 0, 0, 0, | 
|  | 84 | 0,		/* write retry count */ | 
|  | 85 | 0, 0, 0 | 
|  | 86 | }; | 
|  | 87 |  | 
|  | 88 | static const u8 def_cache_mpage[CACHE_MPAGE_LEN] = { | 
|  | 89 | CACHE_MPAGE, | 
|  | 90 | CACHE_MPAGE_LEN - 2, | 
|  | 91 | 0,		/* contains WCE, needs to be 0 for logic */ | 
|  | 92 | 0, 0, 0, 0, 0, 0, 0, 0, 0, | 
|  | 93 | 0,		/* contains DRA, needs to be 0 for logic */ | 
|  | 94 | 0, 0, 0, 0, 0, 0, 0 | 
|  | 95 | }; | 
|  | 96 |  | 
|  | 97 | static const u8 def_control_mpage[CONTROL_MPAGE_LEN] = { | 
|  | 98 | CONTROL_MPAGE, | 
|  | 99 | CONTROL_MPAGE_LEN - 2, | 
|  | 100 | 2,	/* DSENSE=0, GLTSD=1 */ | 
|  | 101 | 0,	/* [QAM+QERR may be 1, see 05-359r1] */ | 
|  | 102 | 0, 0, 0, 0, 0xff, 0xff, | 
|  | 103 | 0, 30	/* extended self test time, see 05-359r1 */ | 
|  | 104 | }; | 
|  | 105 |  | 
| Tejun Heo | 30afc84 | 2006-03-18 18:40:14 +0900 | [diff] [blame] | 106 | /* | 
|  | 107 | * libata transport template.  libata doesn't do real transport stuff. | 
|  | 108 | * It just needs the eh_timed_out hook. | 
|  | 109 | */ | 
| Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 110 | static struct scsi_transport_template ata_scsi_transport_template = { | 
| Christoph Hellwig | 9227c33 | 2006-04-01 19:21:04 +0200 | [diff] [blame] | 111 | .eh_strategy_handler	= ata_scsi_error, | 
| Tejun Heo | 30afc84 | 2006-03-18 18:40:14 +0900 | [diff] [blame] | 112 | .eh_timed_out		= ata_scsi_timed_out, | 
| Tejun Heo | ccf68c3 | 2006-05-31 18:28:09 +0900 | [diff] [blame] | 113 | .user_scan		= ata_scsi_user_scan, | 
| Tejun Heo | 30afc84 | 2006-03-18 18:40:14 +0900 | [diff] [blame] | 114 | }; | 
|  | 115 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 |  | 
| Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 117 | static const struct { | 
|  | 118 | enum link_pm	value; | 
|  | 119 | const char	*name; | 
|  | 120 | } link_pm_policy[] = { | 
|  | 121 | { NOT_AVAILABLE, "max_performance" }, | 
|  | 122 | { MIN_POWER, "min_power" }, | 
|  | 123 | { MAX_PERFORMANCE, "max_performance" }, | 
|  | 124 | { MEDIUM_POWER, "medium_power" }, | 
|  | 125 | }; | 
|  | 126 |  | 
| Adrian Bunk | a2d6ed1 | 2007-10-31 00:50:23 +0100 | [diff] [blame] | 127 | static const char *ata_scsi_lpm_get(enum link_pm policy) | 
| Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 128 | { | 
|  | 129 | int i; | 
|  | 130 |  | 
|  | 131 | for (i = 0; i < ARRAY_SIZE(link_pm_policy); i++) | 
|  | 132 | if (link_pm_policy[i].value == policy) | 
|  | 133 | return link_pm_policy[i].name; | 
|  | 134 |  | 
|  | 135 | return NULL; | 
|  | 136 | } | 
|  | 137 |  | 
| Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 138 | static ssize_t ata_scsi_lpm_put(struct device *dev, | 
|  | 139 | struct device_attribute *attr, | 
|  | 140 | const char *buf, size_t count) | 
| Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 141 | { | 
| Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 142 | struct Scsi_Host *shost = class_to_shost(dev); | 
| Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 143 | struct ata_port *ap = ata_shost_to_port(shost); | 
|  | 144 | enum link_pm policy = 0; | 
|  | 145 | int i; | 
|  | 146 |  | 
|  | 147 | /* | 
|  | 148 | * we are skipping array location 0 on purpose - this | 
|  | 149 | * is because a value of NOT_AVAILABLE is displayed | 
|  | 150 | * to the user as max_performance, but when the user | 
|  | 151 | * writes "max_performance", they actually want the | 
|  | 152 | * value to match MAX_PERFORMANCE. | 
|  | 153 | */ | 
|  | 154 | for (i = 1; i < ARRAY_SIZE(link_pm_policy); i++) { | 
|  | 155 | const int len = strlen(link_pm_policy[i].name); | 
|  | 156 | if (strncmp(link_pm_policy[i].name, buf, len) == 0 && | 
|  | 157 | buf[len] == '\n') { | 
|  | 158 | policy = link_pm_policy[i].value; | 
|  | 159 | break; | 
|  | 160 | } | 
|  | 161 | } | 
|  | 162 | if (!policy) | 
|  | 163 | return -EINVAL; | 
|  | 164 |  | 
|  | 165 | ata_lpm_schedule(ap, policy); | 
|  | 166 | return count; | 
|  | 167 | } | 
|  | 168 |  | 
|  | 169 | static ssize_t | 
| Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 170 | ata_scsi_lpm_show(struct device *dev, struct device_attribute *attr, char *buf) | 
| Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 171 | { | 
| Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 172 | struct Scsi_Host *shost = class_to_shost(dev); | 
| Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 173 | struct ata_port *ap = ata_shost_to_port(shost); | 
|  | 174 | const char *policy = | 
|  | 175 | ata_scsi_lpm_get(ap->pm_policy); | 
|  | 176 |  | 
|  | 177 | if (!policy) | 
|  | 178 | return -EINVAL; | 
|  | 179 |  | 
|  | 180 | return snprintf(buf, 23, "%s\n", policy); | 
|  | 181 | } | 
| Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 182 | DEVICE_ATTR(link_power_management_policy, S_IRUGO | S_IWUSR, | 
| Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 183 | ata_scsi_lpm_show, ata_scsi_lpm_put); | 
| Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 184 | EXPORT_SYMBOL_GPL(dev_attr_link_power_management_policy); | 
| Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 185 |  | 
| Tejun Heo | f0761be | 2008-04-28 17:16:52 +0900 | [diff] [blame] | 186 | static void ata_scsi_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq) | 
|  | 187 | { | 
|  | 188 | cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION; | 
|  | 189 |  | 
|  | 190 | scsi_build_sense_buffer(0, cmd->sense_buffer, sk, asc, ascq); | 
|  | 191 | } | 
|  | 192 |  | 
| Kristen Carlson Accardi | 18f7ba4 | 2008-06-03 10:33:55 -0700 | [diff] [blame] | 193 | static ssize_t | 
|  | 194 | ata_scsi_em_message_store(struct device *dev, struct device_attribute *attr, | 
|  | 195 | const char *buf, size_t count) | 
|  | 196 | { | 
|  | 197 | struct Scsi_Host *shost = class_to_shost(dev); | 
|  | 198 | struct ata_port *ap = ata_shost_to_port(shost); | 
|  | 199 | if (ap->ops->em_store && (ap->flags & ATA_FLAG_EM)) | 
|  | 200 | return ap->ops->em_store(ap, buf, count); | 
|  | 201 | return -EINVAL; | 
|  | 202 | } | 
|  | 203 |  | 
|  | 204 | static ssize_t | 
|  | 205 | ata_scsi_em_message_show(struct device *dev, struct device_attribute *attr, | 
|  | 206 | char *buf) | 
|  | 207 | { | 
|  | 208 | struct Scsi_Host *shost = class_to_shost(dev); | 
|  | 209 | struct ata_port *ap = ata_shost_to_port(shost); | 
|  | 210 |  | 
|  | 211 | if (ap->ops->em_show && (ap->flags & ATA_FLAG_EM)) | 
|  | 212 | return ap->ops->em_show(ap, buf); | 
|  | 213 | return -EINVAL; | 
|  | 214 | } | 
|  | 215 | DEVICE_ATTR(em_message, S_IRUGO | S_IWUGO, | 
|  | 216 | ata_scsi_em_message_show, ata_scsi_em_message_store); | 
|  | 217 | EXPORT_SYMBOL_GPL(dev_attr_em_message); | 
|  | 218 |  | 
|  | 219 | static ssize_t | 
|  | 220 | ata_scsi_em_message_type_show(struct device *dev, struct device_attribute *attr, | 
|  | 221 | char *buf) | 
|  | 222 | { | 
|  | 223 | struct Scsi_Host *shost = class_to_shost(dev); | 
|  | 224 | struct ata_port *ap = ata_shost_to_port(shost); | 
|  | 225 |  | 
|  | 226 | return snprintf(buf, 23, "%d\n", ap->em_message_type); | 
|  | 227 | } | 
|  | 228 | DEVICE_ATTR(em_message_type, S_IRUGO, | 
|  | 229 | ata_scsi_em_message_type_show, NULL); | 
|  | 230 | EXPORT_SYMBOL_GPL(dev_attr_em_message_type); | 
|  | 231 |  | 
|  | 232 | static ssize_t | 
|  | 233 | ata_scsi_activity_show(struct device *dev, struct device_attribute *attr, | 
|  | 234 | char *buf) | 
|  | 235 | { | 
|  | 236 | struct scsi_device *sdev = to_scsi_device(dev); | 
|  | 237 | struct ata_port *ap = ata_shost_to_port(sdev->host); | 
|  | 238 | struct ata_device *atadev = ata_scsi_find_dev(ap, sdev); | 
|  | 239 |  | 
|  | 240 | if (ap->ops->sw_activity_show && (ap->flags & ATA_FLAG_SW_ACTIVITY)) | 
|  | 241 | return ap->ops->sw_activity_show(atadev, buf); | 
|  | 242 | return -EINVAL; | 
|  | 243 | } | 
|  | 244 |  | 
|  | 245 | static ssize_t | 
|  | 246 | ata_scsi_activity_store(struct device *dev, struct device_attribute *attr, | 
|  | 247 | const char *buf, size_t count) | 
|  | 248 | { | 
|  | 249 | struct scsi_device *sdev = to_scsi_device(dev); | 
|  | 250 | struct ata_port *ap = ata_shost_to_port(sdev->host); | 
|  | 251 | struct ata_device *atadev = ata_scsi_find_dev(ap, sdev); | 
|  | 252 | enum sw_activity val; | 
|  | 253 | int rc; | 
|  | 254 |  | 
|  | 255 | if (ap->ops->sw_activity_store && (ap->flags & ATA_FLAG_SW_ACTIVITY)) { | 
|  | 256 | val = simple_strtoul(buf, NULL, 0); | 
|  | 257 | switch (val) { | 
|  | 258 | case OFF: case BLINK_ON: case BLINK_OFF: | 
|  | 259 | rc = ap->ops->sw_activity_store(atadev, val); | 
|  | 260 | if (!rc) | 
|  | 261 | return count; | 
|  | 262 | else | 
|  | 263 | return rc; | 
|  | 264 | } | 
|  | 265 | } | 
|  | 266 | return -EINVAL; | 
|  | 267 | } | 
|  | 268 | DEVICE_ATTR(sw_activity, S_IWUGO | S_IRUGO, ata_scsi_activity_show, | 
|  | 269 | ata_scsi_activity_store); | 
|  | 270 | EXPORT_SYMBOL_GPL(dev_attr_sw_activity); | 
|  | 271 |  | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 272 | static void ata_scsi_invalid_field(struct scsi_cmnd *cmd, | 
|  | 273 | void (*done)(struct scsi_cmnd *)) | 
|  | 274 | { | 
|  | 275 | ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, 0x24, 0x0); | 
|  | 276 | /* "Invalid field in cbd" */ | 
|  | 277 | done(cmd); | 
|  | 278 | } | 
|  | 279 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | /** | 
|  | 281 | *	ata_std_bios_param - generic bios head/sector/cylinder calculator used by sd. | 
|  | 282 | *	@sdev: SCSI device for which BIOS geometry is to be determined | 
|  | 283 | *	@bdev: block device associated with @sdev | 
|  | 284 | *	@capacity: capacity of SCSI device | 
|  | 285 | *	@geom: location to which geometry will be output | 
|  | 286 | * | 
|  | 287 | *	Generic bios head/sector/cylinder calculator | 
|  | 288 | *	used by sd. Most BIOSes nowadays expect a XXX/255/16  (CHS) | 
|  | 289 | *	mapping. Some situations may arise where the disk is not | 
|  | 290 | *	bootable if this is not used. | 
|  | 291 | * | 
|  | 292 | *	LOCKING: | 
|  | 293 | *	Defined by the SCSI layer.  We don't really care. | 
|  | 294 | * | 
|  | 295 | *	RETURNS: | 
|  | 296 | *	Zero. | 
|  | 297 | */ | 
|  | 298 | int ata_std_bios_param(struct scsi_device *sdev, struct block_device *bdev, | 
|  | 299 | sector_t capacity, int geom[]) | 
|  | 300 | { | 
|  | 301 | geom[0] = 255; | 
|  | 302 | geom[1] = 63; | 
|  | 303 | sector_div(capacity, 255*63); | 
|  | 304 | geom[2] = capacity; | 
|  | 305 |  | 
|  | 306 | return 0; | 
|  | 307 | } | 
|  | 308 |  | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 309 | /** | 
| Tejun Heo | 5924b74 | 2007-01-02 20:20:07 +0900 | [diff] [blame] | 310 | *	ata_get_identity - Handler for HDIO_GET_IDENTITY ioctl | 
|  | 311 | *	@sdev: SCSI device to get identify data for | 
|  | 312 | *	@arg: User buffer area for identify data | 
|  | 313 | * | 
|  | 314 | *	LOCKING: | 
|  | 315 | *	Defined by the SCSI layer.  We don't really care. | 
|  | 316 | * | 
|  | 317 | *	RETURNS: | 
|  | 318 | *	Zero on success, negative errno on error. | 
|  | 319 | */ | 
|  | 320 | static int ata_get_identity(struct scsi_device *sdev, void __user *arg) | 
|  | 321 | { | 
|  | 322 | struct ata_port *ap = ata_shost_to_port(sdev->host); | 
|  | 323 | struct ata_device *dev = ata_scsi_find_dev(ap, sdev); | 
|  | 324 | u16 __user *dst = arg; | 
|  | 325 | char buf[40]; | 
|  | 326 |  | 
|  | 327 | if (!dev) | 
|  | 328 | return -ENOMSG; | 
|  | 329 |  | 
|  | 330 | if (copy_to_user(dst, dev->id, ATA_ID_WORDS * sizeof(u16))) | 
|  | 331 | return -EFAULT; | 
|  | 332 |  | 
|  | 333 | ata_id_string(dev->id, buf, ATA_ID_PROD, ATA_ID_PROD_LEN); | 
|  | 334 | if (copy_to_user(dst + ATA_ID_PROD, buf, ATA_ID_PROD_LEN)) | 
|  | 335 | return -EFAULT; | 
|  | 336 |  | 
|  | 337 | ata_id_string(dev->id, buf, ATA_ID_FW_REV, ATA_ID_FW_REV_LEN); | 
|  | 338 | if (copy_to_user(dst + ATA_ID_FW_REV, buf, ATA_ID_FW_REV_LEN)) | 
|  | 339 | return -EFAULT; | 
|  | 340 |  | 
|  | 341 | ata_id_string(dev->id, buf, ATA_ID_SERNO, ATA_ID_SERNO_LEN); | 
|  | 342 | if (copy_to_user(dst + ATA_ID_SERNO, buf, ATA_ID_SERNO_LEN)) | 
|  | 343 | return -EFAULT; | 
|  | 344 |  | 
|  | 345 | return 0; | 
|  | 346 | } | 
|  | 347 |  | 
|  | 348 | /** | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 349 | *	ata_cmd_ioctl - Handler for HDIO_DRIVE_CMD ioctl | 
| Randy Dunlap | 8e8b77d | 2005-11-01 21:29:27 -0800 | [diff] [blame] | 350 | *	@scsidev: Device to which we are issuing command | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 351 | *	@arg: User provided data for issuing command | 
|  | 352 | * | 
|  | 353 | *	LOCKING: | 
|  | 354 | *	Defined by the SCSI layer.  We don't really care. | 
|  | 355 | * | 
|  | 356 | *	RETURNS: | 
|  | 357 | *	Zero on success, negative errno on error. | 
|  | 358 | */ | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 359 | int ata_cmd_ioctl(struct scsi_device *scsidev, void __user *arg) | 
|  | 360 | { | 
|  | 361 | int rc = 0; | 
|  | 362 | u8 scsi_cmd[MAX_COMMAND_SIZE]; | 
| Eran Tromer | bbe1fe7 | 2006-10-10 14:29:25 -0700 | [diff] [blame] | 363 | u8 args[4], *argbuf = NULL, *sensebuf = NULL; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 364 | int argsize = 0; | 
| Mike Christie | 85837eb | 2005-11-11 16:38:53 -0600 | [diff] [blame] | 365 | enum dma_data_direction data_dir; | 
| Eran Tromer | bbe1fe7 | 2006-10-10 14:29:25 -0700 | [diff] [blame] | 366 | int cmd_result; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 367 |  | 
| Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 368 | if (arg == NULL) | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 369 | return -EINVAL; | 
|  | 370 |  | 
|  | 371 | if (copy_from_user(args, arg, sizeof(args))) | 
|  | 372 | return -EFAULT; | 
|  | 373 |  | 
| Eran Tromer | bbe1fe7 | 2006-10-10 14:29:25 -0700 | [diff] [blame] | 374 | sensebuf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO); | 
|  | 375 | if (!sensebuf) | 
|  | 376 | return -ENOMEM; | 
|  | 377 |  | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 378 | memset(scsi_cmd, 0, sizeof(scsi_cmd)); | 
|  | 379 |  | 
|  | 380 | if (args[3]) { | 
|  | 381 | argsize = SECTOR_SIZE * args[3]; | 
|  | 382 | argbuf = kmalloc(argsize, GFP_KERNEL); | 
| Jeff Raubitschek | 54dac83 | 2005-10-04 10:21:19 -0400 | [diff] [blame] | 383 | if (argbuf == NULL) { | 
|  | 384 | rc = -ENOMEM; | 
|  | 385 | goto error; | 
|  | 386 | } | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 387 |  | 
|  | 388 | scsi_cmd[1]  = (4 << 1); /* PIO Data-in */ | 
|  | 389 | scsi_cmd[2]  = 0x0e;     /* no off.line or cc, read from dev, | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 390 | block count in sector count field */ | 
| Mike Christie | 85837eb | 2005-11-11 16:38:53 -0600 | [diff] [blame] | 391 | data_dir = DMA_FROM_DEVICE; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 392 | } else { | 
|  | 393 | scsi_cmd[1]  = (3 << 1); /* Non-data */ | 
| Eran Tromer | bbe1fe7 | 2006-10-10 14:29:25 -0700 | [diff] [blame] | 394 | scsi_cmd[2]  = 0x20;     /* cc but no off.line or data xfer */ | 
| Mike Christie | 85837eb | 2005-11-11 16:38:53 -0600 | [diff] [blame] | 395 | data_dir = DMA_NONE; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 396 | } | 
|  | 397 |  | 
|  | 398 | scsi_cmd[0] = ATA_16; | 
|  | 399 |  | 
|  | 400 | scsi_cmd[4] = args[2]; | 
|  | 401 | if (args[0] == WIN_SMART) { /* hack -- ide driver does this too... */ | 
|  | 402 | scsi_cmd[6]  = args[3]; | 
|  | 403 | scsi_cmd[8]  = args[1]; | 
|  | 404 | scsi_cmd[10] = 0x4f; | 
|  | 405 | scsi_cmd[12] = 0xc2; | 
|  | 406 | } else { | 
|  | 407 | scsi_cmd[6]  = args[1]; | 
|  | 408 | } | 
|  | 409 | scsi_cmd[14] = args[0]; | 
|  | 410 |  | 
|  | 411 | /* Good values for timeout and retries?  Values below | 
|  | 412 | from scsi_ioctl_send_command() for default case... */ | 
| Eran Tromer | bbe1fe7 | 2006-10-10 14:29:25 -0700 | [diff] [blame] | 413 | cmd_result = scsi_execute(scsidev, scsi_cmd, data_dir, argbuf, argsize, | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 414 | sensebuf, (10*HZ), 5, 0); | 
| Eran Tromer | bbe1fe7 | 2006-10-10 14:29:25 -0700 | [diff] [blame] | 415 |  | 
|  | 416 | if (driver_byte(cmd_result) == DRIVER_SENSE) {/* sense data available */ | 
|  | 417 | u8 *desc = sensebuf + 8; | 
|  | 418 | cmd_result &= ~(0xFF<<24); /* DRIVER_SENSE is not an error */ | 
|  | 419 |  | 
|  | 420 | /* If we set cc then ATA pass-through will cause a | 
|  | 421 | * check condition even if no error. Filter that. */ | 
|  | 422 | if (cmd_result & SAM_STAT_CHECK_CONDITION) { | 
|  | 423 | struct scsi_sense_hdr sshdr; | 
|  | 424 | scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE, | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 425 | &sshdr); | 
|  | 426 | if (sshdr.sense_key == 0 && | 
|  | 427 | sshdr.asc == 0 && sshdr.ascq == 0) | 
| Eran Tromer | bbe1fe7 | 2006-10-10 14:29:25 -0700 | [diff] [blame] | 428 | cmd_result &= ~SAM_STAT_CHECK_CONDITION; | 
|  | 429 | } | 
|  | 430 |  | 
|  | 431 | /* Send userspace a few ATA registers (same as drivers/ide) */ | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 432 | if (sensebuf[0] == 0x72 &&	/* format is "descriptor" */ | 
|  | 433 | desc[0] == 0x09) {		/* code is "ATA Descriptor" */ | 
|  | 434 | args[0] = desc[13];	/* status */ | 
|  | 435 | args[1] = desc[3];	/* error */ | 
|  | 436 | args[2] = desc[5];	/* sector count (0:7) */ | 
| Eran Tromer | bbe1fe7 | 2006-10-10 14:29:25 -0700 | [diff] [blame] | 437 | if (copy_to_user(arg, args, sizeof(args))) | 
|  | 438 | rc = -EFAULT; | 
|  | 439 | } | 
|  | 440 | } | 
|  | 441 |  | 
|  | 442 |  | 
|  | 443 | if (cmd_result) { | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 444 | rc = -EIO; | 
|  | 445 | goto error; | 
|  | 446 | } | 
|  | 447 |  | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 448 | if ((argbuf) | 
| Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 449 | && copy_to_user(arg + sizeof(args), argbuf, argsize)) | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 450 | rc = -EFAULT; | 
|  | 451 | error: | 
| Eran Tromer | bbe1fe7 | 2006-10-10 14:29:25 -0700 | [diff] [blame] | 452 | kfree(sensebuf); | 
| Jesper Juhl | 8f76078 | 2006-06-27 02:55:06 -0700 | [diff] [blame] | 453 | kfree(argbuf); | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 454 | return rc; | 
|  | 455 | } | 
|  | 456 |  | 
|  | 457 | /** | 
|  | 458 | *	ata_task_ioctl - Handler for HDIO_DRIVE_TASK ioctl | 
| Randy Dunlap | 8e8b77d | 2005-11-01 21:29:27 -0800 | [diff] [blame] | 459 | *	@scsidev: Device to which we are issuing command | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 460 | *	@arg: User provided data for issuing command | 
|  | 461 | * | 
|  | 462 | *	LOCKING: | 
|  | 463 | *	Defined by the SCSI layer.  We don't really care. | 
|  | 464 | * | 
|  | 465 | *	RETURNS: | 
|  | 466 | *	Zero on success, negative errno on error. | 
|  | 467 | */ | 
|  | 468 | int ata_task_ioctl(struct scsi_device *scsidev, void __user *arg) | 
|  | 469 | { | 
|  | 470 | int rc = 0; | 
|  | 471 | u8 scsi_cmd[MAX_COMMAND_SIZE]; | 
| David Milburn | af068bd | 2007-01-30 00:59:15 -0800 | [diff] [blame] | 472 | u8 args[7], *sensebuf = NULL; | 
|  | 473 | int cmd_result; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 474 |  | 
| Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 475 | if (arg == NULL) | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 476 | return -EINVAL; | 
|  | 477 |  | 
|  | 478 | if (copy_from_user(args, arg, sizeof(args))) | 
|  | 479 | return -EFAULT; | 
|  | 480 |  | 
| David Milburn | af068bd | 2007-01-30 00:59:15 -0800 | [diff] [blame] | 481 | sensebuf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO); | 
|  | 482 | if (!sensebuf) | 
|  | 483 | return -ENOMEM; | 
|  | 484 |  | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 485 | memset(scsi_cmd, 0, sizeof(scsi_cmd)); | 
|  | 486 | scsi_cmd[0]  = ATA_16; | 
|  | 487 | scsi_cmd[1]  = (3 << 1); /* Non-data */ | 
| David Milburn | af068bd | 2007-01-30 00:59:15 -0800 | [diff] [blame] | 488 | scsi_cmd[2]  = 0x20;     /* cc but no off.line or data xfer */ | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 489 | scsi_cmd[4]  = args[1]; | 
|  | 490 | scsi_cmd[6]  = args[2]; | 
|  | 491 | scsi_cmd[8]  = args[3]; | 
|  | 492 | scsi_cmd[10] = args[4]; | 
|  | 493 | scsi_cmd[12] = args[5]; | 
| Mark Lord | 277239f | 2007-03-30 17:45:52 -0400 | [diff] [blame] | 494 | scsi_cmd[13] = args[6] & 0x4f; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 495 | scsi_cmd[14] = args[0]; | 
|  | 496 |  | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 497 | /* Good values for timeout and retries?  Values below | 
| Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 498 | from scsi_ioctl_send_command() for default case... */ | 
| David Milburn | af068bd | 2007-01-30 00:59:15 -0800 | [diff] [blame] | 499 | cmd_result = scsi_execute(scsidev, scsi_cmd, DMA_NONE, NULL, 0, | 
|  | 500 | sensebuf, (10*HZ), 5, 0); | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 501 |  | 
| David Milburn | af068bd | 2007-01-30 00:59:15 -0800 | [diff] [blame] | 502 | if (driver_byte(cmd_result) == DRIVER_SENSE) {/* sense data available */ | 
|  | 503 | u8 *desc = sensebuf + 8; | 
|  | 504 | cmd_result &= ~(0xFF<<24); /* DRIVER_SENSE is not an error */ | 
|  | 505 |  | 
|  | 506 | /* If we set cc then ATA pass-through will cause a | 
|  | 507 | * check condition even if no error. Filter that. */ | 
|  | 508 | if (cmd_result & SAM_STAT_CHECK_CONDITION) { | 
|  | 509 | struct scsi_sense_hdr sshdr; | 
|  | 510 | scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE, | 
|  | 511 | &sshdr); | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 512 | if (sshdr.sense_key == 0 && | 
|  | 513 | sshdr.asc == 0 && sshdr.ascq == 0) | 
| David Milburn | af068bd | 2007-01-30 00:59:15 -0800 | [diff] [blame] | 514 | cmd_result &= ~SAM_STAT_CHECK_CONDITION; | 
|  | 515 | } | 
|  | 516 |  | 
|  | 517 | /* Send userspace ATA registers */ | 
|  | 518 | if (sensebuf[0] == 0x72 &&	/* format is "descriptor" */ | 
|  | 519 | desc[0] == 0x09) {/* code is "ATA Descriptor" */ | 
|  | 520 | args[0] = desc[13];	/* status */ | 
|  | 521 | args[1] = desc[3];	/* error */ | 
|  | 522 | args[2] = desc[5];	/* sector count (0:7) */ | 
|  | 523 | args[3] = desc[7];	/* lbal */ | 
|  | 524 | args[4] = desc[9];	/* lbam */ | 
|  | 525 | args[5] = desc[11];	/* lbah */ | 
|  | 526 | args[6] = desc[12];	/* select */ | 
|  | 527 | if (copy_to_user(arg, args, sizeof(args))) | 
|  | 528 | rc = -EFAULT; | 
|  | 529 | } | 
|  | 530 | } | 
|  | 531 |  | 
|  | 532 | if (cmd_result) { | 
|  | 533 | rc = -EIO; | 
|  | 534 | goto error; | 
|  | 535 | } | 
|  | 536 |  | 
|  | 537 | error: | 
|  | 538 | kfree(sensebuf); | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 539 | return rc; | 
|  | 540 | } | 
|  | 541 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | int ata_scsi_ioctl(struct scsi_device *scsidev, int cmd, void __user *arg) | 
|  | 543 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | int val = -EINVAL, rc = -EINVAL; | 
|  | 545 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | switch (cmd) { | 
|  | 547 | case ATA_IOC_GET_IO32: | 
|  | 548 | val = 0; | 
|  | 549 | if (copy_to_user(arg, &val, 1)) | 
|  | 550 | return -EFAULT; | 
|  | 551 | return 0; | 
|  | 552 |  | 
|  | 553 | case ATA_IOC_SET_IO32: | 
|  | 554 | val = (unsigned long) arg; | 
|  | 555 | if (val != 0) | 
|  | 556 | return -EINVAL; | 
|  | 557 | return 0; | 
|  | 558 |  | 
| Tejun Heo | 5924b74 | 2007-01-02 20:20:07 +0900 | [diff] [blame] | 559 | case HDIO_GET_IDENTITY: | 
|  | 560 | return ata_get_identity(scsidev, arg); | 
|  | 561 |  | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 562 | case HDIO_DRIVE_CMD: | 
|  | 563 | if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO)) | 
|  | 564 | return -EACCES; | 
|  | 565 | return ata_cmd_ioctl(scsidev, arg); | 
|  | 566 |  | 
|  | 567 | case HDIO_DRIVE_TASK: | 
|  | 568 | if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO)) | 
|  | 569 | return -EACCES; | 
|  | 570 | return ata_task_ioctl(scsidev, arg); | 
|  | 571 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | default: | 
|  | 573 | rc = -ENOTTY; | 
|  | 574 | break; | 
|  | 575 | } | 
|  | 576 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | return rc; | 
|  | 578 | } | 
|  | 579 |  | 
|  | 580 | /** | 
|  | 581 | *	ata_scsi_qc_new - acquire new ata_queued_cmd reference | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | *	@dev: ATA device to which the new command is attached | 
|  | 583 | *	@cmd: SCSI command that originated this ATA command | 
|  | 584 | *	@done: SCSI command completion function | 
|  | 585 | * | 
|  | 586 | *	Obtain a reference to an unused ata_queued_cmd structure, | 
|  | 587 | *	which is the basic libata structure representing a single | 
|  | 588 | *	ATA command sent to the hardware. | 
|  | 589 | * | 
|  | 590 | *	If a command was available, fill in the SCSI-specific | 
|  | 591 | *	portions of the structure with information on the | 
|  | 592 | *	current command. | 
|  | 593 | * | 
|  | 594 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 595 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | * | 
|  | 597 | *	RETURNS: | 
|  | 598 | *	Command allocated, or %NULL if none available. | 
|  | 599 | */ | 
| Adrian Bunk | 7102d23 | 2007-01-04 00:09:36 +0100 | [diff] [blame] | 600 | static struct ata_queued_cmd *ata_scsi_qc_new(struct ata_device *dev, | 
|  | 601 | struct scsi_cmnd *cmd, | 
|  | 602 | void (*done)(struct scsi_cmnd *)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | { | 
|  | 604 | struct ata_queued_cmd *qc; | 
|  | 605 |  | 
| Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 606 | qc = ata_qc_new_init(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | if (qc) { | 
|  | 608 | qc->scsicmd = cmd; | 
|  | 609 | qc->scsidone = done; | 
|  | 610 |  | 
| Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 611 | qc->sg = scsi_sglist(cmd); | 
| Boaz Harrosh | 7120165 | 2007-09-18 17:48:50 +0200 | [diff] [blame] | 612 | qc->n_elem = scsi_sg_count(cmd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | } else { | 
|  | 614 | cmd->result = (DID_OK << 16) | (QUEUE_FULL << 1); | 
|  | 615 | done(cmd); | 
|  | 616 | } | 
|  | 617 |  | 
|  | 618 | return qc; | 
|  | 619 | } | 
|  | 620 |  | 
| Tejun Heo | aacda37 | 2008-03-18 17:47:43 +0900 | [diff] [blame] | 621 | static void ata_qc_set_pc_nbytes(struct ata_queued_cmd *qc) | 
|  | 622 | { | 
|  | 623 | struct scsi_cmnd *scmd = qc->scsicmd; | 
|  | 624 |  | 
|  | 625 | qc->extrabytes = scmd->request->extra_len; | 
|  | 626 | qc->nbytes = scsi_bufflen(scmd) + qc->extrabytes; | 
|  | 627 | } | 
|  | 628 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | /** | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 630 | *	ata_dump_status - user friendly display of error info | 
|  | 631 | *	@id: id of the port in question | 
|  | 632 | *	@tf: ptr to filled out taskfile | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | * | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 634 | *	Decode and dump the ATA error/status registers for the user so | 
|  | 635 | *	that they have some idea what really happened at the non | 
|  | 636 | *	make-believe layer. | 
|  | 637 | * | 
|  | 638 | *	LOCKING: | 
|  | 639 | *	inherited from caller | 
|  | 640 | */ | 
| Adrian Bunk | 7102d23 | 2007-01-04 00:09:36 +0100 | [diff] [blame] | 641 | static void ata_dump_status(unsigned id, struct ata_taskfile *tf) | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 642 | { | 
|  | 643 | u8 stat = tf->command, err = tf->feature; | 
|  | 644 |  | 
|  | 645 | printk(KERN_WARNING "ata%u: status=0x%02x { ", id, stat); | 
|  | 646 | if (stat & ATA_BUSY) { | 
|  | 647 | printk("Busy }\n");	/* Data is not valid in this case */ | 
|  | 648 | } else { | 
|  | 649 | if (stat & 0x40)	printk("DriveReady "); | 
|  | 650 | if (stat & 0x20)	printk("DeviceFault "); | 
|  | 651 | if (stat & 0x10)	printk("SeekComplete "); | 
|  | 652 | if (stat & 0x08)	printk("DataRequest "); | 
|  | 653 | if (stat & 0x04)	printk("CorrectedError "); | 
|  | 654 | if (stat & 0x02)	printk("Index "); | 
|  | 655 | if (stat & 0x01)	printk("Error "); | 
|  | 656 | printk("}\n"); | 
|  | 657 |  | 
|  | 658 | if (err) { | 
|  | 659 | printk(KERN_WARNING "ata%u: error=0x%02x { ", id, err); | 
|  | 660 | if (err & 0x04)		printk("DriveStatusError "); | 
|  | 661 | if (err & 0x80) { | 
|  | 662 | if (err & 0x04)	printk("BadCRC "); | 
|  | 663 | else		printk("Sector "); | 
|  | 664 | } | 
|  | 665 | if (err & 0x40)		printk("UncorrectableError "); | 
|  | 666 | if (err & 0x10)		printk("SectorIdNotFound "); | 
|  | 667 | if (err & 0x02)		printk("TrackZeroNotFound "); | 
|  | 668 | if (err & 0x01)		printk("AddrMarkNotFound "); | 
|  | 669 | printk("}\n"); | 
|  | 670 | } | 
|  | 671 | } | 
|  | 672 | } | 
|  | 673 |  | 
|  | 674 | /** | 
|  | 675 | *	ata_to_sense_error - convert ATA error to SCSI error | 
| Randy Dunlap | 8e8b77d | 2005-11-01 21:29:27 -0800 | [diff] [blame] | 676 | *	@id: ATA device number | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 677 | *	@drv_stat: value contained in ATA status register | 
|  | 678 | *	@drv_err: value contained in ATA error register | 
|  | 679 | *	@sk: the sense key we'll fill out | 
|  | 680 | *	@asc: the additional sense code we'll fill out | 
|  | 681 | *	@ascq: the additional sense code qualifier we'll fill out | 
| Tejun Heo | 246619d | 2006-05-15 20:58:16 +0900 | [diff] [blame] | 682 | *	@verbose: be verbose | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 683 | * | 
|  | 684 | *	Converts an ATA error into a SCSI error.  Fill out pointers to | 
|  | 685 | *	SK, ASC, and ASCQ bytes for later use in fixed or descriptor | 
|  | 686 | *	format sense blocks. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | * | 
|  | 688 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 689 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | */ | 
| Adrian Bunk | 7102d23 | 2007-01-04 00:09:36 +0100 | [diff] [blame] | 691 | static void ata_to_sense_error(unsigned id, u8 drv_stat, u8 drv_err, u8 *sk, | 
|  | 692 | u8 *asc, u8 *ascq, int verbose) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | { | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 694 | int i; | 
| Jeff Garzik | ffe75ef | 2005-10-09 10:40:44 -0400 | [diff] [blame] | 695 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | /* Based on the 3ware driver translation table */ | 
| Arjan van de Ven | 98ac62d | 2005-11-28 10:06:23 +0100 | [diff] [blame] | 697 | static const unsigned char sense_table[][4] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | /* BBD|ECC|ID|MAR */ | 
|  | 699 | {0xd1, 		ABORTED_COMMAND, 0x00, 0x00}, 	// Device busy                  Aborted command | 
|  | 700 | /* BBD|ECC|ID */ | 
|  | 701 | {0xd0,  	ABORTED_COMMAND, 0x00, 0x00}, 	// Device busy                  Aborted command | 
|  | 702 | /* ECC|MC|MARK */ | 
|  | 703 | {0x61, 		HARDWARE_ERROR, 0x00, 0x00}, 	// Device fault                 Hardware error | 
|  | 704 | /* ICRC|ABRT */		/* NB: ICRC & !ABRT is BBD */ | 
|  | 705 | {0x84, 		ABORTED_COMMAND, 0x47, 0x00}, 	// Data CRC error               SCSI parity error | 
|  | 706 | /* MC|ID|ABRT|TRK0|MARK */ | 
|  | 707 | {0x37, 		NOT_READY, 0x04, 0x00}, 	// Unit offline                 Not ready | 
|  | 708 | /* MCR|MARK */ | 
|  | 709 | {0x09, 		NOT_READY, 0x04, 0x00}, 	// Unrecovered disk error       Not ready | 
|  | 710 | /*  Bad address mark */ | 
|  | 711 | {0x01, 		MEDIUM_ERROR, 0x13, 0x00}, 	// Address mark not found       Address mark not found for data field | 
|  | 712 | /* TRK0 */ | 
|  | 713 | {0x02, 		HARDWARE_ERROR, 0x00, 0x00}, 	// Track 0 not found		  Hardware error | 
|  | 714 | /* Abort & !ICRC */ | 
|  | 715 | {0x04, 		ABORTED_COMMAND, 0x00, 0x00}, 	// Aborted command              Aborted command | 
|  | 716 | /* Media change request */ | 
|  | 717 | {0x08, 		NOT_READY, 0x04, 0x00}, 	// Media change request	  FIXME: faking offline | 
|  | 718 | /* SRV */ | 
|  | 719 | {0x10, 		ABORTED_COMMAND, 0x14, 0x00}, 	// ID not found                 Recorded entity not found | 
|  | 720 | /* Media change */ | 
|  | 721 | {0x08,  	NOT_READY, 0x04, 0x00}, 	// Media change		  FIXME: faking offline | 
|  | 722 | /* ECC */ | 
|  | 723 | {0x40, 		MEDIUM_ERROR, 0x11, 0x04}, 	// Uncorrectable ECC error      Unrecovered read error | 
|  | 724 | /* BBD - block marked bad */ | 
|  | 725 | {0x80, 		MEDIUM_ERROR, 0x11, 0x04}, 	// Block marked bad		  Medium error, unrecovered read error | 
|  | 726 | {0xFF, 0xFF, 0xFF, 0xFF}, // END mark | 
|  | 727 | }; | 
| Arjan van de Ven | 98ac62d | 2005-11-28 10:06:23 +0100 | [diff] [blame] | 728 | static const unsigned char stat_table[][4] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | /* Must be first because BUSY means no other bits valid */ | 
|  | 730 | {0x80, 		ABORTED_COMMAND, 0x47, 0x00},	// Busy, fake parity for now | 
|  | 731 | {0x20, 		HARDWARE_ERROR,  0x00, 0x00}, 	// Device fault | 
|  | 732 | {0x08, 		ABORTED_COMMAND, 0x47, 0x00},	// Timed out in xfer, fake parity for now | 
|  | 733 | {0x04, 		RECOVERED_ERROR, 0x11, 0x00},	// Recovered ECC error	  Medium error, recovered | 
|  | 734 | {0xFF, 0xFF, 0xFF, 0xFF}, // END mark | 
|  | 735 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | /* | 
|  | 738 | *	Is this an error we can process/parse | 
|  | 739 | */ | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 740 | if (drv_stat & ATA_BUSY) { | 
|  | 741 | drv_err = 0;	/* Ignore the err bits, they're invalid */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 |  | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 744 | if (drv_err) { | 
|  | 745 | /* Look for drv_err */ | 
|  | 746 | for (i = 0; sense_table[i][0] != 0xFF; i++) { | 
|  | 747 | /* Look for best matches first */ | 
| Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 748 | if ((sense_table[i][0] & drv_err) == | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 749 | sense_table[i][0]) { | 
|  | 750 | *sk = sense_table[i][1]; | 
|  | 751 | *asc = sense_table[i][2]; | 
|  | 752 | *ascq = sense_table[i][3]; | 
|  | 753 | goto translate_done; | 
|  | 754 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | } | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 756 | /* No immediate match */ | 
| Tejun Heo | 246619d | 2006-05-15 20:58:16 +0900 | [diff] [blame] | 757 | if (verbose) | 
|  | 758 | printk(KERN_WARNING "ata%u: no sense translation for " | 
|  | 759 | "error 0x%02x\n", id, drv_err); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | } | 
|  | 761 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | /* Fall back to interpreting status bits */ | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 763 | for (i = 0; stat_table[i][0] != 0xFF; i++) { | 
|  | 764 | if (stat_table[i][0] & drv_stat) { | 
|  | 765 | *sk = stat_table[i][1]; | 
|  | 766 | *asc = stat_table[i][2]; | 
|  | 767 | *ascq = stat_table[i][3]; | 
|  | 768 | goto translate_done; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | } | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 771 | /* No error?  Undecoded? */ | 
| Tejun Heo | 246619d | 2006-05-15 20:58:16 +0900 | [diff] [blame] | 772 | if (verbose) | 
|  | 773 | printk(KERN_WARNING "ata%u: no sense translation for " | 
|  | 774 | "status: 0x%02x\n", id, drv_stat); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 |  | 
| Alan Cox | 2d20202 | 2006-03-21 15:53:46 +0000 | [diff] [blame] | 776 | /* We need a sensible error return here, which is tricky, and one | 
|  | 777 | that won't cause people to do things like return a disk wrongly */ | 
|  | 778 | *sk = ABORTED_COMMAND; | 
|  | 779 | *asc = 0x00; | 
|  | 780 | *ascq = 0x00; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 781 |  | 
|  | 782 | translate_done: | 
| Tejun Heo | 246619d | 2006-05-15 20:58:16 +0900 | [diff] [blame] | 783 | if (verbose) | 
|  | 784 | printk(KERN_ERR "ata%u: translated ATA stat/err 0x%02x/%02x " | 
|  | 785 | "to SCSI SK/ASC/ASCQ 0x%x/%02x/%02x\n", | 
|  | 786 | id, drv_stat, drv_err, *sk, *asc, *ascq); | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 787 | return; | 
|  | 788 | } | 
|  | 789 |  | 
|  | 790 | /* | 
| Tejun Heo | 750426a | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 791 | *	ata_gen_passthru_sense - Generate check condition sense block. | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 792 | *	@qc: Command that completed. | 
|  | 793 | * | 
|  | 794 | *	This function is specific to the ATA descriptor format sense | 
|  | 795 | *	block specified for the ATA pass through commands.  Regardless | 
|  | 796 | *	of whether the command errored or not, return a sense | 
|  | 797 | *	block. Copy all controller registers into the sense | 
|  | 798 | *	block. Clear sense key, ASC & ASCQ if there is no error. | 
|  | 799 | * | 
|  | 800 | *	LOCKING: | 
| Tejun Heo | 750426a | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 801 | *	None. | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 802 | */ | 
| Tejun Heo | 750426a | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 803 | static void ata_gen_passthru_sense(struct ata_queued_cmd *qc) | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 804 | { | 
|  | 805 | struct scsi_cmnd *cmd = qc->scsicmd; | 
| Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 806 | struct ata_taskfile *tf = &qc->result_tf; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 807 | unsigned char *sb = cmd->sense_buffer; | 
|  | 808 | unsigned char *desc = sb + 8; | 
| Tejun Heo | 246619d | 2006-05-15 20:58:16 +0900 | [diff] [blame] | 809 | int verbose = qc->ap->ops->error_handler == NULL; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 810 |  | 
|  | 811 | memset(sb, 0, SCSI_SENSE_BUFFERSIZE); | 
|  | 812 |  | 
| Jeff Garzik | 0e5dec4 | 2005-10-06 09:40:20 -0400 | [diff] [blame] | 813 | cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 814 |  | 
|  | 815 | /* | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 816 | * Use ata_to_sense_error() to map status register bits | 
|  | 817 | * onto sense key, asc & ascq. | 
|  | 818 | */ | 
| Tejun Heo | 058e55e | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 819 | if (qc->err_mask || | 
|  | 820 | tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) { | 
| Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 821 | ata_to_sense_error(qc->ap->print_id, tf->command, tf->feature, | 
| Tejun Heo | 246619d | 2006-05-15 20:58:16 +0900 | [diff] [blame] | 822 | &sb[1], &sb[2], &sb[3], verbose); | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 823 | sb[1] &= 0x0f; | 
|  | 824 | } | 
|  | 825 |  | 
|  | 826 | /* | 
|  | 827 | * Sense data is current and format is descriptor. | 
|  | 828 | */ | 
|  | 829 | sb[0] = 0x72; | 
|  | 830 |  | 
|  | 831 | desc[0] = 0x09; | 
|  | 832 |  | 
| Tejun Heo | f38621b | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 833 | /* set length of additional sense data */ | 
|  | 834 | sb[7] = 14; | 
|  | 835 | desc[1] = 12; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 836 |  | 
|  | 837 | /* | 
|  | 838 | * Copy registers into sense buffer. | 
|  | 839 | */ | 
|  | 840 | desc[2] = 0x00; | 
|  | 841 | desc[3] = tf->feature;	/* == error reg */ | 
|  | 842 | desc[5] = tf->nsect; | 
|  | 843 | desc[7] = tf->lbal; | 
|  | 844 | desc[9] = tf->lbam; | 
|  | 845 | desc[11] = tf->lbah; | 
|  | 846 | desc[12] = tf->device; | 
|  | 847 | desc[13] = tf->command; /* == status reg */ | 
|  | 848 |  | 
|  | 849 | /* | 
|  | 850 | * Fill in Extend bit, and the high order bytes | 
|  | 851 | * if applicable. | 
|  | 852 | */ | 
|  | 853 | if (tf->flags & ATA_TFLAG_LBA48) { | 
|  | 854 | desc[2] |= 0x01; | 
|  | 855 | desc[4] = tf->hob_nsect; | 
|  | 856 | desc[6] = tf->hob_lbal; | 
|  | 857 | desc[8] = tf->hob_lbam; | 
|  | 858 | desc[10] = tf->hob_lbah; | 
|  | 859 | } | 
|  | 860 | } | 
|  | 861 |  | 
|  | 862 | /** | 
| Tejun Heo | 750426a | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 863 | *	ata_gen_ata_sense - generate a SCSI fixed sense block | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 864 | *	@qc: Command that we are erroring out | 
|  | 865 | * | 
| Tejun Heo | d25614b | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 866 | *	Generate sense block for a failed ATA command @qc.  Descriptor | 
|  | 867 | *	format is used to accomodate LBA48 block address. | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 868 | * | 
|  | 869 | *	LOCKING: | 
| Tejun Heo | 750426a | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 870 | *	None. | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 871 | */ | 
| Tejun Heo | 750426a | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 872 | static void ata_gen_ata_sense(struct ata_queued_cmd *qc) | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 873 | { | 
| Tejun Heo | d25614b | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 874 | struct ata_device *dev = qc->dev; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 875 | struct scsi_cmnd *cmd = qc->scsicmd; | 
| Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 876 | struct ata_taskfile *tf = &qc->result_tf; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 877 | unsigned char *sb = cmd->sense_buffer; | 
| Tejun Heo | d25614b | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 878 | unsigned char *desc = sb + 8; | 
| Tejun Heo | 246619d | 2006-05-15 20:58:16 +0900 | [diff] [blame] | 879 | int verbose = qc->ap->ops->error_handler == NULL; | 
| Tejun Heo | d25614b | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 880 | u64 block; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 881 |  | 
|  | 882 | memset(sb, 0, SCSI_SENSE_BUFFERSIZE); | 
|  | 883 |  | 
| Jeff Garzik | 0e5dec4 | 2005-10-06 09:40:20 -0400 | [diff] [blame] | 884 | cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 885 |  | 
| Tejun Heo | d25614b | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 886 | /* sense data is current and format is descriptor */ | 
|  | 887 | sb[0] = 0x72; | 
|  | 888 |  | 
|  | 889 | /* Use ata_to_sense_error() to map status register bits | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 890 | * onto sense key, asc & ascq. | 
|  | 891 | */ | 
| Tejun Heo | 058e55e | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 892 | if (qc->err_mask || | 
|  | 893 | tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) { | 
| Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 894 | ata_to_sense_error(qc->ap->print_id, tf->command, tf->feature, | 
| Tejun Heo | d25614b | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 895 | &sb[1], &sb[2], &sb[3], verbose); | 
|  | 896 | sb[1] &= 0x0f; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 897 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 |  | 
| Tejun Heo | d25614b | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 899 | block = ata_tf_read_block(&qc->result_tf, dev); | 
| Jeff Garzik | 0274aa2 | 2005-06-22 13:50:56 -0400 | [diff] [blame] | 900 |  | 
| Tejun Heo | d25614b | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 901 | /* information sense data descriptor */ | 
|  | 902 | sb[7] = 12; | 
|  | 903 | desc[0] = 0x00; | 
|  | 904 | desc[1] = 10; | 
| Jeff Garzik | a7dac44 | 2005-10-30 04:44:42 -0500 | [diff] [blame] | 905 |  | 
| Tejun Heo | d25614b | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 906 | desc[2] |= 0x80;	/* valid */ | 
|  | 907 | desc[6] = block >> 40; | 
|  | 908 | desc[7] = block >> 32; | 
|  | 909 | desc[8] = block >> 24; | 
|  | 910 | desc[9] = block >> 16; | 
|  | 911 | desc[10] = block >> 8; | 
|  | 912 | desc[11] = block; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | } | 
|  | 914 |  | 
| Brian King | a6cce2a | 2006-03-17 17:04:15 -0600 | [diff] [blame] | 915 | static void ata_scsi_sdev_config(struct scsi_device *sdev) | 
|  | 916 | { | 
|  | 917 | sdev->use_10_for_rw = 1; | 
|  | 918 | sdev->use_10_for_ms = 1; | 
| Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 919 |  | 
|  | 920 | /* Schedule policy is determined by ->qc_defer() callback and | 
|  | 921 | * it needs to see every deferred qc.  Set dev_blocked to 1 to | 
|  | 922 | * prevent SCSI midlayer from automatically deferring | 
|  | 923 | * requests. | 
|  | 924 | */ | 
|  | 925 | sdev->max_device_blocked = 1; | 
| Brian King | a6cce2a | 2006-03-17 17:04:15 -0600 | [diff] [blame] | 926 | } | 
|  | 927 |  | 
| James Bottomley | fa2fc7f | 2008-02-19 11:36:57 +0100 | [diff] [blame] | 928 | /** | 
|  | 929 | *	atapi_drain_needed - Check whether data transfer may overflow | 
| Randy Dunlap | 73fd8b6 | 2008-02-19 13:43:21 -0800 | [diff] [blame] | 930 | *	@rq: request to be checked | 
| James Bottomley | fa2fc7f | 2008-02-19 11:36:57 +0100 | [diff] [blame] | 931 | * | 
|  | 932 | *	ATAPI commands which transfer variable length data to host | 
|  | 933 | *	might overflow due to application error or hardare bug.  This | 
|  | 934 | *	function checks whether overflow should be drained and ignored | 
|  | 935 | *	for @request. | 
|  | 936 | * | 
|  | 937 | *	LOCKING: | 
|  | 938 | *	None. | 
|  | 939 | * | 
|  | 940 | *	RETURNS: | 
|  | 941 | *	1 if ; otherwise, 0. | 
|  | 942 | */ | 
|  | 943 | static int atapi_drain_needed(struct request *rq) | 
|  | 944 | { | 
|  | 945 | if (likely(!blk_pc_request(rq))) | 
|  | 946 | return 0; | 
|  | 947 |  | 
|  | 948 | if (!rq->data_len || (rq->cmd_flags & REQ_RW)) | 
|  | 949 | return 0; | 
|  | 950 |  | 
|  | 951 | return atapi_cmd_type(rq->cmd[0]) == ATAPI_MISC; | 
|  | 952 | } | 
|  | 953 |  | 
|  | 954 | static int ata_scsi_dev_config(struct scsi_device *sdev, | 
|  | 955 | struct ata_device *dev) | 
| Brian King | a6cce2a | 2006-03-17 17:04:15 -0600 | [diff] [blame] | 956 | { | 
| Tejun Heo | 914ed35 | 2006-11-01 18:39:55 +0900 | [diff] [blame] | 957 | /* configure max sectors */ | 
|  | 958 | blk_queue_max_sectors(sdev->request_queue, dev->max_sectors); | 
| Brian King | a6cce2a | 2006-03-17 17:04:15 -0600 | [diff] [blame] | 959 |  | 
| James Bottomley | fa2fc7f | 2008-02-19 11:36:57 +0100 | [diff] [blame] | 960 | if (dev->class == ATA_DEV_ATAPI) { | 
|  | 961 | struct request_queue *q = sdev->request_queue; | 
|  | 962 | void *buf; | 
|  | 963 |  | 
| Tejun Heo | e3790c7 | 2008-03-04 11:18:17 +0100 | [diff] [blame] | 964 | /* set the min alignment and padding */ | 
| James Bottomley | d0ad3bc | 2008-01-22 13:43:48 -0600 | [diff] [blame] | 965 | blk_queue_update_dma_alignment(sdev->request_queue, | 
|  | 966 | ATA_DMA_PAD_SZ - 1); | 
| FUJITA Tomonori | 27f8221 | 2008-07-04 09:30:03 +0200 | [diff] [blame] | 967 | blk_queue_update_dma_pad(sdev->request_queue, | 
|  | 968 | ATA_DMA_PAD_SZ - 1); | 
| James Bottomley | fa2fc7f | 2008-02-19 11:36:57 +0100 | [diff] [blame] | 969 |  | 
|  | 970 | /* configure draining */ | 
|  | 971 | buf = kmalloc(ATAPI_MAX_DRAIN, q->bounce_gfp | GFP_KERNEL); | 
|  | 972 | if (!buf) { | 
|  | 973 | ata_dev_printk(dev, KERN_ERR, | 
|  | 974 | "drain buffer allocation failed\n"); | 
|  | 975 | return -ENOMEM; | 
|  | 976 | } | 
|  | 977 |  | 
|  | 978 | blk_queue_dma_drain(q, atapi_drain_needed, buf, ATAPI_MAX_DRAIN); | 
|  | 979 | } else { | 
| James Bottomley | d0ad3bc | 2008-01-22 13:43:48 -0600 | [diff] [blame] | 980 | /* ATA devices must be sector aligned */ | 
|  | 981 | blk_queue_update_dma_alignment(sdev->request_queue, | 
|  | 982 | ATA_SECT_SIZE - 1); | 
| Tejun Heo | d8cf538 | 2008-01-15 08:46:59 +0900 | [diff] [blame] | 983 | sdev->manage_start_stop = 1; | 
| James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 984 | } | 
| Tejun Heo | d8cf538 | 2008-01-15 08:46:59 +0900 | [diff] [blame] | 985 |  | 
| Jeff Garzik | f26792d | 2007-10-29 17:18:39 -0400 | [diff] [blame] | 986 | if (dev->flags & ATA_DFLAG_AN) | 
|  | 987 | set_bit(SDEV_EVT_MEDIA_CHANGE, sdev->supported_events); | 
|  | 988 |  | 
| Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 989 | if (dev->flags & ATA_DFLAG_NCQ) { | 
|  | 990 | int depth; | 
|  | 991 |  | 
|  | 992 | depth = min(sdev->host->can_queue, ata_id_queue_depth(dev->id)); | 
|  | 993 | depth = min(ATA_MAX_QUEUE - 1, depth); | 
|  | 994 | scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, depth); | 
|  | 995 | } | 
| James Bottomley | fa2fc7f | 2008-02-19 11:36:57 +0100 | [diff] [blame] | 996 |  | 
|  | 997 | return 0; | 
| Brian King | a6cce2a | 2006-03-17 17:04:15 -0600 | [diff] [blame] | 998 | } | 
|  | 999 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | /** | 
|  | 1001 | *	ata_scsi_slave_config - Set SCSI device attributes | 
|  | 1002 | *	@sdev: SCSI device to examine | 
|  | 1003 | * | 
|  | 1004 | *	This is called before we actually start reading | 
|  | 1005 | *	and writing to the device, to configure certain | 
|  | 1006 | *	SCSI mid-layer behaviors. | 
|  | 1007 | * | 
|  | 1008 | *	LOCKING: | 
|  | 1009 | *	Defined by SCSI layer.  We don't really care. | 
|  | 1010 | */ | 
|  | 1011 |  | 
|  | 1012 | int ata_scsi_slave_config(struct scsi_device *sdev) | 
|  | 1013 | { | 
| Tejun Heo | 3153436 | 2006-05-31 18:27:36 +0900 | [diff] [blame] | 1014 | struct ata_port *ap = ata_shost_to_port(sdev->host); | 
|  | 1015 | struct ata_device *dev = __ata_scsi_find_dev(ap, sdev); | 
| James Bottomley | fa2fc7f | 2008-02-19 11:36:57 +0100 | [diff] [blame] | 1016 | int rc = 0; | 
| Tejun Heo | 3153436 | 2006-05-31 18:27:36 +0900 | [diff] [blame] | 1017 |  | 
| Brian King | a6cce2a | 2006-03-17 17:04:15 -0600 | [diff] [blame] | 1018 | ata_scsi_sdev_config(sdev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 |  | 
| Tejun Heo | 3153436 | 2006-05-31 18:27:36 +0900 | [diff] [blame] | 1020 | if (dev) | 
| James Bottomley | fa2fc7f | 2008-02-19 11:36:57 +0100 | [diff] [blame] | 1021 | rc = ata_scsi_dev_config(sdev, dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 |  | 
| James Bottomley | fa2fc7f | 2008-02-19 11:36:57 +0100 | [diff] [blame] | 1023 | return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | } | 
|  | 1025 |  | 
|  | 1026 | /** | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 1027 | *	ata_scsi_slave_destroy - SCSI device is about to be destroyed | 
|  | 1028 | *	@sdev: SCSI device to be destroyed | 
|  | 1029 | * | 
|  | 1030 | *	@sdev is about to be destroyed for hot/warm unplugging.  If | 
|  | 1031 | *	this unplugging was initiated by libata as indicated by NULL | 
|  | 1032 | *	dev->sdev, this function doesn't have to do anything. | 
|  | 1033 | *	Otherwise, SCSI layer initiated warm-unplug is in progress. | 
|  | 1034 | *	Clear dev->sdev, schedule the device for ATA detach and invoke | 
|  | 1035 | *	EH. | 
|  | 1036 | * | 
|  | 1037 | *	LOCKING: | 
|  | 1038 | *	Defined by SCSI layer.  We don't really care. | 
|  | 1039 | */ | 
|  | 1040 | void ata_scsi_slave_destroy(struct scsi_device *sdev) | 
|  | 1041 | { | 
|  | 1042 | struct ata_port *ap = ata_shost_to_port(sdev->host); | 
| James Bottomley | fa2fc7f | 2008-02-19 11:36:57 +0100 | [diff] [blame] | 1043 | struct request_queue *q = sdev->request_queue; | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 1044 | unsigned long flags; | 
|  | 1045 | struct ata_device *dev; | 
|  | 1046 |  | 
|  | 1047 | if (!ap->ops->error_handler) | 
|  | 1048 | return; | 
|  | 1049 |  | 
| Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1050 | spin_lock_irqsave(ap->lock, flags); | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 1051 | dev = __ata_scsi_find_dev(ap, sdev); | 
|  | 1052 | if (dev && dev->sdev) { | 
|  | 1053 | /* SCSI device already in CANCEL state, no need to offline it */ | 
|  | 1054 | dev->sdev = NULL; | 
|  | 1055 | dev->flags |= ATA_DFLAG_DETACH; | 
|  | 1056 | ata_port_schedule_eh(ap); | 
|  | 1057 | } | 
| Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1058 | spin_unlock_irqrestore(ap->lock, flags); | 
| James Bottomley | fa2fc7f | 2008-02-19 11:36:57 +0100 | [diff] [blame] | 1059 |  | 
|  | 1060 | kfree(q->dma_drain_buffer); | 
|  | 1061 | q->dma_drain_buffer = NULL; | 
|  | 1062 | q->dma_drain_size = 0; | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 1063 | } | 
|  | 1064 |  | 
|  | 1065 | /** | 
| Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1066 | *	ata_scsi_change_queue_depth - SCSI callback for queue depth config | 
|  | 1067 | *	@sdev: SCSI device to configure queue depth for | 
|  | 1068 | *	@queue_depth: new queue depth | 
|  | 1069 | * | 
|  | 1070 | *	This is libata standard hostt->change_queue_depth callback. | 
|  | 1071 | *	SCSI will call into this callback when user tries to set queue | 
|  | 1072 | *	depth via sysfs. | 
|  | 1073 | * | 
|  | 1074 | *	LOCKING: | 
|  | 1075 | *	SCSI layer (we don't care) | 
|  | 1076 | * | 
|  | 1077 | *	RETURNS: | 
|  | 1078 | *	Newly configured queue depth. | 
|  | 1079 | */ | 
|  | 1080 | int ata_scsi_change_queue_depth(struct scsi_device *sdev, int queue_depth) | 
|  | 1081 | { | 
|  | 1082 | struct ata_port *ap = ata_shost_to_port(sdev->host); | 
|  | 1083 | struct ata_device *dev; | 
| Tejun Heo | 360f654 | 2006-09-30 19:45:00 +0900 | [diff] [blame] | 1084 | unsigned long flags; | 
| Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1085 |  | 
| Tejun Heo | c3c70c4 | 2007-02-20 23:31:22 +0900 | [diff] [blame] | 1086 | if (queue_depth < 1 || queue_depth == sdev->queue_depth) | 
| Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1087 | return sdev->queue_depth; | 
|  | 1088 |  | 
|  | 1089 | dev = ata_scsi_find_dev(ap, sdev); | 
|  | 1090 | if (!dev || !ata_dev_enabled(dev)) | 
|  | 1091 | return sdev->queue_depth; | 
|  | 1092 |  | 
| Tejun Heo | c3c70c4 | 2007-02-20 23:31:22 +0900 | [diff] [blame] | 1093 | /* NCQ enabled? */ | 
| Tejun Heo | 360f654 | 2006-09-30 19:45:00 +0900 | [diff] [blame] | 1094 | spin_lock_irqsave(ap->lock, flags); | 
| Tejun Heo | c3c70c4 | 2007-02-20 23:31:22 +0900 | [diff] [blame] | 1095 | dev->flags &= ~ATA_DFLAG_NCQ_OFF; | 
|  | 1096 | if (queue_depth == 1 || !ata_ncq_enabled(dev)) { | 
| Tejun Heo | 360f654 | 2006-09-30 19:45:00 +0900 | [diff] [blame] | 1097 | dev->flags |= ATA_DFLAG_NCQ_OFF; | 
| Tejun Heo | c3c70c4 | 2007-02-20 23:31:22 +0900 | [diff] [blame] | 1098 | queue_depth = 1; | 
|  | 1099 | } | 
| Tejun Heo | 360f654 | 2006-09-30 19:45:00 +0900 | [diff] [blame] | 1100 | spin_unlock_irqrestore(ap->lock, flags); | 
|  | 1101 |  | 
| Tejun Heo | c3c70c4 | 2007-02-20 23:31:22 +0900 | [diff] [blame] | 1102 | /* limit and apply queue depth */ | 
|  | 1103 | queue_depth = min(queue_depth, sdev->host->can_queue); | 
|  | 1104 | queue_depth = min(queue_depth, ata_id_queue_depth(dev->id)); | 
|  | 1105 | queue_depth = min(queue_depth, ATA_MAX_QUEUE - 1); | 
|  | 1106 |  | 
|  | 1107 | if (sdev->queue_depth == queue_depth) | 
|  | 1108 | return -EINVAL; | 
|  | 1109 |  | 
|  | 1110 | scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, queue_depth); | 
| Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1111 | return queue_depth; | 
|  | 1112 | } | 
|  | 1113 |  | 
| Tejun Heo | d9aca22 | 2007-05-17 16:43:26 +0200 | [diff] [blame] | 1114 | /* XXX: for spindown warning */ | 
| Tejun Heo | da071b4 | 2007-05-14 17:26:18 +0200 | [diff] [blame] | 1115 | static void ata_delayed_done_timerfn(unsigned long arg) | 
|  | 1116 | { | 
|  | 1117 | struct scsi_cmnd *scmd = (void *)arg; | 
|  | 1118 |  | 
|  | 1119 | scmd->scsi_done(scmd); | 
|  | 1120 | } | 
|  | 1121 |  | 
| Tejun Heo | d9aca22 | 2007-05-17 16:43:26 +0200 | [diff] [blame] | 1122 | /* XXX: for spindown warning */ | 
| Tejun Heo | da071b4 | 2007-05-14 17:26:18 +0200 | [diff] [blame] | 1123 | static void ata_delayed_done(struct scsi_cmnd *scmd) | 
|  | 1124 | { | 
|  | 1125 | static struct timer_list timer; | 
|  | 1126 |  | 
|  | 1127 | setup_timer(&timer, ata_delayed_done_timerfn, (unsigned long)scmd); | 
|  | 1128 | mod_timer(&timer, jiffies + 5 * HZ); | 
|  | 1129 | } | 
|  | 1130 |  | 
| Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1131 | /** | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1132 | *	ata_scsi_start_stop_xlat - Translate SCSI START STOP UNIT command | 
|  | 1133 | *	@qc: Storage for translated ATA taskfile | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1134 | * | 
|  | 1135 | *	Sets up an ATA taskfile to issue STANDBY (to stop) or READ VERIFY | 
|  | 1136 | *	(to start). Perhaps these commands should be preceded by | 
|  | 1137 | *	CHECK POWER MODE to see what power mode the device is already in. | 
|  | 1138 | *	[See SAT revision 5 at www.t10.org] | 
|  | 1139 | * | 
|  | 1140 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1141 | *	spin_lock_irqsave(host lock) | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1142 | * | 
|  | 1143 | *	RETURNS: | 
|  | 1144 | *	Zero on success, non-zero on error. | 
|  | 1145 | */ | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 1146 | static unsigned int ata_scsi_start_stop_xlat(struct ata_queued_cmd *qc) | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1147 | { | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1148 | struct scsi_cmnd *scmd = qc->scsicmd; | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1149 | struct ata_taskfile *tf = &qc->tf; | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 1150 | const u8 *cdb = scmd->cmnd; | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1151 |  | 
| Tejun Heo | 2e5704f | 2006-12-17 10:46:33 +0900 | [diff] [blame] | 1152 | if (scmd->cmd_len < 5) | 
|  | 1153 | goto invalid_fld; | 
|  | 1154 |  | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1155 | tf->flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR; | 
|  | 1156 | tf->protocol = ATA_PROT_NODATA; | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1157 | if (cdb[1] & 0x1) { | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1158 | ;	/* ignore IMMED bit, violates sat-r05 */ | 
|  | 1159 | } | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1160 | if (cdb[4] & 0x2) | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1161 | goto invalid_fld;       /* LOEJ bit set not supported */ | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1162 | if (((cdb[4] >> 4) & 0xf) != 0) | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1163 | goto invalid_fld;       /* power conditions not supported */ | 
| Tejun Heo | e31e853 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 1164 |  | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1165 | if (cdb[4] & 0x1) { | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1166 | tf->nsect = 1;	/* 1 sector, lba=0 */ | 
| Albert Lee | 9d5b130 | 2005-10-04 08:48:17 -0400 | [diff] [blame] | 1167 |  | 
|  | 1168 | if (qc->dev->flags & ATA_DFLAG_LBA) { | 
| Tejun Heo | c44078c | 2006-05-15 20:57:21 +0900 | [diff] [blame] | 1169 | tf->flags |= ATA_TFLAG_LBA; | 
| Albert Lee | 9d5b130 | 2005-10-04 08:48:17 -0400 | [diff] [blame] | 1170 |  | 
|  | 1171 | tf->lbah = 0x0; | 
|  | 1172 | tf->lbam = 0x0; | 
|  | 1173 | tf->lbal = 0x0; | 
|  | 1174 | tf->device |= ATA_LBA; | 
|  | 1175 | } else { | 
|  | 1176 | /* CHS */ | 
|  | 1177 | tf->lbal = 0x1; /* sect */ | 
|  | 1178 | tf->lbam = 0x0; /* cyl low */ | 
|  | 1179 | tf->lbah = 0x0; /* cyl high */ | 
|  | 1180 | } | 
|  | 1181 |  | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1182 | tf->command = ATA_CMD_VERIFY;	/* READ VERIFY */ | 
| Tejun Heo | 920a4b1 | 2007-05-04 21:28:48 +0200 | [diff] [blame] | 1183 | } else { | 
|  | 1184 | /* XXX: This is for backward compatibility, will be | 
|  | 1185 | * removed.  Read Documentation/feature-removal-schedule.txt | 
|  | 1186 | * for more info. | 
|  | 1187 | */ | 
| Tejun Heo | d9aca22 | 2007-05-17 16:43:26 +0200 | [diff] [blame] | 1188 | if ((qc->dev->flags & ATA_DFLAG_SPUNDOWN) && | 
| Tejun Heo | 920a4b1 | 2007-05-04 21:28:48 +0200 | [diff] [blame] | 1189 | (system_state == SYSTEM_HALT || | 
|  | 1190 | system_state == SYSTEM_POWER_OFF)) { | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1191 | static unsigned long warned; | 
| Tejun Heo | 920a4b1 | 2007-05-04 21:28:48 +0200 | [diff] [blame] | 1192 |  | 
| Tejun Heo | da071b4 | 2007-05-14 17:26:18 +0200 | [diff] [blame] | 1193 | if (!test_and_set_bit(0, &warned)) { | 
| Tejun Heo | 920a4b1 | 2007-05-04 21:28:48 +0200 | [diff] [blame] | 1194 | ata_dev_printk(qc->dev, KERN_WARNING, | 
|  | 1195 | "DISK MIGHT NOT BE SPUN DOWN PROPERLY. " | 
|  | 1196 | "UPDATE SHUTDOWN UTILITY\n"); | 
|  | 1197 | ata_dev_printk(qc->dev, KERN_WARNING, | 
|  | 1198 | "For more info, visit " | 
|  | 1199 | "http://linux-ata.org/shutdown.html\n"); | 
| Tejun Heo | da071b4 | 2007-05-14 17:26:18 +0200 | [diff] [blame] | 1200 |  | 
|  | 1201 | /* ->scsi_done is not used, use it for | 
|  | 1202 | * delayed completion. | 
|  | 1203 | */ | 
|  | 1204 | scmd->scsi_done = qc->scsidone; | 
|  | 1205 | qc->scsidone = ata_delayed_done; | 
| Tejun Heo | 920a4b1 | 2007-05-04 21:28:48 +0200 | [diff] [blame] | 1206 | } | 
|  | 1207 | scmd->result = SAM_STAT_GOOD; | 
|  | 1208 | return 1; | 
|  | 1209 | } | 
|  | 1210 |  | 
| Robert Hancock | 78981a7 | 2007-01-30 00:59:18 -0800 | [diff] [blame] | 1211 | /* Issue ATA STANDBY IMMEDIATE command */ | 
|  | 1212 | tf->command = ATA_CMD_STANDBYNOW1; | 
| Tejun Heo | 920a4b1 | 2007-05-04 21:28:48 +0200 | [diff] [blame] | 1213 | } | 
| Robert Hancock | 78981a7 | 2007-01-30 00:59:18 -0800 | [diff] [blame] | 1214 |  | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1215 | /* | 
|  | 1216 | * Standby and Idle condition timers could be implemented but that | 
|  | 1217 | * would require libata to implement the Power condition mode page | 
|  | 1218 | * and allow the user to change it. Changing mode pages requires | 
|  | 1219 | * MODE SELECT to be implemented. | 
|  | 1220 | */ | 
|  | 1221 |  | 
|  | 1222 | return 0; | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1223 |  | 
|  | 1224 | invalid_fld: | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1225 | ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0); | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1226 | /* "Invalid field in cbd" */ | 
|  | 1227 | return 1; | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 1228 | } | 
|  | 1229 |  | 
|  | 1230 |  | 
|  | 1231 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | *	ata_scsi_flush_xlat - Translate SCSI SYNCHRONIZE CACHE command | 
|  | 1233 | *	@qc: Storage for translated ATA taskfile | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | * | 
|  | 1235 | *	Sets up an ATA taskfile to issue FLUSH CACHE or | 
|  | 1236 | *	FLUSH CACHE EXT. | 
|  | 1237 | * | 
|  | 1238 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1239 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | * | 
|  | 1241 | *	RETURNS: | 
|  | 1242 | *	Zero on success, non-zero on error. | 
|  | 1243 | */ | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 1244 | static unsigned int ata_scsi_flush_xlat(struct ata_queued_cmd *qc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | { | 
|  | 1246 | struct ata_taskfile *tf = &qc->tf; | 
|  | 1247 |  | 
|  | 1248 | tf->flags |= ATA_TFLAG_DEVICE; | 
|  | 1249 | tf->protocol = ATA_PROT_NODATA; | 
|  | 1250 |  | 
| Tejun Heo | 6fc49ad | 2006-11-11 20:10:45 +0900 | [diff] [blame] | 1251 | if (qc->dev->flags & ATA_DFLAG_FLUSH_EXT) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | tf->command = ATA_CMD_FLUSH_EXT; | 
|  | 1253 | else | 
|  | 1254 | tf->command = ATA_CMD_FLUSH; | 
|  | 1255 |  | 
| Tejun Heo | b666da3 | 2007-10-26 15:53:59 +0900 | [diff] [blame] | 1256 | /* flush is critical for IO integrity, consider it an IO command */ | 
|  | 1257 | qc->flags |= ATA_QCFLAG_IO; | 
|  | 1258 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | return 0; | 
|  | 1260 | } | 
|  | 1261 |  | 
|  | 1262 | /** | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1263 | *	scsi_6_lba_len - Get LBA and transfer length | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1264 | *	@cdb: SCSI command to translate | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1265 | * | 
|  | 1266 | *	Calculate LBA and transfer length for 6-byte commands. | 
|  | 1267 | * | 
|  | 1268 | *	RETURNS: | 
|  | 1269 | *	@plba: the LBA | 
|  | 1270 | *	@plen: the transfer length | 
|  | 1271 | */ | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1272 | static void scsi_6_lba_len(const u8 *cdb, u64 *plba, u32 *plen) | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1273 | { | 
|  | 1274 | u64 lba = 0; | 
| Jeff Garzik | 6c7b7d2 | 2007-05-25 04:39:39 -0400 | [diff] [blame] | 1275 | u32 len; | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1276 |  | 
|  | 1277 | VPRINTK("six-byte command\n"); | 
|  | 1278 |  | 
| Jeff Garzik | 6c7b7d2 | 2007-05-25 04:39:39 -0400 | [diff] [blame] | 1279 | lba |= ((u64)(cdb[1] & 0x1f)) << 16; | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1280 | lba |= ((u64)cdb[2]) << 8; | 
|  | 1281 | lba |= ((u64)cdb[3]); | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1282 |  | 
| Jeff Garzik | 6c7b7d2 | 2007-05-25 04:39:39 -0400 | [diff] [blame] | 1283 | len = cdb[4]; | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1284 |  | 
|  | 1285 | *plba = lba; | 
|  | 1286 | *plen = len; | 
|  | 1287 | } | 
|  | 1288 |  | 
|  | 1289 | /** | 
|  | 1290 | *	scsi_10_lba_len - Get LBA and transfer length | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1291 | *	@cdb: SCSI command to translate | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1292 | * | 
|  | 1293 | *	Calculate LBA and transfer length for 10-byte commands. | 
|  | 1294 | * | 
|  | 1295 | *	RETURNS: | 
|  | 1296 | *	@plba: the LBA | 
|  | 1297 | *	@plen: the transfer length | 
|  | 1298 | */ | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1299 | static void scsi_10_lba_len(const u8 *cdb, u64 *plba, u32 *plen) | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1300 | { | 
|  | 1301 | u64 lba = 0; | 
|  | 1302 | u32 len = 0; | 
|  | 1303 |  | 
|  | 1304 | VPRINTK("ten-byte command\n"); | 
|  | 1305 |  | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1306 | lba |= ((u64)cdb[2]) << 24; | 
|  | 1307 | lba |= ((u64)cdb[3]) << 16; | 
|  | 1308 | lba |= ((u64)cdb[4]) << 8; | 
|  | 1309 | lba |= ((u64)cdb[5]); | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1310 |  | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1311 | len |= ((u32)cdb[7]) << 8; | 
|  | 1312 | len |= ((u32)cdb[8]); | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1313 |  | 
|  | 1314 | *plba = lba; | 
|  | 1315 | *plen = len; | 
|  | 1316 | } | 
|  | 1317 |  | 
|  | 1318 | /** | 
|  | 1319 | *	scsi_16_lba_len - Get LBA and transfer length | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1320 | *	@cdb: SCSI command to translate | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1321 | * | 
|  | 1322 | *	Calculate LBA and transfer length for 16-byte commands. | 
|  | 1323 | * | 
|  | 1324 | *	RETURNS: | 
|  | 1325 | *	@plba: the LBA | 
|  | 1326 | *	@plen: the transfer length | 
|  | 1327 | */ | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1328 | static void scsi_16_lba_len(const u8 *cdb, u64 *plba, u32 *plen) | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1329 | { | 
|  | 1330 | u64 lba = 0; | 
|  | 1331 | u32 len = 0; | 
|  | 1332 |  | 
|  | 1333 | VPRINTK("sixteen-byte command\n"); | 
|  | 1334 |  | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1335 | lba |= ((u64)cdb[2]) << 56; | 
|  | 1336 | lba |= ((u64)cdb[3]) << 48; | 
|  | 1337 | lba |= ((u64)cdb[4]) << 40; | 
|  | 1338 | lba |= ((u64)cdb[5]) << 32; | 
|  | 1339 | lba |= ((u64)cdb[6]) << 24; | 
|  | 1340 | lba |= ((u64)cdb[7]) << 16; | 
|  | 1341 | lba |= ((u64)cdb[8]) << 8; | 
|  | 1342 | lba |= ((u64)cdb[9]); | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1343 |  | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1344 | len |= ((u32)cdb[10]) << 24; | 
|  | 1345 | len |= ((u32)cdb[11]) << 16; | 
|  | 1346 | len |= ((u32)cdb[12]) << 8; | 
|  | 1347 | len |= ((u32)cdb[13]); | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1348 |  | 
|  | 1349 | *plba = lba; | 
|  | 1350 | *plen = len; | 
|  | 1351 | } | 
|  | 1352 |  | 
|  | 1353 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | *	ata_scsi_verify_xlat - Translate SCSI VERIFY command into an ATA one | 
|  | 1355 | *	@qc: Storage for translated ATA taskfile | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | * | 
|  | 1357 | *	Converts SCSI VERIFY command to an ATA READ VERIFY command. | 
|  | 1358 | * | 
|  | 1359 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1360 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | * | 
|  | 1362 | *	RETURNS: | 
|  | 1363 | *	Zero on success, non-zero on error. | 
|  | 1364 | */ | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 1365 | static unsigned int ata_scsi_verify_xlat(struct ata_queued_cmd *qc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | { | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1367 | struct scsi_cmnd *scmd = qc->scsicmd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | struct ata_taskfile *tf = &qc->tf; | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1369 | struct ata_device *dev = qc->dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | u64 dev_sectors = qc->dev->n_sectors; | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 1371 | const u8 *cdb = scmd->cmnd; | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1372 | u64 block; | 
|  | 1373 | u32 n_block; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 |  | 
|  | 1375 | tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; | 
|  | 1376 | tf->protocol = ATA_PROT_NODATA; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 |  | 
| Tejun Heo | 2e5704f | 2006-12-17 10:46:33 +0900 | [diff] [blame] | 1378 | if (cdb[0] == VERIFY) { | 
|  | 1379 | if (scmd->cmd_len < 10) | 
|  | 1380 | goto invalid_fld; | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1381 | scsi_10_lba_len(cdb, &block, &n_block); | 
| Tejun Heo | 2e5704f | 2006-12-17 10:46:33 +0900 | [diff] [blame] | 1382 | } else if (cdb[0] == VERIFY_16) { | 
|  | 1383 | if (scmd->cmd_len < 16) | 
|  | 1384 | goto invalid_fld; | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1385 | scsi_16_lba_len(cdb, &block, &n_block); | 
| Tejun Heo | 2e5704f | 2006-12-17 10:46:33 +0900 | [diff] [blame] | 1386 | } else | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1387 | goto invalid_fld; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 |  | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1389 | if (!n_block) | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1390 | goto nothing_to_do; | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1391 | if (block >= dev_sectors) | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1392 | goto out_of_range; | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1393 | if ((block + n_block) > dev_sectors) | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1394 | goto out_of_range; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 |  | 
| Albert Lee | 0750669 | 2005-10-12 15:04:18 +0800 | [diff] [blame] | 1396 | if (dev->flags & ATA_DFLAG_LBA) { | 
|  | 1397 | tf->flags |= ATA_TFLAG_LBA; | 
|  | 1398 |  | 
| Albert Lee | c6a33e2 | 2005-10-12 15:12:26 +0800 | [diff] [blame] | 1399 | if (lba_28_ok(block, n_block)) { | 
|  | 1400 | /* use LBA28 */ | 
|  | 1401 | tf->command = ATA_CMD_VERIFY; | 
|  | 1402 | tf->device |= (block >> 24) & 0xf; | 
|  | 1403 | } else if (lba_48_ok(block, n_block)) { | 
|  | 1404 | if (!(dev->flags & ATA_DFLAG_LBA48)) | 
|  | 1405 | goto out_of_range; | 
| Albert Lee | 0750669 | 2005-10-12 15:04:18 +0800 | [diff] [blame] | 1406 |  | 
|  | 1407 | /* use LBA48 */ | 
|  | 1408 | tf->flags |= ATA_TFLAG_LBA48; | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1409 | tf->command = ATA_CMD_VERIFY_EXT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 |  | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1411 | tf->hob_nsect = (n_block >> 8) & 0xff; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 |  | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1413 | tf->hob_lbah = (block >> 40) & 0xff; | 
|  | 1414 | tf->hob_lbam = (block >> 32) & 0xff; | 
|  | 1415 | tf->hob_lbal = (block >> 24) & 0xff; | 
| Albert Lee | c6a33e2 | 2005-10-12 15:12:26 +0800 | [diff] [blame] | 1416 | } else | 
|  | 1417 | /* request too large even for LBA48 */ | 
|  | 1418 | goto out_of_range; | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1419 |  | 
|  | 1420 | tf->nsect = n_block & 0xff; | 
|  | 1421 |  | 
|  | 1422 | tf->lbah = (block >> 16) & 0xff; | 
|  | 1423 | tf->lbam = (block >> 8) & 0xff; | 
|  | 1424 | tf->lbal = block & 0xff; | 
|  | 1425 |  | 
|  | 1426 | tf->device |= ATA_LBA; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | } else { | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1428 | /* CHS */ | 
|  | 1429 | u32 sect, head, cyl, track; | 
|  | 1430 |  | 
| Albert Lee | c6a33e2 | 2005-10-12 15:12:26 +0800 | [diff] [blame] | 1431 | if (!lba_28_ok(block, n_block)) | 
|  | 1432 | goto out_of_range; | 
| Albert Lee | 0750669 | 2005-10-12 15:04:18 +0800 | [diff] [blame] | 1433 |  | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1434 | /* Convert LBA to CHS */ | 
|  | 1435 | track = (u32)block / dev->sectors; | 
|  | 1436 | cyl   = track / dev->heads; | 
|  | 1437 | head  = track % dev->heads; | 
|  | 1438 | sect  = (u32)block % dev->sectors + 1; | 
|  | 1439 |  | 
| Albert Lee | c187c4b | 2005-10-04 08:46:51 -0400 | [diff] [blame] | 1440 | DPRINTK("block %u track %u cyl %u head %u sect %u\n", | 
|  | 1441 | (u32)block, track, cyl, head, sect); | 
| Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1442 |  | 
|  | 1443 | /* Check whether the converted CHS can fit. | 
|  | 1444 | Cylinder: 0-65535 | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1445 | Head: 0-15 | 
|  | 1446 | Sector: 1-255*/ | 
| Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1447 | if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect)) | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1448 | goto out_of_range; | 
| Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1449 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | tf->command = ATA_CMD_VERIFY; | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1451 | tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */ | 
|  | 1452 | tf->lbal = sect; | 
|  | 1453 | tf->lbam = cyl; | 
|  | 1454 | tf->lbah = cyl >> 8; | 
|  | 1455 | tf->device |= head; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | } | 
|  | 1457 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | return 0; | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1459 |  | 
|  | 1460 | invalid_fld: | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1461 | ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0); | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1462 | /* "Invalid field in cbd" */ | 
|  | 1463 | return 1; | 
|  | 1464 |  | 
|  | 1465 | out_of_range: | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1466 | ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x21, 0x0); | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1467 | /* "Logical Block Address out of range" */ | 
|  | 1468 | return 1; | 
|  | 1469 |  | 
|  | 1470 | nothing_to_do: | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1471 | scmd->result = SAM_STAT_GOOD; | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1472 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | } | 
|  | 1474 |  | 
|  | 1475 | /** | 
|  | 1476 | *	ata_scsi_rw_xlat - Translate SCSI r/w command into an ATA one | 
|  | 1477 | *	@qc: Storage for translated ATA taskfile | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | * | 
|  | 1479 | *	Converts any of six SCSI read/write commands into the | 
|  | 1480 | *	ATA counterpart, including starting sector (LBA), | 
|  | 1481 | *	sector count, and taking into account the device's LBA48 | 
|  | 1482 | *	support. | 
|  | 1483 | * | 
|  | 1484 | *	Commands %READ_6, %READ_10, %READ_16, %WRITE_6, %WRITE_10, and | 
|  | 1485 | *	%WRITE_16 are currently supported. | 
|  | 1486 | * | 
|  | 1487 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1488 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | * | 
|  | 1490 | *	RETURNS: | 
|  | 1491 | *	Zero on success, non-zero on error. | 
|  | 1492 | */ | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 1493 | static unsigned int ata_scsi_rw_xlat(struct ata_queued_cmd *qc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | { | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1495 | struct scsi_cmnd *scmd = qc->scsicmd; | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 1496 | const u8 *cdb = scmd->cmnd; | 
| Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 1497 | unsigned int tf_flags = 0; | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1498 | u64 block; | 
|  | 1499 | u32 n_block; | 
| Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 1500 | int rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 |  | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1502 | if (cdb[0] == WRITE_10 || cdb[0] == WRITE_6 || cdb[0] == WRITE_16) | 
| Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 1503 | tf_flags |= ATA_TFLAG_WRITE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 |  | 
| Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 1505 | /* Calculate the SCSI LBA, transfer length and FUA. */ | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1506 | switch (cdb[0]) { | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1507 | case READ_10: | 
|  | 1508 | case WRITE_10: | 
| Tejun Heo | 2e5704f | 2006-12-17 10:46:33 +0900 | [diff] [blame] | 1509 | if (unlikely(scmd->cmd_len < 10)) | 
|  | 1510 | goto invalid_fld; | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1511 | scsi_10_lba_len(cdb, &block, &n_block); | 
|  | 1512 | if (unlikely(cdb[1] & (1 << 3))) | 
| Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 1513 | tf_flags |= ATA_TFLAG_FUA; | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1514 | break; | 
|  | 1515 | case READ_6: | 
|  | 1516 | case WRITE_6: | 
| Tejun Heo | 2e5704f | 2006-12-17 10:46:33 +0900 | [diff] [blame] | 1517 | if (unlikely(scmd->cmd_len < 6)) | 
|  | 1518 | goto invalid_fld; | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1519 | scsi_6_lba_len(cdb, &block, &n_block); | 
| Albert Lee | c187c4b | 2005-10-04 08:46:51 -0400 | [diff] [blame] | 1520 |  | 
|  | 1521 | /* for 6-byte r/w commands, transfer length 0 | 
|  | 1522 | * means 256 blocks of data, not 0 block. | 
|  | 1523 | */ | 
| Jeff Garzik | 76b2bf9 | 2005-08-29 19:24:43 -0400 | [diff] [blame] | 1524 | if (!n_block) | 
|  | 1525 | n_block = 256; | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1526 | break; | 
|  | 1527 | case READ_16: | 
|  | 1528 | case WRITE_16: | 
| Tejun Heo | 2e5704f | 2006-12-17 10:46:33 +0900 | [diff] [blame] | 1529 | if (unlikely(scmd->cmd_len < 16)) | 
|  | 1530 | goto invalid_fld; | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1531 | scsi_16_lba_len(cdb, &block, &n_block); | 
|  | 1532 | if (unlikely(cdb[1] & (1 << 3))) | 
| Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 1533 | tf_flags |= ATA_TFLAG_FUA; | 
| Albert Lee | 3aef523 | 2005-10-04 08:47:43 -0400 | [diff] [blame] | 1534 | break; | 
|  | 1535 | default: | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1536 | DPRINTK("no-byte command\n"); | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1537 | goto invalid_fld; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | } | 
|  | 1539 |  | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1540 | /* Check and compose ATA command */ | 
|  | 1541 | if (!n_block) | 
| Albert Lee | c187c4b | 2005-10-04 08:46:51 -0400 | [diff] [blame] | 1542 | /* For 10-byte and 16-byte SCSI R/W commands, transfer | 
|  | 1543 | * length 0 means transfer 0 block of data. | 
|  | 1544 | * However, for ATA R/W commands, sector count 0 means | 
|  | 1545 | * 256 or 65536 sectors, not 0 sectors as in SCSI. | 
| Alan Cox | f51750d | 2005-11-07 17:06:33 +0000 | [diff] [blame] | 1546 | * | 
|  | 1547 | * WARNING: one or two older ATA drives treat 0 as 0... | 
| Albert Lee | c187c4b | 2005-10-04 08:46:51 -0400 | [diff] [blame] | 1548 | */ | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1549 | goto nothing_to_do; | 
| Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1550 |  | 
| Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 1551 | qc->flags |= ATA_QCFLAG_IO; | 
| Tejun Heo | 726f078 | 2007-01-03 17:30:39 +0900 | [diff] [blame] | 1552 | qc->nbytes = n_block * ATA_SECT_SIZE; | 
| Tejun Heo | 3dc1d88 | 2006-05-15 21:03:45 +0900 | [diff] [blame] | 1553 |  | 
| Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 1554 | rc = ata_build_rw_tf(&qc->tf, qc->dev, block, n_block, tf_flags, | 
|  | 1555 | qc->tag); | 
|  | 1556 | if (likely(rc == 0)) | 
|  | 1557 | return 0; | 
| Tejun Heo | 3dc1d88 | 2006-05-15 21:03:45 +0900 | [diff] [blame] | 1558 |  | 
| Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 1559 | if (rc == -ERANGE) | 
|  | 1560 | goto out_of_range; | 
|  | 1561 | /* treat all other errors as -EINVAL, fall through */ | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1562 | invalid_fld: | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1563 | ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0); | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1564 | /* "Invalid field in cbd" */ | 
|  | 1565 | return 1; | 
|  | 1566 |  | 
|  | 1567 | out_of_range: | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1568 | ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x21, 0x0); | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1569 | /* "Logical Block Address out of range" */ | 
|  | 1570 | return 1; | 
|  | 1571 |  | 
|  | 1572 | nothing_to_do: | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 1573 | scmd->result = SAM_STAT_GOOD; | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1574 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | } | 
|  | 1576 |  | 
| Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1577 | static void ata_scsi_qc_complete(struct ata_queued_cmd *qc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | { | 
| Tejun Heo | c31f571 | 2006-11-22 12:39:43 +0900 | [diff] [blame] | 1579 | struct ata_port *ap = qc->ap; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | struct scsi_cmnd *cmd = qc->scsicmd; | 
| Jeff Garzik | a7dac44 | 2005-10-30 04:44:42 -0500 | [diff] [blame] | 1581 | u8 *cdb = cmd->cmnd; | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1582 | int need_sense = (qc->err_mask != 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 |  | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 1584 | /* For ATA pass thru (SAT) commands, generate a sense block if | 
|  | 1585 | * user mandated it or if there's an error.  Note that if we | 
|  | 1586 | * generate because the user forced us to, a check condition | 
|  | 1587 | * is generated and the ATA register values are returned | 
|  | 1588 | * whether the command completed successfully or not. If there | 
|  | 1589 | * was no error, SK, ASC and ASCQ will all be zero. | 
|  | 1590 | */ | 
| Jeff Garzik | a7dac44 | 2005-10-30 04:44:42 -0500 | [diff] [blame] | 1591 | if (((cdb[0] == ATA_16) || (cdb[0] == ATA_12)) && | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1592 | ((cdb[2] & 0x20) || need_sense)) { | 
| Tejun Heo | 750426a | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 1593 | ata_gen_passthru_sense(qc); | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 1594 | } else { | 
|  | 1595 | if (!need_sense) { | 
|  | 1596 | cmd->result = SAM_STAT_GOOD; | 
|  | 1597 | } else { | 
|  | 1598 | /* TODO: decide which descriptor format to use | 
|  | 1599 | * for 48b LBA devices and call that here | 
|  | 1600 | * instead of the fixed desc, which is only | 
|  | 1601 | * good for smaller LBA (and maybe CHS?) | 
|  | 1602 | * devices. | 
|  | 1603 | */ | 
| Tejun Heo | 750426a | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 1604 | ata_gen_ata_sense(qc); | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 1605 | } | 
|  | 1606 | } | 
|  | 1607 |  | 
| Tejun Heo | d9aca22 | 2007-05-17 16:43:26 +0200 | [diff] [blame] | 1608 | /* XXX: track spindown state for spindown skipping and warning */ | 
| Tejun Heo | 13b8d09 | 2007-05-15 12:29:22 +0200 | [diff] [blame] | 1609 | if (unlikely(qc->tf.command == ATA_CMD_STANDBY || | 
|  | 1610 | qc->tf.command == ATA_CMD_STANDBYNOW1)) | 
|  | 1611 | qc->dev->flags |= ATA_DFLAG_SPUNDOWN; | 
|  | 1612 | else if (likely(system_state != SYSTEM_HALT && | 
|  | 1613 | system_state != SYSTEM_POWER_OFF)) | 
|  | 1614 | qc->dev->flags &= ~ATA_DFLAG_SPUNDOWN; | 
|  | 1615 |  | 
| Tejun Heo | c31f571 | 2006-11-22 12:39:43 +0900 | [diff] [blame] | 1616 | if (need_sense && !ap->ops->error_handler) | 
| Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 1617 | ata_dump_status(ap->print_id, &qc->result_tf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 |  | 
|  | 1619 | qc->scsidone(cmd); | 
|  | 1620 |  | 
| Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1621 | ata_qc_free(qc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | } | 
|  | 1623 |  | 
|  | 1624 | /** | 
|  | 1625 | *	ata_scsi_translate - Translate then issue SCSI command to ATA device | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | *	@dev: ATA device to which the command is addressed | 
|  | 1627 | *	@cmd: SCSI command to execute | 
|  | 1628 | *	@done: SCSI command completion function | 
|  | 1629 | *	@xlat_func: Actor which translates @cmd to an ATA taskfile | 
|  | 1630 | * | 
|  | 1631 | *	Our ->queuecommand() function has decided that the SCSI | 
|  | 1632 | *	command issued can be directly translated into an ATA | 
|  | 1633 | *	command, rather than handled internally. | 
|  | 1634 | * | 
|  | 1635 | *	This function sets up an ata_queued_cmd structure for the | 
|  | 1636 | *	SCSI command, and sends that ata_queued_cmd to the hardware. | 
|  | 1637 | * | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1638 | *	The xlat_func argument (actor) returns 0 if ready to execute | 
|  | 1639 | *	ATA command, else 1 to finish translation. If 1 is returned | 
|  | 1640 | *	then cmd->result (and possibly cmd->sense_buffer) are assumed | 
|  | 1641 | *	to be set reflecting an error condition or clean (early) | 
|  | 1642 | *	termination. | 
|  | 1643 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1645 | *	spin_lock_irqsave(host lock) | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 1646 | * | 
|  | 1647 | *	RETURNS: | 
|  | 1648 | *	0 on success, SCSI_ML_QUEUE_DEVICE_BUSY if the command | 
|  | 1649 | *	needs to be deferred. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | */ | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 1651 | static int ata_scsi_translate(struct ata_device *dev, struct scsi_cmnd *cmd, | 
|  | 1652 | void (*done)(struct scsi_cmnd *), | 
|  | 1653 | ata_xlat_func_t xlat_func) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | { | 
| Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1655 | struct ata_port *ap = dev->link->ap; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | struct ata_queued_cmd *qc; | 
| Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1657 | int rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 |  | 
|  | 1659 | VPRINTK("ENTER\n"); | 
|  | 1660 |  | 
| Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1661 | qc = ata_scsi_qc_new(dev, cmd, done); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | if (!qc) | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1663 | goto err_mem; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 |  | 
|  | 1665 | /* data is present; dma-map it */ | 
|  | be7db05 | 2005-04-17 15:26:13 -0500 | [diff] [blame] | 1666 | if (cmd->sc_data_direction == DMA_FROM_DEVICE || | 
|  | 1667 | cmd->sc_data_direction == DMA_TO_DEVICE) { | 
| Boaz Harrosh | 7120165 | 2007-09-18 17:48:50 +0200 | [diff] [blame] | 1668 | if (unlikely(scsi_bufflen(cmd) < 1)) { | 
| Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1669 | ata_dev_printk(dev, KERN_WARNING, | 
|  | 1670 | "WARNING: zero len r/w req\n"); | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1671 | goto err_did; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | } | 
|  | 1673 |  | 
| Boaz Harrosh | 7120165 | 2007-09-18 17:48:50 +0200 | [diff] [blame] | 1674 | ata_sg_init(qc, scsi_sglist(cmd), scsi_sg_count(cmd)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 |  | 
|  | 1676 | qc->dma_dir = cmd->sc_data_direction; | 
|  | 1677 | } | 
|  | 1678 |  | 
|  | 1679 | qc->complete_fn = ata_scsi_qc_complete; | 
|  | 1680 |  | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 1681 | if (xlat_func(qc)) | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1682 | goto early_finish; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 |  | 
| Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1684 | if (ap->ops->qc_defer) { | 
|  | 1685 | if ((rc = ap->ops->qc_defer(qc))) | 
|  | 1686 | goto defer; | 
|  | 1687 | } | 
|  | 1688 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | /* select device, send command to hardware */ | 
| Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 1690 | ata_qc_issue(qc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 |  | 
|  | 1692 | VPRINTK("EXIT\n"); | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 1693 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 |  | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1695 | early_finish: | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1696 | ata_qc_free(qc); | 
| Tejun Heo | da071b4 | 2007-05-14 17:26:18 +0200 | [diff] [blame] | 1697 | qc->scsidone(cmd); | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1698 | DPRINTK("EXIT - early finish (good or error)\n"); | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 1699 | return 0; | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1700 |  | 
|  | 1701 | err_did: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | ata_qc_free(qc); | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1703 | cmd->result = (DID_ERROR << 16); | 
| Tejun Heo | da071b4 | 2007-05-14 17:26:18 +0200 | [diff] [blame] | 1704 | qc->scsidone(cmd); | 
| Darrick J. Wong | 253b92e | 2006-11-14 09:55:41 -0500 | [diff] [blame] | 1705 | err_mem: | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1706 | DPRINTK("EXIT - internal\n"); | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 1707 | return 0; | 
| Tejun Heo | 3dc1d88 | 2006-05-15 21:03:45 +0900 | [diff] [blame] | 1708 |  | 
|  | 1709 | defer: | 
| Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1710 | ata_qc_free(qc); | 
| Tejun Heo | 3dc1d88 | 2006-05-15 21:03:45 +0900 | [diff] [blame] | 1711 | DPRINTK("EXIT - defer\n"); | 
| Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1712 | if (rc == ATA_DEFER_LINK) | 
|  | 1713 | return SCSI_MLQUEUE_DEVICE_BUSY; | 
|  | 1714 | else | 
|  | 1715 | return SCSI_MLQUEUE_HOST_BUSY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | } | 
|  | 1717 |  | 
|  | 1718 | /** | 
|  | 1719 | *	ata_scsi_rbuf_get - Map response buffer. | 
| Randy Dunlap | ec2a20e | 2008-04-30 12:57:00 -0700 | [diff] [blame] | 1720 | *	@cmd: SCSI command containing buffer to be mapped. | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1721 | *	@flags: unsigned long variable to store irq enable status | 
|  | 1722 | *	@copy_in: copy in from user buffer | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | * | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1724 | *	Prepare buffer for simulated SCSI commands. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | * | 
|  | 1726 | *	LOCKING: | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1727 | *	spin_lock_irqsave(ata_scsi_rbuf_lock) on success | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | * | 
|  | 1729 | *	RETURNS: | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1730 | *	Pointer to response buffer. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1732 | static void *ata_scsi_rbuf_get(struct scsi_cmnd *cmd, bool copy_in, | 
|  | 1733 | unsigned long *flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | { | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1735 | spin_lock_irqsave(&ata_scsi_rbuf_lock, *flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1737 | memset(ata_scsi_rbuf, 0, ATA_SCSI_RBUF_SIZE); | 
|  | 1738 | if (copy_in) | 
|  | 1739 | sg_copy_to_buffer(scsi_sglist(cmd), scsi_sg_count(cmd), | 
|  | 1740 | ata_scsi_rbuf, ATA_SCSI_RBUF_SIZE); | 
|  | 1741 | return ata_scsi_rbuf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | } | 
|  | 1743 |  | 
|  | 1744 | /** | 
|  | 1745 | *	ata_scsi_rbuf_put - Unmap response buffer. | 
|  | 1746 | *	@cmd: SCSI command containing buffer to be unmapped. | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1747 | *	@copy_out: copy out result | 
|  | 1748 | *	@flags: @flags passed to ata_scsi_rbuf_get() | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | * | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1750 | *	Returns rbuf buffer.  The result is copied to @cmd's buffer if | 
|  | 1751 | *	@copy_back is true. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | * | 
|  | 1753 | *	LOCKING: | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1754 | *	Unlocks ata_scsi_rbuf_lock. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1756 | static inline void ata_scsi_rbuf_put(struct scsi_cmnd *cmd, bool copy_out, | 
|  | 1757 | unsigned long *flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | { | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1759 | if (copy_out) | 
|  | 1760 | sg_copy_from_buffer(scsi_sglist(cmd), scsi_sg_count(cmd), | 
|  | 1761 | ata_scsi_rbuf, ATA_SCSI_RBUF_SIZE); | 
|  | 1762 | spin_unlock_irqrestore(&ata_scsi_rbuf_lock, *flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | } | 
|  | 1764 |  | 
|  | 1765 | /** | 
|  | 1766 | *	ata_scsi_rbuf_fill - wrapper for SCSI command simulators | 
|  | 1767 | *	@args: device IDENTIFY data / SCSI command of interest. | 
|  | 1768 | *	@actor: Callback hook for desired SCSI command simulator | 
|  | 1769 | * | 
|  | 1770 | *	Takes care of the hard work of simulating a SCSI command... | 
|  | 1771 | *	Mapping the response buffer, calling the command's handler, | 
|  | 1772 | *	and handling the handler's return value.  This return value | 
|  | 1773 | *	indicates whether the handler wishes the SCSI command to be | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1774 | *	completed successfully (0), or not (in which case cmd->result | 
|  | 1775 | *	and sense buffer are assumed to be set). | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | * | 
|  | 1777 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1778 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | */ | 
| Tejun Heo | f0761be | 2008-04-28 17:16:52 +0900 | [diff] [blame] | 1780 | static void ata_scsi_rbuf_fill(struct ata_scsi_args *args, | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1781 | unsigned int (*actor)(struct ata_scsi_args *args, u8 *rbuf)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | { | 
|  | 1783 | u8 *rbuf; | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1784 | unsigned int rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | struct scsi_cmnd *cmd = args->cmd; | 
| Jeff Garzik | b445c56 | 2008-02-29 19:10:51 -0500 | [diff] [blame] | 1786 | unsigned long flags; | 
|  | 1787 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1788 | rbuf = ata_scsi_rbuf_get(cmd, false, &flags); | 
|  | 1789 | rc = actor(args, rbuf); | 
|  | 1790 | ata_scsi_rbuf_put(cmd, rc == 0, &flags); | 
| Jeff Garzik | b445c56 | 2008-02-29 19:10:51 -0500 | [diff] [blame] | 1791 |  | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1792 | if (rc == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | cmd->result = SAM_STAT_GOOD; | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 1794 | args->done(cmd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | } | 
|  | 1796 |  | 
|  | 1797 | /** | 
|  | 1798 | *	ata_scsiop_inq_std - Simulate INQUIRY command | 
|  | 1799 | *	@args: device IDENTIFY data / SCSI command of interest. | 
|  | 1800 | *	@rbuf: Response buffer, to which simulated SCSI cmd output is sent. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1801 | * | 
|  | 1802 | *	Returns standard device identification data associated | 
| Jeff Garzik | b142eb6 | 2006-03-21 20:37:47 -0500 | [diff] [blame] | 1803 | *	with non-VPD INQUIRY command output. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | * | 
|  | 1805 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1806 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1808 | static unsigned int ata_scsiop_inq_std(struct ata_scsi_args *args, u8 *rbuf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1809 | { | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1810 | const u8 versions[] = { | 
|  | 1811 | 0x60,	/* SAM-3 (no version claimed) */ | 
|  | 1812 |  | 
|  | 1813 | 0x03, | 
|  | 1814 | 0x20,	/* SBC-2 (no version claimed) */ | 
|  | 1815 |  | 
|  | 1816 | 0x02, | 
|  | 1817 | 0x60	/* SPC-3 (no version claimed) */ | 
|  | 1818 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | u8 hdr[] = { | 
|  | 1820 | TYPE_DISK, | 
|  | 1821 | 0, | 
|  | 1822 | 0x5,	/* claim SPC-3 version compatibility */ | 
|  | 1823 | 2, | 
|  | 1824 | 95 - 4 | 
|  | 1825 | }; | 
|  | 1826 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1827 | VPRINTK("ENTER\n"); | 
|  | 1828 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | /* set scsi removeable (RMB) bit per ata bit */ | 
|  | 1830 | if (ata_id_removeable(args->id)) | 
|  | 1831 | hdr[1] |= (1 << 7); | 
|  | 1832 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | memcpy(rbuf, hdr, sizeof(hdr)); | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1834 | memcpy(&rbuf[8], "ATA     ", 8); | 
|  | 1835 | ata_id_string(args->id, &rbuf[16], ATA_ID_PROD, 16); | 
|  | 1836 | ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV, 4); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1838 | if (rbuf[32] == 0 || rbuf[32] == ' ') | 
|  | 1839 | memcpy(&rbuf[32], "n/a ", 4); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1841 | memcpy(rbuf + 59, versions, sizeof(versions)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 |  | 
|  | 1843 | return 0; | 
|  | 1844 | } | 
|  | 1845 |  | 
|  | 1846 | /** | 
| Jeff Garzik | b142eb6 | 2006-03-21 20:37:47 -0500 | [diff] [blame] | 1847 | *	ata_scsiop_inq_00 - Simulate INQUIRY VPD page 0, list of pages | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | *	@args: device IDENTIFY data / SCSI command of interest. | 
|  | 1849 | *	@rbuf: Response buffer, to which simulated SCSI cmd output is sent. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | * | 
| Jeff Garzik | b142eb6 | 2006-03-21 20:37:47 -0500 | [diff] [blame] | 1851 | *	Returns list of inquiry VPD pages available. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | * | 
|  | 1853 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1854 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1856 | static unsigned int ata_scsiop_inq_00(struct ata_scsi_args *args, u8 *rbuf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | { | 
|  | 1858 | const u8 pages[] = { | 
|  | 1859 | 0x00,	/* page 0x00, this page */ | 
|  | 1860 | 0x80,	/* page 0x80, unit serial no page */ | 
| Matthew Wilcox | 1e9dbc9 | 2008-06-19 13:13:38 -0600 | [diff] [blame] | 1861 | 0x83,	/* page 0x83, device ident page */ | 
|  | 1862 | 0x89,	/* page 0x89, ata info page */ | 
|  | 1863 | 0xb1,	/* page 0xb1, block device characteristics page */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | }; | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1865 |  | 
| Jeff Garzik | b142eb6 | 2006-03-21 20:37:47 -0500 | [diff] [blame] | 1866 | rbuf[3] = sizeof(pages);	/* number of supported VPD pages */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1867 | memcpy(rbuf + 4, pages, sizeof(pages)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | return 0; | 
|  | 1869 | } | 
|  | 1870 |  | 
|  | 1871 | /** | 
| Jeff Garzik | b142eb6 | 2006-03-21 20:37:47 -0500 | [diff] [blame] | 1872 | *	ata_scsiop_inq_80 - Simulate INQUIRY VPD page 80, device serial number | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | *	@args: device IDENTIFY data / SCSI command of interest. | 
|  | 1874 | *	@rbuf: Response buffer, to which simulated SCSI cmd output is sent. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | * | 
|  | 1876 | *	Returns ATA device serial number. | 
|  | 1877 | * | 
|  | 1878 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1879 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1881 | static unsigned int ata_scsiop_inq_80(struct ata_scsi_args *args, u8 *rbuf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | { | 
|  | 1883 | const u8 hdr[] = { | 
|  | 1884 | 0, | 
|  | 1885 | 0x80,			/* this page code */ | 
|  | 1886 | 0, | 
| Tejun Heo | a0cf733 | 2007-01-02 20:18:49 +0900 | [diff] [blame] | 1887 | ATA_ID_SERNO_LEN,	/* page len */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | }; | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1889 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | memcpy(rbuf, hdr, sizeof(hdr)); | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1891 | ata_id_string(args->id, (unsigned char *) &rbuf[4], | 
|  | 1892 | ATA_ID_SERNO, ATA_ID_SERNO_LEN); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | return 0; | 
|  | 1894 | } | 
|  | 1895 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | /** | 
| Jeff Garzik | b142eb6 | 2006-03-21 20:37:47 -0500 | [diff] [blame] | 1897 | *	ata_scsiop_inq_83 - Simulate INQUIRY VPD page 83, device identity | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | *	@args: device IDENTIFY data / SCSI command of interest. | 
|  | 1899 | *	@rbuf: Response buffer, to which simulated SCSI cmd output is sent. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | * | 
| Jeff Garzik | b142eb6 | 2006-03-21 20:37:47 -0500 | [diff] [blame] | 1901 | *	Yields two logical unit device identification designators: | 
|  | 1902 | *	 - vendor specific ASCII containing the ATA serial number | 
|  | 1903 | *	 - SAT defined "t10 vendor id based" containing ASCII vendor | 
|  | 1904 | *	   name ("ATA     "), model and serial numbers. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | * | 
|  | 1906 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 1907 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1909 | static unsigned int ata_scsiop_inq_83(struct ata_scsi_args *args, u8 *rbuf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | { | 
| Jeff Garzik | b142eb6 | 2006-03-21 20:37:47 -0500 | [diff] [blame] | 1911 | const int sat_model_serial_desc_len = 68; | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1912 | int num; | 
| Jeff Garzik | b142eb6 | 2006-03-21 20:37:47 -0500 | [diff] [blame] | 1913 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | rbuf[1] = 0x83;			/* this page code */ | 
| Jeff Garzik | b142eb6 | 2006-03-21 20:37:47 -0500 | [diff] [blame] | 1915 | num = 4; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1917 | /* piv=0, assoc=lu, code_set=ACSII, designator=vendor */ | 
|  | 1918 | rbuf[num + 0] = 2; | 
|  | 1919 | rbuf[num + 3] = ATA_ID_SERNO_LEN; | 
|  | 1920 | num += 4; | 
|  | 1921 | ata_id_string(args->id, (unsigned char *) rbuf + num, | 
|  | 1922 | ATA_ID_SERNO, ATA_ID_SERNO_LEN); | 
|  | 1923 | num += ATA_ID_SERNO_LEN; | 
|  | 1924 |  | 
|  | 1925 | /* SAT defined lu model and serial numbers descriptor */ | 
|  | 1926 | /* piv=0, assoc=lu, code_set=ACSII, designator=t10 vendor id */ | 
|  | 1927 | rbuf[num + 0] = 2; | 
|  | 1928 | rbuf[num + 1] = 1; | 
|  | 1929 | rbuf[num + 3] = sat_model_serial_desc_len; | 
|  | 1930 | num += 4; | 
|  | 1931 | memcpy(rbuf + num, "ATA     ", 8); | 
|  | 1932 | num += 8; | 
|  | 1933 | ata_id_string(args->id, (unsigned char *) rbuf + num, ATA_ID_PROD, | 
|  | 1934 | ATA_ID_PROD_LEN); | 
|  | 1935 | num += ATA_ID_PROD_LEN; | 
|  | 1936 | ata_id_string(args->id, (unsigned char *) rbuf + num, ATA_ID_SERNO, | 
|  | 1937 | ATA_ID_SERNO_LEN); | 
|  | 1938 | num += ATA_ID_SERNO_LEN; | 
|  | 1939 |  | 
| Jeff Garzik | b142eb6 | 2006-03-21 20:37:47 -0500 | [diff] [blame] | 1940 | rbuf[3] = num - 4;    /* page len (assume less than 256 bytes) */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1941 | return 0; | 
|  | 1942 | } | 
|  | 1943 |  | 
|  | 1944 | /** | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1945 | *	ata_scsiop_inq_89 - Simulate INQUIRY VPD page 89, ATA info | 
|  | 1946 | *	@args: device IDENTIFY data / SCSI command of interest. | 
|  | 1947 | *	@rbuf: Response buffer, to which simulated SCSI cmd output is sent. | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1948 | * | 
|  | 1949 | *	Yields SAT-specified ATA VPD page. | 
|  | 1950 | * | 
|  | 1951 | *	LOCKING: | 
|  | 1952 | *	spin_lock_irqsave(host lock) | 
|  | 1953 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1954 | static unsigned int ata_scsiop_inq_89(struct ata_scsi_args *args, u8 *rbuf) | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1955 | { | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1956 | struct ata_taskfile tf; | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1957 |  | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1958 | memset(&tf, 0, sizeof(tf)); | 
|  | 1959 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1960 | rbuf[1] = 0x89;			/* our page code */ | 
|  | 1961 | rbuf[2] = (0x238 >> 8);		/* page size fixed at 238h */ | 
|  | 1962 | rbuf[3] = (0x238 & 0xff); | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1963 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1964 | memcpy(&rbuf[8], "linux   ", 8); | 
|  | 1965 | memcpy(&rbuf[16], "libata          ", 16); | 
|  | 1966 | memcpy(&rbuf[32], DRV_VERSION, 4); | 
|  | 1967 | ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV, 4); | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1968 |  | 
|  | 1969 | /* we don't store the ATA device signature, so we fake it */ | 
|  | 1970 |  | 
|  | 1971 | tf.command = ATA_DRDY;		/* really, this is Status reg */ | 
|  | 1972 | tf.lbal = 0x1; | 
|  | 1973 | tf.nsect = 0x1; | 
|  | 1974 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1975 | ata_tf_to_fis(&tf, 0, 1, &rbuf[36]);	/* TODO: PMP? */ | 
|  | 1976 | rbuf[36] = 0x34;		/* force D2H Reg FIS (34h) */ | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1977 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1978 | rbuf[56] = ATA_CMD_ID_ATA; | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1979 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 1980 | memcpy(&rbuf[60], &args->id[0], 512); | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1981 | return 0; | 
|  | 1982 | } | 
|  | 1983 |  | 
| Matthew Wilcox | 1e9dbc9 | 2008-06-19 13:13:38 -0600 | [diff] [blame] | 1984 | static unsigned int ata_scsiop_inq_b1(struct ata_scsi_args *args, u8 *rbuf) | 
|  | 1985 | { | 
|  | 1986 | rbuf[1] = 0xb1; | 
|  | 1987 | rbuf[3] = 0x3c; | 
|  | 1988 | if (ata_id_major_version(args->id) > 7) { | 
|  | 1989 | rbuf[4] = args->id[217] >> 8; | 
|  | 1990 | rbuf[5] = args->id[217]; | 
|  | 1991 | rbuf[7] = args->id[168] & 0xf; | 
|  | 1992 | } | 
|  | 1993 |  | 
|  | 1994 | return 0; | 
|  | 1995 | } | 
|  | 1996 |  | 
| Jeff Garzik | ad355b4 | 2007-09-21 20:38:03 -0400 | [diff] [blame] | 1997 | /** | 
| Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1998 | *	ata_scsiop_noop - Command handler that simply returns success. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | *	@args: device IDENTIFY data / SCSI command of interest. | 
|  | 2000 | *	@rbuf: Response buffer, to which simulated SCSI cmd output is sent. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | * | 
|  | 2002 | *	No operation.  Simply returns success to caller, to indicate | 
|  | 2003 | *	that the caller should successfully complete this SCSI command. | 
|  | 2004 | * | 
|  | 2005 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2006 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2008 | static unsigned int ata_scsiop_noop(struct ata_scsi_args *args, u8 *rbuf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | { | 
|  | 2010 | VPRINTK("ENTER\n"); | 
|  | 2011 | return 0; | 
|  | 2012 | } | 
|  | 2013 |  | 
|  | 2014 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | *	ata_msense_caching - Simulate MODE SENSE caching info page | 
|  | 2016 | *	@id: device IDENTIFY data | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2017 | *	@buf: output buffer | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2018 | * | 
|  | 2019 | *	Generate a caching info page, which conditionally indicates | 
|  | 2020 | *	write caching to the SCSI layer, depending on device | 
|  | 2021 | *	capabilities. | 
|  | 2022 | * | 
|  | 2023 | *	LOCKING: | 
|  | 2024 | *	None. | 
|  | 2025 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2026 | static unsigned int ata_msense_caching(u16 *id, u8 *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | { | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2028 | memcpy(buf, def_cache_mpage, sizeof(def_cache_mpage)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | if (ata_id_wcache_enabled(id)) | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2030 | buf[2] |= (1 << 2);	/* write cache enable */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | if (!ata_id_rahead_enabled(id)) | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2032 | buf[12] |= (1 << 5);	/* disable read ahead */ | 
|  | 2033 | return sizeof(def_cache_mpage); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | } | 
|  | 2035 |  | 
|  | 2036 | /** | 
|  | 2037 | *	ata_msense_ctl_mode - Simulate MODE SENSE control mode page | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2038 | *	@buf: output buffer | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | * | 
|  | 2040 | *	Generate a generic MODE SENSE control mode page. | 
|  | 2041 | * | 
|  | 2042 | *	LOCKING: | 
|  | 2043 | *	None. | 
|  | 2044 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2045 | static unsigned int ata_msense_ctl_mode(u8 *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | { | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2047 | memcpy(buf, def_control_mpage, sizeof(def_control_mpage)); | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2048 | return sizeof(def_control_mpage); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | } | 
|  | 2050 |  | 
|  | 2051 | /** | 
|  | 2052 | *	ata_msense_rw_recovery - Simulate MODE SENSE r/w error recovery page | 
| Randy Dunlap | ec2a20e | 2008-04-30 12:57:00 -0700 | [diff] [blame] | 2053 | *	@buf: output buffer | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | * | 
|  | 2055 | *	Generate a generic MODE SENSE r/w error recovery page. | 
|  | 2056 | * | 
|  | 2057 | *	LOCKING: | 
|  | 2058 | *	None. | 
|  | 2059 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2060 | static unsigned int ata_msense_rw_recovery(u8 *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | { | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2062 | memcpy(buf, def_rw_recovery_mpage, sizeof(def_rw_recovery_mpage)); | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2063 | return sizeof(def_rw_recovery_mpage); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2064 | } | 
|  | 2065 |  | 
| Jens Axboe | 48bdc8e | 2006-01-30 16:09:35 +0100 | [diff] [blame] | 2066 | /* | 
|  | 2067 | * We can turn this into a real blacklist if it's needed, for now just | 
|  | 2068 | * blacklist any Maxtor BANC1G10 revision firmware | 
|  | 2069 | */ | 
|  | 2070 | static int ata_dev_supports_fua(u16 *id) | 
|  | 2071 | { | 
| Tejun Heo | a0cf733 | 2007-01-02 20:18:49 +0900 | [diff] [blame] | 2072 | unsigned char model[ATA_ID_PROD_LEN + 1], fw[ATA_ID_FW_REV_LEN + 1]; | 
| Jens Axboe | 48bdc8e | 2006-01-30 16:09:35 +0100 | [diff] [blame] | 2073 |  | 
| Jeff Garzik | c3c013a | 2006-02-27 22:31:19 -0500 | [diff] [blame] | 2074 | if (!libata_fua) | 
|  | 2075 | return 0; | 
| Jens Axboe | 48bdc8e | 2006-01-30 16:09:35 +0100 | [diff] [blame] | 2076 | if (!ata_id_has_fua(id)) | 
|  | 2077 | return 0; | 
|  | 2078 |  | 
| Tejun Heo | a0cf733 | 2007-01-02 20:18:49 +0900 | [diff] [blame] | 2079 | ata_id_c_string(id, model, ATA_ID_PROD, sizeof(model)); | 
|  | 2080 | ata_id_c_string(id, fw, ATA_ID_FW_REV, sizeof(fw)); | 
| Jens Axboe | 48bdc8e | 2006-01-30 16:09:35 +0100 | [diff] [blame] | 2081 |  | 
| Tejun Heo | 2e02671 | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 2082 | if (strcmp(model, "Maxtor")) | 
| Jens Axboe | 48bdc8e | 2006-01-30 16:09:35 +0100 | [diff] [blame] | 2083 | return 1; | 
| Tejun Heo | 2e02671 | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 2084 | if (strcmp(fw, "BANC1G10")) | 
| Jens Axboe | 48bdc8e | 2006-01-30 16:09:35 +0100 | [diff] [blame] | 2085 | return 1; | 
|  | 2086 |  | 
|  | 2087 | return 0; /* blacklisted */ | 
|  | 2088 | } | 
|  | 2089 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | /** | 
|  | 2091 | *	ata_scsiop_mode_sense - Simulate MODE SENSE 6, 10 commands | 
|  | 2092 | *	@args: device IDENTIFY data / SCSI command of interest. | 
|  | 2093 | *	@rbuf: Response buffer, to which simulated SCSI cmd output is sent. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | * | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2095 | *	Simulate MODE SENSE commands. Assume this is invoked for direct | 
|  | 2096 | *	access devices (e.g. disks) only. There should be no block | 
|  | 2097 | *	descriptor for other device types. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2098 | * | 
|  | 2099 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2100 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2102 | static unsigned int ata_scsiop_mode_sense(struct ata_scsi_args *args, u8 *rbuf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | { | 
| Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 2104 | struct ata_device *dev = args->dev; | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2105 | u8 *scsicmd = args->cmd->cmnd, *p = rbuf; | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2106 | const u8 sat_blk_desc[] = { | 
|  | 2107 | 0, 0, 0, 0,	/* number of blocks: sat unspecified */ | 
|  | 2108 | 0, | 
|  | 2109 | 0, 0x2, 0x0	/* block length: 512 bytes */ | 
|  | 2110 | }; | 
|  | 2111 | u8 pg, spg; | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2112 | unsigned int ebd, page_control, six_byte; | 
| Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 2113 | u8 dpofua; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 |  | 
|  | 2115 | VPRINTK("ENTER\n"); | 
|  | 2116 |  | 
|  | 2117 | six_byte = (scsicmd[0] == MODE_SENSE); | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2118 | ebd = !(scsicmd[1] & 0x8);      /* dbd bit inverted == edb */ | 
|  | 2119 | /* | 
|  | 2120 | * LLBA bit in msense(10) ignored (compliant) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2121 | */ | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2122 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | page_control = scsicmd[2] >> 6; | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 2124 | switch (page_control) { | 
|  | 2125 | case 0: /* current */ | 
|  | 2126 | break;  /* supported */ | 
|  | 2127 | case 3: /* saved */ | 
|  | 2128 | goto saving_not_supp; | 
|  | 2129 | case 1: /* changeable */ | 
|  | 2130 | case 2: /* defaults */ | 
|  | 2131 | default: | 
|  | 2132 | goto invalid_fld; | 
|  | 2133 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2135 | if (six_byte) | 
|  | 2136 | p += 4 + (ebd ? 8 : 0); | 
|  | 2137 | else | 
|  | 2138 | p += 8 + (ebd ? 8 : 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 |  | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2140 | pg = scsicmd[2] & 0x3f; | 
|  | 2141 | spg = scsicmd[3]; | 
|  | 2142 | /* | 
|  | 2143 | * No mode subpages supported (yet) but asking for _all_ | 
|  | 2144 | * subpages may be valid | 
|  | 2145 | */ | 
|  | 2146 | if (spg && (spg != ALL_SUB_MPAGES)) | 
|  | 2147 | goto invalid_fld; | 
|  | 2148 |  | 
|  | 2149 | switch(pg) { | 
|  | 2150 | case RW_RECOVERY_MPAGE: | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2151 | p += ata_msense_rw_recovery(p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | break; | 
|  | 2153 |  | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2154 | case CACHE_MPAGE: | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2155 | p += ata_msense_caching(args->id, p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | break; | 
|  | 2157 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2158 | case CONTROL_MPAGE: | 
|  | 2159 | p += ata_msense_ctl_mode(p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 |  | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2162 | case ALL_MPAGES: | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2163 | p += ata_msense_rw_recovery(p); | 
|  | 2164 | p += ata_msense_caching(args->id, p); | 
|  | 2165 | p += ata_msense_ctl_mode(p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | break; | 
|  | 2167 |  | 
|  | 2168 | default:		/* invalid page code */ | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 2169 | goto invalid_fld; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2170 | } | 
|  | 2171 |  | 
| Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 2172 | dpofua = 0; | 
| Alan Cox | f79d409 | 2006-05-22 16:55:11 +0100 | [diff] [blame] | 2173 | if (ata_dev_supports_fua(args->id) && (dev->flags & ATA_DFLAG_LBA48) && | 
| Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 2174 | (!(dev->flags & ATA_DFLAG_PIO) || dev->multi_count)) | 
|  | 2175 | dpofua = 1 << 4; | 
|  | 2176 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | if (six_byte) { | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2178 | rbuf[0] = p - rbuf - 1; | 
|  | 2179 | rbuf[2] |= dpofua; | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2180 | if (ebd) { | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2181 | rbuf[3] = sizeof(sat_blk_desc); | 
|  | 2182 | memcpy(rbuf + 4, sat_blk_desc, sizeof(sat_blk_desc)); | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2183 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | } else { | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2185 | unsigned int output_len = p - rbuf - 2; | 
|  | 2186 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2187 | rbuf[0] = output_len >> 8; | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2188 | rbuf[1] = output_len; | 
|  | 2189 | rbuf[3] |= dpofua; | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2190 | if (ebd) { | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2191 | rbuf[7] = sizeof(sat_blk_desc); | 
|  | 2192 | memcpy(rbuf + 8, sat_blk_desc, sizeof(sat_blk_desc)); | 
| Douglas Gilbert | 00ac37f | 2005-10-28 15:58:28 -0400 | [diff] [blame] | 2193 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | return 0; | 
| Douglas Gilbert | ae00651 | 2005-10-09 09:09:35 -0400 | [diff] [blame] | 2196 |  | 
|  | 2197 | invalid_fld: | 
|  | 2198 | ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x24, 0x0); | 
|  | 2199 | /* "Invalid field in cbd" */ | 
|  | 2200 | return 1; | 
|  | 2201 |  | 
|  | 2202 | saving_not_supp: | 
|  | 2203 | ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x39, 0x0); | 
|  | 2204 | /* "Saving parameters not supported" */ | 
|  | 2205 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | } | 
|  | 2207 |  | 
|  | 2208 | /** | 
|  | 2209 | *	ata_scsiop_read_cap - Simulate READ CAPACITY[ 16] commands | 
|  | 2210 | *	@args: device IDENTIFY data / SCSI command of interest. | 
|  | 2211 | *	@rbuf: Response buffer, to which simulated SCSI cmd output is sent. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | * | 
|  | 2213 | *	Simulate READ CAPACITY commands. | 
|  | 2214 | * | 
|  | 2215 | *	LOCKING: | 
| Tejun Heo | 6a36261 | 2006-11-20 11:15:47 +0900 | [diff] [blame] | 2216 | *	None. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2218 | static unsigned int ata_scsiop_read_cap(struct ata_scsi_args *args, u8 *rbuf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2219 | { | 
| Tejun Heo | 6a36261 | 2006-11-20 11:15:47 +0900 | [diff] [blame] | 2220 | u64 last_lba = args->dev->n_sectors - 1; /* LBA of the last block */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 |  | 
|  | 2222 | VPRINTK("ENTER\n"); | 
|  | 2223 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | if (args->cmd->cmnd[0] == READ_CAPACITY) { | 
| Tejun Heo | 6a36261 | 2006-11-20 11:15:47 +0900 | [diff] [blame] | 2225 | if (last_lba >= 0xffffffffULL) | 
|  | 2226 | last_lba = 0xffffffff; | 
| Philip Pokorny | 0c144d0 | 2005-05-28 01:24:47 -0700 | [diff] [blame] | 2227 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | /* sector count, 32-bit */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2229 | rbuf[0] = last_lba >> (8 * 3); | 
|  | 2230 | rbuf[1] = last_lba >> (8 * 2); | 
|  | 2231 | rbuf[2] = last_lba >> (8 * 1); | 
|  | 2232 | rbuf[3] = last_lba; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 |  | 
|  | 2234 | /* sector size */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2235 | rbuf[6] = ATA_SECT_SIZE >> 8; | 
|  | 2236 | rbuf[7] = ATA_SECT_SIZE & 0xff; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | } else { | 
|  | 2238 | /* sector count, 64-bit */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2239 | rbuf[0] = last_lba >> (8 * 7); | 
|  | 2240 | rbuf[1] = last_lba >> (8 * 6); | 
|  | 2241 | rbuf[2] = last_lba >> (8 * 5); | 
|  | 2242 | rbuf[3] = last_lba >> (8 * 4); | 
|  | 2243 | rbuf[4] = last_lba >> (8 * 3); | 
|  | 2244 | rbuf[5] = last_lba >> (8 * 2); | 
|  | 2245 | rbuf[6] = last_lba >> (8 * 1); | 
|  | 2246 | rbuf[7] = last_lba; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2247 |  | 
|  | 2248 | /* sector size */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2249 | rbuf[10] = ATA_SECT_SIZE >> 8; | 
|  | 2250 | rbuf[11] = ATA_SECT_SIZE & 0xff; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2251 | } | 
|  | 2252 |  | 
|  | 2253 | return 0; | 
|  | 2254 | } | 
|  | 2255 |  | 
|  | 2256 | /** | 
|  | 2257 | *	ata_scsiop_report_luns - Simulate REPORT LUNS command | 
|  | 2258 | *	@args: device IDENTIFY data / SCSI command of interest. | 
|  | 2259 | *	@rbuf: Response buffer, to which simulated SCSI cmd output is sent. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2260 | * | 
|  | 2261 | *	Simulate REPORT LUNS command. | 
|  | 2262 | * | 
|  | 2263 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2264 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2265 | */ | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2266 | static unsigned int ata_scsiop_report_luns(struct ata_scsi_args *args, u8 *rbuf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2267 | { | 
|  | 2268 | VPRINTK("ENTER\n"); | 
|  | 2269 | rbuf[3] = 8;	/* just one lun, LUN 0, size 8 bytes */ | 
|  | 2270 |  | 
|  | 2271 | return 0; | 
|  | 2272 | } | 
|  | 2273 |  | 
| Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 2274 | static void atapi_sense_complete(struct ata_queued_cmd *qc) | 
| Jeff Garzik | a939c96 | 2005-10-05 17:09:16 -0400 | [diff] [blame] | 2275 | { | 
| Tejun Heo | 74e6c8c | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 2276 | if (qc->err_mask && ((qc->err_mask & AC_ERR_DEV) == 0)) { | 
| Jeff Garzik | c6e6e66 | 2005-11-14 14:50:05 -0500 | [diff] [blame] | 2277 | /* FIXME: not quite right; we don't want the | 
|  | 2278 | * translation of taskfile registers into | 
|  | 2279 | * a sense descriptors, since that's only | 
|  | 2280 | * correct for ATA, not ATAPI | 
|  | 2281 | */ | 
| Tejun Heo | 750426a | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 2282 | ata_gen_passthru_sense(qc); | 
| Tejun Heo | 74e6c8c | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 2283 | } | 
| Jeff Garzik | c6e6e66 | 2005-11-14 14:50:05 -0500 | [diff] [blame] | 2284 |  | 
|  | 2285 | qc->scsidone(qc->scsicmd); | 
| Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 2286 | ata_qc_free(qc); | 
| Jeff Garzik | c6e6e66 | 2005-11-14 14:50:05 -0500 | [diff] [blame] | 2287 | } | 
|  | 2288 |  | 
|  | 2289 | /* is it pointless to prefer PIO for "safety reasons"? */ | 
|  | 2290 | static inline int ata_pio_use_silly(struct ata_port *ap) | 
|  | 2291 | { | 
|  | 2292 | return (ap->flags & ATA_FLAG_PIO_DMA); | 
|  | 2293 | } | 
|  | 2294 |  | 
|  | 2295 | static void atapi_request_sense(struct ata_queued_cmd *qc) | 
|  | 2296 | { | 
|  | 2297 | struct ata_port *ap = qc->ap; | 
|  | 2298 | struct scsi_cmnd *cmd = qc->scsicmd; | 
| Jeff Garzik | a939c96 | 2005-10-05 17:09:16 -0400 | [diff] [blame] | 2299 |  | 
|  | 2300 | DPRINTK("ATAPI request sense\n"); | 
|  | 2301 |  | 
| Jeff Garzik | a939c96 | 2005-10-05 17:09:16 -0400 | [diff] [blame] | 2302 | /* FIXME: is this needed? */ | 
| James Bottomley | 7ccd720 | 2008-01-17 11:56:24 -0600 | [diff] [blame] | 2303 | memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE); | 
| Jeff Garzik | a939c96 | 2005-10-05 17:09:16 -0400 | [diff] [blame] | 2304 |  | 
| Tejun Heo | 127102a | 2008-04-07 22:47:21 +0900 | [diff] [blame] | 2305 | #ifdef CONFIG_ATA_SFF | 
| James Bottomley | 855d854 | 2008-04-18 13:18:48 -0500 | [diff] [blame] | 2306 | if (ap->ops->sff_tf_read) | 
|  | 2307 | ap->ops->sff_tf_read(ap, &qc->tf); | 
| Tejun Heo | 127102a | 2008-04-07 22:47:21 +0900 | [diff] [blame] | 2308 | #endif | 
| Jeff Garzik | c6e6e66 | 2005-11-14 14:50:05 -0500 | [diff] [blame] | 2309 |  | 
|  | 2310 | /* fill these in, for the case where they are -not- overwritten */ | 
|  | 2311 | cmd->sense_buffer[0] = 0x70; | 
|  | 2312 | cmd->sense_buffer[2] = qc->tf.feature >> 4; | 
|  | 2313 |  | 
|  | 2314 | ata_qc_reinit(qc); | 
|  | 2315 |  | 
| Tejun Heo | 93f8fec | 2007-12-05 16:43:01 +0900 | [diff] [blame] | 2316 | /* setup sg table and init transfer direction */ | 
| akpm@linux-foundation.org | cadb734 | 2008-01-15 16:01:52 -0800 | [diff] [blame] | 2317 | sg_init_one(&qc->sgent, cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE); | 
| Tejun Heo | 93f8fec | 2007-12-05 16:43:01 +0900 | [diff] [blame] | 2318 | ata_sg_init(qc, &qc->sgent, 1); | 
| Jeff Garzik | a939c96 | 2005-10-05 17:09:16 -0400 | [diff] [blame] | 2319 | qc->dma_dir = DMA_FROM_DEVICE; | 
|  | 2320 |  | 
| Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 2321 | memset(&qc->cdb, 0, qc->dev->cdb_len); | 
| Jeff Garzik | a939c96 | 2005-10-05 17:09:16 -0400 | [diff] [blame] | 2322 | qc->cdb[0] = REQUEST_SENSE; | 
|  | 2323 | qc->cdb[4] = SCSI_SENSE_BUFFERSIZE; | 
|  | 2324 |  | 
|  | 2325 | qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; | 
|  | 2326 | qc->tf.command = ATA_CMD_PACKET; | 
|  | 2327 |  | 
| Jeff Garzik | c6e6e66 | 2005-11-14 14:50:05 -0500 | [diff] [blame] | 2328 | if (ata_pio_use_silly(ap)) { | 
| Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 2329 | qc->tf.protocol = ATAPI_PROT_DMA; | 
| Jeff Garzik | c6e6e66 | 2005-11-14 14:50:05 -0500 | [diff] [blame] | 2330 | qc->tf.feature |= ATAPI_PKT_DMA; | 
|  | 2331 | } else { | 
| Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 2332 | qc->tf.protocol = ATAPI_PROT_PIO; | 
| Alan Cox | 2db78dd | 2007-10-02 13:53:04 -0700 | [diff] [blame] | 2333 | qc->tf.lbam = SCSI_SENSE_BUFFERSIZE; | 
|  | 2334 | qc->tf.lbah = 0; | 
| Jeff Garzik | c6e6e66 | 2005-11-14 14:50:05 -0500 | [diff] [blame] | 2335 | } | 
| Jeff Garzik | a939c96 | 2005-10-05 17:09:16 -0400 | [diff] [blame] | 2336 | qc->nbytes = SCSI_SENSE_BUFFERSIZE; | 
|  | 2337 |  | 
| Jeff Garzik | c6e6e66 | 2005-11-14 14:50:05 -0500 | [diff] [blame] | 2338 | qc->complete_fn = atapi_sense_complete; | 
| Jeff Garzik | a939c96 | 2005-10-05 17:09:16 -0400 | [diff] [blame] | 2339 |  | 
| Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 2340 | ata_qc_issue(qc); | 
| Jeff Garzik | a939c96 | 2005-10-05 17:09:16 -0400 | [diff] [blame] | 2341 |  | 
|  | 2342 | DPRINTK("EXIT\n"); | 
|  | 2343 | } | 
|  | 2344 |  | 
| Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 2345 | static void atapi_qc_complete(struct ata_queued_cmd *qc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | { | 
|  | 2347 | struct scsi_cmnd *cmd = qc->scsicmd; | 
| Albert Lee | a22e2eb | 2005-12-05 15:38:02 +0800 | [diff] [blame] | 2348 | unsigned int err_mask = qc->err_mask; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2349 |  | 
| Jeff Garzik | a7dac44 | 2005-10-30 04:44:42 -0500 | [diff] [blame] | 2350 | VPRINTK("ENTER, err_mask 0x%X\n", err_mask); | 
| Jeff Garzik | e12669e | 2005-10-05 18:39:23 -0400 | [diff] [blame] | 2351 |  | 
| Tejun Heo | 246619d | 2006-05-15 20:58:16 +0900 | [diff] [blame] | 2352 | /* handle completion from new EH */ | 
|  | 2353 | if (unlikely(qc->ap->ops->error_handler && | 
|  | 2354 | (err_mask || qc->flags & ATA_QCFLAG_SENSE_VALID))) { | 
|  | 2355 |  | 
|  | 2356 | if (!(qc->flags & ATA_QCFLAG_SENSE_VALID)) { | 
|  | 2357 | /* FIXME: not quite right; we don't want the | 
|  | 2358 | * translation of taskfile registers into a | 
|  | 2359 | * sense descriptors, since that's only | 
|  | 2360 | * correct for ATA, not ATAPI | 
|  | 2361 | */ | 
| Tejun Heo | 750426a | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 2362 | ata_gen_passthru_sense(qc); | 
| Tejun Heo | 246619d | 2006-05-15 20:58:16 +0900 | [diff] [blame] | 2363 | } | 
|  | 2364 |  | 
| Tejun Heo | 22aac08 | 2006-08-08 14:08:59 +0900 | [diff] [blame] | 2365 | /* SCSI EH automatically locks door if sdev->locked is | 
|  | 2366 | * set.  Sometimes door lock request continues to | 
|  | 2367 | * fail, for example, when no media is present.  This | 
|  | 2368 | * creates a loop - SCSI EH issues door lock which | 
|  | 2369 | * fails and gets invoked again to acquire sense data | 
|  | 2370 | * for the failed command. | 
|  | 2371 | * | 
|  | 2372 | * If door lock fails, always clear sdev->locked to | 
|  | 2373 | * avoid this infinite loop. | 
|  | 2374 | */ | 
|  | 2375 | if (qc->cdb[0] == ALLOW_MEDIUM_REMOVAL) | 
|  | 2376 | qc->dev->sdev->locked = 0; | 
|  | 2377 |  | 
| Tejun Heo | 246619d | 2006-05-15 20:58:16 +0900 | [diff] [blame] | 2378 | qc->scsicmd->result = SAM_STAT_CHECK_CONDITION; | 
|  | 2379 | qc->scsidone(cmd); | 
|  | 2380 | ata_qc_free(qc); | 
|  | 2381 | return; | 
|  | 2382 | } | 
|  | 2383 |  | 
|  | 2384 | /* successful completion or old EH failure path */ | 
| Jeff Garzik | a7dac44 | 2005-10-30 04:44:42 -0500 | [diff] [blame] | 2385 | if (unlikely(err_mask & AC_ERR_DEV)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2386 | cmd->result = SAM_STAT_CHECK_CONDITION; | 
| Jeff Garzik | c6e6e66 | 2005-11-14 14:50:05 -0500 | [diff] [blame] | 2387 | atapi_request_sense(qc); | 
| Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 2388 | return; | 
| Tejun Heo | 74e6c8c | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 2389 | } else if (unlikely(err_mask)) { | 
| Jeff Garzik | a7dac44 | 2005-10-30 04:44:42 -0500 | [diff] [blame] | 2390 | /* FIXME: not quite right; we don't want the | 
|  | 2391 | * translation of taskfile registers into | 
|  | 2392 | * a sense descriptors, since that's only | 
|  | 2393 | * correct for ATA, not ATAPI | 
|  | 2394 | */ | 
| Tejun Heo | 750426a | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 2395 | ata_gen_passthru_sense(qc); | 
| Tejun Heo | 74e6c8c | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 2396 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2397 | u8 *scsicmd = cmd->cmnd; | 
|  | 2398 |  | 
| Tony Battersby | fd71da4 | 2005-12-21 16:35:44 -0500 | [diff] [blame] | 2399 | if ((scsicmd[0] == INQUIRY) && ((scsicmd[1] & 0x03) == 0)) { | 
| Jeff Garzik | b445c56 | 2008-02-29 19:10:51 -0500 | [diff] [blame] | 2400 | unsigned long flags; | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2401 | u8 *buf; | 
| Jeff Garzik | b445c56 | 2008-02-29 19:10:51 -0500 | [diff] [blame] | 2402 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2403 | buf = ata_scsi_rbuf_get(cmd, true, &flags); | 
| Jeff Garzik | a15dbeb | 2005-10-05 15:02:14 -0400 | [diff] [blame] | 2404 |  | 
|  | 2405 | /* ATAPI devices typically report zero for their SCSI version, | 
|  | 2406 | * and sometimes deviate from the spec WRT response data | 
|  | 2407 | * format.  If SCSI version is reported as zero like normal, | 
|  | 2408 | * then we make the following fixups:  1) Fake MMC-5 version, | 
|  | 2409 | * to indicate to the Linux scsi midlayer this is a modern | 
|  | 2410 | * device.  2) Ensure response data format / ATAPI information | 
|  | 2411 | * are always correct. | 
|  | 2412 | */ | 
| Jeff Garzik | a15dbeb | 2005-10-05 15:02:14 -0400 | [diff] [blame] | 2413 | if (buf[2] == 0) { | 
|  | 2414 | buf[2] = 0x5; | 
|  | 2415 | buf[3] = 0x32; | 
|  | 2416 | } | 
|  | 2417 |  | 
| Tejun Heo | 87340e9 | 2008-04-28 17:48:51 +0900 | [diff] [blame] | 2418 | ata_scsi_rbuf_put(cmd, true, &flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2419 | } | 
| Jeff Garzik | a15dbeb | 2005-10-05 15:02:14 -0400 | [diff] [blame] | 2420 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | cmd->result = SAM_STAT_GOOD; | 
|  | 2422 | } | 
|  | 2423 |  | 
|  | 2424 | qc->scsidone(cmd); | 
| Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 2425 | ata_qc_free(qc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2426 | } | 
|  | 2427 | /** | 
|  | 2428 | *	atapi_xlat - Initialize PACKET taskfile | 
|  | 2429 | *	@qc: command structure to be initialized | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2430 | * | 
|  | 2431 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2432 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2433 | * | 
|  | 2434 | *	RETURNS: | 
|  | 2435 | *	Zero on success, non-zero on failure. | 
|  | 2436 | */ | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 2437 | static unsigned int atapi_xlat(struct ata_queued_cmd *qc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | { | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2439 | struct scsi_cmnd *scmd = qc->scsicmd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | struct ata_device *dev = qc->dev; | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2441 | int nodata = (scmd->sc_data_direction == DMA_NONE); | 
| Tejun Heo | 5895ef9 | 2008-06-17 12:36:26 +0900 | [diff] [blame] | 2442 | int using_pio = !nodata && (dev->flags & ATA_DFLAG_PIO); | 
| Alan Cox | 2db78dd | 2007-10-02 13:53:04 -0700 | [diff] [blame] | 2443 | unsigned int nbytes; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2444 |  | 
| Tejun Heo | 2e5704f | 2006-12-17 10:46:33 +0900 | [diff] [blame] | 2445 | memset(qc->cdb, 0, dev->cdb_len); | 
|  | 2446 | memcpy(qc->cdb, scmd->cmnd, scmd->cmd_len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2447 |  | 
|  | 2448 | qc->complete_fn = atapi_qc_complete; | 
|  | 2449 |  | 
|  | 2450 | qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2451 | if (scmd->sc_data_direction == DMA_TO_DEVICE) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2452 | qc->tf.flags |= ATA_TFLAG_WRITE; | 
|  | 2453 | DPRINTK("direction: write\n"); | 
|  | 2454 | } | 
|  | 2455 |  | 
|  | 2456 | qc->tf.command = ATA_CMD_PACKET; | 
| Tejun Heo | aacda37 | 2008-03-18 17:47:43 +0900 | [diff] [blame] | 2457 | ata_qc_set_pc_nbytes(qc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2458 |  | 
| Tejun Heo | e00f1ff | 2007-06-27 02:47:35 +0900 | [diff] [blame] | 2459 | /* check whether ATAPI DMA is safe */ | 
| Tejun Heo | 5895ef9 | 2008-06-17 12:36:26 +0900 | [diff] [blame] | 2460 | if (!nodata && !using_pio && atapi_check_dma(qc)) | 
| Tejun Heo | e00f1ff | 2007-06-27 02:47:35 +0900 | [diff] [blame] | 2461 | using_pio = 1; | 
|  | 2462 |  | 
| Tejun Heo | e190222 | 2007-11-26 20:58:02 +0900 | [diff] [blame] | 2463 | /* Some controller variants snoop this value for Packet | 
|  | 2464 | * transfers to do state machine and FIFO management.  Thus we | 
|  | 2465 | * want to set it properly, and for DMA where it is | 
|  | 2466 | * effectively meaningless. | 
|  | 2467 | */ | 
| Tejun Heo | aacda37 | 2008-03-18 17:47:43 +0900 | [diff] [blame] | 2468 | nbytes = min(ata_qc_raw_nbytes(qc), (unsigned int)63 * 1024); | 
| Alan Cox | 2db78dd | 2007-10-02 13:53:04 -0700 | [diff] [blame] | 2469 |  | 
| Tejun Heo | e190222 | 2007-11-26 20:58:02 +0900 | [diff] [blame] | 2470 | /* Most ATAPI devices which honor transfer chunk size don't | 
|  | 2471 | * behave according to the spec when odd chunk size which | 
|  | 2472 | * matches the transfer length is specified.  If the number of | 
|  | 2473 | * bytes to transfer is 2n+1.  According to the spec, what | 
|  | 2474 | * should happen is to indicate that 2n+1 is going to be | 
|  | 2475 | * transferred and transfer 2n+2 bytes where the last byte is | 
|  | 2476 | * padding. | 
|  | 2477 | * | 
|  | 2478 | * In practice, this doesn't happen.  ATAPI devices first | 
|  | 2479 | * indicate and transfer 2n bytes and then indicate and | 
|  | 2480 | * transfer 2 bytes where the last byte is padding. | 
|  | 2481 | * | 
|  | 2482 | * This inconsistency confuses several controllers which | 
|  | 2483 | * perform PIO using DMA such as Intel AHCIs and sil3124/32. | 
|  | 2484 | * These controllers use actual number of transferred bytes to | 
|  | 2485 | * update DMA poitner and transfer of 4n+2 bytes make those | 
|  | 2486 | * controller push DMA pointer by 4n+4 bytes because SATA data | 
|  | 2487 | * FISes are aligned to 4 bytes.  This causes data corruption | 
|  | 2488 | * and buffer overrun. | 
|  | 2489 | * | 
|  | 2490 | * Always setting nbytes to even number solves this problem | 
|  | 2491 | * because then ATAPI devices don't have to split data at 2n | 
|  | 2492 | * boundaries. | 
|  | 2493 | */ | 
|  | 2494 | if (nbytes & 0x1) | 
|  | 2495 | nbytes++; | 
|  | 2496 |  | 
| Alan Cox | 2db78dd | 2007-10-02 13:53:04 -0700 | [diff] [blame] | 2497 | qc->tf.lbam = (nbytes & 0xFF); | 
|  | 2498 | qc->tf.lbah = (nbytes >> 8); | 
|  | 2499 |  | 
| Tejun Heo | 5895ef9 | 2008-06-17 12:36:26 +0900 | [diff] [blame] | 2500 | if (nodata) | 
|  | 2501 | qc->tf.protocol = ATAPI_PROT_NODATA; | 
|  | 2502 | else if (using_pio) | 
|  | 2503 | qc->tf.protocol = ATAPI_PROT_PIO; | 
|  | 2504 | else { | 
| Tejun Heo | e00f1ff | 2007-06-27 02:47:35 +0900 | [diff] [blame] | 2505 | /* DMA data xfer */ | 
| Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 2506 | qc->tf.protocol = ATAPI_PROT_DMA; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2507 | qc->tf.feature |= ATAPI_PKT_DMA; | 
|  | 2508 |  | 
| Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2509 | if ((dev->flags & ATA_DFLAG_DMADIR) && | 
|  | 2510 | (scmd->sc_data_direction != DMA_TO_DEVICE)) | 
| Albert Lee | 95de719 | 2006-04-04 10:57:18 +0800 | [diff] [blame] | 2511 | /* some SATA bridges need us to indicate data xfer direction */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2512 | qc->tf.feature |= ATAPI_DMADIR; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2513 | } | 
|  | 2514 |  | 
| Alan Cox | 2db78dd | 2007-10-02 13:53:04 -0700 | [diff] [blame] | 2515 |  | 
|  | 2516 | /* FIXME: We need to translate 0x05 READ_BLOCK_LIMITS to a MODE_SENSE | 
|  | 2517 | as ATAPI tape drives don't get this right otherwise */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2518 | return 0; | 
|  | 2519 | } | 
|  | 2520 |  | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2521 | static struct ata_device *ata_find_dev(struct ata_port *ap, int devno) | 
| Tejun Heo | ab5b3a5 | 2006-05-31 18:27:34 +0900 | [diff] [blame] | 2522 | { | 
| Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 2523 | if (!sata_pmp_attached(ap)) { | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2524 | if (likely(devno < ata_link_max_devices(&ap->link))) | 
|  | 2525 | return &ap->link.device[devno]; | 
|  | 2526 | } else { | 
|  | 2527 | if (likely(devno < ap->nr_pmp_links)) | 
|  | 2528 | return &ap->pmp_link[devno].device[0]; | 
|  | 2529 | } | 
|  | 2530 |  | 
| Tejun Heo | ab5b3a5 | 2006-05-31 18:27:34 +0900 | [diff] [blame] | 2531 | return NULL; | 
|  | 2532 | } | 
|  | 2533 |  | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2534 | static struct ata_device *__ata_scsi_find_dev(struct ata_port *ap, | 
|  | 2535 | const struct scsi_device *scsidev) | 
| Tejun Heo | ab5b3a5 | 2006-05-31 18:27:34 +0900 | [diff] [blame] | 2536 | { | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2537 | int devno; | 
| Tejun Heo | ab5b3a5 | 2006-05-31 18:27:34 +0900 | [diff] [blame] | 2538 |  | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2539 | /* skip commands not addressed to targets we simulate */ | 
| Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 2540 | if (!sata_pmp_attached(ap)) { | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2541 | if (unlikely(scsidev->channel || scsidev->lun)) | 
|  | 2542 | return NULL; | 
|  | 2543 | devno = scsidev->id; | 
|  | 2544 | } else { | 
|  | 2545 | if (unlikely(scsidev->id || scsidev->lun)) | 
|  | 2546 | return NULL; | 
|  | 2547 | devno = scsidev->channel; | 
|  | 2548 | } | 
|  | 2549 |  | 
|  | 2550 | return ata_find_dev(ap, devno); | 
| Tejun Heo | ab5b3a5 | 2006-05-31 18:27:34 +0900 | [diff] [blame] | 2551 | } | 
|  | 2552 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2553 | /** | 
|  | 2554 | *	ata_scsi_find_dev - lookup ata_device from scsi_cmnd | 
|  | 2555 | *	@ap: ATA port to which the device is attached | 
|  | 2556 | *	@scsidev: SCSI device from which we derive the ATA device | 
|  | 2557 | * | 
|  | 2558 | *	Given various information provided in struct scsi_cmnd, | 
|  | 2559 | *	map that onto an ATA bus, and using that mapping | 
|  | 2560 | *	determine which ata_device is associated with the | 
|  | 2561 | *	SCSI command to be sent. | 
|  | 2562 | * | 
|  | 2563 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2564 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2565 | * | 
|  | 2566 | *	RETURNS: | 
|  | 2567 | *	Associated ATA device, or %NULL if not found. | 
|  | 2568 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2569 | static struct ata_device * | 
| Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 2570 | ata_scsi_find_dev(struct ata_port *ap, const struct scsi_device *scsidev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2571 | { | 
| Tejun Heo | ab5b3a5 | 2006-05-31 18:27:34 +0900 | [diff] [blame] | 2572 | struct ata_device *dev = __ata_scsi_find_dev(ap, scsidev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2573 |  | 
| Tejun Heo | 2486fa5 | 2008-07-31 07:52:40 +0900 | [diff] [blame] | 2574 | if (unlikely(!dev || !ata_dev_enabled(dev))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | return NULL; | 
|  | 2576 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2577 | return dev; | 
|  | 2578 | } | 
|  | 2579 |  | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2580 | /* | 
|  | 2581 | *	ata_scsi_map_proto - Map pass-thru protocol value to taskfile value. | 
|  | 2582 | *	@byte1: Byte 1 from pass-thru CDB. | 
|  | 2583 | * | 
|  | 2584 | *	RETURNS: | 
|  | 2585 | *	ATA_PROT_UNKNOWN if mapping failed/unimplemented, protocol otherwise. | 
|  | 2586 | */ | 
|  | 2587 | static u8 | 
|  | 2588 | ata_scsi_map_proto(u8 byte1) | 
|  | 2589 | { | 
|  | 2590 | switch((byte1 & 0x1e) >> 1) { | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2591 | case 3:		/* Non-data */ | 
|  | 2592 | return ATA_PROT_NODATA; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2593 |  | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2594 | case 6:		/* DMA */ | 
|  | 2595 | case 10:	/* UDMA Data-in */ | 
|  | 2596 | case 11:	/* UDMA Data-Out */ | 
|  | 2597 | return ATA_PROT_DMA; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2598 |  | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2599 | case 4:		/* PIO Data-in */ | 
|  | 2600 | case 5:		/* PIO Data-out */ | 
|  | 2601 | return ATA_PROT_PIO; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2602 |  | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2603 | case 0:		/* Hard Reset */ | 
|  | 2604 | case 1:		/* SRST */ | 
|  | 2605 | case 8:		/* Device Diagnostic */ | 
|  | 2606 | case 9:		/* Device Reset */ | 
|  | 2607 | case 7:		/* DMA Queued */ | 
|  | 2608 | case 12:	/* FPDMA */ | 
|  | 2609 | case 15:	/* Return Response Info */ | 
|  | 2610 | default:	/* Reserved */ | 
|  | 2611 | break; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2612 | } | 
|  | 2613 |  | 
|  | 2614 | return ATA_PROT_UNKNOWN; | 
|  | 2615 | } | 
|  | 2616 |  | 
|  | 2617 | /** | 
|  | 2618 | *	ata_scsi_pass_thru - convert ATA pass-thru CDB to taskfile | 
|  | 2619 | *	@qc: command structure to be initialized | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2620 | * | 
|  | 2621 | *	Handles either 12 or 16-byte versions of the CDB. | 
|  | 2622 | * | 
|  | 2623 | *	RETURNS: | 
|  | 2624 | *	Zero on success, non-zero on failure. | 
|  | 2625 | */ | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 2626 | static unsigned int ata_scsi_pass_thru(struct ata_queued_cmd *qc) | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2627 | { | 
|  | 2628 | struct ata_taskfile *tf = &(qc->tf); | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2629 | struct scsi_cmnd *scmd = qc->scsicmd; | 
| Alan Cox | f79d409 | 2006-05-22 16:55:11 +0100 | [diff] [blame] | 2630 | struct ata_device *dev = qc->dev; | 
| Tejun Heo | ad70699 | 2006-12-17 10:45:57 +0900 | [diff] [blame] | 2631 | const u8 *cdb = scmd->cmnd; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2632 |  | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2633 | if ((tf->protocol = ata_scsi_map_proto(cdb[1])) == ATA_PROT_UNKNOWN) | 
| Tejun Heo | 9a40525 | 2005-12-02 11:49:11 +0900 | [diff] [blame] | 2634 | goto invalid_fld; | 
| Jeff Garzik | 8190bdb | 2006-05-24 01:53:39 -0400 | [diff] [blame] | 2635 |  | 
| Alan Cox | ae8d4ee | 2007-11-04 22:05:49 -0500 | [diff] [blame] | 2636 | /* | 
|  | 2637 | * Filter TPM commands by default. These provide an | 
|  | 2638 | * essentially uncontrolled encrypted "back door" between | 
|  | 2639 | * applications and the disk. Set libata.allow_tpm=1 if you | 
|  | 2640 | * have a real reason for wanting to use them. This ensures | 
|  | 2641 | * that installed software cannot easily mess stuff up without | 
|  | 2642 | * user intent. DVR type users will probably ship with this enabled | 
|  | 2643 | * for movie content management. | 
|  | 2644 | * | 
|  | 2645 | * Note that for ATA8 we can issue a DCS change and DCS freeze lock | 
|  | 2646 | * for this and should do in future but that it is not sufficient as | 
|  | 2647 | * DCS is an optional feature set. Thus we also do the software filter | 
|  | 2648 | * so that we comply with the TC consortium stated goal that the user | 
|  | 2649 | * can turn off TC features of their system. | 
|  | 2650 | */ | 
|  | 2651 | if (tf->command >= 0x5C && tf->command <= 0x5F && !libata_allow_tpm) | 
|  | 2652 | goto invalid_fld; | 
|  | 2653 |  | 
| Alan Cox | f79d409 | 2006-05-22 16:55:11 +0100 | [diff] [blame] | 2654 | /* We may not issue DMA commands if no DMA mode is set */ | 
|  | 2655 | if (tf->protocol == ATA_PROT_DMA && dev->dma_mode == 0) | 
|  | 2656 | goto invalid_fld; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2657 |  | 
|  | 2658 | /* | 
|  | 2659 | * 12 and 16 byte CDBs use different offsets to | 
|  | 2660 | * provide the various register values. | 
|  | 2661 | */ | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2662 | if (cdb[0] == ATA_16) { | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2663 | /* | 
|  | 2664 | * 16-byte CDB - may contain extended commands. | 
|  | 2665 | * | 
|  | 2666 | * If that is the case, copy the upper byte register values. | 
|  | 2667 | */ | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2668 | if (cdb[1] & 0x01) { | 
|  | 2669 | tf->hob_feature = cdb[3]; | 
|  | 2670 | tf->hob_nsect = cdb[5]; | 
|  | 2671 | tf->hob_lbal = cdb[7]; | 
|  | 2672 | tf->hob_lbam = cdb[9]; | 
|  | 2673 | tf->hob_lbah = cdb[11]; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2674 | tf->flags |= ATA_TFLAG_LBA48; | 
|  | 2675 | } else | 
|  | 2676 | tf->flags &= ~ATA_TFLAG_LBA48; | 
|  | 2677 |  | 
|  | 2678 | /* | 
|  | 2679 | * Always copy low byte, device and command registers. | 
|  | 2680 | */ | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2681 | tf->feature = cdb[4]; | 
|  | 2682 | tf->nsect = cdb[6]; | 
|  | 2683 | tf->lbal = cdb[8]; | 
|  | 2684 | tf->lbam = cdb[10]; | 
|  | 2685 | tf->lbah = cdb[12]; | 
|  | 2686 | tf->device = cdb[13]; | 
|  | 2687 | tf->command = cdb[14]; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2688 | } else { | 
|  | 2689 | /* | 
|  | 2690 | * 12-byte CDB - incapable of extended commands. | 
|  | 2691 | */ | 
|  | 2692 | tf->flags &= ~ATA_TFLAG_LBA48; | 
|  | 2693 |  | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2694 | tf->feature = cdb[3]; | 
|  | 2695 | tf->nsect = cdb[4]; | 
|  | 2696 | tf->lbal = cdb[5]; | 
|  | 2697 | tf->lbam = cdb[6]; | 
|  | 2698 | tf->lbah = cdb[7]; | 
|  | 2699 | tf->device = cdb[8]; | 
|  | 2700 | tf->command = cdb[9]; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2701 | } | 
| Albert Lee | fa4453c | 2007-06-07 15:52:07 +0800 | [diff] [blame] | 2702 |  | 
|  | 2703 | /* enforce correct master/slave bit */ | 
|  | 2704 | tf->device = dev->devno ? | 
|  | 2705 | tf->device | ATA_DEV1 : tf->device & ~ATA_DEV1; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2706 |  | 
| Albert Lee | 1dce589 | 2007-06-07 15:49:22 +0800 | [diff] [blame] | 2707 | /* sanity check for pio multi commands */ | 
|  | 2708 | if ((cdb[1] & 0xe0) && !is_multi_taskfile(tf)) | 
|  | 2709 | goto invalid_fld; | 
|  | 2710 |  | 
|  | 2711 | if (is_multi_taskfile(tf)) { | 
|  | 2712 | unsigned int multi_count = 1 << (cdb[1] >> 5); | 
|  | 2713 |  | 
|  | 2714 | /* compare the passed through multi_count | 
|  | 2715 | * with the cached multi_count of libata | 
|  | 2716 | */ | 
|  | 2717 | if (multi_count != dev->multi_count) | 
|  | 2718 | ata_dev_printk(dev, KERN_WARNING, | 
|  | 2719 | "invalid multi_count %u ignored\n", | 
|  | 2720 | multi_count); | 
| Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 2721 | } | 
| Albert Lee | 1dce589 | 2007-06-07 15:49:22 +0800 | [diff] [blame] | 2722 |  | 
| Mark Lord | 5a5dbd1 | 2007-03-16 10:22:26 -0400 | [diff] [blame] | 2723 | /* READ/WRITE LONG use a non-standard sect_size */ | 
|  | 2724 | qc->sect_size = ATA_SECT_SIZE; | 
|  | 2725 | switch (tf->command) { | 
|  | 2726 | case ATA_CMD_READ_LONG: | 
|  | 2727 | case ATA_CMD_READ_LONG_ONCE: | 
|  | 2728 | case ATA_CMD_WRITE_LONG: | 
|  | 2729 | case ATA_CMD_WRITE_LONG_ONCE: | 
|  | 2730 | if (tf->protocol != ATA_PROT_PIO || tf->nsect != 1) | 
|  | 2731 | goto invalid_fld; | 
| Boaz Harrosh | 7120165 | 2007-09-18 17:48:50 +0200 | [diff] [blame] | 2732 | qc->sect_size = scsi_bufflen(scmd); | 
| Mark Lord | 5a5dbd1 | 2007-03-16 10:22:26 -0400 | [diff] [blame] | 2733 | } | 
|  | 2734 |  | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2735 | /* | 
|  | 2736 | * Filter SET_FEATURES - XFER MODE command -- otherwise, | 
|  | 2737 | * SET_FEATURES - XFER MODE must be preceded/succeeded | 
|  | 2738 | * by an update to hardware-specific registers for each | 
|  | 2739 | * controller (i.e. the reason for ->set_piomode(), | 
|  | 2740 | * ->set_dmamode(), and ->post_set_mode() hooks). | 
|  | 2741 | */ | 
|  | 2742 | if ((tf->command == ATA_CMD_SET_FEATURES) | 
|  | 2743 | && (tf->feature == SETFEATURES_XFER)) | 
| Tejun Heo | 9a40525 | 2005-12-02 11:49:11 +0900 | [diff] [blame] | 2744 | goto invalid_fld; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2745 |  | 
|  | 2746 | /* | 
|  | 2747 | * Set flags so that all registers will be written, | 
|  | 2748 | * and pass on write indication (used for PIO/DMA | 
|  | 2749 | * setup.) | 
|  | 2750 | */ | 
|  | 2751 | tf->flags |= (ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE); | 
|  | 2752 |  | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2753 | if (scmd->sc_data_direction == DMA_TO_DEVICE) | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2754 | tf->flags |= ATA_TFLAG_WRITE; | 
|  | 2755 |  | 
|  | 2756 | /* | 
|  | 2757 | * Set transfer length. | 
|  | 2758 | * | 
|  | 2759 | * TODO: find out if we need to do more here to | 
|  | 2760 | *       cover scatter/gather case. | 
|  | 2761 | */ | 
| Tejun Heo | aacda37 | 2008-03-18 17:47:43 +0900 | [diff] [blame] | 2762 | ata_qc_set_pc_nbytes(qc); | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2763 |  | 
| Tejun Heo | e027bd3 | 2007-10-26 16:19:26 +0900 | [diff] [blame] | 2764 | /* request result TF and be quiet about device error */ | 
|  | 2765 | qc->flags |= ATA_QCFLAG_RESULT_TF | ATA_QCFLAG_QUIET; | 
| Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 2766 |  | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2767 | return 0; | 
| Tejun Heo | 9a40525 | 2005-12-02 11:49:11 +0900 | [diff] [blame] | 2768 |  | 
|  | 2769 | invalid_fld: | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2770 | ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x00); | 
| Tejun Heo | 9a40525 | 2005-12-02 11:49:11 +0900 | [diff] [blame] | 2771 | /* "Invalid field in cdb" */ | 
|  | 2772 | return 1; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2773 | } | 
|  | 2774 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2775 | /** | 
|  | 2776 | *	ata_get_xlat_func - check if SCSI to ATA translation is possible | 
|  | 2777 | *	@dev: ATA device | 
|  | 2778 | *	@cmd: SCSI command opcode to consider | 
|  | 2779 | * | 
|  | 2780 | *	Look up the SCSI command given, and determine whether the | 
|  | 2781 | *	SCSI command is to be translated or simulated. | 
|  | 2782 | * | 
|  | 2783 | *	RETURNS: | 
|  | 2784 | *	Pointer to translation function if possible, %NULL if not. | 
|  | 2785 | */ | 
|  | 2786 |  | 
|  | 2787 | static inline ata_xlat_func_t ata_get_xlat_func(struct ata_device *dev, u8 cmd) | 
|  | 2788 | { | 
|  | 2789 | switch (cmd) { | 
|  | 2790 | case READ_6: | 
|  | 2791 | case READ_10: | 
|  | 2792 | case READ_16: | 
|  | 2793 |  | 
|  | 2794 | case WRITE_6: | 
|  | 2795 | case WRITE_10: | 
|  | 2796 | case WRITE_16: | 
|  | 2797 | return ata_scsi_rw_xlat; | 
|  | 2798 |  | 
|  | 2799 | case SYNCHRONIZE_CACHE: | 
|  | 2800 | if (ata_try_flush_cache(dev)) | 
|  | 2801 | return ata_scsi_flush_xlat; | 
|  | 2802 | break; | 
|  | 2803 |  | 
|  | 2804 | case VERIFY: | 
|  | 2805 | case VERIFY_16: | 
|  | 2806 | return ata_scsi_verify_xlat; | 
| Jeff Garzik | b095518 | 2005-05-12 15:45:22 -0400 | [diff] [blame] | 2807 |  | 
|  | 2808 | case ATA_12: | 
|  | 2809 | case ATA_16: | 
|  | 2810 | return ata_scsi_pass_thru; | 
| Jeff Garzik | da61396 | 2005-08-29 19:01:43 -0400 | [diff] [blame] | 2811 |  | 
| Douglas Gilbert | 972dcaf | 2005-08-11 03:35:53 -0400 | [diff] [blame] | 2812 | case START_STOP: | 
|  | 2813 | return ata_scsi_start_stop_xlat; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2814 | } | 
|  | 2815 |  | 
|  | 2816 | return NULL; | 
|  | 2817 | } | 
|  | 2818 |  | 
|  | 2819 | /** | 
|  | 2820 | *	ata_scsi_dump_cdb - dump SCSI command contents to dmesg | 
|  | 2821 | *	@ap: ATA port to which the command was being sent | 
|  | 2822 | *	@cmd: SCSI command to dump | 
|  | 2823 | * | 
|  | 2824 | *	Prints the contents of a SCSI command via printk(). | 
|  | 2825 | */ | 
|  | 2826 |  | 
|  | 2827 | static inline void ata_scsi_dump_cdb(struct ata_port *ap, | 
|  | 2828 | struct scsi_cmnd *cmd) | 
|  | 2829 | { | 
|  | 2830 | #ifdef ATA_DEBUG | 
|  | 2831 | struct scsi_device *scsidev = cmd->device; | 
|  | 2832 | u8 *scsicmd = cmd->cmnd; | 
|  | 2833 |  | 
|  | 2834 | DPRINTK("CDB (%u:%d,%d,%d) %02x %02x %02x %02x %02x %02x %02x %02x %02x\n", | 
| Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 2835 | ap->print_id, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2836 | scsidev->channel, scsidev->id, scsidev->lun, | 
|  | 2837 | scsicmd[0], scsicmd[1], scsicmd[2], scsicmd[3], | 
|  | 2838 | scsicmd[4], scsicmd[5], scsicmd[6], scsicmd[7], | 
|  | 2839 | scsicmd[8]); | 
|  | 2840 | #endif | 
|  | 2841 | } | 
|  | 2842 |  | 
| Tejun Heo | 542b144 | 2006-12-17 10:45:08 +0900 | [diff] [blame] | 2843 | static inline int __ata_scsi_queuecmd(struct scsi_cmnd *scmd, | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 2844 | void (*done)(struct scsi_cmnd *), | 
|  | 2845 | struct ata_device *dev) | 
| Brian King | eb3f0f9 | 2006-03-23 17:30:02 -0600 | [diff] [blame] | 2846 | { | 
| Mark Lord | baf4fdf | 2007-08-08 01:08:45 +0900 | [diff] [blame] | 2847 | u8 scsi_op = scmd->cmnd[0]; | 
|  | 2848 | ata_xlat_func_t xlat_func; | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 2849 | int rc = 0; | 
|  | 2850 |  | 
| Mark Lord | baf4fdf | 2007-08-08 01:08:45 +0900 | [diff] [blame] | 2851 | if (dev->class == ATA_DEV_ATA) { | 
|  | 2852 | if (unlikely(!scmd->cmd_len || scmd->cmd_len > dev->cdb_len)) | 
|  | 2853 | goto bad_cdb_len; | 
|  | 2854 |  | 
|  | 2855 | xlat_func = ata_get_xlat_func(dev, scsi_op); | 
|  | 2856 | } else { | 
|  | 2857 | if (unlikely(!scmd->cmd_len)) | 
|  | 2858 | goto bad_cdb_len; | 
|  | 2859 |  | 
|  | 2860 | xlat_func = NULL; | 
|  | 2861 | if (likely((scsi_op != ATA_16) || !atapi_passthru16)) { | 
|  | 2862 | /* relay SCSI command to ATAPI device */ | 
| Mark Lord | 607126c | 2007-11-15 13:13:59 +0900 | [diff] [blame] | 2863 | int len = COMMAND_SIZE(scsi_op); | 
|  | 2864 | if (unlikely(len > scmd->cmd_len || len > dev->cdb_len)) | 
| Mark Lord | baf4fdf | 2007-08-08 01:08:45 +0900 | [diff] [blame] | 2865 | goto bad_cdb_len; | 
|  | 2866 |  | 
|  | 2867 | xlat_func = atapi_xlat; | 
|  | 2868 | } else { | 
|  | 2869 | /* ATA_16 passthru, treat as an ATA command */ | 
|  | 2870 | if (unlikely(scmd->cmd_len > 16)) | 
|  | 2871 | goto bad_cdb_len; | 
|  | 2872 |  | 
|  | 2873 | xlat_func = ata_get_xlat_func(dev, scsi_op); | 
|  | 2874 | } | 
| Tejun Heo | 2e5704f | 2006-12-17 10:46:33 +0900 | [diff] [blame] | 2875 | } | 
|  | 2876 |  | 
| Mark Lord | baf4fdf | 2007-08-08 01:08:45 +0900 | [diff] [blame] | 2877 | if (xlat_func) | 
|  | 2878 | rc = ata_scsi_translate(dev, scmd, done, xlat_func); | 
|  | 2879 | else | 
|  | 2880 | ata_scsi_simulate(dev, scmd, done); | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 2881 |  | 
|  | 2882 | return rc; | 
| Mark Lord | baf4fdf | 2007-08-08 01:08:45 +0900 | [diff] [blame] | 2883 |  | 
|  | 2884 | bad_cdb_len: | 
|  | 2885 | DPRINTK("bad CDB len=%u, scsi_op=0x%02x, max=%u\n", | 
|  | 2886 | scmd->cmd_len, scsi_op, dev->cdb_len); | 
|  | 2887 | scmd->result = DID_ERROR << 16; | 
|  | 2888 | done(scmd); | 
|  | 2889 | return 0; | 
| Brian King | eb3f0f9 | 2006-03-23 17:30:02 -0600 | [diff] [blame] | 2890 | } | 
|  | 2891 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2892 | /** | 
|  | 2893 | *	ata_scsi_queuecmd - Issue SCSI cdb to libata-managed device | 
|  | 2894 | *	@cmd: SCSI command to be sent | 
|  | 2895 | *	@done: Completion function, called when command is complete | 
|  | 2896 | * | 
|  | 2897 | *	In some cases, this function translates SCSI commands into | 
|  | 2898 | *	ATA taskfiles, and queues the taskfiles to be sent to | 
|  | 2899 | *	hardware.  In other cases, this function simulates a | 
|  | 2900 | *	SCSI device by evaluating and responding to certain | 
|  | 2901 | *	SCSI commands.  This creates the overall effect of | 
|  | 2902 | *	ATA and ATAPI devices appearing as SCSI devices. | 
|  | 2903 | * | 
|  | 2904 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2905 | *	Releases scsi-layer-held lock, and obtains host lock. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2906 | * | 
|  | 2907 | *	RETURNS: | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 2908 | *	Return value from __ata_scsi_queuecmd() if @cmd can be queued, | 
|  | 2909 | *	0 otherwise. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2911 | int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *)) | 
|  | 2912 | { | 
|  | 2913 | struct ata_port *ap; | 
|  | 2914 | struct ata_device *dev; | 
|  | 2915 | struct scsi_device *scsidev = cmd->device; | 
| Jeff Garzik | 005a5a0 | 2005-10-30 23:31:48 -0500 | [diff] [blame] | 2916 | struct Scsi_Host *shost = scsidev->host; | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 2917 | int rc = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2918 |  | 
| Jeff Garzik | 35bb94b | 2006-04-11 13:12:34 -0400 | [diff] [blame] | 2919 | ap = ata_shost_to_port(shost); | 
| Jeff Garzik | 005a5a0 | 2005-10-30 23:31:48 -0500 | [diff] [blame] | 2920 |  | 
|  | 2921 | spin_unlock(shost->host_lock); | 
| Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 2922 | spin_lock(ap->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2923 |  | 
|  | 2924 | ata_scsi_dump_cdb(ap, cmd); | 
|  | 2925 |  | 
|  | 2926 | dev = ata_scsi_find_dev(ap, scsidev); | 
| Brian King | eb3f0f9 | 2006-03-23 17:30:02 -0600 | [diff] [blame] | 2927 | if (likely(dev)) | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 2928 | rc = __ata_scsi_queuecmd(cmd, done, dev); | 
| Brian King | eb3f0f9 | 2006-03-23 17:30:02 -0600 | [diff] [blame] | 2929 | else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2930 | cmd->result = (DID_BAD_TARGET << 16); | 
|  | 2931 | done(cmd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2932 | } | 
|  | 2933 |  | 
| Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 2934 | spin_unlock(ap->lock); | 
| Jeff Garzik | 005a5a0 | 2005-10-30 23:31:48 -0500 | [diff] [blame] | 2935 | spin_lock(shost->host_lock); | 
| Tejun Heo | 2115ea9 | 2006-05-15 21:03:39 +0900 | [diff] [blame] | 2936 | return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2937 | } | 
|  | 2938 |  | 
|  | 2939 | /** | 
|  | 2940 | *	ata_scsi_simulate - simulate SCSI command on ATA device | 
| Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 2941 | *	@dev: the target device | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2942 | *	@cmd: SCSI command being sent to device. | 
|  | 2943 | *	@done: SCSI command completion function. | 
|  | 2944 | * | 
|  | 2945 | *	Interprets and directly executes a select list of SCSI commands | 
|  | 2946 | *	that can be handled internally. | 
|  | 2947 | * | 
|  | 2948 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2949 | *	spin_lock_irqsave(host lock) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | */ | 
|  | 2951 |  | 
| Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2952 | void ata_scsi_simulate(struct ata_device *dev, struct scsi_cmnd *cmd, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2953 | void (*done)(struct scsi_cmnd *)) | 
|  | 2954 | { | 
|  | 2955 | struct ata_scsi_args args; | 
| Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 2956 | const u8 *scsicmd = cmd->cmnd; | 
| Jeff Garzik | 4539414 | 2007-09-21 06:23:42 -0400 | [diff] [blame] | 2957 | u8 tmp8; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2958 |  | 
| Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 2959 | args.dev = dev; | 
|  | 2960 | args.id = dev->id; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2961 | args.cmd = cmd; | 
|  | 2962 | args.done = done; | 
|  | 2963 |  | 
|  | 2964 | switch(scsicmd[0]) { | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2965 | /* TODO: worth improving? */ | 
|  | 2966 | case FORMAT_UNIT: | 
|  | 2967 | ata_scsi_invalid_field(cmd, done); | 
|  | 2968 | break; | 
|  | 2969 |  | 
|  | 2970 | case INQUIRY: | 
|  | 2971 | if (scsicmd[1] & 2)	           /* is CmdDt set?  */ | 
| Jeff Garzik | 00bd020 | 2007-09-21 07:26:08 -0400 | [diff] [blame] | 2972 | ata_scsi_invalid_field(cmd, done); | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2973 | else if ((scsicmd[1] & 1) == 0)    /* is EVPD clear? */ | 
|  | 2974 | ata_scsi_rbuf_fill(&args, ata_scsiop_inq_std); | 
|  | 2975 | else switch (scsicmd[2]) { | 
|  | 2976 | case 0x00: | 
|  | 2977 | ata_scsi_rbuf_fill(&args, ata_scsiop_inq_00); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2978 | break; | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2979 | case 0x80: | 
|  | 2980 | ata_scsi_rbuf_fill(&args, ata_scsiop_inq_80); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2981 | break; | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2982 | case 0x83: | 
|  | 2983 | ata_scsi_rbuf_fill(&args, ata_scsiop_inq_83); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2984 | break; | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2985 | case 0x89: | 
|  | 2986 | ata_scsi_rbuf_fill(&args, ata_scsiop_inq_89); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2987 | break; | 
| Matthew Wilcox | 1e9dbc9 | 2008-06-19 13:13:38 -0600 | [diff] [blame] | 2988 | case 0xb1: | 
|  | 2989 | ata_scsi_rbuf_fill(&args, ata_scsiop_inq_b1); | 
|  | 2990 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2991 | default: | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2992 | ata_scsi_invalid_field(cmd, done); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | break; | 
| Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2994 | } | 
|  | 2995 | break; | 
|  | 2996 |  | 
|  | 2997 | case MODE_SENSE: | 
|  | 2998 | case MODE_SENSE_10: | 
|  | 2999 | ata_scsi_rbuf_fill(&args, ata_scsiop_mode_sense); | 
|  | 3000 | break; | 
|  | 3001 |  | 
|  | 3002 | case MODE_SELECT:	/* unconditionally return */ | 
|  | 3003 | case MODE_SELECT_10:	/* bad-field-in-cdb */ | 
|  | 3004 | ata_scsi_invalid_field(cmd, done); | 
|  | 3005 | break; | 
|  | 3006 |  | 
|  | 3007 | case READ_CAPACITY: | 
|  | 3008 | ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap); | 
|  | 3009 | break; | 
|  | 3010 |  | 
|  | 3011 | case SERVICE_ACTION_IN: | 
|  | 3012 | if ((scsicmd[1] & 0x1f) == SAI_READ_CAPACITY_16) | 
|  | 3013 | ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap); | 
|  | 3014 | else | 
|  | 3015 | ata_scsi_invalid_field(cmd, done); | 
|  | 3016 | break; | 
|  | 3017 |  | 
|  | 3018 | case REPORT_LUNS: | 
|  | 3019 | ata_scsi_rbuf_fill(&args, ata_scsiop_report_luns); | 
|  | 3020 | break; | 
|  | 3021 |  | 
|  | 3022 | case REQUEST_SENSE: | 
|  | 3023 | ata_scsi_set_sense(cmd, 0, 0, 0); | 
|  | 3024 | cmd->result = (DRIVER_SENSE << 24); | 
|  | 3025 | done(cmd); | 
|  | 3026 | break; | 
|  | 3027 |  | 
|  | 3028 | /* if we reach this, then writeback caching is disabled, | 
|  | 3029 | * turning this into a no-op. | 
|  | 3030 | */ | 
|  | 3031 | case SYNCHRONIZE_CACHE: | 
|  | 3032 | /* fall through */ | 
|  | 3033 |  | 
|  | 3034 | /* no-op's, complete with success */ | 
|  | 3035 | case REZERO_UNIT: | 
|  | 3036 | case SEEK_6: | 
|  | 3037 | case SEEK_10: | 
|  | 3038 | case TEST_UNIT_READY: | 
|  | 3039 | ata_scsi_rbuf_fill(&args, ata_scsiop_noop); | 
|  | 3040 | break; | 
|  | 3041 |  | 
|  | 3042 | case SEND_DIAGNOSTIC: | 
|  | 3043 | tmp8 = scsicmd[1] & ~(1 << 3); | 
|  | 3044 | if ((tmp8 == 0x4) && (!scsicmd[3]) && (!scsicmd[4])) | 
|  | 3045 | ata_scsi_rbuf_fill(&args, ata_scsiop_noop); | 
|  | 3046 | else | 
|  | 3047 | ata_scsi_invalid_field(cmd, done); | 
|  | 3048 | break; | 
|  | 3049 |  | 
|  | 3050 | /* all other commands */ | 
|  | 3051 | default: | 
|  | 3052 | ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, 0x20, 0x0); | 
|  | 3053 | /* "Invalid command operation code" */ | 
|  | 3054 | done(cmd); | 
|  | 3055 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3056 | } | 
|  | 3057 | } | 
|  | 3058 |  | 
| Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 3059 | int ata_scsi_add_hosts(struct ata_host *host, struct scsi_host_template *sht) | 
|  | 3060 | { | 
|  | 3061 | int i, rc; | 
|  | 3062 |  | 
|  | 3063 | for (i = 0; i < host->n_ports; i++) { | 
|  | 3064 | struct ata_port *ap = host->ports[i]; | 
|  | 3065 | struct Scsi_Host *shost; | 
|  | 3066 |  | 
|  | 3067 | rc = -ENOMEM; | 
|  | 3068 | shost = scsi_host_alloc(sht, sizeof(struct ata_port *)); | 
|  | 3069 | if (!shost) | 
|  | 3070 | goto err_alloc; | 
|  | 3071 |  | 
|  | 3072 | *(struct ata_port **)&shost->hostdata[0] = ap; | 
|  | 3073 | ap->scsi_host = shost; | 
|  | 3074 |  | 
|  | 3075 | shost->transportt = &ata_scsi_transport_template; | 
|  | 3076 | shost->unique_id = ap->print_id; | 
|  | 3077 | shost->max_id = 16; | 
|  | 3078 | shost->max_lun = 1; | 
|  | 3079 | shost->max_channel = 1; | 
|  | 3080 | shost->max_cmd_len = 16; | 
|  | 3081 |  | 
| Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 3082 | /* Schedule policy is determined by ->qc_defer() | 
|  | 3083 | * callback and it needs to see every deferred qc. | 
|  | 3084 | * Set host_blocked to 1 to prevent SCSI midlayer from | 
|  | 3085 | * automatically deferring requests. | 
|  | 3086 | */ | 
|  | 3087 | shost->max_host_blocked = 1; | 
|  | 3088 |  | 
| Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 3089 | rc = scsi_add_host(ap->scsi_host, ap->host->dev); | 
|  | 3090 | if (rc) | 
|  | 3091 | goto err_add; | 
|  | 3092 | } | 
|  | 3093 |  | 
|  | 3094 | return 0; | 
|  | 3095 |  | 
|  | 3096 | err_add: | 
|  | 3097 | scsi_host_put(host->ports[i]->scsi_host); | 
|  | 3098 | err_alloc: | 
|  | 3099 | while (--i >= 0) { | 
|  | 3100 | struct Scsi_Host *shost = host->ports[i]->scsi_host; | 
|  | 3101 |  | 
|  | 3102 | scsi_remove_host(shost); | 
|  | 3103 | scsi_host_put(shost); | 
|  | 3104 | } | 
|  | 3105 | return rc; | 
|  | 3106 | } | 
|  | 3107 |  | 
| Tejun Heo | 1ae4631 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3108 | void ata_scsi_scan_host(struct ata_port *ap, int sync) | 
| Jeff Garzik | 644dd0c | 2005-10-03 15:55:19 -0400 | [diff] [blame] | 3109 | { | 
| Tejun Heo | 1ae4631 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3110 | int tries = 5; | 
|  | 3111 | struct ata_device *last_failed_dev = NULL; | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3112 | struct ata_link *link; | 
| Tejun Heo | 1ae4631 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3113 | struct ata_device *dev; | 
| Jeff Garzik | 644dd0c | 2005-10-03 15:55:19 -0400 | [diff] [blame] | 3114 |  | 
| Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 3115 | if (ap->flags & ATA_FLAG_DISABLED) | 
| Jeff Garzik | 644dd0c | 2005-10-03 15:55:19 -0400 | [diff] [blame] | 3116 | return; | 
|  | 3117 |  | 
| Tejun Heo | 1ae4631 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3118 | repeat: | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3119 | ata_port_for_each_link(link, ap) { | 
|  | 3120 | ata_link_for_each_dev(dev, link) { | 
|  | 3121 | struct scsi_device *sdev; | 
|  | 3122 | int channel = 0, id = 0; | 
| Jeff Garzik | 3f19ee8 | 2005-10-03 21:36:41 -0400 | [diff] [blame] | 3123 |  | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3124 | if (!ata_dev_enabled(dev) || dev->sdev) | 
|  | 3125 | continue; | 
| Tejun Heo | 3edebac | 2006-05-31 18:27:40 +0900 | [diff] [blame] | 3126 |  | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3127 | if (ata_is_host_link(link)) | 
|  | 3128 | id = dev->devno; | 
|  | 3129 | else | 
|  | 3130 | channel = link->pmp; | 
|  | 3131 |  | 
|  | 3132 | sdev = __scsi_add_device(ap->scsi_host, channel, id, 0, | 
|  | 3133 | NULL); | 
|  | 3134 | if (!IS_ERR(sdev)) { | 
|  | 3135 | dev->sdev = sdev; | 
|  | 3136 | scsi_device_put(sdev); | 
|  | 3137 | } | 
| Tejun Heo | 3edebac | 2006-05-31 18:27:40 +0900 | [diff] [blame] | 3138 | } | 
| Jeff Garzik | 3f19ee8 | 2005-10-03 21:36:41 -0400 | [diff] [blame] | 3139 | } | 
| Tejun Heo | 1ae4631 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3140 |  | 
|  | 3141 | /* If we scanned while EH was in progress or allocation | 
|  | 3142 | * failure occurred, scan would have failed silently.  Check | 
|  | 3143 | * whether all devices are attached. | 
|  | 3144 | */ | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3145 | ata_port_for_each_link(link, ap) { | 
|  | 3146 | ata_link_for_each_dev(dev, link) { | 
|  | 3147 | if (ata_dev_enabled(dev) && !dev->sdev) | 
|  | 3148 | goto exit_loop; | 
|  | 3149 | } | 
| Tejun Heo | 1ae4631 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3150 | } | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3151 | exit_loop: | 
|  | 3152 | if (!link) | 
| Tejun Heo | 1ae4631 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3153 | return; | 
|  | 3154 |  | 
|  | 3155 | /* we're missing some SCSI devices */ | 
|  | 3156 | if (sync) { | 
|  | 3157 | /* If caller requested synchrnous scan && we've made | 
|  | 3158 | * any progress, sleep briefly and repeat. | 
|  | 3159 | */ | 
|  | 3160 | if (dev != last_failed_dev) { | 
|  | 3161 | msleep(100); | 
|  | 3162 | last_failed_dev = dev; | 
|  | 3163 | goto repeat; | 
|  | 3164 | } | 
|  | 3165 |  | 
|  | 3166 | /* We might be failing to detect boot device, give it | 
|  | 3167 | * a few more chances. | 
|  | 3168 | */ | 
|  | 3169 | if (--tries) { | 
|  | 3170 | msleep(100); | 
|  | 3171 | goto repeat; | 
|  | 3172 | } | 
|  | 3173 |  | 
|  | 3174 | ata_port_printk(ap, KERN_ERR, "WARNING: synchronous SCSI scan " | 
|  | 3175 | "failed without making any progress,\n" | 
|  | 3176 | "                  switching to async\n"); | 
|  | 3177 | } | 
|  | 3178 |  | 
|  | 3179 | queue_delayed_work(ata_aux_wq, &ap->hotplug_task, | 
|  | 3180 | round_jiffies_relative(HZ)); | 
| Jeff Garzik | 644dd0c | 2005-10-03 15:55:19 -0400 | [diff] [blame] | 3181 | } | 
| Tejun Heo | 0ea035a | 2006-05-31 18:28:01 +0900 | [diff] [blame] | 3182 |  | 
|  | 3183 | /** | 
|  | 3184 | *	ata_scsi_offline_dev - offline attached SCSI device | 
|  | 3185 | *	@dev: ATA device to offline attached SCSI device for | 
|  | 3186 | * | 
|  | 3187 | *	This function is called from ata_eh_hotplug() and responsible | 
|  | 3188 | *	for taking the SCSI device attached to @dev offline.  This | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3189 | *	function is called with host lock which protects dev->sdev | 
| Tejun Heo | 0ea035a | 2006-05-31 18:28:01 +0900 | [diff] [blame] | 3190 | *	against clearing. | 
|  | 3191 | * | 
|  | 3192 | *	LOCKING: | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3193 | *	spin_lock_irqsave(host lock) | 
| Tejun Heo | 0ea035a | 2006-05-31 18:28:01 +0900 | [diff] [blame] | 3194 | * | 
|  | 3195 | *	RETURNS: | 
|  | 3196 | *	1 if attached SCSI device exists, 0 otherwise. | 
|  | 3197 | */ | 
|  | 3198 | int ata_scsi_offline_dev(struct ata_device *dev) | 
|  | 3199 | { | 
|  | 3200 | if (dev->sdev) { | 
|  | 3201 | scsi_device_set_state(dev->sdev, SDEV_OFFLINE); | 
|  | 3202 | return 1; | 
|  | 3203 | } | 
|  | 3204 | return 0; | 
|  | 3205 | } | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3206 |  | 
|  | 3207 | /** | 
|  | 3208 | *	ata_scsi_remove_dev - remove attached SCSI device | 
|  | 3209 | *	@dev: ATA device to remove attached SCSI device for | 
|  | 3210 | * | 
|  | 3211 | *	This function is called from ata_eh_scsi_hotplug() and | 
|  | 3212 | *	responsible for removing the SCSI device attached to @dev. | 
|  | 3213 | * | 
|  | 3214 | *	LOCKING: | 
|  | 3215 | *	Kernel thread context (may sleep). | 
|  | 3216 | */ | 
|  | 3217 | static void ata_scsi_remove_dev(struct ata_device *dev) | 
|  | 3218 | { | 
| Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3219 | struct ata_port *ap = dev->link->ap; | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3220 | struct scsi_device *sdev; | 
|  | 3221 | unsigned long flags; | 
|  | 3222 |  | 
|  | 3223 | /* Alas, we need to grab scan_mutex to ensure SCSI device | 
|  | 3224 | * state doesn't change underneath us and thus | 
|  | 3225 | * scsi_device_get() always succeeds.  The mutex locking can | 
|  | 3226 | * be removed if there is __scsi_device_get() interface which | 
|  | 3227 | * increments reference counts regardless of device state. | 
|  | 3228 | */ | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3229 | mutex_lock(&ap->scsi_host->scan_mutex); | 
| Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 3230 | spin_lock_irqsave(ap->lock, flags); | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3231 |  | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3232 | /* clearing dev->sdev is protected by host lock */ | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3233 | sdev = dev->sdev; | 
|  | 3234 | dev->sdev = NULL; | 
|  | 3235 |  | 
|  | 3236 | if (sdev) { | 
|  | 3237 | /* If user initiated unplug races with us, sdev can go | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3238 | * away underneath us after the host lock and | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3239 | * scan_mutex are released.  Hold onto it. | 
|  | 3240 | */ | 
|  | 3241 | if (scsi_device_get(sdev) == 0) { | 
|  | 3242 | /* The following ensures the attached sdev is | 
|  | 3243 | * offline on return from ata_scsi_offline_dev() | 
|  | 3244 | * regardless it wins or loses the race | 
|  | 3245 | * against this function. | 
|  | 3246 | */ | 
|  | 3247 | scsi_device_set_state(sdev, SDEV_OFFLINE); | 
|  | 3248 | } else { | 
|  | 3249 | WARN_ON(1); | 
|  | 3250 | sdev = NULL; | 
|  | 3251 | } | 
|  | 3252 | } | 
|  | 3253 |  | 
| Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 3254 | spin_unlock_irqrestore(ap->lock, flags); | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3255 | mutex_unlock(&ap->scsi_host->scan_mutex); | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3256 |  | 
|  | 3257 | if (sdev) { | 
|  | 3258 | ata_dev_printk(dev, KERN_INFO, "detaching (SCSI %s)\n", | 
|  | 3259 | sdev->sdev_gendev.bus_id); | 
|  | 3260 |  | 
|  | 3261 | scsi_remove_device(sdev); | 
|  | 3262 | scsi_device_put(sdev); | 
|  | 3263 | } | 
|  | 3264 | } | 
|  | 3265 |  | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3266 | static void ata_scsi_handle_link_detach(struct ata_link *link) | 
|  | 3267 | { | 
|  | 3268 | struct ata_port *ap = link->ap; | 
|  | 3269 | struct ata_device *dev; | 
|  | 3270 |  | 
|  | 3271 | ata_link_for_each_dev(dev, link) { | 
|  | 3272 | unsigned long flags; | 
|  | 3273 |  | 
|  | 3274 | if (!(dev->flags & ATA_DFLAG_DETACHED)) | 
|  | 3275 | continue; | 
|  | 3276 |  | 
|  | 3277 | spin_lock_irqsave(ap->lock, flags); | 
|  | 3278 | dev->flags &= ~ATA_DFLAG_DETACHED; | 
|  | 3279 | spin_unlock_irqrestore(ap->lock, flags); | 
|  | 3280 |  | 
|  | 3281 | ata_scsi_remove_dev(dev); | 
|  | 3282 | } | 
|  | 3283 | } | 
|  | 3284 |  | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3285 | /** | 
| Kristen Carlson Accardi | 2f29496 | 2007-08-15 04:11:25 -0400 | [diff] [blame] | 3286 | *	ata_scsi_media_change_notify - send media change event | 
| Randy Dunlap | c5d0e6a | 2007-10-15 17:29:46 -0700 | [diff] [blame] | 3287 | *	@dev: Pointer to the disk device with media change event | 
| Kristen Carlson Accardi | 2f29496 | 2007-08-15 04:11:25 -0400 | [diff] [blame] | 3288 | * | 
|  | 3289 | *	Tell the block layer to send a media change notification | 
|  | 3290 | *	event. | 
|  | 3291 | * | 
|  | 3292 | * 	LOCKING: | 
| Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 3293 | * 	spin_lock_irqsave(host lock) | 
| Kristen Carlson Accardi | 2f29496 | 2007-08-15 04:11:25 -0400 | [diff] [blame] | 3294 | */ | 
| Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 3295 | void ata_scsi_media_change_notify(struct ata_device *dev) | 
| Kristen Carlson Accardi | 2f29496 | 2007-08-15 04:11:25 -0400 | [diff] [blame] | 3296 | { | 
| Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 3297 | if (dev->sdev) | 
| Jeff Garzik | f26792d | 2007-10-29 17:18:39 -0400 | [diff] [blame] | 3298 | sdev_evt_send_simple(dev->sdev, SDEV_EVT_MEDIA_CHANGE, | 
|  | 3299 | GFP_ATOMIC); | 
| Kristen Carlson Accardi | 2f29496 | 2007-08-15 04:11:25 -0400 | [diff] [blame] | 3300 | } | 
| Kristen Carlson Accardi | 2f29496 | 2007-08-15 04:11:25 -0400 | [diff] [blame] | 3301 |  | 
|  | 3302 | /** | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3303 | *	ata_scsi_hotplug - SCSI part of hotplug | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 3304 | *	@work: Pointer to ATA port to perform SCSI hotplug on | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3305 | * | 
|  | 3306 | *	Perform SCSI part of hotplug.  It's executed from a separate | 
|  | 3307 | *	workqueue after EH completes.  This is necessary because SCSI | 
|  | 3308 | *	hot plugging requires working EH and hot unplugging is | 
|  | 3309 | *	synchronized with hot plugging with a mutex. | 
|  | 3310 | * | 
|  | 3311 | *	LOCKING: | 
|  | 3312 | *	Kernel thread context (may sleep). | 
|  | 3313 | */ | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 3314 | void ata_scsi_hotplug(struct work_struct *work) | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3315 | { | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 3316 | struct ata_port *ap = | 
|  | 3317 | container_of(work, struct ata_port, hotplug_task.work); | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3318 | int i; | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3319 |  | 
| Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 3320 | if (ap->pflags & ATA_PFLAG_UNLOADING) { | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3321 | DPRINTK("ENTER/EXIT - unloading\n"); | 
|  | 3322 | return; | 
|  | 3323 | } | 
|  | 3324 |  | 
|  | 3325 | DPRINTK("ENTER\n"); | 
|  | 3326 |  | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3327 | /* Unplug detached devices.  We cannot use link iterator here | 
|  | 3328 | * because PMP links have to be scanned even if PMP is | 
|  | 3329 | * currently not attached.  Iterate manually. | 
|  | 3330 | */ | 
|  | 3331 | ata_scsi_handle_link_detach(&ap->link); | 
|  | 3332 | if (ap->pmp_link) | 
|  | 3333 | for (i = 0; i < SATA_PMP_MAX_PORTS; i++) | 
|  | 3334 | ata_scsi_handle_link_detach(&ap->pmp_link[i]); | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3335 |  | 
|  | 3336 | /* scan for new ones */ | 
| Tejun Heo | 1ae4631 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3337 | ata_scsi_scan_host(ap, 0); | 
| Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 3338 |  | 
|  | 3339 | DPRINTK("EXIT\n"); | 
|  | 3340 | } | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 3341 |  | 
|  | 3342 | /** | 
|  | 3343 | *	ata_scsi_user_scan - indication for user-initiated bus scan | 
|  | 3344 | *	@shost: SCSI host to scan | 
|  | 3345 | *	@channel: Channel to scan | 
|  | 3346 | *	@id: ID to scan | 
|  | 3347 | *	@lun: LUN to scan | 
|  | 3348 | * | 
|  | 3349 | *	This function is called when user explicitly requests bus | 
|  | 3350 | *	scan.  Set probe pending flag and invoke EH. | 
|  | 3351 | * | 
|  | 3352 | *	LOCKING: | 
|  | 3353 | *	SCSI layer (we don't care) | 
|  | 3354 | * | 
|  | 3355 | *	RETURNS: | 
|  | 3356 | *	Zero. | 
|  | 3357 | */ | 
|  | 3358 | static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel, | 
|  | 3359 | unsigned int id, unsigned int lun) | 
|  | 3360 | { | 
|  | 3361 | struct ata_port *ap = ata_shost_to_port(shost); | 
|  | 3362 | unsigned long flags; | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3363 | int devno, rc = 0; | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 3364 |  | 
|  | 3365 | if (!ap->ops->error_handler) | 
|  | 3366 | return -EOPNOTSUPP; | 
|  | 3367 |  | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3368 | if (lun != SCAN_WILD_CARD && lun) | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 3369 | return -EINVAL; | 
|  | 3370 |  | 
| Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 3371 | if (!sata_pmp_attached(ap)) { | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3372 | if (channel != SCAN_WILD_CARD && channel) | 
|  | 3373 | return -EINVAL; | 
|  | 3374 | devno = id; | 
|  | 3375 | } else { | 
|  | 3376 | if (id != SCAN_WILD_CARD && id) | 
|  | 3377 | return -EINVAL; | 
|  | 3378 | devno = channel; | 
|  | 3379 | } | 
|  | 3380 |  | 
| Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 3381 | spin_lock_irqsave(ap->lock, flags); | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 3382 |  | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3383 | if (devno == SCAN_WILD_CARD) { | 
|  | 3384 | struct ata_link *link; | 
|  | 3385 |  | 
|  | 3386 | ata_port_for_each_link(link, ap) { | 
|  | 3387 | struct ata_eh_info *ehi = &link->eh_info; | 
| Tejun Heo | b558edd | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 3388 | ehi->probe_mask |= ATA_ALL_DEVICES; | 
| Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 3389 | ehi->action |= ATA_EH_RESET; | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3390 | } | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 3391 | } else { | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3392 | struct ata_device *dev = ata_find_dev(ap, devno); | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 3393 |  | 
|  | 3394 | if (dev) { | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3395 | struct ata_eh_info *ehi = &dev->link->eh_info; | 
| Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3396 | ehi->probe_mask |= 1 << dev->devno; | 
| Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 3397 | ehi->action |= ATA_EH_RESET; | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 3398 | } else | 
|  | 3399 | rc = -EINVAL; | 
|  | 3400 | } | 
|  | 3401 |  | 
| Tejun Heo | 309afcb | 2006-09-30 18:07:17 +0900 | [diff] [blame] | 3402 | if (rc == 0) { | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 3403 | ata_port_schedule_eh(ap); | 
| Tejun Heo | 309afcb | 2006-09-30 18:07:17 +0900 | [diff] [blame] | 3404 | spin_unlock_irqrestore(ap->lock, flags); | 
|  | 3405 | ata_port_wait_eh(ap); | 
|  | 3406 | } else | 
|  | 3407 | spin_unlock_irqrestore(ap->lock, flags); | 
| Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 3408 |  | 
|  | 3409 | return rc; | 
|  | 3410 | } | 
| zhao, forrest | 3057ac3 | 2006-06-12 12:01:34 +0800 | [diff] [blame] | 3411 |  | 
|  | 3412 | /** | 
| Tejun Heo | d017126 | 2006-06-12 22:51:14 +0900 | [diff] [blame] | 3413 | *	ata_scsi_dev_rescan - initiate scsi_rescan_device() | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 3414 | *	@work: Pointer to ATA port to perform scsi_rescan_device() | 
| zhao, forrest | 3057ac3 | 2006-06-12 12:01:34 +0800 | [diff] [blame] | 3415 | * | 
| Tejun Heo | d017126 | 2006-06-12 22:51:14 +0900 | [diff] [blame] | 3416 | *	After ATA pass thru (SAT) commands are executed successfully, | 
|  | 3417 | *	libata need to propagate the changes to SCSI layer.  This | 
|  | 3418 | *	function must be executed from ata_aux_wq such that sdev | 
|  | 3419 | *	attach/detach don't race with rescan. | 
| zhao, forrest | 3057ac3 | 2006-06-12 12:01:34 +0800 | [diff] [blame] | 3420 | * | 
| Tejun Heo | d017126 | 2006-06-12 22:51:14 +0900 | [diff] [blame] | 3421 | *	LOCKING: | 
|  | 3422 | *	Kernel thread context (may sleep). | 
| zhao, forrest | 3057ac3 | 2006-06-12 12:01:34 +0800 | [diff] [blame] | 3423 | */ | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 3424 | void ata_scsi_dev_rescan(struct work_struct *work) | 
| zhao, forrest | 3057ac3 | 2006-06-12 12:01:34 +0800 | [diff] [blame] | 3425 | { | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 3426 | struct ata_port *ap = | 
|  | 3427 | container_of(work, struct ata_port, scsi_rescan_task); | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3428 | struct ata_link *link; | 
| Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3429 | struct ata_device *dev; | 
| Tejun Heo | f84e7e4 | 2006-11-22 11:21:31 +0900 | [diff] [blame] | 3430 | unsigned long flags; | 
| zhao, forrest | 3057ac3 | 2006-06-12 12:01:34 +0800 | [diff] [blame] | 3431 |  | 
| Tejun Heo | f84e7e4 | 2006-11-22 11:21:31 +0900 | [diff] [blame] | 3432 | spin_lock_irqsave(ap->lock, flags); | 
| zhao, forrest | 3057ac3 | 2006-06-12 12:01:34 +0800 | [diff] [blame] | 3433 |  | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3434 | ata_port_for_each_link(link, ap) { | 
|  | 3435 | ata_link_for_each_dev(dev, link) { | 
|  | 3436 | struct scsi_device *sdev = dev->sdev; | 
| Tejun Heo | f84e7e4 | 2006-11-22 11:21:31 +0900 | [diff] [blame] | 3437 |  | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3438 | if (!ata_dev_enabled(dev) || !sdev) | 
|  | 3439 | continue; | 
|  | 3440 | if (scsi_device_get(sdev)) | 
|  | 3441 | continue; | 
| Tejun Heo | f84e7e4 | 2006-11-22 11:21:31 +0900 | [diff] [blame] | 3442 |  | 
| Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 3443 | spin_unlock_irqrestore(ap->lock, flags); | 
|  | 3444 | scsi_rescan_device(&(sdev->sdev_gendev)); | 
|  | 3445 | scsi_device_put(sdev); | 
|  | 3446 | spin_lock_irqsave(ap->lock, flags); | 
|  | 3447 | } | 
| zhao, forrest | 3057ac3 | 2006-06-12 12:01:34 +0800 | [diff] [blame] | 3448 | } | 
| Tejun Heo | f84e7e4 | 2006-11-22 11:21:31 +0900 | [diff] [blame] | 3449 |  | 
|  | 3450 | spin_unlock_irqrestore(ap->lock, flags); | 
| zhao, forrest | 3057ac3 | 2006-06-12 12:01:34 +0800 | [diff] [blame] | 3451 | } | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3452 |  | 
|  | 3453 | /** | 
|  | 3454 | *	ata_sas_port_alloc - Allocate port for a SAS attached SATA device | 
| Jeff Garzik | 4f93137 | 2006-09-29 05:07:25 -0400 | [diff] [blame] | 3455 | *	@host: ATA host container for all SAS ports | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3456 | *	@port_info: Information from low-level host driver | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3457 | *	@shost: SCSI host that the scsi device is attached to | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3458 | * | 
|  | 3459 | *	LOCKING: | 
|  | 3460 | *	PCI/etc. bus probe sem. | 
|  | 3461 | * | 
|  | 3462 | *	RETURNS: | 
|  | 3463 | *	ata_port pointer on success / NULL on failure. | 
|  | 3464 | */ | 
|  | 3465 |  | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3466 | struct ata_port *ata_sas_port_alloc(struct ata_host *host, | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3467 | struct ata_port_info *port_info, | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3468 | struct Scsi_Host *shost) | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3469 | { | 
| Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 3470 | struct ata_port *ap; | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3471 |  | 
| Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 3472 | ap = ata_port_alloc(host); | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3473 | if (!ap) | 
|  | 3474 | return NULL; | 
|  | 3475 |  | 
| Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 3476 | ap->port_no = 0; | 
| Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3477 | ap->lock = shost->host_lock; | 
| Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 3478 | ap->pio_mask = port_info->pio_mask; | 
|  | 3479 | ap->mwdma_mask = port_info->mwdma_mask; | 
|  | 3480 | ap->udma_mask = port_info->udma_mask; | 
|  | 3481 | ap->flags |= port_info->flags; | 
|  | 3482 | ap->ops = port_info->port_ops; | 
|  | 3483 | ap->cbl = ATA_CBL_SATA; | 
|  | 3484 |  | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3485 | return ap; | 
|  | 3486 | } | 
|  | 3487 | EXPORT_SYMBOL_GPL(ata_sas_port_alloc); | 
|  | 3488 |  | 
|  | 3489 | /** | 
|  | 3490 | *	ata_sas_port_start - Set port up for dma. | 
|  | 3491 | *	@ap: Port to initialize | 
|  | 3492 | * | 
|  | 3493 | *	Called just after data structures for each port are | 
| James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 3494 | *	initialized. | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3495 | * | 
|  | 3496 | *	May be used as the port_start() entry in ata_port_operations. | 
|  | 3497 | * | 
|  | 3498 | *	LOCKING: | 
|  | 3499 | *	Inherited from caller. | 
|  | 3500 | */ | 
|  | 3501 | int ata_sas_port_start(struct ata_port *ap) | 
|  | 3502 | { | 
| James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 3503 | return 0; | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3504 | } | 
|  | 3505 | EXPORT_SYMBOL_GPL(ata_sas_port_start); | 
|  | 3506 |  | 
|  | 3507 | /** | 
|  | 3508 | *	ata_port_stop - Undo ata_sas_port_start() | 
|  | 3509 | *	@ap: Port to shut down | 
|  | 3510 | * | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3511 | *	May be used as the port_stop() entry in ata_port_operations. | 
|  | 3512 | * | 
|  | 3513 | *	LOCKING: | 
|  | 3514 | *	Inherited from caller. | 
|  | 3515 | */ | 
|  | 3516 |  | 
|  | 3517 | void ata_sas_port_stop(struct ata_port *ap) | 
|  | 3518 | { | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3519 | } | 
|  | 3520 | EXPORT_SYMBOL_GPL(ata_sas_port_stop); | 
|  | 3521 |  | 
|  | 3522 | /** | 
|  | 3523 | *	ata_sas_port_init - Initialize a SATA device | 
|  | 3524 | *	@ap: SATA port to initialize | 
|  | 3525 | * | 
|  | 3526 | *	LOCKING: | 
|  | 3527 | *	PCI/etc. bus probe sem. | 
|  | 3528 | * | 
|  | 3529 | *	RETURNS: | 
|  | 3530 | *	Zero on success, non-zero on error. | 
|  | 3531 | */ | 
|  | 3532 |  | 
|  | 3533 | int ata_sas_port_init(struct ata_port *ap) | 
|  | 3534 | { | 
|  | 3535 | int rc = ap->ops->port_start(ap); | 
|  | 3536 |  | 
| Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 3537 | if (!rc) { | 
|  | 3538 | ap->print_id = ata_print_id++; | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3539 | rc = ata_bus_probe(ap); | 
| Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 3540 | } | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3541 |  | 
|  | 3542 | return rc; | 
|  | 3543 | } | 
|  | 3544 | EXPORT_SYMBOL_GPL(ata_sas_port_init); | 
|  | 3545 |  | 
|  | 3546 | /** | 
|  | 3547 | *	ata_sas_port_destroy - Destroy a SATA port allocated by ata_sas_port_alloc | 
|  | 3548 | *	@ap: SATA port to destroy | 
|  | 3549 | * | 
|  | 3550 | */ | 
|  | 3551 |  | 
|  | 3552 | void ata_sas_port_destroy(struct ata_port *ap) | 
|  | 3553 | { | 
| Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 3554 | if (ap->ops->port_stop) | 
|  | 3555 | ap->ops->port_stop(ap); | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3556 | kfree(ap); | 
|  | 3557 | } | 
|  | 3558 | EXPORT_SYMBOL_GPL(ata_sas_port_destroy); | 
|  | 3559 |  | 
|  | 3560 | /** | 
|  | 3561 | *	ata_sas_slave_configure - Default slave_config routine for libata devices | 
|  | 3562 | *	@sdev: SCSI device to configure | 
|  | 3563 | *	@ap: ATA port to which SCSI device is attached | 
|  | 3564 | * | 
|  | 3565 | *	RETURNS: | 
|  | 3566 | *	Zero. | 
|  | 3567 | */ | 
|  | 3568 |  | 
|  | 3569 | int ata_sas_slave_configure(struct scsi_device *sdev, struct ata_port *ap) | 
|  | 3570 | { | 
|  | 3571 | ata_scsi_sdev_config(sdev); | 
| Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3572 | ata_scsi_dev_config(sdev, ap->link.device); | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3573 | return 0; | 
|  | 3574 | } | 
|  | 3575 | EXPORT_SYMBOL_GPL(ata_sas_slave_configure); | 
|  | 3576 |  | 
|  | 3577 | /** | 
|  | 3578 | *	ata_sas_queuecmd - Issue SCSI cdb to libata-managed device | 
|  | 3579 | *	@cmd: SCSI command to be sent | 
|  | 3580 | *	@done: Completion function, called when command is complete | 
|  | 3581 | *	@ap:	ATA port to which the command is being sent | 
|  | 3582 | * | 
|  | 3583 | *	RETURNS: | 
| Brian King | 08475a1 | 2006-11-20 13:51:56 -0600 | [diff] [blame] | 3584 | *	Return value from __ata_scsi_queuecmd() if @cmd can be queued, | 
|  | 3585 | *	0 otherwise. | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3586 | */ | 
|  | 3587 |  | 
|  | 3588 | int ata_sas_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *), | 
|  | 3589 | struct ata_port *ap) | 
|  | 3590 | { | 
| Brian King | 08475a1 | 2006-11-20 13:51:56 -0600 | [diff] [blame] | 3591 | int rc = 0; | 
|  | 3592 |  | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3593 | ata_scsi_dump_cdb(ap, cmd); | 
|  | 3594 |  | 
| Tejun Heo | 2486fa5 | 2008-07-31 07:52:40 +0900 | [diff] [blame] | 3595 | if (likely(ata_dev_enabled(ap->link.device))) | 
| Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3596 | rc = __ata_scsi_queuecmd(cmd, done, ap->link.device); | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3597 | else { | 
|  | 3598 | cmd->result = (DID_BAD_TARGET << 16); | 
|  | 3599 | done(cmd); | 
|  | 3600 | } | 
| Brian King | 08475a1 | 2006-11-20 13:51:56 -0600 | [diff] [blame] | 3601 | return rc; | 
| Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 3602 | } | 
|  | 3603 | EXPORT_SYMBOL_GPL(ata_sas_queuecmd); |