summaryrefslogtreecommitdiffstats
path: root/hw
diff options
context:
space:
mode:
authorGavin Shan <gwshan@linux.vnet.ibm.com>2017-03-30 10:05:31 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-03-31 16:57:07 +1100
commitbd87856aef965603ee6eb02ce80d7d1d56739ebb (patch)
tree88faa5a8d9930a89718ba89df72cd05bea042b31 /hw
parent2688ec9eeca1ce68b553220e57a9258b2f375192 (diff)
downloadtalos-skiboot-bd87856aef965603ee6eb02ce80d7d1d56739ebb.tar.gz
talos-skiboot-bd87856aef965603ee6eb02ce80d7d1d56739ebb.zip
hw/phb3: Enable ECRC on endpoints
As the ECRC is updated properly on root port, we needn't care the setting on endpoints. This reverts commit 60ce59ccd0e9 ("hw/phb3: Disable ECRC on Broadcom adapter behind PMC switch"), meaning ECRC is always enabled on endpoints. Reported-by: Mark E Schreiter <markes@us.ibm.com> Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Tested-by: Mark E Schreiter <markes@us.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/phb3.c26
1 files changed, 2 insertions, 24 deletions
diff --git a/hw/phb3.c b/hw/phb3.c
index 33d2116a..9bc9d78b 100644
--- a/hw/phb3.c
+++ b/hw/phb3.c
@@ -544,24 +544,6 @@ static void phb3_switch_port_init(struct phb *phb,
pci_cfg_write32(phb, bdfn, aercap + PCIECAP_AER_CAPCTL, val32);
}
-static inline bool phb3_endpoint_report_ecrc(struct pci_device *pd)
-{
- if (!pd || !pd->parent)
- return true;
-
- /* No ECRC generation and check on Broadcom ethernet adapter
- * when it seats behind a PMC's PCIe switch downstream port.
- * Otherwise, the Broadcom ethernet adapter's config space
- * can't be accessed because of frozen PE error even after
- * the frozen PE error is cleared.
- */
- if (pd->vdid == 0x168a14e4 || // Broadcom bnx2x CHIP_NUM_57800
- pd->parent->vdid == 0x854611f8)
- return false;
-
- return true;
-}
-
static void phb3_endpoint_init(struct phb *phb,
struct pci_device *dev,
int ecap, int aercap)
@@ -599,12 +581,8 @@ static void phb3_endpoint_init(struct phb *phb,
/* Enable ECRC generation and check */
pci_cfg_read32(phb, bdfn, aercap + PCIECAP_AER_CAPCTL, &val32);
- if (phb3_endpoint_report_ecrc(dev))
- val32 |= (PCIECAP_AER_CAPCTL_ECRCG_EN |
- PCIECAP_AER_CAPCTL_ECRCC_EN);
- else
- val32 &= ~(PCIECAP_AER_CAPCTL_ECRCG_EN |
- PCIECAP_AER_CAPCTL_ECRCC_EN);
+ val32 |= (PCIECAP_AER_CAPCTL_ECRCG_EN |
+ PCIECAP_AER_CAPCTL_ECRCC_EN);
pci_cfg_write32(phb, bdfn, aercap + PCIECAP_AER_CAPCTL, val32);
}
OpenPOWER on IntegriCloud