diff options
author | Sangbeom Kim <sbkim73@samsung.com> | 2011-03-11 18:02:12 -0500 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-03-11 18:02:12 -0500 |
commit | 20780fcc4091897797979985868b1572dc7d78d9 (patch) | |
tree | 4346ccd4b58a74e119e3a9bc4e24f9874ef39017 /arch/arm/mach-s5pv210/mach-smdkv210.c | |
parent | f8bfff8e4c3c3d447fe12e3c0e3a36f3bdd891b5 (diff) |
ARM: S5P: Update machine of S5P64X0 and S5PV210 for HRT
This patch adds support HRT for machines of S5P64X0 and S5PV210.
Basically, PWM Timer3 is used for clockevent and PWM Timer4 is
used for clocksource. Since PWM Timer3 is used for other purpose,
PWM Timer2 is used on SMDKV210.
Signed-off-by: Sangbeom Kim <sbkim73@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s5pv210/mach-smdkv210.c')
-rw-r--r-- | arch/arm/mach-s5pv210/mach-smdkv210.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-s5pv210/mach-smdkv210.c b/arch/arm/mach-s5pv210/mach-smdkv210.c index 2b5f48806c57..bc08ac42e7cc 100644 --- a/arch/arm/mach-s5pv210/mach-smdkv210.c +++ b/arch/arm/mach-s5pv210/mach-smdkv210.c | |||
@@ -45,6 +45,7 @@ | |||
45 | #include <plat/pm.h> | 45 | #include <plat/pm.h> |
46 | #include <plat/fb.h> | 46 | #include <plat/fb.h> |
47 | #include <plat/gpio-cfg.h> | 47 | #include <plat/gpio-cfg.h> |
48 | #include <plat/s5p-time.h> | ||
48 | 49 | ||
49 | /* Following are default values for UCON, ULCON and UFCON UART registers */ | 50 | /* Following are default values for UCON, ULCON and UFCON UART registers */ |
50 | #define SMDKV210_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \ | 51 | #define SMDKV210_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \ |
@@ -315,6 +316,7 @@ static void __init smdkv210_map_io(void) | |||
315 | s5p_init_io(NULL, 0, S5P_VA_CHIPID); | 316 | s5p_init_io(NULL, 0, S5P_VA_CHIPID); |
316 | s3c24xx_init_clocks(24000000); | 317 | s3c24xx_init_clocks(24000000); |
317 | s3c24xx_init_uarts(smdkv210_uartcfgs, ARRAY_SIZE(smdkv210_uartcfgs)); | 318 | s3c24xx_init_uarts(smdkv210_uartcfgs, ARRAY_SIZE(smdkv210_uartcfgs)); |
319 | s5p_set_timer_source(S5P_PWM2, S5P_PWM4); | ||
318 | } | 320 | } |
319 | 321 | ||
320 | static void __init smdkv210_machine_init(void) | 322 | static void __init smdkv210_machine_init(void) |
@@ -349,5 +351,5 @@ MACHINE_START(SMDKV210, "SMDKV210") | |||
349 | .init_irq = s5pv210_init_irq, | 351 | .init_irq = s5pv210_init_irq, |
350 | .map_io = smdkv210_map_io, | 352 | .map_io = smdkv210_map_io, |
351 | .init_machine = smdkv210_machine_init, | 353 | .init_machine = smdkv210_machine_init, |
352 | .timer = &s3c24xx_timer, | 354 | .timer = &s5p_timer, |
353 | MACHINE_END | 355 | MACHINE_END |