From: Colin Cross Date: Thu, 9 Sep 2010 02:45:30 +0000 (-0700) Subject: [ARM] tegra: common: Enable clocks that should always be on X-Git-Tag: firefly_0821_release~9833^2~142^2~24 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=20d2474a1ed41c8f6c19c81418875cb5ca0d2eca;p=firefly-linux-kernel-4.4.55.git [ARM] tegra: common: Enable clocks that should always be on Change-Id: Ic2cb51d54b0a75081672acf0bccbc859d817cd88 Signed-off-by: Colin Cross --- diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c index 09fdecfc2456..6cc0a00fc609 100644 --- a/arch/arm/mach-tegra/common.c +++ b/arch/arm/mach-tegra/common.c @@ -52,6 +52,7 @@ unsigned long tegra_grhost_aperture; void (*tegra_reset)(char mode, const char *cmd); static __initdata struct tegra_clk_init_table common_clk_init_table[] = { + /* set up clocks that should always be on */ /* name parent rate enabled */ { "clk_m", NULL, 0, true }, { "pll_p", "clk_m", 216000000, true }, @@ -62,6 +63,14 @@ static __initdata struct tegra_clk_init_table common_clk_init_table[] = { { "sclk", "pll_m_out1", 240000000, true }, { "hclk", "sclk", 240000000, true }, { "pclk", "hclk", 120000000, true }, + { "pll_x", NULL, 0, true }, + { "cpu", NULL, 0, true }, + { "emc", NULL, 0, true }, + { "csite", NULL, 0, true }, + { "timer", NULL, 0, true }, + { "rtc", NULL, 0, true }, + + /* set frequencies of some device clocks */ { "pll_u", "clk_m", 480000000, false }, { "sdmmc1", "pll_p", 48000000, false}, { "sdmmc2", "pll_p", 48000000, false},