diff options
author | Colin Cross <[email protected]> | 2011-02-21 17:05:36 -0800 |
---|---|---|
committer | Colin Cross <[email protected]> | 2011-02-22 14:48:37 -0800 |
commit | cd51d0edecc37f1061a5091450e6c7e2a8a16d68 (patch) | |
tree | 952a985f483d1e7cd9049a12fb42bf79f8ab1ce8 | |
parent | 62248ae826f51ac2e3d3902c0a657043d95b731c (diff) |
ARM: tegra: common: Enable core clocks
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 <[email protected]>
Acked-by: Olof Johansson <[email protected]>
-rw-r--r-- | arch/arm/mach-tegra/common.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c index 14fa533b1e20..516e1000ebb4 100644 --- a/arch/arm/mach-tegra/common.c +++ b/arch/arm/mach-tegra/common.c @@ -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}, }; |