blob: 7e16b0740ec1eb02208aba8a0f4dc72f13e300fc [file] [log] [blame]
Kukjin Kim0afdff52013-01-02 10:32:55 -08001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (c) 2004 Nex Vision
4 * Guillaume GOURAT <guillaume.gourat@nexvision.fr>
5 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11#include <linux/kernel.h>
12#include <linux/types.h>
13#include <linux/interrupt.h>
14#include <linux/list.h>
15#include <linux/timer.h>
16#include <linux/init.h>
Ben Dooksb6d1f542006-12-17 23:22:26 +010017#include <linux/serial_core.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010018#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010019#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Kukjin Kim0afdff52013-01-02 10:32:55 -080021#include <linux/platform_data/i2c-s3c2410.h>
22
23#include <asm/irq.h>
24#include <asm/mach-types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/mach/arch.h>
26#include <asm/mach/map.h>
27#include <asm/mach/irq.h>
28
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/hardware.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010030#include <mach/regs-gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Ben Dooksd5120ae2008-10-07 23:09:51 +010032#include <plat/clock.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010033#include <plat/cpu.h>
Kukjin Kim0afdff52013-01-02 10:32:55 -080034#include <plat/devs.h>
35#include <plat/regs-serial.h>
Romain Naour7f78b6e2013-01-09 18:47:04 -080036#include <plat/samsung-time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Kukjin Kimb27b0722012-01-03 14:02:03 +010038#include "common.h"
Kukjin Kim0afdff52013-01-02 10:32:55 -080039#include "otom.h"
Kukjin Kimb27b0722012-01-03 14:02:03 +010040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static struct map_desc otom11_iodesc[] __initdata = {
42 /* Device area */
43 { (u32)OTOM_VA_CS8900A_BASE, OTOM_PA_CS8900A_BASE, SZ_16M, MT_DEVICE },
44};
45
46#define UCON S3C2410_UCON_DEFAULT
47#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
48#define UFCON S3C2410_UFCON_RXTRIG12 | S3C2410_UFCON_FIFOMODE
49
Ben Dooks66a9b492006-06-18 23:04:05 +010050static struct s3c2410_uartcfg otom11_uartcfgs[] __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 [0] = {
52 .hwport = 0,
53 .flags = 0,
54 .ucon = UCON,
55 .ulcon = ULCON,
56 .ufcon = UFCON,
57 },
58 [1] = {
59 .hwport = 1,
60 .flags = 0,
61 .ucon = UCON,
62 .ulcon = ULCON,
63 .ufcon = UFCON,
64 },
65 /* port 2 is not actually used */
66 [2] = {
67 .hwport = 2,
68 .flags = 0,
69 .ucon = UCON,
70 .ulcon = ULCON,
71 .ufcon = UFCON,
72 }
73};
74
75/* NOR Flash on NexVision OTOM board */
76
77static struct resource otom_nor_resource[] = {
Tushar Beherae21be382012-05-12 16:12:24 +090078 [0] = DEFINE_RES_MEM(S3C2410_CS0, SZ_4M),
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
81static struct platform_device otom_device_nor = {
82 .name = "mtd-flash",
83 .id = -1,
84 .num_resources = ARRAY_SIZE(otom_nor_resource),
85 .resource = otom_nor_resource,
86};
87
88/* Standard OTOM devices */
89
90static struct platform_device *otom11_devices[] __initdata = {
Ben Dooksb8132482009-11-23 00:13:39 +000091 &s3c_device_ohci,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 &s3c_device_lcd,
93 &s3c_device_wdt,
Ben Dooks3e1b7762008-10-31 16:14:40 +000094 &s3c_device_i2c0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 &s3c_device_iis,
96 &s3c_device_rtc,
97 &otom_device_nor,
98};
99
Ben Dooks5fe10ab2005-09-20 17:24:33 +0100100static void __init otom11_map_io(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 s3c24xx_init_io(otom11_iodesc, ARRAY_SIZE(otom11_iodesc));
103 s3c24xx_init_clocks(0);
104 s3c24xx_init_uarts(otom11_uartcfgs, ARRAY_SIZE(otom11_uartcfgs));
Romain Naour7f78b6e2013-01-09 18:47:04 -0800105 samsung_set_timer_source(SAMSUNG_PWM3, SAMSUNG_PWM4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Ben Dooks57e51712007-04-20 11:19:16 +0100108static void __init otom11_init(void)
109{
Ben Dooks3e1b7762008-10-31 16:14:40 +0000110 s3c_i2c0_set_platdata(NULL);
Ben Dooks57e51712007-04-20 11:19:16 +0100111 platform_add_devices(otom11_devices, ARRAY_SIZE(otom11_devices));
112}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114MACHINE_START(OTOM, "Nex Vision - Otom 1.1")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100115 /* Maintainer: Guillaume GOURAT <guillaume.gourat@nexvision.tv> */
Nicolas Pitre69d50712011-07-05 22:38:17 -0400116 .atag_offset = 0x100,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .map_io = otom11_map_io,
Ben Dooks57e51712007-04-20 11:19:16 +0100118 .init_machine = otom11_init,
Heiko Stuebnerf182aa12013-03-07 12:38:19 +0900119 .init_irq = s3c2410_init_irq,
Romain Naour7f78b6e2013-01-09 18:47:04 -0800120 .init_time = samsung_timer_init,
Kukjin Kimb27b0722012-01-03 14:02:03 +0100121 .restart = s3c2410_restart,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122MACHINE_END