aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-s5pv310/cpu.c
diff options
context:
space:
mode:
authorKukjin Kim <kgene.kim@samsung.com>2010-08-18 21:45:49 +0900
committerKukjin Kim <kgene.kim@samsung.com>2010-08-27 18:04:37 +0900
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 = {
.pfn = __phys_to_pfn(S5PV310_PA_L2CC),
.length = SZ_4K,
.type = MT_DEVICE,
- },
+ }, {
+ .virtual = (unsigned long)S5P_VA_CMU,
+ .pfn = __phys_to_pfn(S5PV310_PA_CMU),
+ .length = SZ_128K,
+ .type = MT_DEVICE,
+ }
};
static void s5pv310_idle(void)