1 // SPDX-License-Identifier: GPL-2.0
3 // Copyright (c) 2004 Nex Vision
4 // Guillaume GOURAT <guillaume.gourat@nexvision.fr>
6 #include <linux/kernel.h>
7 #include <linux/types.h>
8 #include <linux/interrupt.h>
9 #include <linux/list.h>
10 #include <linux/timer.h>
11 #include <linux/init.h>
12 #include <linux/serial_core.h>
13 #include <linux/serial_s3c.h>
14 #include <linux/platform_device.h>
17 #include <linux/platform_data/i2c-s3c2410.h>
20 #include <asm/mach-types.h>
21 #include <asm/mach/arch.h>
22 #include <asm/mach/map.h>
23 #include <asm/mach/irq.h>
25 #include <mach/hardware.h>
26 #include <mach/regs-gpio.h>
29 #include <plat/devs.h>
30 #include <plat/samsung-time.h>
35 static struct map_desc otom11_iodesc
[] __initdata
= {
37 { (u32
)OTOM_VA_CS8900A_BASE
, OTOM_PA_CS8900A_BASE
, SZ_16M
, MT_DEVICE
},
40 #define UCON S3C2410_UCON_DEFAULT
41 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
42 #define UFCON S3C2410_UFCON_RXTRIG12 | S3C2410_UFCON_FIFOMODE
44 static struct s3c2410_uartcfg otom11_uartcfgs
[] __initdata
= {
59 /* port 2 is not actually used */
69 /* NOR Flash on NexVision OTOM board */
71 static struct resource otom_nor_resource
[] = {
72 [0] = DEFINE_RES_MEM(S3C2410_CS0
, SZ_4M
),
75 static struct platform_device otom_device_nor
= {
78 .num_resources
= ARRAY_SIZE(otom_nor_resource
),
79 .resource
= otom_nor_resource
,
82 /* Standard OTOM devices */
84 static struct platform_device
*otom11_devices
[] __initdata
= {
94 static void __init
otom11_map_io(void)
96 s3c24xx_init_io(otom11_iodesc
, ARRAY_SIZE(otom11_iodesc
));
97 s3c24xx_init_uarts(otom11_uartcfgs
, ARRAY_SIZE(otom11_uartcfgs
));
98 samsung_set_timer_source(SAMSUNG_PWM3
, SAMSUNG_PWM4
);
101 static void __init
otom11_init_time(void)
103 s3c2410_init_clocks(12000000);
104 samsung_timer_init();
107 static void __init
otom11_init(void)
109 s3c_i2c0_set_platdata(NULL
);
110 platform_add_devices(otom11_devices
, ARRAY_SIZE(otom11_devices
));
113 MACHINE_START(OTOM
, "Nex Vision - Otom 1.1")
114 /* Maintainer: Guillaume GOURAT <guillaume.gourat@nexvision.tv> */
115 .atag_offset
= 0x100,
116 .map_io
= otom11_map_io
,
117 .init_machine
= otom11_init
,
118 .init_irq
= s3c2410_init_irq
,
119 .init_time
= otom11_init_time
,