2 * linux/arch/arm/mach-s3c64xx/mach-ncp.c
4 * Copyright (C) 2008-2009 Samsung Electronics
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/types.h>
14 #include <linux/interrupt.h>
15 #include <linux/list.h>
16 #include <linux/timer.h>
17 #include <linux/init.h>
18 #include <linux/serial_core.h>
19 #include <linux/platform_device.h>
21 #include <linux/i2c.h>
23 #include <linux/gpio.h>
24 #include <linux/delay.h>
26 #include <video/platform_lcd.h>
28 #include <asm/mach/arch.h>
29 #include <asm/mach/map.h>
30 #include <asm/mach/irq.h>
32 #include <mach/hardware.h>
36 #include <asm/mach-types.h>
38 #include <plat/regs-serial.h>
42 #include <mach/s3c6410.h>
43 #include <plat/clock.h>
44 #include <plat/devs.h>
46 #include <plat/regs-fb-v4.h>
48 #define UCON S3C2410_UCON_DEFAULT
49 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE
50 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
52 static struct s3c2410_uartcfg ncp_uartcfgs
[] __initdata
= {
53 /* REVISIT: NCP uses only serial 1, 2 */
77 static struct platform_device
*ncp_devices
[] __initdata
= {
82 static struct map_desc ncp_iodesc
[] __initdata
= {};
84 static void __init
ncp_map_io(void)
86 s3c64xx_init_io(ncp_iodesc
, ARRAY_SIZE(ncp_iodesc
));
87 s3c24xx_init_clocks(12000000);
88 s3c24xx_init_uarts(ncp_uartcfgs
, ARRAY_SIZE(ncp_uartcfgs
));
91 static void __init
ncp_machine_init(void)
93 s3c_i2c0_set_platdata(NULL
);
95 platform_add_devices(ncp_devices
, ARRAY_SIZE(ncp_devices
));
98 MACHINE_START(NCP
, "NCP")
99 /* Maintainer: Samsung Electronics */
100 .atag_offset
= 0x100,
101 .init_irq
= s3c6410_init_irq
,
102 .map_io
= ncp_map_io
,
103 .init_machine
= ncp_machine_init
,
104 .timer
= &s3c24xx_timer
,