1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * SATA specific part of ATA helper library
5 * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
6 * Copyright 2003-2004 Jeff Garzik
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <scsi/scsi_cmnd.h>
13 #include <scsi/scsi_device.h>
14 #include <scsi/scsi_eh.h>
15 #include <linux/libata.h>
16 #include <asm/unaligned.h>
19 #include "libata-transport.h"
21 /* debounce timing parameters in msecs { interval, duration, timeout } */
22 const unsigned int sata_deb_timing_normal[] = { 5, 100, 2000 };
23 EXPORT_SYMBOL_GPL(sata_deb_timing_normal);
24 const unsigned int sata_deb_timing_hotplug[] = { 25, 500, 2000 };
25 EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug);
26 const unsigned int sata_deb_timing_long[] = { 100, 2000, 5000 };
27 EXPORT_SYMBOL_GPL(sata_deb_timing_long);
30 * sata_scr_valid - test whether SCRs are accessible
31 * @link: ATA link to test SCR accessibility for
33 * Test whether SCRs are accessible for @link.
39 * 1 if SCRs are accessible, 0 otherwise.
41 int sata_scr_valid(struct ata_link *link)
43 struct ata_port *ap = link->ap;
45 return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read;
47 EXPORT_SYMBOL_GPL(sata_scr_valid);
50 * sata_scr_read - read SCR register of the specified port
51 * @link: ATA link to read SCR for
53 * @val: Place to store read value
55 * Read SCR register @reg of @link into *@val. This function is
56 * guaranteed to succeed if @link is ap->link, the cable type of
57 * the port is SATA and the port implements ->scr_read.
60 * None if @link is ap->link. Kernel thread context otherwise.
63 * 0 on success, negative errno on failure.
65 int sata_scr_read(struct ata_link *link, int reg, u32 *val)
67 if (ata_is_host_link(link)) {
68 if (sata_scr_valid(link))
69 return link->ap->ops->scr_read(link, reg, val);
73 return sata_pmp_scr_read(link, reg, val);
75 EXPORT_SYMBOL_GPL(sata_scr_read);
78 * sata_scr_write - write SCR register of the specified port
79 * @link: ATA link to write SCR for
81 * @val: value to write
83 * Write @val to SCR register @reg of @link. This function is
84 * guaranteed to succeed if @link is ap->link, the cable type of
85 * the port is SATA and the port implements ->scr_read.
88 * None if @link is ap->link. Kernel thread context otherwise.
91 * 0 on success, negative errno on failure.
93 int sata_scr_write(struct ata_link *link, int reg, u32 val)
95 if (ata_is_host_link(link)) {
96 if (sata_scr_valid(link))
97 return link->ap->ops->scr_write(link, reg, val);
101 return sata_pmp_scr_write(link, reg, val);
103 EXPORT_SYMBOL_GPL(sata_scr_write);
106 * sata_scr_write_flush - write SCR register of the specified port and flush
107 * @link: ATA link to write SCR for
109 * @val: value to write
111 * This function is identical to sata_scr_write() except that this
112 * function performs flush after writing to the register.
115 * None if @link is ap->link. Kernel thread context otherwise.
118 * 0 on success, negative errno on failure.
120 int sata_scr_write_flush(struct ata_link *link, int reg, u32 val)
122 if (ata_is_host_link(link)) {
125 if (sata_scr_valid(link)) {
126 rc = link->ap->ops->scr_write(link, reg, val);
128 rc = link->ap->ops->scr_read(link, reg, &val);
134 return sata_pmp_scr_write(link, reg, val);
136 EXPORT_SYMBOL_GPL(sata_scr_write_flush);
139 * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure
140 * @tf: Taskfile to convert
141 * @pmp: Port multiplier port
142 * @is_cmd: This FIS is for command
143 * @fis: Buffer into which data will output
145 * Converts a standard ATA taskfile to a Serial ATA
146 * FIS structure (Register - Host to Device).
149 * Inherited from caller.
151 void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis)
153 fis[0] = 0x27; /* Register - Host to Device FIS */
154 fis[1] = pmp & 0xf; /* Port multiplier number*/
156 fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */
158 fis[2] = tf->command;
159 fis[3] = tf->feature;
166 fis[8] = tf->hob_lbal;
167 fis[9] = tf->hob_lbam;
168 fis[10] = tf->hob_lbah;
169 fis[11] = tf->hob_feature;
172 fis[13] = tf->hob_nsect;
176 fis[16] = tf->auxiliary & 0xff;
177 fis[17] = (tf->auxiliary >> 8) & 0xff;
178 fis[18] = (tf->auxiliary >> 16) & 0xff;
179 fis[19] = (tf->auxiliary >> 24) & 0xff;
181 EXPORT_SYMBOL_GPL(ata_tf_to_fis);
184 * ata_tf_from_fis - Convert SATA FIS to ATA taskfile
185 * @fis: Buffer from which data will be input
186 * @tf: Taskfile to output
188 * Converts a serial ATA FIS structure to a standard ATA taskfile.
191 * Inherited from caller.
194 void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf)
204 tf->hob_lbal = fis[8];
205 tf->hob_lbam = fis[9];
206 tf->hob_lbah = fis[10];
209 tf->hob_nsect = fis[13];
211 EXPORT_SYMBOL_GPL(ata_tf_from_fis);
214 * sata_link_debounce - debounce SATA phy status
215 * @link: ATA link to debounce SATA phy status for
216 * @params: timing parameters { interval, duration, timeout } in msec
217 * @deadline: deadline jiffies for the operation
219 * Make sure SStatus of @link reaches stable state, determined by
220 * holding the same value where DET is not 1 for @duration polled
221 * every @interval, before @timeout. Timeout constraints the
222 * beginning of the stable state. Because DET gets stuck at 1 on
223 * some controllers after hot unplugging, this functions waits
224 * until timeout then returns 0 if DET is stable at 1.
226 * @timeout is further limited by @deadline. The sooner of the
230 * Kernel thread context (may sleep)
233 * 0 on success, -errno on failure.
235 int sata_link_debounce(struct ata_link *link, const unsigned int *params,
236 unsigned long deadline)
238 unsigned int interval = params[0];
239 unsigned int duration = params[1];
240 unsigned long last_jiffies, t;
244 t = ata_deadline(jiffies, params[2]);
245 if (time_before(t, deadline))
248 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
253 last_jiffies = jiffies;
256 ata_msleep(link->ap, interval);
257 if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
263 if (cur == 1 && time_before(jiffies, deadline))
265 if (time_after(jiffies,
266 ata_deadline(last_jiffies, duration)))
271 /* unstable, start over */
273 last_jiffies = jiffies;
275 /* Check deadline. If debouncing failed, return
276 * -EPIPE to tell upper layer to lower link speed.
278 if (time_after(jiffies, deadline))
282 EXPORT_SYMBOL_GPL(sata_link_debounce);
285 * sata_link_resume - resume SATA link
286 * @link: ATA link to resume SATA
287 * @params: timing parameters { interval, duration, timeout } in msec
288 * @deadline: deadline jiffies for the operation
290 * Resume SATA phy @link and debounce it.
293 * Kernel thread context (may sleep)
296 * 0 on success, -errno on failure.
298 int sata_link_resume(struct ata_link *link, const unsigned int *params,
299 unsigned long deadline)
301 int tries = ATA_LINK_RESUME_TRIES;
302 u32 scontrol, serror;
305 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
309 * Writes to SControl sometimes get ignored under certain
310 * controllers (ata_piix SIDPR). Make sure DET actually is
314 scontrol = (scontrol & 0x0f0) | 0x300;
315 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
318 * Some PHYs react badly if SStatus is pounded
319 * immediately after resuming. Delay 200ms before
322 if (!(link->flags & ATA_LFLAG_NO_DEBOUNCE_DELAY))
323 ata_msleep(link->ap, 200);
325 /* is SControl restored correctly? */
326 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
328 } while ((scontrol & 0xf0f) != 0x300 && --tries);
330 if ((scontrol & 0xf0f) != 0x300) {
331 ata_link_warn(link, "failed to resume link (SControl %X)\n",
336 if (tries < ATA_LINK_RESUME_TRIES)
337 ata_link_warn(link, "link resume succeeded after %d retries\n",
338 ATA_LINK_RESUME_TRIES - tries);
340 if ((rc = sata_link_debounce(link, params, deadline)))
343 /* clear SError, some PHYs require this even for SRST to work */
344 if (!(rc = sata_scr_read(link, SCR_ERROR, &serror)))
345 rc = sata_scr_write(link, SCR_ERROR, serror);
347 return rc != -EINVAL ? rc : 0;
349 EXPORT_SYMBOL_GPL(sata_link_resume);
352 * sata_link_scr_lpm - manipulate SControl IPM and SPM fields
353 * @link: ATA link to manipulate SControl for
354 * @policy: LPM policy to configure
355 * @spm_wakeup: initiate LPM transition to active state
357 * Manipulate the IPM field of the SControl register of @link
358 * according to @policy. If @policy is ATA_LPM_MAX_POWER and
359 * @spm_wakeup is %true, the SPM field is manipulated to wake up
360 * the link. This function also clears PHYRDY_CHG before
367 * 0 on success, -errno otherwise.
369 int sata_link_scr_lpm(struct ata_link *link, enum ata_lpm_policy policy,
372 struct ata_eh_context *ehc = &link->eh_context;
373 bool woken_up = false;
377 rc = sata_scr_read(link, SCR_CONTROL, &scontrol);
382 case ATA_LPM_MAX_POWER:
383 /* disable all LPM transitions */
384 scontrol |= (0x7 << 8);
385 /* initiate transition to active state */
387 scontrol |= (0x4 << 12);
391 case ATA_LPM_MED_POWER:
392 /* allow LPM to PARTIAL */
393 scontrol &= ~(0x1 << 8);
394 scontrol |= (0x6 << 8);
396 case ATA_LPM_MED_POWER_WITH_DIPM:
397 case ATA_LPM_MIN_POWER_WITH_PARTIAL:
398 case ATA_LPM_MIN_POWER:
399 if (ata_link_nr_enabled(link) > 0) {
400 /* assume no restrictions on LPM transitions */
401 scontrol &= ~(0x7 << 8);
404 * If the controller does not support partial, slumber,
405 * or devsleep, then disallow these transitions.
407 if (link->ap->host->flags & ATA_HOST_NO_PART)
408 scontrol |= (0x1 << 8);
410 if (link->ap->host->flags & ATA_HOST_NO_SSC)
411 scontrol |= (0x2 << 8);
413 if (link->ap->host->flags & ATA_HOST_NO_DEVSLP)
414 scontrol |= (0x4 << 8);
416 /* empty port, power off */
418 scontrol |= (0x1 << 2);
425 rc = sata_scr_write(link, SCR_CONTROL, scontrol);
429 /* give the link time to transit out of LPM state */
433 /* clear PHYRDY_CHG from SError */
434 ehc->i.serror &= ~SERR_PHYRDY_CHG;
435 return sata_scr_write(link, SCR_ERROR, SERR_PHYRDY_CHG);
437 EXPORT_SYMBOL_GPL(sata_link_scr_lpm);
439 static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol)
441 struct ata_link *host_link = &link->ap->link;
442 u32 limit, target, spd;
444 limit = link->sata_spd_limit;
446 /* Don't configure downstream link faster than upstream link.
447 * It doesn't speed up anything and some PMPs choke on such
450 if (!ata_is_host_link(link) && host_link->sata_spd)
451 limit &= (1 << host_link->sata_spd) - 1;
453 if (limit == UINT_MAX)
458 spd = (*scontrol >> 4) & 0xf;
459 *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4);
461 return spd != target;
465 * sata_set_spd_needed - is SATA spd configuration needed
466 * @link: Link in question
468 * Test whether the spd limit in SControl matches
469 * @link->sata_spd_limit. This function is used to determine
470 * whether hardreset is necessary to apply SATA spd
474 * Inherited from caller.
477 * 1 if SATA spd configuration is needed, 0 otherwise.
479 static int sata_set_spd_needed(struct ata_link *link)
483 if (sata_scr_read(link, SCR_CONTROL, &scontrol))
486 return __sata_set_spd_needed(link, &scontrol);
490 * sata_set_spd - set SATA spd according to spd limit
491 * @link: Link to set SATA spd for
493 * Set SATA spd of @link according to sata_spd_limit.
496 * Inherited from caller.
499 * 0 if spd doesn't need to be changed, 1 if spd has been
500 * changed. Negative errno if SCR registers are inaccessible.
502 int sata_set_spd(struct ata_link *link)
507 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
510 if (!__sata_set_spd_needed(link, &scontrol))
513 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
518 EXPORT_SYMBOL_GPL(sata_set_spd);
521 * sata_link_hardreset - reset link via SATA phy reset
522 * @link: link to reset
523 * @timing: timing parameters { interval, duration, timeout } in msec
524 * @deadline: deadline jiffies for the operation
525 * @online: optional out parameter indicating link onlineness
526 * @check_ready: optional callback to check link readiness
528 * SATA phy-reset @link using DET bits of SControl register.
529 * After hardreset, link readiness is waited upon using
530 * ata_wait_ready() if @check_ready is specified. LLDs are
531 * allowed to not specify @check_ready and wait itself after this
532 * function returns. Device classification is LLD's
535 * *@online is set to one iff reset succeeded and @link is online
539 * Kernel thread context (may sleep)
542 * 0 on success, -errno otherwise.
544 int sata_link_hardreset(struct ata_link *link, const unsigned int *timing,
545 unsigned long deadline,
546 bool *online, int (*check_ready)(struct ata_link *))
554 if (sata_set_spd_needed(link)) {
555 /* SATA spec says nothing about how to reconfigure
556 * spd. To be on the safe side, turn off phy during
557 * reconfiguration. This works for at least ICH7 AHCI
560 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
563 scontrol = (scontrol & 0x0f0) | 0x304;
565 if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol)))
571 /* issue phy wake/reset */
572 if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol)))
575 scontrol = (scontrol & 0x0f0) | 0x301;
577 if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol)))
580 /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
581 * 10.4.2 says at least 1 ms.
583 ata_msleep(link->ap, 1);
585 /* bring link back */
586 rc = sata_link_resume(link, timing, deadline);
589 /* if link is offline nothing more to do */
590 if (ata_phys_link_offline(link))
593 /* Link is online. From this point, -ENODEV too is an error. */
597 if (sata_pmp_supported(link->ap) && ata_is_host_link(link)) {
598 /* If PMP is supported, we have to do follow-up SRST.
599 * Some PMPs don't send D2H Reg FIS after hardreset if
600 * the first port is empty. Wait only for
601 * ATA_TMOUT_PMP_SRST_WAIT.
604 unsigned long pmp_deadline;
606 pmp_deadline = ata_deadline(jiffies,
607 ATA_TMOUT_PMP_SRST_WAIT);
608 if (time_after(pmp_deadline, deadline))
609 pmp_deadline = deadline;
610 ata_wait_ready(link, pmp_deadline, check_ready);
618 rc = ata_wait_ready(link, deadline, check_ready);
620 if (rc && rc != -EAGAIN) {
621 /* online is set iff link is online && reset succeeded */
624 ata_link_err(link, "COMRESET failed (errno=%d)\n", rc);
628 EXPORT_SYMBOL_GPL(sata_link_hardreset);
631 * ata_qc_complete_multiple - Complete multiple qcs successfully
632 * @ap: port in question
633 * @qc_active: new qc_active mask
635 * Complete in-flight commands. This functions is meant to be
636 * called from low-level driver's interrupt routine to complete
637 * requests normally. ap->qc_active and @qc_active is compared
638 * and commands are completed accordingly.
640 * Always use this function when completing multiple NCQ commands
641 * from IRQ handlers instead of calling ata_qc_complete()
642 * multiple times to keep IRQ expect status properly in sync.
645 * spin_lock_irqsave(host lock)
648 * Number of completed commands on success, -errno otherwise.
650 int ata_qc_complete_multiple(struct ata_port *ap, u64 qc_active)
652 u64 done_mask, ap_qc_active = ap->qc_active;
656 * If the internal tag is set on ap->qc_active, then we care about
657 * bit0 on the passed in qc_active mask. Move that bit up to match
660 if (ap_qc_active & (1ULL << ATA_TAG_INTERNAL)) {
661 qc_active |= (qc_active & 0x01) << ATA_TAG_INTERNAL;
662 qc_active ^= qc_active & 0x01;
665 done_mask = ap_qc_active ^ qc_active;
667 if (unlikely(done_mask & qc_active)) {
668 ata_port_err(ap, "illegal qc_active transition (%08llx->%08llx)\n",
669 ap->qc_active, qc_active);
673 if (ap->ops->qc_ncq_fill_rtf)
674 ap->ops->qc_ncq_fill_rtf(ap, done_mask);
677 struct ata_queued_cmd *qc;
678 unsigned int tag = __ffs64(done_mask);
680 qc = ata_qc_from_tag(ap, tag);
685 done_mask &= ~(1ULL << tag);
690 EXPORT_SYMBOL_GPL(ata_qc_complete_multiple);
693 * ata_slave_link_init - initialize slave link
694 * @ap: port to initialize slave link for
696 * Create and initialize slave link for @ap. This enables slave
697 * link handling on the port.
699 * In libata, a port contains links and a link contains devices.
700 * There is single host link but if a PMP is attached to it,
701 * there can be multiple fan-out links. On SATA, there's usually
702 * a single device connected to a link but PATA and SATA
703 * controllers emulating TF based interface can have two - master
706 * However, there are a few controllers which don't fit into this
707 * abstraction too well - SATA controllers which emulate TF
708 * interface with both master and slave devices but also have
709 * separate SCR register sets for each device. These controllers
710 * need separate links for physical link handling
711 * (e.g. onlineness, link speed) but should be treated like a
712 * traditional M/S controller for everything else (e.g. command
715 * slave_link is libata's way of handling this class of
716 * controllers without impacting core layer too much. For
717 * anything other than physical link handling, the default host
718 * link is used for both master and slave. For physical link
719 * handling, separate @ap->slave_link is used. All dirty details
720 * are implemented inside libata core layer. From LLD's POV, the
721 * only difference is that prereset, hardreset and postreset are
722 * called once more for the slave link, so the reset sequence
723 * looks like the following.
725 * prereset(M) -> prereset(S) -> hardreset(M) -> hardreset(S) ->
726 * softreset(M) -> postreset(M) -> postreset(S)
728 * Note that softreset is called only for the master. Softreset
729 * resets both M/S by definition, so SRST on master should handle
730 * both (the standard method will work just fine).
733 * Should be called before host is registered.
736 * 0 on success, -errno on failure.
738 int ata_slave_link_init(struct ata_port *ap)
740 struct ata_link *link;
742 WARN_ON(ap->slave_link);
743 WARN_ON(ap->flags & ATA_FLAG_PMP);
745 link = kzalloc(sizeof(*link), GFP_KERNEL);
749 ata_link_init(ap, link, 1);
750 ap->slave_link = link;
753 EXPORT_SYMBOL_GPL(ata_slave_link_init);
756 * sata_lpm_ignore_phy_events - test if PHY event should be ignored
757 * @link: Link receiving the event
759 * Test whether the received PHY event has to be ignored or not.
765 * True if the event has to be ignored.
767 bool sata_lpm_ignore_phy_events(struct ata_link *link)
769 unsigned long lpm_timeout = link->last_lpm_change +
770 msecs_to_jiffies(ATA_TMOUT_SPURIOUS_PHY);
772 /* if LPM is enabled, PHYRDY doesn't mean anything */
773 if (link->lpm_policy > ATA_LPM_MAX_POWER)
776 /* ignore the first PHY event after the LPM policy changed
777 * as it is might be spurious
779 if ((link->flags & ATA_LFLAG_CHANGED) &&
780 time_before(jiffies, lpm_timeout))
785 EXPORT_SYMBOL_GPL(sata_lpm_ignore_phy_events);
787 static const char *ata_lpm_policy_names[] = {
788 [ATA_LPM_UNKNOWN] = "max_performance",
789 [ATA_LPM_MAX_POWER] = "max_performance",
790 [ATA_LPM_MED_POWER] = "medium_power",
791 [ATA_LPM_MED_POWER_WITH_DIPM] = "med_power_with_dipm",
792 [ATA_LPM_MIN_POWER_WITH_PARTIAL] = "min_power_with_partial",
793 [ATA_LPM_MIN_POWER] = "min_power",
796 static ssize_t ata_scsi_lpm_store(struct device *device,
797 struct device_attribute *attr,
798 const char *buf, size_t count)
800 struct Scsi_Host *shost = class_to_shost(device);
801 struct ata_port *ap = ata_shost_to_port(shost);
802 struct ata_link *link;
803 struct ata_device *dev;
804 enum ata_lpm_policy policy;
807 /* UNKNOWN is internal state, iterate from MAX_POWER */
808 for (policy = ATA_LPM_MAX_POWER;
809 policy < ARRAY_SIZE(ata_lpm_policy_names); policy++) {
810 const char *name = ata_lpm_policy_names[policy];
812 if (strncmp(name, buf, strlen(name)) == 0)
815 if (policy == ARRAY_SIZE(ata_lpm_policy_names))
818 spin_lock_irqsave(ap->lock, flags);
820 ata_for_each_link(link, ap, EDGE) {
821 ata_for_each_dev(dev, &ap->link, ENABLED) {
822 if (dev->horkage & ATA_HORKAGE_NOLPM) {
829 ap->target_lpm_policy = policy;
830 ata_port_schedule_eh(ap);
832 spin_unlock_irqrestore(ap->lock, flags);
836 static ssize_t ata_scsi_lpm_show(struct device *dev,
837 struct device_attribute *attr, char *buf)
839 struct Scsi_Host *shost = class_to_shost(dev);
840 struct ata_port *ap = ata_shost_to_port(shost);
842 if (ap->target_lpm_policy >= ARRAY_SIZE(ata_lpm_policy_names))
845 return sysfs_emit(buf, "%s\n",
846 ata_lpm_policy_names[ap->target_lpm_policy]);
848 DEVICE_ATTR(link_power_management_policy, S_IRUGO | S_IWUSR,
849 ata_scsi_lpm_show, ata_scsi_lpm_store);
850 EXPORT_SYMBOL_GPL(dev_attr_link_power_management_policy);
852 static ssize_t ata_ncq_prio_supported_show(struct device *device,
853 struct device_attribute *attr,
856 struct scsi_device *sdev = to_scsi_device(device);
857 struct ata_port *ap = ata_shost_to_port(sdev->host);
858 struct ata_device *dev;
859 bool ncq_prio_supported;
862 spin_lock_irq(ap->lock);
863 dev = ata_scsi_find_dev(ap, sdev);
867 ncq_prio_supported = dev->flags & ATA_DFLAG_NCQ_PRIO;
868 spin_unlock_irq(ap->lock);
870 return rc ? rc : sysfs_emit(buf, "%u\n", ncq_prio_supported);
873 DEVICE_ATTR(ncq_prio_supported, S_IRUGO, ata_ncq_prio_supported_show, NULL);
874 EXPORT_SYMBOL_GPL(dev_attr_ncq_prio_supported);
876 static ssize_t ata_ncq_prio_enable_show(struct device *device,
877 struct device_attribute *attr,
880 struct scsi_device *sdev = to_scsi_device(device);
881 struct ata_port *ap = ata_shost_to_port(sdev->host);
882 struct ata_device *dev;
883 bool ncq_prio_enable;
886 spin_lock_irq(ap->lock);
887 dev = ata_scsi_find_dev(ap, sdev);
891 ncq_prio_enable = dev->flags & ATA_DFLAG_NCQ_PRIO_ENABLED;
892 spin_unlock_irq(ap->lock);
894 return rc ? rc : sysfs_emit(buf, "%u\n", ncq_prio_enable);
897 static ssize_t ata_ncq_prio_enable_store(struct device *device,
898 struct device_attribute *attr,
899 const char *buf, size_t len)
901 struct scsi_device *sdev = to_scsi_device(device);
903 struct ata_device *dev;
907 rc = kstrtol(buf, 10, &input);
910 if ((input < 0) || (input > 1))
913 ap = ata_shost_to_port(sdev->host);
914 dev = ata_scsi_find_dev(ap, sdev);
918 spin_lock_irq(ap->lock);
920 if (!(dev->flags & ATA_DFLAG_NCQ_PRIO)) {
926 if (dev->flags & ATA_DFLAG_CDL_ENABLED) {
928 "CDL must be disabled to enable NCQ priority\n");
932 dev->flags |= ATA_DFLAG_NCQ_PRIO_ENABLED;
934 dev->flags &= ~ATA_DFLAG_NCQ_PRIO_ENABLED;
938 spin_unlock_irq(ap->lock);
940 return rc ? rc : len;
943 DEVICE_ATTR(ncq_prio_enable, S_IRUGO | S_IWUSR,
944 ata_ncq_prio_enable_show, ata_ncq_prio_enable_store);
945 EXPORT_SYMBOL_GPL(dev_attr_ncq_prio_enable);
947 static struct attribute *ata_ncq_sdev_attrs[] = {
948 &dev_attr_unload_heads.attr,
949 &dev_attr_ncq_prio_enable.attr,
950 &dev_attr_ncq_prio_supported.attr,
954 static const struct attribute_group ata_ncq_sdev_attr_group = {
955 .attrs = ata_ncq_sdev_attrs
958 const struct attribute_group *ata_ncq_sdev_groups[] = {
959 &ata_ncq_sdev_attr_group,
962 EXPORT_SYMBOL_GPL(ata_ncq_sdev_groups);
965 ata_scsi_em_message_store(struct device *dev, struct device_attribute *attr,
966 const char *buf, size_t count)
968 struct Scsi_Host *shost = class_to_shost(dev);
969 struct ata_port *ap = ata_shost_to_port(shost);
970 if (ap->ops->em_store && (ap->flags & ATA_FLAG_EM))
971 return ap->ops->em_store(ap, buf, count);
976 ata_scsi_em_message_show(struct device *dev, struct device_attribute *attr,
979 struct Scsi_Host *shost = class_to_shost(dev);
980 struct ata_port *ap = ata_shost_to_port(shost);
982 if (ap->ops->em_show && (ap->flags & ATA_FLAG_EM))
983 return ap->ops->em_show(ap, buf);
986 DEVICE_ATTR(em_message, S_IRUGO | S_IWUSR,
987 ata_scsi_em_message_show, ata_scsi_em_message_store);
988 EXPORT_SYMBOL_GPL(dev_attr_em_message);
991 ata_scsi_em_message_type_show(struct device *dev, struct device_attribute *attr,
994 struct Scsi_Host *shost = class_to_shost(dev);
995 struct ata_port *ap = ata_shost_to_port(shost);
997 return sysfs_emit(buf, "%d\n", ap->em_message_type);
999 DEVICE_ATTR(em_message_type, S_IRUGO,
1000 ata_scsi_em_message_type_show, NULL);
1001 EXPORT_SYMBOL_GPL(dev_attr_em_message_type);
1004 ata_scsi_activity_show(struct device *dev, struct device_attribute *attr,
1007 struct scsi_device *sdev = to_scsi_device(dev);
1008 struct ata_port *ap = ata_shost_to_port(sdev->host);
1009 struct ata_device *atadev = ata_scsi_find_dev(ap, sdev);
1011 if (atadev && ap->ops->sw_activity_show &&
1012 (ap->flags & ATA_FLAG_SW_ACTIVITY))
1013 return ap->ops->sw_activity_show(atadev, buf);
1018 ata_scsi_activity_store(struct device *dev, struct device_attribute *attr,
1019 const char *buf, size_t count)
1021 struct scsi_device *sdev = to_scsi_device(dev);
1022 struct ata_port *ap = ata_shost_to_port(sdev->host);
1023 struct ata_device *atadev = ata_scsi_find_dev(ap, sdev);
1024 enum sw_activity val;
1027 if (atadev && ap->ops->sw_activity_store &&
1028 (ap->flags & ATA_FLAG_SW_ACTIVITY)) {
1029 val = simple_strtoul(buf, NULL, 0);
1031 case OFF: case BLINK_ON: case BLINK_OFF:
1032 rc = ap->ops->sw_activity_store(atadev, val);
1041 DEVICE_ATTR(sw_activity, S_IWUSR | S_IRUGO, ata_scsi_activity_show,
1042 ata_scsi_activity_store);
1043 EXPORT_SYMBOL_GPL(dev_attr_sw_activity);
1046 * ata_change_queue_depth - Set a device maximum queue depth
1047 * @ap: ATA port of the target device
1048 * @sdev: SCSI device to configure queue depth for
1049 * @queue_depth: new queue depth
1051 * Helper to set a device maximum queue depth, usable with both libsas
1055 int ata_change_queue_depth(struct ata_port *ap, struct scsi_device *sdev,
1058 struct ata_device *dev;
1059 unsigned long flags;
1060 int max_queue_depth;
1062 spin_lock_irqsave(ap->lock, flags);
1064 dev = ata_scsi_find_dev(ap, sdev);
1065 if (!dev || queue_depth < 1 || queue_depth == sdev->queue_depth) {
1066 spin_unlock_irqrestore(ap->lock, flags);
1067 return sdev->queue_depth;
1071 * Make sure that the queue depth requested does not exceed the device
1074 max_queue_depth = min(ATA_MAX_QUEUE, sdev->host->can_queue);
1075 max_queue_depth = min(max_queue_depth, ata_id_queue_depth(dev->id));
1076 if (queue_depth > max_queue_depth) {
1077 spin_unlock_irqrestore(ap->lock, flags);
1082 * If NCQ is not supported by the device or if the target queue depth
1083 * is 1 (to disable drive side command queueing), turn off NCQ.
1085 if (queue_depth == 1 || !ata_ncq_supported(dev)) {
1086 dev->flags |= ATA_DFLAG_NCQ_OFF;
1089 dev->flags &= ~ATA_DFLAG_NCQ_OFF;
1092 spin_unlock_irqrestore(ap->lock, flags);
1094 if (queue_depth == sdev->queue_depth)
1095 return sdev->queue_depth;
1097 return scsi_change_queue_depth(sdev, queue_depth);
1099 EXPORT_SYMBOL_GPL(ata_change_queue_depth);
1102 * ata_scsi_change_queue_depth - SCSI callback for queue depth config
1103 * @sdev: SCSI device to configure queue depth for
1104 * @queue_depth: new queue depth
1106 * This is libata standard hostt->change_queue_depth callback.
1107 * SCSI will call into this callback when user tries to set queue
1111 * SCSI layer (we don't care)
1114 * Newly configured queue depth.
1116 int ata_scsi_change_queue_depth(struct scsi_device *sdev, int queue_depth)
1118 struct ata_port *ap = ata_shost_to_port(sdev->host);
1120 return ata_change_queue_depth(ap, sdev, queue_depth);
1122 EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth);
1125 * ata_sas_port_alloc - Allocate port for a SAS attached SATA device
1126 * @host: ATA host container for all SAS ports
1127 * @port_info: Information from low-level host driver
1128 * @shost: SCSI host that the scsi device is attached to
1131 * PCI/etc. bus probe sem.
1134 * ata_port pointer on success / NULL on failure.
1137 struct ata_port *ata_sas_port_alloc(struct ata_host *host,
1138 struct ata_port_info *port_info,
1139 struct Scsi_Host *shost)
1141 struct ata_port *ap;
1143 ap = ata_port_alloc(host);
1148 ap->lock = &host->lock;
1149 ap->pio_mask = port_info->pio_mask;
1150 ap->mwdma_mask = port_info->mwdma_mask;
1151 ap->udma_mask = port_info->udma_mask;
1152 ap->flags |= port_info->flags;
1153 ap->ops = port_info->port_ops;
1154 ap->cbl = ATA_CBL_SATA;
1155 ap->print_id = atomic_inc_return(&ata_print_id);
1159 EXPORT_SYMBOL_GPL(ata_sas_port_alloc);
1161 int ata_sas_tport_add(struct device *parent, struct ata_port *ap)
1163 return ata_tport_add(parent, ap);
1165 EXPORT_SYMBOL_GPL(ata_sas_tport_add);
1167 void ata_sas_tport_delete(struct ata_port *ap)
1169 ata_tport_delete(ap);
1171 EXPORT_SYMBOL_GPL(ata_sas_tport_delete);
1174 * ata_sas_slave_configure - Default slave_config routine for libata devices
1175 * @sdev: SCSI device to configure
1176 * @ap: ATA port to which SCSI device is attached
1182 int ata_sas_slave_configure(struct scsi_device *sdev, struct ata_port *ap)
1184 ata_scsi_sdev_config(sdev);
1185 ata_scsi_dev_config(sdev, ap->link.device);
1188 EXPORT_SYMBOL_GPL(ata_sas_slave_configure);
1191 * ata_sas_queuecmd - Issue SCSI cdb to libata-managed device
1192 * @cmd: SCSI command to be sent
1193 * @ap: ATA port to which the command is being sent
1196 * Return value from __ata_scsi_queuecmd() if @cmd can be queued,
1200 int ata_sas_queuecmd(struct scsi_cmnd *cmd, struct ata_port *ap)
1204 if (likely(ata_dev_enabled(ap->link.device)))
1205 rc = __ata_scsi_queuecmd(cmd, ap->link.device);
1207 cmd->result = (DID_BAD_TARGET << 16);
1212 EXPORT_SYMBOL_GPL(ata_sas_queuecmd);
1215 * sata_async_notification - SATA async notification handler
1216 * @ap: ATA port where async notification is received
1218 * Handler to be called when async notification via SDB FIS is
1219 * received. This function schedules EH if necessary.
1222 * spin_lock_irqsave(host lock)
1225 * 1 if EH is scheduled, 0 otherwise.
1227 int sata_async_notification(struct ata_port *ap)
1232 if (!(ap->flags & ATA_FLAG_AN))
1235 rc = sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf);
1237 sata_scr_write(&ap->link, SCR_NOTIFICATION, sntf);
1239 if (!sata_pmp_attached(ap) || rc) {
1240 /* PMP is not attached or SNTF is not available */
1241 if (!sata_pmp_attached(ap)) {
1242 /* PMP is not attached. Check whether ATAPI
1243 * AN is configured. If so, notify media
1246 struct ata_device *dev = ap->link.device;
1248 if ((dev->class == ATA_DEV_ATAPI) &&
1249 (dev->flags & ATA_DFLAG_AN))
1250 ata_scsi_media_change_notify(dev);
1253 /* PMP is attached but SNTF is not available.
1254 * ATAPI async media change notification is
1255 * not used. The PMP must be reporting PHY
1256 * status change, schedule EH.
1258 ata_port_schedule_eh(ap);
1262 /* PMP is attached and SNTF is available */
1263 struct ata_link *link;
1265 /* check and notify ATAPI AN */
1266 ata_for_each_link(link, ap, EDGE) {
1267 if (!(sntf & (1 << link->pmp)))
1270 if ((link->device->class == ATA_DEV_ATAPI) &&
1271 (link->device->flags & ATA_DFLAG_AN))
1272 ata_scsi_media_change_notify(link->device);
1275 /* If PMP is reporting that PHY status of some
1276 * downstream ports has changed, schedule EH.
1278 if (sntf & (1 << SATA_PMP_CTRL_PORT)) {
1279 ata_port_schedule_eh(ap);
1286 EXPORT_SYMBOL_GPL(sata_async_notification);
1289 * ata_eh_read_log_10h - Read log page 10h for NCQ error details
1290 * @dev: Device to read log page 10h from
1291 * @tag: Resulting tag of the failed command
1292 * @tf: Resulting taskfile registers of the failed command
1294 * Read log page 10h to obtain NCQ error details and clear error
1298 * Kernel thread context (may sleep).
1301 * 0 on success, -errno otherwise.
1303 static int ata_eh_read_log_10h(struct ata_device *dev,
1304 int *tag, struct ata_taskfile *tf)
1306 u8 *buf = dev->link->ap->sector_buf;
1307 unsigned int err_mask;
1311 err_mask = ata_read_log_page(dev, ATA_LOG_SATA_NCQ, 0, buf, 1);
1316 for (i = 0; i < ATA_SECT_SIZE; i++)
1319 ata_dev_warn(dev, "invalid checksum 0x%x on log page 10h\n",
1325 *tag = buf[0] & 0x1f;
1327 tf->status = buf[2];
1332 tf->device = buf[7];
1333 tf->hob_lbal = buf[8];
1334 tf->hob_lbam = buf[9];
1335 tf->hob_lbah = buf[10];
1336 tf->nsect = buf[12];
1337 tf->hob_nsect = buf[13];
1338 if (ata_id_has_ncq_autosense(dev->id) && (tf->status & ATA_SENSE))
1339 tf->auxiliary = buf[14] << 16 | buf[15] << 8 | buf[16];
1345 * ata_eh_read_sense_success_ncq_log - Read the sense data for successful
1347 * @link: ATA link to get sense data for
1349 * Read the sense data for successful NCQ commands log page to obtain
1350 * sense data for all NCQ commands that completed successfully with
1351 * the sense data available bit set.
1354 * Kernel thread context (may sleep).
1357 * 0 on success, -errno otherwise.
1359 int ata_eh_read_sense_success_ncq_log(struct ata_link *link)
1361 struct ata_device *dev = link->device;
1362 struct ata_port *ap = dev->link->ap;
1363 u8 *buf = ap->ncq_sense_buf;
1364 struct ata_queued_cmd *qc;
1365 unsigned int err_mask, tag;
1366 u8 *sense, sk = 0, asc = 0, ascq = 0;
1367 u64 sense_valid, val;
1370 err_mask = ata_read_log_page(dev, ATA_LOG_SENSE_NCQ, 0, buf, 2);
1373 "Failed to read Sense Data for Successful NCQ Commands log\n");
1377 /* Check the log header */
1378 val = get_unaligned_le64(&buf[0]);
1379 if ((val & 0xffff) != 1 || ((val >> 16) & 0xff) != 0x0f) {
1381 "Invalid Sense Data for Successful NCQ Commands log\n");
1385 sense_valid = (u64)buf[8] | ((u64)buf[9] << 8) |
1386 ((u64)buf[10] << 16) | ((u64)buf[11] << 24);
1388 ata_qc_for_each_raw(ap, qc, tag) {
1389 if (!(qc->flags & ATA_QCFLAG_EH) ||
1390 !(qc->flags & ATA_QCFLAG_EH_SUCCESS_CMD) ||
1392 ata_dev_phys_link(qc->dev) != link)
1396 * If the command does not have any sense data, clear ATA_SENSE.
1397 * Keep ATA_QCFLAG_EH_SUCCESS_CMD so that command is finished.
1399 if (!(sense_valid & (1ULL << tag))) {
1400 qc->result_tf.status &= ~ATA_SENSE;
1404 sense = &buf[32 + 24 * tag];
1409 if (!ata_scsi_sense_is_valid(sk, asc, ascq)) {
1414 /* Set sense without also setting scsicmd->result */
1415 scsi_build_sense_buffer(dev->flags & ATA_DFLAG_D_SENSE,
1416 qc->scsicmd->sense_buffer, sk,
1418 qc->flags |= ATA_QCFLAG_SENSE_VALID;
1421 * If we have sense data, call scsi_check_sense() in order to
1422 * set the correct SCSI ML byte (if any). No point in checking
1423 * the return value, since the command has already completed
1426 scsi_check_sense(qc->scsicmd);
1431 EXPORT_SYMBOL_GPL(ata_eh_read_sense_success_ncq_log);
1434 * ata_eh_analyze_ncq_error - analyze NCQ error
1435 * @link: ATA link to analyze NCQ error for
1437 * Read log page 10h, determine the offending qc and acquire
1438 * error status TF. For NCQ device errors, all LLDDs have to do
1439 * is setting AC_ERR_DEV in ehi->err_mask. This function takes
1443 * Kernel thread context (may sleep).
1445 void ata_eh_analyze_ncq_error(struct ata_link *link)
1447 struct ata_port *ap = link->ap;
1448 struct ata_eh_context *ehc = &link->eh_context;
1449 struct ata_device *dev = link->device;
1450 struct ata_queued_cmd *qc;
1451 struct ata_taskfile tf;
1454 /* if frozen, we can't do much */
1455 if (ata_port_is_frozen(ap))
1458 /* is it NCQ device error? */
1459 if (!link->sactive || !(ehc->i.err_mask & AC_ERR_DEV))
1462 /* has LLDD analyzed already? */
1463 ata_qc_for_each_raw(ap, qc, tag) {
1464 if (!(qc->flags & ATA_QCFLAG_EH))
1471 /* okay, this error is ours */
1472 memset(&tf, 0, sizeof(tf));
1473 rc = ata_eh_read_log_10h(dev, &tag, &tf);
1475 ata_link_err(link, "failed to read log page 10h (errno=%d)\n",
1480 if (!(link->sactive & (1 << tag))) {
1481 ata_link_err(link, "log page 10h reported inactive tag %d\n",
1486 /* we've got the perpetrator, condemn it */
1487 qc = __ata_qc_from_tag(ap, tag);
1488 memcpy(&qc->result_tf, &tf, sizeof(tf));
1489 qc->result_tf.flags = ATA_TFLAG_ISADDR | ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
1490 qc->err_mask |= AC_ERR_DEV | AC_ERR_NCQ;
1493 * If the device supports NCQ autosense, ata_eh_read_log_10h() will have
1494 * stored the sense data in qc->result_tf.auxiliary.
1496 if (qc->result_tf.auxiliary) {
1497 char sense_key, asc, ascq;
1499 sense_key = (qc->result_tf.auxiliary >> 16) & 0xff;
1500 asc = (qc->result_tf.auxiliary >> 8) & 0xff;
1501 ascq = qc->result_tf.auxiliary & 0xff;
1502 if (ata_scsi_sense_is_valid(sense_key, asc, ascq)) {
1503 ata_scsi_set_sense(dev, qc->scsicmd, sense_key, asc,
1505 ata_scsi_set_sense_information(dev, qc->scsicmd,
1507 qc->flags |= ATA_QCFLAG_SENSE_VALID;
1511 ata_qc_for_each_raw(ap, qc, tag) {
1512 if (!(qc->flags & ATA_QCFLAG_EH) ||
1513 qc->flags & ATA_QCFLAG_EH_SUCCESS_CMD ||
1514 ata_dev_phys_link(qc->dev) != link)
1517 /* Skip the single QC which caused the NCQ error. */
1522 * For SATA, the STATUS and ERROR fields are shared for all NCQ
1523 * commands that were completed with the same SDB FIS.
1524 * Therefore, we have to clear the ATA_ERR bit for all QCs
1525 * except the one that caused the NCQ error.
1527 qc->result_tf.status &= ~ATA_ERR;
1528 qc->result_tf.error = 0;
1531 * If we get a NCQ error, that means that a single command was
1532 * aborted. All other failed commands for our link should be
1533 * retried and has no business of going though further scrutiny
1534 * by ata_eh_link_autopsy().
1536 qc->flags |= ATA_QCFLAG_RETRY;
1539 ehc->i.err_mask &= ~AC_ERR_DEV;
1541 EXPORT_SYMBOL_GPL(ata_eh_analyze_ncq_error);