]> git.ipfire.org Git - thirdparty/pciutils.git/commitdiff
lspci: Decode PCIe LnkCtl "Read Completion Boundary" for PCIe-to-PCI bridges
authorBjorn Helgaas <bhelgaas@google.com>
Mon, 9 Sep 2013 23:14:14 +0000 (17:14 -0600)
committerMartin Mares <mj@ucw.cz>
Sun, 10 Nov 2013 11:32:56 +0000 (12:32 +0100)
The PCIe spec (r3.0, Table 7-16) says the Read Completion Boundary is valid
for Root Ports, Endpoints, and Bridges.  I only added decoding for PCIe-to-
PCI/PCI-X bridges because the RCB of a Bridge indicates the RCB of the
upstream Root Port, so I don't think it makes sense for PCI-to-PCIe
bridges.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
ls-caps.c

index de0d79e70f0284c103fc2d2946ab7c0f4537334c..3b554fe19a9a1dbf3659a8d76898f4f847fa748b 100644 (file)
--- a/ls-caps.c
+++ b/ls-caps.c
@@ -774,7 +774,7 @@ static void cap_express_link(struct device *d, int where, int type)
   w = get_conf_word(d, where + PCI_EXP_LNKCTL);
   printf("\t\tLnkCtl:\tASPM %s;", aspm_enabled(w & PCI_EXP_LNKCTL_ASPM));
   if ((type == PCI_EXP_TYPE_ROOT_PORT) || (type == PCI_EXP_TYPE_ENDPOINT) ||
-      (type == PCI_EXP_TYPE_LEG_END))
+      (type == PCI_EXP_TYPE_LEG_END) || (type == PCI_EXP_TYPE_PCI_BRIDGE))
     printf(" RCB %d bytes", w & PCI_EXP_LNKCTL_RCB ? 128 : 64);
   printf(" Disabled%c Retrain%c CommClk%c\n\t\t\tExtSynch%c ClockPM%c AutWidDis%c BWInt%c AutBWInt%c\n",
        FLAG(w, PCI_EXP_LNKCTL_DISABLE),