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