2 * Copyright (c) 2003-2008 Simtec Electronics
3 * Ben Dooks <ben@simtec.co.uk>
5 * Machine support for Thorcom VR1000 board. Designed for Thorcom by
6 * Simtec Electronics, http://www.simtec.co.uk/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/types.h>
16 #include <linux/interrupt.h>
17 #include <linux/list.h>
18 #include <linux/timer.h>
19 #include <linux/init.h>
20 #include <linux/gpio.h>
21 #include <linux/dm9000.h>
22 #include <linux/i2c.h>
24 #include <linux/serial.h>
25 #include <linux/tty.h>
26 #include <linux/serial_8250.h>
27 #include <linux/serial_reg.h>
28 #include <linux/serial_s3c.h>
31 #include <asm/mach/arch.h>
32 #include <asm/mach/map.h>
33 #include <asm/mach/irq.h>
36 #include <asm/mach-types.h>
38 #include <linux/platform_data/leds-s3c24xx.h>
39 #include <linux/platform_data/i2c-s3c2410.h>
40 #include <linux/platform_data/asoc-s3c24xx_simtec.h>
42 #include <mach/hardware.h>
43 #include <mach/regs-gpio.h>
44 #include <mach/gpio-samsung.h>
47 #include <plat/devs.h>
48 #include <plat/samsung-time.h>
55 /* macros for virtual address mods for the io space entries */
56 #define VA_C5(item) ((unsigned long)(item) + BAST_VAM_CS5)
57 #define VA_C4(item) ((unsigned long)(item) + BAST_VAM_CS4)
58 #define VA_C3(item) ((unsigned long)(item) + BAST_VAM_CS3)
59 #define VA_C2(item) ((unsigned long)(item) + BAST_VAM_CS2)
61 /* macros to modify the physical addresses for io space */
63 #define PA_CS2(item) (__phys_to_pfn((item) + S3C2410_CS2))
64 #define PA_CS3(item) (__phys_to_pfn((item) + S3C2410_CS3))
65 #define PA_CS4(item) (__phys_to_pfn((item) + S3C2410_CS4))
66 #define PA_CS5(item) (__phys_to_pfn((item) + S3C2410_CS5))
68 static struct map_desc vr1000_iodesc[] __initdata = {
71 .virtual = (u32)S3C24XX_VA_ISA_BYTE,
72 .pfn = PA_CS2(BAST_PA_ISAIO),
76 .virtual = (u32)S3C24XX_VA_ISA_WORD,
77 .pfn = PA_CS3(BAST_PA_ISAIO),
82 /* CPLD control registers, and external interrupt controls */
84 .virtual = (u32)VR1000_VA_CTRL1,
85 .pfn = __phys_to_pfn(VR1000_PA_CTRL1),
89 .virtual = (u32)VR1000_VA_CTRL2,
90 .pfn = __phys_to_pfn(VR1000_PA_CTRL2),
94 .virtual = (u32)VR1000_VA_CTRL3,
95 .pfn = __phys_to_pfn(VR1000_PA_CTRL3),
99 .virtual = (u32)VR1000_VA_CTRL4,
100 .pfn = __phys_to_pfn(VR1000_PA_CTRL4),
106 #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
107 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
108 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
110 static struct s3c2410_uartcfg vr1000_uartcfgs[] __initdata = {
125 /* port 2 is not actually used */
135 /* definitions for the vr1000 extra 16550 serial ports */
137 #define VR1000_BAUDBASE (3692307)
139 #define VR1000_SERIAL_MAPBASE(x) (VR1000_PA_SERIAL + 0x80 + ((x) << 5))
141 static struct plat_serial8250_port serial_platform_data[] = {
143 .mapbase = VR1000_SERIAL_MAPBASE(0),
144 .irq = VR1000_IRQ_SERIAL + 0,
145 .flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP,
148 .uartclk = VR1000_BAUDBASE,
151 .mapbase = VR1000_SERIAL_MAPBASE(1),
152 .irq = VR1000_IRQ_SERIAL + 1,
153 .flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP,
156 .uartclk = VR1000_BAUDBASE,
159 .mapbase = VR1000_SERIAL_MAPBASE(2),
160 .irq = VR1000_IRQ_SERIAL + 2,
161 .flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP,
164 .uartclk = VR1000_BAUDBASE,
167 .mapbase = VR1000_SERIAL_MAPBASE(3),
168 .irq = VR1000_IRQ_SERIAL + 3,
169 .flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP,
172 .uartclk = VR1000_BAUDBASE,
177 static struct platform_device serial_device = {
178 .name = "serial8250",
179 .id = PLAT8250_DEV_PLATFORM,
181 .platform_data = serial_platform_data,
185 /* DM9000 ethernet devices */
187 static struct resource vr1000_dm9k0_resource[] = {
188 [0] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000, 4),
189 [1] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0x40, 0x40),
190 [2] = DEFINE_RES_NAMED(VR1000_IRQ_DM9000A, 1, NULL, IORESOURCE_IRQ \
191 | IORESOURCE_IRQ_HIGHLEVEL),
194 static struct resource vr1000_dm9k1_resource[] = {
195 [0] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0x80, 4),
196 [1] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0xC0, 0x40),
197 [2] = DEFINE_RES_NAMED(VR1000_IRQ_DM9000N, 1, NULL, IORESOURCE_IRQ \
198 | IORESOURCE_IRQ_HIGHLEVEL),
201 /* for the moment we limit ourselves to 16bit IO until some
202 * better IO routines can be written and tested
205 static struct dm9000_plat_data vr1000_dm9k_platdata = {
206 .flags = DM9000_PLATF_16BITONLY,
209 static struct platform_device vr1000_dm9k0 = {
212 .num_resources = ARRAY_SIZE(vr1000_dm9k0_resource),
213 .resource = vr1000_dm9k0_resource,
215 .platform_data = &vr1000_dm9k_platdata,
219 static struct platform_device vr1000_dm9k1 = {
222 .num_resources = ARRAY_SIZE(vr1000_dm9k1_resource),
223 .resource = vr1000_dm9k1_resource,
225 .platform_data = &vr1000_dm9k_platdata,
231 static struct s3c24xx_led_platdata vr1000_led1_pdata = {
233 .gpio = S3C2410_GPB(0),
237 static struct s3c24xx_led_platdata vr1000_led2_pdata = {
239 .gpio = S3C2410_GPB(1),
243 static struct s3c24xx_led_platdata vr1000_led3_pdata = {
245 .gpio = S3C2410_GPB(2),
249 static struct platform_device vr1000_led1 = {
250 .name = "s3c24xx_led",
253 .platform_data = &vr1000_led1_pdata,
257 static struct platform_device vr1000_led2 = {
258 .name = "s3c24xx_led",
261 .platform_data = &vr1000_led2_pdata,
265 static struct platform_device vr1000_led3 = {
266 .name = "s3c24xx_led",
269 .platform_data = &vr1000_led3_pdata,
275 static struct i2c_board_info vr1000_i2c_devs[] __initdata = {
277 I2C_BOARD_INFO("tlv320aic23", 0x1a),
279 I2C_BOARD_INFO("tmp101", 0x48),
281 I2C_BOARD_INFO("m41st87", 0x68),
285 /* devices for this board */
287 static struct platform_device *vr1000_devices[] __initdata = {
288 &s3c2410_device_dclk,
302 static void vr1000_power_off(void)
304 gpio_direction_output(S3C2410_GPB(9), 1);
307 static void __init vr1000_map_io(void)
309 pm_power_off = vr1000_power_off;
311 s3c24xx_init_io(vr1000_iodesc, ARRAY_SIZE(vr1000_iodesc));
312 s3c24xx_init_uarts(vr1000_uartcfgs, ARRAY_SIZE(vr1000_uartcfgs));
313 samsung_set_timer_source(SAMSUNG_PWM3, SAMSUNG_PWM4);
316 static void __init vr1000_init_time(void)
318 s3c2410_init_clocks(12000000);
319 samsung_timer_init();
322 static void __init vr1000_init(void)
324 s3c_i2c0_set_platdata(NULL);
325 platform_add_devices(vr1000_devices, ARRAY_SIZE(vr1000_devices));
327 i2c_register_board_info(0, vr1000_i2c_devs,
328 ARRAY_SIZE(vr1000_i2c_devs));
331 simtec_audio_add(NULL, true, NULL);
333 WARN_ON(gpio_request(S3C2410_GPB(9), "power off"));
336 MACHINE_START(VR1000, "Thorcom-VR1000")
337 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
338 .atag_offset = 0x100,
339 .map_io = vr1000_map_io,
340 .init_machine = vr1000_init,
341 .init_irq = s3c2410_init_irq,
342 .init_time = vr1000_init_time,