diff options
Diffstat (limited to 'arch/arm/mach-exynos/mach-nuri.c')
-rw-r--r-- | arch/arm/mach-exynos/mach-nuri.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c index 205dfed41210..b895ec031105 100644 --- a/arch/arm/mach-exynos/mach-nuri.c +++ b/arch/arm/mach-exynos/mach-nuri.c | |||
@@ -32,12 +32,12 @@ | |||
32 | #include <media/v4l2-mediabus.h> | 32 | #include <media/v4l2-mediabus.h> |
33 | 33 | ||
34 | #include <asm/mach/arch.h> | 34 | #include <asm/mach/arch.h> |
35 | #include <asm/hardware/gic.h> | ||
35 | #include <asm/mach-types.h> | 36 | #include <asm/mach-types.h> |
36 | 37 | ||
37 | #include <plat/adc.h> | 38 | #include <plat/adc.h> |
38 | #include <plat/regs-fb-v4.h> | 39 | #include <plat/regs-fb-v4.h> |
39 | #include <plat/regs-serial.h> | 40 | #include <plat/regs-serial.h> |
40 | #include <plat/exynos4.h> | ||
41 | #include <plat/cpu.h> | 41 | #include <plat/cpu.h> |
42 | #include <plat/devs.h> | 42 | #include <plat/devs.h> |
43 | #include <plat/fb.h> | 43 | #include <plat/fb.h> |
@@ -54,6 +54,8 @@ | |||
54 | 54 | ||
55 | #include <mach/map.h> | 55 | #include <mach/map.h> |
56 | 56 | ||
57 | #include "common.h" | ||
58 | |||
57 | /* Following are default values for UCON, ULCON and UFCON UART registers */ | 59 | /* Following are default values for UCON, ULCON and UFCON UART registers */ |
58 | #define NURI_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \ | 60 | #define NURI_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \ |
59 | S3C2410_UCON_RXILEVEL | \ | 61 | S3C2410_UCON_RXILEVEL | \ |
@@ -1278,7 +1280,7 @@ static struct platform_device *nuri_devices[] __initdata = { | |||
1278 | 1280 | ||
1279 | static void __init nuri_map_io(void) | 1281 | static void __init nuri_map_io(void) |
1280 | { | 1282 | { |
1281 | s5p_init_io(NULL, 0, S5P_VA_CHIPID); | 1283 | exynos_init_io(NULL, 0); |
1282 | s3c24xx_init_clocks(24000000); | 1284 | s3c24xx_init_clocks(24000000); |
1283 | s3c24xx_init_uarts(nuri_uartcfgs, ARRAY_SIZE(nuri_uartcfgs)); | 1285 | s3c24xx_init_uarts(nuri_uartcfgs, ARRAY_SIZE(nuri_uartcfgs)); |
1284 | } | 1286 | } |
@@ -1328,7 +1330,9 @@ MACHINE_START(NURI, "NURI") | |||
1328 | .atag_offset = 0x100, | 1330 | .atag_offset = 0x100, |
1329 | .init_irq = exynos4_init_irq, | 1331 | .init_irq = exynos4_init_irq, |
1330 | .map_io = nuri_map_io, | 1332 | .map_io = nuri_map_io, |
1333 | .handle_irq = gic_handle_irq, | ||
1331 | .init_machine = nuri_machine_init, | 1334 | .init_machine = nuri_machine_init, |
1332 | .timer = &exynos4_timer, | 1335 | .timer = &exynos4_timer, |
1333 | .reserve = &nuri_reserve, | 1336 | .reserve = &nuri_reserve, |
1337 | .restart = exynos4_restart, | ||
1334 | MACHINE_END | 1338 | MACHINE_END |