15 #include <linux/kernel.h>
16 #include <linux/types.h>
18 #include <linux/list.h>
22 #include <linux/string.h>
23 #include <linux/serial_core.h>
33 #include <asm/setup.h>
34 #include <mach/hardware.h>
39 #include <mach/regs-gpio.h>
46 #include <plat/clock.h>
56 #define UCON S3C2410_UCON_DEFAULT
57 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
58 #define UFCON S3C2410_UFCON_RXTRIG12 | S3C2410_UFCON_FIFOMODE
86 static struct resource nexcoder_nor_resource[] = {
90 static struct map_info nexcoder_nor_map = {
97 .num_resources =
ARRAY_SIZE(nexcoder_nor_resource),
98 .resource = nexcoder_nor_resource,
101 .platform_data = &nexcoder_nor_map,
117 &nexcoder_device_nor,
120 static void __init nexcoder_sensorboard_init(
void)
135 static void __init nexcoder_map_io(
void)
141 nexcoder_sensorboard_init();
144 static void __init nexcoder_init(
void)
152 .atag_offset = 0x100,
153 .map_io = nexcoder_map_io,
154 .init_machine = nexcoder_init,