diff options
author | Richard A Lary <rlary@linux.vnet.ibm.com> | 2011-04-22 06:00:05 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-05-04 02:02:38 -0400 |
commit | ecb7390211fe9cb14ff0bae116a3f4f1149c0b6c (patch) | |
tree | 07963d208f1936465ce5a7a3b1ff0446c5532873 /arch/powerpc/platforms | |
parent | 308fc4f8e10b5239cde46104bb9fca79b46230c8 (diff) |
powerpc/pseries/eeh: Handle functional reset on non-PCIe device
Fundamental reset is an optional reset type supported only by PCIe adapters.
Handle the unexpected case where a non-PCIe device has requested a
fundamental reset. Try hot-reset as a fallback to handle this case.
Signed-off-by: Richard A Lary <rlary@linux.vnet.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms')
-rw-r--r-- | arch/powerpc/platforms/pseries/eeh.c | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/arch/powerpc/platforms/pseries/eeh.c b/arch/powerpc/platforms/pseries/eeh.c index 6cb3e7bd175d..46b55cf563e3 100644 --- a/arch/powerpc/platforms/pseries/eeh.c +++ b/arch/powerpc/platforms/pseries/eeh.c | |||
@@ -728,15 +728,24 @@ rtas_pci_slot_reset(struct pci_dn *pdn, int state) | |||
728 | if (pdn->eeh_pe_config_addr) | 728 | if (pdn->eeh_pe_config_addr) |
729 | config_addr = pdn->eeh_pe_config_addr; | 729 | config_addr = pdn->eeh_pe_config_addr; |
730 | 730 | ||
731 | rc = rtas_call(ibm_set_slot_reset,4,1, NULL, | 731 | rc = rtas_call(ibm_set_slot_reset, 4, 1, NULL, |
732 | config_addr, | 732 | config_addr, |
733 | BUID_HI(pdn->phb->buid), | 733 | BUID_HI(pdn->phb->buid), |
734 | BUID_LO(pdn->phb->buid), | 734 | BUID_LO(pdn->phb->buid), |
735 | state); | 735 | state); |
736 | if (rc) | 736 | |
737 | printk (KERN_WARNING "EEH: Unable to reset the failed slot," | 737 | /* Fundamental-reset not supported on this PE, try hot-reset */ |
738 | " (%d) #RST=%d dn=%s\n", | 738 | if (rc == -8 && state == 3) { |
739 | rc, state, pdn->node->full_name); | 739 | rc = rtas_call(ibm_set_slot_reset, 4, 1, NULL, |
740 | config_addr, | ||
741 | BUID_HI(pdn->phb->buid), | ||
742 | BUID_LO(pdn->phb->buid), 1); | ||
743 | if (rc) | ||
744 | printk(KERN_WARNING | ||
745 | "EEH: Unable to reset the failed slot," | ||
746 | " #RST=%d dn=%s\n", | ||
747 | rc, pdn->node->full_name); | ||
748 | } | ||
740 | } | 749 | } |
741 | 750 | ||
742 | /** | 751 | /** |