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