]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
clk: tegra: Disable spread spectrum on pll_d2
authorThierry Reding <treding@nvidia.com>
Wed, 5 Aug 2015 14:29:40 +0000 (16:29 +0200)
committerThierry Reding <treding@nvidia.com>
Fri, 17 Jun 2016 15:24:08 +0000 (17:24 +0200)
Enabling spread spectrum on pll_d2 can lead to issues with display
modes. HDMI monitors, for example, would report "Signal Error" and
some modes driven over DisplayPort would generate fuzzy horizontal
bands.

Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/clk/tegra/clk-tegra210.c

index 6149573368effa06d25365c7318f155ebc52d1e7..c1fabd82aa1aca2325fb640afa88074c4c291868 100644 (file)
@@ -1935,8 +1935,9 @@ static struct tegra_clk_pll_params pll_d2_params = {
        .sdm_din_mask = PLLA_SDM_DIN_MASK,
        .sdm_ctrl_reg = PLLD2_MISC1,
        .sdm_ctrl_en_mask = PLLD2_SDM_EN_MASK,
-       .ssc_ctrl_reg = PLLD2_MISC1,
-       .ssc_ctrl_en_mask = PLLD2_SSC_EN_MASK,
+       /* disable spread-spectrum for pll_d2 */
+       .ssc_ctrl_reg = 0,
+       .ssc_ctrl_en_mask = 0,
        .round_p_to_pdiv = pll_qlin_p_to_pdiv,
        .pdiv_tohw = pll_qlin_pdiv_to_hw,
        .div_nmp = &pllss_nmp,