]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
pci_endpoint: pci_cdns_ti_ep: Add SERDES mux configuration support
authorHrushikesh Salunke <h-salunke@ti.com>
Thu, 23 Oct 2025 11:46:02 +0000 (17:16 +0530)
committerTom Rini <trini@konsulko.com>
Fri, 7 Nov 2025 22:08:49 +0000 (16:08 -0600)
Probe the mux device early in the SERDES configuration flow to ensure
proper lane routing before PHY initialization. This is required for SoCs
where SERDES lanes can be muxed between different controllers
(PCIe, USB, etc), and different mux configurations are required between
different boot phases.

Signed-off-by: Hrushikesh Salunke <h-salunke@ti.com>
drivers/pci_endpoint/pcie_cdns_ti_ep.c

index 541616ab7d00237f2166aa8876ea8adfaffa5363..dd3dc939a7e09e0569e5e47e9ea3cabfc4c20e46 100644 (file)
@@ -97,9 +97,20 @@ static int pcie_cdns_reset(struct udevice *dev, struct power_domain *pci_pwrdmn)
 
 static int pcie_cdns_config_serdes(struct udevice *dev)
 {
+       int ret;
+
+       if (CONFIG_IS_ENABLED(MUX_MMIO)) {
+               struct udevice *mux;
+
+               ret = uclass_get_device_by_seq(UCLASS_MUX, 0, &mux);
+               if (ret) {
+                       dev_err(dev, "unable to get mux\n");
+                       return ret;
+               }
+       }
+
        if (CONFIG_IS_ENABLED(PHY_CADENCE_TORRENT)) {
                struct phy serdes;
-               int ret = 7;
 
                ret = generic_phy_get_by_name(dev,  "pcie-phy", &serdes);
                if (ret != 0 && ret != -EBUSY) {