blob: d8255cf87e446ef07f8f719d2413bf2957ab6b1a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* linux/arch/arm/mach-s3c2410/mach-otom.c
2 *
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.
9 *
10 */
11
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>
Ben Dooksb6d1f542006-12-17 23:22:26 +010018#include <linux/serial_core.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010019#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010020#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/mach/arch.h>
23#include <asm/mach/map.h>
24#include <asm/mach/irq.h>
25
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/otom-map.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Russell Kinga09e64f2008-08-05 16:14:15 +010028#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/irq.h>
30#include <asm/mach-types.h>
31
Ben Dooksa2b7ba92008-10-07 22:26:09 +010032#include <plat/regs-serial.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010033#include <mach/regs-gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Ben Dooksa2b7ba92008-10-07 22:26:09 +010035#include <plat/s3c2410.h>
Ben Dooksd5120ae2008-10-07 23:09:51 +010036#include <plat/clock.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010037#include <plat/devs.h>
38#include <plat/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40static struct map_desc otom11_iodesc[] __initdata = {
41 /* Device area */
42 { (u32)OTOM_VA_CS8900A_BASE, OTOM_PA_CS8900A_BASE, SZ_16M, MT_DEVICE },
43};
44
45#define UCON S3C2410_UCON_DEFAULT
46#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
47#define UFCON S3C2410_UFCON_RXTRIG12 | S3C2410_UFCON_FIFOMODE
48
Ben Dooks66a9b492006-06-18 23:04:05 +010049static struct s3c2410_uartcfg otom11_uartcfgs[] __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 [0] = {
51 .hwport = 0,
52 .flags = 0,
53 .ucon = UCON,
54 .ulcon = ULCON,
55 .ufcon = UFCON,
56 },
57 [1] = {
58 .hwport = 1,
59 .flags = 0,
60 .ucon = UCON,
61 .ulcon = ULCON,
62 .ufcon = UFCON,
63 },
64 /* port 2 is not actually used */
65 [2] = {
66 .hwport = 2,
67 .flags = 0,
68 .ucon = UCON,
69 .ulcon = ULCON,
70 .ufcon = UFCON,
71 }
72};
73
74/* NOR Flash on NexVision OTOM board */
75
76static struct resource otom_nor_resource[] = {
77 [0] = {
78 .start = S3C2410_CS0,
79 .end = S3C2410_CS0 + (4*1024*1024) - 1,
80 .flags = IORESOURCE_MEM,
81 }
82};
83
84static struct platform_device otom_device_nor = {
85 .name = "mtd-flash",
86 .id = -1,
87 .num_resources = ARRAY_SIZE(otom_nor_resource),
88 .resource = otom_nor_resource,
89};
90
91/* Standard OTOM devices */
92
93static struct platform_device *otom11_devices[] __initdata = {
94 &s3c_device_usb,
95 &s3c_device_lcd,
96 &s3c_device_wdt,
97 &s3c_device_i2c,
98 &s3c_device_iis,
99 &s3c_device_rtc,
100 &otom_device_nor,
101};
102
Ben Dooks5fe10ab2005-09-20 17:24:33 +0100103static void __init otom11_map_io(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 s3c24xx_init_io(otom11_iodesc, ARRAY_SIZE(otom11_iodesc));
106 s3c24xx_init_clocks(0);
107 s3c24xx_init_uarts(otom11_uartcfgs, ARRAY_SIZE(otom11_uartcfgs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Ben Dooks57e51712007-04-20 11:19:16 +0100110static void __init otom11_init(void)
111{
112 platform_add_devices(otom11_devices, ARRAY_SIZE(otom11_devices));
113}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115MACHINE_START(OTOM, "Nex Vision - Otom 1.1")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100116 /* Maintainer: Guillaume GOURAT <guillaume.gourat@nexvision.tv> */
Russell Kinge9dea0c2005-07-03 17:38:58 +0100117 .phys_io = S3C2410_PA_UART,
118 .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
119 .boot_params = S3C2410_SDRAM_PA + 0x100,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .map_io = otom11_map_io,
Ben Dooks57e51712007-04-20 11:19:16 +0100121 .init_machine = otom11_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .init_irq = s3c24xx_init_irq,
123 .timer = &s3c24xx_timer,
124MACHINE_END