diff options
author | Oliver O'Halloran <oohall@gmail.com> | 2019-05-30 14:36:42 +1000 |
---|---|---|
committer | Vasant Hegde <hegdevasant@linux.vnet.ibm.com> | 2019-06-08 16:03:34 +0530 |
commit | 944f242d5ceb9b59b338f6d62141e593ac7e6fd7 (patch) | |
tree | 1555d7fec1da2d6bc7259559dc840881f9edad45 | |
parent | 2fff264e25d2349a92d84b02e14c886121d90410 (diff) | |
download | skiboot-944f242d5ceb9b59b338f6d62141e593ac7e6fd7.zip skiboot-944f242d5ceb9b59b338f6d62141e593ac7e6fd7.tar.gz skiboot-944f242d5ceb9b59b338f6d62141e593ac7e6fd7.tar.bz2 |
hw/phb4: Use read/write_reg in assert_perst
[ Upstream commit 771497098efded8d3a2c0688bab1c1d48d093443 ]
While the PHB is fenced we can't use the MMIO interface to access PHB
registers. While processing a complete reset we inject a PHB fence to
isolate the PHB from the rest of the system because the PHB won't
respond to MMIOs from the rest of the system while being reset.
We assert PERST after the fence has been erected which requires us to
use the XSCOM indirect interface to access the PHB registers rather than
the MMIO interface. Previously we did that when asserting PERST in the
CRESET path. However in b8b4c79d4419 ("hw/phb4: Factor out PERST
control"). This was re-written to use the raw in_be64() accessor. This
means that CRESET would not be asserted in the reset path. On some
Mellanox cards this would prevent them from re-loading their firmware
when the system was fast-reset.
This patch fixes the problem by replacing the raw {in|out}_be64()
accessors with the phb4_{read|write}_reg() functions.
Reported-by: Carol L Soto <clsoto@us.ibm.com>
Fixes: b8b4c79d4419 ("hw/phb4: Factor out PERST control")
Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Tested-by: Carol L Soto <clsoto@us.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
-rw-r--r-- | hw/phb4.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2892,7 +2892,7 @@ static void phb4_assert_perst(struct pci_slot *slot, bool assert) * bit in the btctl register also works. */ phb4_pcicfg_read16(&p->phb, 0, p->ecap + PCICAP_EXP_LCTL, &linkctl); - reg = in_be64(p->regs + PHB_PCIE_CRESET); + reg = phb4_read_reg(p, PHB_PCIE_CRESET); if (assert) { linkctl |= PCICAP_EXP_LCTL_LINK_DIS; @@ -2902,7 +2902,7 @@ static void phb4_assert_perst(struct pci_slot *slot, bool assert) reg |= PHB_PCIE_CRESET_PERST_N; } - out_be64(p->regs + PHB_PCIE_CRESET, reg); + phb4_write_reg(p, PHB_PCIE_CRESET, reg); phb4_pcicfg_write16(&p->phb, 0, p->ecap + PCICAP_EXP_LCTL, linkctl); } |