]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
PCI: tegra: Fix PLLE power down issue due to CLKREQ# signal
authorManikanta Maddireddy <mmaddireddy@nvidia.com>
Tue, 18 Jun 2019 18:01:56 +0000 (23:31 +0530)
committerLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Thu, 20 Jun 2019 16:23:05 +0000 (17:23 +0100)
Disable controllers which failed to bring the link up and configure
CLKREQ# signals of these controllers as GPIO. This is required to avoid
CLKREQ# signal of inactive controllers interfering with PLLE power down
sequence.

PCIE_CLKREQ_GPIO bits are defined only in Tegra186, however programming
these bits in other SoCs doesn't cause any side effects. Program these
bits for all Tegra SoCs to avoid a conditional check.

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 ffe3ad5d050967f9ede0da342d9028395bea9b0c..60051a43c34f6af684a13d0f83e25611abfc58ad 100644 (file)
 #define  AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_211       (0x1 << 20)
 #define  AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_411       (0x2 << 20)
 #define  AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_111       (0x2 << 20)
+#define  AFI_PCIE_CONFIG_PCIE_CLKREQ_GPIO(x)           (1 << ((x) + 29))
+#define  AFI_PCIE_CONFIG_PCIE_CLKREQ_GPIO_ALL          (0x7 << 29)
 
 #define AFI_FUSE                       0x104
 #define  AFI_FUSE_PCIE_T0_GEN2_DIS     (1 << 2)
@@ -741,6 +743,12 @@ static void tegra_pcie_port_disable(struct tegra_pcie_port *port)
 
        value &= ~AFI_PEX_CTRL_REFCLK_EN;
        afi_writel(port->pcie, value, ctrl);
+
+       /* disable PCIe port and set CLKREQ# as GPIO to allow PLLE power down */
+       value = afi_readl(port->pcie, AFI_PCIE_CONFIG);
+       value |= AFI_PCIE_CONFIG_PCIE_DISABLE(port->index);
+       value |= AFI_PCIE_CONFIG_PCIE_CLKREQ_GPIO(port->index);
+       afi_writel(port->pcie, value, AFI_PCIE_CONFIG);
 }
 
 static void tegra_pcie_port_free(struct tegra_pcie_port *port)
@@ -1153,9 +1161,12 @@ static void tegra_pcie_enable_controller(struct tegra_pcie *pcie)
        value = afi_readl(pcie, AFI_PCIE_CONFIG);
        value &= ~AFI_PCIE_CONFIG_SM2TMS0_XBAR_CONFIG_MASK;
        value |= AFI_PCIE_CONFIG_PCIE_DISABLE_ALL | pcie->xbar_config;
+       value |= AFI_PCIE_CONFIG_PCIE_CLKREQ_GPIO_ALL;
 
-       list_for_each_entry(port, &pcie->ports, list)
+       list_for_each_entry(port, &pcie->ports, list) {
                value &= ~AFI_PCIE_CONFIG_PCIE_DISABLE(port->index);
+               value &= ~AFI_PCIE_CONFIG_PCIE_CLKREQ_GPIO(port->index);
+       }
 
        afi_writel(pcie, value, AFI_PCIE_CONFIG);