diff options
Diffstat (limited to 'arch/arm/mach-exynos/mach-armlex4210.c')
-rw-r--r-- | arch/arm/mach-exynos/mach-armlex4210.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/arm/mach-exynos/mach-armlex4210.c b/arch/arm/mach-exynos/mach-armlex4210.c index f0ca6c157d29..d726fcd3acf9 100644 --- a/arch/arm/mach-exynos/mach-armlex4210.c +++ b/arch/arm/mach-exynos/mach-armlex4210.c | |||
@@ -16,11 +16,11 @@ | |||
16 | #include <linux/smsc911x.h> | 16 | #include <linux/smsc911x.h> |
17 | 17 | ||
18 | #include <asm/mach/arch.h> | 18 | #include <asm/mach/arch.h> |
19 | #include <asm/hardware/gic.h> | ||
19 | #include <asm/mach-types.h> | 20 | #include <asm/mach-types.h> |
20 | 21 | ||
21 | #include <plat/cpu.h> | 22 | #include <plat/cpu.h> |
22 | #include <plat/devs.h> | 23 | #include <plat/devs.h> |
23 | #include <plat/exynos4.h> | ||
24 | #include <plat/gpio-cfg.h> | 24 | #include <plat/gpio-cfg.h> |
25 | #include <plat/regs-serial.h> | 25 | #include <plat/regs-serial.h> |
26 | #include <plat/regs-srom.h> | 26 | #include <plat/regs-srom.h> |
@@ -28,6 +28,8 @@ | |||
28 | 28 | ||
29 | #include <mach/map.h> | 29 | #include <mach/map.h> |
30 | 30 | ||
31 | #include "common.h" | ||
32 | |||
31 | /* Following are default values for UCON, ULCON and UFCON UART registers */ | 33 | /* Following are default values for UCON, ULCON and UFCON UART registers */ |
32 | #define ARMLEX4210_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \ | 34 | #define ARMLEX4210_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \ |
33 | S3C2410_UCON_RXILEVEL | \ | 35 | S3C2410_UCON_RXILEVEL | \ |
@@ -187,7 +189,7 @@ static void __init armlex4210_smsc911x_init(void) | |||
187 | 189 | ||
188 | static void __init armlex4210_map_io(void) | 190 | static void __init armlex4210_map_io(void) |
189 | { | 191 | { |
190 | s5p_init_io(NULL, 0, S5P_VA_CHIPID); | 192 | exynos_init_io(NULL, 0); |
191 | s3c24xx_init_clocks(24000000); | 193 | s3c24xx_init_clocks(24000000); |
192 | s3c24xx_init_uarts(armlex4210_uartcfgs, | 194 | s3c24xx_init_uarts(armlex4210_uartcfgs, |
193 | ARRAY_SIZE(armlex4210_uartcfgs)); | 195 | ARRAY_SIZE(armlex4210_uartcfgs)); |
@@ -210,6 +212,8 @@ MACHINE_START(ARMLEX4210, "ARMLEX4210") | |||
210 | .atag_offset = 0x100, | 212 | .atag_offset = 0x100, |
211 | .init_irq = exynos4_init_irq, | 213 | .init_irq = exynos4_init_irq, |
212 | .map_io = armlex4210_map_io, | 214 | .map_io = armlex4210_map_io, |
215 | .handle_irq = gic_handle_irq, | ||
213 | .init_machine = armlex4210_machine_init, | 216 | .init_machine = armlex4210_machine_init, |
214 | .timer = &exynos4_timer, | 217 | .timer = &exynos4_timer, |
218 | .restart = exynos4_restart, | ||
215 | MACHINE_END | 219 | MACHINE_END |