PCI: tegra: Set target speed as Gen1 before starting LTSSM
authorManikanta Maddireddy <mmaddireddy@nvidia.com>
Tue, 18 Jun 2019 18:01:55 +0000 (23:31 +0530)
committerLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Thu, 20 Jun 2019 16:22:27 +0000 (17:22 +0100)
PCIe link up fails with few legacy endpoints if root port advertises both
Gen-1 and Gen-2 speeds in Tegra. This is because link number negotiation
fails if both Gen1 & Gen2 are advertised. Tegra doesn't retry link up by
advertising only Gen1. Hence, the strategy followed here is to initially
advertise only Gen-1 and after link is up, retrain link to Gen-2 speed.

Tegra doesn't support HW autonomous speed change. Link comes up in Gen1
even if Gen2 is advertised, so there is no downside of this change.

This behavior is observed with following two PCIe devices on Tegra:

- Fusion HDTV 5 Express card
- IOGear SIL - PCIE - SATA card

Signed-off-by: Manikanta Maddireddy <mmaddireddy@nvidia.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Acked-by: Thierry Reding <treding@nvidia.com>
drivers/pci/controller/pci-tegra.c

index cf2398a10d8c39a52950640a4a95f8c54256d737..ffe3ad5d050967f9ede0da342d9028395bea9b0c 100644 (file)
@@ -676,6 +676,17 @@ static void tegra_pcie_apply_sw_fixup(struct tegra_pcie_port *port)
                value |= soc->update_fc_threshold;
                writel(value, port->base + RP_VEND_XP);
        }
+
+       /*
+        * PCIe link doesn't come up with few legacy PCIe endpoints if
+        * root port advertises both Gen-1 and Gen-2 speeds in Tegra.
+        * Hence, the strategy followed here is to initially advertise
+        * only Gen-1 and after link is up, retrain link to Gen-2 speed
+        */
+       value = readl(port->base + RP_LINK_CONTROL_STATUS_2);
+       value &= ~PCI_EXP_LNKSTA_CLS;
+       value |= PCI_EXP_LNKSTA_CLS_2_5GB;
+       writel(value, port->base + RP_LINK_CONTROL_STATUS_2);
 }
 
 static void tegra_pcie_port_enable(struct tegra_pcie_port *port)