diff options
Diffstat (limited to 'arch/arm/mach-s5p64x0/mach-smdk6450.c')
-rw-r--r-- | arch/arm/mach-s5p64x0/mach-smdk6450.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/arm/mach-s5p64x0/mach-smdk6450.c b/arch/arm/mach-s5p64x0/mach-smdk6450.c index 0ab129ecf009..135cf5d84737 100644 --- a/arch/arm/mach-s5p64x0/mach-smdk6450.c +++ b/arch/arm/mach-s5p64x0/mach-smdk6450.c | |||
@@ -27,6 +27,7 @@ | |||
27 | 27 | ||
28 | #include <video/platform_lcd.h> | 28 | #include <video/platform_lcd.h> |
29 | 29 | ||
30 | #include <asm/hardware/vic.h> | ||
30 | #include <asm/mach/arch.h> | 31 | #include <asm/mach/arch.h> |
31 | #include <asm/mach/map.h> | 32 | #include <asm/mach/map.h> |
32 | #include <asm/irq.h> | 33 | #include <asm/irq.h> |
@@ -40,7 +41,6 @@ | |||
40 | 41 | ||
41 | #include <plat/regs-serial.h> | 42 | #include <plat/regs-serial.h> |
42 | #include <plat/gpio-cfg.h> | 43 | #include <plat/gpio-cfg.h> |
43 | #include <plat/s5p6450.h> | ||
44 | #include <plat/clock.h> | 44 | #include <plat/clock.h> |
45 | #include <plat/devs.h> | 45 | #include <plat/devs.h> |
46 | #include <plat/cpu.h> | 46 | #include <plat/cpu.h> |
@@ -53,6 +53,8 @@ | |||
53 | #include <plat/fb.h> | 53 | #include <plat/fb.h> |
54 | #include <plat/regs-fb.h> | 54 | #include <plat/regs-fb.h> |
55 | 55 | ||
56 | #include "common.h" | ||
57 | |||
56 | #define SMDK6450_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \ | 58 | #define SMDK6450_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \ |
57 | S3C2410_UCON_RXILEVEL | \ | 59 | S3C2410_UCON_RXILEVEL | \ |
58 | S3C2410_UCON_TXIRQMODE | \ | 60 | S3C2410_UCON_TXIRQMODE | \ |
@@ -221,7 +223,7 @@ static struct platform_pwm_backlight_data smdk6450_bl_data = { | |||
221 | 223 | ||
222 | static void __init smdk6450_map_io(void) | 224 | static void __init smdk6450_map_io(void) |
223 | { | 225 | { |
224 | s5p_init_io(NULL, 0, S5P64X0_SYS_ID); | 226 | s5p64x0_init_io(NULL, 0); |
225 | s3c24xx_init_clocks(19200000); | 227 | s3c24xx_init_clocks(19200000); |
226 | s3c24xx_init_uarts(smdk6450_uartcfgs, ARRAY_SIZE(smdk6450_uartcfgs)); | 228 | s3c24xx_init_uarts(smdk6450_uartcfgs, ARRAY_SIZE(smdk6450_uartcfgs)); |
227 | s5p_set_timer_source(S5P_PWM3, S5P_PWM4); | 229 | s5p_set_timer_source(S5P_PWM3, S5P_PWM4); |
@@ -262,7 +264,9 @@ MACHINE_START(SMDK6450, "SMDK6450") | |||
262 | .atag_offset = 0x100, | 264 | .atag_offset = 0x100, |
263 | 265 | ||
264 | .init_irq = s5p6450_init_irq, | 266 | .init_irq = s5p6450_init_irq, |
267 | .handle_irq = vic_handle_irq, | ||
265 | .map_io = smdk6450_map_io, | 268 | .map_io = smdk6450_map_io, |
266 | .init_machine = smdk6450_machine_init, | 269 | .init_machine = smdk6450_machine_init, |
267 | .timer = &s5p_timer, | 270 | .timer = &s5p_timer, |
271 | .restart = s5p64x0_restart, | ||
268 | MACHINE_END | 272 | MACHINE_END |