diff options
author | Sandeep Paulraj <s-paulraj@ti.com> | 2009-06-11 09:41:05 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-08-26 03:56:57 -0400 |
commit | fb8fcb891390639d6258c816abb537663495da0c (patch) | |
tree | 41172c12bc61a3b14d7d613d7f3f133215680a13 /arch/arm/mach-davinci/clock.c | |
parent | 5fcd294df26e6160f32ea551ef074630b4df728d (diff) |
davinci: Adding DM365 SOC Support
The patch adds base support for new TI SOC DM365, which s
similar to the dm355.
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/clock.c')
-rw-r--r-- | arch/arm/mach-davinci/clock.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/clock.c b/arch/arm/mach-davinci/clock.c index 39bf321d70a2..83d54d50b5ea 100644 --- a/arch/arm/mach-davinci/clock.c +++ b/arch/arm/mach-davinci/clock.c | |||
@@ -227,7 +227,10 @@ static void __init clk_pll_init(struct clk *clk) | |||
227 | if (ctrl & PLLCTL_PLLEN) { | 227 | if (ctrl & PLLCTL_PLLEN) { |
228 | bypass = 0; | 228 | bypass = 0; |
229 | mult = __raw_readl(pll->base + PLLM); | 229 | mult = __raw_readl(pll->base + PLLM); |
230 | mult = (mult & PLLM_PLLM_MASK) + 1; | 230 | if (cpu_is_davinci_dm365()) |
231 | mult = 2 * (mult & PLLM_PLLM_MASK); | ||
232 | else | ||
233 | mult = (mult & PLLM_PLLM_MASK) + 1; | ||
231 | } else | 234 | } else |
232 | bypass = 1; | 235 | bypass = 1; |
233 | 236 | ||