]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
PCI: tegra: Enable PCIe xclk clock clamping
authorManikanta Maddireddy <mmaddireddy@nvidia.com>
Tue, 18 Jun 2019 18:01:51 +0000 (23:31 +0530)
committerLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Thu, 20 Jun 2019 16:21:31 +0000 (17:21 +0100)
Enable xclk clock clamping when entering L1. Clamp threshold will
determine the time spent waiting for clock module to turn on xclk after
signaling it. Default threshold value in Tegra124 and Tegra210 is not
enough to turn on xclk clock. Increase the clamp threshold to meet the
clock module timing in Tegra124 and Tegra210. Default threshold value is
enough in Tegra20, Tegra30 and Tegra186.

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 d079cde8d4bbc91179df2895241ad444723b3393..56648b2fa0ee0d9174d00a3cfbd43f24cdf0a611 100644 (file)
 #define  RP_VEND_CTL2_PCA_ENABLE (1 << 7)
 
 #define RP_PRIV_MISC   0x00000fe0
-#define  RP_PRIV_MISC_PRSNT_MAP_EP_PRSNT (0xe << 0)
-#define  RP_PRIV_MISC_PRSNT_MAP_EP_ABSNT (0xf << 0)
+#define  RP_PRIV_MISC_PRSNT_MAP_EP_PRSNT               (0xe << 0)
+#define  RP_PRIV_MISC_PRSNT_MAP_EP_ABSNT               (0xf << 0)
+#define  RP_PRIV_MISC_CTLR_CLK_CLAMP_THRESHOLD_MASK    (0x7f << 16)
+#define  RP_PRIV_MISC_CTLR_CLK_CLAMP_THRESHOLD         (0xf << 16)
+#define  RP_PRIV_MISC_CTLR_CLK_CLAMP_ENABLE            (1 << 23)
+#define  RP_PRIV_MISC_TMS_CLK_CLAMP_THRESHOLD_MASK     (0x7f << 24)
+#define  RP_PRIV_MISC_TMS_CLK_CLAMP_THRESHOLD          (0xf << 24)
+#define  RP_PRIV_MISC_TMS_CLK_CLAMP_ENABLE             (1 << 31)
 
 #define RP_LINK_CONTROL_STATUS                 0x00000090
 #define  RP_LINK_CONTROL_STATUS_DL_LINK_ACTIVE 0x20000000
@@ -298,6 +304,7 @@ struct tegra_pcie_soc {
        bool has_gen2;
        bool force_pca_enable;
        bool program_uphy;
+       bool update_clamp_threshold;
        struct {
                struct {
                        u32 rp_ectl_2_r1;
@@ -529,6 +536,7 @@ static void tegra_pcie_port_reset(struct tegra_pcie_port *port)
 
 static void tegra_pcie_enable_rp_features(struct tegra_pcie_port *port)
 {
+       const struct tegra_pcie_soc *soc = port->pcie->soc;
        u32 value;
 
        /* Enable AER capability */
@@ -549,6 +557,19 @@ static void tegra_pcie_enable_rp_features(struct tegra_pcie_port *port)
        value = readl(port->base + RP_VEND_XP_BIST);
        value |= RP_VEND_XP_BIST_GOTO_L1_L2_AFTER_DLLP_DONE;
        writel(value, port->base + RP_VEND_XP_BIST);
+
+       value = readl(port->base + RP_PRIV_MISC);
+       value |= RP_PRIV_MISC_CTLR_CLK_CLAMP_ENABLE;
+       value |= RP_PRIV_MISC_TMS_CLK_CLAMP_ENABLE;
+
+       if (soc->update_clamp_threshold) {
+               value &= ~(RP_PRIV_MISC_CTLR_CLK_CLAMP_THRESHOLD_MASK |
+                               RP_PRIV_MISC_TMS_CLK_CLAMP_THRESHOLD_MASK);
+               value |= RP_PRIV_MISC_CTLR_CLK_CLAMP_THRESHOLD |
+                       RP_PRIV_MISC_TMS_CLK_CLAMP_THRESHOLD;
+       }
+
+       writel(value, port->base + RP_PRIV_MISC);
 }
 
 static void tegra_pcie_program_ectl_settings(struct tegra_pcie_port *port)
@@ -2353,6 +2374,7 @@ static const struct tegra_pcie_soc tegra20_pcie = {
        .has_gen2 = false,
        .force_pca_enable = false,
        .program_uphy = true,
+       .update_clamp_threshold = false,
        .ectl.enable = false,
 };
 
@@ -2377,6 +2399,7 @@ static const struct tegra_pcie_soc tegra30_pcie = {
        .has_gen2 = false,
        .force_pca_enable = false,
        .program_uphy = true,
+       .update_clamp_threshold = false,
        .ectl.enable = false,
 };
 
@@ -2394,6 +2417,7 @@ static const struct tegra_pcie_soc tegra124_pcie = {
        .has_gen2 = true,
        .force_pca_enable = false,
        .program_uphy = true,
+       .update_clamp_threshold = true,
        .ectl.enable = false,
 };
 
@@ -2411,6 +2435,7 @@ static const struct tegra_pcie_soc tegra210_pcie = {
        .has_gen2 = true,
        .force_pca_enable = true,
        .program_uphy = true,
+       .update_clamp_threshold = true,
        .ectl = {
                .regs = {
                        .rp_ectl_2_r1 = 0x0000000f,
@@ -2447,6 +2472,7 @@ static const struct tegra_pcie_soc tegra186_pcie = {
        .has_gen2 = true,
        .force_pca_enable = false,
        .program_uphy = false,
+       .update_clamp_threshold = false,
        .ectl.enable = false,
 };