]> Pileus Git - ~andy/linux/commitdiff
clk: tegra30: Don't wait for PLL_U lock bit
authorTuomas Tynkkynen <ttynkkynen@nvidia.com>
Wed, 28 Aug 2013 15:18:47 +0000 (18:18 +0300)
committerMike Turquette <mturquette@linaro.org>
Thu, 29 Aug 2013 02:08:09 +0000 (19:08 -0700)
The lock bit on PLL_U does not seem to be working correctly and
sometimes never gets set when waiting for the PLL to come up.
Remove the TEGRA_PLL_USE_LOCK flag to use a constant delay.

Signed-off-by: Tuomas Tynkkynen <ttynkkynen@nvidia.com>
Tested-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
drivers/clk/tegra/clk-tegra30.c

index b09ebf64cdc8fae12fb3b4a9753d2d70b6553bbf..dbe7c8003c5c4392244b7161e5b7771634e7e8c3 100644 (file)
@@ -971,7 +971,7 @@ static void __init tegra30_pll_init(void)
        /* PLLU */
        clk = tegra_clk_register_pll("pll_u", "pll_ref", clk_base, pmc_base, 0,
                            0, &pll_u_params, TEGRA_PLLU | TEGRA_PLL_HAS_CPCON |
-                           TEGRA_PLL_SET_LFCON | TEGRA_PLL_USE_LOCK,
+                           TEGRA_PLL_SET_LFCON,
                            pll_u_freq_table,
                            NULL);
        clk_register_clkdev(clk, "pll_u", NULL);