pci: layerscape: Update print of pcie controller
authorWasim Khan <wasim.khan@nxp.com>
Mon, 28 Sep 2020 10:56:04 +0000 (16:26 +0530)
committerPriyanka Jain <priyanka.jain@nxp.com>
Thu, 10 Dec 2020 08:26:38 +0000 (13:56 +0530)
Print pcie controller number starting from 1

Signed-off-by: Wasim Khan <wasim.khan@nxp.com>
[Trimmed subject]
Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
drivers/pci/pcie_layerscape_ep.c
drivers/pci/pcie_layerscape_rc.c

index eba230e..26c04a9 100644 (file)
@@ -5,6 +5,7 @@
  */
 
 #include <common.h>
+#include <asm/arch/fsl_serdes.h>
 #include <dm.h>
 #include <dm/devres.h>
 #include <errno.h>
@@ -294,7 +295,8 @@ static int ls_pcie_ep_probe(struct udevice *dev)
        pcie_ep->num_ob_wins = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
                                              "num-ob-windows", 8);
 
-       printf("PCIe%u: %s %s", pcie->idx, dev->name, "Endpoint");
+       printf("PCIe%u: %s %s", PCIE_SRDS_PRTCL(pcie->idx), dev->name,
+              "Endpoint");
        ls_pcie_setup_ep(pcie_ep);
 
        if (!ls_pcie_link_up(pcie)) {
index 25c6dde..f9e3089 100644 (file)
@@ -273,7 +273,8 @@ static int ls_pcie_probe(struct udevice *dev)
 
        pcie_rc->enabled = is_serdes_configured(PCIE_SRDS_PRTCL(pcie->idx));
        if (!pcie_rc->enabled) {
-               printf("PCIe%d: %s disabled\n", pcie->idx, dev->name);
+               printf("PCIe%d: %s disabled\n", PCIE_SRDS_PRTCL(pcie->idx),
+                      dev->name);
                return 0;
        }
 
@@ -342,7 +343,8 @@ static int ls_pcie_probe(struct udevice *dev)
              (unsigned long)pcie->ctrl, (unsigned long)pcie_rc->cfg0,
              pcie->big_endian);
 
-       printf("PCIe%u: %s %s", pcie->idx, dev->name, "Root Complex");
+       printf("PCIe%u: %s %s", PCIE_SRDS_PRTCL(pcie->idx), dev->name,
+              "Root Complex");
        ls_pcie_setup_ctrl(pcie_rc);
 
        if (!ls_pcie_link_up(pcie)) {