]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/ata/libata-scsi.c
ata: ATA Command Priority Disabled By Default
[mirror_ubuntu-artful-kernel.git] / drivers / ata / libata-scsi.c
CommitLineData
1da177e4 1/*
af36d7f0
JG
2 * libata-scsi.c - helper library for ATA
3 *
8c3d3d4b 4 * Maintained by: Tejun Heo <tj@kernel.org>
af36d7f0
JG
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>
38789fda 40#include <linux/export.h>
1da177e4 41#include <scsi/scsi.h>
1da177e4 42#include <scsi/scsi_host.h>
beb40487 43#include <scsi/scsi_cmnd.h>
85837ebd 44#include <scsi/scsi_eh.h>
005a5a06 45#include <scsi/scsi_device.h>
a6e6ce8e 46#include <scsi/scsi_tcq.h>
30afc84c 47#include <scsi/scsi_transport.h>
1da177e4 48#include <linux/libata.h>
b095518e 49#include <linux/hdreg.h>
2dcb407e 50#include <linux/uaccess.h>
2a6e58d2 51#include <linux/suspend.h>
18f0f978 52#include <asm/unaligned.h>
8e061784 53#include <linux/ioprio.h>
1da177e4
LT
54
55#include "libata.h"
d9027470 56#include "libata-transport.h"
1da177e4 57
87340e98
TH
58#define ATA_SCSI_RBUF_SIZE 4096
59
60static DEFINE_SPINLOCK(ata_scsi_rbuf_lock);
61static u8 ata_scsi_rbuf[ATA_SCSI_RBUF_SIZE];
b095518e 62
ad706991 63typedef unsigned int (*ata_xlat_func_t)(struct ata_queued_cmd *qc);
ab5b3a5b 64
2dcb407e 65static struct ata_device *__ata_scsi_find_dev(struct ata_port *ap,
ab5b3a5b 66 const struct scsi_device *scsidev);
2dcb407e 67static struct ata_device *ata_scsi_find_dev(struct ata_port *ap,
ab5b3a5b 68 const struct scsi_device *scsidev);
1da177e4 69
00ac37f5
DG
70#define RW_RECOVERY_MPAGE 0x1
71#define RW_RECOVERY_MPAGE_LEN 12
72#define CACHE_MPAGE 0x8
73#define CACHE_MPAGE_LEN 20
74#define CONTROL_MPAGE 0xa
75#define CONTROL_MPAGE_LEN 12
76#define ALL_MPAGES 0x3f
77#define ALL_SUB_MPAGES 0xff
78
79
24f75686 80static const u8 def_rw_recovery_mpage[RW_RECOVERY_MPAGE_LEN] = {
00ac37f5
DG
81 RW_RECOVERY_MPAGE,
82 RW_RECOVERY_MPAGE_LEN - 2,
24f75686 83 (1 << 7), /* AWRE */
00ac37f5
DG
84 0, /* read retry count */
85 0, 0, 0, 0,
86 0, /* write retry count */
87 0, 0, 0
88};
89
90static const u8 def_cache_mpage[CACHE_MPAGE_LEN] = {
91 CACHE_MPAGE,
92 CACHE_MPAGE_LEN - 2,
93 0, /* contains WCE, needs to be 0 for logic */
94 0, 0, 0, 0, 0, 0, 0, 0, 0,
95 0, /* contains DRA, needs to be 0 for logic */
96 0, 0, 0, 0, 0, 0, 0
97};
98
99static const u8 def_control_mpage[CONTROL_MPAGE_LEN] = {
100 CONTROL_MPAGE,
101 CONTROL_MPAGE_LEN - 2,
102 2, /* DSENSE=0, GLTSD=1 */
103 0, /* [QAM+QERR may be 1, see 05-359r1] */
104 0, 0, 0, 0, 0xff, 0xff,
105 0, 30 /* extended self test time, see 05-359r1 */
106};
107
c93b263e
TH
108static const char *ata_lpm_policy_names[] = {
109 [ATA_LPM_UNKNOWN] = "max_performance",
110 [ATA_LPM_MAX_POWER] = "max_performance",
111 [ATA_LPM_MED_POWER] = "medium_power",
112 [ATA_LPM_MIN_POWER] = "min_power",
ca77329f
KCA
113};
114
ecd75ad5 115static ssize_t ata_scsi_lpm_store(struct device *device,
c93b263e
TH
116 struct device_attribute *attr,
117 const char *buf, size_t count)
ca77329f 118{
ecd75ad5 119 struct Scsi_Host *shost = class_to_shost(device);
ca77329f 120 struct ata_port *ap = ata_shost_to_port(shost);
ecd75ad5
TH
121 struct ata_link *link;
122 struct ata_device *dev;
c93b263e 123 enum ata_lpm_policy policy;
6b7ae954 124 unsigned long flags;
c93b263e
TH
125
126 /* UNKNOWN is internal state, iterate from MAX_POWER */
127 for (policy = ATA_LPM_MAX_POWER;
128 policy < ARRAY_SIZE(ata_lpm_policy_names); policy++) {
129 const char *name = ata_lpm_policy_names[policy];
130
131 if (strncmp(name, buf, strlen(name)) == 0)
ca77329f 132 break;
ca77329f 133 }
c93b263e 134 if (policy == ARRAY_SIZE(ata_lpm_policy_names))
ca77329f
KCA
135 return -EINVAL;
136
6b7ae954 137 spin_lock_irqsave(ap->lock, flags);
ecd75ad5
TH
138
139 ata_for_each_link(link, ap, EDGE) {
140 ata_for_each_dev(dev, &ap->link, ENABLED) {
141 if (dev->horkage & ATA_HORKAGE_NOLPM) {
142 count = -EOPNOTSUPP;
143 goto out_unlock;
144 }
145 }
146 }
147
6b7ae954
TH
148 ap->target_lpm_policy = policy;
149 ata_port_schedule_eh(ap);
ecd75ad5 150out_unlock:
6b7ae954 151 spin_unlock_irqrestore(ap->lock, flags);
ca77329f
KCA
152 return count;
153}
154
c93b263e
TH
155static ssize_t ata_scsi_lpm_show(struct device *dev,
156 struct device_attribute *attr, char *buf)
ca77329f 157{
ee959b00 158 struct Scsi_Host *shost = class_to_shost(dev);
ca77329f 159 struct ata_port *ap = ata_shost_to_port(shost);
ca77329f 160
6b7ae954 161 if (ap->target_lpm_policy >= ARRAY_SIZE(ata_lpm_policy_names))
ca77329f
KCA
162 return -EINVAL;
163
c93b263e 164 return snprintf(buf, PAGE_SIZE, "%s\n",
6b7ae954 165 ata_lpm_policy_names[ap->target_lpm_policy]);
ca77329f 166}
ee959b00 167DEVICE_ATTR(link_power_management_policy, S_IRUGO | S_IWUSR,
c93b263e 168 ata_scsi_lpm_show, ata_scsi_lpm_store);
ee959b00 169EXPORT_SYMBOL_GPL(dev_attr_link_power_management_policy);
ca77329f 170
45fabbb7
EO
171static ssize_t ata_scsi_park_show(struct device *device,
172 struct device_attribute *attr, char *buf)
173{
174 struct scsi_device *sdev = to_scsi_device(device);
175 struct ata_port *ap;
176 struct ata_link *link;
177 struct ata_device *dev;
3948b6f2 178 unsigned long now;
45fabbb7
EO
179 unsigned int uninitialized_var(msecs);
180 int rc = 0;
181
182 ap = ata_shost_to_port(sdev->host);
183
3948b6f2 184 spin_lock_irq(ap->lock);
45fabbb7
EO
185 dev = ata_scsi_find_dev(ap, sdev);
186 if (!dev) {
187 rc = -ENODEV;
188 goto unlock;
189 }
190 if (dev->flags & ATA_DFLAG_NO_UNLOAD) {
191 rc = -EOPNOTSUPP;
192 goto unlock;
193 }
194
195 link = dev->link;
a464189d 196 now = jiffies;
45fabbb7
EO
197 if (ap->pflags & ATA_PFLAG_EH_IN_PROGRESS &&
198 link->eh_context.unloaded_mask & (1 << dev->devno) &&
a464189d
EO
199 time_after(dev->unpark_deadline, now))
200 msecs = jiffies_to_msecs(dev->unpark_deadline - now);
45fabbb7
EO
201 else
202 msecs = 0;
203
204unlock:
205 spin_unlock_irq(ap->lock);
206
207 return rc ? rc : snprintf(buf, 20, "%u\n", msecs);
208}
209
210static ssize_t ata_scsi_park_store(struct device *device,
211 struct device_attribute *attr,
212 const char *buf, size_t len)
213{
214 struct scsi_device *sdev = to_scsi_device(device);
215 struct ata_port *ap;
216 struct ata_device *dev;
217 long int input;
218 unsigned long flags;
219 int rc;
220
42b9ab7a
JH
221 rc = kstrtol(buf, 10, &input);
222 if (rc)
223 return rc;
224 if (input < -2)
45fabbb7
EO
225 return -EINVAL;
226 if (input > ATA_TMOUT_MAX_PARK) {
227 rc = -EOVERFLOW;
228 input = ATA_TMOUT_MAX_PARK;
229 }
230
231 ap = ata_shost_to_port(sdev->host);
232
233 spin_lock_irqsave(ap->lock, flags);
234 dev = ata_scsi_find_dev(ap, sdev);
235 if (unlikely(!dev)) {
236 rc = -ENODEV;
237 goto unlock;
238 }
9162c657
HR
239 if (dev->class != ATA_DEV_ATA &&
240 dev->class != ATA_DEV_ZAC) {
45fabbb7
EO
241 rc = -EOPNOTSUPP;
242 goto unlock;
243 }
244
245 if (input >= 0) {
246 if (dev->flags & ATA_DFLAG_NO_UNLOAD) {
247 rc = -EOPNOTSUPP;
248 goto unlock;
249 }
250
251 dev->unpark_deadline = ata_deadline(jiffies, input);
252 dev->link->eh_info.dev_action[dev->devno] |= ATA_EH_PARK;
253 ata_port_schedule_eh(ap);
254 complete(&ap->park_req_pending);
255 } else {
256 switch (input) {
257 case -1:
258 dev->flags &= ~ATA_DFLAG_NO_UNLOAD;
259 break;
260 case -2:
261 dev->flags |= ATA_DFLAG_NO_UNLOAD;
262 break;
263 }
264 }
265unlock:
266 spin_unlock_irqrestore(ap->lock, flags);
267
268 return rc ? rc : len;
269}
270DEVICE_ATTR(unload_heads, S_IRUGO | S_IWUSR,
271 ata_scsi_park_show, ata_scsi_park_store);
272EXPORT_SYMBOL_GPL(dev_attr_unload_heads);
273
84f95243
AM
274static ssize_t ata_ncq_prio_enable_show(struct device *device,
275 struct device_attribute *attr, char *buf)
276{
277 struct scsi_device *sdev = to_scsi_device(device);
278 struct ata_port *ap;
279 struct ata_device *dev;
280 bool ncq_prio_enable;
281 int rc = 0;
282
283 ap = ata_shost_to_port(sdev->host);
284
285 spin_lock_irq(ap->lock);
286 dev = ata_scsi_find_dev(ap, sdev);
287 if (!dev) {
288 rc = -ENODEV;
289 goto unlock;
290 }
291
292 ncq_prio_enable = dev->flags & ATA_DFLAG_NCQ_PRIO_ENABLE;
293
294unlock:
295 spin_unlock_irq(ap->lock);
296
297 return rc ? rc : snprintf(buf, 20, "%u\n", ncq_prio_enable);
298}
299
300static ssize_t ata_ncq_prio_enable_store(struct device *device,
301 struct device_attribute *attr,
302 const char *buf, size_t len)
303{
304 struct scsi_device *sdev = to_scsi_device(device);
305 struct ata_port *ap;
306 struct ata_device *dev;
307 long int input;
308 unsigned long flags;
309 int rc;
310
311 rc = kstrtol(buf, 10, &input);
312 if (rc)
313 return rc;
314 if ((input < 0) || (input > 1))
315 return -EINVAL;
316
317 ap = ata_shost_to_port(sdev->host);
318
319 spin_lock_irqsave(ap->lock, flags);
320 dev = ata_scsi_find_dev(ap, sdev);
321 if (unlikely(!dev)) {
322 rc = -ENODEV;
323 goto unlock;
324 }
325
326 if (input)
327 dev->flags |= ATA_DFLAG_NCQ_PRIO_ENABLE;
328 else
329 dev->flags &= ~ATA_DFLAG_NCQ_PRIO_ENABLE;
330
331unlock:
332 spin_unlock_irqrestore(ap->lock, flags);
333
334 return rc ? rc : len;
335}
336
337DEVICE_ATTR(ncq_prio_enable, S_IRUGO | S_IWUSR,
338 ata_ncq_prio_enable_show, ata_ncq_prio_enable_store);
339EXPORT_SYMBOL_GPL(dev_attr_ncq_prio_enable);
340
06dbde5f
HR
341void ata_scsi_set_sense(struct ata_device *dev, struct scsi_cmnd *cmd,
342 u8 sk, u8 asc, u8 ascq)
f0761be3 343{
06dbde5f
HR
344 bool d_sense = (dev->flags & ATA_DFLAG_D_SENSE);
345
5b01e4b9
HR
346 if (!cmd)
347 return;
348
f0761be3
TH
349 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
350
06dbde5f 351 scsi_build_sense_buffer(d_sense, cmd->sense_buffer, sk, asc, ascq);
f0761be3
TH
352}
353
492bf621
HR
354void ata_scsi_set_sense_information(struct ata_device *dev,
355 struct scsi_cmnd *cmd,
356 const struct ata_taskfile *tf)
357{
358 u64 information;
359
360 if (!cmd)
361 return;
362
363 information = ata_tf_read_block(tf, dev);
364 if (information == U64_MAX)
365 return;
366
367 scsi_set_sense_information(cmd->sense_buffer,
368 SCSI_SENSE_BUFFERSIZE, information);
369}
370
bcfc867d 371static void ata_scsi_set_invalid_field(struct ata_device *dev,
0df10b84 372 struct scsi_cmnd *cmd, u16 field, u8 bit)
bcfc867d
HR
373{
374 ata_scsi_set_sense(dev, cmd, ILLEGAL_REQUEST, 0x24, 0x0);
8554e5e1 375 /* "Invalid field in CDB" */
bcfc867d 376 scsi_set_sense_field_pointer(cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE,
0df10b84 377 field, bit, 1);
bcfc867d
HR
378}
379
7780081c
HR
380static void ata_scsi_set_invalid_parameter(struct ata_device *dev,
381 struct scsi_cmnd *cmd, u16 field)
382{
383 /* "Invalid field in parameter list" */
384 ata_scsi_set_sense(dev, cmd, ILLEGAL_REQUEST, 0x26, 0x0);
385 scsi_set_sense_field_pointer(cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE,
386 field, 0xff, 0);
f0761be3
TH
387}
388
18f7ba4c
KCA
389static ssize_t
390ata_scsi_em_message_store(struct device *dev, struct device_attribute *attr,
391 const char *buf, size_t count)
392{
393 struct Scsi_Host *shost = class_to_shost(dev);
394 struct ata_port *ap = ata_shost_to_port(shost);
395 if (ap->ops->em_store && (ap->flags & ATA_FLAG_EM))
396 return ap->ops->em_store(ap, buf, count);
397 return -EINVAL;
398}
399
400static ssize_t
401ata_scsi_em_message_show(struct device *dev, struct device_attribute *attr,
402 char *buf)
403{
404 struct Scsi_Host *shost = class_to_shost(dev);
405 struct ata_port *ap = ata_shost_to_port(shost);
406
407 if (ap->ops->em_show && (ap->flags & ATA_FLAG_EM))
408 return ap->ops->em_show(ap, buf);
409 return -EINVAL;
410}
ea7a5ed5 411DEVICE_ATTR(em_message, S_IRUGO | S_IWUSR,
18f7ba4c
KCA
412 ata_scsi_em_message_show, ata_scsi_em_message_store);
413EXPORT_SYMBOL_GPL(dev_attr_em_message);
414
415static ssize_t
416ata_scsi_em_message_type_show(struct device *dev, struct device_attribute *attr,
417 char *buf)
418{
419 struct Scsi_Host *shost = class_to_shost(dev);
420 struct ata_port *ap = ata_shost_to_port(shost);
421
422 return snprintf(buf, 23, "%d\n", ap->em_message_type);
423}
424DEVICE_ATTR(em_message_type, S_IRUGO,
425 ata_scsi_em_message_type_show, NULL);
426EXPORT_SYMBOL_GPL(dev_attr_em_message_type);
427
428static ssize_t
429ata_scsi_activity_show(struct device *dev, struct device_attribute *attr,
430 char *buf)
431{
432 struct scsi_device *sdev = to_scsi_device(dev);
433 struct ata_port *ap = ata_shost_to_port(sdev->host);
434 struct ata_device *atadev = ata_scsi_find_dev(ap, sdev);
435
26cd4d65
XF
436 if (atadev && ap->ops->sw_activity_show &&
437 (ap->flags & ATA_FLAG_SW_ACTIVITY))
18f7ba4c
KCA
438 return ap->ops->sw_activity_show(atadev, buf);
439 return -EINVAL;
440}
441
442static ssize_t
443ata_scsi_activity_store(struct device *dev, struct device_attribute *attr,
444 const char *buf, size_t count)
445{
446 struct scsi_device *sdev = to_scsi_device(dev);
447 struct ata_port *ap = ata_shost_to_port(sdev->host);
448 struct ata_device *atadev = ata_scsi_find_dev(ap, sdev);
449 enum sw_activity val;
450 int rc;
451
26cd4d65
XF
452 if (atadev && ap->ops->sw_activity_store &&
453 (ap->flags & ATA_FLAG_SW_ACTIVITY)) {
18f7ba4c
KCA
454 val = simple_strtoul(buf, NULL, 0);
455 switch (val) {
456 case OFF: case BLINK_ON: case BLINK_OFF:
457 rc = ap->ops->sw_activity_store(atadev, val);
458 if (!rc)
459 return count;
460 else
461 return rc;
462 }
463 }
464 return -EINVAL;
465}
ea7a5ed5 466DEVICE_ATTR(sw_activity, S_IWUSR | S_IRUGO, ata_scsi_activity_show,
18f7ba4c
KCA
467 ata_scsi_activity_store);
468EXPORT_SYMBOL_GPL(dev_attr_sw_activity);
469
45fabbb7
EO
470struct device_attribute *ata_common_sdev_attrs[] = {
471 &dev_attr_unload_heads,
84f95243 472 &dev_attr_ncq_prio_enable,
45fabbb7
EO
473 NULL
474};
475EXPORT_SYMBOL_GPL(ata_common_sdev_attrs);
476
06dbde5f 477static void ata_scsi_invalid_field(struct ata_device *dev,
bcfc867d 478 struct scsi_cmnd *cmd, u16 field)
ae006510 479{
0df10b84 480 ata_scsi_set_invalid_field(dev, cmd, field, 0xff);
b27dcfb0 481 cmd->scsi_done(cmd);
ae006510
DG
482}
483
1da177e4
LT
484/**
485 * ata_std_bios_param - generic bios head/sector/cylinder calculator used by sd.
486 * @sdev: SCSI device for which BIOS geometry is to be determined
487 * @bdev: block device associated with @sdev
488 * @capacity: capacity of SCSI device
489 * @geom: location to which geometry will be output
490 *
491 * Generic bios head/sector/cylinder calculator
492 * used by sd. Most BIOSes nowadays expect a XXX/255/16 (CHS)
493 * mapping. Some situations may arise where the disk is not
494 * bootable if this is not used.
495 *
496 * LOCKING:
497 * Defined by the SCSI layer. We don't really care.
498 *
499 * RETURNS:
500 * Zero.
501 */
502int ata_std_bios_param(struct scsi_device *sdev, struct block_device *bdev,
503 sector_t capacity, int geom[])
504{
505 geom[0] = 255;
506 geom[1] = 63;
507 sector_div(capacity, 255*63);
508 geom[2] = capacity;
509
510 return 0;
511}
512
d8d9129e
TH
513/**
514 * ata_scsi_unlock_native_capacity - unlock native capacity
515 * @sdev: SCSI device to adjust device capacity for
516 *
517 * This function is called if a partition on @sdev extends beyond
518 * the end of the device. It requests EH to unlock HPA.
519 *
520 * LOCKING:
521 * Defined by the SCSI layer. Might sleep.
522 */
523void ata_scsi_unlock_native_capacity(struct scsi_device *sdev)
524{
525 struct ata_port *ap = ata_shost_to_port(sdev->host);
526 struct ata_device *dev;
527 unsigned long flags;
528
529 spin_lock_irqsave(ap->lock, flags);
530
531 dev = ata_scsi_find_dev(ap, sdev);
532 if (dev && dev->n_sectors < dev->n_native_sectors) {
533 dev->flags |= ATA_DFLAG_UNLOCK_HPA;
534 dev->link->eh_info.action |= ATA_EH_RESET;
535 ata_port_schedule_eh(ap);
536 }
537
538 spin_unlock_irqrestore(ap->lock, flags);
539 ata_port_wait_eh(ap);
540}
541
5924b74c
TH
542/**
543 * ata_get_identity - Handler for HDIO_GET_IDENTITY ioctl
5eb66fe0 544 * @ap: target port
5924b74c
TH
545 * @sdev: SCSI device to get identify data for
546 * @arg: User buffer area for identify data
547 *
548 * LOCKING:
549 * Defined by the SCSI layer. We don't really care.
550 *
551 * RETURNS:
552 * Zero on success, negative errno on error.
553 */
94be9a58
JG
554static int ata_get_identity(struct ata_port *ap, struct scsi_device *sdev,
555 void __user *arg)
5924b74c 556{
5924b74c
TH
557 struct ata_device *dev = ata_scsi_find_dev(ap, sdev);
558 u16 __user *dst = arg;
559 char buf[40];
560
561 if (!dev)
562 return -ENOMSG;
563
564 if (copy_to_user(dst, dev->id, ATA_ID_WORDS * sizeof(u16)))
565 return -EFAULT;
566
567 ata_id_string(dev->id, buf, ATA_ID_PROD, ATA_ID_PROD_LEN);
568 if (copy_to_user(dst + ATA_ID_PROD, buf, ATA_ID_PROD_LEN))
569 return -EFAULT;
570
571 ata_id_string(dev->id, buf, ATA_ID_FW_REV, ATA_ID_FW_REV_LEN);
572 if (copy_to_user(dst + ATA_ID_FW_REV, buf, ATA_ID_FW_REV_LEN))
573 return -EFAULT;
574
575 ata_id_string(dev->id, buf, ATA_ID_SERNO, ATA_ID_SERNO_LEN);
576 if (copy_to_user(dst + ATA_ID_SERNO, buf, ATA_ID_SERNO_LEN))
577 return -EFAULT;
578
579 return 0;
580}
581
b095518e
JG
582/**
583 * ata_cmd_ioctl - Handler for HDIO_DRIVE_CMD 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 */
b095518e
JG
593int ata_cmd_ioctl(struct scsi_device *scsidev, void __user *arg)
594{
595 int rc = 0;
596 u8 scsi_cmd[MAX_COMMAND_SIZE];
bbe1fe7e 597 u8 args[4], *argbuf = NULL, *sensebuf = NULL;
b095518e 598 int argsize = 0;
85837ebd 599 enum dma_data_direction data_dir;
bbe1fe7e 600 int cmd_result;
b095518e 601
c893a3ae 602 if (arg == NULL)
b095518e
JG
603 return -EINVAL;
604
605 if (copy_from_user(args, arg, sizeof(args)))
606 return -EFAULT;
607
bbe1fe7e
ET
608 sensebuf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
609 if (!sensebuf)
610 return -ENOMEM;
611
b095518e
JG
612 memset(scsi_cmd, 0, sizeof(scsi_cmd));
613
614 if (args[3]) {
295124dc 615 argsize = ATA_SECT_SIZE * args[3];
b095518e 616 argbuf = kmalloc(argsize, GFP_KERNEL);
54dac83c
JR
617 if (argbuf == NULL) {
618 rc = -ENOMEM;
619 goto error;
620 }
b095518e
JG
621
622 scsi_cmd[1] = (4 << 1); /* PIO Data-in */
623 scsi_cmd[2] = 0x0e; /* no off.line or cc, read from dev,
2dcb407e 624 block count in sector count field */
85837ebd 625 data_dir = DMA_FROM_DEVICE;
b095518e
JG
626 } else {
627 scsi_cmd[1] = (3 << 1); /* Non-data */
bbe1fe7e 628 scsi_cmd[2] = 0x20; /* cc but no off.line or data xfer */
85837ebd 629 data_dir = DMA_NONE;
b095518e
JG
630 }
631
632 scsi_cmd[0] = ATA_16;
633
634 scsi_cmd[4] = args[2];
a4f19040 635 if (args[0] == ATA_CMD_SMART) { /* hack -- ide driver does this too */
b095518e
JG
636 scsi_cmd[6] = args[3];
637 scsi_cmd[8] = args[1];
638 scsi_cmd[10] = 0x4f;
639 scsi_cmd[12] = 0xc2;
640 } else {
641 scsi_cmd[6] = args[1];
642 }
643 scsi_cmd[14] = args[0];
644
645 /* Good values for timeout and retries? Values below
646 from scsi_ioctl_send_command() for default case... */
bbe1fe7e 647 cmd_result = scsi_execute(scsidev, scsi_cmd, data_dir, argbuf, argsize,
f4f4e47e 648 sensebuf, (10*HZ), 5, 0, NULL);
bbe1fe7e
ET
649
650 if (driver_byte(cmd_result) == DRIVER_SENSE) {/* sense data available */
651 u8 *desc = sensebuf + 8;
652 cmd_result &= ~(0xFF<<24); /* DRIVER_SENSE is not an error */
653
654 /* If we set cc then ATA pass-through will cause a
655 * check condition even if no error. Filter that. */
656 if (cmd_result & SAM_STAT_CHECK_CONDITION) {
657 struct scsi_sense_hdr sshdr;
658 scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE,
2dcb407e 659 &sshdr);
6d3bfc7b
KM
660 if (sshdr.sense_key == RECOVERED_ERROR &&
661 sshdr.asc == 0 && sshdr.ascq == 0x1d)
bbe1fe7e
ET
662 cmd_result &= ~SAM_STAT_CHECK_CONDITION;
663 }
664
665 /* Send userspace a few ATA registers (same as drivers/ide) */
2dcb407e
JG
666 if (sensebuf[0] == 0x72 && /* format is "descriptor" */
667 desc[0] == 0x09) { /* code is "ATA Descriptor" */
668 args[0] = desc[13]; /* status */
669 args[1] = desc[3]; /* error */
670 args[2] = desc[5]; /* sector count (0:7) */
bbe1fe7e
ET
671 if (copy_to_user(arg, args, sizeof(args)))
672 rc = -EFAULT;
673 }
674 }
675
676
677 if (cmd_result) {
b095518e
JG
678 rc = -EIO;
679 goto error;
680 }
681
b095518e 682 if ((argbuf)
c893a3ae 683 && copy_to_user(arg + sizeof(args), argbuf, argsize))
b095518e
JG
684 rc = -EFAULT;
685error:
bbe1fe7e 686 kfree(sensebuf);
8f760780 687 kfree(argbuf);
b095518e
JG
688 return rc;
689}
690
691/**
692 * ata_task_ioctl - Handler for HDIO_DRIVE_TASK ioctl
8e8b77dd 693 * @scsidev: Device to which we are issuing command
b095518e
JG
694 * @arg: User provided data for issuing command
695 *
696 * LOCKING:
697 * Defined by the SCSI layer. We don't really care.
698 *
699 * RETURNS:
700 * Zero on success, negative errno on error.
701 */
702int ata_task_ioctl(struct scsi_device *scsidev, void __user *arg)
703{
704 int rc = 0;
705 u8 scsi_cmd[MAX_COMMAND_SIZE];
af068bd1
DM
706 u8 args[7], *sensebuf = NULL;
707 int cmd_result;
b095518e 708
c893a3ae 709 if (arg == NULL)
b095518e
JG
710 return -EINVAL;
711
712 if (copy_from_user(args, arg, sizeof(args)))
713 return -EFAULT;
714
af068bd1
DM
715 sensebuf = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
716 if (!sensebuf)
717 return -ENOMEM;
718
b095518e
JG
719 memset(scsi_cmd, 0, sizeof(scsi_cmd));
720 scsi_cmd[0] = ATA_16;
721 scsi_cmd[1] = (3 << 1); /* Non-data */
af068bd1 722 scsi_cmd[2] = 0x20; /* cc but no off.line or data xfer */
b095518e
JG
723 scsi_cmd[4] = args[1];
724 scsi_cmd[6] = args[2];
725 scsi_cmd[8] = args[3];
726 scsi_cmd[10] = args[4];
727 scsi_cmd[12] = args[5];
277239f2 728 scsi_cmd[13] = args[6] & 0x4f;
b095518e
JG
729 scsi_cmd[14] = args[0];
730
b095518e 731 /* Good values for timeout and retries? Values below
2e9edbf8 732 from scsi_ioctl_send_command() for default case... */
af068bd1 733 cmd_result = scsi_execute(scsidev, scsi_cmd, DMA_NONE, NULL, 0,
f4f4e47e 734 sensebuf, (10*HZ), 5, 0, NULL);
af068bd1
DM
735
736 if (driver_byte(cmd_result) == DRIVER_SENSE) {/* sense data available */
737 u8 *desc = sensebuf + 8;
738 cmd_result &= ~(0xFF<<24); /* DRIVER_SENSE is not an error */
739
740 /* If we set cc then ATA pass-through will cause a
741 * check condition even if no error. Filter that. */
742 if (cmd_result & SAM_STAT_CHECK_CONDITION) {
743 struct scsi_sense_hdr sshdr;
744 scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE,
745 &sshdr);
6d3bfc7b
KM
746 if (sshdr.sense_key == RECOVERED_ERROR &&
747 sshdr.asc == 0 && sshdr.ascq == 0x1d)
af068bd1
DM
748 cmd_result &= ~SAM_STAT_CHECK_CONDITION;
749 }
750
751 /* Send userspace ATA registers */
752 if (sensebuf[0] == 0x72 && /* format is "descriptor" */
753 desc[0] == 0x09) {/* code is "ATA Descriptor" */
754 args[0] = desc[13]; /* status */
755 args[1] = desc[3]; /* error */
756 args[2] = desc[5]; /* sector count (0:7) */
757 args[3] = desc[7]; /* lbal */
758 args[4] = desc[9]; /* lbam */
759 args[5] = desc[11]; /* lbah */
760 args[6] = desc[12]; /* select */
761 if (copy_to_user(arg, args, sizeof(args)))
762 rc = -EFAULT;
763 }
764 }
765
766 if (cmd_result) {
b095518e 767 rc = -EIO;
af068bd1
DM
768 goto error;
769 }
b095518e 770
af068bd1
DM
771 error:
772 kfree(sensebuf);
b095518e
JG
773 return rc;
774}
775
e3cf95dd
AC
776static int ata_ioc32(struct ata_port *ap)
777{
778 if (ap->flags & ATA_FLAG_PIO_DMA)
779 return 1;
780 if (ap->pflags & ATA_PFLAG_PIO32)
781 return 1;
782 return 0;
783}
784
94be9a58
JG
785int ata_sas_scsi_ioctl(struct ata_port *ap, struct scsi_device *scsidev,
786 int cmd, void __user *arg)
1da177e4 787{
287e6611
AB
788 unsigned long val;
789 int rc = -EINVAL;
e3cf95dd 790 unsigned long flags;
1da177e4 791
1da177e4 792 switch (cmd) {
287e6611 793 case HDIO_GET_32BIT:
e3cf95dd
AC
794 spin_lock_irqsave(ap->lock, flags);
795 val = ata_ioc32(ap);
796 spin_unlock_irqrestore(ap->lock, flags);
287e6611 797 return put_user(val, (unsigned long __user *)arg);
1da177e4 798
287e6611 799 case HDIO_SET_32BIT:
1da177e4 800 val = (unsigned long) arg;
e3cf95dd
AC
801 rc = 0;
802 spin_lock_irqsave(ap->lock, flags);
803 if (ap->pflags & ATA_PFLAG_PIO32CHANGE) {
804 if (val)
805 ap->pflags |= ATA_PFLAG_PIO32;
806 else
807 ap->pflags &= ~ATA_PFLAG_PIO32;
808 } else {
809 if (val != ata_ioc32(ap))
810 rc = -EINVAL;
811 }
812 spin_unlock_irqrestore(ap->lock, flags);
813 return rc;
1da177e4 814
5924b74c 815 case HDIO_GET_IDENTITY:
94be9a58 816 return ata_get_identity(ap, scsidev, arg);
5924b74c 817
b095518e
JG
818 case HDIO_DRIVE_CMD:
819 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
820 return -EACCES;
821 return ata_cmd_ioctl(scsidev, arg);
822
823 case HDIO_DRIVE_TASK:
824 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
825 return -EACCES;
826 return ata_task_ioctl(scsidev, arg);
827
1da177e4
LT
828 default:
829 rc = -ENOTTY;
830 break;
831 }
832
1da177e4
LT
833 return rc;
834}
94be9a58
JG
835EXPORT_SYMBOL_GPL(ata_sas_scsi_ioctl);
836
837int ata_scsi_ioctl(struct scsi_device *scsidev, int cmd, void __user *arg)
838{
839 return ata_sas_scsi_ioctl(ata_shost_to_port(scsidev->host),
840 scsidev, cmd, arg);
841}
842EXPORT_SYMBOL_GPL(ata_scsi_ioctl);
1da177e4
LT
843
844/**
845 * ata_scsi_qc_new - acquire new ata_queued_cmd reference
1da177e4
LT
846 * @dev: ATA device to which the new command is attached
847 * @cmd: SCSI command that originated this ATA command
1da177e4
LT
848 *
849 * Obtain a reference to an unused ata_queued_cmd structure,
850 * which is the basic libata structure representing a single
851 * ATA command sent to the hardware.
852 *
853 * If a command was available, fill in the SCSI-specific
854 * portions of the structure with information on the
855 * current command.
856 *
857 * LOCKING:
cca3974e 858 * spin_lock_irqsave(host lock)
1da177e4
LT
859 *
860 * RETURNS:
861 * Command allocated, or %NULL if none available.
862 */
7102d230 863static struct ata_queued_cmd *ata_scsi_qc_new(struct ata_device *dev,
b27dcfb0 864 struct scsi_cmnd *cmd)
1da177e4
LT
865{
866 struct ata_queued_cmd *qc;
867
12cb5ce1 868 qc = ata_qc_new_init(dev, cmd->request->tag);
1da177e4
LT
869 if (qc) {
870 qc->scsicmd = cmd;
b27dcfb0 871 qc->scsidone = cmd->scsi_done;
1da177e4 872
ff2aeb1e 873 qc->sg = scsi_sglist(cmd);
7120165c 874 qc->n_elem = scsi_sg_count(cmd);
1da177e4
LT
875 } else {
876 cmd->result = (DID_OK << 16) | (QUEUE_FULL << 1);
b27dcfb0 877 cmd->scsi_done(cmd);
1da177e4
LT
878 }
879
880 return qc;
881}
882
aacda375
TH
883static void ata_qc_set_pc_nbytes(struct ata_queued_cmd *qc)
884{
885 struct scsi_cmnd *scmd = qc->scsicmd;
886
887 qc->extrabytes = scmd->request->extra_len;
888 qc->nbytes = scsi_bufflen(scmd) + qc->extrabytes;
889}
890
b095518e
JG
891/**
892 * ata_dump_status - user friendly display of error info
893 * @id: id of the port in question
894 * @tf: ptr to filled out taskfile
895 *
896 * Decode and dump the ATA error/status registers for the user so
897 * that they have some idea what really happened at the non
898 * make-believe layer.
899 *
900 * LOCKING:
901 * inherited from caller
902 */
7102d230 903static void ata_dump_status(unsigned id, struct ata_taskfile *tf)
b095518e
JG
904{
905 u8 stat = tf->command, err = tf->feature;
906
907 printk(KERN_WARNING "ata%u: status=0x%02x { ", id, stat);
908 if (stat & ATA_BUSY) {
909 printk("Busy }\n"); /* Data is not valid in this case */
910 } else {
1308d7f0
HR
911 if (stat & ATA_DRDY) printk("DriveReady ");
912 if (stat & ATA_DF) printk("DeviceFault ");
913 if (stat & ATA_DSC) printk("SeekComplete ");
914 if (stat & ATA_DRQ) printk("DataRequest ");
915 if (stat & ATA_CORR) printk("CorrectedError ");
916 if (stat & ATA_SENSE) printk("Sense ");
917 if (stat & ATA_ERR) printk("Error ");
b095518e
JG
918 printk("}\n");
919
920 if (err) {
921 printk(KERN_WARNING "ata%u: error=0x%02x { ", id, err);
1308d7f0
HR
922 if (err & ATA_ABORTED) printk("DriveStatusError ");
923 if (err & ATA_ICRC) {
924 if (err & ATA_ABORTED)
925 printk("BadCRC ");
b095518e
JG
926 else printk("Sector ");
927 }
1308d7f0
HR
928 if (err & ATA_UNC) printk("UncorrectableError ");
929 if (err & ATA_IDNF) printk("SectorIdNotFound ");
930 if (err & ATA_TRK0NF) printk("TrackZeroNotFound ");
931 if (err & ATA_AMNF) printk("AddrMarkNotFound ");
b095518e
JG
932 printk("}\n");
933 }
934 }
935}
936
1da177e4
LT
937/**
938 * ata_to_sense_error - convert ATA error to SCSI error
8e8b77dd 939 * @id: ATA device number
1da177e4 940 * @drv_stat: value contained in ATA status register
b095518e
JG
941 * @drv_err: value contained in ATA error register
942 * @sk: the sense key we'll fill out
943 * @asc: the additional sense code we'll fill out
944 * @ascq: the additional sense code qualifier we'll fill out
246619da 945 * @verbose: be verbose
1da177e4 946 *
b095518e
JG
947 * Converts an ATA error into a SCSI error. Fill out pointers to
948 * SK, ASC, and ASCQ bytes for later use in fixed or descriptor
949 * format sense blocks.
1da177e4
LT
950 *
951 * LOCKING:
cca3974e 952 * spin_lock_irqsave(host lock)
1da177e4 953 */
7102d230
AB
954static void ata_to_sense_error(unsigned id, u8 drv_stat, u8 drv_err, u8 *sk,
955 u8 *asc, u8 *ascq, int verbose)
1da177e4 956{
b095518e 957 int i;
ffe75ef6 958
1da177e4 959 /* Based on the 3ware driver translation table */
98ac62de 960 static const unsigned char sense_table[][4] = {
1da177e4 961 /* BBD|ECC|ID|MAR */
8ae72044
HR
962 {0xd1, ABORTED_COMMAND, 0x00, 0x00},
963 // Device busy Aborted command
1da177e4 964 /* BBD|ECC|ID */
8ae72044
HR
965 {0xd0, ABORTED_COMMAND, 0x00, 0x00},
966 // Device busy Aborted command
1da177e4 967 /* ECC|MC|MARK */
8ae72044
HR
968 {0x61, HARDWARE_ERROR, 0x00, 0x00},
969 // Device fault Hardware error
1da177e4 970 /* ICRC|ABRT */ /* NB: ICRC & !ABRT is BBD */
8ae72044
HR
971 {0x84, ABORTED_COMMAND, 0x47, 0x00},
972 // Data CRC error SCSI parity error
1da177e4 973 /* MC|ID|ABRT|TRK0|MARK */
8ae72044
HR
974 {0x37, NOT_READY, 0x04, 0x00},
975 // Unit offline Not ready
1da177e4 976 /* MCR|MARK */
8ae72044
HR
977 {0x09, NOT_READY, 0x04, 0x00},
978 // Unrecovered disk error Not ready
1da177e4 979 /* Bad address mark */
8ae72044
HR
980 {0x01, MEDIUM_ERROR, 0x13, 0x00},
981 // Address mark not found for data field
982 /* TRK0 - Track 0 not found */
983 {0x02, HARDWARE_ERROR, 0x00, 0x00},
984 // Hardware error
78062c50 985 /* Abort: 0x04 is not translated here, see below */
1da177e4 986 /* Media change request */
8ae72044
HR
987 {0x08, NOT_READY, 0x04, 0x00},
988 // FIXME: faking offline
989 /* SRV/IDNF - ID not found */
990 {0x10, ILLEGAL_REQUEST, 0x21, 0x00},
991 // Logical address out of range
992 /* MC - Media Changed */
993 {0x20, UNIT_ATTENTION, 0x28, 0x00},
994 // Not ready to ready change, medium may have changed
995 /* ECC - Uncorrectable ECC error */
996 {0x40, MEDIUM_ERROR, 0x11, 0x04},
997 // Unrecovered read error
1da177e4 998 /* BBD - block marked bad */
8ae72044
HR
999 {0x80, MEDIUM_ERROR, 0x11, 0x04},
1000 // Block marked bad Medium error, unrecovered read error
1da177e4
LT
1001 {0xFF, 0xFF, 0xFF, 0xFF}, // END mark
1002 };
98ac62de 1003 static const unsigned char stat_table[][4] = {
1da177e4 1004 /* Must be first because BUSY means no other bits valid */
8ae72044
HR
1005 {0x80, ABORTED_COMMAND, 0x47, 0x00},
1006 // Busy, fake parity for now
1007 {0x40, ILLEGAL_REQUEST, 0x21, 0x04},
1008 // Device ready, unaligned write command
1009 {0x20, HARDWARE_ERROR, 0x44, 0x00},
1010 // Device fault, internal target failure
1011 {0x08, ABORTED_COMMAND, 0x47, 0x00},
1012 // Timed out in xfer, fake parity for now
1013 {0x04, RECOVERED_ERROR, 0x11, 0x00},
1014 // Recovered ECC error Medium error, recovered
1da177e4
LT
1015 {0xFF, 0xFF, 0xFF, 0xFF}, // END mark
1016 };
1da177e4 1017
1da177e4
LT
1018 /*
1019 * Is this an error we can process/parse
1020 */
b095518e
JG
1021 if (drv_stat & ATA_BUSY) {
1022 drv_err = 0; /* Ignore the err bits, they're invalid */
1da177e4 1023 }
b095518e
JG
1024
1025 if (drv_err) {
1026 /* Look for drv_err */
1027 for (i = 0; sense_table[i][0] != 0xFF; i++) {
1028 /* Look for best matches first */
2e9edbf8 1029 if ((sense_table[i][0] & drv_err) ==
b095518e
JG
1030 sense_table[i][0]) {
1031 *sk = sense_table[i][1];
1032 *asc = sense_table[i][2];
1033 *ascq = sense_table[i][3];
1034 goto translate_done;
1035 }
1036 }
1da177e4 1037 }
b095518e 1038
78062c50
GG
1039 /*
1040 * Fall back to interpreting status bits. Note that if the drv_err
1041 * has only the ABRT bit set, we decode drv_stat. ABRT by itself
1042 * is not descriptive enough.
1043 */
b095518e
JG
1044 for (i = 0; stat_table[i][0] != 0xFF; i++) {
1045 if (stat_table[i][0] & drv_stat) {
1046 *sk = stat_table[i][1];
1047 *asc = stat_table[i][2];
1048 *ascq = stat_table[i][3];
1049 goto translate_done;
1da177e4 1050 }
b095518e 1051 }
b095518e 1052
78062c50
GG
1053 /*
1054 * We need a sensible error return here, which is tricky, and one
1055 * that won't cause people to do things like return a disk wrongly.
1056 */
2d202024
AC
1057 *sk = ABORTED_COMMAND;
1058 *asc = 0x00;
1059 *ascq = 0x00;
b095518e
JG
1060
1061 translate_done:
246619da
TH
1062 if (verbose)
1063 printk(KERN_ERR "ata%u: translated ATA stat/err 0x%02x/%02x "
1064 "to SCSI SK/ASC/ASCQ 0x%x/%02x/%02x\n",
1065 id, drv_stat, drv_err, *sk, *asc, *ascq);
b095518e
JG
1066 return;
1067}
1068
1069/*
750426aa 1070 * ata_gen_passthru_sense - Generate check condition sense block.
b095518e
JG
1071 * @qc: Command that completed.
1072 *
1073 * This function is specific to the ATA descriptor format sense
1074 * block specified for the ATA pass through commands. Regardless
1075 * of whether the command errored or not, return a sense
1076 * block. Copy all controller registers into the sense
84a9a8cd
GG
1077 * block. If there was no error, we get the request from an ATA
1078 * passthrough command, so we use the following sense data:
1079 * sk = RECOVERED ERROR
1080 * asc,ascq = ATA PASS-THROUGH INFORMATION AVAILABLE
1081 *
b095518e
JG
1082 *
1083 * LOCKING:
750426aa 1084 * None.
b095518e 1085 */
750426aa 1086static void ata_gen_passthru_sense(struct ata_queued_cmd *qc)
b095518e
JG
1087{
1088 struct scsi_cmnd *cmd = qc->scsicmd;
e61e0672 1089 struct ata_taskfile *tf = &qc->result_tf;
b095518e
JG
1090 unsigned char *sb = cmd->sense_buffer;
1091 unsigned char *desc = sb + 8;
246619da 1092 int verbose = qc->ap->ops->error_handler == NULL;
b525e773 1093 u8 sense_key, asc, ascq;
b095518e
JG
1094
1095 memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
1096
0e5dec47 1097 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
b095518e 1098
b095518e
JG
1099 /*
1100 * Use ata_to_sense_error() to map status register bits
1101 * onto sense key, asc & ascq.
1102 */
058e55e1
TH
1103 if (qc->err_mask ||
1104 tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
44877b4e 1105 ata_to_sense_error(qc->ap->print_id, tf->command, tf->feature,
b525e773 1106 &sense_key, &asc, &ascq, verbose);
06dbde5f 1107 ata_scsi_set_sense(qc->dev, cmd, sense_key, asc, ascq);
84a9a8cd 1108 } else {
11093cb1
HR
1109 /*
1110 * ATA PASS-THROUGH INFORMATION AVAILABLE
1111 * Always in descriptor format sense.
1112 */
1113 scsi_build_sense_buffer(1, cmd->sense_buffer,
1114 RECOVERED_ERROR, 0, 0x1D);
1da177e4
LT
1115 }
1116
11093cb1
HR
1117 if ((cmd->sense_buffer[0] & 0x7f) >= 0x72) {
1118 u8 len;
1119
1120 /* descriptor format */
1121 len = sb[7];
1122 desc = (char *)scsi_sense_desc_find(sb, len + 8, 9);
1123 if (!desc) {
1124 if (SCSI_SENSE_BUFFERSIZE < len + 14)
1125 return;
1126 sb[7] = len + 14;
1127 desc = sb + 8 + len;
1128 }
1129 desc[0] = 9;
1130 desc[1] = 12;
1131 /*
1132 * Copy registers into sense buffer.
1133 */
1134 desc[2] = 0x00;
1135 desc[3] = tf->feature; /* == error reg */
1136 desc[5] = tf->nsect;
1137 desc[7] = tf->lbal;
1138 desc[9] = tf->lbam;
1139 desc[11] = tf->lbah;
1140 desc[12] = tf->device;
1141 desc[13] = tf->command; /* == status reg */
b095518e 1142
11093cb1
HR
1143 /*
1144 * Fill in Extend bit, and the high order bytes
1145 * if applicable.
1146 */
1147 if (tf->flags & ATA_TFLAG_LBA48) {
1148 desc[2] |= 0x01;
1149 desc[4] = tf->hob_nsect;
1150 desc[6] = tf->hob_lbal;
1151 desc[8] = tf->hob_lbam;
1152 desc[10] = tf->hob_lbah;
1153 }
1154 } else {
1155 /* Fixed sense format */
1156 desc[0] = tf->feature;
1157 desc[1] = tf->command; /* status */
1158 desc[2] = tf->device;
1159 desc[3] = tf->nsect;
1160 desc[0] = 0;
1161 if (tf->flags & ATA_TFLAG_LBA48) {
1162 desc[8] |= 0x80;
1163 if (tf->hob_nsect)
1164 desc[8] |= 0x40;
1165 if (tf->hob_lbal || tf->hob_lbam || tf->hob_lbah)
1166 desc[8] |= 0x20;
1167 }
1168 desc[9] = tf->lbal;
1169 desc[10] = tf->lbam;
1170 desc[11] = tf->lbah;
1da177e4 1171 }
b095518e 1172}
1da177e4 1173
b095518e 1174/**
750426aa 1175 * ata_gen_ata_sense - generate a SCSI fixed sense block
b095518e
JG
1176 * @qc: Command that we are erroring out
1177 *
d25614ba 1178 * Generate sense block for a failed ATA command @qc. Descriptor
25985edc 1179 * format is used to accommodate LBA48 block address.
b095518e
JG
1180 *
1181 * LOCKING:
750426aa 1182 * None.
b095518e 1183 */
750426aa 1184static void ata_gen_ata_sense(struct ata_queued_cmd *qc)
b095518e 1185{
d25614ba 1186 struct ata_device *dev = qc->dev;
b095518e 1187 struct scsi_cmnd *cmd = qc->scsicmd;
e61e0672 1188 struct ata_taskfile *tf = &qc->result_tf;
b095518e 1189 unsigned char *sb = cmd->sense_buffer;
246619da 1190 int verbose = qc->ap->ops->error_handler == NULL;
d25614ba 1191 u64 block;
b525e773 1192 u8 sense_key, asc, ascq;
b095518e
JG
1193
1194 memset(sb, 0, SCSI_SENSE_BUFFERSIZE);
1195
0e5dec47 1196 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
b095518e 1197
59f68474
HR
1198 if (ata_dev_disabled(dev)) {
1199 /* Device disabled after error recovery */
1200 /* LOGICAL UNIT NOT READY, HARD RESET REQUIRED */
1201 ata_scsi_set_sense(dev, cmd, NOT_READY, 0x04, 0x21);
1202 return;
1203 }
d25614ba 1204 /* Use ata_to_sense_error() to map status register bits
b095518e
JG
1205 * onto sense key, asc & ascq.
1206 */
058e55e1
TH
1207 if (qc->err_mask ||
1208 tf->command & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) {
44877b4e 1209 ata_to_sense_error(qc->ap->print_id, tf->command, tf->feature,
b525e773 1210 &sense_key, &asc, &ascq, verbose);
06dbde5f 1211 ata_scsi_set_sense(dev, cmd, sense_key, asc, ascq);
5e6acd1c
HR
1212 } else {
1213 /* Could not decode error */
1214 ata_dev_warn(dev, "could not decode error status 0x%x err_mask 0x%x\n",
1215 tf->command, qc->err_mask);
06dbde5f 1216 ata_scsi_set_sense(dev, cmd, ABORTED_COMMAND, 0, 0);
5e6acd1c 1217 return;
1da177e4 1218 }
1da177e4 1219
d25614ba 1220 block = ata_tf_read_block(&qc->result_tf, dev);
cffd1ee9
HR
1221 if (block == U64_MAX)
1222 return;
a7dac447 1223
cf8b49b0 1224 scsi_set_sense_information(sb, SCSI_SENSE_BUFFERSIZE, block);
1da177e4
LT
1225}
1226
a6cce2a7
BK
1227static void ata_scsi_sdev_config(struct scsi_device *sdev)
1228{
1229 sdev->use_10_for_rw = 1;
1230 sdev->use_10_for_ms = 1;
31cc23b3
TH
1231
1232 /* Schedule policy is determined by ->qc_defer() callback and
1233 * it needs to see every deferred qc. Set dev_blocked to 1 to
1234 * prevent SCSI midlayer from automatically deferring
1235 * requests.
1236 */
1237 sdev->max_device_blocked = 1;
a6cce2a7
BK
1238}
1239
fa2fc7f4
JB
1240/**
1241 * atapi_drain_needed - Check whether data transfer may overflow
73fd8b6d 1242 * @rq: request to be checked
fa2fc7f4
JB
1243 *
1244 * ATAPI commands which transfer variable length data to host
c9b5560a 1245 * might overflow due to application error or hardware bug. This
fa2fc7f4
JB
1246 * function checks whether overflow should be drained and ignored
1247 * for @request.
1248 *
1249 * LOCKING:
1250 * None.
1251 *
1252 * RETURNS:
1253 * 1 if ; otherwise, 0.
1254 */
1255static int atapi_drain_needed(struct request *rq)
1256{
33659ebb 1257 if (likely(rq->cmd_type != REQ_TYPE_BLOCK_PC))
fa2fc7f4
JB
1258 return 0;
1259
a8ebb056 1260 if (!blk_rq_bytes(rq) || op_is_write(req_op(rq)))
fa2fc7f4
JB
1261 return 0;
1262
1263 return atapi_cmd_type(rq->cmd[0]) == ATAPI_MISC;
1264}
1265
1266static int ata_scsi_dev_config(struct scsi_device *sdev,
1267 struct ata_device *dev)
a6cce2a7 1268{
900e599e 1269 struct request_queue *q = sdev->request_queue;
1270
45fabbb7
EO
1271 if (!ata_id_has_unload(dev->id))
1272 dev->flags |= ATA_DFLAG_NO_UNLOAD;
1273
914ed354 1274 /* configure max sectors */
900e599e 1275 blk_queue_max_hw_sectors(q, dev->max_sectors);
a6cce2a7 1276
fa2fc7f4 1277 if (dev->class == ATA_DEV_ATAPI) {
fa2fc7f4
JB
1278 void *buf;
1279
729a6a30
TH
1280 sdev->sector_size = ATA_SECT_SIZE;
1281
1282 /* set DMA padding */
900e599e 1283 blk_queue_update_dma_pad(q, ATA_DMA_PAD_SZ - 1);
fa2fc7f4
JB
1284
1285 /* configure draining */
1286 buf = kmalloc(ATAPI_MAX_DRAIN, q->bounce_gfp | GFP_KERNEL);
1287 if (!buf) {
a9a79dfe 1288 ata_dev_err(dev, "drain buffer allocation failed\n");
fa2fc7f4
JB
1289 return -ENOMEM;
1290 }
1291
1292 blk_queue_dma_drain(q, atapi_drain_needed, buf, ATAPI_MAX_DRAIN);
1293 } else {
295124dc 1294 sdev->sector_size = ata_id_logical_sector_size(dev->id);
d8cf5389 1295 sdev->manage_start_stop = 1;
dde20207 1296 }
d8cf5389 1297
729a6a30
TH
1298 /*
1299 * ata_pio_sectors() expects buffer for each sector to not cross
1300 * page boundary. Enforce it by requiring buffers to be sector
1301 * aligned, which works iff sector_size is not larger than
1302 * PAGE_SIZE. ATAPI devices also need the alignment as
1303 * IDENTIFY_PACKET is executed as ATA_PROT_PIO.
1304 */
1305 if (sdev->sector_size > PAGE_SIZE)
a9a79dfe 1306 ata_dev_warn(dev,
729a6a30
TH
1307 "sector_size=%u > PAGE_SIZE, PIO may malfunction\n",
1308 sdev->sector_size);
1309
900e599e 1310 blk_queue_update_dma_alignment(q, sdev->sector_size - 1);
729a6a30 1311
f26792d5
JG
1312 if (dev->flags & ATA_DFLAG_AN)
1313 set_bit(SDEV_EVT_MEDIA_CHANGE, sdev->supported_events);
1314
a6e6ce8e
TH
1315 if (dev->flags & ATA_DFLAG_NCQ) {
1316 int depth;
1317
1318 depth = min(sdev->host->can_queue, ata_id_queue_depth(dev->id));
1319 depth = min(ATA_MAX_QUEUE - 1, depth);
db5ed4df 1320 scsi_change_queue_depth(sdev, depth);
a6e6ce8e 1321 }
fa2fc7f4 1322
900e599e 1323 blk_queue_flush_queueable(q, false);
1324
295124dc 1325 dev->sdev = sdev;
fa2fc7f4 1326 return 0;
a6cce2a7
BK
1327}
1328
1da177e4
LT
1329/**
1330 * ata_scsi_slave_config - Set SCSI device attributes
1331 * @sdev: SCSI device to examine
1332 *
1333 * This is called before we actually start reading
1334 * and writing to the device, to configure certain
1335 * SCSI mid-layer behaviors.
1336 *
1337 * LOCKING:
1338 * Defined by SCSI layer. We don't really care.
1339 */
1340
1341int ata_scsi_slave_config(struct scsi_device *sdev)
1342{
31534363
TH
1343 struct ata_port *ap = ata_shost_to_port(sdev->host);
1344 struct ata_device *dev = __ata_scsi_find_dev(ap, sdev);
fa2fc7f4 1345 int rc = 0;
31534363 1346
a6cce2a7 1347 ata_scsi_sdev_config(sdev);
1da177e4 1348
31534363 1349 if (dev)
fa2fc7f4 1350 rc = ata_scsi_dev_config(sdev, dev);
1da177e4 1351
fa2fc7f4 1352 return rc;
1da177e4
LT
1353}
1354
83c47bcb
TH
1355/**
1356 * ata_scsi_slave_destroy - SCSI device is about to be destroyed
1357 * @sdev: SCSI device to be destroyed
1358 *
1359 * @sdev is about to be destroyed for hot/warm unplugging. If
1360 * this unplugging was initiated by libata as indicated by NULL
1361 * dev->sdev, this function doesn't have to do anything.
1362 * Otherwise, SCSI layer initiated warm-unplug is in progress.
1363 * Clear dev->sdev, schedule the device for ATA detach and invoke
1364 * EH.
1365 *
1366 * LOCKING:
1367 * Defined by SCSI layer. We don't really care.
1368 */
1369void ata_scsi_slave_destroy(struct scsi_device *sdev)
1370{
1371 struct ata_port *ap = ata_shost_to_port(sdev->host);
fa2fc7f4 1372 struct request_queue *q = sdev->request_queue;
83c47bcb
TH
1373 unsigned long flags;
1374 struct ata_device *dev;
1375
1376 if (!ap->ops->error_handler)
1377 return;
1378
ba6a1308 1379 spin_lock_irqsave(ap->lock, flags);
83c47bcb
TH
1380 dev = __ata_scsi_find_dev(ap, sdev);
1381 if (dev && dev->sdev) {
1382 /* SCSI device already in CANCEL state, no need to offline it */
1383 dev->sdev = NULL;
1384 dev->flags |= ATA_DFLAG_DETACH;
1385 ata_port_schedule_eh(ap);
1386 }
ba6a1308 1387 spin_unlock_irqrestore(ap->lock, flags);
fa2fc7f4
JB
1388
1389 kfree(q->dma_drain_buffer);
1390 q->dma_drain_buffer = NULL;
1391 q->dma_drain_size = 0;
83c47bcb
TH
1392}
1393
a6e6ce8e 1394/**
f6e67035 1395 * __ata_change_queue_depth - helper for ata_scsi_change_queue_depth
6d2dd054
MPS
1396 * @ap: ATA port to which the device change the queue depth
1397 * @sdev: SCSI device to configure queue depth for
1398 * @queue_depth: new queue depth
a6e6ce8e 1399 *
f6e67035
DW
1400 * libsas and libata have different approaches for associating a sdev to
1401 * its ata_port.
a6e6ce8e 1402 *
a6e6ce8e 1403 */
f6e67035 1404int __ata_change_queue_depth(struct ata_port *ap, struct scsi_device *sdev,
db5ed4df 1405 int queue_depth)
a6e6ce8e 1406{
a6e6ce8e 1407 struct ata_device *dev;
360f654e 1408 unsigned long flags;
a6e6ce8e 1409
c3c70c44 1410 if (queue_depth < 1 || queue_depth == sdev->queue_depth)
a6e6ce8e
TH
1411 return sdev->queue_depth;
1412
1413 dev = ata_scsi_find_dev(ap, sdev);
1414 if (!dev || !ata_dev_enabled(dev))
1415 return sdev->queue_depth;
1416
c3c70c44 1417 /* NCQ enabled? */
360f654e 1418 spin_lock_irqsave(ap->lock, flags);
c3c70c44
TH
1419 dev->flags &= ~ATA_DFLAG_NCQ_OFF;
1420 if (queue_depth == 1 || !ata_ncq_enabled(dev)) {
360f654e 1421 dev->flags |= ATA_DFLAG_NCQ_OFF;
c3c70c44
TH
1422 queue_depth = 1;
1423 }
360f654e
TH
1424 spin_unlock_irqrestore(ap->lock, flags);
1425
c3c70c44
TH
1426 /* limit and apply queue depth */
1427 queue_depth = min(queue_depth, sdev->host->can_queue);
1428 queue_depth = min(queue_depth, ata_id_queue_depth(dev->id));
1429 queue_depth = min(queue_depth, ATA_MAX_QUEUE - 1);
1430
1431 if (sdev->queue_depth == queue_depth)
1432 return -EINVAL;
1433
db5ed4df 1434 return scsi_change_queue_depth(sdev, queue_depth);
a6e6ce8e
TH
1435}
1436
f6e67035
DW
1437/**
1438 * ata_scsi_change_queue_depth - SCSI callback for queue depth config
1439 * @sdev: SCSI device to configure queue depth for
1440 * @queue_depth: new queue depth
f6e67035
DW
1441 *
1442 * This is libata standard hostt->change_queue_depth callback.
1443 * SCSI will call into this callback when user tries to set queue
1444 * depth via sysfs.
1445 *
1446 * LOCKING:
1447 * SCSI layer (we don't care)
1448 *
1449 * RETURNS:
1450 * Newly configured queue depth.
1451 */
db5ed4df 1452int ata_scsi_change_queue_depth(struct scsi_device *sdev, int queue_depth)
f6e67035
DW
1453{
1454 struct ata_port *ap = ata_shost_to_port(sdev->host);
1455
db5ed4df 1456 return __ata_change_queue_depth(ap, sdev, queue_depth);
f6e67035
DW
1457}
1458
972dcafb
DG
1459/**
1460 * ata_scsi_start_stop_xlat - Translate SCSI START STOP UNIT command
1461 * @qc: Storage for translated ATA taskfile
972dcafb
DG
1462 *
1463 * Sets up an ATA taskfile to issue STANDBY (to stop) or READ VERIFY
1464 * (to start). Perhaps these commands should be preceded by
1465 * CHECK POWER MODE to see what power mode the device is already in.
1466 * [See SAT revision 5 at www.t10.org]
1467 *
1468 * LOCKING:
cca3974e 1469 * spin_lock_irqsave(host lock)
972dcafb
DG
1470 *
1471 * RETURNS:
1472 * Zero on success, non-zero on error.
1473 */
ad706991 1474static unsigned int ata_scsi_start_stop_xlat(struct ata_queued_cmd *qc)
972dcafb 1475{
542b1444 1476 struct scsi_cmnd *scmd = qc->scsicmd;
972dcafb 1477 struct ata_taskfile *tf = &qc->tf;
ad706991 1478 const u8 *cdb = scmd->cmnd;
bcfc867d 1479 u16 fp;
0df10b84 1480 u8 bp = 0xff;
972dcafb 1481
bcfc867d
HR
1482 if (scmd->cmd_len < 5) {
1483 fp = 4;
2e5704f6 1484 goto invalid_fld;
bcfc867d 1485 }
2e5704f6 1486
972dcafb
DG
1487 tf->flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
1488 tf->protocol = ATA_PROT_NODATA;
542b1444 1489 if (cdb[1] & 0x1) {
972dcafb
DG
1490 ; /* ignore IMMED bit, violates sat-r05 */
1491 }
bcfc867d
HR
1492 if (cdb[4] & 0x2) {
1493 fp = 4;
0df10b84 1494 bp = 1;
ae006510 1495 goto invalid_fld; /* LOEJ bit set not supported */
bcfc867d
HR
1496 }
1497 if (((cdb[4] >> 4) & 0xf) != 0) {
1498 fp = 4;
0df10b84 1499 bp = 3;
ae006510 1500 goto invalid_fld; /* power conditions not supported */
bcfc867d 1501 }
e31e8531 1502
542b1444 1503 if (cdb[4] & 0x1) {
972dcafb 1504 tf->nsect = 1; /* 1 sector, lba=0 */
9d5b1302
AL
1505
1506 if (qc->dev->flags & ATA_DFLAG_LBA) {
c44078c0 1507 tf->flags |= ATA_TFLAG_LBA;
9d5b1302
AL
1508
1509 tf->lbah = 0x0;
1510 tf->lbam = 0x0;
1511 tf->lbal = 0x0;
1512 tf->device |= ATA_LBA;
1513 } else {
1514 /* CHS */
1515 tf->lbal = 0x1; /* sect */
1516 tf->lbam = 0x0; /* cyl low */
1517 tf->lbah = 0x0; /* cyl high */
1518 }
1519
972dcafb 1520 tf->command = ATA_CMD_VERIFY; /* READ VERIFY */
920a4b10 1521 } else {
2a6e58d2
RW
1522 /* Some odd clown BIOSen issue spindown on power off (ACPI S4
1523 * or S5) causing some drives to spin up and down again.
1524 */
1525 if ((qc->ap->flags & ATA_FLAG_NO_POWEROFF_SPINDOWN) &&
1526 system_state == SYSTEM_POWER_OFF)
1527 goto skip;
1528
1529 if ((qc->ap->flags & ATA_FLAG_NO_HIBERNATE_SPINDOWN) &&
1530 system_entering_hibernation())
1531 goto skip;
1532
78981a7c
RH
1533 /* Issue ATA STANDBY IMMEDIATE command */
1534 tf->command = ATA_CMD_STANDBYNOW1;
920a4b10 1535 }
78981a7c 1536
972dcafb
DG
1537 /*
1538 * Standby and Idle condition timers could be implemented but that
1539 * would require libata to implement the Power condition mode page
1540 * and allow the user to change it. Changing mode pages requires
1541 * MODE SELECT to be implemented.
1542 */
1543
1544 return 0;
ae006510 1545
2a6e58d2 1546 invalid_fld:
0df10b84 1547 ata_scsi_set_invalid_field(qc->dev, scmd, fp, bp);
ae006510 1548 return 1;
2a6e58d2
RW
1549 skip:
1550 scmd->result = SAM_STAT_GOOD;
1551 return 1;
972dcafb
DG
1552}
1553
1554
1da177e4
LT
1555/**
1556 * ata_scsi_flush_xlat - Translate SCSI SYNCHRONIZE CACHE command
1557 * @qc: Storage for translated ATA taskfile
1da177e4
LT
1558 *
1559 * Sets up an ATA taskfile to issue FLUSH CACHE or
1560 * FLUSH CACHE EXT.
1561 *
1562 * LOCKING:
cca3974e 1563 * spin_lock_irqsave(host lock)
1da177e4
LT
1564 *
1565 * RETURNS:
1566 * Zero on success, non-zero on error.
1567 */
ad706991 1568static unsigned int ata_scsi_flush_xlat(struct ata_queued_cmd *qc)
1da177e4
LT
1569{
1570 struct ata_taskfile *tf = &qc->tf;
1571
1572 tf->flags |= ATA_TFLAG_DEVICE;
1573 tf->protocol = ATA_PROT_NODATA;
1574
6fc49adb 1575 if (qc->dev->flags & ATA_DFLAG_FLUSH_EXT)
1da177e4
LT
1576 tf->command = ATA_CMD_FLUSH_EXT;
1577 else
1578 tf->command = ATA_CMD_FLUSH;
1579
b666da35
TH
1580 /* flush is critical for IO integrity, consider it an IO command */
1581 qc->flags |= ATA_QCFLAG_IO;
1582
1da177e4
LT
1583 return 0;
1584}
1585
3aef5231
AL
1586/**
1587 * scsi_6_lba_len - Get LBA and transfer length
542b1444 1588 * @cdb: SCSI command to translate
3aef5231
AL
1589 *
1590 * Calculate LBA and transfer length for 6-byte commands.
1591 *
1592 * RETURNS:
1593 * @plba: the LBA
1594 * @plen: the transfer length
1595 */
542b1444 1596static void scsi_6_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
3aef5231
AL
1597{
1598 u64 lba = 0;
6c7b7d2b 1599 u32 len;
3aef5231
AL
1600
1601 VPRINTK("six-byte command\n");
1602
6c7b7d2b 1603 lba |= ((u64)(cdb[1] & 0x1f)) << 16;
542b1444
TH
1604 lba |= ((u64)cdb[2]) << 8;
1605 lba |= ((u64)cdb[3]);
3aef5231 1606
6c7b7d2b 1607 len = cdb[4];
3aef5231
AL
1608
1609 *plba = lba;
1610 *plen = len;
1611}
1612
1613/**
1614 * scsi_10_lba_len - Get LBA and transfer length
542b1444 1615 * @cdb: SCSI command to translate
3aef5231
AL
1616 *
1617 * Calculate LBA and transfer length for 10-byte commands.
1618 *
1619 * RETURNS:
1620 * @plba: the LBA
1621 * @plen: the transfer length
1622 */
542b1444 1623static void scsi_10_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
3aef5231
AL
1624{
1625 u64 lba = 0;
1626 u32 len = 0;
1627
1628 VPRINTK("ten-byte command\n");
1629
542b1444
TH
1630 lba |= ((u64)cdb[2]) << 24;
1631 lba |= ((u64)cdb[3]) << 16;
1632 lba |= ((u64)cdb[4]) << 8;
1633 lba |= ((u64)cdb[5]);
3aef5231 1634
542b1444
TH
1635 len |= ((u32)cdb[7]) << 8;
1636 len |= ((u32)cdb[8]);
3aef5231
AL
1637
1638 *plba = lba;
1639 *plen = len;
1640}
1641
1642/**
1643 * scsi_16_lba_len - Get LBA and transfer length
542b1444 1644 * @cdb: SCSI command to translate
3aef5231
AL
1645 *
1646 * Calculate LBA and transfer length for 16-byte commands.
1647 *
1648 * RETURNS:
1649 * @plba: the LBA
1650 * @plen: the transfer length
1651 */
542b1444 1652static void scsi_16_lba_len(const u8 *cdb, u64 *plba, u32 *plen)
3aef5231
AL
1653{
1654 u64 lba = 0;
1655 u32 len = 0;
1656
1657 VPRINTK("sixteen-byte command\n");
1658
542b1444
TH
1659 lba |= ((u64)cdb[2]) << 56;
1660 lba |= ((u64)cdb[3]) << 48;
1661 lba |= ((u64)cdb[4]) << 40;
1662 lba |= ((u64)cdb[5]) << 32;
1663 lba |= ((u64)cdb[6]) << 24;
1664 lba |= ((u64)cdb[7]) << 16;
1665 lba |= ((u64)cdb[8]) << 8;
1666 lba |= ((u64)cdb[9]);
3aef5231 1667
542b1444
TH
1668 len |= ((u32)cdb[10]) << 24;
1669 len |= ((u32)cdb[11]) << 16;
1670 len |= ((u32)cdb[12]) << 8;
1671 len |= ((u32)cdb[13]);
3aef5231
AL
1672
1673 *plba = lba;
1674 *plen = len;
1675}
1676
1da177e4
LT
1677/**
1678 * ata_scsi_verify_xlat - Translate SCSI VERIFY command into an ATA one
1679 * @qc: Storage for translated ATA taskfile
1da177e4
LT
1680 *
1681 * Converts SCSI VERIFY command to an ATA READ VERIFY command.
1682 *
1683 * LOCKING:
cca3974e 1684 * spin_lock_irqsave(host lock)
1da177e4
LT
1685 *
1686 * RETURNS:
1687 * Zero on success, non-zero on error.
1688 */
ad706991 1689static unsigned int ata_scsi_verify_xlat(struct ata_queued_cmd *qc)
1da177e4 1690{
542b1444 1691 struct scsi_cmnd *scmd = qc->scsicmd;
1da177e4 1692 struct ata_taskfile *tf = &qc->tf;
8bf62ece 1693 struct ata_device *dev = qc->dev;
1da177e4 1694 u64 dev_sectors = qc->dev->n_sectors;
ad706991 1695 const u8 *cdb = scmd->cmnd;
3aef5231
AL
1696 u64 block;
1697 u32 n_block;
bcfc867d 1698 u16 fp;
1da177e4
LT
1699
1700 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1701 tf->protocol = ATA_PROT_NODATA;
1da177e4 1702
2e5704f6 1703 if (cdb[0] == VERIFY) {
bcfc867d
HR
1704 if (scmd->cmd_len < 10) {
1705 fp = 9;
2e5704f6 1706 goto invalid_fld;
bcfc867d 1707 }
542b1444 1708 scsi_10_lba_len(cdb, &block, &n_block);
2e5704f6 1709 } else if (cdb[0] == VERIFY_16) {
bcfc867d
HR
1710 if (scmd->cmd_len < 16) {
1711 fp = 15;
2e5704f6 1712 goto invalid_fld;
bcfc867d 1713 }
542b1444 1714 scsi_16_lba_len(cdb, &block, &n_block);
bcfc867d
HR
1715 } else {
1716 fp = 0;
ae006510 1717 goto invalid_fld;
bcfc867d 1718 }
1da177e4 1719
8bf62ece 1720 if (!n_block)
ae006510 1721 goto nothing_to_do;
8bf62ece 1722 if (block >= dev_sectors)
ae006510 1723 goto out_of_range;
8bf62ece 1724 if ((block + n_block) > dev_sectors)
ae006510 1725 goto out_of_range;
1da177e4 1726
07506697
AL
1727 if (dev->flags & ATA_DFLAG_LBA) {
1728 tf->flags |= ATA_TFLAG_LBA;
1729
c6a33e24
AL
1730 if (lba_28_ok(block, n_block)) {
1731 /* use LBA28 */
1732 tf->command = ATA_CMD_VERIFY;
1733 tf->device |= (block >> 24) & 0xf;
1734 } else if (lba_48_ok(block, n_block)) {
1735 if (!(dev->flags & ATA_DFLAG_LBA48))
1736 goto out_of_range;
07506697
AL
1737
1738 /* use LBA48 */
1739 tf->flags |= ATA_TFLAG_LBA48;
8bf62ece 1740 tf->command = ATA_CMD_VERIFY_EXT;
1da177e4 1741
8bf62ece 1742 tf->hob_nsect = (n_block >> 8) & 0xff;
1da177e4 1743
8bf62ece
AL
1744 tf->hob_lbah = (block >> 40) & 0xff;
1745 tf->hob_lbam = (block >> 32) & 0xff;
1746 tf->hob_lbal = (block >> 24) & 0xff;
c6a33e24
AL
1747 } else
1748 /* request too large even for LBA48 */
1749 goto out_of_range;
8bf62ece
AL
1750
1751 tf->nsect = n_block & 0xff;
1da177e4 1752
8bf62ece
AL
1753 tf->lbah = (block >> 16) & 0xff;
1754 tf->lbam = (block >> 8) & 0xff;
1755 tf->lbal = block & 0xff;
1da177e4 1756
8bf62ece
AL
1757 tf->device |= ATA_LBA;
1758 } else {
1759 /* CHS */
1760 u32 sect, head, cyl, track;
1761
c6a33e24
AL
1762 if (!lba_28_ok(block, n_block))
1763 goto out_of_range;
07506697 1764
8bf62ece
AL
1765 /* Convert LBA to CHS */
1766 track = (u32)block / dev->sectors;
1767 cyl = track / dev->heads;
1768 head = track % dev->heads;
1769 sect = (u32)block % dev->sectors + 1;
1770
c187c4b5
AL
1771 DPRINTK("block %u track %u cyl %u head %u sect %u\n",
1772 (u32)block, track, cyl, head, sect);
2e9edbf8
JG
1773
1774 /* Check whether the converted CHS can fit.
1775 Cylinder: 0-65535
8bf62ece
AL
1776 Head: 0-15
1777 Sector: 1-255*/
2e9edbf8 1778 if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect))
ae006510 1779 goto out_of_range;
2e9edbf8 1780
8bf62ece
AL
1781 tf->command = ATA_CMD_VERIFY;
1782 tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */
1783 tf->lbal = sect;
1784 tf->lbam = cyl;
1785 tf->lbah = cyl >> 8;
1786 tf->device |= head;
1787 }
1da177e4
LT
1788
1789 return 0;
ae006510
DG
1790
1791invalid_fld:
0df10b84 1792 ata_scsi_set_invalid_field(qc->dev, scmd, fp, 0xff);
ae006510
DG
1793 return 1;
1794
1795out_of_range:
06dbde5f 1796 ata_scsi_set_sense(qc->dev, scmd, ILLEGAL_REQUEST, 0x21, 0x0);
ae006510
DG
1797 /* "Logical Block Address out of range" */
1798 return 1;
1799
1800nothing_to_do:
542b1444 1801 scmd->result = SAM_STAT_GOOD;
ae006510 1802 return 1;
1da177e4
LT
1803}
1804
1805/**
1806 * ata_scsi_rw_xlat - Translate SCSI r/w command into an ATA one
1807 * @qc: Storage for translated ATA taskfile
1da177e4
LT
1808 *
1809 * Converts any of six SCSI read/write commands into the
1810 * ATA counterpart, including starting sector (LBA),
1811 * sector count, and taking into account the device's LBA48
1812 * support.
1813 *
1814 * Commands %READ_6, %READ_10, %READ_16, %WRITE_6, %WRITE_10, and
1815 * %WRITE_16 are currently supported.
1816 *
1817 * LOCKING:
cca3974e 1818 * spin_lock_irqsave(host lock)
1da177e4
LT
1819 *
1820 * RETURNS:
1821 * Zero on success, non-zero on error.
1822 */
ad706991 1823static unsigned int ata_scsi_rw_xlat(struct ata_queued_cmd *qc)
1da177e4 1824{
542b1444 1825 struct scsi_cmnd *scmd = qc->scsicmd;
ad706991 1826 const u8 *cdb = scmd->cmnd;
8e061784
AM
1827 struct request *rq = scmd->request;
1828 int class = IOPRIO_PRIO_CLASS(req_get_ioprio(rq));
bd056d7e 1829 unsigned int tf_flags = 0;
3aef5231
AL
1830 u64 block;
1831 u32 n_block;
bd056d7e 1832 int rc;
bcfc867d 1833 u16 fp = 0;
1da177e4 1834
542b1444 1835 if (cdb[0] == WRITE_10 || cdb[0] == WRITE_6 || cdb[0] == WRITE_16)
bd056d7e 1836 tf_flags |= ATA_TFLAG_WRITE;
1da177e4 1837
9a3dccc4 1838 /* Calculate the SCSI LBA, transfer length and FUA. */
542b1444 1839 switch (cdb[0]) {
3aef5231
AL
1840 case READ_10:
1841 case WRITE_10:
bcfc867d
HR
1842 if (unlikely(scmd->cmd_len < 10)) {
1843 fp = 9;
2e5704f6 1844 goto invalid_fld;
bcfc867d 1845 }
542b1444 1846 scsi_10_lba_len(cdb, &block, &n_block);
3e451a49 1847 if (cdb[1] & (1 << 3))
bd056d7e 1848 tf_flags |= ATA_TFLAG_FUA;
3aef5231
AL
1849 break;
1850 case READ_6:
1851 case WRITE_6:
bcfc867d
HR
1852 if (unlikely(scmd->cmd_len < 6)) {
1853 fp = 5;
2e5704f6 1854 goto invalid_fld;
bcfc867d 1855 }
542b1444 1856 scsi_6_lba_len(cdb, &block, &n_block);
c187c4b5
AL
1857
1858 /* for 6-byte r/w commands, transfer length 0
1859 * means 256 blocks of data, not 0 block.
1860 */
76b2bf9b
JG
1861 if (!n_block)
1862 n_block = 256;
3aef5231
AL
1863 break;
1864 case READ_16:
1865 case WRITE_16:
bcfc867d
HR
1866 if (unlikely(scmd->cmd_len < 16)) {
1867 fp = 15;
2e5704f6 1868 goto invalid_fld;
bcfc867d 1869 }
542b1444 1870 scsi_16_lba_len(cdb, &block, &n_block);
3e451a49 1871 if (cdb[1] & (1 << 3))
bd056d7e 1872 tf_flags |= ATA_TFLAG_FUA;
3aef5231
AL
1873 break;
1874 default:
8bf62ece 1875 DPRINTK("no-byte command\n");
bcfc867d 1876 fp = 0;
ae006510 1877 goto invalid_fld;
1da177e4
LT
1878 }
1879
8bf62ece
AL
1880 /* Check and compose ATA command */
1881 if (!n_block)
c187c4b5
AL
1882 /* For 10-byte and 16-byte SCSI R/W commands, transfer
1883 * length 0 means transfer 0 block of data.
1884 * However, for ATA R/W commands, sector count 0 means
1885 * 256 or 65536 sectors, not 0 sectors as in SCSI.
f51750d5
AC
1886 *
1887 * WARNING: one or two older ATA drives treat 0 as 0...
c187c4b5 1888 */
ae006510 1889 goto nothing_to_do;
1da177e4 1890
bd056d7e 1891 qc->flags |= ATA_QCFLAG_IO;
295124dc 1892 qc->nbytes = n_block * scmd->device->sector_size;
1da177e4 1893
bd056d7e 1894 rc = ata_build_rw_tf(&qc->tf, qc->dev, block, n_block, tf_flags,
8e061784
AM
1895 qc->tag, class);
1896
bd056d7e
TH
1897 if (likely(rc == 0))
1898 return 0;
ae006510 1899
bd056d7e
TH
1900 if (rc == -ERANGE)
1901 goto out_of_range;
1902 /* treat all other errors as -EINVAL, fall through */
ae006510 1903invalid_fld:
0df10b84 1904 ata_scsi_set_invalid_field(qc->dev, scmd, fp, 0xff);
ae006510
DG
1905 return 1;
1906
1907out_of_range:
06dbde5f 1908 ata_scsi_set_sense(qc->dev, scmd, ILLEGAL_REQUEST, 0x21, 0x0);
ae006510
DG
1909 /* "Logical Block Address out of range" */
1910 return 1;
1911
1912nothing_to_do:
542b1444 1913 scmd->result = SAM_STAT_GOOD;
ae006510 1914 return 1;
1da177e4
LT
1915}
1916
2aa8f5d6
CH
1917static void ata_qc_done(struct ata_queued_cmd *qc)
1918{
1919 struct scsi_cmnd *cmd = qc->scsicmd;
1920 void (*done)(struct scsi_cmnd *) = qc->scsidone;
1921
1922 ata_qc_free(qc);
1923 done(cmd);
1924}
1925
77853bf2 1926static void ata_scsi_qc_complete(struct ata_queued_cmd *qc)
1da177e4 1927{
c31f571d 1928 struct ata_port *ap = qc->ap;
1da177e4 1929 struct scsi_cmnd *cmd = qc->scsicmd;
a7dac447 1930 u8 *cdb = cmd->cmnd;
2dcb407e 1931 int need_sense = (qc->err_mask != 0);
b095518e
JG
1932
1933 /* For ATA pass thru (SAT) commands, generate a sense block if
1934 * user mandated it or if there's an error. Note that if we
84a9a8cd
GG
1935 * generate because the user forced us to [CK_COND =1], a check
1936 * condition is generated and the ATA register values are returned
b095518e 1937 * whether the command completed successfully or not. If there
84a9a8cd
GG
1938 * was no error, we use the following sense data:
1939 * sk = RECOVERED ERROR
1940 * asc,ascq = ATA PASS-THROUGH INFORMATION AVAILABLE
b095518e 1941 */
a7dac447 1942 if (((cdb[0] == ATA_16) || (cdb[0] == ATA_12)) &&
25c7ce7f 1943 ((cdb[2] & 0x20) || need_sense))
750426aa 1944 ata_gen_passthru_sense(qc);
5b01e4b9
HR
1945 else if (qc->flags & ATA_QCFLAG_SENSE_VALID)
1946 cmd->result = SAM_STAT_CHECK_CONDITION;
25c7ce7f
CH
1947 else if (need_sense)
1948 ata_gen_ata_sense(qc);
1949 else
1950 cmd->result = SAM_STAT_GOOD;
1da177e4 1951
c31f571d 1952 if (need_sense && !ap->ops->error_handler)
44877b4e 1953 ata_dump_status(ap->print_id, &qc->result_tf);
1da177e4 1954
2aa8f5d6 1955 ata_qc_done(qc);
1da177e4
LT
1956}
1957
1958/**
1959 * ata_scsi_translate - Translate then issue SCSI command to ATA device
1da177e4
LT
1960 * @dev: ATA device to which the command is addressed
1961 * @cmd: SCSI command to execute
1da177e4
LT
1962 * @xlat_func: Actor which translates @cmd to an ATA taskfile
1963 *
1964 * Our ->queuecommand() function has decided that the SCSI
1965 * command issued can be directly translated into an ATA
1966 * command, rather than handled internally.
1967 *
1968 * This function sets up an ata_queued_cmd structure for the
1969 * SCSI command, and sends that ata_queued_cmd to the hardware.
1970 *
ae006510
DG
1971 * The xlat_func argument (actor) returns 0 if ready to execute
1972 * ATA command, else 1 to finish translation. If 1 is returned
1973 * then cmd->result (and possibly cmd->sense_buffer) are assumed
1974 * to be set reflecting an error condition or clean (early)
1975 * termination.
1976 *
1da177e4 1977 * LOCKING:
cca3974e 1978 * spin_lock_irqsave(host lock)
2115ea94
TH
1979 *
1980 * RETURNS:
1981 * 0 on success, SCSI_ML_QUEUE_DEVICE_BUSY if the command
1982 * needs to be deferred.
1da177e4 1983 */
2115ea94 1984static int ata_scsi_translate(struct ata_device *dev, struct scsi_cmnd *cmd,
2115ea94 1985 ata_xlat_func_t xlat_func)
1da177e4 1986{
31cc23b3 1987 struct ata_port *ap = dev->link->ap;
1da177e4 1988 struct ata_queued_cmd *qc;
31cc23b3 1989 int rc;
1da177e4
LT
1990
1991 VPRINTK("ENTER\n");
1992
b27dcfb0 1993 qc = ata_scsi_qc_new(dev, cmd);
1da177e4 1994 if (!qc)
ae006510 1995 goto err_mem;
1da177e4
LT
1996
1997 /* data is present; dma-map it */
be7db055
CH
1998 if (cmd->sc_data_direction == DMA_FROM_DEVICE ||
1999 cmd->sc_data_direction == DMA_TO_DEVICE) {
7120165c 2000 if (unlikely(scsi_bufflen(cmd) < 1)) {
a9a79dfe 2001 ata_dev_warn(dev, "WARNING: zero len r/w req\n");
ae006510 2002 goto err_did;
1da177e4
LT
2003 }
2004
7120165c 2005 ata_sg_init(qc, scsi_sglist(cmd), scsi_sg_count(cmd));
1da177e4
LT
2006
2007 qc->dma_dir = cmd->sc_data_direction;
2008 }
2009
2010 qc->complete_fn = ata_scsi_qc_complete;
2011
ad706991 2012 if (xlat_func(qc))
ae006510 2013 goto early_finish;
1da177e4 2014
31cc23b3
TH
2015 if (ap->ops->qc_defer) {
2016 if ((rc = ap->ops->qc_defer(qc)))
2017 goto defer;
2018 }
2019
1da177e4 2020 /* select device, send command to hardware */
8e0e694a 2021 ata_qc_issue(qc);
1da177e4
LT
2022
2023 VPRINTK("EXIT\n");
2115ea94 2024 return 0;
1da177e4 2025
ae006510 2026early_finish:
2dcb407e 2027 ata_qc_free(qc);
b27dcfb0 2028 cmd->scsi_done(cmd);
ae006510 2029 DPRINTK("EXIT - early finish (good or error)\n");
2115ea94 2030 return 0;
ae006510
DG
2031
2032err_did:
1da177e4 2033 ata_qc_free(qc);
ae006510 2034 cmd->result = (DID_ERROR << 16);
b27dcfb0 2035 cmd->scsi_done(cmd);
253b92ec 2036err_mem:
ae006510 2037 DPRINTK("EXIT - internal\n");
2115ea94 2038 return 0;
3dc1d881
TH
2039
2040defer:
31cc23b3 2041 ata_qc_free(qc);
3dc1d881 2042 DPRINTK("EXIT - defer\n");
31cc23b3
TH
2043 if (rc == ATA_DEFER_LINK)
2044 return SCSI_MLQUEUE_DEVICE_BUSY;
2045 else
2046 return SCSI_MLQUEUE_HOST_BUSY;
1da177e4
LT
2047}
2048
2049/**
2050 * ata_scsi_rbuf_get - Map response buffer.
ec2a20e6 2051 * @cmd: SCSI command containing buffer to be mapped.
87340e98
TH
2052 * @flags: unsigned long variable to store irq enable status
2053 * @copy_in: copy in from user buffer
1da177e4 2054 *
87340e98 2055 * Prepare buffer for simulated SCSI commands.
1da177e4
LT
2056 *
2057 * LOCKING:
87340e98 2058 * spin_lock_irqsave(ata_scsi_rbuf_lock) on success
1da177e4
LT
2059 *
2060 * RETURNS:
87340e98 2061 * Pointer to response buffer.
1da177e4 2062 */
87340e98
TH
2063static void *ata_scsi_rbuf_get(struct scsi_cmnd *cmd, bool copy_in,
2064 unsigned long *flags)
1da177e4 2065{
87340e98 2066 spin_lock_irqsave(&ata_scsi_rbuf_lock, *flags);
1da177e4 2067
87340e98
TH
2068 memset(ata_scsi_rbuf, 0, ATA_SCSI_RBUF_SIZE);
2069 if (copy_in)
2070 sg_copy_to_buffer(scsi_sglist(cmd), scsi_sg_count(cmd),
2071 ata_scsi_rbuf, ATA_SCSI_RBUF_SIZE);
2072 return ata_scsi_rbuf;
1da177e4
LT
2073}
2074
2075/**
2076 * ata_scsi_rbuf_put - Unmap response buffer.
2077 * @cmd: SCSI command containing buffer to be unmapped.
87340e98
TH
2078 * @copy_out: copy out result
2079 * @flags: @flags passed to ata_scsi_rbuf_get()
1da177e4 2080 *
87340e98
TH
2081 * Returns rbuf buffer. The result is copied to @cmd's buffer if
2082 * @copy_back is true.
1da177e4
LT
2083 *
2084 * LOCKING:
87340e98 2085 * Unlocks ata_scsi_rbuf_lock.
1da177e4 2086 */
87340e98
TH
2087static inline void ata_scsi_rbuf_put(struct scsi_cmnd *cmd, bool copy_out,
2088 unsigned long *flags)
1da177e4 2089{
87340e98
TH
2090 if (copy_out)
2091 sg_copy_from_buffer(scsi_sglist(cmd), scsi_sg_count(cmd),
2092 ata_scsi_rbuf, ATA_SCSI_RBUF_SIZE);
2093 spin_unlock_irqrestore(&ata_scsi_rbuf_lock, *flags);
1da177e4
LT
2094}
2095
2096/**
2097 * ata_scsi_rbuf_fill - wrapper for SCSI command simulators
2098 * @args: device IDENTIFY data / SCSI command of interest.
2099 * @actor: Callback hook for desired SCSI command simulator
2100 *
2101 * Takes care of the hard work of simulating a SCSI command...
2102 * Mapping the response buffer, calling the command's handler,
2103 * and handling the handler's return value. This return value
2104 * indicates whether the handler wishes the SCSI command to be
ae006510
DG
2105 * completed successfully (0), or not (in which case cmd->result
2106 * and sense buffer are assumed to be set).
1da177e4
LT
2107 *
2108 * LOCKING:
cca3974e 2109 * spin_lock_irqsave(host lock)
1da177e4 2110 */
f0761be3 2111static void ata_scsi_rbuf_fill(struct ata_scsi_args *args,
87340e98 2112 unsigned int (*actor)(struct ata_scsi_args *args, u8 *rbuf))
1da177e4
LT
2113{
2114 u8 *rbuf;
87340e98 2115 unsigned int rc;
1da177e4 2116 struct scsi_cmnd *cmd = args->cmd;
b445c568
JG
2117 unsigned long flags;
2118
87340e98
TH
2119 rbuf = ata_scsi_rbuf_get(cmd, false, &flags);
2120 rc = actor(args, rbuf);
2121 ata_scsi_rbuf_put(cmd, rc == 0, &flags);
b445c568 2122
ae006510 2123 if (rc == 0)
1da177e4 2124 cmd->result = SAM_STAT_GOOD;
ae006510 2125 args->done(cmd);
1da177e4
LT
2126}
2127
2128/**
2129 * ata_scsiop_inq_std - Simulate INQUIRY command
2130 * @args: device IDENTIFY data / SCSI command of interest.
2131 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1da177e4
LT
2132 *
2133 * Returns standard device identification data associated
b142eb65 2134 * with non-VPD INQUIRY command output.
1da177e4
LT
2135 *
2136 * LOCKING:
cca3974e 2137 * spin_lock_irqsave(host lock)
1da177e4 2138 */
87340e98 2139static unsigned int ata_scsiop_inq_std(struct ata_scsi_args *args, u8 *rbuf)
1da177e4 2140{
87340e98 2141 const u8 versions[] = {
f9ca5ab8 2142 0x00,
87340e98
TH
2143 0x60, /* SAM-3 (no version claimed) */
2144
2145 0x03,
2146 0x20, /* SBC-2 (no version claimed) */
2147
29a37ea4
TY
2148 0x03,
2149 0x00 /* SPC-3 (no version claimed) */
87340e98 2150 };
f9ca5ab8
HR
2151 const u8 versions_zbc[] = {
2152 0x00,
2153 0xA0, /* SAM-5 (no version claimed) */
2154
856c4663
HR
2155 0x06,
2156 0x00, /* SBC-4 (no version claimed) */
f9ca5ab8 2157
856c4663
HR
2158 0x05,
2159 0xC0, /* SPC-5 (no version claimed) */
f9ca5ab8
HR
2160
2161 0x60,
856c4663 2162 0x24, /* ZBC r05 */
f9ca5ab8
HR
2163 };
2164
1da177e4
LT
2165 u8 hdr[] = {
2166 TYPE_DISK,
2167 0,
2168 0x5, /* claim SPC-3 version compatibility */
2169 2,
415ffdde
TY
2170 95 - 4,
2171 0,
2172 0,
2173 2
1da177e4
LT
2174 };
2175
87340e98
TH
2176 VPRINTK("ENTER\n");
2177
8a3e33cf
ML
2178 /* set scsi removable (RMB) bit per ata bit, or if the
2179 * AHCI port says it's external (Hotplug-capable, eSATA).
2180 */
2181 if (ata_id_removable(args->id) ||
2182 (args->dev->link->ap->pflags & ATA_PFLAG_EXTERNAL))
1da177e4
LT
2183 hdr[1] |= (1 << 7);
2184
56b8cbab 2185 if (args->dev->class == ATA_DEV_ZAC) {
f9ca5ab8 2186 hdr[0] = TYPE_ZBC;
56b8cbab
TY
2187 hdr[2] = 0x7; /* claim SPC-5 version compatibility */
2188 }
f9ca5ab8 2189
1da177e4 2190 memcpy(rbuf, hdr, sizeof(hdr));
87340e98
TH
2191 memcpy(&rbuf[8], "ATA ", 8);
2192 ata_id_string(args->id, &rbuf[16], ATA_ID_PROD, 16);
c49a6bf5
KB
2193
2194 /* From SAT, use last 2 words from fw rev unless they are spaces */
2195 ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV + 2, 4);
2196 if (strncmp(&rbuf[32], " ", 4) == 0)
2197 ata_id_string(args->id, &rbuf[32], ATA_ID_FW_REV, 4);
1da177e4 2198
87340e98
TH
2199 if (rbuf[32] == 0 || rbuf[32] == ' ')
2200 memcpy(&rbuf[32], "n/a ", 4);
1da177e4 2201
856c4663 2202 if (ata_id_zoned_cap(args->id) || args->dev->class == ATA_DEV_ZAC)
f9ca5ab8
HR
2203 memcpy(rbuf + 58, versions_zbc, sizeof(versions_zbc));
2204 else
2205 memcpy(rbuf + 58, versions, sizeof(versions));
1da177e4
LT
2206
2207 return 0;
2208}
2209
2210/**
b142eb65 2211 * ata_scsiop_inq_00 - Simulate INQUIRY VPD page 0, list of pages
1da177e4
LT
2212 * @args: device IDENTIFY data / SCSI command of interest.
2213 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1da177e4 2214 *
b142eb65 2215 * Returns list of inquiry VPD pages available.
1da177e4
LT
2216 *
2217 * LOCKING:
cca3974e 2218 * spin_lock_irqsave(host lock)
1da177e4 2219 */
87340e98 2220static unsigned int ata_scsiop_inq_00(struct ata_scsi_args *args, u8 *rbuf)
1da177e4 2221{
6d1003ae 2222 int num_pages;
1da177e4
LT
2223 const u8 pages[] = {
2224 0x00, /* page 0x00, this page */
2225 0x80, /* page 0x80, unit serial no page */
1e9dbc92
MW
2226 0x83, /* page 0x83, device ident page */
2227 0x89, /* page 0x89, ata info page */
18f0f978 2228 0xb0, /* page 0xb0, block limits page */
1e9dbc92 2229 0xb1, /* page 0xb1, block device characteristics page */
02e0a604 2230 0xb2, /* page 0xb2, thin provisioning page */
6d1003ae 2231 0xb6, /* page 0xb6, zoned block device characteristics */
1da177e4 2232 };
1da177e4 2233
6d1003ae
HR
2234 num_pages = sizeof(pages);
2235 if (!(args->dev->flags & ATA_DFLAG_ZAC))
2236 num_pages--;
2237 rbuf[3] = num_pages; /* number of supported VPD pages */
2238 memcpy(rbuf + 4, pages, num_pages);
1da177e4
LT
2239 return 0;
2240}
2241
2242/**
b142eb65 2243 * ata_scsiop_inq_80 - Simulate INQUIRY VPD page 80, device serial number
1da177e4
LT
2244 * @args: device IDENTIFY data / SCSI command of interest.
2245 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1da177e4
LT
2246 *
2247 * Returns ATA device serial number.
2248 *
2249 * LOCKING:
cca3974e 2250 * spin_lock_irqsave(host lock)
1da177e4 2251 */
87340e98 2252static unsigned int ata_scsiop_inq_80(struct ata_scsi_args *args, u8 *rbuf)
1da177e4
LT
2253{
2254 const u8 hdr[] = {
2255 0,
2256 0x80, /* this page code */
2257 0,
a0cf733b 2258 ATA_ID_SERNO_LEN, /* page len */
1da177e4 2259 };
1da177e4 2260
87340e98
TH
2261 memcpy(rbuf, hdr, sizeof(hdr));
2262 ata_id_string(args->id, (unsigned char *) &rbuf[4],
2263 ATA_ID_SERNO, ATA_ID_SERNO_LEN);
1da177e4
LT
2264 return 0;
2265}
2266
1da177e4 2267/**
b142eb65 2268 * ata_scsiop_inq_83 - Simulate INQUIRY VPD page 83, device identity
1da177e4
LT
2269 * @args: device IDENTIFY data / SCSI command of interest.
2270 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1da177e4 2271 *
b142eb65
JG
2272 * Yields two logical unit device identification designators:
2273 * - vendor specific ASCII containing the ATA serial number
2274 * - SAT defined "t10 vendor id based" containing ASCII vendor
2275 * name ("ATA "), model and serial numbers.
1da177e4
LT
2276 *
2277 * LOCKING:
cca3974e 2278 * spin_lock_irqsave(host lock)
1da177e4 2279 */
87340e98 2280static unsigned int ata_scsiop_inq_83(struct ata_scsi_args *args, u8 *rbuf)
1da177e4 2281{
b142eb65 2282 const int sat_model_serial_desc_len = 68;
87340e98 2283 int num;
1da177e4 2284
b142eb65
JG
2285 rbuf[1] = 0x83; /* this page code */
2286 num = 4;
2287
87340e98
TH
2288 /* piv=0, assoc=lu, code_set=ACSII, designator=vendor */
2289 rbuf[num + 0] = 2;
2290 rbuf[num + 3] = ATA_ID_SERNO_LEN;
2291 num += 4;
2292 ata_id_string(args->id, (unsigned char *) rbuf + num,
2293 ATA_ID_SERNO, ATA_ID_SERNO_LEN);
2294 num += ATA_ID_SERNO_LEN;
2295
2296 /* SAT defined lu model and serial numbers descriptor */
2297 /* piv=0, assoc=lu, code_set=ACSII, designator=t10 vendor id */
2298 rbuf[num + 0] = 2;
2299 rbuf[num + 1] = 1;
2300 rbuf[num + 3] = sat_model_serial_desc_len;
2301 num += 4;
2302 memcpy(rbuf + num, "ATA ", 8);
2303 num += 8;
2304 ata_id_string(args->id, (unsigned char *) rbuf + num, ATA_ID_PROD,
2305 ATA_ID_PROD_LEN);
2306 num += ATA_ID_PROD_LEN;
2307 ata_id_string(args->id, (unsigned char *) rbuf + num, ATA_ID_SERNO,
2308 ATA_ID_SERNO_LEN);
2309 num += ATA_ID_SERNO_LEN;
2310
6b3b9d73
HR
2311 if (ata_id_has_wwn(args->id)) {
2312 /* SAT defined lu world wide name */
2313 /* piv=0, assoc=lu, code_set=binary, designator=NAA */
2314 rbuf[num + 0] = 1;
2315 rbuf[num + 1] = 3;
2316 rbuf[num + 3] = ATA_ID_WWN_LEN;
2317 num += 4;
2318 ata_id_string(args->id, (unsigned char *) rbuf + num,
2319 ATA_ID_WWN, ATA_ID_WWN_LEN);
2320 num += ATA_ID_WWN_LEN;
2321 }
b142eb65 2322 rbuf[3] = num - 4; /* page len (assume less than 256 bytes) */
1da177e4
LT
2323 return 0;
2324}
2325
ad355b46
JG
2326/**
2327 * ata_scsiop_inq_89 - Simulate INQUIRY VPD page 89, ATA info
2328 * @args: device IDENTIFY data / SCSI command of interest.
2329 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
ad355b46
JG
2330 *
2331 * Yields SAT-specified ATA VPD page.
2332 *
2333 * LOCKING:
2334 * spin_lock_irqsave(host lock)
2335 */
87340e98 2336static unsigned int ata_scsiop_inq_89(struct ata_scsi_args *args, u8 *rbuf)
ad355b46 2337{
ad355b46 2338 struct ata_taskfile tf;
ad355b46 2339
ad355b46
JG
2340 memset(&tf, 0, sizeof(tf));
2341
87340e98
TH
2342 rbuf[1] = 0x89; /* our page code */
2343 rbuf[2] = (0x238 >> 8); /* page size fixed at 238h */
2344 rbuf[3] = (0x238 & 0xff);
ad355b46 2345
87340e98
TH
2346 memcpy(&rbuf[8], "linux ", 8);
2347 memcpy(&rbuf[16], "libata ", 16);
2348 memcpy(&rbuf[32], DRV_VERSION, 4);
ad355b46
JG
2349
2350 /* we don't store the ATA device signature, so we fake it */
2351
2352 tf.command = ATA_DRDY; /* really, this is Status reg */
2353 tf.lbal = 0x1;
2354 tf.nsect = 0x1;
2355
87340e98
TH
2356 ata_tf_to_fis(&tf, 0, 1, &rbuf[36]); /* TODO: PMP? */
2357 rbuf[36] = 0x34; /* force D2H Reg FIS (34h) */
ad355b46 2358
87340e98 2359 rbuf[56] = ATA_CMD_ID_ATA;
ad355b46 2360
87340e98 2361 memcpy(&rbuf[60], &args->id[0], 512);
ad355b46
JG
2362 return 0;
2363}
2364
18f0f978
CH
2365static unsigned int ata_scsiop_inq_b0(struct ata_scsi_args *args, u8 *rbuf)
2366{
295124dc 2367 u16 min_io_sectors;
18f0f978
CH
2368
2369 rbuf[1] = 0xb0;
2370 rbuf[3] = 0x3c; /* required VPD size with unmap support */
2371
2372 /*
2373 * Optimal transfer length granularity.
2374 *
2375 * This is always one physical block, but for disks with a smaller
2376 * logical than physical sector size we need to figure out what the
2377 * latter is.
2378 */
295124dc 2379 min_io_sectors = 1 << ata_id_log2_per_physical_sector(args->id);
18f0f978
CH
2380 put_unaligned_be16(min_io_sectors, &rbuf[6]);
2381
2382 /*
2383 * Optimal unmap granularity.
2384 *
2385 * The ATA spec doesn't even know about a granularity or alignment
2386 * for the TRIM command. We can leave away most of the unmap related
2387 * VPD page entries, but we have specifify a granularity to signal
2388 * that we support some form of unmap - in thise case via WRITE SAME
2389 * with the unmap bit set.
2390 */
e78db4df 2391 if (ata_id_has_trim(args->id)) {
2983860c 2392 put_unaligned_be64(65535 * ATA_MAX_TRIM_RNUM, &rbuf[36]);
18f0f978 2393 put_unaligned_be32(1, &rbuf[28]);
e78db4df 2394 }
18f0f978
CH
2395
2396 return 0;
2397}
2398
1e9dbc92
MW
2399static unsigned int ata_scsiop_inq_b1(struct ata_scsi_args *args, u8 *rbuf)
2400{
4bca3286
MP
2401 int form_factor = ata_id_form_factor(args->id);
2402 int media_rotation_rate = ata_id_rotation_rate(args->id);
856c4663 2403 u8 zoned = ata_id_zoned_cap(args->id);
4bca3286 2404
1e9dbc92
MW
2405 rbuf[1] = 0xb1;
2406 rbuf[3] = 0x3c;
4bca3286
MP
2407 rbuf[4] = media_rotation_rate >> 8;
2408 rbuf[5] = media_rotation_rate;
2409 rbuf[7] = form_factor;
856c4663
HR
2410 if (zoned)
2411 rbuf[8] = (zoned << 4);
1e9dbc92
MW
2412
2413 return 0;
2414}
2415
02e0a604
MP
2416static unsigned int ata_scsiop_inq_b2(struct ata_scsi_args *args, u8 *rbuf)
2417{
2418 /* SCSI Thin Provisioning VPD page: SBC-3 rev 22 or later */
2419 rbuf[1] = 0xb2;
2420 rbuf[3] = 0x4;
2421 rbuf[5] = 1 << 6; /* TPWS */
2422
2423 return 0;
2424}
2425
6d1003ae
HR
2426static unsigned int ata_scsiop_inq_b6(struct ata_scsi_args *args, u8 *rbuf)
2427{
2428 /*
2429 * zbc-r05 SCSI Zoned Block device characteristics VPD page
2430 */
2431 rbuf[1] = 0xb6;
2432 rbuf[3] = 0x3C;
2433
2434 /*
2435 * URSWRZ bit is only meaningful for host-managed ZAC drives
2436 */
2437 if (args->dev->zac_zoned_cap & 1)
2438 rbuf[4] |= 1;
2439 put_unaligned_be32(args->dev->zac_zones_optimal_open, &rbuf[8]);
2440 put_unaligned_be32(args->dev->zac_zones_optimal_nonseq, &rbuf[12]);
2441 put_unaligned_be32(args->dev->zac_zones_max_open, &rbuf[16]);
2442
2443 return 0;
2444}
2445
1da177e4 2446/**
0cba632b 2447 * ata_scsiop_noop - Command handler that simply returns success.
1da177e4
LT
2448 * @args: device IDENTIFY data / SCSI command of interest.
2449 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1da177e4
LT
2450 *
2451 * No operation. Simply returns success to caller, to indicate
2452 * that the caller should successfully complete this SCSI command.
2453 *
2454 * LOCKING:
cca3974e 2455 * spin_lock_irqsave(host lock)
1da177e4 2456 */
87340e98 2457static unsigned int ata_scsiop_noop(struct ata_scsi_args *args, u8 *rbuf)
1da177e4
LT
2458{
2459 VPRINTK("ENTER\n");
2460 return 0;
2461}
2462
6ca8e794
PB
2463/**
2464 * modecpy - Prepare response for MODE SENSE
2465 * @dest: output buffer
2466 * @src: data being copied
2467 * @n: length of mode page
2468 * @changeable: whether changeable parameters are requested
2469 *
2470 * Generate a generic MODE SENSE page for either current or changeable
2471 * parameters.
2472 *
2473 * LOCKING:
2474 * None.
2475 */
2476static void modecpy(u8 *dest, const u8 *src, int n, bool changeable)
2477{
2478 if (changeable) {
2479 memcpy(dest, src, 2);
2480 memset(dest + 2, 0, n - 2);
2481 } else {
2482 memcpy(dest, src, n);
2483 }
2484}
2485
1da177e4
LT
2486/**
2487 * ata_msense_caching - Simulate MODE SENSE caching info page
2488 * @id: device IDENTIFY data
87340e98 2489 * @buf: output buffer
6ca8e794 2490 * @changeable: whether changeable parameters are requested
1da177e4
LT
2491 *
2492 * Generate a caching info page, which conditionally indicates
2493 * write caching to the SCSI layer, depending on device
2494 * capabilities.
2495 *
2496 * LOCKING:
2497 * None.
2498 */
6ca8e794 2499static unsigned int ata_msense_caching(u16 *id, u8 *buf, bool changeable)
1da177e4 2500{
6ca8e794 2501 modecpy(buf, def_cache_mpage, sizeof(def_cache_mpage), changeable);
737bee93
TY
2502 if (changeable) {
2503 buf[2] |= (1 << 2); /* ata_mselect_caching() */
2504 } else {
2505 buf[2] |= (ata_id_wcache_enabled(id) << 2); /* write cache enable */
2506 buf[12] |= (!ata_id_rahead_enabled(id) << 5); /* disable read ahead */
2507 }
87340e98 2508 return sizeof(def_cache_mpage);
1da177e4
LT
2509}
2510
2511/**
f086b748 2512 * ata_msense_control - Simulate MODE SENSE control mode page
06dbde5f 2513 * @dev: ATA device of interest
87340e98 2514 * @buf: output buffer
6ca8e794 2515 * @changeable: whether changeable parameters are requested
1da177e4
LT
2516 *
2517 * Generate a generic MODE SENSE control mode page.
2518 *
2519 * LOCKING:
2520 * None.
2521 */
f086b748 2522static unsigned int ata_msense_control(struct ata_device *dev, u8 *buf,
06dbde5f 2523 bool changeable)
1da177e4 2524{
6ca8e794 2525 modecpy(buf, def_control_mpage, sizeof(def_control_mpage), changeable);
737bee93
TY
2526 if (changeable) {
2527 buf[2] |= (1 << 2); /* ata_mselect_control() */
2528 } else {
2529 bool d_sense = (dev->flags & ATA_DFLAG_D_SENSE);
2530
2531 buf[2] |= (d_sense << 2); /* descriptor format sense data */
2532 }
00ac37f5 2533 return sizeof(def_control_mpage);
1da177e4
LT
2534}
2535
2536/**
2537 * ata_msense_rw_recovery - Simulate MODE SENSE r/w error recovery page
ec2a20e6 2538 * @buf: output buffer
6ca8e794 2539 * @changeable: whether changeable parameters are requested
1da177e4
LT
2540 *
2541 * Generate a generic MODE SENSE r/w error recovery page.
2542 *
2543 * LOCKING:
2544 * None.
2545 */
6ca8e794 2546static unsigned int ata_msense_rw_recovery(u8 *buf, bool changeable)
1da177e4 2547{
6ca8e794
PB
2548 modecpy(buf, def_rw_recovery_mpage, sizeof(def_rw_recovery_mpage),
2549 changeable);
00ac37f5 2550 return sizeof(def_rw_recovery_mpage);
1da177e4
LT
2551}
2552
48bdc8ec
JA
2553/*
2554 * We can turn this into a real blacklist if it's needed, for now just
2555 * blacklist any Maxtor BANC1G10 revision firmware
2556 */
2557static int ata_dev_supports_fua(u16 *id)
2558{
a0cf733b 2559 unsigned char model[ATA_ID_PROD_LEN + 1], fw[ATA_ID_FW_REV_LEN + 1];
48bdc8ec 2560
c3c013a2
JG
2561 if (!libata_fua)
2562 return 0;
48bdc8ec
JA
2563 if (!ata_id_has_fua(id))
2564 return 0;
2565
a0cf733b
TH
2566 ata_id_c_string(id, model, ATA_ID_PROD, sizeof(model));
2567 ata_id_c_string(id, fw, ATA_ID_FW_REV, sizeof(fw));
48bdc8ec 2568
2e02671d 2569 if (strcmp(model, "Maxtor"))
48bdc8ec 2570 return 1;
2e02671d 2571 if (strcmp(fw, "BANC1G10"))
48bdc8ec
JA
2572 return 1;
2573
2574 return 0; /* blacklisted */
2575}
2576
1da177e4
LT
2577/**
2578 * ata_scsiop_mode_sense - Simulate MODE SENSE 6, 10 commands
2579 * @args: device IDENTIFY data / SCSI command of interest.
2580 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1da177e4 2581 *
00ac37f5
DG
2582 * Simulate MODE SENSE commands. Assume this is invoked for direct
2583 * access devices (e.g. disks) only. There should be no block
2584 * descriptor for other device types.
1da177e4
LT
2585 *
2586 * LOCKING:
cca3974e 2587 * spin_lock_irqsave(host lock)
1da177e4 2588 */
87340e98 2589static unsigned int ata_scsiop_mode_sense(struct ata_scsi_args *args, u8 *rbuf)
1da177e4 2590{
9a3dccc4 2591 struct ata_device *dev = args->dev;
87340e98 2592 u8 *scsicmd = args->cmd->cmnd, *p = rbuf;
00ac37f5
DG
2593 const u8 sat_blk_desc[] = {
2594 0, 0, 0, 0, /* number of blocks: sat unspecified */
2595 0,
2596 0, 0x2, 0x0 /* block length: 512 bytes */
2597 };
2598 u8 pg, spg;
87340e98 2599 unsigned int ebd, page_control, six_byte;
0df10b84 2600 u8 dpofua, bp = 0xff;
bcfc867d 2601 u16 fp;
1da177e4
LT
2602
2603 VPRINTK("ENTER\n");
2604
2605 six_byte = (scsicmd[0] == MODE_SENSE);
00ac37f5
DG
2606 ebd = !(scsicmd[1] & 0x8); /* dbd bit inverted == edb */
2607 /*
2608 * LLBA bit in msense(10) ignored (compliant)
1da177e4 2609 */
00ac37f5 2610
1da177e4 2611 page_control = scsicmd[2] >> 6;
ae006510
DG
2612 switch (page_control) {
2613 case 0: /* current */
6ca8e794
PB
2614 case 1: /* changeable */
2615 case 2: /* defaults */
ae006510
DG
2616 break; /* supported */
2617 case 3: /* saved */
2618 goto saving_not_supp;
ae006510 2619 default:
bcfc867d 2620 fp = 2;
0df10b84 2621 bp = 6;
ae006510
DG
2622 goto invalid_fld;
2623 }
1da177e4 2624
87340e98
TH
2625 if (six_byte)
2626 p += 4 + (ebd ? 8 : 0);
2627 else
2628 p += 8 + (ebd ? 8 : 0);
1da177e4 2629
00ac37f5
DG
2630 pg = scsicmd[2] & 0x3f;
2631 spg = scsicmd[3];
2632 /*
2633 * No mode subpages supported (yet) but asking for _all_
2634 * subpages may be valid
2635 */
bcfc867d
HR
2636 if (spg && (spg != ALL_SUB_MPAGES)) {
2637 fp = 3;
00ac37f5 2638 goto invalid_fld;
bcfc867d 2639 }
00ac37f5
DG
2640
2641 switch(pg) {
2642 case RW_RECOVERY_MPAGE:
6ca8e794 2643 p += ata_msense_rw_recovery(p, page_control == 1);
1da177e4
LT
2644 break;
2645
00ac37f5 2646 case CACHE_MPAGE:
6ca8e794 2647 p += ata_msense_caching(args->id, p, page_control == 1);
1da177e4
LT
2648 break;
2649
87340e98 2650 case CONTROL_MPAGE:
f086b748 2651 p += ata_msense_control(args->dev, p, page_control == 1);
1da177e4 2652 break;
1da177e4 2653
00ac37f5 2654 case ALL_MPAGES:
6ca8e794
PB
2655 p += ata_msense_rw_recovery(p, page_control == 1);
2656 p += ata_msense_caching(args->id, p, page_control == 1);
f086b748 2657 p += ata_msense_control(args->dev, p, page_control == 1);
1da177e4
LT
2658 break;
2659
2660 default: /* invalid page code */
bcfc867d 2661 fp = 2;
ae006510 2662 goto invalid_fld;
1da177e4
LT
2663 }
2664
9a3dccc4 2665 dpofua = 0;
f79d409f 2666 if (ata_dev_supports_fua(args->id) && (dev->flags & ATA_DFLAG_LBA48) &&
9a3dccc4
TH
2667 (!(dev->flags & ATA_DFLAG_PIO) || dev->multi_count))
2668 dpofua = 1 << 4;
2669
1da177e4 2670 if (six_byte) {
87340e98
TH
2671 rbuf[0] = p - rbuf - 1;
2672 rbuf[2] |= dpofua;
00ac37f5 2673 if (ebd) {
87340e98
TH
2674 rbuf[3] = sizeof(sat_blk_desc);
2675 memcpy(rbuf + 4, sat_blk_desc, sizeof(sat_blk_desc));
00ac37f5 2676 }
1da177e4 2677 } else {
87340e98
TH
2678 unsigned int output_len = p - rbuf - 2;
2679
1da177e4 2680 rbuf[0] = output_len >> 8;
87340e98
TH
2681 rbuf[1] = output_len;
2682 rbuf[3] |= dpofua;
00ac37f5 2683 if (ebd) {
87340e98
TH
2684 rbuf[7] = sizeof(sat_blk_desc);
2685 memcpy(rbuf + 8, sat_blk_desc, sizeof(sat_blk_desc));
00ac37f5 2686 }
1da177e4 2687 }
1da177e4 2688 return 0;
ae006510
DG
2689
2690invalid_fld:
0df10b84 2691 ata_scsi_set_invalid_field(dev, args->cmd, fp, bp);
ae006510
DG
2692 return 1;
2693
2694saving_not_supp:
06dbde5f 2695 ata_scsi_set_sense(dev, args->cmd, ILLEGAL_REQUEST, 0x39, 0x0);
ae006510
DG
2696 /* "Saving parameters not supported" */
2697 return 1;
1da177e4
LT
2698}
2699
2700/**
2701 * ata_scsiop_read_cap - Simulate READ CAPACITY[ 16] commands
2702 * @args: device IDENTIFY data / SCSI command of interest.
2703 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1da177e4
LT
2704 *
2705 * Simulate READ CAPACITY commands.
2706 *
2707 * LOCKING:
6a36261e 2708 * None.
1da177e4 2709 */
87340e98 2710static unsigned int ata_scsiop_read_cap(struct ata_scsi_args *args, u8 *rbuf)
1da177e4 2711{
61d79a8e
MP
2712 struct ata_device *dev = args->dev;
2713 u64 last_lba = dev->n_sectors - 1; /* LBA of the last block */
295124dc
GG
2714 u32 sector_size; /* physical sector size in bytes */
2715 u8 log2_per_phys;
2716 u16 lowest_aligned;
2717
2718 sector_size = ata_id_logical_sector_size(dev->id);
2719 log2_per_phys = ata_id_log2_per_physical_sector(dev->id);
2720 lowest_aligned = ata_id_logical_sector_offset(dev->id, log2_per_phys);
1da177e4
LT
2721
2722 VPRINTK("ENTER\n");
2723
1da177e4 2724 if (args->cmd->cmnd[0] == READ_CAPACITY) {
6a36261e
TH
2725 if (last_lba >= 0xffffffffULL)
2726 last_lba = 0xffffffff;
0c144d0d 2727
1da177e4 2728 /* sector count, 32-bit */
87340e98
TH
2729 rbuf[0] = last_lba >> (8 * 3);
2730 rbuf[1] = last_lba >> (8 * 2);
2731 rbuf[2] = last_lba >> (8 * 1);
2732 rbuf[3] = last_lba;
1da177e4
LT
2733
2734 /* sector size */
295124dc
GG
2735 rbuf[4] = sector_size >> (8 * 3);
2736 rbuf[5] = sector_size >> (8 * 2);
2737 rbuf[6] = sector_size >> (8 * 1);
2738 rbuf[7] = sector_size;
1da177e4
LT
2739 } else {
2740 /* sector count, 64-bit */
87340e98
TH
2741 rbuf[0] = last_lba >> (8 * 7);
2742 rbuf[1] = last_lba >> (8 * 6);
2743 rbuf[2] = last_lba >> (8 * 5);
2744 rbuf[3] = last_lba >> (8 * 4);
2745 rbuf[4] = last_lba >> (8 * 3);
2746 rbuf[5] = last_lba >> (8 * 2);
2747 rbuf[6] = last_lba >> (8 * 1);
2748 rbuf[7] = last_lba;
1da177e4
LT
2749
2750 /* sector size */
295124dc
GG
2751 rbuf[ 8] = sector_size >> (8 * 3);
2752 rbuf[ 9] = sector_size >> (8 * 2);
2753 rbuf[10] = sector_size >> (8 * 1);
2754 rbuf[11] = sector_size;
61d79a8e
MP
2755
2756 rbuf[12] = 0;
295124dc 2757 rbuf[13] = log2_per_phys;
61d79a8e
MP
2758 rbuf[14] = (lowest_aligned >> 8) & 0x3f;
2759 rbuf[15] = lowest_aligned;
18f0f978 2760
71d126fd
AF
2761 if (ata_id_has_trim(args->id) &&
2762 !(dev->horkage & ATA_HORKAGE_NOTRIM)) {
e61f7d1c 2763 rbuf[14] |= 0x80; /* LBPME */
e78db4df 2764
e61f7d1c
MP
2765 if (ata_id_has_zero_after_trim(args->id) &&
2766 dev->horkage & ATA_HORKAGE_ZERO_AFTER_TRIM) {
2767 ata_dev_info(dev, "Enabling discard_zeroes_data\n");
2768 rbuf[14] |= 0x40; /* LBPRZ */
2769 }
e78db4df 2770 }
6d1003ae
HR
2771 if (ata_id_zoned_cap(args->id) ||
2772 args->dev->class == ATA_DEV_ZAC)
2773 rbuf[12] = (1 << 4); /* RC_BASIS */
1da177e4 2774 }
1da177e4
LT
2775 return 0;
2776}
2777
2778/**
2779 * ata_scsiop_report_luns - Simulate REPORT LUNS command
2780 * @args: device IDENTIFY data / SCSI command of interest.
2781 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
1da177e4
LT
2782 *
2783 * Simulate REPORT LUNS command.
2784 *
2785 * LOCKING:
cca3974e 2786 * spin_lock_irqsave(host lock)
1da177e4 2787 */
87340e98 2788static unsigned int ata_scsiop_report_luns(struct ata_scsi_args *args, u8 *rbuf)
1da177e4
LT
2789{
2790 VPRINTK("ENTER\n");
2791 rbuf[3] = 8; /* just one lun, LUN 0, size 8 bytes */
2792
2793 return 0;
2794}
2795
77853bf2 2796static void atapi_sense_complete(struct ata_queued_cmd *qc)
a939c963 2797{
74e6c8c3 2798 if (qc->err_mask && ((qc->err_mask & AC_ERR_DEV) == 0)) {
c6e6e666
JG
2799 /* FIXME: not quite right; we don't want the
2800 * translation of taskfile registers into
2801 * a sense descriptors, since that's only
2802 * correct for ATA, not ATAPI
2803 */
750426aa 2804 ata_gen_passthru_sense(qc);
74e6c8c3 2805 }
a939c963 2806
2aa8f5d6 2807 ata_qc_done(qc);
c6e6e666 2808}
a939c963 2809
c6e6e666
JG
2810/* is it pointless to prefer PIO for "safety reasons"? */
2811static inline int ata_pio_use_silly(struct ata_port *ap)
2812{
2813 return (ap->flags & ATA_FLAG_PIO_DMA);
2814}
2815
2816static void atapi_request_sense(struct ata_queued_cmd *qc)
2817{
2818 struct ata_port *ap = qc->ap;
2819 struct scsi_cmnd *cmd = qc->scsicmd;
2820
2821 DPRINTK("ATAPI request sense\n");
a939c963 2822
7ccd720d 2823 memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
a939c963 2824
127102ae 2825#ifdef CONFIG_ATA_SFF
855d854a
JB
2826 if (ap->ops->sff_tf_read)
2827 ap->ops->sff_tf_read(ap, &qc->tf);
127102ae 2828#endif
c6e6e666
JG
2829
2830 /* fill these in, for the case where they are -not- overwritten */
2831 cmd->sense_buffer[0] = 0x70;
2832 cmd->sense_buffer[2] = qc->tf.feature >> 4;
2833
2834 ata_qc_reinit(qc);
2835
93f8fecb 2836 /* setup sg table and init transfer direction */
cadb7345 2837 sg_init_one(&qc->sgent, cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE);
93f8fecb 2838 ata_sg_init(qc, &qc->sgent, 1);
a939c963
JG
2839 qc->dma_dir = DMA_FROM_DEVICE;
2840
6e7846e9 2841 memset(&qc->cdb, 0, qc->dev->cdb_len);
a939c963
JG
2842 qc->cdb[0] = REQUEST_SENSE;
2843 qc->cdb[4] = SCSI_SENSE_BUFFERSIZE;
2844
2845 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
2846 qc->tf.command = ATA_CMD_PACKET;
2847
c6e6e666 2848 if (ata_pio_use_silly(ap)) {
0dc36888 2849 qc->tf.protocol = ATAPI_PROT_DMA;
c6e6e666
JG
2850 qc->tf.feature |= ATAPI_PKT_DMA;
2851 } else {
0dc36888 2852 qc->tf.protocol = ATAPI_PROT_PIO;
2db78dd3
AC
2853 qc->tf.lbam = SCSI_SENSE_BUFFERSIZE;
2854 qc->tf.lbah = 0;
c6e6e666 2855 }
a939c963
JG
2856 qc->nbytes = SCSI_SENSE_BUFFERSIZE;
2857
c6e6e666 2858 qc->complete_fn = atapi_sense_complete;
a939c963 2859
8e0e694a 2860 ata_qc_issue(qc);
a939c963
JG
2861
2862 DPRINTK("EXIT\n");
2863}
2864
77853bf2 2865static void atapi_qc_complete(struct ata_queued_cmd *qc)
1da177e4
LT
2866{
2867 struct scsi_cmnd *cmd = qc->scsicmd;
a22e2eb0 2868 unsigned int err_mask = qc->err_mask;
1da177e4 2869
a7dac447 2870 VPRINTK("ENTER, err_mask 0x%X\n", err_mask);
e12669e7 2871
246619da
TH
2872 /* handle completion from new EH */
2873 if (unlikely(qc->ap->ops->error_handler &&
2874 (err_mask || qc->flags & ATA_QCFLAG_SENSE_VALID))) {
2875
2876 if (!(qc->flags & ATA_QCFLAG_SENSE_VALID)) {
2877 /* FIXME: not quite right; we don't want the
2878 * translation of taskfile registers into a
2879 * sense descriptors, since that's only
2880 * correct for ATA, not ATAPI
2881 */
750426aa 2882 ata_gen_passthru_sense(qc);
246619da
TH
2883 }
2884
22aac089
TH
2885 /* SCSI EH automatically locks door if sdev->locked is
2886 * set. Sometimes door lock request continues to
2887 * fail, for example, when no media is present. This
2888 * creates a loop - SCSI EH issues door lock which
2889 * fails and gets invoked again to acquire sense data
2890 * for the failed command.
2891 *
2892 * If door lock fails, always clear sdev->locked to
2893 * avoid this infinite loop.
2a5f07b5
TH
2894 *
2895 * This may happen before SCSI scan is complete. Make
2896 * sure qc->dev->sdev isn't NULL before dereferencing.
22aac089 2897 */
2a5f07b5 2898 if (qc->cdb[0] == ALLOW_MEDIUM_REMOVAL && qc->dev->sdev)
22aac089
TH
2899 qc->dev->sdev->locked = 0;
2900
246619da 2901 qc->scsicmd->result = SAM_STAT_CHECK_CONDITION;
2aa8f5d6 2902 ata_qc_done(qc);
246619da
TH
2903 return;
2904 }
2905
2906 /* successful completion or old EH failure path */
a7dac447 2907 if (unlikely(err_mask & AC_ERR_DEV)) {
1da177e4 2908 cmd->result = SAM_STAT_CHECK_CONDITION;
c6e6e666 2909 atapi_request_sense(qc);
77853bf2 2910 return;
74e6c8c3 2911 } else if (unlikely(err_mask)) {
a7dac447
JG
2912 /* FIXME: not quite right; we don't want the
2913 * translation of taskfile registers into
2914 * a sense descriptors, since that's only
2915 * correct for ATA, not ATAPI
2916 */
750426aa 2917 ata_gen_passthru_sense(qc);
74e6c8c3 2918 } else {
1da177e4
LT
2919 u8 *scsicmd = cmd->cmnd;
2920
fd71da46 2921 if ((scsicmd[0] == INQUIRY) && ((scsicmd[1] & 0x03) == 0)) {
b445c568 2922 unsigned long flags;
87340e98 2923 u8 *buf;
b445c568 2924
87340e98 2925 buf = ata_scsi_rbuf_get(cmd, true, &flags);
a15dbeb4
JG
2926
2927 /* ATAPI devices typically report zero for their SCSI version,
2928 * and sometimes deviate from the spec WRT response data
2929 * format. If SCSI version is reported as zero like normal,
2930 * then we make the following fixups: 1) Fake MMC-5 version,
2931 * to indicate to the Linux scsi midlayer this is a modern
2932 * device. 2) Ensure response data format / ATAPI information
2933 * are always correct.
a15dbeb4
JG
2934 */
2935 if (buf[2] == 0) {
2936 buf[2] = 0x5;
2937 buf[3] = 0x32;
2938 }
2939
87340e98 2940 ata_scsi_rbuf_put(cmd, true, &flags);
1da177e4 2941 }
a15dbeb4 2942
1da177e4
LT
2943 cmd->result = SAM_STAT_GOOD;
2944 }
2945
2aa8f5d6 2946 ata_qc_done(qc);
1da177e4
LT
2947}
2948/**
2949 * atapi_xlat - Initialize PACKET taskfile
2950 * @qc: command structure to be initialized
1da177e4
LT
2951 *
2952 * LOCKING:
cca3974e 2953 * spin_lock_irqsave(host lock)
1da177e4
LT
2954 *
2955 * RETURNS:
2956 * Zero on success, non-zero on failure.
2957 */
ad706991 2958static unsigned int atapi_xlat(struct ata_queued_cmd *qc)
1da177e4 2959{
542b1444 2960 struct scsi_cmnd *scmd = qc->scsicmd;
1da177e4 2961 struct ata_device *dev = qc->dev;
542b1444 2962 int nodata = (scmd->sc_data_direction == DMA_NONE);
5895ef9a 2963 int using_pio = !nodata && (dev->flags & ATA_DFLAG_PIO);
2db78dd3 2964 unsigned int nbytes;
1da177e4 2965
2e5704f6
TH
2966 memset(qc->cdb, 0, dev->cdb_len);
2967 memcpy(qc->cdb, scmd->cmnd, scmd->cmd_len);
1da177e4
LT
2968
2969 qc->complete_fn = atapi_qc_complete;
2970
2971 qc->tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
542b1444 2972 if (scmd->sc_data_direction == DMA_TO_DEVICE) {
1da177e4
LT
2973 qc->tf.flags |= ATA_TFLAG_WRITE;
2974 DPRINTK("direction: write\n");
2975 }
2976
2977 qc->tf.command = ATA_CMD_PACKET;
aacda375 2978 ata_qc_set_pc_nbytes(qc);
e00f1ff3
TH
2979
2980 /* check whether ATAPI DMA is safe */
5895ef9a 2981 if (!nodata && !using_pio && atapi_check_dma(qc))
e00f1ff3 2982 using_pio = 1;
1da177e4 2983
e190222d
TH
2984 /* Some controller variants snoop this value for Packet
2985 * transfers to do state machine and FIFO management. Thus we
2986 * want to set it properly, and for DMA where it is
2987 * effectively meaningless.
2988 */
aacda375 2989 nbytes = min(ata_qc_raw_nbytes(qc), (unsigned int)63 * 1024);
2db78dd3 2990
e190222d
TH
2991 /* Most ATAPI devices which honor transfer chunk size don't
2992 * behave according to the spec when odd chunk size which
2993 * matches the transfer length is specified. If the number of
2994 * bytes to transfer is 2n+1. According to the spec, what
2995 * should happen is to indicate that 2n+1 is going to be
2996 * transferred and transfer 2n+2 bytes where the last byte is
2997 * padding.
2998 *
2999 * In practice, this doesn't happen. ATAPI devices first
3000 * indicate and transfer 2n bytes and then indicate and
3001 * transfer 2 bytes where the last byte is padding.
3002 *
3003 * This inconsistency confuses several controllers which
3004 * perform PIO using DMA such as Intel AHCIs and sil3124/32.
3005 * These controllers use actual number of transferred bytes to
3006 * update DMA poitner and transfer of 4n+2 bytes make those
3007 * controller push DMA pointer by 4n+4 bytes because SATA data
3008 * FISes are aligned to 4 bytes. This causes data corruption
3009 * and buffer overrun.
3010 *
3011 * Always setting nbytes to even number solves this problem
3012 * because then ATAPI devices don't have to split data at 2n
3013 * boundaries.
3014 */
3015 if (nbytes & 0x1)
3016 nbytes++;
3017
2db78dd3
AC
3018 qc->tf.lbam = (nbytes & 0xFF);
3019 qc->tf.lbah = (nbytes >> 8);
3020
5895ef9a
TH
3021 if (nodata)
3022 qc->tf.protocol = ATAPI_PROT_NODATA;
3023 else if (using_pio)
3024 qc->tf.protocol = ATAPI_PROT_PIO;
3025 else {
e00f1ff3 3026 /* DMA data xfer */
0dc36888 3027 qc->tf.protocol = ATAPI_PROT_DMA;
1da177e4
LT
3028 qc->tf.feature |= ATAPI_PKT_DMA;
3029
91163006
TH
3030 if ((dev->flags & ATA_DFLAG_DMADIR) &&
3031 (scmd->sc_data_direction != DMA_TO_DEVICE))
95de719a 3032 /* some SATA bridges need us to indicate data xfer direction */
1da177e4 3033 qc->tf.feature |= ATAPI_DMADIR;
1da177e4
LT
3034 }
3035
2db78dd3
AC
3036
3037 /* FIXME: We need to translate 0x05 READ_BLOCK_LIMITS to a MODE_SENSE
3038 as ATAPI tape drives don't get this right otherwise */
1da177e4
LT
3039 return 0;
3040}
3041
2dcb407e 3042static struct ata_device *ata_find_dev(struct ata_port *ap, int devno)
ab5b3a5b 3043{
071f44b1 3044 if (!sata_pmp_attached(ap)) {
41bda9c9
TH
3045 if (likely(devno < ata_link_max_devices(&ap->link)))
3046 return &ap->link.device[devno];
3047 } else {
3048 if (likely(devno < ap->nr_pmp_links))
3049 return &ap->pmp_link[devno].device[0];
3050 }
3051
ab5b3a5b
TH
3052 return NULL;
3053}
3054
2dcb407e
JG
3055static struct ata_device *__ata_scsi_find_dev(struct ata_port *ap,
3056 const struct scsi_device *scsidev)
ab5b3a5b 3057{
41bda9c9
TH
3058 int devno;
3059
ab5b3a5b 3060 /* skip commands not addressed to targets we simulate */
071f44b1 3061 if (!sata_pmp_attached(ap)) {
41bda9c9
TH
3062 if (unlikely(scsidev->channel || scsidev->lun))
3063 return NULL;
3064 devno = scsidev->id;
3065 } else {
3066 if (unlikely(scsidev->id || scsidev->lun))
3067 return NULL;
3068 devno = scsidev->channel;
3069 }
ab5b3a5b 3070
41bda9c9 3071 return ata_find_dev(ap, devno);
ab5b3a5b
TH
3072}
3073
1da177e4
LT
3074/**
3075 * ata_scsi_find_dev - lookup ata_device from scsi_cmnd
3076 * @ap: ATA port to which the device is attached
3077 * @scsidev: SCSI device from which we derive the ATA device
3078 *
3079 * Given various information provided in struct scsi_cmnd,
3080 * map that onto an ATA bus, and using that mapping
3081 * determine which ata_device is associated with the
3082 * SCSI command to be sent.
3083 *
3084 * LOCKING:
cca3974e 3085 * spin_lock_irqsave(host lock)
1da177e4
LT
3086 *
3087 * RETURNS:
3088 * Associated ATA device, or %NULL if not found.
3089 */
1da177e4 3090static struct ata_device *
057ace5e 3091ata_scsi_find_dev(struct ata_port *ap, const struct scsi_device *scsidev)
1da177e4 3092{
ab5b3a5b 3093 struct ata_device *dev = __ata_scsi_find_dev(ap, scsidev);
1da177e4 3094
2486fa56 3095 if (unlikely(!dev || !ata_dev_enabled(dev)))
1da177e4
LT
3096 return NULL;
3097
1da177e4
LT
3098 return dev;
3099}
3100
b095518e
JG
3101/*
3102 * ata_scsi_map_proto - Map pass-thru protocol value to taskfile value.
3103 * @byte1: Byte 1 from pass-thru CDB.
3104 *
3105 * RETURNS:
3106 * ATA_PROT_UNKNOWN if mapping failed/unimplemented, protocol otherwise.
3107 */
3108static u8
3109ata_scsi_map_proto(u8 byte1)
3110{
3111 switch((byte1 & 0x1e) >> 1) {
2dcb407e
JG
3112 case 3: /* Non-data */
3113 return ATA_PROT_NODATA;
3114
3115 case 6: /* DMA */
3116 case 10: /* UDMA Data-in */
3117 case 11: /* UDMA Data-Out */
3118 return ATA_PROT_DMA;
3119
3120 case 4: /* PIO Data-in */
3121 case 5: /* PIO Data-out */
3122 return ATA_PROT_PIO;
3123
ee7fb331
VK
3124 case 12: /* FPDMA */
3125 return ATA_PROT_NCQ;
3126
2dcb407e
JG
3127 case 0: /* Hard Reset */
3128 case 1: /* SRST */
3129 case 8: /* Device Diagnostic */
3130 case 9: /* Device Reset */
3131 case 7: /* DMA Queued */
2dcb407e
JG
3132 case 15: /* Return Response Info */
3133 default: /* Reserved */
3134 break;
b095518e
JG
3135 }
3136
3137 return ATA_PROT_UNKNOWN;
3138}
3139
3140/**
3141 * ata_scsi_pass_thru - convert ATA pass-thru CDB to taskfile
3142 * @qc: command structure to be initialized
b095518e
JG
3143 *
3144 * Handles either 12 or 16-byte versions of the CDB.
3145 *
3146 * RETURNS:
3147 * Zero on success, non-zero on failure.
3148 */
ad706991 3149static unsigned int ata_scsi_pass_thru(struct ata_queued_cmd *qc)
b095518e
JG
3150{
3151 struct ata_taskfile *tf = &(qc->tf);
542b1444 3152 struct scsi_cmnd *scmd = qc->scsicmd;
f79d409f 3153 struct ata_device *dev = qc->dev;
ad706991 3154 const u8 *cdb = scmd->cmnd;
bcfc867d 3155 u16 fp;
b095518e 3156
bcfc867d
HR
3157 if ((tf->protocol = ata_scsi_map_proto(cdb[1])) == ATA_PROT_UNKNOWN) {
3158 fp = 1;
9a405257 3159 goto invalid_fld;
bcfc867d 3160 }
8190bdb9 3161
5b844b63
HR
3162 if (ata_is_ncq(tf->protocol) && (cdb[2] & 0x3) == 0)
3163 tf->protocol = ATA_PROT_NCQ_NODATA;
3164
5f8e7f17
VK
3165 /* enable LBA */
3166 tf->flags |= ATA_TFLAG_LBA;
3167
b095518e
JG
3168 /*
3169 * 12 and 16 byte CDBs use different offsets to
3170 * provide the various register values.
3171 */
542b1444 3172 if (cdb[0] == ATA_16) {
b095518e
JG
3173 /*
3174 * 16-byte CDB - may contain extended commands.
3175 *
3176 * If that is the case, copy the upper byte register values.
3177 */
542b1444
TH
3178 if (cdb[1] & 0x01) {
3179 tf->hob_feature = cdb[3];
3180 tf->hob_nsect = cdb[5];
3181 tf->hob_lbal = cdb[7];
3182 tf->hob_lbam = cdb[9];
3183 tf->hob_lbah = cdb[11];
b095518e
JG
3184 tf->flags |= ATA_TFLAG_LBA48;
3185 } else
3186 tf->flags &= ~ATA_TFLAG_LBA48;
3187
3188 /*
3189 * Always copy low byte, device and command registers.
3190 */
542b1444
TH
3191 tf->feature = cdb[4];
3192 tf->nsect = cdb[6];
3193 tf->lbal = cdb[8];
3194 tf->lbam = cdb[10];
3195 tf->lbah = cdb[12];
3196 tf->device = cdb[13];
3197 tf->command = cdb[14];
b095518e
JG
3198 } else {
3199 /*
3200 * 12-byte CDB - incapable of extended commands.
3201 */
3202 tf->flags &= ~ATA_TFLAG_LBA48;
3203
542b1444
TH
3204 tf->feature = cdb[3];
3205 tf->nsect = cdb[4];
3206 tf->lbal = cdb[5];
3207 tf->lbam = cdb[6];
3208 tf->lbah = cdb[7];
3209 tf->device = cdb[8];
3210 tf->command = cdb[9];
b095518e 3211 }
fa4453c4 3212
179b310a
HR
3213 /* For NCQ commands copy the tag value */
3214 if (ata_is_ncq(tf->protocol))
ee7fb331
VK
3215 tf->nsect = qc->tag << 3;
3216
fa4453c4
AL
3217 /* enforce correct master/slave bit */
3218 tf->device = dev->devno ?
3219 tf->device | ATA_DEV1 : tf->device & ~ATA_DEV1;
b095518e 3220
bd30add8 3221 switch (tf->command) {
295124dc 3222 /* READ/WRITE LONG use a non-standard sect_size */
bd30add8
TH
3223 case ATA_CMD_READ_LONG:
3224 case ATA_CMD_READ_LONG_ONCE:
3225 case ATA_CMD_WRITE_LONG:
3226 case ATA_CMD_WRITE_LONG_ONCE:
bcfc867d
HR
3227 if (tf->protocol != ATA_PROT_PIO || tf->nsect != 1) {
3228 fp = 1;
bd30add8 3229 goto invalid_fld;
bcfc867d 3230 }
bd30add8 3231 qc->sect_size = scsi_bufflen(scmd);
295124dc
GG
3232 break;
3233
3234 /* commands using reported Logical Block size (e.g. 512 or 4K) */
3235 case ATA_CMD_CFA_WRITE_NE:
3236 case ATA_CMD_CFA_TRANS_SECT:
3237 case ATA_CMD_CFA_WRITE_MULT_NE:
3238 /* XXX: case ATA_CMD_CFA_WRITE_SECTORS_WITHOUT_ERASE: */
3239 case ATA_CMD_READ:
3240 case ATA_CMD_READ_EXT:
3241 case ATA_CMD_READ_QUEUED:
3242 /* XXX: case ATA_CMD_READ_QUEUED_EXT: */
3243 case ATA_CMD_FPDMA_READ:
3244 case ATA_CMD_READ_MULTI:
3245 case ATA_CMD_READ_MULTI_EXT:
3246 case ATA_CMD_PIO_READ:
3247 case ATA_CMD_PIO_READ_EXT:
3248 case ATA_CMD_READ_STREAM_DMA_EXT:
3249 case ATA_CMD_READ_STREAM_EXT:
3250 case ATA_CMD_VERIFY:
3251 case ATA_CMD_VERIFY_EXT:
3252 case ATA_CMD_WRITE:
3253 case ATA_CMD_WRITE_EXT:
3254 case ATA_CMD_WRITE_FUA_EXT:
3255 case ATA_CMD_WRITE_QUEUED:
3256 case ATA_CMD_WRITE_QUEUED_FUA_EXT:
3257 case ATA_CMD_FPDMA_WRITE:
3258 case ATA_CMD_WRITE_MULTI:
3259 case ATA_CMD_WRITE_MULTI_EXT:
3260 case ATA_CMD_WRITE_MULTI_FUA_EXT:
3261 case ATA_CMD_PIO_WRITE:
3262 case ATA_CMD_PIO_WRITE_EXT:
3263 case ATA_CMD_WRITE_STREAM_DMA_EXT:
3264 case ATA_CMD_WRITE_STREAM_EXT:
3265 qc->sect_size = scmd->device->sector_size;
3266 break;
3267
3268 /* Everything else uses 512 byte "sectors" */
3269 default:
3270 qc->sect_size = ATA_SECT_SIZE;
bd30add8
TH
3271 }
3272
3273 /*
3274 * Set flags so that all registers will be written, pass on
3275 * write indication (used for PIO/DMA setup), result TF is
3276 * copied back and we don't whine too much about its failure.
3277 */
bc496ed0 3278 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
bd30add8
TH
3279 if (scmd->sc_data_direction == DMA_TO_DEVICE)
3280 tf->flags |= ATA_TFLAG_WRITE;
3281
3282 qc->flags |= ATA_QCFLAG_RESULT_TF | ATA_QCFLAG_QUIET;
3283
3284 /*
3285 * Set transfer length.
3286 *
3287 * TODO: find out if we need to do more here to
3288 * cover scatter/gather case.
3289 */
3290 ata_qc_set_pc_nbytes(qc);
3291
3292 /* We may not issue DMA commands if no DMA mode is set */
bcfc867d
HR
3293 if (tf->protocol == ATA_PROT_DMA && dev->dma_mode == 0) {
3294 fp = 1;
bd30add8 3295 goto invalid_fld;
bcfc867d 3296 }
bd30add8 3297
1dce589c 3298 /* sanity check for pio multi commands */
bcfc867d
HR
3299 if ((cdb[1] & 0xe0) && !is_multi_taskfile(tf)) {
3300 fp = 1;
1dce589c 3301 goto invalid_fld;
bcfc867d 3302 }
1dce589c
AL
3303
3304 if (is_multi_taskfile(tf)) {
3305 unsigned int multi_count = 1 << (cdb[1] >> 5);
3306
3307 /* compare the passed through multi_count
3308 * with the cached multi_count of libata
3309 */
3310 if (multi_count != dev->multi_count)
a9a79dfe
JP
3311 ata_dev_warn(dev, "invalid multi_count %u ignored\n",
3312 multi_count);
d26fc955 3313 }
1dce589c 3314
b095518e
JG
3315 /*
3316 * Filter SET_FEATURES - XFER MODE command -- otherwise,
3317 * SET_FEATURES - XFER MODE must be preceded/succeeded
3318 * by an update to hardware-specific registers for each
3319 * controller (i.e. the reason for ->set_piomode(),
3320 * ->set_dmamode(), and ->post_set_mode() hooks).
3321 */
bd30add8 3322 if (tf->command == ATA_CMD_SET_FEATURES &&
bcfc867d
HR
3323 tf->feature == SETFEATURES_XFER) {
3324 fp = (cdb[0] == ATA_16) ? 4 : 3;
9a405257 3325 goto invalid_fld;
bcfc867d 3326 }
b095518e
JG
3327
3328 /*
bd30add8
TH
3329 * Filter TPM commands by default. These provide an
3330 * essentially uncontrolled encrypted "back door" between
3331 * applications and the disk. Set libata.allow_tpm=1 if you
3332 * have a real reason for wanting to use them. This ensures
3333 * that installed software cannot easily mess stuff up without
3334 * user intent. DVR type users will probably ship with this enabled
3335 * for movie content management.
b095518e 3336 *
bd30add8
TH
3337 * Note that for ATA8 we can issue a DCS change and DCS freeze lock
3338 * for this and should do in future but that it is not sufficient as
3339 * DCS is an optional feature set. Thus we also do the software filter
3340 * so that we comply with the TC consortium stated goal that the user
3341 * can turn off TC features of their system.
b095518e 3342 */
bcfc867d
HR
3343 if (tf->command >= 0x5C && tf->command <= 0x5F && !libata_allow_tpm) {
3344 fp = (cdb[0] == ATA_16) ? 14 : 9;
bd30add8 3345 goto invalid_fld;
bcfc867d 3346 }
e61e0672 3347
b095518e 3348 return 0;
9a405257
TH
3349
3350 invalid_fld:
0df10b84 3351 ata_scsi_set_invalid_field(dev, scmd, fp, 0xff);
9a405257 3352 return 1;
b095518e
JG
3353}
3354
9379e6b8
ST
3355/**
3356 * ata_format_dsm_trim_descr() - SATL Write Same to DSM Trim
3357 * @cmd: SCSI command being translated
ef2d7392 3358 * @trmax: Maximum number of entries that will fit in sector_size bytes.
9379e6b8 3359 * @sector: Starting sector
7b203094 3360 * @count: Total Range of request in logical sectors
9379e6b8
ST
3361 *
3362 * Rewrite the WRITE SAME descriptor to be a DSM TRIM little-endian formatted
3363 * descriptor.
3364 *
3365 * Upto 64 entries of the format:
3366 * 63:48 Range Length
3367 * 47:0 LBA
3368 *
3369 * Range Length of 0 is ignored.
3370 * LBA's should be sorted order and not overlap.
3371 *
3372 * NOTE: this is the same format as ADD LBA(S) TO NV CACHE PINNED SET
ef2d7392
ST
3373 *
3374 * Return: Number of bytes copied into sglist.
9379e6b8 3375 */
ef2d7392
ST
3376static size_t ata_format_dsm_trim_descr(struct scsi_cmnd *cmd, u32 trmax,
3377 u64 sector, u32 count)
3378{
3379 struct scsi_device *sdp = cmd->device;
3380 size_t len = sdp->sector_size;
3381 size_t r;
3382 __le64 *buf;
3383 u32 i = 0;
9379e6b8
ST
3384 unsigned long flags;
3385
ef2d7392
ST
3386 WARN_ON(len > ATA_SCSI_RBUF_SIZE);
3387
3388 if (len > ATA_SCSI_RBUF_SIZE)
3389 len = ATA_SCSI_RBUF_SIZE;
9379e6b8
ST
3390
3391 spin_lock_irqsave(&ata_scsi_rbuf_lock, flags);
ef2d7392
ST
3392 buf = ((void *)ata_scsi_rbuf);
3393 memset(buf, 0, len);
3394 while (i < trmax) {
9379e6b8
ST
3395 u64 entry = sector |
3396 ((u64)(count > 0xffff ? 0xffff : count) << 48);
ef2d7392 3397 buf[i++] = __cpu_to_le64(entry);
9379e6b8
ST
3398 if (count <= 0xffff)
3399 break;
3400 count -= 0xffff;
3401 sector += 0xffff;
3402 }
ef2d7392 3403 r = sg_copy_from_buffer(scsi_sglist(cmd), scsi_sg_count(cmd), buf, len);
9379e6b8
ST
3404 spin_unlock_irqrestore(&ata_scsi_rbuf_lock, flags);
3405
ef2d7392 3406 return r;
9379e6b8
ST
3407}
3408
7b203094
ST
3409/**
3410 * ata_format_dsm_trim_descr() - SATL Write Same to ATA SCT Write Same
3411 * @cmd: SCSI command being translated
3412 * @lba: Starting sector
ef2d7392 3413 * @num: Number of sectors to be zero'd.
7b203094 3414 *
ef2d7392 3415 * Rewrite the WRITE SAME payload to be an SCT Write Same formatted
7b203094
ST
3416 * descriptor.
3417 * NOTE: Writes a pattern (0's) in the foreground.
ef2d7392
ST
3418 *
3419 * Return: Number of bytes copied into sglist.
7b203094 3420 */
ef2d7392 3421static size_t ata_format_sct_write_same(struct scsi_cmnd *cmd, u64 lba, u64 num)
7b203094 3422{
ef2d7392
ST
3423 struct scsi_device *sdp = cmd->device;
3424 size_t len = sdp->sector_size;
3425 size_t r;
3426 u16 *buf;
7b203094
ST
3427 unsigned long flags;
3428
3429 spin_lock_irqsave(&ata_scsi_rbuf_lock, flags);
ef2d7392
ST
3430 buf = ((void *)ata_scsi_rbuf);
3431
3432 put_unaligned_le16(0x0002, &buf[0]); /* SCT_ACT_WRITE_SAME */
3433 put_unaligned_le16(0x0101, &buf[1]); /* WRITE PTRN FG */
3434 put_unaligned_le64(lba, &buf[2]);
3435 put_unaligned_le64(num, &buf[6]);
3436 put_unaligned_le32(0u, &buf[10]); /* pattern */
7b203094 3437
ef2d7392 3438 WARN_ON(len > ATA_SCSI_RBUF_SIZE);
7b203094 3439
ef2d7392
ST
3440 if (len > ATA_SCSI_RBUF_SIZE)
3441 len = ATA_SCSI_RBUF_SIZE;
3442
3443 r = sg_copy_from_buffer(scsi_sglist(cmd), scsi_sg_count(cmd), buf, len);
7b203094 3444 spin_unlock_irqrestore(&ata_scsi_rbuf_lock, flags);
ef2d7392
ST
3445
3446 return r;
7b203094
ST
3447}
3448
3449/**
3450 * ata_scsi_write_same_xlat() - SATL Write Same to ATA SCT Write Same
3451 * @qc: Command to be translated
3452 *
3453 * Translate a SCSI WRITE SAME command to be either a DSM TRIM command or
3454 * an SCT Write Same command.
3455 * Based on WRITE SAME has the UNMAP flag
3456 * When set translate to DSM TRIM
3457 * When clear translate to SCT Write Same
3458 */
18f0f978
CH
3459static unsigned int ata_scsi_write_same_xlat(struct ata_queued_cmd *qc)
3460{
3461 struct ata_taskfile *tf = &qc->tf;
3462 struct scsi_cmnd *scmd = qc->scsicmd;
ef2d7392
ST
3463 struct scsi_device *sdp = scmd->device;
3464 size_t len = sdp->sector_size;
18f0f978
CH
3465 struct ata_device *dev = qc->dev;
3466 const u8 *cdb = scmd->cmnd;
3467 u64 block;
3468 u32 n_block;
ef2d7392 3469 const u32 trmax = len >> 3;
18f0f978 3470 u32 size;
bcfc867d 3471 u16 fp;
0df10b84 3472 u8 bp = 0xff;
7b203094 3473 u8 unmap = cdb[1] & 0x8;
18f0f978
CH
3474
3475 /* we may not issue DMA commands if no DMA mode is set */
3476 if (unlikely(!dev->dma_mode))
bcfc867d 3477 goto invalid_opcode;
18f0f978 3478
bcfc867d
HR
3479 if (unlikely(scmd->cmd_len < 16)) {
3480 fp = 15;
18f0f978 3481 goto invalid_fld;
bcfc867d 3482 }
18f0f978
CH
3483 scsi_16_lba_len(cdb, &block, &n_block);
3484
7b203094
ST
3485 if (unmap) {
3486 /* If trim is not enabled the cmd is invalid. */
3487 if ((dev->horkage & ATA_HORKAGE_NOTRIM) ||
3488 !ata_id_has_trim(dev->id)) {
3489 fp = 1;
3490 bp = 3;
3491 goto invalid_fld;
3492 }
3493 /* If the request is too large the cmd is invalid */
3494 if (n_block > 0xffff * trmax) {
3495 fp = 2;
3496 goto invalid_fld;
3497 }
3498 } else {
3499 /* If write same is not available the cmd is invalid */
3500 if (!ata_id_sct_write_same(dev->id)) {
3501 fp = 1;
3502 bp = 3;
3503 goto invalid_fld;
3504 }
bcfc867d 3505 }
18f0f978
CH
3506
3507 /*
3508 * WRITE SAME always has a sector sized buffer as payload, this
3509 * should never be a multiple entry S/G list.
3510 */
3511 if (!scsi_sg_count(scmd))
bcfc867d 3512 goto invalid_param_len;
18f0f978 3513
ef2d7392
ST
3514 /*
3515 * size must match sector size in bytes
3516 * For DATA SET MANAGEMENT TRIM in ACS-2 nsect (aka count)
3517 * is defined as number of 512 byte blocks to be transferred.
3518 */
7b203094 3519 if (unmap) {
9379e6b8 3520 size = ata_format_dsm_trim_descr(scmd, trmax, block, n_block);
ef2d7392
ST
3521 if (size != len)
3522 goto invalid_param_len;
3523
7b203094
ST
3524 if (ata_ncq_enabled(dev) && ata_fpdma_dsm_supported(dev)) {
3525 /* Newer devices support queued TRIM commands */
3526 tf->protocol = ATA_PROT_NCQ;
3527 tf->command = ATA_CMD_FPDMA_SEND;
3528 tf->hob_nsect = ATA_SUBCMD_FPDMA_SEND_DSM & 0x1f;
3529 tf->nsect = qc->tag << 3;
3530 tf->hob_feature = (size / 512) >> 8;
3531 tf->feature = size / 512;
3532
3533 tf->auxiliary = 1;
3534 } else {
3535 tf->protocol = ATA_PROT_DMA;
3536 tf->hob_feature = 0;
3537 tf->feature = ATA_DSM_TRIM;
3538 tf->hob_nsect = (size / 512) >> 8;
3539 tf->nsect = size / 512;
3540 tf->command = ATA_CMD_DSM;
3541 }
5c79097a 3542 } else {
ef2d7392
ST
3543 size = ata_format_sct_write_same(scmd, block, n_block);
3544 if (size != len)
3545 goto invalid_param_len;
87fb6c31 3546
87fb6c31 3547 tf->hob_feature = 0;
7b203094
ST
3548 tf->feature = 0;
3549 tf->hob_nsect = 0;
3550 tf->nsect = 1;
3551 tf->lbah = 0;
3552 tf->lbam = 0;
3553 tf->lbal = ATA_CMD_STANDBYNOW1;
3554 tf->hob_lbah = 0;
3555 tf->hob_lbam = 0;
3556 tf->hob_lbal = 0;
3557 tf->device = ATA_CMD_STANDBYNOW1;
3558 tf->protocol = ATA_PROT_DMA;
3559 tf->command = ATA_CMD_WRITE_LOG_DMA_EXT;
7d36dd00
ST
3560 if (unlikely(dev->flags & ATA_DFLAG_PIO))
3561 tf->command = ATA_CMD_WRITE_LOG_EXT;
87fb6c31
MC
3562 }
3563
18f0f978
CH
3564 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48 |
3565 ATA_TFLAG_WRITE;
3566
3567 ata_qc_set_pc_nbytes(qc);
3568
3569 return 0;
3570
bcfc867d 3571invalid_fld:
0df10b84 3572 ata_scsi_set_invalid_field(dev, scmd, fp, bp);
bcfc867d
HR
3573 return 1;
3574invalid_param_len:
3575 /* "Parameter list length error" */
3576 ata_scsi_set_sense(dev, scmd, ILLEGAL_REQUEST, 0x1a, 0x0);
3577 return 1;
3578invalid_opcode:
3579 /* "Invalid command operation code" */
3580 ata_scsi_set_sense(dev, scmd, ILLEGAL_REQUEST, 0x20, 0x0);
18f0f978
CH
3581 return 1;
3582}
3583
7b203094
ST
3584/**
3585 * ata_scsiop_maint_in - Simulate a subset of MAINTENANCE_IN
3586 * @args: device MAINTENANCE_IN data / SCSI command of interest.
3587 * @rbuf: Response buffer, to which simulated SCSI cmd output is sent.
3588 *
3589 * Yields a subset to satisfy scsi_report_opcode()
3590 *
3591 * LOCKING:
3592 * spin_lock_irqsave(host lock)
3593 */
3594static unsigned int ata_scsiop_maint_in(struct ata_scsi_args *args, u8 *rbuf)
3595{
3596 struct ata_device *dev = args->dev;
3597 u8 *cdb = args->cmd->cmnd;
3598 u8 supported = 0;
3599 unsigned int err = 0;
3600
3601 if (cdb[2] != 1) {
3602 ata_dev_warn(dev, "invalid command format %d\n", cdb[2]);
3603 err = 2;
3604 goto out;
3605 }
3606 switch (cdb[3]) {
3607 case INQUIRY:
3608 case MODE_SENSE:
3609 case MODE_SENSE_10:
3610 case READ_CAPACITY:
3611 case SERVICE_ACTION_IN_16:
3612 case REPORT_LUNS:
3613 case REQUEST_SENSE:
3614 case SYNCHRONIZE_CACHE:
3615 case REZERO_UNIT:
3616 case SEEK_6:
3617 case SEEK_10:
3618 case TEST_UNIT_READY:
3619 case SEND_DIAGNOSTIC:
3620 case MAINTENANCE_IN:
3621 case READ_6:
3622 case READ_10:
3623 case READ_16:
3624 case WRITE_6:
3625 case WRITE_10:
3626 case WRITE_16:
3627 case ATA_12:
3628 case ATA_16:
3629 case VERIFY:
3630 case VERIFY_16:
3631 case MODE_SELECT:
3632 case MODE_SELECT_10:
3633 case START_STOP:
3634 supported = 3;
3635 break;
3636 case WRITE_SAME_16:
0ce1b18c
ST
3637 if (!ata_id_sct_write_same(dev->id))
3638 break;
3639 /* fallthrough: if SCT ... only enable for ZBC */
7b203094
ST
3640 case ZBC_IN:
3641 case ZBC_OUT:
3642 if (ata_id_zoned_cap(dev->id) ||
3643 dev->class == ATA_DEV_ZAC)
3644 supported = 3;
3645 break;
3646 default:
3647 break;
3648 }
3649out:
3650 rbuf[1] = supported; /* supported */
3651 return err;
3652}
3653
28a3fc22
HR
3654/**
3655 * ata_scsi_report_zones_complete - convert ATA output
3656 * @qc: command structure returning the data
3657 *
3658 * Convert T-13 little-endian field representation into
3659 * T-10 big-endian field representation.
3660 * What a mess.
3661 */
3662static void ata_scsi_report_zones_complete(struct ata_queued_cmd *qc)
3663{
3664 struct scsi_cmnd *scmd = qc->scsicmd;
3665 struct sg_mapping_iter miter;
3666 unsigned long flags;
3667 unsigned int bytes = 0;
3668
3669 sg_miter_start(&miter, scsi_sglist(scmd), scsi_sg_count(scmd),
3670 SG_MITER_TO_SG | SG_MITER_ATOMIC);
3671
3672 local_irq_save(flags);
3673 while (sg_miter_next(&miter)) {
3674 unsigned int offset = 0;
3675
3676 if (bytes == 0) {
3677 char *hdr;
3678 u32 list_length;
3679 u64 max_lba, opt_lba;
3680 u16 same;
3681
3682 /* Swizzle header */
3683 hdr = miter.addr;
3684 list_length = get_unaligned_le32(&hdr[0]);
3685 same = get_unaligned_le16(&hdr[4]);
3686 max_lba = get_unaligned_le64(&hdr[8]);
3687 opt_lba = get_unaligned_le64(&hdr[16]);
3688 put_unaligned_be32(list_length, &hdr[0]);
3689 hdr[4] = same & 0xf;
3690 put_unaligned_be64(max_lba, &hdr[8]);
3691 put_unaligned_be64(opt_lba, &hdr[16]);
3692 offset += 64;
3693 bytes += 64;
3694 }
3695 while (offset < miter.length) {
3696 char *rec;
3697 u8 cond, type, non_seq, reset;
3698 u64 size, start, wp;
3699
3700 /* Swizzle zone descriptor */
3701 rec = miter.addr + offset;
3702 type = rec[0] & 0xf;
3703 cond = (rec[1] >> 4) & 0xf;
3704 non_seq = (rec[1] & 2);
3705 reset = (rec[1] & 1);
3706 size = get_unaligned_le64(&rec[8]);
3707 start = get_unaligned_le64(&rec[16]);
3708 wp = get_unaligned_le64(&rec[24]);
3709 rec[0] = type;
3710 rec[1] = (cond << 4) | non_seq | reset;
3711 put_unaligned_be64(size, &rec[8]);
3712 put_unaligned_be64(start, &rec[16]);
3713 put_unaligned_be64(wp, &rec[24]);
3714 WARN_ON(offset + 64 > miter.length);
3715 offset += 64;
3716 bytes += 64;
3717 }
3718 }
3719 sg_miter_stop(&miter);
3720 local_irq_restore(flags);
3721
3722 ata_scsi_qc_complete(qc);
3723}
3724
3725static unsigned int ata_scsi_zbc_in_xlat(struct ata_queued_cmd *qc)
3726{
3727 struct ata_taskfile *tf = &qc->tf;
3728 struct scsi_cmnd *scmd = qc->scsicmd;
3729 const u8 *cdb = scmd->cmnd;
3730 u16 sect, fp = (u16)-1;
3731 u8 sa, options, bp = 0xff;
3732 u64 block;
3733 u32 n_block;
3734
3735 if (unlikely(scmd->cmd_len < 16)) {
3736 ata_dev_warn(qc->dev, "invalid cdb length %d\n",
3737 scmd->cmd_len);
3738 fp = 15;
3739 goto invalid_fld;
3740 }
3741 scsi_16_lba_len(cdb, &block, &n_block);
3742 if (n_block != scsi_bufflen(scmd)) {
3743 ata_dev_warn(qc->dev, "non-matching transfer count (%d/%d)\n",
3744 n_block, scsi_bufflen(scmd));
3745 goto invalid_param_len;
3746 }
3747 sa = cdb[1] & 0x1f;
3748 if (sa != ZI_REPORT_ZONES) {
3749 ata_dev_warn(qc->dev, "invalid service action %d\n", sa);
3750 fp = 1;
3751 goto invalid_fld;
3752 }
3753 /*
3754 * ZAC allows only for transfers in 512 byte blocks,
3755 * and uses a 16 bit value for the transfer count.
3756 */
3757 if ((n_block / 512) > 0xffff || n_block < 512 || (n_block % 512)) {
3758 ata_dev_warn(qc->dev, "invalid transfer count %d\n", n_block);
3759 goto invalid_param_len;
3760 }
3761 sect = n_block / 512;
3f17422b 3762 options = cdb[14] & 0xbf;
28a3fc22
HR
3763
3764 if (ata_ncq_enabled(qc->dev) &&
3765 ata_fpdma_zac_mgmt_in_supported(qc->dev)) {
3766 tf->protocol = ATA_PROT_NCQ;
3767 tf->command = ATA_CMD_FPDMA_RECV;
3768 tf->hob_nsect = ATA_SUBCMD_FPDMA_RECV_ZAC_MGMT_IN & 0x1f;
3769 tf->nsect = qc->tag << 3;
3770 tf->feature = sect & 0xff;
3771 tf->hob_feature = (sect >> 8) & 0xff;
3f17422b 3772 tf->auxiliary = ATA_SUBCMD_ZAC_MGMT_IN_REPORT_ZONES | (options << 8);
28a3fc22
HR
3773 } else {
3774 tf->command = ATA_CMD_ZAC_MGMT_IN;
3775 tf->feature = ATA_SUBCMD_ZAC_MGMT_IN_REPORT_ZONES;
3776 tf->protocol = ATA_PROT_DMA;
3777 tf->hob_feature = options;
3778 tf->hob_nsect = (sect >> 8) & 0xff;
3779 tf->nsect = sect & 0xff;
3780 }
3781 tf->device = ATA_LBA;
3782 tf->lbah = (block >> 16) & 0xff;
3783 tf->lbam = (block >> 8) & 0xff;
3784 tf->lbal = block & 0xff;
3785 tf->hob_lbah = (block >> 40) & 0xff;
3786 tf->hob_lbam = (block >> 32) & 0xff;
3787 tf->hob_lbal = (block >> 24) & 0xff;
3788
3789 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48;
3790 qc->flags |= ATA_QCFLAG_RESULT_TF;
3791
3792 ata_qc_set_pc_nbytes(qc);
3793
3794 qc->complete_fn = ata_scsi_report_zones_complete;
3795
3796 return 0;
3797
3798invalid_fld:
3799 ata_scsi_set_invalid_field(qc->dev, scmd, fp, bp);
3800 return 1;
3801
3802invalid_param_len:
3803 /* "Parameter list length error" */
3804 ata_scsi_set_sense(qc->dev, scmd, ILLEGAL_REQUEST, 0x1a, 0x0);
3805 return 1;
3806}
3807
27708a95
HR
3808static unsigned int ata_scsi_zbc_out_xlat(struct ata_queued_cmd *qc)
3809{
3810 struct ata_taskfile *tf = &qc->tf;
3811 struct scsi_cmnd *scmd = qc->scsicmd;
3812 struct ata_device *dev = qc->dev;
3813 const u8 *cdb = scmd->cmnd;
2950cefa 3814 u8 all, sa;
27708a95
HR
3815 u64 block;
3816 u32 n_block;
3817 u16 fp = (u16)-1;
3818
3819 if (unlikely(scmd->cmd_len < 16)) {
3820 fp = 15;
3821 goto invalid_fld;
3822 }
3823
3824 sa = cdb[1] & 0x1f;
3825 if ((sa != ZO_CLOSE_ZONE) && (sa != ZO_FINISH_ZONE) &&
3826 (sa != ZO_OPEN_ZONE) && (sa != ZO_RESET_WRITE_POINTER)) {
3827 fp = 1;
3828 goto invalid_fld;
3829 }
3830
3831 scsi_16_lba_len(cdb, &block, &n_block);
3832 if (n_block) {
3833 /*
3834 * ZAC MANAGEMENT OUT doesn't define any length
3835 */
3836 goto invalid_param_len;
3837 }
3838 if (block > dev->n_sectors)
3839 goto out_of_range;
3840
2950cefa 3841 all = cdb[14] & 0x1;
27708a95 3842
284b3b77
HR
3843 if (ata_ncq_enabled(qc->dev) &&
3844 ata_fpdma_zac_mgmt_out_supported(qc->dev)) {
5b844b63 3845 tf->protocol = ATA_PROT_NCQ_NODATA;
284b3b77 3846 tf->command = ATA_CMD_NCQ_NON_DATA;
ee194b75 3847 tf->feature = ATA_SUBCMD_NCQ_NON_DATA_ZAC_MGMT_OUT;
284b3b77 3848 tf->nsect = qc->tag << 3;
2950cefa 3849 tf->auxiliary = sa | ((u16)all << 8);
284b3b77
HR
3850 } else {
3851 tf->protocol = ATA_PROT_NODATA;
3852 tf->command = ATA_CMD_ZAC_MGMT_OUT;
3853 tf->feature = sa;
2950cefa 3854 tf->hob_feature = all;
284b3b77 3855 }
27708a95
HR
3856 tf->lbah = (block >> 16) & 0xff;
3857 tf->lbam = (block >> 8) & 0xff;
3858 tf->lbal = block & 0xff;
3859 tf->hob_lbah = (block >> 40) & 0xff;
3860 tf->hob_lbam = (block >> 32) & 0xff;
3861 tf->hob_lbal = (block >> 24) & 0xff;
3862 tf->device = ATA_LBA;
3863 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48;
3864
3865 return 0;
3866
18f0f978 3867 invalid_fld:
27708a95
HR
3868 ata_scsi_set_invalid_field(qc->dev, scmd, fp, 0xff);
3869 return 1;
3870 out_of_range:
3871 /* "Logical Block Address out of range" */
3872 ata_scsi_set_sense(qc->dev, scmd, ILLEGAL_REQUEST, 0x21, 0x00);
3873 return 1;
3874invalid_param_len:
3875 /* "Parameter list length error" */
3876 ata_scsi_set_sense(qc->dev, scmd, ILLEGAL_REQUEST, 0x1a, 0x0);
18f0f978
CH
3877 return 1;
3878}
3879
1b26d29c
PB
3880/**
3881 * ata_mselect_caching - Simulate MODE SELECT for caching info page
3882 * @qc: Storage for translated ATA taskfile
3883 * @buf: input buffer
3884 * @len: number of valid bytes in the input buffer
7780081c 3885 * @fp: out parameter for the failed field on error
1b26d29c
PB
3886 *
3887 * Prepare a taskfile to modify caching information for the device.
3888 *
3889 * LOCKING:
3890 * None.
3891 */
3892static int ata_mselect_caching(struct ata_queued_cmd *qc,
7780081c 3893 const u8 *buf, int len, u16 *fp)
1b26d29c
PB
3894{
3895 struct ata_taskfile *tf = &qc->tf;
3896 struct ata_device *dev = qc->dev;
d7372cb6 3897 u8 mpage[CACHE_MPAGE_LEN];
1b26d29c 3898 u8 wce;
7780081c 3899 int i;
1b26d29c
PB
3900
3901 /*
3902 * The first two bytes of def_cache_mpage are a header, so offsets
3903 * in mpage are off by 2 compared to buf. Same for len.
3904 */
3905
7780081c
HR
3906 if (len != CACHE_MPAGE_LEN - 2) {
3907 if (len < CACHE_MPAGE_LEN - 2)
3908 *fp = len;
3909 else
3910 *fp = CACHE_MPAGE_LEN - 2;
1b26d29c 3911 return -EINVAL;
7780081c 3912 }
1b26d29c
PB
3913
3914 wce = buf[0] & (1 << 2);
3915
3916 /*
3917 * Check that read-only bits are not modified.
3918 */
3919 ata_msense_caching(dev->id, mpage, false);
7780081c
HR
3920 for (i = 0; i < CACHE_MPAGE_LEN - 2; i++) {
3921 if (i == 0)
3922 continue;
3923 if (mpage[i + 2] != buf[i]) {
3924 *fp = i;
3925 return -EINVAL;
3926 }
3927 }
1b26d29c
PB
3928
3929 tf->flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
3930 tf->protocol = ATA_PROT_NODATA;
3931 tf->nsect = 0;
3932 tf->command = ATA_CMD_SET_FEATURES;
3933 tf->feature = wce ? SETFEATURES_WC_ON : SETFEATURES_WC_OFF;
3934 return 0;
3935}
3936
06dbde5f
HR
3937/**
3938 * ata_mselect_control - Simulate MODE SELECT for control page
3939 * @qc: Storage for translated ATA taskfile
3940 * @buf: input buffer
3941 * @len: number of valid bytes in the input buffer
7780081c 3942 * @fp: out parameter for the failed field on error
06dbde5f
HR
3943 *
3944 * Prepare a taskfile to modify caching information for the device.
3945 *
3946 * LOCKING:
3947 * None.
3948 */
3949static int ata_mselect_control(struct ata_queued_cmd *qc,
7780081c 3950 const u8 *buf, int len, u16 *fp)
06dbde5f
HR
3951{
3952 struct ata_device *dev = qc->dev;
d7372cb6 3953 u8 mpage[CONTROL_MPAGE_LEN];
06dbde5f 3954 u8 d_sense;
7780081c 3955 int i;
06dbde5f
HR
3956
3957 /*
3958 * The first two bytes of def_control_mpage are a header, so offsets
3959 * in mpage are off by 2 compared to buf. Same for len.
3960 */
3961
7780081c
HR
3962 if (len != CONTROL_MPAGE_LEN - 2) {
3963 if (len < CONTROL_MPAGE_LEN - 2)
3964 *fp = len;
3965 else
3966 *fp = CONTROL_MPAGE_LEN - 2;
06dbde5f 3967 return -EINVAL;
7780081c 3968 }
06dbde5f
HR
3969
3970 d_sense = buf[0] & (1 << 2);
3971
3972 /*
3973 * Check that read-only bits are not modified.
3974 */
f086b748 3975 ata_msense_control(dev, mpage, false);
7780081c
HR
3976 for (i = 0; i < CONTROL_MPAGE_LEN - 2; i++) {
3977 if (i == 0)
3978 continue;
3979 if (mpage[2 + i] != buf[i]) {
3980 *fp = i;
3981 return -EINVAL;
3982 }
3983 }
06dbde5f
HR
3984 if (d_sense & (1 << 2))
3985 dev->flags |= ATA_DFLAG_D_SENSE;
3986 else
3987 dev->flags &= ~ATA_DFLAG_D_SENSE;
06dbde5f
HR
3988 return 0;
3989}
3990
1b26d29c
PB
3991/**
3992 * ata_scsiop_mode_select - Simulate MODE SELECT 6, 10 commands
3993 * @qc: Storage for translated ATA taskfile
3994 *
3995 * Converts a MODE SELECT command to an ATA SET FEATURES taskfile.
3996 * Assume this is invoked for direct access devices (e.g. disks) only.
3997 * There should be no block descriptor for other device types.
3998 *
3999 * LOCKING:
4000 * spin_lock_irqsave(host lock)
4001 */
4002static unsigned int ata_scsi_mode_select_xlat(struct ata_queued_cmd *qc)
4003{
4004 struct scsi_cmnd *scmd = qc->scsicmd;
4005 const u8 *cdb = scmd->cmnd;
4006 const u8 *p;
4007 u8 pg, spg;
4008 unsigned six_byte, pg_len, hdr_len, bd_len;
4009 int len;
7780081c
HR
4010 u16 fp = (u16)-1;
4011 u8 bp = 0xff;
1b26d29c
PB
4012
4013 VPRINTK("ENTER\n");
4014
4015 six_byte = (cdb[0] == MODE_SELECT);
4016 if (six_byte) {
bcfc867d
HR
4017 if (scmd->cmd_len < 5) {
4018 fp = 4;
1b26d29c 4019 goto invalid_fld;
bcfc867d 4020 }
1b26d29c
PB
4021
4022 len = cdb[4];
4023 hdr_len = 4;
4024 } else {
bcfc867d
HR
4025 if (scmd->cmd_len < 9) {
4026 fp = 8;
1b26d29c 4027 goto invalid_fld;
bcfc867d 4028 }
1b26d29c
PB
4029
4030 len = (cdb[7] << 8) + cdb[8];
4031 hdr_len = 8;
4032 }
4033
4034 /* We only support PF=1, SP=0. */
bcfc867d
HR
4035 if ((cdb[1] & 0x11) != 0x10) {
4036 fp = 1;
0df10b84 4037 bp = (cdb[1] & 0x01) ? 1 : 5;
1b26d29c 4038 goto invalid_fld;
bcfc867d 4039 }
1b26d29c
PB
4040
4041 /* Test early for possible overrun. */
4042 if (!scsi_sg_count(scmd) || scsi_sglist(scmd)->length < len)
4043 goto invalid_param_len;
4044
4045 p = page_address(sg_page(scsi_sglist(scmd)));
4046
4047 /* Move past header and block descriptors. */
4048 if (len < hdr_len)
4049 goto invalid_param_len;
4050
4051 if (six_byte)
4052 bd_len = p[3];
4053 else
4054 bd_len = (p[6] << 8) + p[7];
4055
4056 len -= hdr_len;
4057 p += hdr_len;
4058 if (len < bd_len)
4059 goto invalid_param_len;
7780081c
HR
4060 if (bd_len != 0 && bd_len != 8) {
4061 fp = (six_byte) ? 3 : 6;
4062 fp += bd_len + hdr_len;
1b26d29c 4063 goto invalid_param;
7780081c 4064 }
1b26d29c
PB
4065
4066 len -= bd_len;
4067 p += bd_len;
4068 if (len == 0)
4069 goto skip;
4070
4071 /* Parse both possible formats for the mode page headers. */
4072 pg = p[0] & 0x3f;
4073 if (p[0] & 0x40) {
4074 if (len < 4)
4075 goto invalid_param_len;
4076
4077 spg = p[1];
4078 pg_len = (p[2] << 8) | p[3];
4079 p += 4;
4080 len -= 4;
4081 } else {
4082 if (len < 2)
4083 goto invalid_param_len;
4084
4085 spg = 0;
4086 pg_len = p[1];
4087 p += 2;
4088 len -= 2;
4089 }
4090
4091 /*
4092 * No mode subpages supported (yet) but asking for _all_
4093 * subpages may be valid
4094 */
7780081c
HR
4095 if (spg && (spg != ALL_SUB_MPAGES)) {
4096 fp = (p[0] & 0x40) ? 1 : 0;
4097 fp += hdr_len + bd_len;
1b26d29c 4098 goto invalid_param;
7780081c 4099 }
1b26d29c
PB
4100 if (pg_len > len)
4101 goto invalid_param_len;
4102
4103 switch (pg) {
4104 case CACHE_MPAGE:
7780081c
HR
4105 if (ata_mselect_caching(qc, p, pg_len, &fp) < 0) {
4106 fp += hdr_len + bd_len;
1b26d29c 4107 goto invalid_param;
7780081c 4108 }
1b26d29c 4109 break;
06dbde5f 4110 case CONTROL_MPAGE:
7780081c
HR
4111 if (ata_mselect_control(qc, p, pg_len, &fp) < 0) {
4112 fp += hdr_len + bd_len;
06dbde5f 4113 goto invalid_param;
535fd072
TY
4114 } else {
4115 goto skip; /* No ATA command to send */
7780081c 4116 }
1b26d29c 4117 break;
1b26d29c 4118 default: /* invalid page code */
7780081c 4119 fp = bd_len + hdr_len;
1b26d29c
PB
4120 goto invalid_param;
4121 }
4122
4123 /*
4124 * Only one page has changeable data, so we only support setting one
4125 * page at a time.
4126 */
4127 if (len > pg_len)
4128 goto invalid_param;
4129
4130 return 0;
4131
4132 invalid_fld:
0df10b84 4133 ata_scsi_set_invalid_field(qc->dev, scmd, fp, bp);
1b26d29c
PB
4134 return 1;
4135
4136 invalid_param:
7780081c 4137 ata_scsi_set_invalid_parameter(qc->dev, scmd, fp);
1b26d29c
PB
4138 return 1;
4139
4140 invalid_param_len:
4141 /* "Parameter list length error" */
06dbde5f 4142 ata_scsi_set_sense(qc->dev, scmd, ILLEGAL_REQUEST, 0x1a, 0x0);
1b26d29c
PB
4143 return 1;
4144
4145 skip:
4146 scmd->result = SAM_STAT_GOOD;
4147 return 1;
4148}
4149
1da177e4
LT
4150/**
4151 * ata_get_xlat_func - check if SCSI to ATA translation is possible
4152 * @dev: ATA device
4153 * @cmd: SCSI command opcode to consider
4154 *
4155 * Look up the SCSI command given, and determine whether the
4156 * SCSI command is to be translated or simulated.
4157 *
4158 * RETURNS:
4159 * Pointer to translation function if possible, %NULL if not.
4160 */
4161
4162static inline ata_xlat_func_t ata_get_xlat_func(struct ata_device *dev, u8 cmd)
4163{
4164 switch (cmd) {
4165 case READ_6:
4166 case READ_10:
4167 case READ_16:
4168
4169 case WRITE_6:
4170 case WRITE_10:
4171 case WRITE_16:
4172 return ata_scsi_rw_xlat;
4173
0cdd6eb7 4174 case WRITE_SAME_16:
18f0f978
CH
4175 return ata_scsi_write_same_xlat;
4176
1da177e4
LT
4177 case SYNCHRONIZE_CACHE:
4178 if (ata_try_flush_cache(dev))
4179 return ata_scsi_flush_xlat;
4180 break;
4181
4182 case VERIFY:
4183 case VERIFY_16:
4184 return ata_scsi_verify_xlat;
b095518e
JG
4185
4186 case ATA_12:
4187 case ATA_16:
4188 return ata_scsi_pass_thru;
da61396d 4189
1b26d29c
PB
4190 case MODE_SELECT:
4191 case MODE_SELECT_10:
4192 return ata_scsi_mode_select_xlat;
4193 break;
4194
28a3fc22
HR
4195 case ZBC_IN:
4196 return ata_scsi_zbc_in_xlat;
4197
27708a95
HR
4198 case ZBC_OUT:
4199 return ata_scsi_zbc_out_xlat;
4200
972dcafb
DG
4201 case START_STOP:
4202 return ata_scsi_start_stop_xlat;
1da177e4
LT
4203 }
4204
4205 return NULL;
4206}
4207
4208/**
4209 * ata_scsi_dump_cdb - dump SCSI command contents to dmesg
4210 * @ap: ATA port to which the command was being sent
4211 * @cmd: SCSI command to dump
4212 *
4213 * Prints the contents of a SCSI command via printk().
4214 */
4215
4216static inline void ata_scsi_dump_cdb(struct ata_port *ap,
4217 struct scsi_cmnd *cmd)
4218{
4219#ifdef ATA_DEBUG
4220 struct scsi_device *scsidev = cmd->device;
1da177e4 4221
26f58830 4222 DPRINTK("CDB (%u:%d,%d,%d) %9ph\n",
44877b4e 4223 ap->print_id,
1da177e4 4224 scsidev->channel, scsidev->id, scsidev->lun,
26f58830 4225 cmd->cmnd);
1da177e4
LT
4226#endif
4227}
4228
542b1444 4229static inline int __ata_scsi_queuecmd(struct scsi_cmnd *scmd,
2115ea94 4230 struct ata_device *dev)
eb3f0f9c 4231{
baf4fdfa
ML
4232 u8 scsi_op = scmd->cmnd[0];
4233 ata_xlat_func_t xlat_func;
2115ea94
TH
4234 int rc = 0;
4235
9162c657 4236 if (dev->class == ATA_DEV_ATA || dev->class == ATA_DEV_ZAC) {
baf4fdfa
ML
4237 if (unlikely(!scmd->cmd_len || scmd->cmd_len > dev->cdb_len))
4238 goto bad_cdb_len;
eb3f0f9c 4239
baf4fdfa
ML
4240 xlat_func = ata_get_xlat_func(dev, scsi_op);
4241 } else {
4242 if (unlikely(!scmd->cmd_len))
4243 goto bad_cdb_len;
4244
4245 xlat_func = NULL;
4246 if (likely((scsi_op != ATA_16) || !atapi_passthru16)) {
4247 /* relay SCSI command to ATAPI device */
607126c2
ML
4248 int len = COMMAND_SIZE(scsi_op);
4249 if (unlikely(len > scmd->cmd_len || len > dev->cdb_len))
baf4fdfa
ML
4250 goto bad_cdb_len;
4251
4252 xlat_func = atapi_xlat;
4253 } else {
4254 /* ATA_16 passthru, treat as an ATA command */
4255 if (unlikely(scmd->cmd_len > 16))
4256 goto bad_cdb_len;
4257
4258 xlat_func = ata_get_xlat_func(dev, scsi_op);
4259 }
4260 }
4261
4262 if (xlat_func)
b27dcfb0 4263 rc = ata_scsi_translate(dev, scmd, xlat_func);
baf4fdfa 4264 else
b27dcfb0 4265 ata_scsi_simulate(dev, scmd);
2115ea94
TH
4266
4267 return rc;
baf4fdfa
ML
4268
4269 bad_cdb_len:
4270 DPRINTK("bad CDB len=%u, scsi_op=0x%02x, max=%u\n",
4271 scmd->cmd_len, scsi_op, dev->cdb_len);
4272 scmd->result = DID_ERROR << 16;
b27dcfb0 4273 scmd->scsi_done(scmd);
baf4fdfa 4274 return 0;
eb3f0f9c
BK
4275}
4276
1da177e4
LT
4277/**
4278 * ata_scsi_queuecmd - Issue SCSI cdb to libata-managed device
23e701e6 4279 * @shost: SCSI host of command to be sent
1da177e4 4280 * @cmd: SCSI command to be sent
1da177e4
LT
4281 *
4282 * In some cases, this function translates SCSI commands into
4283 * ATA taskfiles, and queues the taskfiles to be sent to
4284 * hardware. In other cases, this function simulates a
4285 * SCSI device by evaluating and responding to certain
4286 * SCSI commands. This creates the overall effect of
4287 * ATA and ATAPI devices appearing as SCSI devices.
4288 *
4289 * LOCKING:
23e701e6 4290 * ATA host lock
1da177e4
LT
4291 *
4292 * RETURNS:
2115ea94
TH
4293 * Return value from __ata_scsi_queuecmd() if @cmd can be queued,
4294 * 0 otherwise.
1da177e4 4295 */
23e701e6 4296int ata_scsi_queuecmd(struct Scsi_Host *shost, struct scsi_cmnd *cmd)
1da177e4
LT
4297{
4298 struct ata_port *ap;
4299 struct ata_device *dev;
4300 struct scsi_device *scsidev = cmd->device;
2115ea94 4301 int rc = 0;
23e701e6 4302 unsigned long irq_flags;
1da177e4 4303
35bb94b1 4304 ap = ata_shost_to_port(shost);
005a5a06 4305
23e701e6 4306 spin_lock_irqsave(ap->lock, irq_flags);
1da177e4
LT
4307
4308 ata_scsi_dump_cdb(ap, cmd);
4309
4310 dev = ata_scsi_find_dev(ap, scsidev);
eb3f0f9c 4311 if (likely(dev))
b27dcfb0 4312 rc = __ata_scsi_queuecmd(cmd, dev);
eb3f0f9c 4313 else {
1da177e4 4314 cmd->result = (DID_BAD_TARGET << 16);
23e701e6 4315 cmd->scsi_done(cmd);
1da177e4
LT
4316 }
4317
23e701e6
JG
4318 spin_unlock_irqrestore(ap->lock, irq_flags);
4319
2115ea94 4320 return rc;
1da177e4
LT
4321}
4322
4323/**
4324 * ata_scsi_simulate - simulate SCSI command on ATA device
c893a3ae 4325 * @dev: the target device
1da177e4 4326 * @cmd: SCSI command being sent to device.
1da177e4
LT
4327 *
4328 * Interprets and directly executes a select list of SCSI commands
4329 * that can be handled internally.
4330 *
4331 * LOCKING:
cca3974e 4332 * spin_lock_irqsave(host lock)
1da177e4
LT
4333 */
4334
b27dcfb0 4335void ata_scsi_simulate(struct ata_device *dev, struct scsi_cmnd *cmd)
1da177e4
LT
4336{
4337 struct ata_scsi_args args;
057ace5e 4338 const u8 *scsicmd = cmd->cmnd;
45394145 4339 u8 tmp8;
1da177e4 4340
9a3dccc4
TH
4341 args.dev = dev;
4342 args.id = dev->id;
1da177e4 4343 args.cmd = cmd;
b27dcfb0 4344 args.done = cmd->scsi_done;
1da177e4
LT
4345
4346 switch(scsicmd[0]) {
2dcb407e 4347 case INQUIRY:
bcfc867d
HR
4348 if (scsicmd[1] & 2) /* is CmdDt set? */
4349 ata_scsi_invalid_field(dev, cmd, 1);
2dcb407e
JG
4350 else if ((scsicmd[1] & 1) == 0) /* is EVPD clear? */
4351 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_std);
4352 else switch (scsicmd[2]) {
4353 case 0x00:
4354 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_00);
1da177e4 4355 break;
2dcb407e
JG
4356 case 0x80:
4357 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_80);
1da177e4 4358 break;
2dcb407e
JG
4359 case 0x83:
4360 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_83);
1da177e4 4361 break;
2dcb407e
JG
4362 case 0x89:
4363 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_89);
4364 break;
18f0f978
CH
4365 case 0xb0:
4366 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_b0);
4367 break;
1e9dbc92
MW
4368 case 0xb1:
4369 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_b1);
4370 break;
02e0a604
MP
4371 case 0xb2:
4372 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_b2);
4373 break;
6d1003ae
HR
4374 case 0xb6:
4375 if (dev->flags & ATA_DFLAG_ZAC) {
4376 ata_scsi_rbuf_fill(&args, ata_scsiop_inq_b6);
4377 break;
4378 }
4379 /* Fallthrough */
2dcb407e 4380 default:
bcfc867d 4381 ata_scsi_invalid_field(dev, cmd, 2);
1da177e4 4382 break;
2dcb407e
JG
4383 }
4384 break;
4385
4386 case MODE_SENSE:
4387 case MODE_SENSE_10:
4388 ata_scsi_rbuf_fill(&args, ata_scsiop_mode_sense);
4389 break;
4390
2dcb407e
JG
4391 case READ_CAPACITY:
4392 ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
4393 break;
4394
eb846d9f 4395 case SERVICE_ACTION_IN_16:
2dcb407e 4396 if ((scsicmd[1] & 0x1f) == SAI_READ_CAPACITY_16)
1da177e4 4397 ata_scsi_rbuf_fill(&args, ata_scsiop_read_cap);
2dcb407e 4398 else
bcfc867d 4399 ata_scsi_invalid_field(dev, cmd, 1);
2dcb407e 4400 break;
1da177e4 4401
2dcb407e
JG
4402 case REPORT_LUNS:
4403 ata_scsi_rbuf_fill(&args, ata_scsiop_report_luns);
4404 break;
1da177e4 4405
2dcb407e 4406 case REQUEST_SENSE:
06dbde5f 4407 ata_scsi_set_sense(dev, cmd, 0, 0, 0);
2dcb407e 4408 cmd->result = (DRIVER_SENSE << 24);
b27dcfb0 4409 cmd->scsi_done(cmd);
2dcb407e 4410 break;
1da177e4 4411
2dcb407e
JG
4412 /* if we reach this, then writeback caching is disabled,
4413 * turning this into a no-op.
4414 */
4415 case SYNCHRONIZE_CACHE:
4416 /* fall through */
4417
4418 /* no-op's, complete with success */
4419 case REZERO_UNIT:
4420 case SEEK_6:
4421 case SEEK_10:
4422 case TEST_UNIT_READY:
4423 ata_scsi_rbuf_fill(&args, ata_scsiop_noop);
4424 break;
45394145 4425
2dcb407e
JG
4426 case SEND_DIAGNOSTIC:
4427 tmp8 = scsicmd[1] & ~(1 << 3);
4428 if ((tmp8 == 0x4) && (!scsicmd[3]) && (!scsicmd[4]))
00bd0202 4429 ata_scsi_rbuf_fill(&args, ata_scsiop_noop);
2dcb407e 4430 else
bcfc867d 4431 ata_scsi_invalid_field(dev, cmd, 1);
2dcb407e 4432 break;
1da177e4 4433
7b203094
ST
4434 case MAINTENANCE_IN:
4435 if (scsicmd[1] == MI_REPORT_SUPPORTED_OPERATION_CODES)
4436 ata_scsi_rbuf_fill(&args, ata_scsiop_maint_in);
4437 else
4438 ata_scsi_invalid_field(dev, cmd, 1);
4439 break;
4440
2dcb407e
JG
4441 /* all other commands */
4442 default:
06dbde5f 4443 ata_scsi_set_sense(dev, cmd, ILLEGAL_REQUEST, 0x20, 0x0);
2dcb407e 4444 /* "Invalid command operation code" */
b27dcfb0 4445 cmd->scsi_done(cmd);
2dcb407e 4446 break;
1da177e4
LT
4447 }
4448}
4449
f3187195
TH
4450int ata_scsi_add_hosts(struct ata_host *host, struct scsi_host_template *sht)
4451{
4452 int i, rc;
4453
4454 for (i = 0; i < host->n_ports; i++) {
4455 struct ata_port *ap = host->ports[i];
4456 struct Scsi_Host *shost;
4457
4458 rc = -ENOMEM;
4459 shost = scsi_host_alloc(sht, sizeof(struct ata_port *));
4460 if (!shost)
4461 goto err_alloc;
4462
9ee4f393 4463 shost->eh_noresume = 1;
f3187195
TH
4464 *(struct ata_port **)&shost->hostdata[0] = ap;
4465 ap->scsi_host = shost;
4466
d9027470 4467 shost->transportt = ata_scsi_transport_template;
f3187195
TH
4468 shost->unique_id = ap->print_id;
4469 shost->max_id = 16;
4470 shost->max_lun = 1;
4471 shost->max_channel = 1;
4472 shost->max_cmd_len = 16;
4473
31cc23b3
TH
4474 /* Schedule policy is determined by ->qc_defer()
4475 * callback and it needs to see every deferred qc.
4476 * Set host_blocked to 1 to prevent SCSI midlayer from
4477 * automatically deferring requests.
4478 */
4479 shost->max_host_blocked = 1;
4480
f8fc75dc
LM
4481 rc = scsi_add_host_with_dma(ap->scsi_host,
4482 &ap->tdev, ap->host->dev);
f3187195
TH
4483 if (rc)
4484 goto err_add;
4485 }
4486
4487 return 0;
4488
4489 err_add:
4490 scsi_host_put(host->ports[i]->scsi_host);
4491 err_alloc:
4492 while (--i >= 0) {
4493 struct Scsi_Host *shost = host->ports[i]->scsi_host;
4494
4495 scsi_remove_host(shost);
4496 scsi_host_put(shost);
4497 }
4498 return rc;
4499}
4500
1ae46317 4501void ata_scsi_scan_host(struct ata_port *ap, int sync)
644dd0cc 4502{
1ae46317
TH
4503 int tries = 5;
4504 struct ata_device *last_failed_dev = NULL;
41bda9c9 4505 struct ata_link *link;
1ae46317 4506 struct ata_device *dev;
644dd0cc 4507
1ae46317 4508 repeat:
1eca4365
TH
4509 ata_for_each_link(link, ap, EDGE) {
4510 ata_for_each_dev(dev, link, ENABLED) {
41bda9c9
TH
4511 struct scsi_device *sdev;
4512 int channel = 0, id = 0;
3edebac4 4513
1eca4365 4514 if (dev->sdev)
41bda9c9 4515 continue;
3f19ee8c 4516
41bda9c9
TH
4517 if (ata_is_host_link(link))
4518 id = dev->devno;
4519 else
4520 channel = link->pmp;
4521
4522 sdev = __scsi_add_device(ap->scsi_host, channel, id, 0,
4523 NULL);
4524 if (!IS_ERR(sdev)) {
4525 dev->sdev = sdev;
4526 scsi_device_put(sdev);
295124dc
GG
4527 } else {
4528 dev->sdev = NULL;
41bda9c9 4529 }
3edebac4 4530 }
3f19ee8c 4531 }
1ae46317
TH
4532
4533 /* If we scanned while EH was in progress or allocation
4534 * failure occurred, scan would have failed silently. Check
4535 * whether all devices are attached.
4536 */
1eca4365
TH
4537 ata_for_each_link(link, ap, EDGE) {
4538 ata_for_each_dev(dev, link, ENABLED) {
4539 if (!dev->sdev)
41bda9c9
TH
4540 goto exit_loop;
4541 }
1ae46317 4542 }
41bda9c9
TH
4543 exit_loop:
4544 if (!link)
1ae46317
TH
4545 return;
4546
4547 /* we're missing some SCSI devices */
4548 if (sync) {
4549 /* If caller requested synchrnous scan && we've made
4550 * any progress, sleep briefly and repeat.
4551 */
4552 if (dev != last_failed_dev) {
4553 msleep(100);
4554 last_failed_dev = dev;
4555 goto repeat;
4556 }
4557
4558 /* We might be failing to detect boot device, give it
4559 * a few more chances.
4560 */
4561 if (--tries) {
4562 msleep(100);
4563 goto repeat;
4564 }
4565
a9a79dfe
JP
4566 ata_port_err(ap,
4567 "WARNING: synchronous SCSI scan failed without making any progress, switching to async\n");
1ae46317
TH
4568 }
4569
ad72cf98 4570 queue_delayed_work(system_long_wq, &ap->hotplug_task,
1ae46317 4571 round_jiffies_relative(HZ));
644dd0cc 4572}
0ea035a3
TH
4573
4574/**
4575 * ata_scsi_offline_dev - offline attached SCSI device
4576 * @dev: ATA device to offline attached SCSI device for
4577 *
4578 * This function is called from ata_eh_hotplug() and responsible
4579 * for taking the SCSI device attached to @dev offline. This
cca3974e 4580 * function is called with host lock which protects dev->sdev
0ea035a3
TH
4581 * against clearing.
4582 *
4583 * LOCKING:
cca3974e 4584 * spin_lock_irqsave(host lock)
0ea035a3
TH
4585 *
4586 * RETURNS:
4587 * 1 if attached SCSI device exists, 0 otherwise.
4588 */
4589int ata_scsi_offline_dev(struct ata_device *dev)
4590{
4591 if (dev->sdev) {
4592 scsi_device_set_state(dev->sdev, SDEV_OFFLINE);
4593 return 1;
4594 }
4595 return 0;
4596}
580b2102
TH
4597
4598/**
4599 * ata_scsi_remove_dev - remove attached SCSI device
4600 * @dev: ATA device to remove attached SCSI device for
4601 *
4602 * This function is called from ata_eh_scsi_hotplug() and
4603 * responsible for removing the SCSI device attached to @dev.
4604 *
4605 * LOCKING:
4606 * Kernel thread context (may sleep).
4607 */
4608static void ata_scsi_remove_dev(struct ata_device *dev)
4609{
9af5c9c9 4610 struct ata_port *ap = dev->link->ap;
580b2102
TH
4611 struct scsi_device *sdev;
4612 unsigned long flags;
4613
4614 /* Alas, we need to grab scan_mutex to ensure SCSI device
4615 * state doesn't change underneath us and thus
4616 * scsi_device_get() always succeeds. The mutex locking can
4617 * be removed if there is __scsi_device_get() interface which
4618 * increments reference counts regardless of device state.
4619 */
cca3974e 4620 mutex_lock(&ap->scsi_host->scan_mutex);
ba6a1308 4621 spin_lock_irqsave(ap->lock, flags);
580b2102 4622
cca3974e 4623 /* clearing dev->sdev is protected by host lock */
580b2102
TH
4624 sdev = dev->sdev;
4625 dev->sdev = NULL;
4626
4627 if (sdev) {
4628 /* If user initiated unplug races with us, sdev can go
cca3974e 4629 * away underneath us after the host lock and
580b2102
TH
4630 * scan_mutex are released. Hold onto it.
4631 */
4632 if (scsi_device_get(sdev) == 0) {
4633 /* The following ensures the attached sdev is
4634 * offline on return from ata_scsi_offline_dev()
4635 * regardless it wins or loses the race
4636 * against this function.
4637 */
4638 scsi_device_set_state(sdev, SDEV_OFFLINE);
4639 } else {
4640 WARN_ON(1);
4641 sdev = NULL;
4642 }
4643 }
4644
ba6a1308 4645 spin_unlock_irqrestore(ap->lock, flags);
cca3974e 4646 mutex_unlock(&ap->scsi_host->scan_mutex);
580b2102
TH
4647
4648 if (sdev) {
a9a79dfe
JP
4649 ata_dev_info(dev, "detaching (SCSI %s)\n",
4650 dev_name(&sdev->sdev_gendev));
580b2102
TH
4651
4652 scsi_remove_device(sdev);
4653 scsi_device_put(sdev);
4654 }
4655}
4656
41bda9c9
TH
4657static void ata_scsi_handle_link_detach(struct ata_link *link)
4658{
4659 struct ata_port *ap = link->ap;
4660 struct ata_device *dev;
4661
1eca4365 4662 ata_for_each_dev(dev, link, ALL) {
41bda9c9
TH
4663 unsigned long flags;
4664
4665 if (!(dev->flags & ATA_DFLAG_DETACHED))
4666 continue;
4667
4668 spin_lock_irqsave(ap->lock, flags);
4669 dev->flags &= ~ATA_DFLAG_DETACHED;
4670 spin_unlock_irqrestore(ap->lock, flags);
4671
f1bc1e4c
AL
4672 if (zpodd_dev_enabled(dev))
4673 zpodd_exit(dev);
4674
41bda9c9
TH
4675 ata_scsi_remove_dev(dev);
4676 }
4677}
4678
2f294968
KCA
4679/**
4680 * ata_scsi_media_change_notify - send media change event
c5d0e6a0 4681 * @dev: Pointer to the disk device with media change event
2f294968
KCA
4682 *
4683 * Tell the block layer to send a media change notification
4684 * event.
4685 *
4686 * LOCKING:
854c73a2 4687 * spin_lock_irqsave(host lock)
2f294968 4688 */
854c73a2 4689void ata_scsi_media_change_notify(struct ata_device *dev)
2f294968 4690{
854c73a2 4691 if (dev->sdev)
f26792d5
JG
4692 sdev_evt_send_simple(dev->sdev, SDEV_EVT_MEDIA_CHANGE,
4693 GFP_ATOMIC);
2f294968 4694}
2f294968 4695
580b2102
TH
4696/**
4697 * ata_scsi_hotplug - SCSI part of hotplug
65f27f38 4698 * @work: Pointer to ATA port to perform SCSI hotplug on
580b2102
TH
4699 *
4700 * Perform SCSI part of hotplug. It's executed from a separate
4701 * workqueue after EH completes. This is necessary because SCSI
4702 * hot plugging requires working EH and hot unplugging is
4703 * synchronized with hot plugging with a mutex.
4704 *
4705 * LOCKING:
4706 * Kernel thread context (may sleep).
4707 */
65f27f38 4708void ata_scsi_hotplug(struct work_struct *work)
580b2102 4709{
65f27f38
DH
4710 struct ata_port *ap =
4711 container_of(work, struct ata_port, hotplug_task.work);
41bda9c9 4712 int i;
580b2102 4713
b51e9e5d 4714 if (ap->pflags & ATA_PFLAG_UNLOADING) {
580b2102
TH
4715 DPRINTK("ENTER/EXIT - unloading\n");
4716 return;
4717 }
4718
85fbd722
TH
4719 /*
4720 * XXX - UGLY HACK
4721 *
4722 * The block layer suspend/resume path is fundamentally broken due
4723 * to freezable kthreads and workqueue and may deadlock if a block
4724 * device gets removed while resume is in progress. I don't know
4725 * what the solution is short of removing freezable kthreads and
4726 * workqueues altogether.
4727 *
4728 * The following is an ugly hack to avoid kicking off device
4729 * removal while freezer is active. This is a joke but does avoid
4730 * this particular deadlock scenario.
4731 *
4732 * https://bugzilla.kernel.org/show_bug.cgi?id=62801
4733 * http://marc.info/?l=linux-kernel&m=138695698516487
4734 */
4735#ifdef CONFIG_FREEZER
4736 while (pm_freezing)
4737 msleep(10);
4738#endif
4739
580b2102 4740 DPRINTK("ENTER\n");
ad72cf98 4741 mutex_lock(&ap->scsi_scan_mutex);
580b2102 4742
41bda9c9
TH
4743 /* Unplug detached devices. We cannot use link iterator here
4744 * because PMP links have to be scanned even if PMP is
4745 * currently not attached. Iterate manually.
4746 */
4747 ata_scsi_handle_link_detach(&ap->link);
4748 if (ap->pmp_link)
4749 for (i = 0; i < SATA_PMP_MAX_PORTS; i++)
4750 ata_scsi_handle_link_detach(&ap->pmp_link[i]);
580b2102
TH
4751
4752 /* scan for new ones */
1ae46317 4753 ata_scsi_scan_host(ap, 0);
580b2102 4754
ad72cf98 4755 mutex_unlock(&ap->scsi_scan_mutex);
580b2102
TH
4756 DPRINTK("EXIT\n");
4757}
83c47bcb
TH
4758
4759/**
4760 * ata_scsi_user_scan - indication for user-initiated bus scan
4761 * @shost: SCSI host to scan
4762 * @channel: Channel to scan
4763 * @id: ID to scan
4764 * @lun: LUN to scan
4765 *
4766 * This function is called when user explicitly requests bus
4767 * scan. Set probe pending flag and invoke EH.
4768 *
4769 * LOCKING:
4770 * SCSI layer (we don't care)
4771 *
4772 * RETURNS:
4773 * Zero.
4774 */
d9027470 4775int ata_scsi_user_scan(struct Scsi_Host *shost, unsigned int channel,
9cb78c16 4776 unsigned int id, u64 lun)
83c47bcb
TH
4777{
4778 struct ata_port *ap = ata_shost_to_port(shost);
4779 unsigned long flags;
41bda9c9 4780 int devno, rc = 0;
83c47bcb
TH
4781
4782 if (!ap->ops->error_handler)
4783 return -EOPNOTSUPP;
4784
41bda9c9 4785 if (lun != SCAN_WILD_CARD && lun)
83c47bcb
TH
4786 return -EINVAL;
4787
071f44b1 4788 if (!sata_pmp_attached(ap)) {
41bda9c9
TH
4789 if (channel != SCAN_WILD_CARD && channel)
4790 return -EINVAL;
4791 devno = id;
4792 } else {
4793 if (id != SCAN_WILD_CARD && id)
4794 return -EINVAL;
4795 devno = channel;
4796 }
4797
ba6a1308 4798 spin_lock_irqsave(ap->lock, flags);
83c47bcb 4799
41bda9c9
TH
4800 if (devno == SCAN_WILD_CARD) {
4801 struct ata_link *link;
4802
1eca4365 4803 ata_for_each_link(link, ap, EDGE) {
41bda9c9 4804 struct ata_eh_info *ehi = &link->eh_info;
b558eddd 4805 ehi->probe_mask |= ATA_ALL_DEVICES;
cf480626 4806 ehi->action |= ATA_EH_RESET;
41bda9c9 4807 }
83c47bcb 4808 } else {
41bda9c9 4809 struct ata_device *dev = ata_find_dev(ap, devno);
83c47bcb
TH
4810
4811 if (dev) {
41bda9c9 4812 struct ata_eh_info *ehi = &dev->link->eh_info;
9af5c9c9 4813 ehi->probe_mask |= 1 << dev->devno;
cf480626 4814 ehi->action |= ATA_EH_RESET;
83c47bcb
TH
4815 } else
4816 rc = -EINVAL;
4817 }
4818
309afcb5 4819 if (rc == 0) {
83c47bcb 4820 ata_port_schedule_eh(ap);
309afcb5
TH
4821 spin_unlock_irqrestore(ap->lock, flags);
4822 ata_port_wait_eh(ap);
4823 } else
4824 spin_unlock_irqrestore(ap->lock, flags);
83c47bcb
TH
4825
4826 return rc;
4827}
3057ac3c 4828
4829/**
d0171269 4830 * ata_scsi_dev_rescan - initiate scsi_rescan_device()
65f27f38 4831 * @work: Pointer to ATA port to perform scsi_rescan_device()
3057ac3c 4832 *
d0171269 4833 * After ATA pass thru (SAT) commands are executed successfully,
ad72cf98 4834 * libata need to propagate the changes to SCSI layer.
3057ac3c 4835 *
d0171269
TH
4836 * LOCKING:
4837 * Kernel thread context (may sleep).
3057ac3c 4838 */
65f27f38 4839void ata_scsi_dev_rescan(struct work_struct *work)
3057ac3c 4840{
65f27f38
DH
4841 struct ata_port *ap =
4842 container_of(work, struct ata_port, scsi_rescan_task);
41bda9c9 4843 struct ata_link *link;
f58229f8 4844 struct ata_device *dev;
f84e7e41 4845 unsigned long flags;
3057ac3c 4846
ad72cf98 4847 mutex_lock(&ap->scsi_scan_mutex);
f84e7e41
TH
4848 spin_lock_irqsave(ap->lock, flags);
4849
1eca4365
TH
4850 ata_for_each_link(link, ap, EDGE) {
4851 ata_for_each_dev(dev, link, ENABLED) {
41bda9c9 4852 struct scsi_device *sdev = dev->sdev;
3057ac3c 4853
1eca4365 4854 if (!sdev)
41bda9c9
TH
4855 continue;
4856 if (scsi_device_get(sdev))
4857 continue;
f84e7e41 4858
41bda9c9
TH
4859 spin_unlock_irqrestore(ap->lock, flags);
4860 scsi_rescan_device(&(sdev->sdev_gendev));
4861 scsi_device_put(sdev);
4862 spin_lock_irqsave(ap->lock, flags);
4863 }
3057ac3c 4864 }
f84e7e41
TH
4865
4866 spin_unlock_irqrestore(ap->lock, flags);
ad72cf98 4867 mutex_unlock(&ap->scsi_scan_mutex);
3057ac3c 4868}
80289167
BK
4869
4870/**
4871 * ata_sas_port_alloc - Allocate port for a SAS attached SATA device
4f931374 4872 * @host: ATA host container for all SAS ports
80289167 4873 * @port_info: Information from low-level host driver
cca3974e 4874 * @shost: SCSI host that the scsi device is attached to
80289167
BK
4875 *
4876 * LOCKING:
4877 * PCI/etc. bus probe sem.
4878 *
4879 * RETURNS:
4880 * ata_port pointer on success / NULL on failure.
4881 */
4882
cca3974e 4883struct ata_port *ata_sas_port_alloc(struct ata_host *host,
80289167 4884 struct ata_port_info *port_info,
cca3974e 4885 struct Scsi_Host *shost)
80289167 4886{
f3187195 4887 struct ata_port *ap;
80289167 4888
f3187195 4889 ap = ata_port_alloc(host);
80289167
BK
4890 if (!ap)
4891 return NULL;
4892
f3187195 4893 ap->port_no = 0;
a29b5dad 4894 ap->lock = &host->lock;
f3187195
TH
4895 ap->pio_mask = port_info->pio_mask;
4896 ap->mwdma_mask = port_info->mwdma_mask;
4897 ap->udma_mask = port_info->udma_mask;
4898 ap->flags |= port_info->flags;
4899 ap->ops = port_info->port_ops;
4900 ap->cbl = ATA_CBL_SATA;
4901
80289167
BK
4902 return ap;
4903}
4904EXPORT_SYMBOL_GPL(ata_sas_port_alloc);
4905
4906/**
4907 * ata_sas_port_start - Set port up for dma.
4908 * @ap: Port to initialize
4909 *
4910 * Called just after data structures for each port are
dde20207 4911 * initialized.
80289167
BK
4912 *
4913 * May be used as the port_start() entry in ata_port_operations.
4914 *
4915 * LOCKING:
4916 * Inherited from caller.
4917 */
4918int ata_sas_port_start(struct ata_port *ap)
4919{
3f1e046a
NA
4920 /*
4921 * the port is marked as frozen at allocation time, but if we don't
4922 * have new eh, we won't thaw it
4923 */
4924 if (!ap->ops->error_handler)
4925 ap->pflags &= ~ATA_PFLAG_FROZEN;
dde20207 4926 return 0;
80289167
BK
4927}
4928EXPORT_SYMBOL_GPL(ata_sas_port_start);
4929
4930/**
4931 * ata_port_stop - Undo ata_sas_port_start()
4932 * @ap: Port to shut down
4933 *
80289167
BK
4934 * May be used as the port_stop() entry in ata_port_operations.
4935 *
4936 * LOCKING:
4937 * Inherited from caller.
4938 */
4939
4940void ata_sas_port_stop(struct ata_port *ap)
4941{
80289167
BK
4942}
4943EXPORT_SYMBOL_GPL(ata_sas_port_stop);
4944
b2024459
DW
4945/**
4946 * ata_sas_async_probe - simply schedule probing and return
4947 * @ap: Port to probe
4948 *
4949 * For batch scheduling of probe for sas attached ata devices, assumes
4950 * the port has already been through ata_sas_port_init()
4951 */
4952void ata_sas_async_probe(struct ata_port *ap)
9508a66f 4953{
b2024459
DW
4954 __ata_port_probe(ap);
4955}
4956EXPORT_SYMBOL_GPL(ata_sas_async_probe);
9508a66f 4957
b2024459
DW
4958int ata_sas_sync_probe(struct ata_port *ap)
4959{
4960 return ata_port_probe(ap);
9508a66f 4961}
b2024459
DW
4962EXPORT_SYMBOL_GPL(ata_sas_sync_probe);
4963
9508a66f 4964
80289167
BK
4965/**
4966 * ata_sas_port_init - Initialize a SATA device
4967 * @ap: SATA port to initialize
4968 *
4969 * LOCKING:
4970 * PCI/etc. bus probe sem.
4971 *
4972 * RETURNS:
4973 * Zero on success, non-zero on error.
4974 */
4975
4976int ata_sas_port_init(struct ata_port *ap)
4977{
4978 int rc = ap->ops->port_start(ap);
4979
b2024459
DW
4980 if (rc)
4981 return rc;
4982 ap->print_id = atomic_inc_return(&ata_print_id);
4983 return 0;
80289167
BK
4984}
4985EXPORT_SYMBOL_GPL(ata_sas_port_init);
4986
4987/**
4988 * ata_sas_port_destroy - Destroy a SATA port allocated by ata_sas_port_alloc
4989 * @ap: SATA port to destroy
4990 *
4991 */
4992
4993void ata_sas_port_destroy(struct ata_port *ap)
4994{
f0d36efd
TH
4995 if (ap->ops->port_stop)
4996 ap->ops->port_stop(ap);
80289167
BK
4997 kfree(ap);
4998}
4999EXPORT_SYMBOL_GPL(ata_sas_port_destroy);
5000
5001/**
5002 * ata_sas_slave_configure - Default slave_config routine for libata devices
5003 * @sdev: SCSI device to configure
5004 * @ap: ATA port to which SCSI device is attached
5005 *
5006 * RETURNS:
5007 * Zero.
5008 */
5009
5010int ata_sas_slave_configure(struct scsi_device *sdev, struct ata_port *ap)
5011{
5012 ata_scsi_sdev_config(sdev);
9af5c9c9 5013 ata_scsi_dev_config(sdev, ap->link.device);
80289167
BK
5014 return 0;
5015}
5016EXPORT_SYMBOL_GPL(ata_sas_slave_configure);
5017
5018/**
5019 * ata_sas_queuecmd - Issue SCSI cdb to libata-managed device
5020 * @cmd: SCSI command to be sent
80289167
BK
5021 * @ap: ATA port to which the command is being sent
5022 *
5023 * RETURNS:
08475a19
BK
5024 * Return value from __ata_scsi_queuecmd() if @cmd can be queued,
5025 * 0 otherwise.
80289167
BK
5026 */
5027
b27dcfb0 5028int ata_sas_queuecmd(struct scsi_cmnd *cmd, struct ata_port *ap)
80289167 5029{
08475a19
BK
5030 int rc = 0;
5031
80289167
BK
5032 ata_scsi_dump_cdb(ap, cmd);
5033
2486fa56 5034 if (likely(ata_dev_enabled(ap->link.device)))
b27dcfb0 5035 rc = __ata_scsi_queuecmd(cmd, ap->link.device);
80289167
BK
5036 else {
5037 cmd->result = (DID_BAD_TARGET << 16);
b27dcfb0 5038 cmd->scsi_done(cmd);
80289167 5039 }
08475a19 5040 return rc;
80289167
BK
5041}
5042EXPORT_SYMBOL_GPL(ata_sas_queuecmd);
98bd4be1
SL
5043
5044int ata_sas_allocate_tag(struct ata_port *ap)
5045{
5046 unsigned int max_queue = ap->host->n_tags;
5047 unsigned int i, tag;
5048
5049 for (i = 0, tag = ap->sas_last_tag + 1; i < max_queue; i++, tag++) {
3a028243 5050 tag = tag < max_queue ? tag : 0;
98bd4be1
SL
5051
5052 /* the last tag is reserved for internal command. */
5053 if (tag == ATA_TAG_INTERNAL)
5054 continue;
5055
5056 if (!test_and_set_bit(tag, &ap->sas_tag_allocated)) {
5057 ap->sas_last_tag = tag;
5058 return tag;
5059 }
5060 }
5061 return -1;
5062}
5063
5064void ata_sas_free_tag(unsigned int tag, struct ata_port *ap)
5065{
5066 clear_bit(tag, &ap->sas_tag_allocated);
5067}