1 /* linux/arch/arm/mach-s3c2410/devs.c
3 * Copyright (c) 2004 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * Base S3C2410 platform device definitions
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.
13 * 15-Jan-2006 LCVR Using S3C24XX_PA_##x macro for common S3C24XX devices
14 * 10-Mar-2005 LCVR Changed S3C2410_{VA,SZ} to S3C24XX_{VA,SZ}
15 * 10-Feb-2005 BJD Added camera from guillaume.gourat@nexvision.tv
16 * 29-Aug-2004 BJD Added timers 0 through 3
17 * 29-Aug-2004 BJD Changed index of devices we only have one of to -1
18 * 21-Aug-2004 BJD Added IRQ_TICK to RTC resources
19 * 18-Aug-2004 BJD Created initial version
22 #include <linux/kernel.h>
23 #include <linux/types.h>
24 #include <linux/interrupt.h>
25 #include <linux/list.h>
26 #include <linux/timer.h>
27 #include <linux/init.h>
28 #include <linux/platform_device.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/map.h>
32 #include <asm/mach/irq.h>
33 #include <asm/arch/fb.h>
34 #include <asm/hardware.h>
38 #include <asm/arch/regs-serial.h>
42 /* Serial port registrations */
44 struct platform_device
*s3c24xx_uart_devs
[3];
46 /* USB Host Controller */
48 static struct resource s3c_usb_resource
[] = {
50 .start
= S3C24XX_PA_USBHOST
,
51 .end
= S3C24XX_PA_USBHOST
+ S3C24XX_SZ_USBHOST
- 1,
52 .flags
= IORESOURCE_MEM
,
57 .flags
= IORESOURCE_IRQ
,
61 static u64 s3c_device_usb_dmamask
= 0xffffffffUL
;
63 struct platform_device s3c_device_usb
= {
64 .name
= "s3c2410-ohci",
66 .num_resources
= ARRAY_SIZE(s3c_usb_resource
),
67 .resource
= s3c_usb_resource
,
69 .dma_mask
= &s3c_device_usb_dmamask
,
70 .coherent_dma_mask
= 0xffffffffUL
74 EXPORT_SYMBOL(s3c_device_usb
);
78 static struct resource s3c_lcd_resource
[] = {
80 .start
= S3C24XX_PA_LCD
,
81 .end
= S3C24XX_PA_LCD
+ S3C24XX_SZ_LCD
- 1,
82 .flags
= IORESOURCE_MEM
,
87 .flags
= IORESOURCE_IRQ
,
92 static u64 s3c_device_lcd_dmamask
= 0xffffffffUL
;
94 struct platform_device s3c_device_lcd
= {
95 .name
= "s3c2410-lcd",
97 .num_resources
= ARRAY_SIZE(s3c_lcd_resource
),
98 .resource
= s3c_lcd_resource
,
100 .dma_mask
= &s3c_device_lcd_dmamask
,
101 .coherent_dma_mask
= 0xffffffffUL
105 EXPORT_SYMBOL(s3c_device_lcd
);
107 void __init
s3c24xx_fb_set_platdata(struct s3c2410fb_mach_info
*pd
)
109 struct s3c2410fb_mach_info
*npd
;
111 npd
= kmalloc(sizeof(*npd
), GFP_KERNEL
);
113 memcpy(npd
, pd
, sizeof(*npd
));
114 s3c_device_lcd
.dev
.platform_data
= npd
;
116 printk(KERN_ERR
"no memory for LCD platform data\n");
120 /* NAND Controller */
122 static struct resource s3c_nand_resource
[] = {
124 .start
= S3C2410_PA_NAND
,
125 .end
= S3C2410_PA_NAND
+ S3C24XX_SZ_NAND
- 1,
126 .flags
= IORESOURCE_MEM
,
130 struct platform_device s3c_device_nand
= {
131 .name
= "s3c2410-nand",
133 .num_resources
= ARRAY_SIZE(s3c_nand_resource
),
134 .resource
= s3c_nand_resource
,
137 EXPORT_SYMBOL(s3c_device_nand
);
139 /* USB Device (Gadget)*/
141 static struct resource s3c_usbgadget_resource
[] = {
143 .start
= S3C24XX_PA_USBDEV
,
144 .end
= S3C24XX_PA_USBDEV
+ S3C24XX_SZ_USBDEV
- 1,
145 .flags
= IORESOURCE_MEM
,
150 .flags
= IORESOURCE_IRQ
,
155 struct platform_device s3c_device_usbgadget
= {
156 .name
= "s3c2410-usbgadget",
158 .num_resources
= ARRAY_SIZE(s3c_usbgadget_resource
),
159 .resource
= s3c_usbgadget_resource
,
162 EXPORT_SYMBOL(s3c_device_usbgadget
);
166 static struct resource s3c_wdt_resource
[] = {
168 .start
= S3C24XX_PA_WATCHDOG
,
169 .end
= S3C24XX_PA_WATCHDOG
+ S3C24XX_SZ_WATCHDOG
- 1,
170 .flags
= IORESOURCE_MEM
,
175 .flags
= IORESOURCE_IRQ
,
180 struct platform_device s3c_device_wdt
= {
181 .name
= "s3c2410-wdt",
183 .num_resources
= ARRAY_SIZE(s3c_wdt_resource
),
184 .resource
= s3c_wdt_resource
,
187 EXPORT_SYMBOL(s3c_device_wdt
);
191 static struct resource s3c_i2c_resource
[] = {
193 .start
= S3C24XX_PA_IIC
,
194 .end
= S3C24XX_PA_IIC
+ S3C24XX_SZ_IIC
- 1,
195 .flags
= IORESOURCE_MEM
,
200 .flags
= IORESOURCE_IRQ
,
205 struct platform_device s3c_device_i2c
= {
206 .name
= "s3c2410-i2c",
208 .num_resources
= ARRAY_SIZE(s3c_i2c_resource
),
209 .resource
= s3c_i2c_resource
,
212 EXPORT_SYMBOL(s3c_device_i2c
);
216 static struct resource s3c_iis_resource
[] = {
218 .start
= S3C24XX_PA_IIS
,
219 .end
= S3C24XX_PA_IIS
+ S3C24XX_SZ_IIS
-1,
220 .flags
= IORESOURCE_MEM
,
224 static u64 s3c_device_iis_dmamask
= 0xffffffffUL
;
226 struct platform_device s3c_device_iis
= {
227 .name
= "s3c2410-iis",
229 .num_resources
= ARRAY_SIZE(s3c_iis_resource
),
230 .resource
= s3c_iis_resource
,
232 .dma_mask
= &s3c_device_iis_dmamask
,
233 .coherent_dma_mask
= 0xffffffffUL
237 EXPORT_SYMBOL(s3c_device_iis
);
241 static struct resource s3c_rtc_resource
[] = {
243 .start
= S3C24XX_PA_RTC
,
244 .end
= S3C24XX_PA_RTC
+ 0xff,
245 .flags
= IORESOURCE_MEM
,
250 .flags
= IORESOURCE_IRQ
,
255 .flags
= IORESOURCE_IRQ
259 struct platform_device s3c_device_rtc
= {
260 .name
= "s3c2410-rtc",
262 .num_resources
= ARRAY_SIZE(s3c_rtc_resource
),
263 .resource
= s3c_rtc_resource
,
266 EXPORT_SYMBOL(s3c_device_rtc
);
270 static struct resource s3c_adc_resource
[] = {
272 .start
= S3C24XX_PA_ADC
,
273 .end
= S3C24XX_PA_ADC
+ S3C24XX_SZ_ADC
- 1,
274 .flags
= IORESOURCE_MEM
,
279 .flags
= IORESOURCE_IRQ
,
284 struct platform_device s3c_device_adc
= {
285 .name
= "s3c2410-adc",
287 .num_resources
= ARRAY_SIZE(s3c_adc_resource
),
288 .resource
= s3c_adc_resource
,
293 static struct resource s3c_sdi_resource
[] = {
295 .start
= S3C2410_PA_SDI
,
296 .end
= S3C2410_PA_SDI
+ S3C24XX_SZ_SDI
- 1,
297 .flags
= IORESOURCE_MEM
,
302 .flags
= IORESOURCE_IRQ
,
307 struct platform_device s3c_device_sdi
= {
308 .name
= "s3c2410-sdi",
310 .num_resources
= ARRAY_SIZE(s3c_sdi_resource
),
311 .resource
= s3c_sdi_resource
,
314 EXPORT_SYMBOL(s3c_device_sdi
);
318 static struct resource s3c_spi0_resource
[] = {
320 .start
= S3C24XX_PA_SPI
,
321 .end
= S3C24XX_PA_SPI
+ 0x1f,
322 .flags
= IORESOURCE_MEM
,
327 .flags
= IORESOURCE_IRQ
,
332 struct platform_device s3c_device_spi0
= {
333 .name
= "s3c2410-spi",
335 .num_resources
= ARRAY_SIZE(s3c_spi0_resource
),
336 .resource
= s3c_spi0_resource
,
339 EXPORT_SYMBOL(s3c_device_spi0
);
343 static struct resource s3c_spi1_resource
[] = {
345 .start
= S3C24XX_PA_SPI
+ 0x20,
346 .end
= S3C24XX_PA_SPI
+ 0x20 + 0x1f,
347 .flags
= IORESOURCE_MEM
,
352 .flags
= IORESOURCE_IRQ
,
357 struct platform_device s3c_device_spi1
= {
358 .name
= "s3c2410-spi",
360 .num_resources
= ARRAY_SIZE(s3c_spi1_resource
),
361 .resource
= s3c_spi1_resource
,
364 EXPORT_SYMBOL(s3c_device_spi1
);
366 /* pwm timer blocks */
368 static struct resource s3c_timer0_resource
[] = {
370 .start
= S3C24XX_PA_TIMER
+ 0x0C,
371 .end
= S3C24XX_PA_TIMER
+ 0x0C + 0xB,
372 .flags
= IORESOURCE_MEM
,
377 .flags
= IORESOURCE_IRQ
,
382 struct platform_device s3c_device_timer0
= {
383 .name
= "s3c2410-timer",
385 .num_resources
= ARRAY_SIZE(s3c_timer0_resource
),
386 .resource
= s3c_timer0_resource
,
389 EXPORT_SYMBOL(s3c_device_timer0
);
393 static struct resource s3c_timer1_resource
[] = {
395 .start
= S3C24XX_PA_TIMER
+ 0x18,
396 .end
= S3C24XX_PA_TIMER
+ 0x23,
397 .flags
= IORESOURCE_MEM
,
402 .flags
= IORESOURCE_IRQ
,
407 struct platform_device s3c_device_timer1
= {
408 .name
= "s3c2410-timer",
410 .num_resources
= ARRAY_SIZE(s3c_timer1_resource
),
411 .resource
= s3c_timer1_resource
,
414 EXPORT_SYMBOL(s3c_device_timer1
);
418 static struct resource s3c_timer2_resource
[] = {
420 .start
= S3C24XX_PA_TIMER
+ 0x24,
421 .end
= S3C24XX_PA_TIMER
+ 0x2F,
422 .flags
= IORESOURCE_MEM
,
427 .flags
= IORESOURCE_IRQ
,
432 struct platform_device s3c_device_timer2
= {
433 .name
= "s3c2410-timer",
435 .num_resources
= ARRAY_SIZE(s3c_timer2_resource
),
436 .resource
= s3c_timer2_resource
,
439 EXPORT_SYMBOL(s3c_device_timer2
);
443 static struct resource s3c_timer3_resource
[] = {
445 .start
= S3C24XX_PA_TIMER
+ 0x30,
446 .end
= S3C24XX_PA_TIMER
+ 0x3B,
447 .flags
= IORESOURCE_MEM
,
452 .flags
= IORESOURCE_IRQ
,
457 struct platform_device s3c_device_timer3
= {
458 .name
= "s3c2410-timer",
460 .num_resources
= ARRAY_SIZE(s3c_timer3_resource
),
461 .resource
= s3c_timer3_resource
,
464 EXPORT_SYMBOL(s3c_device_timer3
);
466 #ifdef CONFIG_CPU_S3C2440
468 /* Camif Controller */
470 static struct resource s3c_camif_resource
[] = {
472 .start
= S3C2440_PA_CAMIF
,
473 .end
= S3C2440_PA_CAMIF
+ S3C2440_SZ_CAMIF
- 1,
474 .flags
= IORESOURCE_MEM
,
479 .flags
= IORESOURCE_IRQ
,
484 static u64 s3c_device_camif_dmamask
= 0xffffffffUL
;
486 struct platform_device s3c_device_camif
= {
487 .name
= "s3c2440-camif",
489 .num_resources
= ARRAY_SIZE(s3c_camif_resource
),
490 .resource
= s3c_camif_resource
,
492 .dma_mask
= &s3c_device_camif_dmamask
,
493 .coherent_dma_mask
= 0xffffffffUL
497 EXPORT_SYMBOL(s3c_device_camif
);
499 #endif // CONFIG_CPU_S32440