1 // SPDX-License-Identifier: GPL-2.0-only
3 * libata-pmp.c - libata port multiplier support
5 * Copyright (c) 2007 SUSE Linux Products GmbH
6 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
9 #include <linux/kernel.h>
10 #include <linux/export.h>
11 #include <linux/libata.h>
12 #include <linux/slab.h>
14 #include "libata-transport.h"
16 const struct ata_port_operations sata_pmp_port_ops = {
17 .inherits = &sata_port_ops,
18 .pmp_prereset = ata_std_prereset,
19 .pmp_hardreset = sata_std_hardreset,
20 .pmp_postreset = ata_std_postreset,
21 .error_handler = sata_pmp_error_handler,
25 * sata_pmp_read - read PMP register
26 * @link: link to read PMP register for
27 * @reg: register to read
28 * @r_val: resulting value
33 * Kernel thread context (may sleep).
36 * 0 on success, AC_ERR_* mask on failure.
38 static unsigned int sata_pmp_read(struct ata_link *link, int reg, u32 *r_val)
40 struct ata_port *ap = link->ap;
41 struct ata_device *pmp_dev = ap->link.device;
42 struct ata_taskfile tf;
43 unsigned int err_mask;
45 ata_tf_init(pmp_dev, &tf);
46 tf.command = ATA_CMD_PMP_READ;
47 tf.protocol = ATA_PROT_NODATA;
48 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48;
50 tf.device = link->pmp;
52 err_mask = ata_exec_internal(pmp_dev, &tf, NULL, DMA_NONE, NULL, 0,
57 *r_val = tf.nsect | tf.lbal << 8 | tf.lbam << 16 | tf.lbah << 24;
62 * sata_pmp_write - write PMP register
63 * @link: link to write PMP register for
64 * @reg: register to write
65 * @val: value to write
70 * Kernel thread context (may sleep).
73 * 0 on success, AC_ERR_* mask on failure.
75 static unsigned int sata_pmp_write(struct ata_link *link, int reg, u32 val)
77 struct ata_port *ap = link->ap;
78 struct ata_device *pmp_dev = ap->link.device;
79 struct ata_taskfile tf;
81 ata_tf_init(pmp_dev, &tf);
82 tf.command = ATA_CMD_PMP_WRITE;
83 tf.protocol = ATA_PROT_NODATA;
84 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48;
86 tf.device = link->pmp;
87 tf.nsect = val & 0xff;
88 tf.lbal = (val >> 8) & 0xff;
89 tf.lbam = (val >> 16) & 0xff;
90 tf.lbah = (val >> 24) & 0xff;
92 return ata_exec_internal(pmp_dev, &tf, NULL, DMA_NONE, NULL, 0,
97 * sata_pmp_qc_defer_cmd_switch - qc_defer for command switching PMP
98 * @qc: ATA command in question
100 * A host which has command switching PMP support cannot issue
101 * commands to multiple links simultaneously.
104 * spin_lock_irqsave(host lock)
107 * ATA_DEFER_* if deferring is needed, 0 otherwise.
109 int sata_pmp_qc_defer_cmd_switch(struct ata_queued_cmd *qc)
111 struct ata_link *link = qc->dev->link;
112 struct ata_port *ap = link->ap;
114 if (ap->excl_link == NULL || ap->excl_link == link) {
115 if (ap->nr_active_links == 0 || ata_link_active(link)) {
116 qc->flags |= ATA_QCFLAG_CLEAR_EXCL;
117 return ata_std_qc_defer(qc);
120 ap->excl_link = link;
123 return ATA_DEFER_PORT;
127 * sata_pmp_scr_read - read PSCR
128 * @link: ATA link to read PSCR for
130 * @r_val: resulting value
132 * Read PSCR @reg into @r_val for @link, to be called from
136 * Kernel thread context (may sleep).
139 * 0 on success, -errno on failure.
141 int sata_pmp_scr_read(struct ata_link *link, int reg, u32 *r_val)
143 unsigned int err_mask;
145 if (reg > SATA_PMP_PSCR_CONTROL)
148 err_mask = sata_pmp_read(link, reg, r_val);
150 ata_link_warn(link, "failed to read SCR %d (Emask=0x%x)\n",
158 * sata_pmp_scr_write - write PSCR
159 * @link: ATA link to write PSCR for
160 * @reg: PSCR to write
161 * @val: value to be written
163 * Write @val to PSCR @reg for @link, to be called from
164 * ata_scr_write() and ata_scr_write_flush().
167 * Kernel thread context (may sleep).
170 * 0 on success, -errno on failure.
172 int sata_pmp_scr_write(struct ata_link *link, int reg, u32 val)
174 unsigned int err_mask;
176 if (reg > SATA_PMP_PSCR_CONTROL)
179 err_mask = sata_pmp_write(link, reg, val);
181 ata_link_warn(link, "failed to write SCR %d (Emask=0x%x)\n",
189 * sata_pmp_set_lpm - configure LPM for a PMP link
190 * @link: PMP link to configure LPM for
191 * @policy: target LPM policy
194 * Configure LPM for @link. This function will contain any PMP
195 * specific workarounds if necessary.
201 * 0 on success, -errno on failure.
203 int sata_pmp_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
206 return sata_link_scr_lpm(link, policy, true);
210 * sata_pmp_read_gscr - read GSCR block of SATA PMP
212 * @gscr: buffer to read GSCR block into
214 * Read selected PMP GSCRs from the PMP at @dev. This will serve
215 * as configuration and identification info for the PMP.
218 * Kernel thread context (may sleep).
221 * 0 on success, -errno on failure.
223 static int sata_pmp_read_gscr(struct ata_device *dev, u32 *gscr)
225 static const int gscr_to_read[] = { 0, 1, 2, 32, 33, 64, 96 };
228 for (i = 0; i < ARRAY_SIZE(gscr_to_read); i++) {
229 int reg = gscr_to_read[i];
230 unsigned int err_mask;
232 err_mask = sata_pmp_read(dev->link, reg, &gscr[reg]);
234 ata_dev_err(dev, "failed to read PMP GSCR[%d] (Emask=0x%x)\n",
243 static const char *sata_pmp_spec_rev_str(const u32 *gscr)
245 u32 rev = gscr[SATA_PMP_GSCR_REV];
256 #define PMP_GSCR_SII_POL 129
258 static int sata_pmp_configure(struct ata_device *dev, int print_info)
260 struct ata_port *ap = dev->link->ap;
261 u32 *gscr = dev->gscr;
262 u16 vendor = sata_pmp_gscr_vendor(gscr);
263 u16 devid = sata_pmp_gscr_devid(gscr);
264 unsigned int err_mask = 0;
268 nr_ports = sata_pmp_gscr_ports(gscr);
270 if (nr_ports <= 0 || nr_ports > SATA_PMP_MAX_PORTS) {
272 reason = "invalid nr_ports";
276 if ((ap->flags & ATA_FLAG_AN) &&
277 (gscr[SATA_PMP_GSCR_FEAT] & SATA_PMP_FEAT_NOTIFY))
278 dev->flags |= ATA_DFLAG_AN;
280 /* monitor SERR_PHYRDY_CHG on fan-out ports */
281 err_mask = sata_pmp_write(dev->link, SATA_PMP_GSCR_ERROR_EN,
285 reason = "failed to write GSCR_ERROR_EN";
289 /* Disable sending Early R_OK.
290 * With "cached read" HDD testing and multiple ports busy on a SATA
291 * host controller, 3x26 PMP will very rarely drop a deferred
292 * R_OK that was intended for the host. Symptom will be all
293 * 5 drives under test will timeout, get reset, and recover.
295 if (vendor == 0x1095 && (devid == 0x3726 || devid == 0x3826)) {
298 err_mask = sata_pmp_read(&ap->link, PMP_GSCR_SII_POL, ®);
301 reason = "failed to read Sil3x26 Private Register";
305 err_mask = sata_pmp_write(&ap->link, PMP_GSCR_SII_POL, reg);
308 reason = "failed to write Sil3x26 Private Register";
314 ata_dev_info(dev, "Port Multiplier %s, "
315 "0x%04x:0x%04x r%d, %d ports, feat 0x%x/0x%x\n",
316 sata_pmp_spec_rev_str(gscr), vendor, devid,
317 sata_pmp_gscr_rev(gscr),
318 nr_ports, gscr[SATA_PMP_GSCR_FEAT_EN],
319 gscr[SATA_PMP_GSCR_FEAT]);
321 if (!(dev->flags & ATA_DFLAG_AN))
323 "Asynchronous notification not supported, "
324 "hotplug won't work on fan-out ports. Use warm-plug instead.\n");
331 "failed to configure Port Multiplier (%s, Emask=0x%x)\n",
336 static int sata_pmp_init_links (struct ata_port *ap, int nr_ports)
338 struct ata_link *pmp_link = ap->pmp_link;
342 pmp_link = kcalloc(SATA_PMP_MAX_PORTS, sizeof(pmp_link[0]),
347 for (i = 0; i < SATA_PMP_MAX_PORTS; i++)
348 ata_link_init(ap, &pmp_link[i], i);
350 ap->pmp_link = pmp_link;
352 for (i = 0; i < SATA_PMP_MAX_PORTS; i++) {
353 err = ata_tlink_add(&pmp_link[i]);
360 for (i = 0; i < nr_ports; i++) {
361 struct ata_link *link = &pmp_link[i];
362 struct ata_eh_context *ehc = &link->eh_context;
365 ehc->i.probe_mask |= ATA_ALL_DEVICES;
366 ehc->i.action |= ATA_EH_RESET;
372 ata_tlink_delete(&pmp_link[i]);
378 static void sata_pmp_quirks(struct ata_port *ap)
380 u32 *gscr = ap->link.device->gscr;
381 u16 vendor = sata_pmp_gscr_vendor(gscr);
382 u16 devid = sata_pmp_gscr_devid(gscr);
383 struct ata_link *link;
385 if (vendor == 0x1095 && (devid == 0x3726 || devid == 0x3826)) {
387 ata_for_each_link(link, ap, EDGE) {
388 /* link reports offline after LPM */
389 link->flags |= ATA_LFLAG_NO_LPM;
392 * Class code report is unreliable and SRST times
393 * out under certain configurations.
396 link->flags |= ATA_LFLAG_NO_SRST |
397 ATA_LFLAG_ASSUME_ATA;
399 /* port 5 is for SEMB device and it doesn't like SRST */
401 link->flags |= ATA_LFLAG_NO_SRST |
402 ATA_LFLAG_ASSUME_SEMB;
404 } else if (vendor == 0x1095 && devid == 0x4723) {
408 * Link reports offline after LPM. Class code report is
409 * unreliable. SIMG PMPs never got SRST reliable and the
410 * config device at port 2 locks up on SRST.
412 ata_for_each_link(link, ap, EDGE)
413 link->flags |= ATA_LFLAG_NO_LPM |
415 ATA_LFLAG_ASSUME_ATA;
416 } else if (vendor == 0x1095 && devid == 0x4726) {
418 ata_for_each_link(link, ap, EDGE) {
419 /* link reports offline after LPM */
420 link->flags |= ATA_LFLAG_NO_LPM;
422 /* Class code report is unreliable and SRST
423 * times out under certain configurations.
424 * Config device can be at port 0 or 5 and
428 link->flags |= ATA_LFLAG_NO_SRST |
429 ATA_LFLAG_ASSUME_ATA;
431 /* Port 6 is for SEMB device which doesn't
435 link->flags |= ATA_LFLAG_NO_SRST |
436 ATA_LFLAG_ASSUME_SEMB;
438 } else if (vendor == 0x1095 && (devid == 0x5723 || devid == 0x5733 ||
439 devid == 0x5734 || devid == 0x5744)) {
440 /* sil5723/5744 quirks */
442 /* sil5723/5744 has either two or three downstream
443 * ports depending on operation mode. The last port
444 * is empty if any actual IO device is available or
445 * occupied by a pseudo configuration device
446 * otherwise. Don't try hard to recover it.
448 ap->pmp_link[ap->nr_pmp_links - 1].flags |= ATA_LFLAG_NO_RETRY;
449 } else if (vendor == 0x197b && (devid == 0x2352 || devid == 0x0325)) {
451 * 0x2352: found in Thermaltake BlackX Duet, jmicron JMB350?
452 * 0x0325: jmicron JMB394.
454 ata_for_each_link(link, ap, EDGE) {
455 /* SRST breaks detection and disks get misclassified
456 * LPM disabled to avoid potential problems
458 link->flags |= ATA_LFLAG_NO_LPM |
460 ATA_LFLAG_ASSUME_ATA;
462 } else if (vendor == 0x11ab && devid == 0x4140) {
463 /* Marvell 4140 quirks */
464 ata_for_each_link(link, ap, EDGE) {
465 /* port 4 is for SEMB device and it doesn't like SRST */
467 link->flags |= ATA_LFLAG_DISABLED;
473 * sata_pmp_attach - attach a SATA PMP device
474 * @dev: SATA PMP device to attach
476 * Configure and attach SATA PMP device @dev. This function is
477 * also responsible for allocating and initializing PMP links.
480 * Kernel thread context (may sleep).
483 * 0 on success, -errno on failure.
485 int sata_pmp_attach(struct ata_device *dev)
487 struct ata_link *link = dev->link;
488 struct ata_port *ap = link->ap;
490 struct ata_link *tlink;
493 /* is it hanging off the right place? */
494 if (!sata_pmp_supported(ap)) {
495 ata_dev_err(dev, "host does not support Port Multiplier\n");
499 if (!ata_is_host_link(link)) {
500 ata_dev_err(dev, "Port Multipliers cannot be nested\n");
505 ata_dev_err(dev, "Port Multiplier must be the first device\n");
509 WARN_ON(link->pmp != 0);
510 link->pmp = SATA_PMP_CTRL_PORT;
512 /* read GSCR block */
513 rc = sata_pmp_read_gscr(dev, dev->gscr);
518 rc = sata_pmp_configure(dev, 1);
522 rc = sata_pmp_init_links(ap, sata_pmp_gscr_ports(dev->gscr));
524 ata_dev_info(dev, "failed to initialize PMP links\n");
529 spin_lock_irqsave(ap->lock, flags);
530 WARN_ON(ap->nr_pmp_links);
531 ap->nr_pmp_links = sata_pmp_gscr_ports(dev->gscr);
532 spin_unlock_irqrestore(ap->lock, flags);
536 if (ap->ops->pmp_attach)
537 ap->ops->pmp_attach(ap);
539 ata_for_each_link(tlink, ap, EDGE)
540 sata_link_init_spd(tlink);
550 * sata_pmp_detach - detach a SATA PMP device
551 * @dev: SATA PMP device to detach
553 * Detach SATA PMP device @dev. This function is also
554 * responsible for deconfiguring PMP links.
557 * Kernel thread context (may sleep).
559 static void sata_pmp_detach(struct ata_device *dev)
561 struct ata_link *link = dev->link;
562 struct ata_port *ap = link->ap;
563 struct ata_link *tlink;
566 ata_dev_info(dev, "Port Multiplier detaching\n");
568 WARN_ON(!ata_is_host_link(link) || dev->devno ||
569 link->pmp != SATA_PMP_CTRL_PORT);
571 if (ap->ops->pmp_detach)
572 ap->ops->pmp_detach(ap);
574 ata_for_each_link(tlink, ap, EDGE)
575 ata_eh_detach_dev(tlink->device);
577 spin_lock_irqsave(ap->lock, flags);
578 ap->nr_pmp_links = 0;
580 spin_unlock_irqrestore(ap->lock, flags);
584 * sata_pmp_same_pmp - does new GSCR matches the configured PMP?
585 * @dev: PMP device to compare against
586 * @new_gscr: GSCR block of the new device
588 * Compare @new_gscr against @dev and determine whether @dev is
589 * the PMP described by @new_gscr.
595 * 1 if @dev matches @new_gscr, 0 otherwise.
597 static int sata_pmp_same_pmp(struct ata_device *dev, const u32 *new_gscr)
599 const u32 *old_gscr = dev->gscr;
600 u16 old_vendor, new_vendor, old_devid, new_devid;
601 int old_nr_ports, new_nr_ports;
603 old_vendor = sata_pmp_gscr_vendor(old_gscr);
604 new_vendor = sata_pmp_gscr_vendor(new_gscr);
605 old_devid = sata_pmp_gscr_devid(old_gscr);
606 new_devid = sata_pmp_gscr_devid(new_gscr);
607 old_nr_ports = sata_pmp_gscr_ports(old_gscr);
608 new_nr_ports = sata_pmp_gscr_ports(new_gscr);
610 if (old_vendor != new_vendor) {
612 "Port Multiplier vendor mismatch '0x%x' != '0x%x'\n",
613 old_vendor, new_vendor);
617 if (old_devid != new_devid) {
619 "Port Multiplier device ID mismatch '0x%x' != '0x%x'\n",
620 old_devid, new_devid);
624 if (old_nr_ports != new_nr_ports) {
626 "Port Multiplier nr_ports mismatch '0x%x' != '0x%x'\n",
627 old_nr_ports, new_nr_ports);
635 * sata_pmp_revalidate - revalidate SATA PMP
636 * @dev: PMP device to revalidate
637 * @new_class: new class code
639 * Re-read GSCR block and make sure @dev is still attached to the
640 * port and properly configured.
643 * Kernel thread context (may sleep).
646 * 0 on success, -errno otherwise.
648 static int sata_pmp_revalidate(struct ata_device *dev, unsigned int new_class)
650 struct ata_link *link = dev->link;
651 struct ata_port *ap = link->ap;
652 u32 *gscr = (void *)ap->sector_buf;
657 ata_eh_about_to_do(link, NULL, ATA_EH_REVALIDATE);
659 if (!ata_dev_enabled(dev)) {
665 if (ata_class_enabled(new_class) && new_class != ATA_DEV_PMP) {
671 rc = sata_pmp_read_gscr(dev, gscr);
675 /* is the pmp still there? */
676 if (!sata_pmp_same_pmp(dev, gscr)) {
681 memcpy(dev->gscr, gscr, sizeof(gscr[0]) * SATA_PMP_GSCR_DWORDS);
683 rc = sata_pmp_configure(dev, 0);
687 ata_eh_done(link, NULL, ATA_EH_REVALIDATE);
689 DPRINTK("EXIT, rc=0\n");
693 ata_dev_err(dev, "PMP revalidation failed (errno=%d)\n", rc);
694 DPRINTK("EXIT, rc=%d\n", rc);
699 * sata_pmp_revalidate_quick - revalidate SATA PMP quickly
700 * @dev: PMP device to revalidate
702 * Make sure the attached PMP is accessible.
705 * Kernel thread context (may sleep).
708 * 0 on success, -errno otherwise.
710 static int sata_pmp_revalidate_quick(struct ata_device *dev)
712 unsigned int err_mask;
715 err_mask = sata_pmp_read(dev->link, SATA_PMP_GSCR_PROD_ID, &prod_id);
718 "failed to read PMP product ID (Emask=0x%x)\n",
723 if (prod_id != dev->gscr[SATA_PMP_GSCR_PROD_ID]) {
724 ata_dev_err(dev, "PMP product ID mismatch\n");
725 /* something weird is going on, request full PMP recovery */
733 * sata_pmp_eh_recover_pmp - recover PMP
734 * @ap: ATA port PMP is attached to
735 * @prereset: prereset method (can be NULL)
736 * @softreset: softreset method
737 * @hardreset: hardreset method
738 * @postreset: postreset method (can be NULL)
740 * Recover PMP attached to @ap. Recovery procedure is somewhat
741 * similar to that of ata_eh_recover() except that reset should
742 * always be performed in hard->soft sequence and recovery
743 * failure results in PMP detachment.
746 * Kernel thread context (may sleep).
749 * 0 on success, -errno on failure.
751 static int sata_pmp_eh_recover_pmp(struct ata_port *ap,
752 ata_prereset_fn_t prereset, ata_reset_fn_t softreset,
753 ata_reset_fn_t hardreset, ata_postreset_fn_t postreset)
755 struct ata_link *link = &ap->link;
756 struct ata_eh_context *ehc = &link->eh_context;
757 struct ata_device *dev = link->device;
758 int tries = ATA_EH_PMP_TRIES;
759 int detach = 0, rc = 0;
760 int reval_failed = 0;
764 if (dev->flags & ATA_DFLAG_DETACH) {
771 ehc->classes[0] = ATA_DEV_UNKNOWN;
773 if (ehc->i.action & ATA_EH_RESET) {
774 struct ata_link *tlink;
777 rc = ata_eh_reset(link, 0, prereset, softreset, hardreset,
780 ata_link_err(link, "failed to reset PMP, giving up\n");
784 /* PMP is reset, SErrors cannot be trusted, scan all */
785 ata_for_each_link(tlink, ap, EDGE) {
786 struct ata_eh_context *ehc = &tlink->eh_context;
788 ehc->i.probe_mask |= ATA_ALL_DEVICES;
789 ehc->i.action |= ATA_EH_RESET;
793 /* If revalidation is requested, revalidate and reconfigure;
794 * otherwise, do quick revalidation.
796 if (ehc->i.action & ATA_EH_REVALIDATE)
797 rc = sata_pmp_revalidate(dev, ehc->classes[0]);
799 rc = sata_pmp_revalidate_quick(dev);
805 ehc->i.probe_mask |= ATA_ALL_DEVICES;
807 /* give it just two more chances */
808 tries = min(tries, 2);
812 /* consecutive revalidation failures? speed down */
814 sata_down_spd_limit(link, 0);
818 ehc->i.action |= ATA_EH_RESET;
822 "failed to recover PMP after %d tries, giving up\n",
828 /* okay, PMP resurrected */
831 DPRINTK("EXIT, rc=0\n");
835 sata_pmp_detach(dev);
837 ata_eh_detach_dev(dev);
839 ata_dev_disable(dev);
841 DPRINTK("EXIT, rc=%d\n", rc);
845 static int sata_pmp_eh_handle_disabled_links(struct ata_port *ap)
847 struct ata_link *link;
851 spin_lock_irqsave(ap->lock, flags);
853 ata_for_each_link(link, ap, EDGE) {
854 if (!(link->flags & ATA_LFLAG_DISABLED))
857 spin_unlock_irqrestore(ap->lock, flags);
859 /* Some PMPs require hardreset sequence to get
862 sata_link_hardreset(link, sata_deb_timing_normal,
863 ata_deadline(jiffies, ATA_TMOUT_INTERNAL_QUICK),
866 /* unconditionally clear SError.N */
867 rc = sata_scr_write(link, SCR_ERROR, SERR_PHYRDY_CHG);
870 "failed to clear SError.N (errno=%d)\n",
875 spin_lock_irqsave(ap->lock, flags);
878 spin_unlock_irqrestore(ap->lock, flags);
883 static int sata_pmp_handle_link_fail(struct ata_link *link, int *link_tries)
885 struct ata_port *ap = link->ap;
888 if (link_tries[link->pmp] && --link_tries[link->pmp])
891 /* disable this link */
892 if (!(link->flags & ATA_LFLAG_DISABLED)) {
894 "failed to recover link after %d tries, disabling\n",
895 ATA_EH_PMP_LINK_TRIES);
897 spin_lock_irqsave(ap->lock, flags);
898 link->flags |= ATA_LFLAG_DISABLED;
899 spin_unlock_irqrestore(ap->lock, flags);
902 ata_dev_disable(link->device);
903 link->eh_context.i.action = 0;
909 * sata_pmp_eh_recover - recover PMP-enabled port
910 * @ap: ATA port to recover
912 * Drive EH recovery operation for PMP enabled port @ap. This
913 * function recovers host and PMP ports with proper retrials and
914 * fallbacks. Actual recovery operations are performed using
915 * ata_eh_recover() and sata_pmp_eh_recover_pmp().
918 * Kernel thread context (may sleep).
921 * 0 on success, -errno on failure.
923 static int sata_pmp_eh_recover(struct ata_port *ap)
925 struct ata_port_operations *ops = ap->ops;
926 int pmp_tries, link_tries[SATA_PMP_MAX_PORTS];
927 struct ata_link *pmp_link = &ap->link;
928 struct ata_device *pmp_dev = pmp_link->device;
929 struct ata_eh_context *pmp_ehc = &pmp_link->eh_context;
930 u32 *gscr = pmp_dev->gscr;
931 struct ata_link *link;
932 struct ata_device *dev;
933 unsigned int err_mask;
934 u32 gscr_error, sntf;
937 pmp_tries = ATA_EH_PMP_TRIES;
938 ata_for_each_link(link, ap, EDGE)
939 link_tries[link->pmp] = ATA_EH_PMP_LINK_TRIES;
943 if (!sata_pmp_attached(ap)) {
944 rc = ata_eh_recover(ap, ops->prereset, ops->softreset,
945 ops->hardreset, ops->postreset, NULL);
947 ata_for_each_dev(dev, &ap->link, ALL)
948 ata_dev_disable(dev);
952 if (pmp_dev->class != ATA_DEV_PMP)
956 ata_for_each_link(link, ap, EDGE)
957 link_tries[link->pmp] = ATA_EH_PMP_LINK_TRIES;
963 rc = sata_pmp_eh_recover_pmp(ap, ops->prereset, ops->softreset,
964 ops->hardreset, ops->postreset);
968 /* PHY event notification can disturb reset and other recovery
969 * operations. Turn it off.
971 if (gscr[SATA_PMP_GSCR_FEAT_EN] & SATA_PMP_FEAT_NOTIFY) {
972 gscr[SATA_PMP_GSCR_FEAT_EN] &= ~SATA_PMP_FEAT_NOTIFY;
974 err_mask = sata_pmp_write(pmp_link, SATA_PMP_GSCR_FEAT_EN,
975 gscr[SATA_PMP_GSCR_FEAT_EN]);
977 ata_link_warn(pmp_link,
978 "failed to disable NOTIFY (err_mask=0x%x)\n",
984 /* handle disabled links */
985 rc = sata_pmp_eh_handle_disabled_links(ap);
990 rc = ata_eh_recover(ap, ops->pmp_prereset, ops->pmp_softreset,
991 ops->pmp_hardreset, ops->pmp_postreset, &link);
995 /* clear SNotification */
996 rc = sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf);
998 sata_scr_write(&ap->link, SCR_NOTIFICATION, sntf);
1001 * If LPM is active on any fan-out port, hotplug wouldn't
1002 * work. Return w/ PHY event notification disabled.
1004 ata_for_each_link(link, ap, EDGE)
1005 if (link->lpm_policy > ATA_LPM_MAX_POWER)
1009 * Connection status might have changed while resetting other
1010 * links, enable notification and check SATA_PMP_GSCR_ERROR
1014 /* enable notification */
1015 if (pmp_dev->flags & ATA_DFLAG_AN) {
1016 gscr[SATA_PMP_GSCR_FEAT_EN] |= SATA_PMP_FEAT_NOTIFY;
1018 err_mask = sata_pmp_write(pmp_link, SATA_PMP_GSCR_FEAT_EN,
1019 gscr[SATA_PMP_GSCR_FEAT_EN]);
1021 ata_dev_err(pmp_dev,
1022 "failed to write PMP_FEAT_EN (Emask=0x%x)\n",
1029 /* check GSCR_ERROR */
1030 err_mask = sata_pmp_read(pmp_link, SATA_PMP_GSCR_ERROR, &gscr_error);
1032 ata_dev_err(pmp_dev,
1033 "failed to read PMP_GSCR_ERROR (Emask=0x%x)\n",
1040 ata_for_each_link(link, ap, EDGE) {
1041 if (!(gscr_error & (1 << link->pmp)))
1044 if (sata_pmp_handle_link_fail(link, link_tries)) {
1045 ata_ehi_hotplugged(&link->eh_context.i);
1049 "PHY status changed but maxed out on retries, giving up\n");
1051 "Manually issue scan to resume this link\n");
1057 "PMP SError.N set for some ports, repeating recovery\n");
1064 if (sata_pmp_handle_link_fail(link, link_tries)) {
1065 pmp_ehc->i.action |= ATA_EH_RESET;
1071 /* Control always ends up here after detaching PMP. Shut up
1072 * and return if we're unloading.
1074 if (ap->pflags & ATA_PFLAG_UNLOADING)
1077 if (!sata_pmp_attached(ap))
1081 pmp_ehc->i.action |= ATA_EH_RESET;
1085 ata_port_err(ap, "failed to recover PMP after %d tries, giving up\n",
1087 sata_pmp_detach(pmp_dev);
1088 ata_dev_disable(pmp_dev);
1094 * sata_pmp_error_handler - do standard error handling for PMP-enabled host
1095 * @ap: host port to handle error for
1097 * Perform standard error handling sequence for PMP-enabled host
1101 * Kernel thread context (may sleep).
1103 void sata_pmp_error_handler(struct ata_port *ap)
1107 sata_pmp_eh_recover(ap);
1111 EXPORT_SYMBOL_GPL(sata_pmp_port_ops);
1112 EXPORT_SYMBOL_GPL(sata_pmp_qc_defer_cmd_switch);
1113 EXPORT_SYMBOL_GPL(sata_pmp_error_handler);