1 /* linux/arch/arm/mach-s3c2410/mach-vr1000.c
3 * Copyright (c) 2003-2008 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * Machine support for Thorcom VR1000 board. Designed for Thorcom by
7 * Simtec Electronics, http://www.simtec.co.uk/
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
15 #include <linux/kernel.h>
16 #include <linux/types.h>
17 #include <linux/interrupt.h>
18 #include <linux/list.h>
19 #include <linux/timer.h>
20 #include <linux/init.h>
21 #include <linux/gpio.h>
22 #include <linux/dm9000.h>
23 #include <linux/i2c.h>
25 #include <linux/serial.h>
26 #include <linux/tty.h>
27 #include <linux/serial_8250.h>
28 #include <linux/serial_reg.h>
31 #include <asm/mach/arch.h>
32 #include <asm/mach/map.h>
33 #include <asm/mach/irq.h>
35 #include <mach/bast-map.h>
36 #include <mach/vr1000-map.h>
37 #include <mach/vr1000-irq.h>
38 #include <mach/vr1000-cpld.h>
40 #include <mach/hardware.h>
42 #include <asm/mach-types.h>
44 #include <plat/regs-serial.h>
45 #include <mach/regs-gpio.h>
46 #include <mach/leds-gpio.h>
48 #include <plat/clock.h>
49 #include <plat/devs.h>
52 #include <plat/audio-simtec.h>
54 #include "usb-simtec.h"
55 #include "nor-simtec.h"
57 /* macros for virtual address mods for the io space entries */
58 #define VA_C5(item) ((unsigned long)(item) + BAST_VAM_CS5)
59 #define VA_C4(item) ((unsigned long)(item) + BAST_VAM_CS4)
60 #define VA_C3(item) ((unsigned long)(item) + BAST_VAM_CS3)
61 #define VA_C2(item) ((unsigned long)(item) + BAST_VAM_CS2)
63 /* macros to modify the physical addresses for io space */
65 #define PA_CS2(item) (__phys_to_pfn((item) + S3C2410_CS2))
66 #define PA_CS3(item) (__phys_to_pfn((item) + S3C2410_CS3))
67 #define PA_CS4(item) (__phys_to_pfn((item) + S3C2410_CS4))
68 #define PA_CS5(item) (__phys_to_pfn((item) + S3C2410_CS5))
70 static struct map_desc vr1000_iodesc
[] __initdata
= {
73 .virtual = (u32
)S3C24XX_VA_ISA_BYTE
,
74 .pfn
= PA_CS2(BAST_PA_ISAIO
),
78 .virtual = (u32
)S3C24XX_VA_ISA_WORD
,
79 .pfn
= PA_CS3(BAST_PA_ISAIO
),
84 /* CPLD control registers, and external interrupt controls */
86 .virtual = (u32
)VR1000_VA_CTRL1
,
87 .pfn
= __phys_to_pfn(VR1000_PA_CTRL1
),
91 .virtual = (u32
)VR1000_VA_CTRL2
,
92 .pfn
= __phys_to_pfn(VR1000_PA_CTRL2
),
96 .virtual = (u32
)VR1000_VA_CTRL3
,
97 .pfn
= __phys_to_pfn(VR1000_PA_CTRL3
),
101 .virtual = (u32
)VR1000_VA_CTRL4
,
102 .pfn
= __phys_to_pfn(VR1000_PA_CTRL4
),
108 #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
109 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
110 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
112 /* uart clock source(s) */
114 static struct s3c24xx_uart_clksrc vr1000_serial_clocks
[] = {
129 static struct s3c2410_uartcfg vr1000_uartcfgs
[] __initdata
= {
136 .clocks
= vr1000_serial_clocks
,
137 .clocks_size
= ARRAY_SIZE(vr1000_serial_clocks
),
145 .clocks
= vr1000_serial_clocks
,
146 .clocks_size
= ARRAY_SIZE(vr1000_serial_clocks
),
148 /* port 2 is not actually used */
155 .clocks
= vr1000_serial_clocks
,
156 .clocks_size
= ARRAY_SIZE(vr1000_serial_clocks
),
161 /* definitions for the vr1000 extra 16550 serial ports */
163 #define VR1000_BAUDBASE (3692307)
165 #define VR1000_SERIAL_MAPBASE(x) (VR1000_PA_SERIAL + 0x80 + ((x) << 5))
167 static struct plat_serial8250_port serial_platform_data
[] = {
169 .mapbase
= VR1000_SERIAL_MAPBASE(0),
170 .irq
= IRQ_VR1000_SERIAL
+ 0,
171 .flags
= UPF_BOOT_AUTOCONF
| UPF_IOREMAP
,
174 .uartclk
= VR1000_BAUDBASE
,
177 .mapbase
= VR1000_SERIAL_MAPBASE(1),
178 .irq
= IRQ_VR1000_SERIAL
+ 1,
179 .flags
= UPF_BOOT_AUTOCONF
| UPF_IOREMAP
,
182 .uartclk
= VR1000_BAUDBASE
,
185 .mapbase
= VR1000_SERIAL_MAPBASE(2),
186 .irq
= IRQ_VR1000_SERIAL
+ 2,
187 .flags
= UPF_BOOT_AUTOCONF
| UPF_IOREMAP
,
190 .uartclk
= VR1000_BAUDBASE
,
193 .mapbase
= VR1000_SERIAL_MAPBASE(3),
194 .irq
= IRQ_VR1000_SERIAL
+ 3,
195 .flags
= UPF_BOOT_AUTOCONF
| UPF_IOREMAP
,
198 .uartclk
= VR1000_BAUDBASE
,
203 static struct platform_device serial_device
= {
204 .name
= "serial8250",
205 .id
= PLAT8250_DEV_PLATFORM
,
207 .platform_data
= serial_platform_data
,
211 /* DM9000 ethernet devices */
213 static struct resource vr1000_dm9k0_resource
[] = {
215 .start
= S3C2410_CS5
+ VR1000_PA_DM9000
,
216 .end
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 3,
217 .flags
= IORESOURCE_MEM
220 .start
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0x40,
221 .end
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0x7f,
222 .flags
= IORESOURCE_MEM
225 .start
= IRQ_VR1000_DM9000A
,
226 .end
= IRQ_VR1000_DM9000A
,
227 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
232 static struct resource vr1000_dm9k1_resource
[] = {
234 .start
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0x80,
235 .end
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0x83,
236 .flags
= IORESOURCE_MEM
239 .start
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0xC0,
240 .end
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0xFF,
241 .flags
= IORESOURCE_MEM
244 .start
= IRQ_VR1000_DM9000N
,
245 .end
= IRQ_VR1000_DM9000N
,
246 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
250 /* for the moment we limit ourselves to 16bit IO until some
251 * better IO routines can be written and tested
254 static struct dm9000_plat_data vr1000_dm9k_platdata
= {
255 .flags
= DM9000_PLATF_16BITONLY
,
258 static struct platform_device vr1000_dm9k0
= {
261 .num_resources
= ARRAY_SIZE(vr1000_dm9k0_resource
),
262 .resource
= vr1000_dm9k0_resource
,
264 .platform_data
= &vr1000_dm9k_platdata
,
268 static struct platform_device vr1000_dm9k1
= {
271 .num_resources
= ARRAY_SIZE(vr1000_dm9k1_resource
),
272 .resource
= vr1000_dm9k1_resource
,
274 .platform_data
= &vr1000_dm9k_platdata
,
280 static struct s3c24xx_led_platdata vr1000_led1_pdata
= {
282 .gpio
= S3C2410_GPB(0),
286 static struct s3c24xx_led_platdata vr1000_led2_pdata
= {
288 .gpio
= S3C2410_GPB(1),
292 static struct s3c24xx_led_platdata vr1000_led3_pdata
= {
294 .gpio
= S3C2410_GPB(2),
298 static struct platform_device vr1000_led1
= {
299 .name
= "s3c24xx_led",
302 .platform_data
= &vr1000_led1_pdata
,
306 static struct platform_device vr1000_led2
= {
307 .name
= "s3c24xx_led",
310 .platform_data
= &vr1000_led2_pdata
,
314 static struct platform_device vr1000_led3
= {
315 .name
= "s3c24xx_led",
318 .platform_data
= &vr1000_led3_pdata
,
324 static struct i2c_board_info vr1000_i2c_devs
[] __initdata
= {
326 I2C_BOARD_INFO("tlv320aic23", 0x1a),
328 I2C_BOARD_INFO("tmp101", 0x48),
330 I2C_BOARD_INFO("m41st87", 0x68),
334 /* devices for this board */
336 static struct platform_device
*vr1000_devices
[] __initdata
= {
350 static struct clk
*vr1000_clocks
[] __initdata
= {
358 static void vr1000_power_off(void)
360 gpio_direction_output(S3C2410_GPB(9), 1);
363 static void __init
vr1000_map_io(void)
365 /* initialise clock sources */
367 s3c24xx_dclk0
.parent
= &clk_upll
;
368 s3c24xx_dclk0
.rate
= 12*1000*1000;
370 s3c24xx_dclk1
.parent
= NULL
;
371 s3c24xx_dclk1
.rate
= 3692307;
373 s3c24xx_clkout0
.parent
= &s3c24xx_dclk0
;
374 s3c24xx_clkout1
.parent
= &s3c24xx_dclk1
;
376 s3c24xx_uclk
.parent
= &s3c24xx_clkout1
;
378 s3c24xx_register_clocks(vr1000_clocks
, ARRAY_SIZE(vr1000_clocks
));
380 pm_power_off
= vr1000_power_off
;
382 s3c24xx_init_io(vr1000_iodesc
, ARRAY_SIZE(vr1000_iodesc
));
383 s3c24xx_init_clocks(0);
384 s3c24xx_init_uarts(vr1000_uartcfgs
, ARRAY_SIZE(vr1000_uartcfgs
));
387 static void __init
vr1000_init(void)
389 s3c_i2c0_set_platdata(NULL
);
390 platform_add_devices(vr1000_devices
, ARRAY_SIZE(vr1000_devices
));
392 i2c_register_board_info(0, vr1000_i2c_devs
,
393 ARRAY_SIZE(vr1000_i2c_devs
));
396 simtec_audio_add(NULL
, true, NULL
);
398 WARN_ON(gpio_request(S3C2410_GPB(9), "power off"));
401 MACHINE_START(VR1000
, "Thorcom-VR1000")
402 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
403 .atag_offset
= 0x100,
404 .map_io
= vr1000_map_io
,
405 .init_machine
= vr1000_init
,
406 .init_irq
= s3c24xx_init_irq
,
407 .timer
= &s3c24xx_timer
,