[Skiboot] [PATCH v2 4/4] core/pci: Check PCIe cap version in pci_disable_completion_timeout()
Oliver O'Halloran
oohall at gmail.com
Wed Nov 20 11:29:02 AEDT 2019
On Mon, Jun 19, 2017 at 4:47 PM Gavin Shan <gwshan at linux.vnet.ibm.com> wrote:
>
> When the PCIe capability version is less than 2, the completion
> timeout isn't supported and no need to disable it at all.
Merged as c9c681521fb05dbcd592c532e957c4164c1b3585
>
> Signed-off-by: Gavin Shan <gwshan at linux.vnet.ibm.com>
> ---
> core/pci.c | 12 +++++++++---
> 1 file changed, 9 insertions(+), 3 deletions(-)
>
> diff --git a/core/pci.c b/core/pci.c
> index 684c054..cdb5de0 100644
> --- a/core/pci.c
> +++ b/core/pci.c
> @@ -942,15 +942,21 @@ static int pci_configure_mps(struct phb *phb,
>
> static void pci_disable_completion_timeout(struct phb *phb, struct pci_device *pd)
> {
> - uint32_t ecap;
> - uint32_t val;
> + uint32_t ecap, val;
> + uint16_t pcie_cap;
>
> /* PCIE capability required */
> if (!pci_has_cap(pd, PCI_CFG_CAP_ID_EXP, false))
> return;
>
> - /* Check if it has capability to disable completion timeout */
> + /* Check PCIe capability version */
> ecap = pci_cap(pd, PCI_CFG_CAP_ID_EXP, false);
> + pci_cfg_read16(phb, pd->bdfn,
> + ecap + PCICAP_EXP_CAPABILITY_REG, &pcie_cap);
> + if ((pcie_cap & PCICAP_EXP_CAP_VERSION) <= 1)
> + return;
> +
> + /* Check if it has capability to disable completion timeout */
> pci_cfg_read32(phb, pd->bdfn, ecap + PCIECAP_EXP_DCAP2, &val);
> if (!(val & PCICAP_EXP_DCAP2_CMPTOUT_DIS))
> return;
> --
> 2.7.4
>
> _______________________________________________
> Skiboot mailing list
> Skiboot at lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/skiboot
More information about the Skiboot
mailing list