diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-03-26 18:49:39 -0400 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2012-04-25 17:22:01 -0400 |
commit | 18b81fb733356025a6ad48b85092a0456e348ff0 (patch) | |
tree | 98299e45e3fed504421c79f48e04661916a0f9db /arch/arm/mach-tegra | |
parent | 6437626928467e81aa4a3087d88cd3f443b3e9ec (diff) |
ARM: tegra: set up audio clocks for tegra30 dt
Set up the audio clock tree for Tegra30 in an equivalent fashion to the
existing setup for Tegra20.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-tegra')
-rw-r--r-- | arch/arm/mach-tegra/board-dt-tegra30.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/board-dt-tegra30.c b/arch/arm/mach-tegra/board-dt-tegra30.c index 5f7c03e972f3..3de21c0b5461 100644 --- a/arch/arm/mach-tegra/board-dt-tegra30.c +++ b/arch/arm/mach-tegra/board-dt-tegra30.c | |||
@@ -57,6 +57,15 @@ struct of_dev_auxdata tegra30_auxdata_lookup[] __initdata = { | |||
57 | static __initdata struct tegra_clk_init_table tegra_dt_clk_init_table[] = { | 57 | static __initdata struct tegra_clk_init_table tegra_dt_clk_init_table[] = { |
58 | /* name parent rate enabled */ | 58 | /* name parent rate enabled */ |
59 | { "uarta", "pll_p", 408000000, true }, | 59 | { "uarta", "pll_p", 408000000, true }, |
60 | { "pll_a", "pll_p_out1", 564480000, true }, | ||
61 | { "pll_a_out0", "pll_a", 11289600, true }, | ||
62 | { "extern1", "pll_a_out0", 0, true }, | ||
63 | { "clk_out_1", "extern1", 0, true }, | ||
64 | { "i2s0", "pll_a_out0", 11289600, false}, | ||
65 | { "i2s1", "pll_a_out0", 11289600, false}, | ||
66 | { "i2s2", "pll_a_out0", 11289600, false}, | ||
67 | { "i2s3", "pll_a_out0", 11289600, false}, | ||
68 | { "i2s4", "pll_a_out0", 11289600, false}, | ||
60 | { NULL, NULL, 0, 0}, | 69 | { NULL, NULL, 0, 0}, |
61 | }; | 70 | }; |
62 | 71 | ||