diff options
author | Joseph Lo <josephl@nvidia.com> | 2012-10-29 14:25:29 +0400 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2012-11-05 22:36:22 +0400 |
commit | d534b5d4a530d2d1597c3ffb9e896a3499da6172 (patch) | |
tree | 0aea20ae49923d70ad7322fb5f5534386027e7c0 /arch/arm/mach-tegra/common.c | |
parent | 25804d8123e9c1657694844b10fcd7834493e41a (diff) | |
download | linux-d534b5d4a530d2d1597c3ffb9e896a3499da6172.tar.xz |
ARM: tegra30: clocks: add AHB and APB clocks
Adding the AHB and APB bus clock for Tegra30.
Signed-off-by: Joseph Lo <josephl@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/common.c')
-rw-r--r-- | arch/arm/mach-tegra/common.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c index f688daa74978..3f55a3615413 100644 --- a/arch/arm/mach-tegra/common.c +++ b/arch/arm/mach-tegra/common.c @@ -104,6 +104,10 @@ static __initdata struct tegra_clk_init_table tegra30_clk_init_table[] = { { "clk_m", NULL, 0, true }, { "pll_p", "clk_m", 408000000, true }, { "pll_p_out1", "pll_p", 9600000, true }, + { "pll_p_out4", "pll_p", 102000000, true }, + { "sclk", "pll_p_out4", 102000000, true }, + { "hclk", "sclk", 102000000, true }, + { "pclk", "hclk", 51000000, true }, { NULL, NULL, 0, 0}, }; #endif |