1 /* linux/arch/arm/mach-s3c2410/mach-vr1000.c
3 * Copyright (c) 2003-2005 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.
14 * 14-Sep-2004 BJD USB Power control
15 * 04-Sep-2004 BJD Added new uart init, and io init
16 * 21-Aug-2004 BJD Added struct s3c2410_board
17 * 06-Aug-2004 BJD Fixed call to time initialisation
18 * 05-Apr-2004 BJD Copied to make mach-vr1000.c
19 * 18-Oct-2004 BJD Updated board struct
20 * 04-Nov-2004 BJD Clock and serial configuration update
22 * 04-Jan-2005 BJD Updated uart init call
23 * 10-Jan-2005 BJD Removed include of s3c2410.h
24 * 14-Jan-2005 BJD Added clock init
25 * 15-Jan-2005 BJD Add serial port device definition
26 * 20-Jan-2005 BJD Use UPF_IOREMAP for ports
27 * 10-Feb-2005 BJD Added power-off capability
28 * 10-Mar-2005 LCVR Changed S3C2410_VA to S3C24XX_VA
29 * 14-Mar-2006 BJD void __iomem fixes
30 * 22-Jun-2006 BJD Added DM9000 platform information
31 * 20-Sep-2005 BJD Added static to non-exported items
34 #include <linux/kernel.h>
35 #include <linux/types.h>
36 #include <linux/interrupt.h>
37 #include <linux/list.h>
38 #include <linux/timer.h>
39 #include <linux/init.h>
40 #include <linux/dm9000.h>
42 #include <linux/serial.h>
43 #include <linux/tty.h>
44 #include <linux/serial_8250.h>
45 #include <linux/serial_reg.h>
47 #include <asm/mach/arch.h>
48 #include <asm/mach/map.h>
49 #include <asm/mach/irq.h>
51 #include <asm/arch/bast-map.h>
52 #include <asm/arch/vr1000-map.h>
53 #include <asm/arch/vr1000-irq.h>
54 #include <asm/arch/vr1000-cpld.h>
56 #include <asm/hardware.h>
59 #include <asm/mach-types.h>
61 #include <asm/arch/regs-serial.h>
62 #include <asm/arch/regs-gpio.h>
67 #include "usb-simtec.h"
69 /* macros for virtual address mods for the io space entries */
70 #define VA_C5(item) ((unsigned long)(item) + BAST_VAM_CS5)
71 #define VA_C4(item) ((unsigned long)(item) + BAST_VAM_CS4)
72 #define VA_C3(item) ((unsigned long)(item) + BAST_VAM_CS3)
73 #define VA_C2(item) ((unsigned long)(item) + BAST_VAM_CS2)
75 /* macros to modify the physical addresses for io space */
77 #define PA_CS2(item) (__phys_to_pfn((item) + S3C2410_CS2))
78 #define PA_CS3(item) (__phys_to_pfn((item) + S3C2410_CS3))
79 #define PA_CS4(item) (__phys_to_pfn((item) + S3C2410_CS4))
80 #define PA_CS5(item) (__phys_to_pfn((item) + S3C2410_CS5))
82 static struct map_desc vr1000_iodesc
[] __initdata
= {
85 .virtual = (u32
)S3C24XX_VA_ISA_BYTE
,
86 .pfn
= PA_CS2(BAST_PA_ISAIO
),
90 .virtual = (u32
)S3C24XX_VA_ISA_WORD
,
91 .pfn
= PA_CS3(BAST_PA_ISAIO
),
96 /* CPLD control registers, and external interrupt controls */
98 .virtual = (u32
)VR1000_VA_CTRL1
,
99 .pfn
= __phys_to_pfn(VR1000_PA_CTRL1
),
103 .virtual = (u32
)VR1000_VA_CTRL2
,
104 .pfn
= __phys_to_pfn(VR1000_PA_CTRL2
),
108 .virtual = (u32
)VR1000_VA_CTRL3
,
109 .pfn
= __phys_to_pfn(VR1000_PA_CTRL3
),
113 .virtual = (u32
)VR1000_VA_CTRL4
,
114 .pfn
= __phys_to_pfn(VR1000_PA_CTRL4
),
119 /* peripheral space... one for each of fast/slow/byte/16bit */
120 /* note, ide is only decoded in word space, even though some registers
124 { VA_C2(VR1000_VA_IDEPRI
), PA_CS3(VR1000_PA_IDEPRI
), SZ_1M
, MT_DEVICE
},
125 { VA_C2(VR1000_VA_IDESEC
), PA_CS3(VR1000_PA_IDESEC
), SZ_1M
, MT_DEVICE
},
126 { VA_C2(VR1000_VA_IDEPRIAUX
), PA_CS3(VR1000_PA_IDEPRIAUX
), SZ_1M
, MT_DEVICE
},
127 { VA_C2(VR1000_VA_IDESECAUX
), PA_CS3(VR1000_PA_IDESECAUX
), SZ_1M
, MT_DEVICE
},
130 { VA_C3(VR1000_VA_IDEPRI
), PA_CS3(VR1000_PA_IDEPRI
), SZ_1M
, MT_DEVICE
},
131 { VA_C3(VR1000_VA_IDESEC
), PA_CS3(VR1000_PA_IDESEC
), SZ_1M
, MT_DEVICE
},
132 { VA_C3(VR1000_VA_IDEPRIAUX
), PA_CS3(VR1000_PA_IDEPRIAUX
), SZ_1M
, MT_DEVICE
},
133 { VA_C3(VR1000_VA_IDESECAUX
), PA_CS3(VR1000_PA_IDESECAUX
), SZ_1M
, MT_DEVICE
},
136 { VA_C4(VR1000_VA_IDEPRI
), PA_CS5(VR1000_PA_IDEPRI
), SZ_1M
, MT_DEVICE
},
137 { VA_C4(VR1000_VA_IDESEC
), PA_CS5(VR1000_PA_IDESEC
), SZ_1M
, MT_DEVICE
},
138 { VA_C4(VR1000_VA_IDEPRIAUX
), PA_CS5(VR1000_PA_IDEPRIAUX
), SZ_1M
, MT_DEVICE
},
139 { VA_C4(VR1000_VA_IDESECAUX
), PA_CS5(VR1000_PA_IDESECAUX
), SZ_1M
, MT_DEVICE
},
142 { VA_C5(VR1000_VA_IDEPRI
), PA_CS5(VR1000_PA_IDEPRI
), SZ_1M
, MT_DEVICE
},
143 { VA_C5(VR1000_VA_IDESEC
), PA_CS5(VR1000_PA_IDESEC
), SZ_1M
, MT_DEVICE
},
144 { VA_C5(VR1000_VA_IDEPRIAUX
), PA_CS5(VR1000_PA_IDEPRIAUX
), SZ_1M
, MT_DEVICE
},
145 { VA_C5(VR1000_VA_IDESECAUX
), PA_CS5(VR1000_PA_IDESECAUX
), SZ_1M
, MT_DEVICE
},
148 #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
149 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
150 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
152 /* uart clock source(s) */
154 static struct s3c24xx_uart_clksrc vr1000_serial_clocks
[] = {
169 static struct s3c2410_uartcfg vr1000_uartcfgs
[] = {
176 .clocks
= vr1000_serial_clocks
,
177 .clocks_size
= ARRAY_SIZE(vr1000_serial_clocks
),
185 .clocks
= vr1000_serial_clocks
,
186 .clocks_size
= ARRAY_SIZE(vr1000_serial_clocks
),
188 /* port 2 is not actually used */
195 .clocks
= vr1000_serial_clocks
,
196 .clocks_size
= ARRAY_SIZE(vr1000_serial_clocks
),
201 /* definitions for the vr1000 extra 16550 serial ports */
203 #define VR1000_BAUDBASE (3692307)
205 #define VR1000_SERIAL_MAPBASE(x) (VR1000_PA_SERIAL + 0x80 + ((x) << 5))
207 static struct plat_serial8250_port serial_platform_data
[] = {
209 .mapbase
= VR1000_SERIAL_MAPBASE(0),
210 .irq
= IRQ_VR1000_SERIAL
+ 0,
211 .flags
= UPF_BOOT_AUTOCONF
| UPF_IOREMAP
,
214 .uartclk
= VR1000_BAUDBASE
,
217 .mapbase
= VR1000_SERIAL_MAPBASE(1),
218 .irq
= IRQ_VR1000_SERIAL
+ 1,
219 .flags
= UPF_BOOT_AUTOCONF
| UPF_IOREMAP
,
222 .uartclk
= VR1000_BAUDBASE
,
225 .mapbase
= VR1000_SERIAL_MAPBASE(2),
226 .irq
= IRQ_VR1000_SERIAL
+ 2,
227 .flags
= UPF_BOOT_AUTOCONF
| UPF_IOREMAP
,
230 .uartclk
= VR1000_BAUDBASE
,
233 .mapbase
= VR1000_SERIAL_MAPBASE(3),
234 .irq
= IRQ_VR1000_SERIAL
+ 3,
235 .flags
= UPF_BOOT_AUTOCONF
| UPF_IOREMAP
,
238 .uartclk
= VR1000_BAUDBASE
,
243 static struct platform_device serial_device
= {
244 .name
= "serial8250",
245 .id
= PLAT8250_DEV_PLATFORM
,
247 .platform_data
= serial_platform_data
,
253 static struct resource vr1000_nor_resource
[] = {
255 .start
= S3C2410_CS1
+ 0x4000000,
256 .end
= S3C2410_CS1
+ 0x4000000 + SZ_16M
- 1,
257 .flags
= IORESOURCE_MEM
,
261 static struct platform_device vr1000_nor
= {
264 .num_resources
= ARRAY_SIZE(vr1000_nor_resource
),
265 .resource
= vr1000_nor_resource
,
268 /* DM9000 ethernet devices */
270 static struct resource vr1000_dm9k0_resource
[] = {
272 .start
= S3C2410_CS5
+ VR1000_PA_DM9000
,
273 .end
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 3,
274 .flags
= IORESOURCE_MEM
277 .start
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0x40,
278 .end
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0x7f,
279 .flags
= IORESOURCE_MEM
282 .start
= IRQ_VR1000_DM9000A
,
283 .end
= IRQ_VR1000_DM9000A
,
284 .flags
= IORESOURCE_IRQ
289 static struct resource vr1000_dm9k1_resource
[] = {
291 .start
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0x80,
292 .end
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0x83,
293 .flags
= IORESOURCE_MEM
296 .start
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0xC0,
297 .end
= S3C2410_CS5
+ VR1000_PA_DM9000
+ 0xFF,
298 .flags
= IORESOURCE_MEM
301 .start
= IRQ_VR1000_DM9000N
,
302 .end
= IRQ_VR1000_DM9000N
,
303 .flags
= IORESOURCE_IRQ
307 /* for the moment we limit ourselves to 16bit IO until some
308 * better IO routines can be written and tested
311 static struct dm9000_plat_data vr1000_dm9k_platdata
= {
312 .flags
= DM9000_PLATF_16BITONLY
,
315 static struct platform_device vr1000_dm9k0
= {
318 .num_resources
= ARRAY_SIZE(vr1000_dm9k0_resource
),
319 .resource
= vr1000_dm9k0_resource
,
321 .platform_data
= &vr1000_dm9k_platdata
,
325 static struct platform_device vr1000_dm9k1
= {
328 .num_resources
= ARRAY_SIZE(vr1000_dm9k1_resource
),
329 .resource
= vr1000_dm9k1_resource
,
331 .platform_data
= &vr1000_dm9k_platdata
,
335 /* devices for this board */
337 static struct platform_device
*vr1000_devices
[] __initdata
= {
350 static struct clk
*vr1000_clocks
[] = {
358 static struct s3c24xx_board vr1000_board __initdata
= {
359 .devices
= vr1000_devices
,
360 .devices_count
= ARRAY_SIZE(vr1000_devices
),
361 .clocks
= vr1000_clocks
,
362 .clocks_count
= ARRAY_SIZE(vr1000_clocks
),
365 static void vr1000_power_off(void)
367 s3c2410_gpio_cfgpin(S3C2410_GPB9
, S3C2410_GPB9_OUTP
);
368 s3c2410_gpio_setpin(S3C2410_GPB9
, 1);
371 static void __init
vr1000_map_io(void)
373 /* initialise clock sources */
375 s3c24xx_dclk0
.parent
= NULL
;
376 s3c24xx_dclk0
.rate
= 12*1000*1000;
378 s3c24xx_dclk1
.parent
= NULL
;
379 s3c24xx_dclk1
.rate
= 3692307;
381 s3c24xx_clkout0
.parent
= &s3c24xx_dclk0
;
382 s3c24xx_clkout1
.parent
= &s3c24xx_dclk1
;
384 s3c24xx_uclk
.parent
= &s3c24xx_clkout1
;
386 pm_power_off
= vr1000_power_off
;
388 s3c24xx_init_io(vr1000_iodesc
, ARRAY_SIZE(vr1000_iodesc
));
389 s3c24xx_init_clocks(0);
390 s3c24xx_init_uarts(vr1000_uartcfgs
, ARRAY_SIZE(vr1000_uartcfgs
));
391 s3c24xx_set_board(&vr1000_board
);
396 MACHINE_START(VR1000
, "Thorcom-VR1000")
397 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
398 .phys_ram
= S3C2410_SDRAM_PA
,
399 .phys_io
= S3C2410_PA_UART
,
400 .io_pg_offst
= (((u32
)S3C24XX_VA_UART
) >> 18) & 0xfffc,
401 .boot_params
= S3C2410_SDRAM_PA
+ 0x100,
402 .map_io
= vr1000_map_io
,
403 .init_irq
= s3c24xx_init_irq
,
404 .timer
= &s3c24xx_timer
,