]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ARM: tegra: common: Enable core clocks
authorColin Cross <ccross@android.com>
Tue, 22 Feb 2011 01:05:36 +0000 (17:05 -0800)
committerColin Cross <ccross@android.com>
Tue, 22 Feb 2011 22:48:37 +0000 (14:48 -0800)
Enable the cpu, emc (memory controller) and csite (debug and
trace controller) clocks during init to prevent them from
being disabled by the bootloader clock disabling code.

Signed-off-by: Colin Cross <ccross@android.com>
Acked-by: Olof Johansson <olof@lixom.net>
arch/arm/mach-tegra/common.c

index 14fa533b1e201d23265a4854d38451759b919094..516e1000ebb4cb7b2d001e5c3abc2076b3f993a4 100644 (file)
@@ -56,6 +56,9 @@ static __initdata struct tegra_clk_init_table common_clk_init_table[] = {
        { "sclk",       "pll_p_out4",   108000000,      true },
        { "hclk",       "sclk",         108000000,      true },
        { "pclk",       "hclk",         54000000,       true },
+       { "csite",      NULL,           0,              true },
+       { "emc",        NULL,           0,              true },
+       { "cpu",        NULL,           0,              true },
        { NULL,         NULL,           0,              0},
 };