aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-s3c/include/plat/devs.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/plat-s3c/include/plat/devs.h')
-rw-r--r--arch/arm/plat-s3c/include/plat/devs.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/arch/arm/plat-s3c/include/plat/devs.h b/arch/arm/plat-s3c/include/plat/devs.h
new file mode 100644
index 000000000000..6b1b5231511c
--- /dev/null
+++ b/arch/arm/plat-s3c/include/plat/devs.h
@@ -0,0 +1,54 @@
1/* linux/include/asm-arm/plat-s3c24xx/devs.h
2 *
3 * Copyright (c) 2004 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * Header file for s3c2410 standard platform devices
7 *
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.
11*/
12#include <linux/platform_device.h>
13
14struct s3c24xx_uart_resources {
15 struct resource *resources;
16 unsigned long nr_resources;
17};
18
19extern struct s3c24xx_uart_resources s3c2410_uart_resources[];
20extern struct s3c24xx_uart_resources s3c64xx_uart_resources[];
21
22extern struct platform_device *s3c24xx_uart_devs[];
23extern struct platform_device *s3c24xx_uart_src[];
24
25extern struct platform_device s3c_device_timer[];
26
27extern struct platform_device s3c_device_fb;
28extern struct platform_device s3c_device_usb;
29extern struct platform_device s3c_device_lcd;
30extern struct platform_device s3c_device_wdt;
31extern struct platform_device s3c_device_i2c0;
32extern struct platform_device s3c_device_i2c1;
33extern struct platform_device s3c_device_iis;
34extern struct platform_device s3c_device_rtc;
35extern struct platform_device s3c_device_adc;
36extern struct platform_device s3c_device_sdi;
37extern struct platform_device s3c_device_hsmmc0;
38extern struct platform_device s3c_device_hsmmc1;
39extern struct platform_device s3c_device_hsmmc2;
40
41extern struct platform_device s3c_device_spi0;
42extern struct platform_device s3c_device_spi1;
43
44extern struct platform_device s3c_device_nand;
45
46extern struct platform_device s3c_device_usbgadget;
47
48/* s3c2440 specific devices */
49
50#ifdef CONFIG_CPU_S3C2440
51
52extern struct platform_device s3c_device_camif;
53
54#endif