2 * libata-pmp.c - libata port multiplier support
4 * Copyright (c) 2007 SUSE Linux Products GmbH
5 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
7 * This file is released under the GPLv2.
10 #include <linux/kernel.h>
11 #include <linux/libata.h>
14 const struct ata_port_operations sata_pmp_port_ops
= {
15 .inherits
= &sata_port_ops
,
16 .pmp_prereset
= ata_std_prereset
,
17 .pmp_hardreset
= sata_std_hardreset
,
18 .pmp_postreset
= ata_std_postreset
,
19 .error_handler
= sata_pmp_error_handler
,
23 * sata_pmp_read - read PMP register
24 * @link: link to read PMP register for
25 * @reg: register to read
26 * @r_val: resulting value
31 * Kernel thread context (may sleep).
34 * 0 on success, AC_ERR_* mask on failure.
36 static unsigned int sata_pmp_read(struct ata_link
*link
, int reg
, u32
*r_val
)
38 struct ata_port
*ap
= link
->ap
;
39 struct ata_device
*pmp_dev
= ap
->link
.device
;
40 struct ata_taskfile tf
;
41 unsigned int err_mask
;
43 ata_tf_init(pmp_dev
, &tf
);
44 tf
.command
= ATA_CMD_PMP_READ
;
45 tf
.protocol
= ATA_PROT_NODATA
;
46 tf
.flags
|= ATA_TFLAG_ISADDR
| ATA_TFLAG_DEVICE
| ATA_TFLAG_LBA48
;
48 tf
.device
= link
->pmp
;
50 err_mask
= ata_exec_internal(pmp_dev
, &tf
, NULL
, DMA_NONE
, NULL
, 0,
55 *r_val
= tf
.nsect
| tf
.lbal
<< 8 | tf
.lbam
<< 16 | tf
.lbah
<< 24;
60 * sata_pmp_write - write PMP register
61 * @link: link to write PMP register for
62 * @reg: register to write
63 * @r_val: value to write
68 * Kernel thread context (may sleep).
71 * 0 on success, AC_ERR_* mask on failure.
73 static unsigned int sata_pmp_write(struct ata_link
*link
, int reg
, u32 val
)
75 struct ata_port
*ap
= link
->ap
;
76 struct ata_device
*pmp_dev
= ap
->link
.device
;
77 struct ata_taskfile tf
;
79 ata_tf_init(pmp_dev
, &tf
);
80 tf
.command
= ATA_CMD_PMP_WRITE
;
81 tf
.protocol
= ATA_PROT_NODATA
;
82 tf
.flags
|= ATA_TFLAG_ISADDR
| ATA_TFLAG_DEVICE
| ATA_TFLAG_LBA48
;
84 tf
.device
= link
->pmp
;
85 tf
.nsect
= val
& 0xff;
86 tf
.lbal
= (val
>> 8) & 0xff;
87 tf
.lbam
= (val
>> 16) & 0xff;
88 tf
.lbah
= (val
>> 24) & 0xff;
90 return ata_exec_internal(pmp_dev
, &tf
, NULL
, DMA_NONE
, NULL
, 0,
95 * sata_pmp_qc_defer_cmd_switch - qc_defer for command switching PMP
96 * @qc: ATA command in question
98 * A host which has command switching PMP support cannot issue
99 * commands to multiple links simultaneously.
102 * spin_lock_irqsave(host lock)
105 * ATA_DEFER_* if deferring is needed, 0 otherwise.
107 int sata_pmp_qc_defer_cmd_switch(struct ata_queued_cmd
*qc
)
109 struct ata_link
*link
= qc
->dev
->link
;
110 struct ata_port
*ap
= link
->ap
;
112 if (ap
->excl_link
== NULL
|| ap
->excl_link
== link
) {
113 if (ap
->nr_active_links
== 0 || ata_link_active(link
)) {
114 qc
->flags
|= ATA_QCFLAG_CLEAR_EXCL
;
115 return ata_std_qc_defer(qc
);
118 ap
->excl_link
= link
;
121 return ATA_DEFER_PORT
;
125 * sata_pmp_scr_read - read PSCR
126 * @link: ATA link to read PSCR for
128 * @r_val: resulting value
130 * Read PSCR @reg into @r_val for @link, to be called from
134 * Kernel thread context (may sleep).
137 * 0 on success, -errno on failure.
139 int sata_pmp_scr_read(struct ata_link
*link
, int reg
, u32
*r_val
)
141 unsigned int err_mask
;
143 if (reg
> SATA_PMP_PSCR_CONTROL
)
146 err_mask
= sata_pmp_read(link
, reg
, r_val
);
148 ata_link_printk(link
, KERN_WARNING
, "failed to read SCR %d "
149 "(Emask=0x%x)\n", reg
, err_mask
);
156 * sata_pmp_scr_write - write PSCR
157 * @link: ATA link to write PSCR for
158 * @reg: PSCR to write
159 * @val: value to be written
161 * Write @val to PSCR @reg for @link, to be called from
162 * ata_scr_write() and ata_scr_write_flush().
165 * Kernel thread context (may sleep).
168 * 0 on success, -errno on failure.
170 int sata_pmp_scr_write(struct ata_link
*link
, int reg
, u32 val
)
172 unsigned int err_mask
;
174 if (reg
> SATA_PMP_PSCR_CONTROL
)
177 err_mask
= sata_pmp_write(link
, reg
, val
);
179 ata_link_printk(link
, KERN_WARNING
, "failed to write SCR %d "
180 "(Emask=0x%x)\n", reg
, err_mask
);
187 * sata_pmp_read_gscr - read GSCR block of SATA PMP
189 * @gscr: buffer to read GSCR block into
191 * Read selected PMP GSCRs from the PMP at @dev. This will serve
192 * as configuration and identification info for the PMP.
195 * Kernel thread context (may sleep).
198 * 0 on success, -errno on failure.
200 static int sata_pmp_read_gscr(struct ata_device
*dev
, u32
*gscr
)
202 static const int gscr_to_read
[] = { 0, 1, 2, 32, 33, 64, 96 };
205 for (i
= 0; i
< ARRAY_SIZE(gscr_to_read
); i
++) {
206 int reg
= gscr_to_read
[i
];
207 unsigned int err_mask
;
209 err_mask
= sata_pmp_read(dev
->link
, reg
, &gscr
[reg
]);
211 ata_dev_printk(dev
, KERN_ERR
, "failed to read PMP "
212 "GSCR[%d] (Emask=0x%x)\n", reg
, err_mask
);
220 static const char *sata_pmp_spec_rev_str(const u32
*gscr
)
222 u32 rev
= gscr
[SATA_PMP_GSCR_REV
];
233 static int sata_pmp_configure(struct ata_device
*dev
, int print_info
)
235 struct ata_port
*ap
= dev
->link
->ap
;
236 u32
*gscr
= dev
->gscr
;
237 unsigned int err_mask
= 0;
241 nr_ports
= sata_pmp_gscr_ports(gscr
);
243 if (nr_ports
<= 0 || nr_ports
> SATA_PMP_MAX_PORTS
) {
245 reason
= "invalid nr_ports";
249 if ((ap
->flags
& ATA_FLAG_AN
) &&
250 (gscr
[SATA_PMP_GSCR_FEAT
] & SATA_PMP_FEAT_NOTIFY
))
251 dev
->flags
|= ATA_DFLAG_AN
;
253 /* monitor SERR_PHYRDY_CHG on fan-out ports */
254 err_mask
= sata_pmp_write(dev
->link
, SATA_PMP_GSCR_ERROR_EN
,
258 reason
= "failed to write GSCR_ERROR_EN";
263 ata_dev_printk(dev
, KERN_INFO
, "Port Multiplier %s, "
264 "0x%04x:0x%04x r%d, %d ports, feat 0x%x/0x%x\n",
265 sata_pmp_spec_rev_str(gscr
),
266 sata_pmp_gscr_vendor(gscr
),
267 sata_pmp_gscr_devid(gscr
),
268 sata_pmp_gscr_rev(gscr
),
269 nr_ports
, gscr
[SATA_PMP_GSCR_FEAT_EN
],
270 gscr
[SATA_PMP_GSCR_FEAT
]);
272 if (!(dev
->flags
& ATA_DFLAG_AN
))
273 ata_dev_printk(dev
, KERN_INFO
,
274 "Asynchronous notification not supported, "
275 "hotplug won't\n work on fan-out "
276 "ports. Use warm-plug instead.\n");
282 ata_dev_printk(dev
, KERN_ERR
,
283 "failed to configure Port Multiplier (%s, Emask=0x%x)\n",
288 static int sata_pmp_init_links(struct ata_port
*ap
, int nr_ports
)
290 struct ata_link
*pmp_link
= ap
->pmp_link
;
294 pmp_link
= kzalloc(sizeof(pmp_link
[0]) * SATA_PMP_MAX_PORTS
,
299 for (i
= 0; i
< SATA_PMP_MAX_PORTS
; i
++)
300 ata_link_init(ap
, &pmp_link
[i
], i
);
302 ap
->pmp_link
= pmp_link
;
305 for (i
= 0; i
< nr_ports
; i
++) {
306 struct ata_link
*link
= &pmp_link
[i
];
307 struct ata_eh_context
*ehc
= &link
->eh_context
;
310 ehc
->i
.probe_mask
|= ATA_ALL_DEVICES
;
311 ehc
->i
.action
|= ATA_EH_RESET
;
317 static void sata_pmp_quirks(struct ata_port
*ap
)
319 u32
*gscr
= ap
->link
.device
->gscr
;
320 u16 vendor
= sata_pmp_gscr_vendor(gscr
);
321 u16 devid
= sata_pmp_gscr_devid(gscr
);
322 struct ata_link
*link
;
324 if (vendor
== 0x1095 && devid
== 0x3726) {
326 ata_for_each_link(link
, ap
, EDGE
) {
327 /* Class code report is unreliable and SRST
328 * times out under certain configurations.
331 link
->flags
|= ATA_LFLAG_NO_SRST
|
332 ATA_LFLAG_ASSUME_ATA
;
334 /* port 5 is for SEMB device and it doesn't like SRST */
336 link
->flags
|= ATA_LFLAG_NO_SRST
|
337 ATA_LFLAG_ASSUME_SEMB
;
339 } else if (vendor
== 0x1095 && devid
== 0x4723) {
341 ata_for_each_link(link
, ap
, EDGE
) {
342 /* class code report is unreliable */
344 link
->flags
|= ATA_LFLAG_ASSUME_ATA
;
346 /* the config device at port 2 locks up on SRST */
348 link
->flags
|= ATA_LFLAG_NO_SRST
|
349 ATA_LFLAG_ASSUME_ATA
;
351 } else if (vendor
== 0x1095 && devid
== 0x4726) {
353 ata_for_each_link(link
, ap
, EDGE
) {
354 /* Class code report is unreliable and SRST
355 * times out under certain configurations.
356 * Config device can be at port 0 or 5 and
360 link
->flags
|= ATA_LFLAG_NO_SRST
|
361 ATA_LFLAG_ASSUME_ATA
;
363 /* Port 6 is for SEMB device which doesn't
367 link
->flags
|= ATA_LFLAG_NO_SRST
|
368 ATA_LFLAG_ASSUME_SEMB
;
370 } else if (vendor
== 0x1095 && (devid
== 0x5723 || devid
== 0x5733 ||
371 devid
== 0x5734 || devid
== 0x5744)) {
372 /* sil5723/5744 quirks */
374 /* sil5723/5744 has either two or three downstream
375 * ports depending on operation mode. The last port
376 * is empty if any actual IO device is available or
377 * occupied by a pseudo configuration device
378 * otherwise. Don't try hard to recover it.
380 ap
->pmp_link
[ap
->nr_pmp_links
- 1].flags
|= ATA_LFLAG_NO_RETRY
;
385 * sata_pmp_attach - attach a SATA PMP device
386 * @dev: SATA PMP device to attach
388 * Configure and attach SATA PMP device @dev. This function is
389 * also responsible for allocating and initializing PMP links.
392 * Kernel thread context (may sleep).
395 * 0 on success, -errno on failure.
397 int sata_pmp_attach(struct ata_device
*dev
)
399 struct ata_link
*link
= dev
->link
;
400 struct ata_port
*ap
= link
->ap
;
402 struct ata_link
*tlink
;
405 /* is it hanging off the right place? */
406 if (!sata_pmp_supported(ap
)) {
407 ata_dev_printk(dev
, KERN_ERR
,
408 "host does not support Port Multiplier\n");
412 if (!ata_is_host_link(link
)) {
413 ata_dev_printk(dev
, KERN_ERR
,
414 "Port Multipliers cannot be nested\n");
419 ata_dev_printk(dev
, KERN_ERR
,
420 "Port Multiplier must be the first device\n");
424 WARN_ON(link
->pmp
!= 0);
425 link
->pmp
= SATA_PMP_CTRL_PORT
;
427 /* read GSCR block */
428 rc
= sata_pmp_read_gscr(dev
, dev
->gscr
);
433 rc
= sata_pmp_configure(dev
, 1);
437 rc
= sata_pmp_init_links(ap
, sata_pmp_gscr_ports(dev
->gscr
));
439 ata_dev_printk(dev
, KERN_INFO
,
440 "failed to initialize PMP links\n");
445 spin_lock_irqsave(ap
->lock
, flags
);
446 WARN_ON(ap
->nr_pmp_links
);
447 ap
->nr_pmp_links
= sata_pmp_gscr_ports(dev
->gscr
);
448 spin_unlock_irqrestore(ap
->lock
, flags
);
452 if (ap
->ops
->pmp_attach
)
453 ap
->ops
->pmp_attach(ap
);
455 ata_for_each_link(tlink
, ap
, EDGE
)
456 sata_link_init_spd(tlink
);
458 ata_acpi_associate_sata_port(ap
);
468 * sata_pmp_detach - detach a SATA PMP device
469 * @dev: SATA PMP device to detach
471 * Detach SATA PMP device @dev. This function is also
472 * responsible for deconfiguring PMP links.
475 * Kernel thread context (may sleep).
477 static void sata_pmp_detach(struct ata_device
*dev
)
479 struct ata_link
*link
= dev
->link
;
480 struct ata_port
*ap
= link
->ap
;
481 struct ata_link
*tlink
;
484 ata_dev_printk(dev
, KERN_INFO
, "Port Multiplier detaching\n");
486 WARN_ON(!ata_is_host_link(link
) || dev
->devno
||
487 link
->pmp
!= SATA_PMP_CTRL_PORT
);
489 if (ap
->ops
->pmp_detach
)
490 ap
->ops
->pmp_detach(ap
);
492 ata_for_each_link(tlink
, ap
, EDGE
)
493 ata_eh_detach_dev(tlink
->device
);
495 spin_lock_irqsave(ap
->lock
, flags
);
496 ap
->nr_pmp_links
= 0;
498 spin_unlock_irqrestore(ap
->lock
, flags
);
500 ata_acpi_associate_sata_port(ap
);
504 * sata_pmp_same_pmp - does new GSCR matches the configured PMP?
505 * @dev: PMP device to compare against
506 * @new_gscr: GSCR block of the new device
508 * Compare @new_gscr against @dev and determine whether @dev is
509 * the PMP described by @new_gscr.
515 * 1 if @dev matches @new_gscr, 0 otherwise.
517 static int sata_pmp_same_pmp(struct ata_device
*dev
, const u32
*new_gscr
)
519 const u32
*old_gscr
= dev
->gscr
;
520 u16 old_vendor
, new_vendor
, old_devid
, new_devid
;
521 int old_nr_ports
, new_nr_ports
;
523 old_vendor
= sata_pmp_gscr_vendor(old_gscr
);
524 new_vendor
= sata_pmp_gscr_vendor(new_gscr
);
525 old_devid
= sata_pmp_gscr_devid(old_gscr
);
526 new_devid
= sata_pmp_gscr_devid(new_gscr
);
527 old_nr_ports
= sata_pmp_gscr_ports(old_gscr
);
528 new_nr_ports
= sata_pmp_gscr_ports(new_gscr
);
530 if (old_vendor
!= new_vendor
) {
531 ata_dev_printk(dev
, KERN_INFO
, "Port Multiplier "
532 "vendor mismatch '0x%x' != '0x%x'\n",
533 old_vendor
, new_vendor
);
537 if (old_devid
!= new_devid
) {
538 ata_dev_printk(dev
, KERN_INFO
, "Port Multiplier "
539 "device ID mismatch '0x%x' != '0x%x'\n",
540 old_devid
, new_devid
);
544 if (old_nr_ports
!= new_nr_ports
) {
545 ata_dev_printk(dev
, KERN_INFO
, "Port Multiplier "
546 "nr_ports mismatch '0x%x' != '0x%x'\n",
547 old_nr_ports
, new_nr_ports
);
555 * sata_pmp_revalidate - revalidate SATA PMP
556 * @dev: PMP device to revalidate
557 * @new_class: new class code
559 * Re-read GSCR block and make sure @dev is still attached to the
560 * port and properly configured.
563 * Kernel thread context (may sleep).
566 * 0 on success, -errno otherwise.
568 static int sata_pmp_revalidate(struct ata_device
*dev
, unsigned int new_class
)
570 struct ata_link
*link
= dev
->link
;
571 struct ata_port
*ap
= link
->ap
;
572 u32
*gscr
= (void *)ap
->sector_buf
;
577 ata_eh_about_to_do(link
, NULL
, ATA_EH_REVALIDATE
);
579 if (!ata_dev_enabled(dev
)) {
585 if (ata_class_enabled(new_class
) && new_class
!= ATA_DEV_PMP
) {
591 rc
= sata_pmp_read_gscr(dev
, gscr
);
595 /* is the pmp still there? */
596 if (!sata_pmp_same_pmp(dev
, gscr
)) {
601 memcpy(dev
->gscr
, gscr
, sizeof(gscr
[0]) * SATA_PMP_GSCR_DWORDS
);
603 rc
= sata_pmp_configure(dev
, 0);
607 ata_eh_done(link
, NULL
, ATA_EH_REVALIDATE
);
609 DPRINTK("EXIT, rc=0\n");
613 ata_dev_printk(dev
, KERN_ERR
,
614 "PMP revalidation failed (errno=%d)\n", rc
);
615 DPRINTK("EXIT, rc=%d\n", rc
);
620 * sata_pmp_revalidate_quick - revalidate SATA PMP quickly
621 * @dev: PMP device to revalidate
623 * Make sure the attached PMP is accessible.
626 * Kernel thread context (may sleep).
629 * 0 on success, -errno otherwise.
631 static int sata_pmp_revalidate_quick(struct ata_device
*dev
)
633 unsigned int err_mask
;
636 err_mask
= sata_pmp_read(dev
->link
, SATA_PMP_GSCR_PROD_ID
, &prod_id
);
638 ata_dev_printk(dev
, KERN_ERR
, "failed to read PMP product ID "
639 "(Emask=0x%x)\n", err_mask
);
643 if (prod_id
!= dev
->gscr
[SATA_PMP_GSCR_PROD_ID
]) {
644 ata_dev_printk(dev
, KERN_ERR
, "PMP product ID mismatch\n");
645 /* something weird is going on, request full PMP recovery */
653 * sata_pmp_eh_recover_pmp - recover PMP
654 * @ap: ATA port PMP is attached to
655 * @prereset: prereset method (can be NULL)
656 * @softreset: softreset method
657 * @hardreset: hardreset method
658 * @postreset: postreset method (can be NULL)
660 * Recover PMP attached to @ap. Recovery procedure is somewhat
661 * similar to that of ata_eh_recover() except that reset should
662 * always be performed in hard->soft sequence and recovery
663 * failure results in PMP detachment.
666 * Kernel thread context (may sleep).
669 * 0 on success, -errno on failure.
671 static int sata_pmp_eh_recover_pmp(struct ata_port
*ap
,
672 ata_prereset_fn_t prereset
, ata_reset_fn_t softreset
,
673 ata_reset_fn_t hardreset
, ata_postreset_fn_t postreset
)
675 struct ata_link
*link
= &ap
->link
;
676 struct ata_eh_context
*ehc
= &link
->eh_context
;
677 struct ata_device
*dev
= link
->device
;
678 int tries
= ATA_EH_PMP_TRIES
;
679 int detach
= 0, rc
= 0;
680 int reval_failed
= 0;
684 if (dev
->flags
& ATA_DFLAG_DETACH
) {
690 ehc
->classes
[0] = ATA_DEV_UNKNOWN
;
692 if (ehc
->i
.action
& ATA_EH_RESET
) {
693 struct ata_link
*tlink
;
696 rc
= ata_eh_reset(link
, 0, prereset
, softreset
, hardreset
,
699 ata_link_printk(link
, KERN_ERR
,
700 "failed to reset PMP, giving up\n");
704 /* PMP is reset, SErrors cannot be trusted, scan all */
705 ata_for_each_link(tlink
, ap
, EDGE
) {
706 struct ata_eh_context
*ehc
= &tlink
->eh_context
;
708 ehc
->i
.probe_mask
|= ATA_ALL_DEVICES
;
709 ehc
->i
.action
|= ATA_EH_RESET
;
713 /* If revalidation is requested, revalidate and reconfigure;
714 * otherwise, do quick revalidation.
716 if (ehc
->i
.action
& ATA_EH_REVALIDATE
)
717 rc
= sata_pmp_revalidate(dev
, ehc
->classes
[0]);
719 rc
= sata_pmp_revalidate_quick(dev
);
725 ehc
->i
.probe_mask
|= ATA_ALL_DEVICES
;
727 /* give it just two more chances */
728 tries
= min(tries
, 2);
732 /* consecutive revalidation failures? speed down */
734 sata_down_spd_limit(link
, 0);
738 ehc
->i
.action
|= ATA_EH_RESET
;
741 ata_dev_printk(dev
, KERN_ERR
, "failed to recover PMP "
742 "after %d tries, giving up\n",
748 /* okay, PMP resurrected */
751 DPRINTK("EXIT, rc=0\n");
755 sata_pmp_detach(dev
);
757 ata_eh_detach_dev(dev
);
759 ata_dev_disable(dev
);
761 DPRINTK("EXIT, rc=%d\n", rc
);
765 static int sata_pmp_eh_handle_disabled_links(struct ata_port
*ap
)
767 struct ata_link
*link
;
771 spin_lock_irqsave(ap
->lock
, flags
);
773 ata_for_each_link(link
, ap
, EDGE
) {
774 if (!(link
->flags
& ATA_LFLAG_DISABLED
))
777 spin_unlock_irqrestore(ap
->lock
, flags
);
779 /* Some PMPs require hardreset sequence to get
782 sata_link_hardreset(link
, sata_deb_timing_normal
,
783 ata_deadline(jiffies
, ATA_TMOUT_INTERNAL_QUICK
),
786 /* unconditionally clear SError.N */
787 rc
= sata_scr_write(link
, SCR_ERROR
, SERR_PHYRDY_CHG
);
789 ata_link_printk(link
, KERN_ERR
, "failed to clear "
790 "SError.N (errno=%d)\n", rc
);
794 spin_lock_irqsave(ap
->lock
, flags
);
797 spin_unlock_irqrestore(ap
->lock
, flags
);
802 static int sata_pmp_handle_link_fail(struct ata_link
*link
, int *link_tries
)
804 struct ata_port
*ap
= link
->ap
;
807 if (link_tries
[link
->pmp
] && --link_tries
[link
->pmp
])
810 /* disable this link */
811 if (!(link
->flags
& ATA_LFLAG_DISABLED
)) {
812 ata_link_printk(link
, KERN_WARNING
,
813 "failed to recover link after %d tries, disabling\n",
814 ATA_EH_PMP_LINK_TRIES
);
816 spin_lock_irqsave(ap
->lock
, flags
);
817 link
->flags
|= ATA_LFLAG_DISABLED
;
818 spin_unlock_irqrestore(ap
->lock
, flags
);
821 ata_dev_disable(link
->device
);
822 link
->eh_context
.i
.action
= 0;
828 * sata_pmp_eh_recover - recover PMP-enabled port
829 * @ap: ATA port to recover
831 * Drive EH recovery operation for PMP enabled port @ap. This
832 * function recovers host and PMP ports with proper retrials and
833 * fallbacks. Actual recovery operations are performed using
834 * ata_eh_recover() and sata_pmp_eh_recover_pmp().
837 * Kernel thread context (may sleep).
840 * 0 on success, -errno on failure.
842 static int sata_pmp_eh_recover(struct ata_port
*ap
)
844 struct ata_port_operations
*ops
= ap
->ops
;
845 int pmp_tries
, link_tries
[SATA_PMP_MAX_PORTS
];
846 struct ata_link
*pmp_link
= &ap
->link
;
847 struct ata_device
*pmp_dev
= pmp_link
->device
;
848 struct ata_eh_context
*pmp_ehc
= &pmp_link
->eh_context
;
849 u32
*gscr
= pmp_dev
->gscr
;
850 struct ata_link
*link
;
851 struct ata_device
*dev
;
852 unsigned int err_mask
;
853 u32 gscr_error
, sntf
;
856 pmp_tries
= ATA_EH_PMP_TRIES
;
857 ata_for_each_link(link
, ap
, EDGE
)
858 link_tries
[link
->pmp
] = ATA_EH_PMP_LINK_TRIES
;
862 if (!sata_pmp_attached(ap
)) {
863 rc
= ata_eh_recover(ap
, ops
->prereset
, ops
->softreset
,
864 ops
->hardreset
, ops
->postreset
, NULL
);
866 ata_for_each_dev(dev
, &ap
->link
, ALL
)
867 ata_dev_disable(dev
);
871 if (pmp_dev
->class != ATA_DEV_PMP
)
875 ata_for_each_link(link
, ap
, EDGE
)
876 link_tries
[link
->pmp
] = ATA_EH_PMP_LINK_TRIES
;
882 rc
= sata_pmp_eh_recover_pmp(ap
, ops
->prereset
, ops
->softreset
,
883 ops
->hardreset
, ops
->postreset
);
887 /* PHY event notification can disturb reset and other recovery
888 * operations. Turn it off.
890 if (gscr
[SATA_PMP_GSCR_FEAT_EN
] & SATA_PMP_FEAT_NOTIFY
) {
891 gscr
[SATA_PMP_GSCR_FEAT_EN
] &= ~SATA_PMP_FEAT_NOTIFY
;
893 err_mask
= sata_pmp_write(pmp_link
, SATA_PMP_GSCR_FEAT_EN
,
894 gscr
[SATA_PMP_GSCR_FEAT_EN
]);
896 ata_link_printk(pmp_link
, KERN_WARNING
,
897 "failed to disable NOTIFY (err_mask=0x%x)\n",
903 /* handle disabled links */
904 rc
= sata_pmp_eh_handle_disabled_links(ap
);
909 rc
= ata_eh_recover(ap
, ops
->pmp_prereset
, ops
->pmp_softreset
,
910 ops
->pmp_hardreset
, ops
->pmp_postreset
, &link
);
914 /* Connection status might have changed while resetting other
915 * links, check SATA_PMP_GSCR_ERROR before returning.
918 /* clear SNotification */
919 rc
= sata_scr_read(&ap
->link
, SCR_NOTIFICATION
, &sntf
);
921 sata_scr_write(&ap
->link
, SCR_NOTIFICATION
, sntf
);
923 /* enable notification */
924 if (pmp_dev
->flags
& ATA_DFLAG_AN
) {
925 gscr
[SATA_PMP_GSCR_FEAT_EN
] |= SATA_PMP_FEAT_NOTIFY
;
927 err_mask
= sata_pmp_write(pmp_link
, SATA_PMP_GSCR_FEAT_EN
,
928 gscr
[SATA_PMP_GSCR_FEAT_EN
]);
930 ata_dev_printk(pmp_dev
, KERN_ERR
, "failed to write "
931 "PMP_FEAT_EN (Emask=0x%x)\n", err_mask
);
937 /* check GSCR_ERROR */
938 err_mask
= sata_pmp_read(pmp_link
, SATA_PMP_GSCR_ERROR
, &gscr_error
);
940 ata_dev_printk(pmp_dev
, KERN_ERR
, "failed to read "
941 "PMP_GSCR_ERROR (Emask=0x%x)\n", err_mask
);
947 ata_for_each_link(link
, ap
, EDGE
) {
948 if (!(gscr_error
& (1 << link
->pmp
)))
951 if (sata_pmp_handle_link_fail(link
, link_tries
)) {
952 ata_ehi_hotplugged(&link
->eh_context
.i
);
955 ata_link_printk(link
, KERN_WARNING
,
956 "PHY status changed but maxed out on retries, "
958 ata_link_printk(link
, KERN_WARNING
,
959 "Manully issue scan to resume this link\n");
964 ata_port_printk(ap
, KERN_INFO
, "PMP SError.N set for some "
965 "ports, repeating recovery\n");
972 if (sata_pmp_handle_link_fail(link
, link_tries
)) {
973 pmp_ehc
->i
.action
|= ATA_EH_RESET
;
979 /* Control always ends up here after detaching PMP. Shut up
980 * and return if we're unloading.
982 if (ap
->pflags
& ATA_PFLAG_UNLOADING
)
985 if (!sata_pmp_attached(ap
))
989 pmp_ehc
->i
.action
|= ATA_EH_RESET
;
993 ata_port_printk(ap
, KERN_ERR
,
994 "failed to recover PMP after %d tries, giving up\n",
996 sata_pmp_detach(pmp_dev
);
997 ata_dev_disable(pmp_dev
);
1003 * sata_pmp_error_handler - do standard error handling for PMP-enabled host
1004 * @ap: host port to handle error for
1006 * Perform standard error handling sequence for PMP-enabled host
1010 * Kernel thread context (may sleep).
1012 void sata_pmp_error_handler(struct ata_port
*ap
)
1016 sata_pmp_eh_recover(ap
);
1020 EXPORT_SYMBOL_GPL(sata_pmp_port_ops
);
1021 EXPORT_SYMBOL_GPL(sata_pmp_qc_defer_cmd_switch
);
1022 EXPORT_SYMBOL_GPL(sata_pmp_error_handler
);