aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s5pv310/cpu.c
diff options
context:
space:
mode:
authorKukjin Kim <kgene.kim@samsung.com>2010-08-18 08:45:49 -0400
committerKukjin Kim <kgene.kim@samsung.com>2010-08-27 05:04:37 -0400
commitc598c47d85cbc0ac04ba808a696d774baa7a0a34 (patch)
tree4412bb9dd9e0cf6184f46c6826929a8eebaf5fe2 /arch/arm/mach-s5pv310/cpu.c
parent35fc950bd5889d62c34e67199a73ea49733614f7 (diff)
ARM: S5PV310: Add CMU block for S5PV310 Clock
This patch adds CMU block for S5PV310/S5PC210 clock. (CMU: Clock Management Unit) Of course, changed current clock addresses for it together. Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s5pv310/cpu.c')
-rw-r--r--arch/arm/mach-s5pv310/cpu.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/mach-s5pv310/cpu.c b/arch/arm/mach-s5pv310/cpu.c
index 196c9f12ed85..2b742957d566 100644
--- a/arch/arm/mach-s5pv310/cpu.c
+++ b/arch/arm/mach-s5pv310/cpu.c
@@ -45,7 +45,12 @@ static struct map_desc s5pv310_iodesc[] __initdata = {
45 .pfn = __phys_to_pfn(S5PV310_PA_L2CC), 45 .pfn = __phys_to_pfn(S5PV310_PA_L2CC),
46 .length = SZ_4K, 46 .length = SZ_4K,
47 .type = MT_DEVICE, 47 .type = MT_DEVICE,
48 }, 48 }, {
49 .virtual = (unsigned long)S5P_VA_CMU,
50 .pfn = __phys_to_pfn(S5PV310_PA_CMU),
51 .length = SZ_128K,
52 .type = MT_DEVICE,
53 }
49}; 54};
50 55
51static void s5pv310_idle(void) 56static void s5pv310_idle(void)