blob: 512a3ee8caf699a711053486c41346cf7a16a9d3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * 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 Torvalds1da177e2005-04-16 15:20:36 -070034 */
35
36#include <linux/kernel.h>
37#include <linux/blkdev.h>
38#include <linux/spinlock.h>
39#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <scsi/scsi_host.h>
Christoph Hellwigbeb40482006-06-10 18:01:03 +020041#include <scsi/scsi_cmnd.h>
Mike Christie85837eb2005-11-11 16:38:53 -060042#include <scsi/scsi_eh.h>
Jeff Garzik005a5a02005-10-30 23:31:48 -050043#include <scsi/scsi_device.h>
Tejun Heoa6e6ce82006-05-15 21:03:48 +090044#include <scsi/scsi_tcq.h>
Tejun Heo30afc842006-03-18 18:40:14 +090045#include <scsi/scsi_transport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/libata.h>
Jeff Garzikb0955182005-05-12 15:45:22 -040047#include <linux/hdreg.h>
Jeff Garzik2dcb4072007-10-19 06:42:56 -040048#include <linux/uaccess.h>
Rafael J. Wysocki2a6e58d2009-01-19 20:56:43 +010049#include <linux/suspend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include "libata.h"
52
Tejun Heo87340e92008-04-28 17:48:51 +090053#define SECTOR_SIZE 512
54#define ATA_SCSI_RBUF_SIZE 4096
55
56static DEFINE_SPINLOCK(ata_scsi_rbuf_lock);
57static u8 ata_scsi_rbuf[ATA_SCSI_RBUF_SIZE];
Jeff Garzikb0955182005-05-12 15:45:22 -040058
Tejun Heoad706992006-12-17 10:45:57 +090059typedef unsigned int (*ata_xlat_func_t)(struct ata_queued_cmd *qc);
Tejun Heoab5b3a52006-05-31 18:27:34 +090060
Jeff Garzik2dcb4072007-10-19 06:42:56 -040061static struct ata_device *__ata_scsi_find_dev(struct ata_port *ap,
Tejun Heoab5b3a52006-05-31 18:27:34 +090062 const struct scsi_device *scsidev);
Jeff Garzik2dcb4072007-10-19 06:42:56 -040063static struct ata_device *ata_scsi_find_dev(struct ata_port *ap,
Tejun Heoab5b3a52006-05-31 18:27:34 +090064 const struct scsi_device *scsidev);
Tejun Heo83c47bc2006-05-31 18:28:07 +090065static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel,
66 unsigned int id, unsigned int lun);
Tejun Heoab5b3a52006-05-31 18:27:34 +090067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Douglas Gilbert00ac37f2005-10-28 15:58:28 -040069#define RW_RECOVERY_MPAGE 0x1
70#define RW_RECOVERY_MPAGE_LEN 12
71#define CACHE_MPAGE 0x8
72#define CACHE_MPAGE_LEN 20
73#define CONTROL_MPAGE 0xa
74#define CONTROL_MPAGE_LEN 12
75#define ALL_MPAGES 0x3f
76#define ALL_SUB_MPAGES 0xff
77
78
Jeff Garzik24f75682007-09-21 07:54:49 -040079static const u8 def_rw_recovery_mpage[RW_RECOVERY_MPAGE_LEN] = {
Douglas Gilbert00ac37f2005-10-28 15:58:28 -040080 RW_RECOVERY_MPAGE,
81 RW_RECOVERY_MPAGE_LEN - 2,
Jeff Garzik24f75682007-09-21 07:54:49 -040082 (1 << 7), /* AWRE */
Douglas Gilbert00ac37f2005-10-28 15:58:28 -040083 0, /* read retry count */
84 0, 0, 0, 0,
85 0, /* write retry count */
86 0, 0, 0
87};
88
89static const u8 def_cache_mpage[CACHE_MPAGE_LEN] = {
90 CACHE_MPAGE,
91 CACHE_MPAGE_LEN - 2,
92 0, /* contains WCE, needs to be 0 for logic */
93 0, 0, 0, 0, 0, 0, 0, 0, 0,
94 0, /* contains DRA, needs to be 0 for logic */
95 0, 0, 0, 0, 0, 0, 0
96};
97
98static const u8 def_control_mpage[CONTROL_MPAGE_LEN] = {
99 CONTROL_MPAGE,
100 CONTROL_MPAGE_LEN - 2,
101 2, /* DSENSE=0, GLTSD=1 */
102 0, /* [QAM+QERR may be 1, see 05-359r1] */
103 0, 0, 0, 0, 0xff, 0xff,
104 0, 30 /* extended self test time, see 05-359r1 */
105};
106
Tejun Heo30afc842006-03-18 18:40:14 +0900107/*
108 * libata transport template. libata doesn't do real transport stuff.
109 * It just needs the eh_timed_out hook.
110 */
Tejun Heof3187192007-04-17 23:44:07 +0900111static struct scsi_transport_template ata_scsi_transport_template = {
Christoph Hellwig9227c332006-04-01 19:21:04 +0200112 .eh_strategy_handler = ata_scsi_error,
Tejun Heo30afc842006-03-18 18:40:14 +0900113 .eh_timed_out = ata_scsi_timed_out,
Tejun Heoccf68c32006-05-31 18:28:09 +0900114 .user_scan = ata_scsi_user_scan,
Tejun Heo30afc842006-03-18 18:40:14 +0900115};
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400118static const struct {
119 enum link_pm value;
120 const char *name;
121} link_pm_policy[] = {
122 { NOT_AVAILABLE, "max_performance" },
123 { MIN_POWER, "min_power" },
124 { MAX_PERFORMANCE, "max_performance" },
125 { MEDIUM_POWER, "medium_power" },
126};
127
Adrian Bunka2d6ed12007-10-31 00:50:23 +0100128static const char *ata_scsi_lpm_get(enum link_pm policy)
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400129{
130 int i;
131
132 for (i = 0; i < ARRAY_SIZE(link_pm_policy); i++)
133 if (link_pm_policy[i].value == policy)
134 return link_pm_policy[i].name;
135
136 return NULL;
137}
138
Tony Jonesee959b02008-02-22 00:13:36 +0100139static ssize_t ata_scsi_lpm_put(struct device *dev,
140 struct device_attribute *attr,
141 const char *buf, size_t count)
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400142{
Tony Jonesee959b02008-02-22 00:13:36 +0100143 struct Scsi_Host *shost = class_to_shost(dev);
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400144 struct ata_port *ap = ata_shost_to_port(shost);
145 enum link_pm policy = 0;
146 int i;
147
148 /*
149 * we are skipping array location 0 on purpose - this
150 * is because a value of NOT_AVAILABLE is displayed
151 * to the user as max_performance, but when the user
152 * writes "max_performance", they actually want the
153 * value to match MAX_PERFORMANCE.
154 */
155 for (i = 1; i < ARRAY_SIZE(link_pm_policy); i++) {
156 const int len = strlen(link_pm_policy[i].name);
Matthew Garrett6a744632009-11-17 11:09:03 -0500157 if (strncmp(link_pm_policy[i].name, buf, len) == 0) {
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400158 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
169static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100170ata_scsi_lpm_show(struct device *dev, struct device_attribute *attr, char *buf)
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400171{
Tony Jonesee959b02008-02-22 00:13:36 +0100172 struct Scsi_Host *shost = class_to_shost(dev);
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400173 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 Jonesee959b02008-02-22 00:13:36 +0100182DEVICE_ATTR(link_power_management_policy, S_IRUGO | S_IWUSR,
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400183 ata_scsi_lpm_show, ata_scsi_lpm_put);
Tony Jonesee959b02008-02-22 00:13:36 +0100184EXPORT_SYMBOL_GPL(dev_attr_link_power_management_policy);
Kristen Carlson Accardica773292007-10-25 00:58:59 -0400185
Elias Oltmanns45fabbb2008-09-21 11:54:08 +0200186static ssize_t ata_scsi_park_show(struct device *device,
187 struct device_attribute *attr, char *buf)
188{
189 struct scsi_device *sdev = to_scsi_device(device);
190 struct ata_port *ap;
191 struct ata_link *link;
192 struct ata_device *dev;
Elias Oltmannsa4641892008-11-03 19:01:08 +0900193 unsigned long flags, now;
Elias Oltmanns45fabbb2008-09-21 11:54:08 +0200194 unsigned int uninitialized_var(msecs);
195 int rc = 0;
196
197 ap = ata_shost_to_port(sdev->host);
198
199 spin_lock_irqsave(ap->lock, flags);
200 dev = ata_scsi_find_dev(ap, sdev);
201 if (!dev) {
202 rc = -ENODEV;
203 goto unlock;
204 }
205 if (dev->flags & ATA_DFLAG_NO_UNLOAD) {
206 rc = -EOPNOTSUPP;
207 goto unlock;
208 }
209
210 link = dev->link;
Elias Oltmannsa4641892008-11-03 19:01:08 +0900211 now = jiffies;
Elias Oltmanns45fabbb2008-09-21 11:54:08 +0200212 if (ap->pflags & ATA_PFLAG_EH_IN_PROGRESS &&
213 link->eh_context.unloaded_mask & (1 << dev->devno) &&
Elias Oltmannsa4641892008-11-03 19:01:08 +0900214 time_after(dev->unpark_deadline, now))
215 msecs = jiffies_to_msecs(dev->unpark_deadline - now);
Elias Oltmanns45fabbb2008-09-21 11:54:08 +0200216 else
217 msecs = 0;
218
219unlock:
220 spin_unlock_irq(ap->lock);
221
222 return rc ? rc : snprintf(buf, 20, "%u\n", msecs);
223}
224
225static ssize_t ata_scsi_park_store(struct device *device,
226 struct device_attribute *attr,
227 const char *buf, size_t len)
228{
229 struct scsi_device *sdev = to_scsi_device(device);
230 struct ata_port *ap;
231 struct ata_device *dev;
232 long int input;
233 unsigned long flags;
234 int rc;
235
236 rc = strict_strtol(buf, 10, &input);
237 if (rc || input < -2)
238 return -EINVAL;
239 if (input > ATA_TMOUT_MAX_PARK) {
240 rc = -EOVERFLOW;
241 input = ATA_TMOUT_MAX_PARK;
242 }
243
244 ap = ata_shost_to_port(sdev->host);
245
246 spin_lock_irqsave(ap->lock, flags);
247 dev = ata_scsi_find_dev(ap, sdev);
248 if (unlikely(!dev)) {
249 rc = -ENODEV;
250 goto unlock;
251 }
252 if (dev->class != ATA_DEV_ATA) {
253 rc = -EOPNOTSUPP;
254 goto unlock;
255 }
256
257 if (input >= 0) {
258 if (dev->flags & ATA_DFLAG_NO_UNLOAD) {
259 rc = -EOPNOTSUPP;
260 goto unlock;
261 }
262
263 dev->unpark_deadline = ata_deadline(jiffies, input);
264 dev->link->eh_info.dev_action[dev->devno] |= ATA_EH_PARK;
265 ata_port_schedule_eh(ap);
266 complete(&ap->park_req_pending);
267 } else {
268 switch (input) {
269 case -1:
270 dev->flags &= ~ATA_DFLAG_NO_UNLOAD;
271 break;
272 case -2:
273 dev->flags |= ATA_DFLAG_NO_UNLOAD;
274 break;
275 }
276 }
277unlock:
278 spin_unlock_irqrestore(ap->lock, flags);
279
280 return rc ? rc : len;
281}
282DEVICE_ATTR(unload_heads, S_IRUGO | S_IWUSR,
283 ata_scsi_park_show, ata_scsi_park_store);
284EXPORT_SYMBOL_GPL(dev_attr_unload_heads);
285
Tejun Heof0761be2008-04-28 17:16:52 +0900286static void ata_scsi_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq)
287{
288 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
289
290 scsi_build_sense_buffer(0, cmd->sense_buffer, sk, asc, ascq);
291}
292
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700293static ssize_t
294ata_scsi_em_message_store(struct device *dev, struct device_attribute *attr,
295 const char *buf, size_t count)
296{
297 struct Scsi_Host *shost = class_to_shost(dev);
298 struct ata_port *ap = ata_shost_to_port(shost);
299 if (ap->ops->em_store && (ap->flags & ATA_FLAG_EM))
300 return ap->ops->em_store(ap, buf, count);
301 return -EINVAL;
302}
303
304static ssize_t
305ata_scsi_em_message_show(struct device *dev, struct device_attribute *attr,
306 char *buf)
307{
308 struct Scsi_Host *shost = class_to_shost(dev);
309 struct ata_port *ap = ata_shost_to_port(shost);
310
311 if (ap->ops->em_show && (ap->flags & ATA_FLAG_EM))
312 return ap->ops->em_show(ap, buf);
313 return -EINVAL;
314}
Vitaly Mayatskikhea7a5ed2009-05-04 15:48:45 +0200315DEVICE_ATTR(em_message, S_IRUGO | S_IWUSR,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700316 ata_scsi_em_message_show, ata_scsi_em_message_store);
317EXPORT_SYMBOL_GPL(dev_attr_em_message);
318
319static ssize_t
320ata_scsi_em_message_type_show(struct device *dev, struct device_attribute *attr,
321 char *buf)
322{
323 struct Scsi_Host *shost = class_to_shost(dev);
324 struct ata_port *ap = ata_shost_to_port(shost);
325
326 return snprintf(buf, 23, "%d\n", ap->em_message_type);
327}
328DEVICE_ATTR(em_message_type, S_IRUGO,
329 ata_scsi_em_message_type_show, NULL);
330EXPORT_SYMBOL_GPL(dev_attr_em_message_type);
331
332static ssize_t
333ata_scsi_activity_show(struct device *dev, struct device_attribute *attr,
334 char *buf)
335{
336 struct scsi_device *sdev = to_scsi_device(dev);
337 struct ata_port *ap = ata_shost_to_port(sdev->host);
338 struct ata_device *atadev = ata_scsi_find_dev(ap, sdev);
339
340 if (ap->ops->sw_activity_show && (ap->flags & ATA_FLAG_SW_ACTIVITY))
341 return ap->ops->sw_activity_show(atadev, buf);
342 return -EINVAL;
343}
344
345static ssize_t
346ata_scsi_activity_store(struct device *dev, struct device_attribute *attr,
347 const char *buf, size_t count)
348{
349 struct scsi_device *sdev = to_scsi_device(dev);
350 struct ata_port *ap = ata_shost_to_port(sdev->host);
351 struct ata_device *atadev = ata_scsi_find_dev(ap, sdev);
352 enum sw_activity val;
353 int rc;
354
355 if (ap->ops->sw_activity_store && (ap->flags & ATA_FLAG_SW_ACTIVITY)) {
356 val = simple_strtoul(buf, NULL, 0);
357 switch (val) {
358 case OFF: case BLINK_ON: case BLINK_OFF:
359 rc = ap->ops->sw_activity_store(atadev, val);
360 if (!rc)
361 return count;
362 else
363 return rc;
364 }
365 }
366 return -EINVAL;
367}
Vitaly Mayatskikhea7a5ed2009-05-04 15:48:45 +0200368DEVICE_ATTR(sw_activity, S_IWUSR | S_IRUGO, ata_scsi_activity_show,
Kristen Carlson Accardi18f7ba42008-06-03 10:33:55 -0700369 ata_scsi_activity_store);
370EXPORT_SYMBOL_GPL(dev_attr_sw_activity);
371
Elias Oltmanns45fabbb2008-09-21 11:54:08 +0200372struct device_attribute *ata_common_sdev_attrs[] = {
373 &dev_attr_unload_heads,
374 NULL
375};
376EXPORT_SYMBOL_GPL(ata_common_sdev_attrs);
377
Douglas Gilbertae006512005-10-09 09:09:35 -0400378static void ata_scsi_invalid_field(struct scsi_cmnd *cmd,
379 void (*done)(struct scsi_cmnd *))
380{
381 ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, 0x24, 0x0);
382 /* "Invalid field in cbd" */
383 done(cmd);
384}
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386/**
387 * ata_std_bios_param - generic bios head/sector/cylinder calculator used by sd.
388 * @sdev: SCSI device for which BIOS geometry is to be determined
389 * @bdev: block device associated with @sdev
390 * @capacity: capacity of SCSI device
391 * @geom: location to which geometry will be output
392 *
393 * Generic bios head/sector/cylinder calculator
394 * used by sd. Most BIOSes nowadays expect a XXX/255/16 (CHS)
395 * mapping. Some situations may arise where the disk is not
396 * bootable if this is not used.
397 *
398 * LOCKING:
399 * Defined by the SCSI layer. We don't really care.
400 *
401 * RETURNS:
402 * Zero.
403 */
404int ata_std_bios_param(struct scsi_device *sdev, struct block_device *bdev,
405 sector_t capacity, int geom[])
406{
407 geom[0] = 255;
408 geom[1] = 63;
409 sector_div(capacity, 255*63);
410 geom[2] = capacity;
411
412 return 0;
413}
414
Jeff Garzikb0955182005-05-12 15:45:22 -0400415/**
Tejun Heo5924b742007-01-02 20:20:07 +0900416 * ata_get_identity - Handler for HDIO_GET_IDENTITY ioctl
Randy Dunlap5eb66fe2009-01-20 16:28:59 -0800417 * @ap: target port
Tejun Heo5924b742007-01-02 20:20:07 +0900418 * @sdev: SCSI device to get identify data for
419 * @arg: User buffer area for identify data
420 *
421 * LOCKING:
422 * Defined by the SCSI layer. We don't really care.
423 *
424 * RETURNS:
425 * Zero on success, negative errno on error.
426 */
Jeff Garzik94be9a52009-01-16 10:17:09 -0500427static int ata_get_identity(struct ata_port *ap, struct scsi_device *sdev,
428 void __user *arg)
Tejun Heo5924b742007-01-02 20:20:07 +0900429{
Tejun Heo5924b742007-01-02 20:20:07 +0900430 struct ata_device *dev = ata_scsi_find_dev(ap, sdev);
431 u16 __user *dst = arg;
432 char buf[40];
433
434 if (!dev)
435 return -ENOMSG;
436
437 if (copy_to_user(dst, dev->id, ATA_ID_WORDS * sizeof(u16)))
438 return -EFAULT;
439
440 ata_id_string(dev->id, buf, ATA_ID_PROD, ATA_ID_PROD_LEN);
441 if (copy_to_user(dst + ATA_ID_PROD, buf, ATA_ID_PROD_LEN))
442 return -EFAULT;
443
444 ata_id_string(dev->id, buf, ATA_ID_FW_REV, ATA_ID_FW_REV_LEN);
445 if (copy_to_user(dst + ATA_ID_FW_REV, buf, ATA_ID_FW_REV_LEN))
446 return -EFAULT;
447
448 ata_id_string(dev->id, buf, ATA_ID_SERNO, ATA_ID_SERNO_LEN);
449 if (copy_to_user(dst + ATA_ID_SERNO, buf, ATA_ID_SERNO_LEN))
450 return -EFAULT;
451
452 return 0;
453}
454
455/**
Jeff Garzikb0955182005-05-12 15:45:22 -0400456 * ata_cmd_ioctl - Handler for HDIO_DRIVE_CMD ioctl
Randy Dunlap8e8b77d2005-11-01 21:29:27 -0800457 * @scsidev: Device to which we are issuing command
Jeff Garzikb0955182005-05-12 15:45:22 -0400458 * @arg: User provided data for issuing command
459 *
460 * LOCKING:
461 * Defined by the SCSI layer. We don't really care.
462 *
463 * RETURNS:
464 * Zero on success, negative errno on error.
465 */
Jeff Garzikb0955182005-05-12 15:45:22 -0400466int ata_cmd_ioctl(struct scsi_device *scsidev, void __user *arg)
467{
468 int rc = 0;
469 u8 scsi_cmd[MAX_COMMAND_SIZE];
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700470 u8 args[4], *argbuf = NULL, *sensebuf = NULL;
Jeff Garzikb0955182005-05-12 15:45:22 -0400471 int argsize = 0;
Mike Christie85837eb2005-11-11 16:38:53 -0600472 enum dma_data_direction data_dir;
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700473 int cmd_result;
Jeff Garzikb0955182005-05-12 15:45:22 -0400474
Randy Dunlapc893a3a2006-01-28 13:15:32 -0500475 if (arg == NULL)
Jeff Garzikb0955182005-05-12 15:45:22 -0400476 return -EINVAL;
477
478 if (copy_from_user(args, arg, sizeof(args)))
479 return -EFAULT;
480
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700481 sensebuf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
482 if (!sensebuf)
483 return -ENOMEM;
484
Jeff Garzikb0955182005-05-12 15:45:22 -0400485 memset(scsi_cmd, 0, sizeof(scsi_cmd));
486
487 if (args[3]) {
488 argsize = SECTOR_SIZE * args[3];
489 argbuf = kmalloc(argsize, GFP_KERNEL);
Jeff Raubitschek54dac832005-10-04 10:21:19 -0400490 if (argbuf == NULL) {
491 rc = -ENOMEM;
492 goto error;
493 }
Jeff Garzikb0955182005-05-12 15:45:22 -0400494
495 scsi_cmd[1] = (4 << 1); /* PIO Data-in */
496 scsi_cmd[2] = 0x0e; /* no off.line or cc, read from dev,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400497 block count in sector count field */
Mike Christie85837eb2005-11-11 16:38:53 -0600498 data_dir = DMA_FROM_DEVICE;
Jeff Garzikb0955182005-05-12 15:45:22 -0400499 } else {
500 scsi_cmd[1] = (3 << 1); /* Non-data */
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700501 scsi_cmd[2] = 0x20; /* cc but no off.line or data xfer */
Mike Christie85837eb2005-11-11 16:38:53 -0600502 data_dir = DMA_NONE;
Jeff Garzikb0955182005-05-12 15:45:22 -0400503 }
504
505 scsi_cmd[0] = ATA_16;
506
507 scsi_cmd[4] = args[2];
Bartlomiej Zolnierkiewicza4f19042008-10-10 22:39:20 +0200508 if (args[0] == ATA_CMD_SMART) { /* hack -- ide driver does this too */
Jeff Garzikb0955182005-05-12 15:45:22 -0400509 scsi_cmd[6] = args[3];
510 scsi_cmd[8] = args[1];
511 scsi_cmd[10] = 0x4f;
512 scsi_cmd[12] = 0xc2;
513 } else {
514 scsi_cmd[6] = args[1];
515 }
516 scsi_cmd[14] = args[0];
517
518 /* Good values for timeout and retries? Values below
519 from scsi_ioctl_send_command() for default case... */
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700520 cmd_result = scsi_execute(scsidev, scsi_cmd, data_dir, argbuf, argsize,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900521 sensebuf, (10*HZ), 5, 0, NULL);
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700522
523 if (driver_byte(cmd_result) == DRIVER_SENSE) {/* sense data available */
524 u8 *desc = sensebuf + 8;
525 cmd_result &= ~(0xFF<<24); /* DRIVER_SENSE is not an error */
526
527 /* If we set cc then ATA pass-through will cause a
528 * check condition even if no error. Filter that. */
529 if (cmd_result & SAM_STAT_CHECK_CONDITION) {
530 struct scsi_sense_hdr sshdr;
531 scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE,
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400532 &sshdr);
533 if (sshdr.sense_key == 0 &&
534 sshdr.asc == 0 && sshdr.ascq == 0)
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700535 cmd_result &= ~SAM_STAT_CHECK_CONDITION;
536 }
537
538 /* Send userspace a few ATA registers (same as drivers/ide) */
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400539 if (sensebuf[0] == 0x72 && /* format is "descriptor" */
540 desc[0] == 0x09) { /* code is "ATA Descriptor" */
541 args[0] = desc[13]; /* status */
542 args[1] = desc[3]; /* error */
543 args[2] = desc[5]; /* sector count (0:7) */
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700544 if (copy_to_user(arg, args, sizeof(args)))
545 rc = -EFAULT;
546 }
547 }
548
549
550 if (cmd_result) {
Jeff Garzikb0955182005-05-12 15:45:22 -0400551 rc = -EIO;
552 goto error;
553 }
554
Jeff Garzikb0955182005-05-12 15:45:22 -0400555 if ((argbuf)
Randy Dunlapc893a3a2006-01-28 13:15:32 -0500556 && copy_to_user(arg + sizeof(args), argbuf, argsize))
Jeff Garzikb0955182005-05-12 15:45:22 -0400557 rc = -EFAULT;
558error:
Eran Tromerbbe1fe72006-10-10 14:29:25 -0700559 kfree(sensebuf);
Jesper Juhl8f760782006-06-27 02:55:06 -0700560 kfree(argbuf);
Jeff Garzikb0955182005-05-12 15:45:22 -0400561 return rc;
562}
563
564/**
565 * ata_task_ioctl - Handler for HDIO_DRIVE_TASK ioctl
Randy Dunlap8e8b77d2005-11-01 21:29:27 -0800566 * @scsidev: Device to which we are issuing command
Jeff Garzikb0955182005-05-12 15:45:22 -0400567 * @arg: User provided data for issuing command
568 *
569 * LOCKING:
570 * Defined by the SCSI layer. We don't really care.
571 *
572 * RETURNS:
573 * Zero on success, negative errno on error.
574 */
575int ata_task_ioctl(struct scsi_device *scsidev, void __user *arg)
576{
577 int rc = 0;
578 u8 scsi_cmd[MAX_COMMAND_SIZE];
David Milburnaf068bd2007-01-30 00:59:15 -0800579 u8 args[7], *sensebuf = NULL;
580 int cmd_result;
Jeff Garzikb0955182005-05-12 15:45:22 -0400581
Randy Dunlapc893a3a2006-01-28 13:15:32 -0500582 if (arg == NULL)
Jeff Garzikb0955182005-05-12 15:45:22 -0400583 return -EINVAL;
584
585 if (copy_from_user(args, arg, sizeof(args)))
586 return -EFAULT;
587
David Milburnaf068bd2007-01-30 00:59:15 -0800588 sensebuf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
589 if (!sensebuf)
590 return -ENOMEM;
591
Jeff Garzikb0955182005-05-12 15:45:22 -0400592 memset(scsi_cmd, 0, sizeof(scsi_cmd));
593 scsi_cmd[0] = ATA_16;
594 scsi_cmd[1] = (3 << 1); /* Non-data */
David Milburnaf068bd2007-01-30 00:59:15 -0800595 scsi_cmd[2] = 0x20; /* cc but no off.line or data xfer */
Jeff Garzikb0955182005-05-12 15:45:22 -0400596 scsi_cmd[4] = args[1];
597 scsi_cmd[6] = args[2];
598 scsi_cmd[8] = args[3];
599 scsi_cmd[10] = args[4];
600 scsi_cmd[12] = args[5];
Mark Lord277239f2007-03-30 17:45:52 -0400601 scsi_cmd[13] = args[6] & 0x4f;
Jeff Garzikb0955182005-05-12 15:45:22 -0400602 scsi_cmd[14] = args[0];
603
Jeff Garzikb0955182005-05-12 15:45:22 -0400604 /* Good values for timeout and retries? Values below
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500605 from scsi_ioctl_send_command() for default case... */
David Milburnaf068bd2007-01-30 00:59:15 -0800606 cmd_result = scsi_execute(scsidev, scsi_cmd, DMA_NONE, NULL, 0,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900607 sensebuf, (10*HZ), 5, 0, NULL);
Jeff Garzikb0955182005-05-12 15:45:22 -0400608
David Milburnaf068bd2007-01-30 00:59:15 -0800609 if (driver_byte(cmd_result) == DRIVER_SENSE) {/* sense data available */
610 u8 *desc = sensebuf + 8;
611 cmd_result &= ~(0xFF<<24); /* DRIVER_SENSE is not an error */
612
613 /* If we set cc then ATA pass-through will cause a
614 * check condition even if no error. Filter that. */
615 if (cmd_result & SAM_STAT_CHECK_CONDITION) {
616 struct scsi_sense_hdr sshdr;
617 scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE,
618 &sshdr);
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400619 if (sshdr.sense_key == 0 &&
620 sshdr.asc == 0 && sshdr.ascq == 0)
David Milburnaf068bd2007-01-30 00:59:15 -0800621 cmd_result &= ~SAM_STAT_CHECK_CONDITION;
622 }
623
624 /* Send userspace ATA registers */
625 if (sensebuf[0] == 0x72 && /* format is "descriptor" */
626 desc[0] == 0x09) {/* code is "ATA Descriptor" */
627 args[0] = desc[13]; /* status */
628 args[1] = desc[3]; /* error */
629 args[2] = desc[5]; /* sector count (0:7) */
630 args[3] = desc[7]; /* lbal */
631 args[4] = desc[9]; /* lbam */
632 args[5] = desc[11]; /* lbah */
633 args[6] = desc[12]; /* select */
634 if (copy_to_user(arg, args, sizeof(args)))
635 rc = -EFAULT;
636 }
637 }
638
639 if (cmd_result) {
640 rc = -EIO;
641 goto error;
642 }
643
644 error:
645 kfree(sensebuf);
Jeff Garzikb0955182005-05-12 15:45:22 -0400646 return rc;
647}
648
Alan Coxe3cf95d2009-04-09 17:31:17 +0100649static int ata_ioc32(struct ata_port *ap)
650{
651 if (ap->flags & ATA_FLAG_PIO_DMA)
652 return 1;
653 if (ap->pflags & ATA_PFLAG_PIO32)
654 return 1;
655 return 0;
656}
657
Jeff Garzik94be9a52009-01-16 10:17:09 -0500658int ata_sas_scsi_ioctl(struct ata_port *ap, struct scsi_device *scsidev,
659 int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 int val = -EINVAL, rc = -EINVAL;
Alan Coxe3cf95d2009-04-09 17:31:17 +0100662 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 switch (cmd) {
665 case ATA_IOC_GET_IO32:
Alan Coxe3cf95d2009-04-09 17:31:17 +0100666 spin_lock_irqsave(ap->lock, flags);
667 val = ata_ioc32(ap);
668 spin_unlock_irqrestore(ap->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (copy_to_user(arg, &val, 1))
670 return -EFAULT;
671 return 0;
672
673 case ATA_IOC_SET_IO32:
674 val = (unsigned long) arg;
Alan Coxe3cf95d2009-04-09 17:31:17 +0100675 rc = 0;
676 spin_lock_irqsave(ap->lock, flags);
677 if (ap->pflags & ATA_PFLAG_PIO32CHANGE) {
678 if (val)
679 ap->pflags |= ATA_PFLAG_PIO32;
680 else
681 ap->pflags &= ~ATA_PFLAG_PIO32;
682 } else {
683 if (val != ata_ioc32(ap))
684 rc = -EINVAL;
685 }
686 spin_unlock_irqrestore(ap->lock, flags);
687 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Tejun Heo5924b742007-01-02 20:20:07 +0900689 case HDIO_GET_IDENTITY:
Jeff Garzik94be9a52009-01-16 10:17:09 -0500690 return ata_get_identity(ap, scsidev, arg);
Tejun Heo5924b742007-01-02 20:20:07 +0900691
Jeff Garzikb0955182005-05-12 15:45:22 -0400692 case HDIO_DRIVE_CMD:
693 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
694 return -EACCES;
695 return ata_cmd_ioctl(scsidev, arg);
696
697 case HDIO_DRIVE_TASK:
698 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
699 return -EACCES;
700 return ata_task_ioctl(scsidev, arg);
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 default:
703 rc = -ENOTTY;
704 break;
705 }
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return rc;
708}
Jeff Garzik94be9a52009-01-16 10:17:09 -0500709EXPORT_SYMBOL_GPL(ata_sas_scsi_ioctl);
710
711int ata_scsi_ioctl(struct scsi_device *scsidev, int cmd, void __user *arg)
712{
713 return ata_sas_scsi_ioctl(ata_shost_to_port(scsidev->host),
714 scsidev, cmd, arg);
715}
716EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718/**
719 * ata_scsi_qc_new - acquire new ata_queued_cmd reference
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 * @dev: ATA device to which the new command is attached
721 * @cmd: SCSI command that originated this ATA command
722 * @done: SCSI command completion function
723 *
724 * Obtain a reference to an unused ata_queued_cmd structure,
725 * which is the basic libata structure representing a single
726 * ATA command sent to the hardware.
727 *
728 * If a command was available, fill in the SCSI-specific
729 * portions of the structure with information on the
730 * current command.
731 *
732 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400733 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 *
735 * RETURNS:
736 * Command allocated, or %NULL if none available.
737 */
Adrian Bunk7102d232007-01-04 00:09:36 +0100738static struct ata_queued_cmd *ata_scsi_qc_new(struct ata_device *dev,
739 struct scsi_cmnd *cmd,
740 void (*done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 struct ata_queued_cmd *qc;
743
Tejun Heo8a8bc222008-11-10 14:48:21 +0900744 qc = ata_qc_new_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (qc) {
746 qc->scsicmd = cmd;
747 qc->scsidone = done;
748
Tejun Heoff2aeb12007-12-05 16:43:11 +0900749 qc->sg = scsi_sglist(cmd);
Boaz Harrosh71201652007-09-18 17:48:50 +0200750 qc->n_elem = scsi_sg_count(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 } else {
752 cmd->result = (DID_OK << 16) | (QUEUE_FULL << 1);
753 done(cmd);
754 }
755
756 return qc;
757}
758
Tejun Heoaacda372008-03-18 17:47:43 +0900759static void ata_qc_set_pc_nbytes(struct ata_queued_cmd *qc)
760{
761 struct scsi_cmnd *scmd = qc->scsicmd;
762
763 qc->extrabytes = scmd->request->extra_len;
764 qc->nbytes = scsi_bufflen(scmd) + qc->extrabytes;
765}
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767/**
Jeff Garzikb0955182005-05-12 15:45:22 -0400768 * ata_dump_status - user friendly display of error info
769 * @id: id of the port in question
770 * @tf: ptr to filled out taskfile
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 *
Jeff Garzikb0955182005-05-12 15:45:22 -0400772 * Decode and dump the ATA error/status registers for the user so
773 * that they have some idea what really happened at the non
774 * make-believe layer.
775 *
776 * LOCKING:
777 * inherited from caller
778 */
Adrian Bunk7102d232007-01-04 00:09:36 +0100779static void ata_dump_status(unsigned id, struct ata_taskfile *tf)
Jeff Garzikb0955182005-05-12 15:45:22 -0400780{
781 u8 stat = tf->command, err = tf->feature;
782
783 printk(KERN_WARNING "ata%u: status=0x%02x { ", id, stat);
784 if (stat & ATA_BUSY) {
785 printk("Busy }\n"); /* Data is not valid in this case */
786 } else {
787 if (stat & 0x40) printk("DriveReady ");
788 if (stat & 0x20) printk("DeviceFault ");
789 if (stat & 0x10) printk("SeekComplete ");
790 if (stat & 0x08) printk("DataRequest ");
791 if (stat & 0x04) printk("CorrectedError ");
792 if (stat & 0x02) printk("Index ");
793 if (stat & 0x01) printk("Error ");
794 printk("}\n");
795
796 if (err) {
797 printk(KERN_WARNING "ata%u: error=0x%02x { ", id, err);
798 if (err & 0x04) printk("DriveStatusError ");
799 if (err & 0x80) {
800 if (err & 0x04) printk("BadCRC ");
801 else printk("Sector ");
802 }
803 if (err & 0x40) printk("UncorrectableError ");
804 if (err & 0x10) printk("SectorIdNotFound ");
805 if (err & 0x02) printk("TrackZeroNotFound ");
806 if (err & 0x01) printk("AddrMarkNotFound ");
807 printk("}\n");
808 }
809 }
810}
811
812/**
813 * ata_to_sense_error - convert ATA error to SCSI error
Randy Dunlap8e8b77d2005-11-01 21:29:27 -0800814 * @id: ATA device number
Jeff Garzikb0955182005-05-12 15:45:22 -0400815 * @drv_stat: value contained in ATA status register
816 * @drv_err: value contained in ATA error register
817 * @sk: the sense key we'll fill out
818 * @asc: the additional sense code we'll fill out
819 * @ascq: the additional sense code qualifier we'll fill out
Tejun Heo246619d2006-05-15 20:58:16 +0900820 * @verbose: be verbose
Jeff Garzikb0955182005-05-12 15:45:22 -0400821 *
822 * Converts an ATA error into a SCSI error. Fill out pointers to
823 * SK, ASC, and ASCQ bytes for later use in fixed or descriptor
824 * format sense blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 *
826 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -0400827 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 */
Adrian Bunk7102d232007-01-04 00:09:36 +0100829static void ata_to_sense_error(unsigned id, u8 drv_stat, u8 drv_err, u8 *sk,
830 u8 *asc, u8 *ascq, int verbose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Jeff Garzikb0955182005-05-12 15:45:22 -0400832 int i;
Jeff Garzikffe75ef2005-10-09 10:40:44 -0400833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 /* Based on the 3ware driver translation table */
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100835 static const unsigned char sense_table[][4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /* BBD|ECC|ID|MAR */
837 {0xd1, ABORTED_COMMAND, 0x00, 0x00}, // Device busy Aborted command
838 /* BBD|ECC|ID */
839 {0xd0, ABORTED_COMMAND, 0x00, 0x00}, // Device busy Aborted command
840 /* ECC|MC|MARK */
841 {0x61, HARDWARE_ERROR, 0x00, 0x00}, // Device fault Hardware error
842 /* ICRC|ABRT */ /* NB: ICRC & !ABRT is BBD */
843 {0x84, ABORTED_COMMAND, 0x47, 0x00}, // Data CRC error SCSI parity error
844 /* MC|ID|ABRT|TRK0|MARK */
845 {0x37, NOT_READY, 0x04, 0x00}, // Unit offline Not ready
846 /* MCR|MARK */
847 {0x09, NOT_READY, 0x04, 0x00}, // Unrecovered disk error Not ready
848 /* Bad address mark */
849 {0x01, MEDIUM_ERROR, 0x13, 0x00}, // Address mark not found Address mark not found for data field
850 /* TRK0 */
851 {0x02, HARDWARE_ERROR, 0x00, 0x00}, // Track 0 not found Hardware error
852 /* Abort & !ICRC */
853 {0x04, ABORTED_COMMAND, 0x00, 0x00}, // Aborted command Aborted command
854 /* Media change request */
855 {0x08, NOT_READY, 0x04, 0x00}, // Media change request FIXME: faking offline
856 /* SRV */
857 {0x10, ABORTED_COMMAND, 0x14, 0x00}, // ID not found Recorded entity not found
858 /* Media change */
859 {0x08, NOT_READY, 0x04, 0x00}, // Media change FIXME: faking offline
860 /* ECC */
861 {0x40, MEDIUM_ERROR, 0x11, 0x04}, // Uncorrectable ECC error Unrecovered read error
862 /* BBD - block marked bad */
863 {0x80, MEDIUM_ERROR, 0x11, 0x04}, // Block marked bad Medium error, unrecovered read error
864 {0xFF, 0xFF, 0xFF, 0xFF}, // END mark
865 };
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100866 static const unsigned char stat_table[][4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /* Must be first because BUSY means no other bits valid */
868 {0x80, ABORTED_COMMAND, 0x47, 0x00}, // Busy, fake parity for now
869 {0x20, HARDWARE_ERROR, 0x00, 0x00}, // Device fault
870 {0x08, ABORTED_COMMAND, 0x47, 0x00}, // Timed out in xfer, fake parity for now
871 {0x04, RECOVERED_ERROR, 0x11, 0x00}, // Recovered ECC error Medium error, recovered
872 {0xFF, 0xFF, 0xFF, 0xFF}, // END mark
873 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 /*
876 * Is this an error we can process/parse
877 */
Jeff Garzikb0955182005-05-12 15:45:22 -0400878 if (drv_stat & ATA_BUSY) {
879 drv_err = 0; /* Ignore the err bits, they're invalid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Jeff Garzikb0955182005-05-12 15:45:22 -0400882 if (drv_err) {
883 /* Look for drv_err */
884 for (i = 0; sense_table[i][0] != 0xFF; i++) {
885 /* Look for best matches first */
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500886 if ((sense_table[i][0] & drv_err) ==
Jeff Garzikb0955182005-05-12 15:45:22 -0400887 sense_table[i][0]) {
888 *sk = sense_table[i][1];
889 *asc = sense_table[i][2];
890 *ascq = sense_table[i][3];
891 goto translate_done;
892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
Jeff Garzikb0955182005-05-12 15:45:22 -0400894 /* No immediate match */
Tejun Heo246619d2006-05-15 20:58:16 +0900895 if (verbose)
896 printk(KERN_WARNING "ata%u: no sense translation for "
897 "error 0x%02x\n", id, drv_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /* Fall back to interpreting status bits */
Jeff Garzikb0955182005-05-12 15:45:22 -0400901 for (i = 0; stat_table[i][0] != 0xFF; i++) {
902 if (stat_table[i][0] & drv_stat) {
903 *sk = stat_table[i][1];
904 *asc = stat_table[i][2];
905 *ascq = stat_table[i][3];
906 goto translate_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
Jeff Garzikb0955182005-05-12 15:45:22 -0400909 /* No error? Undecoded? */
Tejun Heo246619d2006-05-15 20:58:16 +0900910 if (verbose)
911 printk(KERN_WARNING "ata%u: no sense translation for "
912 "status: 0x%02x\n", id, drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Alan Cox2d202022006-03-21 15:53:46 +0000914 /* We need a sensible error return here, which is tricky, and one
915 that won't cause people to do things like return a disk wrongly */
916 *sk = ABORTED_COMMAND;
917 *asc = 0x00;
918 *ascq = 0x00;
Jeff Garzikb0955182005-05-12 15:45:22 -0400919
920 translate_done:
Tejun Heo246619d2006-05-15 20:58:16 +0900921 if (verbose)
922 printk(KERN_ERR "ata%u: translated ATA stat/err 0x%02x/%02x "
923 "to SCSI SK/ASC/ASCQ 0x%x/%02x/%02x\n",
924 id, drv_stat, drv_err, *sk, *asc, *ascq);
Jeff Garzikb0955182005-05-12 15:45:22 -0400925 return;
926}
927
928/*
Tejun Heo750426a2006-11-14 22:37:35 +0900929 * ata_gen_passthru_sense - Generate check condition sense block.
Jeff Garzikb0955182005-05-12 15:45:22 -0400930 * @qc: Command that completed.
931 *
932 * This function is specific to the ATA descriptor format sense
933 * block specified for the ATA pass through commands. Regardless
934 * of whether the command errored or not, return a sense
935 * block. Copy all controller registers into the sense
936 * block. Clear sense key, ASC & ASCQ if there is no error.
937 *
938 * LOCKING:
Tejun Heo750426a2006-11-14 22:37:35 +0900939 * None.
Jeff Garzikb0955182005-05-12 15:45:22 -0400940 */
Tejun Heo750426a2006-11-14 22:37:35 +0900941static void ata_gen_passthru_sense(struct ata_queued_cmd *qc)
Jeff Garzikb0955182005-05-12 15:45:22 -0400942{
943 struct scsi_cmnd *cmd = qc->scsicmd;
Tejun Heoe61e0672006-05-15 20:57:40 +0900944 struct ata_taskfile *tf = &qc->result_tf;
Jeff Garzikb0955182005-05-12 15:45:22 -0400945 unsigned char *sb = cmd->sense_buffer;
946 unsigned char *desc = sb + 8;
Tejun Heo246619d2006-05-15 20:58:16 +0900947 int verbose = qc->ap->ops->error_handler == NULL;
Jeff Garzikb0955182005-05-12 15:45:22 -0400948
949 memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
950
Jeff Garzik0e5dec42005-10-06 09:40:20 -0400951 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
Jeff Garzikb0955182005-05-12 15:45:22 -0400952
953 /*
Jeff Garzikb0955182005-05-12 15:45:22 -0400954 * Use ata_to_sense_error() to map status register bits
955 * onto sense key, asc & ascq.
956 */
Tejun Heo058e55e2006-04-02 18:51:53 +0900957 if (qc->err_mask ||
958 tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
Tejun Heo44877b42007-02-21 01:06:51 +0900959 ata_to_sense_error(qc->ap->print_id, tf->command, tf->feature,
Tejun Heo246619d2006-05-15 20:58:16 +0900960 &sb[1], &sb[2], &sb[3], verbose);
Jeff Garzikb0955182005-05-12 15:45:22 -0400961 sb[1] &= 0x0f;
962 }
963
964 /*
965 * Sense data is current and format is descriptor.
966 */
967 sb[0] = 0x72;
968
969 desc[0] = 0x09;
970
Tejun Heof38621b2006-11-14 22:37:35 +0900971 /* set length of additional sense data */
972 sb[7] = 14;
973 desc[1] = 12;
Jeff Garzikb0955182005-05-12 15:45:22 -0400974
975 /*
976 * Copy registers into sense buffer.
977 */
978 desc[2] = 0x00;
979 desc[3] = tf->feature; /* == error reg */
980 desc[5] = tf->nsect;
981 desc[7] = tf->lbal;
982 desc[9] = tf->lbam;
983 desc[11] = tf->lbah;
984 desc[12] = tf->device;
985 desc[13] = tf->command; /* == status reg */
986
987 /*
988 * Fill in Extend bit, and the high order bytes
989 * if applicable.
990 */
991 if (tf->flags & ATA_TFLAG_LBA48) {
992 desc[2] |= 0x01;
993 desc[4] = tf->hob_nsect;
994 desc[6] = tf->hob_lbal;
995 desc[8] = tf->hob_lbam;
996 desc[10] = tf->hob_lbah;
997 }
998}
999
1000/**
Tejun Heo750426a2006-11-14 22:37:35 +09001001 * ata_gen_ata_sense - generate a SCSI fixed sense block
Jeff Garzikb0955182005-05-12 15:45:22 -04001002 * @qc: Command that we are erroring out
1003 *
Tejun Heod25614b2006-11-14 22:37:35 +09001004 * Generate sense block for a failed ATA command @qc. Descriptor
1005 * format is used to accomodate LBA48 block address.
Jeff Garzikb0955182005-05-12 15:45:22 -04001006 *
1007 * LOCKING:
Tejun Heo750426a2006-11-14 22:37:35 +09001008 * None.
Jeff Garzikb0955182005-05-12 15:45:22 -04001009 */
Tejun Heo750426a2006-11-14 22:37:35 +09001010static void ata_gen_ata_sense(struct ata_queued_cmd *qc)
Jeff Garzikb0955182005-05-12 15:45:22 -04001011{
Tejun Heod25614b2006-11-14 22:37:35 +09001012 struct ata_device *dev = qc->dev;
Jeff Garzikb0955182005-05-12 15:45:22 -04001013 struct scsi_cmnd *cmd = qc->scsicmd;
Tejun Heoe61e0672006-05-15 20:57:40 +09001014 struct ata_taskfile *tf = &qc->result_tf;
Jeff Garzikb0955182005-05-12 15:45:22 -04001015 unsigned char *sb = cmd->sense_buffer;
Tejun Heod25614b2006-11-14 22:37:35 +09001016 unsigned char *desc = sb + 8;
Tejun Heo246619d2006-05-15 20:58:16 +09001017 int verbose = qc->ap->ops->error_handler == NULL;
Tejun Heod25614b2006-11-14 22:37:35 +09001018 u64 block;
Jeff Garzikb0955182005-05-12 15:45:22 -04001019
1020 memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
1021
Jeff Garzik0e5dec42005-10-06 09:40:20 -04001022 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
Jeff Garzikb0955182005-05-12 15:45:22 -04001023
Tejun Heod25614b2006-11-14 22:37:35 +09001024 /* sense data is current and format is descriptor */
1025 sb[0] = 0x72;
1026
1027 /* Use ata_to_sense_error() to map status register bits
Jeff Garzikb0955182005-05-12 15:45:22 -04001028 * onto sense key, asc & ascq.
1029 */
Tejun Heo058e55e2006-04-02 18:51:53 +09001030 if (qc->err_mask ||
1031 tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
Tejun Heo44877b42007-02-21 01:06:51 +09001032 ata_to_sense_error(qc->ap->print_id, tf->command, tf->feature,
Tejun Heod25614b2006-11-14 22:37:35 +09001033 &sb[1], &sb[2], &sb[3], verbose);
1034 sb[1] &= 0x0f;
Jeff Garzikb0955182005-05-12 15:45:22 -04001035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Tejun Heod25614b2006-11-14 22:37:35 +09001037 block = ata_tf_read_block(&qc->result_tf, dev);
Jeff Garzik0274aa22005-06-22 13:50:56 -04001038
Tejun Heod25614b2006-11-14 22:37:35 +09001039 /* information sense data descriptor */
1040 sb[7] = 12;
1041 desc[0] = 0x00;
1042 desc[1] = 10;
Jeff Garzika7dac442005-10-30 04:44:42 -05001043
Tejun Heod25614b2006-11-14 22:37:35 +09001044 desc[2] |= 0x80; /* valid */
1045 desc[6] = block >> 40;
1046 desc[7] = block >> 32;
1047 desc[8] = block >> 24;
1048 desc[9] = block >> 16;
1049 desc[10] = block >> 8;
1050 desc[11] = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
Brian Kinga6cce2a2006-03-17 17:04:15 -06001053static void ata_scsi_sdev_config(struct scsi_device *sdev)
1054{
1055 sdev->use_10_for_rw = 1;
1056 sdev->use_10_for_ms = 1;
Tejun Heo31cc23b2007-09-23 13:14:12 +09001057
1058 /* Schedule policy is determined by ->qc_defer() callback and
1059 * it needs to see every deferred qc. Set dev_blocked to 1 to
1060 * prevent SCSI midlayer from automatically deferring
1061 * requests.
1062 */
1063 sdev->max_device_blocked = 1;
Brian Kinga6cce2a2006-03-17 17:04:15 -06001064}
1065
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001066/**
1067 * atapi_drain_needed - Check whether data transfer may overflow
Randy Dunlap73fd8b62008-02-19 13:43:21 -08001068 * @rq: request to be checked
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001069 *
1070 * ATAPI commands which transfer variable length data to host
1071 * might overflow due to application error or hardare bug. This
1072 * function checks whether overflow should be drained and ignored
1073 * for @request.
1074 *
1075 * LOCKING:
1076 * None.
1077 *
1078 * RETURNS:
1079 * 1 if ; otherwise, 0.
1080 */
1081static int atapi_drain_needed(struct request *rq)
1082{
1083 if (likely(!blk_pc_request(rq)))
1084 return 0;
1085
Tejun Heob0790412009-05-07 22:24:42 +09001086 if (!blk_rq_bytes(rq) || (rq->cmd_flags & REQ_RW))
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001087 return 0;
1088
1089 return atapi_cmd_type(rq->cmd[0]) == ATAPI_MISC;
1090}
1091
1092static int ata_scsi_dev_config(struct scsi_device *sdev,
1093 struct ata_device *dev)
Brian Kinga6cce2a2006-03-17 17:04:15 -06001094{
Elias Oltmanns45fabbb2008-09-21 11:54:08 +02001095 if (!ata_id_has_unload(dev->id))
1096 dev->flags |= ATA_DFLAG_NO_UNLOAD;
1097
Tejun Heo914ed352006-11-01 18:39:55 +09001098 /* configure max sectors */
1099 blk_queue_max_sectors(sdev->request_queue, dev->max_sectors);
Brian Kinga6cce2a2006-03-17 17:04:15 -06001100
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001101 if (dev->class == ATA_DEV_ATAPI) {
1102 struct request_queue *q = sdev->request_queue;
1103 void *buf;
1104
Tejun Heoe3790c72008-03-04 11:18:17 +01001105 /* set the min alignment and padding */
James Bottomleyd0ad3bc2008-01-22 13:43:48 -06001106 blk_queue_update_dma_alignment(sdev->request_queue,
1107 ATA_DMA_PAD_SZ - 1);
FUJITA Tomonori27f82212008-07-04 09:30:03 +02001108 blk_queue_update_dma_pad(sdev->request_queue,
1109 ATA_DMA_PAD_SZ - 1);
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001110
1111 /* configure draining */
1112 buf = kmalloc(ATAPI_MAX_DRAIN, q->bounce_gfp | GFP_KERNEL);
1113 if (!buf) {
1114 ata_dev_printk(dev, KERN_ERR,
1115 "drain buffer allocation failed\n");
1116 return -ENOMEM;
1117 }
1118
1119 blk_queue_dma_drain(q, atapi_drain_needed, buf, ATAPI_MAX_DRAIN);
1120 } else {
James Bottomleyd0ad3bc2008-01-22 13:43:48 -06001121 /* ATA devices must be sector aligned */
1122 blk_queue_update_dma_alignment(sdev->request_queue,
1123 ATA_SECT_SIZE - 1);
Tejun Heod8cf5382008-01-15 08:46:59 +09001124 sdev->manage_start_stop = 1;
James Bottomleydde20202008-02-19 11:36:56 +01001125 }
Tejun Heod8cf5382008-01-15 08:46:59 +09001126
Jeff Garzikf26792d2007-10-29 17:18:39 -04001127 if (dev->flags & ATA_DFLAG_AN)
1128 set_bit(SDEV_EVT_MEDIA_CHANGE, sdev->supported_events);
1129
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001130 if (dev->flags & ATA_DFLAG_NCQ) {
1131 int depth;
1132
1133 depth = min(sdev->host->can_queue, ata_id_queue_depth(dev->id));
1134 depth = min(ATA_MAX_QUEUE - 1, depth);
Tejun Heo8a8bc222008-11-10 14:48:21 +09001135 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, depth);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001136 }
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001137
1138 return 0;
Brian Kinga6cce2a2006-03-17 17:04:15 -06001139}
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141/**
1142 * ata_scsi_slave_config - Set SCSI device attributes
1143 * @sdev: SCSI device to examine
1144 *
1145 * This is called before we actually start reading
1146 * and writing to the device, to configure certain
1147 * SCSI mid-layer behaviors.
1148 *
1149 * LOCKING:
1150 * Defined by SCSI layer. We don't really care.
1151 */
1152
1153int ata_scsi_slave_config(struct scsi_device *sdev)
1154{
Tejun Heo31534362006-05-31 18:27:36 +09001155 struct ata_port *ap = ata_shost_to_port(sdev->host);
1156 struct ata_device *dev = __ata_scsi_find_dev(ap, sdev);
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001157 int rc = 0;
Tejun Heo31534362006-05-31 18:27:36 +09001158
Brian Kinga6cce2a2006-03-17 17:04:15 -06001159 ata_scsi_sdev_config(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Tejun Heo31534362006-05-31 18:27:36 +09001161 if (dev)
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001162 rc = ata_scsi_dev_config(sdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001164 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
1167/**
Tejun Heo83c47bc2006-05-31 18:28:07 +09001168 * ata_scsi_slave_destroy - SCSI device is about to be destroyed
1169 * @sdev: SCSI device to be destroyed
1170 *
1171 * @sdev is about to be destroyed for hot/warm unplugging. If
1172 * this unplugging was initiated by libata as indicated by NULL
1173 * dev->sdev, this function doesn't have to do anything.
1174 * Otherwise, SCSI layer initiated warm-unplug is in progress.
1175 * Clear dev->sdev, schedule the device for ATA detach and invoke
1176 * EH.
1177 *
1178 * LOCKING:
1179 * Defined by SCSI layer. We don't really care.
1180 */
1181void ata_scsi_slave_destroy(struct scsi_device *sdev)
1182{
1183 struct ata_port *ap = ata_shost_to_port(sdev->host);
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001184 struct request_queue *q = sdev->request_queue;
Tejun Heo83c47bc2006-05-31 18:28:07 +09001185 unsigned long flags;
1186 struct ata_device *dev;
1187
1188 if (!ap->ops->error_handler)
1189 return;
1190
Jeff Garzikba6a1302006-06-22 23:46:10 -04001191 spin_lock_irqsave(ap->lock, flags);
Tejun Heo83c47bc2006-05-31 18:28:07 +09001192 dev = __ata_scsi_find_dev(ap, sdev);
1193 if (dev && dev->sdev) {
1194 /* SCSI device already in CANCEL state, no need to offline it */
1195 dev->sdev = NULL;
1196 dev->flags |= ATA_DFLAG_DETACH;
1197 ata_port_schedule_eh(ap);
1198 }
Jeff Garzikba6a1302006-06-22 23:46:10 -04001199 spin_unlock_irqrestore(ap->lock, flags);
James Bottomleyfa2fc7f2008-02-19 11:36:57 +01001200
1201 kfree(q->dma_drain_buffer);
1202 q->dma_drain_buffer = NULL;
1203 q->dma_drain_size = 0;
Tejun Heo83c47bc2006-05-31 18:28:07 +09001204}
1205
1206/**
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001207 * ata_scsi_change_queue_depth - SCSI callback for queue depth config
1208 * @sdev: SCSI device to configure queue depth for
1209 * @queue_depth: new queue depth
1210 *
1211 * This is libata standard hostt->change_queue_depth callback.
1212 * SCSI will call into this callback when user tries to set queue
1213 * depth via sysfs.
1214 *
1215 * LOCKING:
1216 * SCSI layer (we don't care)
1217 *
1218 * RETURNS:
1219 * Newly configured queue depth.
1220 */
1221int ata_scsi_change_queue_depth(struct scsi_device *sdev, int queue_depth)
1222{
1223 struct ata_port *ap = ata_shost_to_port(sdev->host);
1224 struct ata_device *dev;
Tejun Heo360f6542006-09-30 19:45:00 +09001225 unsigned long flags;
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001226
Tejun Heoc3c70c42007-02-20 23:31:22 +09001227 if (queue_depth < 1 || queue_depth == sdev->queue_depth)
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001228 return sdev->queue_depth;
1229
1230 dev = ata_scsi_find_dev(ap, sdev);
1231 if (!dev || !ata_dev_enabled(dev))
1232 return sdev->queue_depth;
1233
Tejun Heoc3c70c42007-02-20 23:31:22 +09001234 /* NCQ enabled? */
Tejun Heo360f6542006-09-30 19:45:00 +09001235 spin_lock_irqsave(ap->lock, flags);
Tejun Heoc3c70c42007-02-20 23:31:22 +09001236 dev->flags &= ~ATA_DFLAG_NCQ_OFF;
1237 if (queue_depth == 1 || !ata_ncq_enabled(dev)) {
Tejun Heo360f6542006-09-30 19:45:00 +09001238 dev->flags |= ATA_DFLAG_NCQ_OFF;
Tejun Heoc3c70c42007-02-20 23:31:22 +09001239 queue_depth = 1;
1240 }
Tejun Heo360f6542006-09-30 19:45:00 +09001241 spin_unlock_irqrestore(ap->lock, flags);
1242
Tejun Heoc3c70c42007-02-20 23:31:22 +09001243 /* limit and apply queue depth */
1244 queue_depth = min(queue_depth, sdev->host->can_queue);
1245 queue_depth = min(queue_depth, ata_id_queue_depth(dev->id));
1246 queue_depth = min(queue_depth, ATA_MAX_QUEUE - 1);
1247
1248 if (sdev->queue_depth == queue_depth)
1249 return -EINVAL;
1250
1251 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, queue_depth);
Tejun Heoa6e6ce82006-05-15 21:03:48 +09001252 return queue_depth;
1253}
1254
1255/**
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001256 * ata_scsi_start_stop_xlat - Translate SCSI START STOP UNIT command
1257 * @qc: Storage for translated ATA taskfile
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001258 *
1259 * Sets up an ATA taskfile to issue STANDBY (to stop) or READ VERIFY
1260 * (to start). Perhaps these commands should be preceded by
1261 * CHECK POWER MODE to see what power mode the device is already in.
1262 * [See SAT revision 5 at www.t10.org]
1263 *
1264 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001265 * spin_lock_irqsave(host lock)
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001266 *
1267 * RETURNS:
1268 * Zero on success, non-zero on error.
1269 */
Tejun Heoad706992006-12-17 10:45:57 +09001270static unsigned int ata_scsi_start_stop_xlat(struct ata_queued_cmd *qc)
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001271{
Tejun Heo542b1442006-12-17 10:45:08 +09001272 struct scsi_cmnd *scmd = qc->scsicmd;
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001273 struct ata_taskfile *tf = &qc->tf;
Tejun Heoad706992006-12-17 10:45:57 +09001274 const u8 *cdb = scmd->cmnd;
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001275
Tejun Heo2e5704f2006-12-17 10:46:33 +09001276 if (scmd->cmd_len < 5)
1277 goto invalid_fld;
1278
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001279 tf->flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
1280 tf->protocol = ATA_PROT_NODATA;
Tejun Heo542b1442006-12-17 10:45:08 +09001281 if (cdb[1] & 0x1) {
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001282 ; /* ignore IMMED bit, violates sat-r05 */
1283 }
Tejun Heo542b1442006-12-17 10:45:08 +09001284 if (cdb[4] & 0x2)
Douglas Gilbertae006512005-10-09 09:09:35 -04001285 goto invalid_fld; /* LOEJ bit set not supported */
Tejun Heo542b1442006-12-17 10:45:08 +09001286 if (((cdb[4] >> 4) & 0xf) != 0)
Douglas Gilbertae006512005-10-09 09:09:35 -04001287 goto invalid_fld; /* power conditions not supported */
Tejun Heoe31e8532007-09-23 13:14:13 +09001288
Tejun Heo542b1442006-12-17 10:45:08 +09001289 if (cdb[4] & 0x1) {
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001290 tf->nsect = 1; /* 1 sector, lba=0 */
Albert Lee9d5b1302005-10-04 08:48:17 -04001291
1292 if (qc->dev->flags & ATA_DFLAG_LBA) {
Tejun Heoc44078c2006-05-15 20:57:21 +09001293 tf->flags |= ATA_TFLAG_LBA;
Albert Lee9d5b1302005-10-04 08:48:17 -04001294
1295 tf->lbah = 0x0;
1296 tf->lbam = 0x0;
1297 tf->lbal = 0x0;
1298 tf->device |= ATA_LBA;
1299 } else {
1300 /* CHS */
1301 tf->lbal = 0x1; /* sect */
1302 tf->lbam = 0x0; /* cyl low */
1303 tf->lbah = 0x0; /* cyl high */
1304 }
1305
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001306 tf->command = ATA_CMD_VERIFY; /* READ VERIFY */
Tejun Heo920a4b12007-05-04 21:28:48 +02001307 } else {
Rafael J. Wysocki2a6e58d2009-01-19 20:56:43 +01001308 /* Some odd clown BIOSen issue spindown on power off (ACPI S4
1309 * or S5) causing some drives to spin up and down again.
1310 */
1311 if ((qc->ap->flags & ATA_FLAG_NO_POWEROFF_SPINDOWN) &&
1312 system_state == SYSTEM_POWER_OFF)
1313 goto skip;
1314
1315 if ((qc->ap->flags & ATA_FLAG_NO_HIBERNATE_SPINDOWN) &&
1316 system_entering_hibernation())
1317 goto skip;
1318
Robert Hancock78981a72007-01-30 00:59:18 -08001319 /* Issue ATA STANDBY IMMEDIATE command */
1320 tf->command = ATA_CMD_STANDBYNOW1;
Tejun Heo920a4b12007-05-04 21:28:48 +02001321 }
Robert Hancock78981a72007-01-30 00:59:18 -08001322
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001323 /*
1324 * Standby and Idle condition timers could be implemented but that
1325 * would require libata to implement the Power condition mode page
1326 * and allow the user to change it. Changing mode pages requires
1327 * MODE SELECT to be implemented.
1328 */
1329
1330 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001331
Rafael J. Wysocki2a6e58d2009-01-19 20:56:43 +01001332 invalid_fld:
Tejun Heo542b1442006-12-17 10:45:08 +09001333 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0);
Douglas Gilbertae006512005-10-09 09:09:35 -04001334 /* "Invalid field in cbd" */
1335 return 1;
Rafael J. Wysocki2a6e58d2009-01-19 20:56:43 +01001336 skip:
1337 scmd->result = SAM_STAT_GOOD;
1338 return 1;
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04001339}
1340
1341
1342/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 * ata_scsi_flush_xlat - Translate SCSI SYNCHRONIZE CACHE command
1344 * @qc: Storage for translated ATA taskfile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 *
1346 * Sets up an ATA taskfile to issue FLUSH CACHE or
1347 * FLUSH CACHE EXT.
1348 *
1349 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001350 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 *
1352 * RETURNS:
1353 * Zero on success, non-zero on error.
1354 */
Tejun Heoad706992006-12-17 10:45:57 +09001355static unsigned int ata_scsi_flush_xlat(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 struct ata_taskfile *tf = &qc->tf;
1358
1359 tf->flags |= ATA_TFLAG_DEVICE;
1360 tf->protocol = ATA_PROT_NODATA;
1361
Tejun Heo6fc49ad2006-11-11 20:10:45 +09001362 if (qc->dev->flags & ATA_DFLAG_FLUSH_EXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 tf->command = ATA_CMD_FLUSH_EXT;
1364 else
1365 tf->command = ATA_CMD_FLUSH;
1366
Tejun Heob666da32007-10-26 15:53:59 +09001367 /* flush is critical for IO integrity, consider it an IO command */
1368 qc->flags |= ATA_QCFLAG_IO;
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return 0;
1371}
1372
1373/**
Albert Lee3aef5232005-10-04 08:47:43 -04001374 * scsi_6_lba_len - Get LBA and transfer length
Tejun Heo542b1442006-12-17 10:45:08 +09001375 * @cdb: SCSI command to translate
Albert Lee3aef5232005-10-04 08:47:43 -04001376 *
1377 * Calculate LBA and transfer length for 6-byte commands.
1378 *
1379 * RETURNS:
1380 * @plba: the LBA
1381 * @plen: the transfer length
1382 */
Tejun Heo542b1442006-12-17 10:45:08 +09001383static void scsi_6_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -04001384{
1385 u64 lba = 0;
Jeff Garzik6c7b7d22007-05-25 04:39:39 -04001386 u32 len;
Albert Lee3aef5232005-10-04 08:47:43 -04001387
1388 VPRINTK("six-byte command\n");
1389
Jeff Garzik6c7b7d22007-05-25 04:39:39 -04001390 lba |= ((u64)(cdb[1] & 0x1f)) << 16;
Tejun Heo542b1442006-12-17 10:45:08 +09001391 lba |= ((u64)cdb[2]) << 8;
1392 lba |= ((u64)cdb[3]);
Albert Lee3aef5232005-10-04 08:47:43 -04001393
Jeff Garzik6c7b7d22007-05-25 04:39:39 -04001394 len = cdb[4];
Albert Lee3aef5232005-10-04 08:47:43 -04001395
1396 *plba = lba;
1397 *plen = len;
1398}
1399
1400/**
1401 * scsi_10_lba_len - Get LBA and transfer length
Tejun Heo542b1442006-12-17 10:45:08 +09001402 * @cdb: SCSI command to translate
Albert Lee3aef5232005-10-04 08:47:43 -04001403 *
1404 * Calculate LBA and transfer length for 10-byte commands.
1405 *
1406 * RETURNS:
1407 * @plba: the LBA
1408 * @plen: the transfer length
1409 */
Tejun Heo542b1442006-12-17 10:45:08 +09001410static void scsi_10_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -04001411{
1412 u64 lba = 0;
1413 u32 len = 0;
1414
1415 VPRINTK("ten-byte command\n");
1416
Tejun Heo542b1442006-12-17 10:45:08 +09001417 lba |= ((u64)cdb[2]) << 24;
1418 lba |= ((u64)cdb[3]) << 16;
1419 lba |= ((u64)cdb[4]) << 8;
1420 lba |= ((u64)cdb[5]);
Albert Lee3aef5232005-10-04 08:47:43 -04001421
Tejun Heo542b1442006-12-17 10:45:08 +09001422 len |= ((u32)cdb[7]) << 8;
1423 len |= ((u32)cdb[8]);
Albert Lee3aef5232005-10-04 08:47:43 -04001424
1425 *plba = lba;
1426 *plen = len;
1427}
1428
1429/**
1430 * scsi_16_lba_len - Get LBA and transfer length
Tejun Heo542b1442006-12-17 10:45:08 +09001431 * @cdb: SCSI command to translate
Albert Lee3aef5232005-10-04 08:47:43 -04001432 *
1433 * Calculate LBA and transfer length for 16-byte commands.
1434 *
1435 * RETURNS:
1436 * @plba: the LBA
1437 * @plen: the transfer length
1438 */
Tejun Heo542b1442006-12-17 10:45:08 +09001439static void scsi_16_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
Albert Lee3aef5232005-10-04 08:47:43 -04001440{
1441 u64 lba = 0;
1442 u32 len = 0;
1443
1444 VPRINTK("sixteen-byte command\n");
1445
Tejun Heo542b1442006-12-17 10:45:08 +09001446 lba |= ((u64)cdb[2]) << 56;
1447 lba |= ((u64)cdb[3]) << 48;
1448 lba |= ((u64)cdb[4]) << 40;
1449 lba |= ((u64)cdb[5]) << 32;
1450 lba |= ((u64)cdb[6]) << 24;
1451 lba |= ((u64)cdb[7]) << 16;
1452 lba |= ((u64)cdb[8]) << 8;
1453 lba |= ((u64)cdb[9]);
Albert Lee3aef5232005-10-04 08:47:43 -04001454
Tejun Heo542b1442006-12-17 10:45:08 +09001455 len |= ((u32)cdb[10]) << 24;
1456 len |= ((u32)cdb[11]) << 16;
1457 len |= ((u32)cdb[12]) << 8;
1458 len |= ((u32)cdb[13]);
Albert Lee3aef5232005-10-04 08:47:43 -04001459
1460 *plba = lba;
1461 *plen = len;
1462}
1463
1464/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 * ata_scsi_verify_xlat - Translate SCSI VERIFY command into an ATA one
1466 * @qc: Storage for translated ATA taskfile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 *
1468 * Converts SCSI VERIFY command to an ATA READ VERIFY command.
1469 *
1470 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001471 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 *
1473 * RETURNS:
1474 * Zero on success, non-zero on error.
1475 */
Tejun Heoad706992006-12-17 10:45:57 +09001476static unsigned int ata_scsi_verify_xlat(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Tejun Heo542b1442006-12-17 10:45:08 +09001478 struct scsi_cmnd *scmd = qc->scsicmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 struct ata_taskfile *tf = &qc->tf;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001480 struct ata_device *dev = qc->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 u64 dev_sectors = qc->dev->n_sectors;
Tejun Heoad706992006-12-17 10:45:57 +09001482 const u8 *cdb = scmd->cmnd;
Albert Lee3aef5232005-10-04 08:47:43 -04001483 u64 block;
1484 u32 n_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1487 tf->protocol = ATA_PROT_NODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Tejun Heo2e5704f2006-12-17 10:46:33 +09001489 if (cdb[0] == VERIFY) {
1490 if (scmd->cmd_len < 10)
1491 goto invalid_fld;
Tejun Heo542b1442006-12-17 10:45:08 +09001492 scsi_10_lba_len(cdb, &block, &n_block);
Tejun Heo2e5704f2006-12-17 10:46:33 +09001493 } else if (cdb[0] == VERIFY_16) {
1494 if (scmd->cmd_len < 16)
1495 goto invalid_fld;
Tejun Heo542b1442006-12-17 10:45:08 +09001496 scsi_16_lba_len(cdb, &block, &n_block);
Tejun Heo2e5704f2006-12-17 10:46:33 +09001497 } else
Douglas Gilbertae006512005-10-09 09:09:35 -04001498 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Albert Lee8bf62ec2005-05-12 15:29:42 -04001500 if (!n_block)
Douglas Gilbertae006512005-10-09 09:09:35 -04001501 goto nothing_to_do;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001502 if (block >= dev_sectors)
Douglas Gilbertae006512005-10-09 09:09:35 -04001503 goto out_of_range;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001504 if ((block + n_block) > dev_sectors)
Douglas Gilbertae006512005-10-09 09:09:35 -04001505 goto out_of_range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Albert Lee07506692005-10-12 15:04:18 +08001507 if (dev->flags & ATA_DFLAG_LBA) {
1508 tf->flags |= ATA_TFLAG_LBA;
1509
Albert Leec6a33e22005-10-12 15:12:26 +08001510 if (lba_28_ok(block, n_block)) {
1511 /* use LBA28 */
1512 tf->command = ATA_CMD_VERIFY;
1513 tf->device |= (block >> 24) & 0xf;
1514 } else if (lba_48_ok(block, n_block)) {
1515 if (!(dev->flags & ATA_DFLAG_LBA48))
1516 goto out_of_range;
Albert Lee07506692005-10-12 15:04:18 +08001517
1518 /* use LBA48 */
1519 tf->flags |= ATA_TFLAG_LBA48;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001520 tf->command = ATA_CMD_VERIFY_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Albert Lee8bf62ec2005-05-12 15:29:42 -04001522 tf->hob_nsect = (n_block >> 8) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Albert Lee8bf62ec2005-05-12 15:29:42 -04001524 tf->hob_lbah = (block >> 40) & 0xff;
1525 tf->hob_lbam = (block >> 32) & 0xff;
1526 tf->hob_lbal = (block >> 24) & 0xff;
Albert Leec6a33e22005-10-12 15:12:26 +08001527 } else
1528 /* request too large even for LBA48 */
1529 goto out_of_range;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001530
1531 tf->nsect = n_block & 0xff;
1532
1533 tf->lbah = (block >> 16) & 0xff;
1534 tf->lbam = (block >> 8) & 0xff;
1535 tf->lbal = block & 0xff;
1536
1537 tf->device |= ATA_LBA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 } else {
Albert Lee8bf62ec2005-05-12 15:29:42 -04001539 /* CHS */
1540 u32 sect, head, cyl, track;
1541
Albert Leec6a33e22005-10-12 15:12:26 +08001542 if (!lba_28_ok(block, n_block))
1543 goto out_of_range;
Albert Lee07506692005-10-12 15:04:18 +08001544
Albert Lee8bf62ec2005-05-12 15:29:42 -04001545 /* Convert LBA to CHS */
1546 track = (u32)block / dev->sectors;
1547 cyl = track / dev->heads;
1548 head = track % dev->heads;
1549 sect = (u32)block % dev->sectors + 1;
1550
Albert Leec187c4b2005-10-04 08:46:51 -04001551 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
1552 (u32)block, track, cyl, head, sect);
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001553
1554 /* Check whether the converted CHS can fit.
1555 Cylinder: 0-65535
Albert Lee8bf62ec2005-05-12 15:29:42 -04001556 Head: 0-15
1557 Sector: 1-255*/
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001558 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
Douglas Gilbertae006512005-10-09 09:09:35 -04001559 goto out_of_range;
Jeff Garzik2e9edbf2006-03-24 09:56:57 -05001560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 tf->command = ATA_CMD_VERIFY;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001562 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
1563 tf->lbal = sect;
1564 tf->lbam = cyl;
1565 tf->lbah = cyl >> 8;
1566 tf->device |= head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 }
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001570
1571invalid_fld:
Tejun Heo542b1442006-12-17 10:45:08 +09001572 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0);
Douglas Gilbertae006512005-10-09 09:09:35 -04001573 /* "Invalid field in cbd" */
1574 return 1;
1575
1576out_of_range:
Tejun Heo542b1442006-12-17 10:45:08 +09001577 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x21, 0x0);
Douglas Gilbertae006512005-10-09 09:09:35 -04001578 /* "Logical Block Address out of range" */
1579 return 1;
1580
1581nothing_to_do:
Tejun Heo542b1442006-12-17 10:45:08 +09001582 scmd->result = SAM_STAT_GOOD;
Douglas Gilbertae006512005-10-09 09:09:35 -04001583 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584}
1585
1586/**
1587 * ata_scsi_rw_xlat - Translate SCSI r/w command into an ATA one
1588 * @qc: Storage for translated ATA taskfile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 *
1590 * Converts any of six SCSI read/write commands into the
1591 * ATA counterpart, including starting sector (LBA),
1592 * sector count, and taking into account the device's LBA48
1593 * support.
1594 *
1595 * Commands %READ_6, %READ_10, %READ_16, %WRITE_6, %WRITE_10, and
1596 * %WRITE_16 are currently supported.
1597 *
1598 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001599 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 *
1601 * RETURNS:
1602 * Zero on success, non-zero on error.
1603 */
Tejun Heoad706992006-12-17 10:45:57 +09001604static unsigned int ata_scsi_rw_xlat(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
Tejun Heo542b1442006-12-17 10:45:08 +09001606 struct scsi_cmnd *scmd = qc->scsicmd;
Tejun Heoad706992006-12-17 10:45:57 +09001607 const u8 *cdb = scmd->cmnd;
Tejun Heobd056d72006-11-14 22:47:10 +09001608 unsigned int tf_flags = 0;
Albert Lee3aef5232005-10-04 08:47:43 -04001609 u64 block;
1610 u32 n_block;
Tejun Heobd056d72006-11-14 22:47:10 +09001611 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Tejun Heo542b1442006-12-17 10:45:08 +09001613 if (cdb[0] == WRITE_10 || cdb[0] == WRITE_6 || cdb[0] == WRITE_16)
Tejun Heobd056d72006-11-14 22:47:10 +09001614 tf_flags |= ATA_TFLAG_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Tejun Heo9a3dccc2006-01-06 09:56:18 +01001616 /* Calculate the SCSI LBA, transfer length and FUA. */
Tejun Heo542b1442006-12-17 10:45:08 +09001617 switch (cdb[0]) {
Albert Lee3aef5232005-10-04 08:47:43 -04001618 case READ_10:
1619 case WRITE_10:
Tejun Heo2e5704f2006-12-17 10:46:33 +09001620 if (unlikely(scmd->cmd_len < 10))
1621 goto invalid_fld;
Tejun Heo542b1442006-12-17 10:45:08 +09001622 scsi_10_lba_len(cdb, &block, &n_block);
1623 if (unlikely(cdb[1] & (1 << 3)))
Tejun Heobd056d72006-11-14 22:47:10 +09001624 tf_flags |= ATA_TFLAG_FUA;
Albert Lee3aef5232005-10-04 08:47:43 -04001625 break;
1626 case READ_6:
1627 case WRITE_6:
Tejun Heo2e5704f2006-12-17 10:46:33 +09001628 if (unlikely(scmd->cmd_len < 6))
1629 goto invalid_fld;
Tejun Heo542b1442006-12-17 10:45:08 +09001630 scsi_6_lba_len(cdb, &block, &n_block);
Albert Leec187c4b2005-10-04 08:46:51 -04001631
1632 /* for 6-byte r/w commands, transfer length 0
1633 * means 256 blocks of data, not 0 block.
1634 */
Jeff Garzik76b2bf92005-08-29 19:24:43 -04001635 if (!n_block)
1636 n_block = 256;
Albert Lee3aef5232005-10-04 08:47:43 -04001637 break;
1638 case READ_16:
1639 case WRITE_16:
Tejun Heo2e5704f2006-12-17 10:46:33 +09001640 if (unlikely(scmd->cmd_len < 16))
1641 goto invalid_fld;
Tejun Heo542b1442006-12-17 10:45:08 +09001642 scsi_16_lba_len(cdb, &block, &n_block);
1643 if (unlikely(cdb[1] & (1 << 3)))
Tejun Heobd056d72006-11-14 22:47:10 +09001644 tf_flags |= ATA_TFLAG_FUA;
Albert Lee3aef5232005-10-04 08:47:43 -04001645 break;
1646 default:
Albert Lee8bf62ec2005-05-12 15:29:42 -04001647 DPRINTK("no-byte command\n");
Douglas Gilbertae006512005-10-09 09:09:35 -04001648 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 }
1650
Albert Lee8bf62ec2005-05-12 15:29:42 -04001651 /* Check and compose ATA command */
1652 if (!n_block)
Albert Leec187c4b2005-10-04 08:46:51 -04001653 /* For 10-byte and 16-byte SCSI R/W commands, transfer
1654 * length 0 means transfer 0 block of data.
1655 * However, for ATA R/W commands, sector count 0 means
1656 * 256 or 65536 sectors, not 0 sectors as in SCSI.
Alan Coxf51750d2005-11-07 17:06:33 +00001657 *
1658 * WARNING: one or two older ATA drives treat 0 as 0...
Albert Leec187c4b2005-10-04 08:46:51 -04001659 */
Douglas Gilbertae006512005-10-09 09:09:35 -04001660 goto nothing_to_do;
Albert Lee8bf62ec2005-05-12 15:29:42 -04001661
Tejun Heobd056d72006-11-14 22:47:10 +09001662 qc->flags |= ATA_QCFLAG_IO;
Tejun Heo726f0782007-01-03 17:30:39 +09001663 qc->nbytes = n_block * ATA_SECT_SIZE;
Tejun Heo3dc1d882006-05-15 21:03:45 +09001664
Tejun Heobd056d72006-11-14 22:47:10 +09001665 rc = ata_build_rw_tf(&qc->tf, qc->dev, block, n_block, tf_flags,
1666 qc->tag);
1667 if (likely(rc == 0))
1668 return 0;
Tejun Heo3dc1d882006-05-15 21:03:45 +09001669
Tejun Heobd056d72006-11-14 22:47:10 +09001670 if (rc == -ERANGE)
1671 goto out_of_range;
1672 /* treat all other errors as -EINVAL, fall through */
Douglas Gilbertae006512005-10-09 09:09:35 -04001673invalid_fld:
Tejun Heo542b1442006-12-17 10:45:08 +09001674 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x0);
Douglas Gilbertae006512005-10-09 09:09:35 -04001675 /* "Invalid field in cbd" */
1676 return 1;
1677
1678out_of_range:
Tejun Heo542b1442006-12-17 10:45:08 +09001679 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x21, 0x0);
Douglas Gilbertae006512005-10-09 09:09:35 -04001680 /* "Logical Block Address out of range" */
1681 return 1;
1682
1683nothing_to_do:
Tejun Heo542b1442006-12-17 10:45:08 +09001684 scmd->result = SAM_STAT_GOOD;
Douglas Gilbertae006512005-10-09 09:09:35 -04001685 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686}
1687
Tejun Heo77853bf2006-01-23 13:09:36 +09001688static void ata_scsi_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
Tejun Heoc31f5712006-11-22 12:39:43 +09001690 struct ata_port *ap = qc->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 struct scsi_cmnd *cmd = qc->scsicmd;
Jeff Garzika7dac442005-10-30 04:44:42 -05001692 u8 *cdb = cmd->cmnd;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001693 int need_sense = (qc->err_mask != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Jeff Garzikb0955182005-05-12 15:45:22 -04001695 /* For ATA pass thru (SAT) commands, generate a sense block if
1696 * user mandated it or if there's an error. Note that if we
1697 * generate because the user forced us to, a check condition
1698 * is generated and the ATA register values are returned
1699 * whether the command completed successfully or not. If there
1700 * was no error, SK, ASC and ASCQ will all be zero.
1701 */
Jeff Garzika7dac442005-10-30 04:44:42 -05001702 if (((cdb[0] == ATA_16) || (cdb[0] == ATA_12)) &&
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001703 ((cdb[2] & 0x20) || need_sense)) {
Tejun Heo750426a2006-11-14 22:37:35 +09001704 ata_gen_passthru_sense(qc);
Jeff Garzikb0955182005-05-12 15:45:22 -04001705 } else {
1706 if (!need_sense) {
1707 cmd->result = SAM_STAT_GOOD;
1708 } else {
1709 /* TODO: decide which descriptor format to use
1710 * for 48b LBA devices and call that here
1711 * instead of the fixed desc, which is only
1712 * good for smaller LBA (and maybe CHS?)
1713 * devices.
1714 */
Tejun Heo750426a2006-11-14 22:37:35 +09001715 ata_gen_ata_sense(qc);
Jeff Garzikb0955182005-05-12 15:45:22 -04001716 }
1717 }
1718
Tejun Heoc31f5712006-11-22 12:39:43 +09001719 if (need_sense && !ap->ops->error_handler)
Tejun Heo44877b42007-02-21 01:06:51 +09001720 ata_dump_status(ap->print_id, &qc->result_tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722 qc->scsidone(cmd);
1723
Tejun Heo77853bf2006-01-23 13:09:36 +09001724 ata_qc_free(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725}
1726
1727/**
1728 * ata_scsi_translate - Translate then issue SCSI command to ATA device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 * @dev: ATA device to which the command is addressed
1730 * @cmd: SCSI command to execute
1731 * @done: SCSI command completion function
1732 * @xlat_func: Actor which translates @cmd to an ATA taskfile
1733 *
1734 * Our ->queuecommand() function has decided that the SCSI
1735 * command issued can be directly translated into an ATA
1736 * command, rather than handled internally.
1737 *
1738 * This function sets up an ata_queued_cmd structure for the
1739 * SCSI command, and sends that ata_queued_cmd to the hardware.
1740 *
Douglas Gilbertae006512005-10-09 09:09:35 -04001741 * The xlat_func argument (actor) returns 0 if ready to execute
1742 * ATA command, else 1 to finish translation. If 1 is returned
1743 * then cmd->result (and possibly cmd->sense_buffer) are assumed
1744 * to be set reflecting an error condition or clean (early)
1745 * termination.
1746 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001748 * spin_lock_irqsave(host lock)
Tejun Heo2115ea92006-05-15 21:03:39 +09001749 *
1750 * RETURNS:
1751 * 0 on success, SCSI_ML_QUEUE_DEVICE_BUSY if the command
1752 * needs to be deferred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 */
Tejun Heo2115ea92006-05-15 21:03:39 +09001754static int ata_scsi_translate(struct ata_device *dev, struct scsi_cmnd *cmd,
1755 void (*done)(struct scsi_cmnd *),
1756 ata_xlat_func_t xlat_func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757{
Tejun Heo31cc23b2007-09-23 13:14:12 +09001758 struct ata_port *ap = dev->link->ap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 struct ata_queued_cmd *qc;
Tejun Heo31cc23b2007-09-23 13:14:12 +09001760 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 VPRINTK("ENTER\n");
1763
Tejun Heo3373efd2006-05-15 20:57:53 +09001764 qc = ata_scsi_qc_new(dev, cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 if (!qc)
Douglas Gilbertae006512005-10-09 09:09:35 -04001766 goto err_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 /* data is present; dma-map it */
be7db052005-04-17 15:26:13 -05001769 if (cmd->sc_data_direction == DMA_FROM_DEVICE ||
1770 cmd->sc_data_direction == DMA_TO_DEVICE) {
Boaz Harrosh71201652007-09-18 17:48:50 +02001771 if (unlikely(scsi_bufflen(cmd) < 1)) {
Tejun Heof15a1da2006-05-15 20:57:56 +09001772 ata_dev_printk(dev, KERN_WARNING,
1773 "WARNING: zero len r/w req\n");
Douglas Gilbertae006512005-10-09 09:09:35 -04001774 goto err_did;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 }
1776
Boaz Harrosh71201652007-09-18 17:48:50 +02001777 ata_sg_init(qc, scsi_sglist(cmd), scsi_sg_count(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 qc->dma_dir = cmd->sc_data_direction;
1780 }
1781
1782 qc->complete_fn = ata_scsi_qc_complete;
1783
Tejun Heoad706992006-12-17 10:45:57 +09001784 if (xlat_func(qc))
Douglas Gilbertae006512005-10-09 09:09:35 -04001785 goto early_finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Tejun Heo31cc23b2007-09-23 13:14:12 +09001787 if (ap->ops->qc_defer) {
1788 if ((rc = ap->ops->qc_defer(qc)))
1789 goto defer;
1790 }
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 /* select device, send command to hardware */
Tejun Heo8e0e6942006-03-31 20:41:11 +09001793 ata_qc_issue(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
1795 VPRINTK("EXIT\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001796 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Douglas Gilbertae006512005-10-09 09:09:35 -04001798early_finish:
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001799 ata_qc_free(qc);
Tejun Heoda071b42007-05-14 17:26:18 +02001800 qc->scsidone(cmd);
Douglas Gilbertae006512005-10-09 09:09:35 -04001801 DPRINTK("EXIT - early finish (good or error)\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001802 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04001803
1804err_did:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 ata_qc_free(qc);
Douglas Gilbertae006512005-10-09 09:09:35 -04001806 cmd->result = (DID_ERROR << 16);
Tejun Heoda071b42007-05-14 17:26:18 +02001807 qc->scsidone(cmd);
Darrick J. Wong253b92e2006-11-14 09:55:41 -05001808err_mem:
Douglas Gilbertae006512005-10-09 09:09:35 -04001809 DPRINTK("EXIT - internal\n");
Tejun Heo2115ea92006-05-15 21:03:39 +09001810 return 0;
Tejun Heo3dc1d882006-05-15 21:03:45 +09001811
1812defer:
Tejun Heo31cc23b2007-09-23 13:14:12 +09001813 ata_qc_free(qc);
Tejun Heo3dc1d882006-05-15 21:03:45 +09001814 DPRINTK("EXIT - defer\n");
Tejun Heo31cc23b2007-09-23 13:14:12 +09001815 if (rc == ATA_DEFER_LINK)
1816 return SCSI_MLQUEUE_DEVICE_BUSY;
1817 else
1818 return SCSI_MLQUEUE_HOST_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819}
1820
1821/**
1822 * ata_scsi_rbuf_get - Map response buffer.
Randy Dunlapec2a20e2008-04-30 12:57:00 -07001823 * @cmd: SCSI command containing buffer to be mapped.
Tejun Heo87340e92008-04-28 17:48:51 +09001824 * @flags: unsigned long variable to store irq enable status
1825 * @copy_in: copy in from user buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 *
Tejun Heo87340e92008-04-28 17:48:51 +09001827 * Prepare buffer for simulated SCSI commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 *
1829 * LOCKING:
Tejun Heo87340e92008-04-28 17:48:51 +09001830 * spin_lock_irqsave(ata_scsi_rbuf_lock) on success
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 *
1832 * RETURNS:
Tejun Heo87340e92008-04-28 17:48:51 +09001833 * Pointer to response buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 */
Tejun Heo87340e92008-04-28 17:48:51 +09001835static void *ata_scsi_rbuf_get(struct scsi_cmnd *cmd, bool copy_in,
1836 unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
Tejun Heo87340e92008-04-28 17:48:51 +09001838 spin_lock_irqsave(&ata_scsi_rbuf_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Tejun Heo87340e92008-04-28 17:48:51 +09001840 memset(ata_scsi_rbuf, 0, ATA_SCSI_RBUF_SIZE);
1841 if (copy_in)
1842 sg_copy_to_buffer(scsi_sglist(cmd), scsi_sg_count(cmd),
1843 ata_scsi_rbuf, ATA_SCSI_RBUF_SIZE);
1844 return ata_scsi_rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845}
1846
1847/**
1848 * ata_scsi_rbuf_put - Unmap response buffer.
1849 * @cmd: SCSI command containing buffer to be unmapped.
Tejun Heo87340e92008-04-28 17:48:51 +09001850 * @copy_out: copy out result
1851 * @flags: @flags passed to ata_scsi_rbuf_get()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 *
Tejun Heo87340e92008-04-28 17:48:51 +09001853 * Returns rbuf buffer. The result is copied to @cmd's buffer if
1854 * @copy_back is true.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 *
1856 * LOCKING:
Tejun Heo87340e92008-04-28 17:48:51 +09001857 * Unlocks ata_scsi_rbuf_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 */
Tejun Heo87340e92008-04-28 17:48:51 +09001859static inline void ata_scsi_rbuf_put(struct scsi_cmnd *cmd, bool copy_out,
1860 unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
Tejun Heo87340e92008-04-28 17:48:51 +09001862 if (copy_out)
1863 sg_copy_from_buffer(scsi_sglist(cmd), scsi_sg_count(cmd),
1864 ata_scsi_rbuf, ATA_SCSI_RBUF_SIZE);
1865 spin_unlock_irqrestore(&ata_scsi_rbuf_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866}
1867
1868/**
1869 * ata_scsi_rbuf_fill - wrapper for SCSI command simulators
1870 * @args: device IDENTIFY data / SCSI command of interest.
1871 * @actor: Callback hook for desired SCSI command simulator
1872 *
1873 * Takes care of the hard work of simulating a SCSI command...
1874 * Mapping the response buffer, calling the command's handler,
1875 * and handling the handler's return value. This return value
1876 * indicates whether the handler wishes the SCSI command to be
Douglas Gilbertae006512005-10-09 09:09:35 -04001877 * completed successfully (0), or not (in which case cmd->result
1878 * and sense buffer are assumed to be set).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 *
1880 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001881 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 */
Tejun Heof0761be2008-04-28 17:16:52 +09001883static void ata_scsi_rbuf_fill(struct ata_scsi_args *args,
Tejun Heo87340e92008-04-28 17:48:51 +09001884 unsigned int (*actor)(struct ata_scsi_args *args, u8 *rbuf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
1886 u8 *rbuf;
Tejun Heo87340e92008-04-28 17:48:51 +09001887 unsigned int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 struct scsi_cmnd *cmd = args->cmd;
Jeff Garzikb445c562008-02-29 19:10:51 -05001889 unsigned long flags;
1890
Tejun Heo87340e92008-04-28 17:48:51 +09001891 rbuf = ata_scsi_rbuf_get(cmd, false, &flags);
1892 rc = actor(args, rbuf);
1893 ata_scsi_rbuf_put(cmd, rc == 0, &flags);
Jeff Garzikb445c562008-02-29 19:10:51 -05001894
Douglas Gilbertae006512005-10-09 09:09:35 -04001895 if (rc == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 cmd->result = SAM_STAT_GOOD;
Douglas Gilbertae006512005-10-09 09:09:35 -04001897 args->done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
1900/**
1901 * ata_scsiop_inq_std - Simulate INQUIRY command
1902 * @args: device IDENTIFY data / SCSI command of interest.
1903 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 *
1905 * Returns standard device identification data associated
Jeff Garzikb142eb62006-03-21 20:37:47 -05001906 * with non-VPD INQUIRY command output.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 *
1908 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001909 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 */
Tejun Heo87340e92008-04-28 17:48:51 +09001911static unsigned int ata_scsiop_inq_std(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
Tejun Heo87340e92008-04-28 17:48:51 +09001913 const u8 versions[] = {
1914 0x60, /* SAM-3 (no version claimed) */
1915
1916 0x03,
1917 0x20, /* SBC-2 (no version claimed) */
1918
1919 0x02,
1920 0x60 /* SPC-3 (no version claimed) */
1921 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 u8 hdr[] = {
1923 TYPE_DISK,
1924 0,
1925 0x5, /* claim SPC-3 version compatibility */
1926 2,
1927 95 - 4
1928 };
1929
Tejun Heo87340e92008-04-28 17:48:51 +09001930 VPRINTK("ENTER\n");
1931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 /* set scsi removeable (RMB) bit per ata bit */
1933 if (ata_id_removeable(args->id))
1934 hdr[1] |= (1 << 7);
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 memcpy(rbuf, hdr, sizeof(hdr));
Tejun Heo87340e92008-04-28 17:48:51 +09001937 memcpy(&rbuf[8], "ATA ", 8);
1938 ata_id_string(args->id, &rbuf[16], ATA_ID_PROD, 16);
1939 ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Tejun Heo87340e92008-04-28 17:48:51 +09001941 if (rbuf[32] == 0 || rbuf[32] == ' ')
1942 memcpy(&rbuf[32], "n/a ", 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Tejun Heo87340e92008-04-28 17:48:51 +09001944 memcpy(rbuf + 59, versions, sizeof(versions));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 return 0;
1947}
1948
1949/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05001950 * ata_scsiop_inq_00 - Simulate INQUIRY VPD page 0, list of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 * @args: device IDENTIFY data / SCSI command of interest.
1952 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 *
Jeff Garzikb142eb62006-03-21 20:37:47 -05001954 * Returns list of inquiry VPD pages available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 *
1956 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001957 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 */
Tejun Heo87340e92008-04-28 17:48:51 +09001959static unsigned int ata_scsiop_inq_00(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960{
1961 const u8 pages[] = {
1962 0x00, /* page 0x00, this page */
1963 0x80, /* page 0x80, unit serial no page */
Matthew Wilcox1e9dbc92008-06-19 13:13:38 -06001964 0x83, /* page 0x83, device ident page */
1965 0x89, /* page 0x89, ata info page */
1966 0xb1, /* page 0xb1, block device characteristics page */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 };
Tejun Heo87340e92008-04-28 17:48:51 +09001968
Jeff Garzikb142eb62006-03-21 20:37:47 -05001969 rbuf[3] = sizeof(pages); /* number of supported VPD pages */
Tejun Heo87340e92008-04-28 17:48:51 +09001970 memcpy(rbuf + 4, pages, sizeof(pages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 return 0;
1972}
1973
1974/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05001975 * ata_scsiop_inq_80 - Simulate INQUIRY VPD page 80, device serial number
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 * @args: device IDENTIFY data / SCSI command of interest.
1977 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 *
1979 * Returns ATA device serial number.
1980 *
1981 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001982 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 */
Tejun Heo87340e92008-04-28 17:48:51 +09001984static unsigned int ata_scsiop_inq_80(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 const u8 hdr[] = {
1987 0,
1988 0x80, /* this page code */
1989 0,
Tejun Heoa0cf7332007-01-02 20:18:49 +09001990 ATA_ID_SERNO_LEN, /* page len */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 };
Tejun Heo87340e92008-04-28 17:48:51 +09001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 memcpy(rbuf, hdr, sizeof(hdr));
Tejun Heo87340e92008-04-28 17:48:51 +09001994 ata_id_string(args->id, (unsigned char *) &rbuf[4],
1995 ATA_ID_SERNO, ATA_ID_SERNO_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 return 0;
1997}
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999/**
Jeff Garzikb142eb62006-03-21 20:37:47 -05002000 * ata_scsiop_inq_83 - Simulate INQUIRY VPD page 83, device identity
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 * @args: device IDENTIFY data / SCSI command of interest.
2002 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 *
Jeff Garzikb142eb62006-03-21 20:37:47 -05002004 * Yields two logical unit device identification designators:
2005 * - vendor specific ASCII containing the ATA serial number
2006 * - SAT defined "t10 vendor id based" containing ASCII vendor
2007 * name ("ATA "), model and serial numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 *
2009 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002010 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 */
Tejun Heo87340e92008-04-28 17:48:51 +09002012static unsigned int ata_scsiop_inq_83(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
Jeff Garzikb142eb62006-03-21 20:37:47 -05002014 const int sat_model_serial_desc_len = 68;
Tejun Heo87340e92008-04-28 17:48:51 +09002015 int num;
Jeff Garzikb142eb62006-03-21 20:37:47 -05002016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 rbuf[1] = 0x83; /* this page code */
Jeff Garzikb142eb62006-03-21 20:37:47 -05002018 num = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Tejun Heo87340e92008-04-28 17:48:51 +09002020 /* piv=0, assoc=lu, code_set=ACSII, designator=vendor */
2021 rbuf[num + 0] = 2;
2022 rbuf[num + 3] = ATA_ID_SERNO_LEN;
2023 num += 4;
2024 ata_id_string(args->id, (unsigned char *) rbuf + num,
2025 ATA_ID_SERNO, ATA_ID_SERNO_LEN);
2026 num += ATA_ID_SERNO_LEN;
2027
2028 /* SAT defined lu model and serial numbers descriptor */
2029 /* piv=0, assoc=lu, code_set=ACSII, designator=t10 vendor id */
2030 rbuf[num + 0] = 2;
2031 rbuf[num + 1] = 1;
2032 rbuf[num + 3] = sat_model_serial_desc_len;
2033 num += 4;
2034 memcpy(rbuf + num, "ATA ", 8);
2035 num += 8;
2036 ata_id_string(args->id, (unsigned char *) rbuf + num, ATA_ID_PROD,
2037 ATA_ID_PROD_LEN);
2038 num += ATA_ID_PROD_LEN;
2039 ata_id_string(args->id, (unsigned char *) rbuf + num, ATA_ID_SERNO,
2040 ATA_ID_SERNO_LEN);
2041 num += ATA_ID_SERNO_LEN;
2042
Jeff Garzikb142eb62006-03-21 20:37:47 -05002043 rbuf[3] = num - 4; /* page len (assume less than 256 bytes) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 return 0;
2045}
2046
2047/**
Jeff Garzikad355b42007-09-21 20:38:03 -04002048 * ata_scsiop_inq_89 - Simulate INQUIRY VPD page 89, ATA info
2049 * @args: device IDENTIFY data / SCSI command of interest.
2050 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Jeff Garzikad355b42007-09-21 20:38:03 -04002051 *
2052 * Yields SAT-specified ATA VPD page.
2053 *
2054 * LOCKING:
2055 * spin_lock_irqsave(host lock)
2056 */
Tejun Heo87340e92008-04-28 17:48:51 +09002057static unsigned int ata_scsiop_inq_89(struct ata_scsi_args *args, u8 *rbuf)
Jeff Garzikad355b42007-09-21 20:38:03 -04002058{
Jeff Garzikad355b42007-09-21 20:38:03 -04002059 struct ata_taskfile tf;
Jeff Garzikad355b42007-09-21 20:38:03 -04002060
Jeff Garzikad355b42007-09-21 20:38:03 -04002061 memset(&tf, 0, sizeof(tf));
2062
Tejun Heo87340e92008-04-28 17:48:51 +09002063 rbuf[1] = 0x89; /* our page code */
2064 rbuf[2] = (0x238 >> 8); /* page size fixed at 238h */
2065 rbuf[3] = (0x238 & 0xff);
Jeff Garzikad355b42007-09-21 20:38:03 -04002066
Tejun Heo87340e92008-04-28 17:48:51 +09002067 memcpy(&rbuf[8], "linux ", 8);
2068 memcpy(&rbuf[16], "libata ", 16);
2069 memcpy(&rbuf[32], DRV_VERSION, 4);
2070 ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV, 4);
Jeff Garzikad355b42007-09-21 20:38:03 -04002071
2072 /* we don't store the ATA device signature, so we fake it */
2073
2074 tf.command = ATA_DRDY; /* really, this is Status reg */
2075 tf.lbal = 0x1;
2076 tf.nsect = 0x1;
2077
Tejun Heo87340e92008-04-28 17:48:51 +09002078 ata_tf_to_fis(&tf, 0, 1, &rbuf[36]); /* TODO: PMP? */
2079 rbuf[36] = 0x34; /* force D2H Reg FIS (34h) */
Jeff Garzikad355b42007-09-21 20:38:03 -04002080
Tejun Heo87340e92008-04-28 17:48:51 +09002081 rbuf[56] = ATA_CMD_ID_ATA;
Jeff Garzikad355b42007-09-21 20:38:03 -04002082
Tejun Heo87340e92008-04-28 17:48:51 +09002083 memcpy(&rbuf[60], &args->id[0], 512);
Jeff Garzikad355b42007-09-21 20:38:03 -04002084 return 0;
2085}
2086
Matthew Wilcox1e9dbc92008-06-19 13:13:38 -06002087static unsigned int ata_scsiop_inq_b1(struct ata_scsi_args *args, u8 *rbuf)
2088{
Martin K. Petersen4bca3282009-05-15 00:40:35 -04002089 int form_factor = ata_id_form_factor(args->id);
2090 int media_rotation_rate = ata_id_rotation_rate(args->id);
2091
Matthew Wilcox1e9dbc92008-06-19 13:13:38 -06002092 rbuf[1] = 0xb1;
2093 rbuf[3] = 0x3c;
Martin K. Petersen4bca3282009-05-15 00:40:35 -04002094 rbuf[4] = media_rotation_rate >> 8;
2095 rbuf[5] = media_rotation_rate;
2096 rbuf[7] = form_factor;
Matthew Wilcox1e9dbc92008-06-19 13:13:38 -06002097
2098 return 0;
2099}
2100
Jeff Garzikad355b42007-09-21 20:38:03 -04002101/**
Jeff Garzik0cba6322005-05-30 19:49:12 -04002102 * ata_scsiop_noop - Command handler that simply returns success.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 * @args: device IDENTIFY data / SCSI command of interest.
2104 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 *
2106 * No operation. Simply returns success to caller, to indicate
2107 * that the caller should successfully complete this SCSI command.
2108 *
2109 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002110 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 */
Tejun Heo87340e92008-04-28 17:48:51 +09002112static unsigned int ata_scsiop_noop(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
2114 VPRINTK("ENTER\n");
2115 return 0;
2116}
2117
2118/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 * ata_msense_caching - Simulate MODE SENSE caching info page
2120 * @id: device IDENTIFY data
Tejun Heo87340e92008-04-28 17:48:51 +09002121 * @buf: output buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 *
2123 * Generate a caching info page, which conditionally indicates
2124 * write caching to the SCSI layer, depending on device
2125 * capabilities.
2126 *
2127 * LOCKING:
2128 * None.
2129 */
Tejun Heo87340e92008-04-28 17:48:51 +09002130static unsigned int ata_msense_caching(u16 *id, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
Tejun Heo87340e92008-04-28 17:48:51 +09002132 memcpy(buf, def_cache_mpage, sizeof(def_cache_mpage));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 if (ata_id_wcache_enabled(id))
Tejun Heo87340e92008-04-28 17:48:51 +09002134 buf[2] |= (1 << 2); /* write cache enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 if (!ata_id_rahead_enabled(id))
Tejun Heo87340e92008-04-28 17:48:51 +09002136 buf[12] |= (1 << 5); /* disable read ahead */
2137 return sizeof(def_cache_mpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138}
2139
2140/**
2141 * ata_msense_ctl_mode - Simulate MODE SENSE control mode page
Tejun Heo87340e92008-04-28 17:48:51 +09002142 * @buf: output buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 *
2144 * Generate a generic MODE SENSE control mode page.
2145 *
2146 * LOCKING:
2147 * None.
2148 */
Tejun Heo87340e92008-04-28 17:48:51 +09002149static unsigned int ata_msense_ctl_mode(u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
Tejun Heo87340e92008-04-28 17:48:51 +09002151 memcpy(buf, def_control_mpage, sizeof(def_control_mpage));
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002152 return sizeof(def_control_mpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
2155/**
2156 * ata_msense_rw_recovery - Simulate MODE SENSE r/w error recovery page
Randy Dunlapec2a20e2008-04-30 12:57:00 -07002157 * @buf: output buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 *
2159 * Generate a generic MODE SENSE r/w error recovery page.
2160 *
2161 * LOCKING:
2162 * None.
2163 */
Tejun Heo87340e92008-04-28 17:48:51 +09002164static unsigned int ata_msense_rw_recovery(u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165{
Tejun Heo87340e92008-04-28 17:48:51 +09002166 memcpy(buf, def_rw_recovery_mpage, sizeof(def_rw_recovery_mpage));
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002167 return sizeof(def_rw_recovery_mpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002170/*
2171 * We can turn this into a real blacklist if it's needed, for now just
2172 * blacklist any Maxtor BANC1G10 revision firmware
2173 */
2174static int ata_dev_supports_fua(u16 *id)
2175{
Tejun Heoa0cf7332007-01-02 20:18:49 +09002176 unsigned char model[ATA_ID_PROD_LEN + 1], fw[ATA_ID_FW_REV_LEN + 1];
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002177
Jeff Garzikc3c013a2006-02-27 22:31:19 -05002178 if (!libata_fua)
2179 return 0;
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002180 if (!ata_id_has_fua(id))
2181 return 0;
2182
Tejun Heoa0cf7332007-01-02 20:18:49 +09002183 ata_id_c_string(id, model, ATA_ID_PROD, sizeof(model));
2184 ata_id_c_string(id, fw, ATA_ID_FW_REV, sizeof(fw));
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002185
Tejun Heo2e026712006-02-12 22:47:04 +09002186 if (strcmp(model, "Maxtor"))
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002187 return 1;
Tejun Heo2e026712006-02-12 22:47:04 +09002188 if (strcmp(fw, "BANC1G10"))
Jens Axboe48bdc8e2006-01-30 16:09:35 +01002189 return 1;
2190
2191 return 0; /* blacklisted */
2192}
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194/**
2195 * ata_scsiop_mode_sense - Simulate MODE SENSE 6, 10 commands
2196 * @args: device IDENTIFY data / SCSI command of interest.
2197 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 *
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002199 * Simulate MODE SENSE commands. Assume this is invoked for direct
2200 * access devices (e.g. disks) only. There should be no block
2201 * descriptor for other device types.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 *
2203 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002204 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 */
Tejun Heo87340e92008-04-28 17:48:51 +09002206static unsigned int ata_scsiop_mode_sense(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002208 struct ata_device *dev = args->dev;
Tejun Heo87340e92008-04-28 17:48:51 +09002209 u8 *scsicmd = args->cmd->cmnd, *p = rbuf;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002210 const u8 sat_blk_desc[] = {
2211 0, 0, 0, 0, /* number of blocks: sat unspecified */
2212 0,
2213 0, 0x2, 0x0 /* block length: 512 bytes */
2214 };
2215 u8 pg, spg;
Tejun Heo87340e92008-04-28 17:48:51 +09002216 unsigned int ebd, page_control, six_byte;
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002217 u8 dpofua;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
2219 VPRINTK("ENTER\n");
2220
2221 six_byte = (scsicmd[0] == MODE_SENSE);
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002222 ebd = !(scsicmd[1] & 0x8); /* dbd bit inverted == edb */
2223 /*
2224 * LLBA bit in msense(10) ignored (compliant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 */
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002226
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 page_control = scsicmd[2] >> 6;
Douglas Gilbertae006512005-10-09 09:09:35 -04002228 switch (page_control) {
2229 case 0: /* current */
2230 break; /* supported */
2231 case 3: /* saved */
2232 goto saving_not_supp;
2233 case 1: /* changeable */
2234 case 2: /* defaults */
2235 default:
2236 goto invalid_fld;
2237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Tejun Heo87340e92008-04-28 17:48:51 +09002239 if (six_byte)
2240 p += 4 + (ebd ? 8 : 0);
2241 else
2242 p += 8 + (ebd ? 8 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002244 pg = scsicmd[2] & 0x3f;
2245 spg = scsicmd[3];
2246 /*
2247 * No mode subpages supported (yet) but asking for _all_
2248 * subpages may be valid
2249 */
2250 if (spg && (spg != ALL_SUB_MPAGES))
2251 goto invalid_fld;
2252
2253 switch(pg) {
2254 case RW_RECOVERY_MPAGE:
Tejun Heo87340e92008-04-28 17:48:51 +09002255 p += ata_msense_rw_recovery(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 break;
2257
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002258 case CACHE_MPAGE:
Tejun Heo87340e92008-04-28 17:48:51 +09002259 p += ata_msense_caching(args->id, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 break;
2261
Tejun Heo87340e92008-04-28 17:48:51 +09002262 case CONTROL_MPAGE:
2263 p += ata_msense_ctl_mode(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002266 case ALL_MPAGES:
Tejun Heo87340e92008-04-28 17:48:51 +09002267 p += ata_msense_rw_recovery(p);
2268 p += ata_msense_caching(args->id, p);
2269 p += ata_msense_ctl_mode(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 break;
2271
2272 default: /* invalid page code */
Douglas Gilbertae006512005-10-09 09:09:35 -04002273 goto invalid_fld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 }
2275
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002276 dpofua = 0;
Alan Coxf79d4092006-05-22 16:55:11 +01002277 if (ata_dev_supports_fua(args->id) && (dev->flags & ATA_DFLAG_LBA48) &&
Tejun Heo9a3dccc2006-01-06 09:56:18 +01002278 (!(dev->flags & ATA_DFLAG_PIO) || dev->multi_count))
2279 dpofua = 1 << 4;
2280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 if (six_byte) {
Tejun Heo87340e92008-04-28 17:48:51 +09002282 rbuf[0] = p - rbuf - 1;
2283 rbuf[2] |= dpofua;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002284 if (ebd) {
Tejun Heo87340e92008-04-28 17:48:51 +09002285 rbuf[3] = sizeof(sat_blk_desc);
2286 memcpy(rbuf + 4, sat_blk_desc, sizeof(sat_blk_desc));
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 } else {
Tejun Heo87340e92008-04-28 17:48:51 +09002289 unsigned int output_len = p - rbuf - 2;
2290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 rbuf[0] = output_len >> 8;
Tejun Heo87340e92008-04-28 17:48:51 +09002292 rbuf[1] = output_len;
2293 rbuf[3] |= dpofua;
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002294 if (ebd) {
Tejun Heo87340e92008-04-28 17:48:51 +09002295 rbuf[7] = sizeof(sat_blk_desc);
2296 memcpy(rbuf + 8, sat_blk_desc, sizeof(sat_blk_desc));
Douglas Gilbert00ac37f2005-10-28 15:58:28 -04002297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 return 0;
Douglas Gilbertae006512005-10-09 09:09:35 -04002300
2301invalid_fld:
2302 ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x24, 0x0);
2303 /* "Invalid field in cbd" */
2304 return 1;
2305
2306saving_not_supp:
2307 ata_scsi_set_sense(args->cmd, ILLEGAL_REQUEST, 0x39, 0x0);
2308 /* "Saving parameters not supported" */
2309 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310}
2311
2312/**
2313 * ata_scsiop_read_cap - Simulate READ CAPACITY[ 16] commands
2314 * @args: device IDENTIFY data / SCSI command of interest.
2315 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 *
2317 * Simulate READ CAPACITY commands.
2318 *
2319 * LOCKING:
Tejun Heo6a362612006-11-20 11:15:47 +09002320 * None.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 */
Tejun Heo87340e92008-04-28 17:48:51 +09002322static unsigned int ata_scsiop_read_cap(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323{
Martin K. Petersen61d79a82009-05-15 00:40:34 -04002324 struct ata_device *dev = args->dev;
2325 u64 last_lba = dev->n_sectors - 1; /* LBA of the last block */
2326 u8 log_per_phys = 0;
2327 u16 lowest_aligned = 0;
2328 u16 word_106 = dev->id[106];
2329 u16 word_209 = dev->id[209];
2330
2331 if ((word_106 & 0xc000) == 0x4000) {
2332 /* Number and offset of logical sectors per physical sector */
2333 if (word_106 & (1 << 13))
2334 log_per_phys = word_106 & 0xf;
2335 if ((word_209 & 0xc000) == 0x4000) {
2336 u16 first = dev->id[209] & 0x3fff;
2337 if (first > 0)
2338 lowest_aligned = (1 << log_per_phys) - first;
2339 }
2340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
2342 VPRINTK("ENTER\n");
2343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 if (args->cmd->cmnd[0] == READ_CAPACITY) {
Tejun Heo6a362612006-11-20 11:15:47 +09002345 if (last_lba >= 0xffffffffULL)
2346 last_lba = 0xffffffff;
Philip Pokorny0c144d02005-05-28 01:24:47 -07002347
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 /* sector count, 32-bit */
Tejun Heo87340e92008-04-28 17:48:51 +09002349 rbuf[0] = last_lba >> (8 * 3);
2350 rbuf[1] = last_lba >> (8 * 2);
2351 rbuf[2] = last_lba >> (8 * 1);
2352 rbuf[3] = last_lba;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
2354 /* sector size */
Tejun Heo87340e92008-04-28 17:48:51 +09002355 rbuf[6] = ATA_SECT_SIZE >> 8;
2356 rbuf[7] = ATA_SECT_SIZE & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 } else {
2358 /* sector count, 64-bit */
Tejun Heo87340e92008-04-28 17:48:51 +09002359 rbuf[0] = last_lba >> (8 * 7);
2360 rbuf[1] = last_lba >> (8 * 6);
2361 rbuf[2] = last_lba >> (8 * 5);
2362 rbuf[3] = last_lba >> (8 * 4);
2363 rbuf[4] = last_lba >> (8 * 3);
2364 rbuf[5] = last_lba >> (8 * 2);
2365 rbuf[6] = last_lba >> (8 * 1);
2366 rbuf[7] = last_lba;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368 /* sector size */
Tejun Heo87340e92008-04-28 17:48:51 +09002369 rbuf[10] = ATA_SECT_SIZE >> 8;
2370 rbuf[11] = ATA_SECT_SIZE & 0xff;
Martin K. Petersen61d79a82009-05-15 00:40:34 -04002371
2372 rbuf[12] = 0;
2373 rbuf[13] = log_per_phys;
2374 rbuf[14] = (lowest_aligned >> 8) & 0x3f;
2375 rbuf[15] = lowest_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
2377
2378 return 0;
2379}
2380
2381/**
2382 * ata_scsiop_report_luns - Simulate REPORT LUNS command
2383 * @args: device IDENTIFY data / SCSI command of interest.
2384 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 *
2386 * Simulate REPORT LUNS command.
2387 *
2388 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002389 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 */
Tejun Heo87340e92008-04-28 17:48:51 +09002391static unsigned int ata_scsiop_report_luns(struct ata_scsi_args *args, u8 *rbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392{
2393 VPRINTK("ENTER\n");
2394 rbuf[3] = 8; /* just one lun, LUN 0, size 8 bytes */
2395
2396 return 0;
2397}
2398
Tejun Heo77853bf2006-01-23 13:09:36 +09002399static void atapi_sense_complete(struct ata_queued_cmd *qc)
Jeff Garzika939c962005-10-05 17:09:16 -04002400{
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002401 if (qc->err_mask && ((qc->err_mask & AC_ERR_DEV) == 0)) {
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002402 /* FIXME: not quite right; we don't want the
2403 * translation of taskfile registers into
2404 * a sense descriptors, since that's only
2405 * correct for ATA, not ATAPI
2406 */
Tejun Heo750426a2006-11-14 22:37:35 +09002407 ata_gen_passthru_sense(qc);
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002408 }
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002409
2410 qc->scsidone(qc->scsicmd);
Tejun Heo77853bf2006-01-23 13:09:36 +09002411 ata_qc_free(qc);
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002412}
2413
2414/* is it pointless to prefer PIO for "safety reasons"? */
2415static inline int ata_pio_use_silly(struct ata_port *ap)
2416{
2417 return (ap->flags & ATA_FLAG_PIO_DMA);
2418}
2419
2420static void atapi_request_sense(struct ata_queued_cmd *qc)
2421{
2422 struct ata_port *ap = qc->ap;
2423 struct scsi_cmnd *cmd = qc->scsicmd;
Jeff Garzika939c962005-10-05 17:09:16 -04002424
2425 DPRINTK("ATAPI request sense\n");
2426
Jeff Garzika939c962005-10-05 17:09:16 -04002427 /* FIXME: is this needed? */
James Bottomley7ccd7202008-01-17 11:56:24 -06002428 memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
Jeff Garzika939c962005-10-05 17:09:16 -04002429
Tejun Heo127102a2008-04-07 22:47:21 +09002430#ifdef CONFIG_ATA_SFF
James Bottomley855d8542008-04-18 13:18:48 -05002431 if (ap->ops->sff_tf_read)
2432 ap->ops->sff_tf_read(ap, &qc->tf);
Tejun Heo127102a2008-04-07 22:47:21 +09002433#endif
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002434
2435 /* fill these in, for the case where they are -not- overwritten */
2436 cmd->sense_buffer[0] = 0x70;
2437 cmd->sense_buffer[2] = qc->tf.feature >> 4;
2438
2439 ata_qc_reinit(qc);
2440
Tejun Heo93f8fec2007-12-05 16:43:01 +09002441 /* setup sg table and init transfer direction */
akpm@linux-foundation.orgcadb7342008-01-15 16:01:52 -08002442 sg_init_one(&qc->sgent, cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE);
Tejun Heo93f8fec2007-12-05 16:43:01 +09002443 ata_sg_init(qc, &qc->sgent, 1);
Jeff Garzika939c962005-10-05 17:09:16 -04002444 qc->dma_dir = DMA_FROM_DEVICE;
2445
Tejun Heo6e7846e2006-02-12 23:32:58 +09002446 memset(&qc->cdb, 0, qc->dev->cdb_len);
Jeff Garzika939c962005-10-05 17:09:16 -04002447 qc->cdb[0] = REQUEST_SENSE;
2448 qc->cdb[4] = SCSI_SENSE_BUFFERSIZE;
2449
2450 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2451 qc->tf.command = ATA_CMD_PACKET;
2452
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002453 if (ata_pio_use_silly(ap)) {
Tejun Heo0dc36882007-12-18 16:34:43 -05002454 qc->tf.protocol = ATAPI_PROT_DMA;
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002455 qc->tf.feature |= ATAPI_PKT_DMA;
2456 } else {
Tejun Heo0dc36882007-12-18 16:34:43 -05002457 qc->tf.protocol = ATAPI_PROT_PIO;
Alan Cox2db78dd2007-10-02 13:53:04 -07002458 qc->tf.lbam = SCSI_SENSE_BUFFERSIZE;
2459 qc->tf.lbah = 0;
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002460 }
Jeff Garzika939c962005-10-05 17:09:16 -04002461 qc->nbytes = SCSI_SENSE_BUFFERSIZE;
2462
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002463 qc->complete_fn = atapi_sense_complete;
Jeff Garzika939c962005-10-05 17:09:16 -04002464
Tejun Heo8e0e6942006-03-31 20:41:11 +09002465 ata_qc_issue(qc);
Jeff Garzika939c962005-10-05 17:09:16 -04002466
2467 DPRINTK("EXIT\n");
2468}
2469
Tejun Heo77853bf2006-01-23 13:09:36 +09002470static void atapi_qc_complete(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
2472 struct scsi_cmnd *cmd = qc->scsicmd;
Albert Leea22e2eb2005-12-05 15:38:02 +08002473 unsigned int err_mask = qc->err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Jeff Garzika7dac442005-10-30 04:44:42 -05002475 VPRINTK("ENTER, err_mask 0x%X\n", err_mask);
Jeff Garzike12669e2005-10-05 18:39:23 -04002476
Tejun Heo246619d2006-05-15 20:58:16 +09002477 /* handle completion from new EH */
2478 if (unlikely(qc->ap->ops->error_handler &&
2479 (err_mask || qc->flags & ATA_QCFLAG_SENSE_VALID))) {
2480
2481 if (!(qc->flags & ATA_QCFLAG_SENSE_VALID)) {
2482 /* FIXME: not quite right; we don't want the
2483 * translation of taskfile registers into a
2484 * sense descriptors, since that's only
2485 * correct for ATA, not ATAPI
2486 */
Tejun Heo750426a2006-11-14 22:37:35 +09002487 ata_gen_passthru_sense(qc);
Tejun Heo246619d2006-05-15 20:58:16 +09002488 }
2489
Tejun Heo22aac082006-08-08 14:08:59 +09002490 /* SCSI EH automatically locks door if sdev->locked is
2491 * set. Sometimes door lock request continues to
2492 * fail, for example, when no media is present. This
2493 * creates a loop - SCSI EH issues door lock which
2494 * fails and gets invoked again to acquire sense data
2495 * for the failed command.
2496 *
2497 * If door lock fails, always clear sdev->locked to
2498 * avoid this infinite loop.
2499 */
2500 if (qc->cdb[0] == ALLOW_MEDIUM_REMOVAL)
2501 qc->dev->sdev->locked = 0;
2502
Tejun Heo246619d2006-05-15 20:58:16 +09002503 qc->scsicmd->result = SAM_STAT_CHECK_CONDITION;
2504 qc->scsidone(cmd);
2505 ata_qc_free(qc);
2506 return;
2507 }
2508
2509 /* successful completion or old EH failure path */
Jeff Garzika7dac442005-10-30 04:44:42 -05002510 if (unlikely(err_mask & AC_ERR_DEV)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 cmd->result = SAM_STAT_CHECK_CONDITION;
Jeff Garzikc6e6e662005-11-14 14:50:05 -05002512 atapi_request_sense(qc);
Tejun Heo77853bf2006-01-23 13:09:36 +09002513 return;
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002514 } else if (unlikely(err_mask)) {
Jeff Garzika7dac442005-10-30 04:44:42 -05002515 /* FIXME: not quite right; we don't want the
2516 * translation of taskfile registers into
2517 * a sense descriptors, since that's only
2518 * correct for ATA, not ATAPI
2519 */
Tejun Heo750426a2006-11-14 22:37:35 +09002520 ata_gen_passthru_sense(qc);
Tejun Heo74e6c8c2006-04-02 18:51:53 +09002521 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 u8 *scsicmd = cmd->cmnd;
2523
Tony Battersbyfd71da42005-12-21 16:35:44 -05002524 if ((scsicmd[0] == INQUIRY) && ((scsicmd[1] & 0x03) == 0)) {
Jeff Garzikb445c562008-02-29 19:10:51 -05002525 unsigned long flags;
Tejun Heo87340e92008-04-28 17:48:51 +09002526 u8 *buf;
Jeff Garzikb445c562008-02-29 19:10:51 -05002527
Tejun Heo87340e92008-04-28 17:48:51 +09002528 buf = ata_scsi_rbuf_get(cmd, true, &flags);
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002529
2530 /* ATAPI devices typically report zero for their SCSI version,
2531 * and sometimes deviate from the spec WRT response data
2532 * format. If SCSI version is reported as zero like normal,
2533 * then we make the following fixups: 1) Fake MMC-5 version,
2534 * to indicate to the Linux scsi midlayer this is a modern
2535 * device. 2) Ensure response data format / ATAPI information
2536 * are always correct.
2537 */
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002538 if (buf[2] == 0) {
2539 buf[2] = 0x5;
2540 buf[3] = 0x32;
2541 }
2542
Tejun Heo87340e92008-04-28 17:48:51 +09002543 ata_scsi_rbuf_put(cmd, true, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 }
Jeff Garzika15dbeb2005-10-05 15:02:14 -04002545
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 cmd->result = SAM_STAT_GOOD;
2547 }
2548
2549 qc->scsidone(cmd);
Tejun Heo77853bf2006-01-23 13:09:36 +09002550 ata_qc_free(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551}
2552/**
2553 * atapi_xlat - Initialize PACKET taskfile
2554 * @qc: command structure to be initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 *
2556 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002557 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 *
2559 * RETURNS:
2560 * Zero on success, non-zero on failure.
2561 */
Tejun Heoad706992006-12-17 10:45:57 +09002562static unsigned int atapi_xlat(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563{
Tejun Heo542b1442006-12-17 10:45:08 +09002564 struct scsi_cmnd *scmd = qc->scsicmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 struct ata_device *dev = qc->dev;
Tejun Heo542b1442006-12-17 10:45:08 +09002566 int nodata = (scmd->sc_data_direction == DMA_NONE);
Tejun Heo5895ef92008-06-17 12:36:26 +09002567 int using_pio = !nodata && (dev->flags & ATA_DFLAG_PIO);
Alan Cox2db78dd2007-10-02 13:53:04 -07002568 unsigned int nbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Tejun Heo2e5704f2006-12-17 10:46:33 +09002570 memset(qc->cdb, 0, dev->cdb_len);
2571 memcpy(qc->cdb, scmd->cmnd, scmd->cmd_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573 qc->complete_fn = atapi_qc_complete;
2574
2575 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
Tejun Heo542b1442006-12-17 10:45:08 +09002576 if (scmd->sc_data_direction == DMA_TO_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 qc->tf.flags |= ATA_TFLAG_WRITE;
2578 DPRINTK("direction: write\n");
2579 }
2580
2581 qc->tf.command = ATA_CMD_PACKET;
Tejun Heoaacda372008-03-18 17:47:43 +09002582 ata_qc_set_pc_nbytes(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Tejun Heoe00f1ff2007-06-27 02:47:35 +09002584 /* check whether ATAPI DMA is safe */
Tejun Heo5895ef92008-06-17 12:36:26 +09002585 if (!nodata && !using_pio && atapi_check_dma(qc))
Tejun Heoe00f1ff2007-06-27 02:47:35 +09002586 using_pio = 1;
2587
Tejun Heoe1902222007-11-26 20:58:02 +09002588 /* Some controller variants snoop this value for Packet
2589 * transfers to do state machine and FIFO management. Thus we
2590 * want to set it properly, and for DMA where it is
2591 * effectively meaningless.
2592 */
Tejun Heoaacda372008-03-18 17:47:43 +09002593 nbytes = min(ata_qc_raw_nbytes(qc), (unsigned int)63 * 1024);
Alan Cox2db78dd2007-10-02 13:53:04 -07002594
Tejun Heoe1902222007-11-26 20:58:02 +09002595 /* Most ATAPI devices which honor transfer chunk size don't
2596 * behave according to the spec when odd chunk size which
2597 * matches the transfer length is specified. If the number of
2598 * bytes to transfer is 2n+1. According to the spec, what
2599 * should happen is to indicate that 2n+1 is going to be
2600 * transferred and transfer 2n+2 bytes where the last byte is
2601 * padding.
2602 *
2603 * In practice, this doesn't happen. ATAPI devices first
2604 * indicate and transfer 2n bytes and then indicate and
2605 * transfer 2 bytes where the last byte is padding.
2606 *
2607 * This inconsistency confuses several controllers which
2608 * perform PIO using DMA such as Intel AHCIs and sil3124/32.
2609 * These controllers use actual number of transferred bytes to
2610 * update DMA poitner and transfer of 4n+2 bytes make those
2611 * controller push DMA pointer by 4n+4 bytes because SATA data
2612 * FISes are aligned to 4 bytes. This causes data corruption
2613 * and buffer overrun.
2614 *
2615 * Always setting nbytes to even number solves this problem
2616 * because then ATAPI devices don't have to split data at 2n
2617 * boundaries.
2618 */
2619 if (nbytes & 0x1)
2620 nbytes++;
2621
Alan Cox2db78dd2007-10-02 13:53:04 -07002622 qc->tf.lbam = (nbytes & 0xFF);
2623 qc->tf.lbah = (nbytes >> 8);
2624
Tejun Heo5895ef92008-06-17 12:36:26 +09002625 if (nodata)
2626 qc->tf.protocol = ATAPI_PROT_NODATA;
2627 else if (using_pio)
2628 qc->tf.protocol = ATAPI_PROT_PIO;
2629 else {
Tejun Heoe00f1ff2007-06-27 02:47:35 +09002630 /* DMA data xfer */
Tejun Heo0dc36882007-12-18 16:34:43 -05002631 qc->tf.protocol = ATAPI_PROT_DMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 qc->tf.feature |= ATAPI_PKT_DMA;
2633
Tejun Heo91163002008-02-21 13:25:50 +09002634 if ((dev->flags & ATA_DFLAG_DMADIR) &&
2635 (scmd->sc_data_direction != DMA_TO_DEVICE))
Albert Lee95de7192006-04-04 10:57:18 +08002636 /* some SATA bridges need us to indicate data xfer direction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 qc->tf.feature |= ATAPI_DMADIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 }
2639
Alan Cox2db78dd2007-10-02 13:53:04 -07002640
2641 /* FIXME: We need to translate 0x05 READ_BLOCK_LIMITS to a MODE_SENSE
2642 as ATAPI tape drives don't get this right otherwise */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 return 0;
2644}
2645
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002646static struct ata_device *ata_find_dev(struct ata_port *ap, int devno)
Tejun Heoab5b3a52006-05-31 18:27:34 +09002647{
Tejun Heo071f44b2008-04-07 22:47:22 +09002648 if (!sata_pmp_attached(ap)) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09002649 if (likely(devno < ata_link_max_devices(&ap->link)))
2650 return &ap->link.device[devno];
2651 } else {
2652 if (likely(devno < ap->nr_pmp_links))
2653 return &ap->pmp_link[devno].device[0];
2654 }
2655
Tejun Heoab5b3a52006-05-31 18:27:34 +09002656 return NULL;
2657}
2658
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002659static struct ata_device *__ata_scsi_find_dev(struct ata_port *ap,
2660 const struct scsi_device *scsidev)
Tejun Heoab5b3a52006-05-31 18:27:34 +09002661{
Tejun Heo41bda9c2007-08-06 18:36:24 +09002662 int devno;
Tejun Heoab5b3a52006-05-31 18:27:34 +09002663
Tejun Heo41bda9c2007-08-06 18:36:24 +09002664 /* skip commands not addressed to targets we simulate */
Tejun Heo071f44b2008-04-07 22:47:22 +09002665 if (!sata_pmp_attached(ap)) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09002666 if (unlikely(scsidev->channel || scsidev->lun))
2667 return NULL;
2668 devno = scsidev->id;
2669 } else {
2670 if (unlikely(scsidev->id || scsidev->lun))
2671 return NULL;
2672 devno = scsidev->channel;
2673 }
2674
2675 return ata_find_dev(ap, devno);
Tejun Heoab5b3a52006-05-31 18:27:34 +09002676}
2677
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678/**
2679 * ata_scsi_find_dev - lookup ata_device from scsi_cmnd
2680 * @ap: ATA port to which the device is attached
2681 * @scsidev: SCSI device from which we derive the ATA device
2682 *
2683 * Given various information provided in struct scsi_cmnd,
2684 * map that onto an ATA bus, and using that mapping
2685 * determine which ata_device is associated with the
2686 * SCSI command to be sent.
2687 *
2688 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002689 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 *
2691 * RETURNS:
2692 * Associated ATA device, or %NULL if not found.
2693 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694static struct ata_device *
Jeff Garzik057ace52005-10-22 14:27:05 -04002695ata_scsi_find_dev(struct ata_port *ap, const struct scsi_device *scsidev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696{
Tejun Heoab5b3a52006-05-31 18:27:34 +09002697 struct ata_device *dev = __ata_scsi_find_dev(ap, scsidev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Tejun Heo2486fa52008-07-31 07:52:40 +09002699 if (unlikely(!dev || !ata_dev_enabled(dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 return NULL;
2701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 return dev;
2703}
2704
Jeff Garzikb0955182005-05-12 15:45:22 -04002705/*
2706 * ata_scsi_map_proto - Map pass-thru protocol value to taskfile value.
2707 * @byte1: Byte 1 from pass-thru CDB.
2708 *
2709 * RETURNS:
2710 * ATA_PROT_UNKNOWN if mapping failed/unimplemented, protocol otherwise.
2711 */
2712static u8
2713ata_scsi_map_proto(u8 byte1)
2714{
2715 switch((byte1 & 0x1e) >> 1) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002716 case 3: /* Non-data */
2717 return ATA_PROT_NODATA;
Jeff Garzikb0955182005-05-12 15:45:22 -04002718
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002719 case 6: /* DMA */
2720 case 10: /* UDMA Data-in */
2721 case 11: /* UDMA Data-Out */
2722 return ATA_PROT_DMA;
Jeff Garzikb0955182005-05-12 15:45:22 -04002723
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002724 case 4: /* PIO Data-in */
2725 case 5: /* PIO Data-out */
2726 return ATA_PROT_PIO;
Jeff Garzikb0955182005-05-12 15:45:22 -04002727
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002728 case 0: /* Hard Reset */
2729 case 1: /* SRST */
2730 case 8: /* Device Diagnostic */
2731 case 9: /* Device Reset */
2732 case 7: /* DMA Queued */
2733 case 12: /* FPDMA */
2734 case 15: /* Return Response Info */
2735 default: /* Reserved */
2736 break;
Jeff Garzikb0955182005-05-12 15:45:22 -04002737 }
2738
2739 return ATA_PROT_UNKNOWN;
2740}
2741
2742/**
2743 * ata_scsi_pass_thru - convert ATA pass-thru CDB to taskfile
2744 * @qc: command structure to be initialized
Jeff Garzikb0955182005-05-12 15:45:22 -04002745 *
2746 * Handles either 12 or 16-byte versions of the CDB.
2747 *
2748 * RETURNS:
2749 * Zero on success, non-zero on failure.
2750 */
Tejun Heoad706992006-12-17 10:45:57 +09002751static unsigned int ata_scsi_pass_thru(struct ata_queued_cmd *qc)
Jeff Garzikb0955182005-05-12 15:45:22 -04002752{
2753 struct ata_taskfile *tf = &(qc->tf);
Tejun Heo542b1442006-12-17 10:45:08 +09002754 struct scsi_cmnd *scmd = qc->scsicmd;
Alan Coxf79d4092006-05-22 16:55:11 +01002755 struct ata_device *dev = qc->dev;
Tejun Heoad706992006-12-17 10:45:57 +09002756 const u8 *cdb = scmd->cmnd;
Jeff Garzikb0955182005-05-12 15:45:22 -04002757
Tejun Heo542b1442006-12-17 10:45:08 +09002758 if ((tf->protocol = ata_scsi_map_proto(cdb[1])) == ATA_PROT_UNKNOWN)
Tejun Heo9a405252005-12-02 11:49:11 +09002759 goto invalid_fld;
Jeff Garzik8190bdb2006-05-24 01:53:39 -04002760
Alan Coxae8d4ee2007-11-04 22:05:49 -05002761 /*
Jeff Garzikb0955182005-05-12 15:45:22 -04002762 * 12 and 16 byte CDBs use different offsets to
2763 * provide the various register values.
2764 */
Tejun Heo542b1442006-12-17 10:45:08 +09002765 if (cdb[0] == ATA_16) {
Jeff Garzikb0955182005-05-12 15:45:22 -04002766 /*
2767 * 16-byte CDB - may contain extended commands.
2768 *
2769 * If that is the case, copy the upper byte register values.
2770 */
Tejun Heo542b1442006-12-17 10:45:08 +09002771 if (cdb[1] & 0x01) {
2772 tf->hob_feature = cdb[3];
2773 tf->hob_nsect = cdb[5];
2774 tf->hob_lbal = cdb[7];
2775 tf->hob_lbam = cdb[9];
2776 tf->hob_lbah = cdb[11];
Jeff Garzikb0955182005-05-12 15:45:22 -04002777 tf->flags |= ATA_TFLAG_LBA48;
2778 } else
2779 tf->flags &= ~ATA_TFLAG_LBA48;
2780
2781 /*
2782 * Always copy low byte, device and command registers.
2783 */
Tejun Heo542b1442006-12-17 10:45:08 +09002784 tf->feature = cdb[4];
2785 tf->nsect = cdb[6];
2786 tf->lbal = cdb[8];
2787 tf->lbam = cdb[10];
2788 tf->lbah = cdb[12];
2789 tf->device = cdb[13];
2790 tf->command = cdb[14];
Jeff Garzikb0955182005-05-12 15:45:22 -04002791 } else {
2792 /*
2793 * 12-byte CDB - incapable of extended commands.
2794 */
2795 tf->flags &= ~ATA_TFLAG_LBA48;
2796
Tejun Heo542b1442006-12-17 10:45:08 +09002797 tf->feature = cdb[3];
2798 tf->nsect = cdb[4];
2799 tf->lbal = cdb[5];
2800 tf->lbam = cdb[6];
2801 tf->lbah = cdb[7];
2802 tf->device = cdb[8];
2803 tf->command = cdb[9];
Jeff Garzikb0955182005-05-12 15:45:22 -04002804 }
Albert Leefa4453c2007-06-07 15:52:07 +08002805
2806 /* enforce correct master/slave bit */
2807 tf->device = dev->devno ?
2808 tf->device | ATA_DEV1 : tf->device & ~ATA_DEV1;
Jeff Garzikb0955182005-05-12 15:45:22 -04002809
Tejun Heobd30add2009-09-03 16:08:11 +09002810 /* READ/WRITE LONG use a non-standard sect_size */
2811 qc->sect_size = ATA_SECT_SIZE;
2812 switch (tf->command) {
2813 case ATA_CMD_READ_LONG:
2814 case ATA_CMD_READ_LONG_ONCE:
2815 case ATA_CMD_WRITE_LONG:
2816 case ATA_CMD_WRITE_LONG_ONCE:
2817 if (tf->protocol != ATA_PROT_PIO || tf->nsect != 1)
2818 goto invalid_fld;
2819 qc->sect_size = scsi_bufflen(scmd);
2820 }
2821
2822 /*
2823 * Set flags so that all registers will be written, pass on
2824 * write indication (used for PIO/DMA setup), result TF is
2825 * copied back and we don't whine too much about its failure.
2826 */
2827 tf->flags = ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2828 if (scmd->sc_data_direction == DMA_TO_DEVICE)
2829 tf->flags |= ATA_TFLAG_WRITE;
2830
2831 qc->flags |= ATA_QCFLAG_RESULT_TF | ATA_QCFLAG_QUIET;
2832
2833 /*
2834 * Set transfer length.
2835 *
2836 * TODO: find out if we need to do more here to
2837 * cover scatter/gather case.
2838 */
2839 ata_qc_set_pc_nbytes(qc);
2840
2841 /* We may not issue DMA commands if no DMA mode is set */
2842 if (tf->protocol == ATA_PROT_DMA && dev->dma_mode == 0)
2843 goto invalid_fld;
2844
Albert Lee1dce5892007-06-07 15:49:22 +08002845 /* sanity check for pio multi commands */
2846 if ((cdb[1] & 0xe0) && !is_multi_taskfile(tf))
2847 goto invalid_fld;
2848
2849 if (is_multi_taskfile(tf)) {
2850 unsigned int multi_count = 1 << (cdb[1] >> 5);
2851
2852 /* compare the passed through multi_count
2853 * with the cached multi_count of libata
2854 */
2855 if (multi_count != dev->multi_count)
2856 ata_dev_printk(dev, KERN_WARNING,
2857 "invalid multi_count %u ignored\n",
2858 multi_count);
Alan Coxd26fc952007-07-06 19:13:52 -04002859 }
Albert Lee1dce5892007-06-07 15:49:22 +08002860
Jeff Garzikb0955182005-05-12 15:45:22 -04002861 /*
2862 * Filter SET_FEATURES - XFER MODE command -- otherwise,
2863 * SET_FEATURES - XFER MODE must be preceded/succeeded
2864 * by an update to hardware-specific registers for each
2865 * controller (i.e. the reason for ->set_piomode(),
2866 * ->set_dmamode(), and ->post_set_mode() hooks).
2867 */
Tejun Heobd30add2009-09-03 16:08:11 +09002868 if (tf->command == ATA_CMD_SET_FEATURES &&
2869 tf->feature == SETFEATURES_XFER)
Tejun Heo9a405252005-12-02 11:49:11 +09002870 goto invalid_fld;
Jeff Garzikb0955182005-05-12 15:45:22 -04002871
2872 /*
Tejun Heobd30add2009-09-03 16:08:11 +09002873 * Filter TPM commands by default. These provide an
2874 * essentially uncontrolled encrypted "back door" between
2875 * applications and the disk. Set libata.allow_tpm=1 if you
2876 * have a real reason for wanting to use them. This ensures
2877 * that installed software cannot easily mess stuff up without
2878 * user intent. DVR type users will probably ship with this enabled
2879 * for movie content management.
Jeff Garzikb0955182005-05-12 15:45:22 -04002880 *
Tejun Heobd30add2009-09-03 16:08:11 +09002881 * Note that for ATA8 we can issue a DCS change and DCS freeze lock
2882 * for this and should do in future but that it is not sufficient as
2883 * DCS is an optional feature set. Thus we also do the software filter
2884 * so that we comply with the TC consortium stated goal that the user
2885 * can turn off TC features of their system.
Jeff Garzikb0955182005-05-12 15:45:22 -04002886 */
Tejun Heobd30add2009-09-03 16:08:11 +09002887 if (tf->command >= 0x5C && tf->command <= 0x5F && !libata_allow_tpm)
2888 goto invalid_fld;
Tejun Heoe61e0672006-05-15 20:57:40 +09002889
Jeff Garzikb0955182005-05-12 15:45:22 -04002890 return 0;
Tejun Heo9a405252005-12-02 11:49:11 +09002891
2892 invalid_fld:
Tejun Heo542b1442006-12-17 10:45:08 +09002893 ata_scsi_set_sense(scmd, ILLEGAL_REQUEST, 0x24, 0x00);
Tejun Heo9a405252005-12-02 11:49:11 +09002894 /* "Invalid field in cdb" */
2895 return 1;
Jeff Garzikb0955182005-05-12 15:45:22 -04002896}
2897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898/**
2899 * ata_get_xlat_func - check if SCSI to ATA translation is possible
2900 * @dev: ATA device
2901 * @cmd: SCSI command opcode to consider
2902 *
2903 * Look up the SCSI command given, and determine whether the
2904 * SCSI command is to be translated or simulated.
2905 *
2906 * RETURNS:
2907 * Pointer to translation function if possible, %NULL if not.
2908 */
2909
2910static inline ata_xlat_func_t ata_get_xlat_func(struct ata_device *dev, u8 cmd)
2911{
2912 switch (cmd) {
2913 case READ_6:
2914 case READ_10:
2915 case READ_16:
2916
2917 case WRITE_6:
2918 case WRITE_10:
2919 case WRITE_16:
2920 return ata_scsi_rw_xlat;
2921
2922 case SYNCHRONIZE_CACHE:
2923 if (ata_try_flush_cache(dev))
2924 return ata_scsi_flush_xlat;
2925 break;
2926
2927 case VERIFY:
2928 case VERIFY_16:
2929 return ata_scsi_verify_xlat;
Jeff Garzikb0955182005-05-12 15:45:22 -04002930
2931 case ATA_12:
2932 case ATA_16:
2933 return ata_scsi_pass_thru;
Jeff Garzikda613962005-08-29 19:01:43 -04002934
Douglas Gilbert972dcaf2005-08-11 03:35:53 -04002935 case START_STOP:
2936 return ata_scsi_start_stop_xlat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 }
2938
2939 return NULL;
2940}
2941
2942/**
2943 * ata_scsi_dump_cdb - dump SCSI command contents to dmesg
2944 * @ap: ATA port to which the command was being sent
2945 * @cmd: SCSI command to dump
2946 *
2947 * Prints the contents of a SCSI command via printk().
2948 */
2949
2950static inline void ata_scsi_dump_cdb(struct ata_port *ap,
2951 struct scsi_cmnd *cmd)
2952{
2953#ifdef ATA_DEBUG
2954 struct scsi_device *scsidev = cmd->device;
2955 u8 *scsicmd = cmd->cmnd;
2956
2957 DPRINTK("CDB (%u:%d,%d,%d) %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
Tejun Heo44877b42007-02-21 01:06:51 +09002958 ap->print_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 scsidev->channel, scsidev->id, scsidev->lun,
2960 scsicmd[0], scsicmd[1], scsicmd[2], scsicmd[3],
2961 scsicmd[4], scsicmd[5], scsicmd[6], scsicmd[7],
2962 scsicmd[8]);
2963#endif
2964}
2965
Tejun Heo542b1442006-12-17 10:45:08 +09002966static inline int __ata_scsi_queuecmd(struct scsi_cmnd *scmd,
Tejun Heo2115ea92006-05-15 21:03:39 +09002967 void (*done)(struct scsi_cmnd *),
2968 struct ata_device *dev)
Brian Kingeb3f0f92006-03-23 17:30:02 -06002969{
Mark Lordbaf4fdf2007-08-08 01:08:45 +09002970 u8 scsi_op = scmd->cmnd[0];
2971 ata_xlat_func_t xlat_func;
Tejun Heo2115ea92006-05-15 21:03:39 +09002972 int rc = 0;
2973
Mark Lordbaf4fdf2007-08-08 01:08:45 +09002974 if (dev->class == ATA_DEV_ATA) {
2975 if (unlikely(!scmd->cmd_len || scmd->cmd_len > dev->cdb_len))
2976 goto bad_cdb_len;
2977
2978 xlat_func = ata_get_xlat_func(dev, scsi_op);
2979 } else {
2980 if (unlikely(!scmd->cmd_len))
2981 goto bad_cdb_len;
2982
2983 xlat_func = NULL;
2984 if (likely((scsi_op != ATA_16) || !atapi_passthru16)) {
2985 /* relay SCSI command to ATAPI device */
Mark Lord607126c2007-11-15 13:13:59 +09002986 int len = COMMAND_SIZE(scsi_op);
2987 if (unlikely(len > scmd->cmd_len || len > dev->cdb_len))
Mark Lordbaf4fdf2007-08-08 01:08:45 +09002988 goto bad_cdb_len;
2989
2990 xlat_func = atapi_xlat;
2991 } else {
2992 /* ATA_16 passthru, treat as an ATA command */
2993 if (unlikely(scmd->cmd_len > 16))
2994 goto bad_cdb_len;
2995
2996 xlat_func = ata_get_xlat_func(dev, scsi_op);
2997 }
Tejun Heo2e5704f2006-12-17 10:46:33 +09002998 }
2999
Mark Lordbaf4fdf2007-08-08 01:08:45 +09003000 if (xlat_func)
3001 rc = ata_scsi_translate(dev, scmd, done, xlat_func);
3002 else
3003 ata_scsi_simulate(dev, scmd, done);
Tejun Heo2115ea92006-05-15 21:03:39 +09003004
3005 return rc;
Mark Lordbaf4fdf2007-08-08 01:08:45 +09003006
3007 bad_cdb_len:
3008 DPRINTK("bad CDB len=%u, scsi_op=0x%02x, max=%u\n",
3009 scmd->cmd_len, scsi_op, dev->cdb_len);
3010 scmd->result = DID_ERROR << 16;
3011 done(scmd);
3012 return 0;
Brian Kingeb3f0f92006-03-23 17:30:02 -06003013}
3014
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015/**
3016 * ata_scsi_queuecmd - Issue SCSI cdb to libata-managed device
3017 * @cmd: SCSI command to be sent
3018 * @done: Completion function, called when command is complete
3019 *
3020 * In some cases, this function translates SCSI commands into
3021 * ATA taskfiles, and queues the taskfiles to be sent to
3022 * hardware. In other cases, this function simulates a
3023 * SCSI device by evaluating and responding to certain
3024 * SCSI commands. This creates the overall effect of
3025 * ATA and ATAPI devices appearing as SCSI devices.
3026 *
3027 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003028 * Releases scsi-layer-held lock, and obtains host lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 *
3030 * RETURNS:
Tejun Heo2115ea92006-05-15 21:03:39 +09003031 * Return value from __ata_scsi_queuecmd() if @cmd can be queued,
3032 * 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
3035{
3036 struct ata_port *ap;
3037 struct ata_device *dev;
3038 struct scsi_device *scsidev = cmd->device;
Jeff Garzik005a5a02005-10-30 23:31:48 -05003039 struct Scsi_Host *shost = scsidev->host;
Tejun Heo2115ea92006-05-15 21:03:39 +09003040 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
Jeff Garzik35bb94b2006-04-11 13:12:34 -04003042 ap = ata_shost_to_port(shost);
Jeff Garzik005a5a02005-10-30 23:31:48 -05003043
3044 spin_unlock(shost->host_lock);
Jeff Garzikba6a1302006-06-22 23:46:10 -04003045 spin_lock(ap->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046
3047 ata_scsi_dump_cdb(ap, cmd);
3048
3049 dev = ata_scsi_find_dev(ap, scsidev);
Brian Kingeb3f0f92006-03-23 17:30:02 -06003050 if (likely(dev))
Tejun Heo2115ea92006-05-15 21:03:39 +09003051 rc = __ata_scsi_queuecmd(cmd, done, dev);
Brian Kingeb3f0f92006-03-23 17:30:02 -06003052 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 cmd->result = (DID_BAD_TARGET << 16);
3054 done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 }
3056
Jeff Garzikba6a1302006-06-22 23:46:10 -04003057 spin_unlock(ap->lock);
Jeff Garzik005a5a02005-10-30 23:31:48 -05003058 spin_lock(shost->host_lock);
Tejun Heo2115ea92006-05-15 21:03:39 +09003059 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060}
3061
3062/**
3063 * ata_scsi_simulate - simulate SCSI command on ATA device
Randy Dunlapc893a3a2006-01-28 13:15:32 -05003064 * @dev: the target device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 * @cmd: SCSI command being sent to device.
3066 * @done: SCSI command completion function.
3067 *
3068 * Interprets and directly executes a select list of SCSI commands
3069 * that can be handled internally.
3070 *
3071 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003072 * spin_lock_irqsave(host lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 */
3074
Tejun Heo3373efd2006-05-15 20:57:53 +09003075void ata_scsi_simulate(struct ata_device *dev, struct scsi_cmnd *cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 void (*done)(struct scsi_cmnd *))
3077{
3078 struct ata_scsi_args args;
Jeff Garzik057ace52005-10-22 14:27:05 -04003079 const u8 *scsicmd = cmd->cmnd;
Jeff Garzik45394142007-09-21 06:23:42 -04003080 u8 tmp8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081
Tejun Heo9a3dccc2006-01-06 09:56:18 +01003082 args.dev = dev;
3083 args.id = dev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 args.cmd = cmd;
3085 args.done = done;
3086
3087 switch(scsicmd[0]) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003088 /* TODO: worth improving? */
3089 case FORMAT_UNIT:
3090 ata_scsi_invalid_field(cmd, done);
3091 break;
3092
3093 case INQUIRY:
3094 if (scsicmd[1] & 2) /* is CmdDt set? */
Jeff Garzik00bd0202007-09-21 07:26:08 -04003095 ata_scsi_invalid_field(cmd, done);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003096 else if ((scsicmd[1] & 1) == 0) /* is EVPD clear? */
3097 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_std);
3098 else switch (scsicmd[2]) {
3099 case 0x00:
3100 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 break;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003102 case 0x80:
3103 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 break;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003105 case 0x83:
3106 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_83);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 break;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003108 case 0x89:
3109 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_89);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 break;
Matthew Wilcox1e9dbc92008-06-19 13:13:38 -06003111 case 0xb1:
3112 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_b1);
3113 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 default:
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003115 ata_scsi_invalid_field(cmd, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 break;
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003117 }
3118 break;
3119
3120 case MODE_SENSE:
3121 case MODE_SENSE_10:
3122 ata_scsi_rbuf_fill(&args, ata_scsiop_mode_sense);
3123 break;
3124
3125 case MODE_SELECT: /* unconditionally return */
3126 case MODE_SELECT_10: /* bad-field-in-cdb */
3127 ata_scsi_invalid_field(cmd, done);
3128 break;
3129
3130 case READ_CAPACITY:
3131 ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
3132 break;
3133
3134 case SERVICE_ACTION_IN:
3135 if ((scsicmd[1] & 0x1f) == SAI_READ_CAPACITY_16)
3136 ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
3137 else
3138 ata_scsi_invalid_field(cmd, done);
3139 break;
3140
3141 case REPORT_LUNS:
3142 ata_scsi_rbuf_fill(&args, ata_scsiop_report_luns);
3143 break;
3144
3145 case REQUEST_SENSE:
3146 ata_scsi_set_sense(cmd, 0, 0, 0);
3147 cmd->result = (DRIVER_SENSE << 24);
3148 done(cmd);
3149 break;
3150
3151 /* if we reach this, then writeback caching is disabled,
3152 * turning this into a no-op.
3153 */
3154 case SYNCHRONIZE_CACHE:
3155 /* fall through */
3156
3157 /* no-op's, complete with success */
3158 case REZERO_UNIT:
3159 case SEEK_6:
3160 case SEEK_10:
3161 case TEST_UNIT_READY:
3162 ata_scsi_rbuf_fill(&args, ata_scsiop_noop);
3163 break;
3164
3165 case SEND_DIAGNOSTIC:
3166 tmp8 = scsicmd[1] & ~(1 << 3);
3167 if ((tmp8 == 0x4) && (!scsicmd[3]) && (!scsicmd[4]))
3168 ata_scsi_rbuf_fill(&args, ata_scsiop_noop);
3169 else
3170 ata_scsi_invalid_field(cmd, done);
3171 break;
3172
3173 /* all other commands */
3174 default:
3175 ata_scsi_set_sense(cmd, ILLEGAL_REQUEST, 0x20, 0x0);
3176 /* "Invalid command operation code" */
3177 done(cmd);
3178 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 }
3180}
3181
Tejun Heof3187192007-04-17 23:44:07 +09003182int ata_scsi_add_hosts(struct ata_host *host, struct scsi_host_template *sht)
3183{
3184 int i, rc;
3185
3186 for (i = 0; i < host->n_ports; i++) {
3187 struct ata_port *ap = host->ports[i];
3188 struct Scsi_Host *shost;
3189
3190 rc = -ENOMEM;
3191 shost = scsi_host_alloc(sht, sizeof(struct ata_port *));
3192 if (!shost)
3193 goto err_alloc;
3194
3195 *(struct ata_port **)&shost->hostdata[0] = ap;
3196 ap->scsi_host = shost;
3197
3198 shost->transportt = &ata_scsi_transport_template;
3199 shost->unique_id = ap->print_id;
3200 shost->max_id = 16;
3201 shost->max_lun = 1;
3202 shost->max_channel = 1;
3203 shost->max_cmd_len = 16;
3204
Tejun Heo31cc23b2007-09-23 13:14:12 +09003205 /* Schedule policy is determined by ->qc_defer()
3206 * callback and it needs to see every deferred qc.
3207 * Set host_blocked to 1 to prevent SCSI midlayer from
3208 * automatically deferring requests.
3209 */
3210 shost->max_host_blocked = 1;
3211
Tejun Heof3187192007-04-17 23:44:07 +09003212 rc = scsi_add_host(ap->scsi_host, ap->host->dev);
3213 if (rc)
3214 goto err_add;
3215 }
3216
3217 return 0;
3218
3219 err_add:
3220 scsi_host_put(host->ports[i]->scsi_host);
3221 err_alloc:
3222 while (--i >= 0) {
3223 struct Scsi_Host *shost = host->ports[i]->scsi_host;
3224
3225 scsi_remove_host(shost);
3226 scsi_host_put(shost);
3227 }
3228 return rc;
3229}
3230
Tejun Heo1ae46312007-07-16 14:29:40 +09003231void ata_scsi_scan_host(struct ata_port *ap, int sync)
Jeff Garzik644dd0c2005-10-03 15:55:19 -04003232{
Tejun Heo1ae46312007-07-16 14:29:40 +09003233 int tries = 5;
3234 struct ata_device *last_failed_dev = NULL;
Tejun Heo41bda9c2007-08-06 18:36:24 +09003235 struct ata_link *link;
Tejun Heo1ae46312007-07-16 14:29:40 +09003236 struct ata_device *dev;
Jeff Garzik644dd0c2005-10-03 15:55:19 -04003237
Tejun Heo198e0fe2006-04-02 18:51:52 +09003238 if (ap->flags & ATA_FLAG_DISABLED)
Jeff Garzik644dd0c2005-10-03 15:55:19 -04003239 return;
3240
Tejun Heo1ae46312007-07-16 14:29:40 +09003241 repeat:
Tejun Heo1eca4362008-11-03 20:03:17 +09003242 ata_for_each_link(link, ap, EDGE) {
3243 ata_for_each_dev(dev, link, ENABLED) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09003244 struct scsi_device *sdev;
3245 int channel = 0, id = 0;
Jeff Garzik3f19ee82005-10-03 21:36:41 -04003246
Tejun Heo1eca4362008-11-03 20:03:17 +09003247 if (dev->sdev)
Tejun Heo41bda9c2007-08-06 18:36:24 +09003248 continue;
Tejun Heo3edebac2006-05-31 18:27:40 +09003249
Tejun Heo41bda9c2007-08-06 18:36:24 +09003250 if (ata_is_host_link(link))
3251 id = dev->devno;
3252 else
3253 channel = link->pmp;
3254
3255 sdev = __scsi_add_device(ap->scsi_host, channel, id, 0,
3256 NULL);
3257 if (!IS_ERR(sdev)) {
3258 dev->sdev = sdev;
3259 scsi_device_put(sdev);
3260 }
Tejun Heo3edebac2006-05-31 18:27:40 +09003261 }
Jeff Garzik3f19ee82005-10-03 21:36:41 -04003262 }
Tejun Heo1ae46312007-07-16 14:29:40 +09003263
3264 /* If we scanned while EH was in progress or allocation
3265 * failure occurred, scan would have failed silently. Check
3266 * whether all devices are attached.
3267 */
Tejun Heo1eca4362008-11-03 20:03:17 +09003268 ata_for_each_link(link, ap, EDGE) {
3269 ata_for_each_dev(dev, link, ENABLED) {
3270 if (!dev->sdev)
Tejun Heo41bda9c2007-08-06 18:36:24 +09003271 goto exit_loop;
3272 }
Tejun Heo1ae46312007-07-16 14:29:40 +09003273 }
Tejun Heo41bda9c2007-08-06 18:36:24 +09003274 exit_loop:
3275 if (!link)
Tejun Heo1ae46312007-07-16 14:29:40 +09003276 return;
3277
3278 /* we're missing some SCSI devices */
3279 if (sync) {
3280 /* If caller requested synchrnous scan && we've made
3281 * any progress, sleep briefly and repeat.
3282 */
3283 if (dev != last_failed_dev) {
3284 msleep(100);
3285 last_failed_dev = dev;
3286 goto repeat;
3287 }
3288
3289 /* We might be failing to detect boot device, give it
3290 * a few more chances.
3291 */
3292 if (--tries) {
3293 msleep(100);
3294 goto repeat;
3295 }
3296
3297 ata_port_printk(ap, KERN_ERR, "WARNING: synchronous SCSI scan "
3298 "failed without making any progress,\n"
3299 " switching to async\n");
3300 }
3301
3302 queue_delayed_work(ata_aux_wq, &ap->hotplug_task,
3303 round_jiffies_relative(HZ));
Jeff Garzik644dd0c2005-10-03 15:55:19 -04003304}
Tejun Heo0ea035a2006-05-31 18:28:01 +09003305
3306/**
3307 * ata_scsi_offline_dev - offline attached SCSI device
3308 * @dev: ATA device to offline attached SCSI device for
3309 *
3310 * This function is called from ata_eh_hotplug() and responsible
3311 * for taking the SCSI device attached to @dev offline. This
Jeff Garzikcca39742006-08-24 03:19:22 -04003312 * function is called with host lock which protects dev->sdev
Tejun Heo0ea035a2006-05-31 18:28:01 +09003313 * against clearing.
3314 *
3315 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04003316 * spin_lock_irqsave(host lock)
Tejun Heo0ea035a2006-05-31 18:28:01 +09003317 *
3318 * RETURNS:
3319 * 1 if attached SCSI device exists, 0 otherwise.
3320 */
3321int ata_scsi_offline_dev(struct ata_device *dev)
3322{
3323 if (dev->sdev) {
3324 scsi_device_set_state(dev->sdev, SDEV_OFFLINE);
3325 return 1;
3326 }
3327 return 0;
3328}
Tejun Heo580b2102006-05-31 18:28:05 +09003329
3330/**
3331 * ata_scsi_remove_dev - remove attached SCSI device
3332 * @dev: ATA device to remove attached SCSI device for
3333 *
3334 * This function is called from ata_eh_scsi_hotplug() and
3335 * responsible for removing the SCSI device attached to @dev.
3336 *
3337 * LOCKING:
3338 * Kernel thread context (may sleep).
3339 */
3340static void ata_scsi_remove_dev(struct ata_device *dev)
3341{
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003342 struct ata_port *ap = dev->link->ap;
Tejun Heo580b2102006-05-31 18:28:05 +09003343 struct scsi_device *sdev;
3344 unsigned long flags;
3345
3346 /* Alas, we need to grab scan_mutex to ensure SCSI device
3347 * state doesn't change underneath us and thus
3348 * scsi_device_get() always succeeds. The mutex locking can
3349 * be removed if there is __scsi_device_get() interface which
3350 * increments reference counts regardless of device state.
3351 */
Jeff Garzikcca39742006-08-24 03:19:22 -04003352 mutex_lock(&ap->scsi_host->scan_mutex);
Jeff Garzikba6a1302006-06-22 23:46:10 -04003353 spin_lock_irqsave(ap->lock, flags);
Tejun Heo580b2102006-05-31 18:28:05 +09003354
Jeff Garzikcca39742006-08-24 03:19:22 -04003355 /* clearing dev->sdev is protected by host lock */
Tejun Heo580b2102006-05-31 18:28:05 +09003356 sdev = dev->sdev;
3357 dev->sdev = NULL;
3358
3359 if (sdev) {
3360 /* If user initiated unplug races with us, sdev can go
Jeff Garzikcca39742006-08-24 03:19:22 -04003361 * away underneath us after the host lock and
Tejun Heo580b2102006-05-31 18:28:05 +09003362 * scan_mutex are released. Hold onto it.
3363 */
3364 if (scsi_device_get(sdev) == 0) {
3365 /* The following ensures the attached sdev is
3366 * offline on return from ata_scsi_offline_dev()
3367 * regardless it wins or loses the race
3368 * against this function.
3369 */
3370 scsi_device_set_state(sdev, SDEV_OFFLINE);
3371 } else {
3372 WARN_ON(1);
3373 sdev = NULL;
3374 }
3375 }
3376
Jeff Garzikba6a1302006-06-22 23:46:10 -04003377 spin_unlock_irqrestore(ap->lock, flags);
Jeff Garzikcca39742006-08-24 03:19:22 -04003378 mutex_unlock(&ap->scsi_host->scan_mutex);
Tejun Heo580b2102006-05-31 18:28:05 +09003379
3380 if (sdev) {
3381 ata_dev_printk(dev, KERN_INFO, "detaching (SCSI %s)\n",
Kay Sieversb9d5fc42009-01-06 10:44:43 -08003382 dev_name(&sdev->sdev_gendev));
Tejun Heo580b2102006-05-31 18:28:05 +09003383
3384 scsi_remove_device(sdev);
3385 scsi_device_put(sdev);
3386 }
3387}
3388
Tejun Heo41bda9c2007-08-06 18:36:24 +09003389static void ata_scsi_handle_link_detach(struct ata_link *link)
3390{
3391 struct ata_port *ap = link->ap;
3392 struct ata_device *dev;
3393
Tejun Heo1eca4362008-11-03 20:03:17 +09003394 ata_for_each_dev(dev, link, ALL) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09003395 unsigned long flags;
3396
3397 if (!(dev->flags & ATA_DFLAG_DETACHED))
3398 continue;
3399
3400 spin_lock_irqsave(ap->lock, flags);
3401 dev->flags &= ~ATA_DFLAG_DETACHED;
3402 spin_unlock_irqrestore(ap->lock, flags);
3403
3404 ata_scsi_remove_dev(dev);
3405 }
3406}
3407
Tejun Heo580b2102006-05-31 18:28:05 +09003408/**
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003409 * ata_scsi_media_change_notify - send media change event
Randy Dunlapc5d0e6a2007-10-15 17:29:46 -07003410 * @dev: Pointer to the disk device with media change event
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003411 *
3412 * Tell the block layer to send a media change notification
3413 * event.
3414 *
3415 * LOCKING:
Tejun Heo854c73a2007-09-23 13:14:11 +09003416 * spin_lock_irqsave(host lock)
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003417 */
Tejun Heo854c73a2007-09-23 13:14:11 +09003418void ata_scsi_media_change_notify(struct ata_device *dev)
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003419{
Tejun Heo854c73a2007-09-23 13:14:11 +09003420 if (dev->sdev)
Jeff Garzikf26792d2007-10-29 17:18:39 -04003421 sdev_evt_send_simple(dev->sdev, SDEV_EVT_MEDIA_CHANGE,
3422 GFP_ATOMIC);
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003423}
Kristen Carlson Accardi2f294962007-08-15 04:11:25 -04003424
3425/**
Tejun Heo580b2102006-05-31 18:28:05 +09003426 * ata_scsi_hotplug - SCSI part of hotplug
David Howells65f27f32006-11-22 14:55:48 +00003427 * @work: Pointer to ATA port to perform SCSI hotplug on
Tejun Heo580b2102006-05-31 18:28:05 +09003428 *
3429 * Perform SCSI part of hotplug. It's executed from a separate
3430 * workqueue after EH completes. This is necessary because SCSI
3431 * hot plugging requires working EH and hot unplugging is
3432 * synchronized with hot plugging with a mutex.
3433 *
3434 * LOCKING:
3435 * Kernel thread context (may sleep).
3436 */
David Howells65f27f32006-11-22 14:55:48 +00003437void ata_scsi_hotplug(struct work_struct *work)
Tejun Heo580b2102006-05-31 18:28:05 +09003438{
David Howells65f27f32006-11-22 14:55:48 +00003439 struct ata_port *ap =
3440 container_of(work, struct ata_port, hotplug_task.work);
Tejun Heo41bda9c2007-08-06 18:36:24 +09003441 int i;
Tejun Heo580b2102006-05-31 18:28:05 +09003442
Tejun Heob51e9e52006-06-29 01:29:30 +09003443 if (ap->pflags & ATA_PFLAG_UNLOADING) {
Tejun Heo580b2102006-05-31 18:28:05 +09003444 DPRINTK("ENTER/EXIT - unloading\n");
3445 return;
3446 }
3447
3448 DPRINTK("ENTER\n");
3449
Tejun Heo41bda9c2007-08-06 18:36:24 +09003450 /* Unplug detached devices. We cannot use link iterator here
3451 * because PMP links have to be scanned even if PMP is
3452 * currently not attached. Iterate manually.
3453 */
3454 ata_scsi_handle_link_detach(&ap->link);
3455 if (ap->pmp_link)
3456 for (i = 0; i < SATA_PMP_MAX_PORTS; i++)
3457 ata_scsi_handle_link_detach(&ap->pmp_link[i]);
Tejun Heo580b2102006-05-31 18:28:05 +09003458
3459 /* scan for new ones */
Tejun Heo1ae46312007-07-16 14:29:40 +09003460 ata_scsi_scan_host(ap, 0);
Tejun Heo580b2102006-05-31 18:28:05 +09003461
3462 DPRINTK("EXIT\n");
3463}
Tejun Heo83c47bc2006-05-31 18:28:07 +09003464
3465/**
3466 * ata_scsi_user_scan - indication for user-initiated bus scan
3467 * @shost: SCSI host to scan
3468 * @channel: Channel to scan
3469 * @id: ID to scan
3470 * @lun: LUN to scan
3471 *
3472 * This function is called when user explicitly requests bus
3473 * scan. Set probe pending flag and invoke EH.
3474 *
3475 * LOCKING:
3476 * SCSI layer (we don't care)
3477 *
3478 * RETURNS:
3479 * Zero.
3480 */
3481static int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel,
3482 unsigned int id, unsigned int lun)
3483{
3484 struct ata_port *ap = ata_shost_to_port(shost);
3485 unsigned long flags;
Tejun Heo41bda9c2007-08-06 18:36:24 +09003486 int devno, rc = 0;
Tejun Heo83c47bc2006-05-31 18:28:07 +09003487
3488 if (!ap->ops->error_handler)
3489 return -EOPNOTSUPP;
3490
Tejun Heo41bda9c2007-08-06 18:36:24 +09003491 if (lun != SCAN_WILD_CARD && lun)
Tejun Heo83c47bc2006-05-31 18:28:07 +09003492 return -EINVAL;
3493
Tejun Heo071f44b2008-04-07 22:47:22 +09003494 if (!sata_pmp_attached(ap)) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09003495 if (channel != SCAN_WILD_CARD && channel)
3496 return -EINVAL;
3497 devno = id;
3498 } else {
3499 if (id != SCAN_WILD_CARD && id)
3500 return -EINVAL;
3501 devno = channel;
3502 }
3503
Jeff Garzikba6a1302006-06-22 23:46:10 -04003504 spin_lock_irqsave(ap->lock, flags);
Tejun Heo83c47bc2006-05-31 18:28:07 +09003505
Tejun Heo41bda9c2007-08-06 18:36:24 +09003506 if (devno == SCAN_WILD_CARD) {
3507 struct ata_link *link;
3508
Tejun Heo1eca4362008-11-03 20:03:17 +09003509 ata_for_each_link(link, ap, EDGE) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09003510 struct ata_eh_info *ehi = &link->eh_info;
Tejun Heob558edd2008-01-24 00:05:14 +09003511 ehi->probe_mask |= ATA_ALL_DEVICES;
Tejun Heocf480622008-01-24 00:05:14 +09003512 ehi->action |= ATA_EH_RESET;
Tejun Heo41bda9c2007-08-06 18:36:24 +09003513 }
Tejun Heo83c47bc2006-05-31 18:28:07 +09003514 } else {
Tejun Heo41bda9c2007-08-06 18:36:24 +09003515 struct ata_device *dev = ata_find_dev(ap, devno);
Tejun Heo83c47bc2006-05-31 18:28:07 +09003516
3517 if (dev) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09003518 struct ata_eh_info *ehi = &dev->link->eh_info;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003519 ehi->probe_mask |= 1 << dev->devno;
Tejun Heocf480622008-01-24 00:05:14 +09003520 ehi->action |= ATA_EH_RESET;
Tejun Heo83c47bc2006-05-31 18:28:07 +09003521 } else
3522 rc = -EINVAL;
3523 }
3524
Tejun Heo309afcb2006-09-30 18:07:17 +09003525 if (rc == 0) {
Tejun Heo83c47bc2006-05-31 18:28:07 +09003526 ata_port_schedule_eh(ap);
Tejun Heo309afcb2006-09-30 18:07:17 +09003527 spin_unlock_irqrestore(ap->lock, flags);
3528 ata_port_wait_eh(ap);
3529 } else
3530 spin_unlock_irqrestore(ap->lock, flags);
Tejun Heo83c47bc2006-05-31 18:28:07 +09003531
3532 return rc;
3533}
zhao, forrest3057ac32006-06-12 12:01:34 +08003534
3535/**
Tejun Heod0171262006-06-12 22:51:14 +09003536 * ata_scsi_dev_rescan - initiate scsi_rescan_device()
David Howells65f27f32006-11-22 14:55:48 +00003537 * @work: Pointer to ATA port to perform scsi_rescan_device()
zhao, forrest3057ac32006-06-12 12:01:34 +08003538 *
Tejun Heod0171262006-06-12 22:51:14 +09003539 * After ATA pass thru (SAT) commands are executed successfully,
3540 * libata need to propagate the changes to SCSI layer. This
3541 * function must be executed from ata_aux_wq such that sdev
3542 * attach/detach don't race with rescan.
zhao, forrest3057ac32006-06-12 12:01:34 +08003543 *
Tejun Heod0171262006-06-12 22:51:14 +09003544 * LOCKING:
3545 * Kernel thread context (may sleep).
zhao, forrest3057ac32006-06-12 12:01:34 +08003546 */
David Howells65f27f32006-11-22 14:55:48 +00003547void ata_scsi_dev_rescan(struct work_struct *work)
zhao, forrest3057ac32006-06-12 12:01:34 +08003548{
David Howells65f27f32006-11-22 14:55:48 +00003549 struct ata_port *ap =
3550 container_of(work, struct ata_port, scsi_rescan_task);
Tejun Heo41bda9c2007-08-06 18:36:24 +09003551 struct ata_link *link;
Tejun Heof58229f2007-08-06 18:36:23 +09003552 struct ata_device *dev;
Tejun Heof84e7e42006-11-22 11:21:31 +09003553 unsigned long flags;
zhao, forrest3057ac32006-06-12 12:01:34 +08003554
Tejun Heof84e7e42006-11-22 11:21:31 +09003555 spin_lock_irqsave(ap->lock, flags);
zhao, forrest3057ac32006-06-12 12:01:34 +08003556
Tejun Heo1eca4362008-11-03 20:03:17 +09003557 ata_for_each_link(link, ap, EDGE) {
3558 ata_for_each_dev(dev, link, ENABLED) {
Tejun Heo41bda9c2007-08-06 18:36:24 +09003559 struct scsi_device *sdev = dev->sdev;
Tejun Heof84e7e42006-11-22 11:21:31 +09003560
Tejun Heo1eca4362008-11-03 20:03:17 +09003561 if (!sdev)
Tejun Heo41bda9c2007-08-06 18:36:24 +09003562 continue;
3563 if (scsi_device_get(sdev))
3564 continue;
Tejun Heof84e7e42006-11-22 11:21:31 +09003565
Tejun Heo41bda9c2007-08-06 18:36:24 +09003566 spin_unlock_irqrestore(ap->lock, flags);
3567 scsi_rescan_device(&(sdev->sdev_gendev));
3568 scsi_device_put(sdev);
3569 spin_lock_irqsave(ap->lock, flags);
3570 }
zhao, forrest3057ac32006-06-12 12:01:34 +08003571 }
Tejun Heof84e7e42006-11-22 11:21:31 +09003572
3573 spin_unlock_irqrestore(ap->lock, flags);
zhao, forrest3057ac32006-06-12 12:01:34 +08003574}
Brian King80289162006-08-07 14:27:31 -05003575
3576/**
3577 * ata_sas_port_alloc - Allocate port for a SAS attached SATA device
Jeff Garzik4f931372006-09-29 05:07:25 -04003578 * @host: ATA host container for all SAS ports
Brian King80289162006-08-07 14:27:31 -05003579 * @port_info: Information from low-level host driver
Jeff Garzikcca39742006-08-24 03:19:22 -04003580 * @shost: SCSI host that the scsi device is attached to
Brian King80289162006-08-07 14:27:31 -05003581 *
3582 * LOCKING:
3583 * PCI/etc. bus probe sem.
3584 *
3585 * RETURNS:
3586 * ata_port pointer on success / NULL on failure.
3587 */
3588
Jeff Garzikcca39742006-08-24 03:19:22 -04003589struct ata_port *ata_sas_port_alloc(struct ata_host *host,
Brian King80289162006-08-07 14:27:31 -05003590 struct ata_port_info *port_info,
Jeff Garzikcca39742006-08-24 03:19:22 -04003591 struct Scsi_Host *shost)
Brian King80289162006-08-07 14:27:31 -05003592{
Tejun Heof3187192007-04-17 23:44:07 +09003593 struct ata_port *ap;
Brian King80289162006-08-07 14:27:31 -05003594
Tejun Heof3187192007-04-17 23:44:07 +09003595 ap = ata_port_alloc(host);
Brian King80289162006-08-07 14:27:31 -05003596 if (!ap)
3597 return NULL;
3598
Tejun Heof3187192007-04-17 23:44:07 +09003599 ap->port_no = 0;
Jeff Garzikcca39742006-08-24 03:19:22 -04003600 ap->lock = shost->host_lock;
Tejun Heof3187192007-04-17 23:44:07 +09003601 ap->pio_mask = port_info->pio_mask;
3602 ap->mwdma_mask = port_info->mwdma_mask;
3603 ap->udma_mask = port_info->udma_mask;
3604 ap->flags |= port_info->flags;
3605 ap->ops = port_info->port_ops;
3606 ap->cbl = ATA_CBL_SATA;
3607
Brian King80289162006-08-07 14:27:31 -05003608 return ap;
3609}
3610EXPORT_SYMBOL_GPL(ata_sas_port_alloc);
3611
3612/**
3613 * ata_sas_port_start - Set port up for dma.
3614 * @ap: Port to initialize
3615 *
3616 * Called just after data structures for each port are
James Bottomleydde20202008-02-19 11:36:56 +01003617 * initialized.
Brian King80289162006-08-07 14:27:31 -05003618 *
3619 * May be used as the port_start() entry in ata_port_operations.
3620 *
3621 * LOCKING:
3622 * Inherited from caller.
3623 */
3624int ata_sas_port_start(struct ata_port *ap)
3625{
James Bottomleydde20202008-02-19 11:36:56 +01003626 return 0;
Brian King80289162006-08-07 14:27:31 -05003627}
3628EXPORT_SYMBOL_GPL(ata_sas_port_start);
3629
3630/**
3631 * ata_port_stop - Undo ata_sas_port_start()
3632 * @ap: Port to shut down
3633 *
Brian King80289162006-08-07 14:27:31 -05003634 * May be used as the port_stop() entry in ata_port_operations.
3635 *
3636 * LOCKING:
3637 * Inherited from caller.
3638 */
3639
3640void ata_sas_port_stop(struct ata_port *ap)
3641{
Brian King80289162006-08-07 14:27:31 -05003642}
3643EXPORT_SYMBOL_GPL(ata_sas_port_stop);
3644
3645/**
3646 * ata_sas_port_init - Initialize a SATA device
3647 * @ap: SATA port to initialize
3648 *
3649 * LOCKING:
3650 * PCI/etc. bus probe sem.
3651 *
3652 * RETURNS:
3653 * Zero on success, non-zero on error.
3654 */
3655
3656int ata_sas_port_init(struct ata_port *ap)
3657{
3658 int rc = ap->ops->port_start(ap);
3659
Tejun Heof3187192007-04-17 23:44:07 +09003660 if (!rc) {
3661 ap->print_id = ata_print_id++;
Brian King80289162006-08-07 14:27:31 -05003662 rc = ata_bus_probe(ap);
Tejun Heof3187192007-04-17 23:44:07 +09003663 }
Brian King80289162006-08-07 14:27:31 -05003664
3665 return rc;
3666}
3667EXPORT_SYMBOL_GPL(ata_sas_port_init);
3668
3669/**
3670 * ata_sas_port_destroy - Destroy a SATA port allocated by ata_sas_port_alloc
3671 * @ap: SATA port to destroy
3672 *
3673 */
3674
3675void ata_sas_port_destroy(struct ata_port *ap)
3676{
Tejun Heof0d36ef2007-01-20 16:00:28 +09003677 if (ap->ops->port_stop)
3678 ap->ops->port_stop(ap);
Brian King80289162006-08-07 14:27:31 -05003679 kfree(ap);
3680}
3681EXPORT_SYMBOL_GPL(ata_sas_port_destroy);
3682
3683/**
3684 * ata_sas_slave_configure - Default slave_config routine for libata devices
3685 * @sdev: SCSI device to configure
3686 * @ap: ATA port to which SCSI device is attached
3687 *
3688 * RETURNS:
3689 * Zero.
3690 */
3691
3692int ata_sas_slave_configure(struct scsi_device *sdev, struct ata_port *ap)
3693{
3694 ata_scsi_sdev_config(sdev);
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003695 ata_scsi_dev_config(sdev, ap->link.device);
Brian King80289162006-08-07 14:27:31 -05003696 return 0;
3697}
3698EXPORT_SYMBOL_GPL(ata_sas_slave_configure);
3699
3700/**
3701 * ata_sas_queuecmd - Issue SCSI cdb to libata-managed device
3702 * @cmd: SCSI command to be sent
3703 * @done: Completion function, called when command is complete
3704 * @ap: ATA port to which the command is being sent
3705 *
3706 * RETURNS:
Brian King08475a12006-11-20 13:51:56 -06003707 * Return value from __ata_scsi_queuecmd() if @cmd can be queued,
3708 * 0 otherwise.
Brian King80289162006-08-07 14:27:31 -05003709 */
3710
3711int ata_sas_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *),
3712 struct ata_port *ap)
3713{
Brian King08475a12006-11-20 13:51:56 -06003714 int rc = 0;
3715
Brian King80289162006-08-07 14:27:31 -05003716 ata_scsi_dump_cdb(ap, cmd);
3717
Tejun Heo2486fa52008-07-31 07:52:40 +09003718 if (likely(ata_dev_enabled(ap->link.device)))
Tejun Heo9af5c9c2007-08-06 18:36:22 +09003719 rc = __ata_scsi_queuecmd(cmd, done, ap->link.device);
Brian King80289162006-08-07 14:27:31 -05003720 else {
3721 cmd->result = (DID_BAD_TARGET << 16);
3722 done(cmd);
3723 }
Brian King08475a12006-11-20 13:51:56 -06003724 return rc;
Brian King80289162006-08-07 14:27:31 -05003725}
3726EXPORT_SYMBOL_GPL(ata_sas_queuecmd);