From: Colin Cross Date: Tue, 22 Feb 2011 01:05:36 +0000 (-0800) Subject: ARM: tegra: common: Enable core clocks X-Git-Tag: v2.6.39-rc1~87^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd51d0edecc37f1061a5091450e6c7e2a8a16d68;p=platform%2Fkernel%2Flinux-3.10.git 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 Acked-by: Olof Johansson --- diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c index 14fa533b..516e100 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}, };