summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s5p6440/mach-smdk6440.c
diff options
context:
space:
mode:
authorNaveen Krishna Ch <ch.naveen@samsung.com>2010-05-20 11:39:53 +0900
committerBen Dooks <ben-linux@fluff.org>2010-05-20 14:15:21 +0900
commit09cae8f195c5be8d3102022c7ecd1653b3653233 (patch)
tree270f2869daf98c5ad8e50923ffbf92e158a82b5e /arch/arm/mach-s5p6440/mach-smdk6440.c
parent85b14a3fc4036473ec6776d8e5d92c022155d581 (diff)
ARM: S5P6440: Add Touchscreen support for S5P6440
This patch adds touchscreen support for S5P6440. Signed-off-by: Naveen Krishna Ch <ch.naveen@samsung.com Signed-off-by: Kukjin Kim <kgene.kim@samsung.com> [ben-linux@fluff.org: minor header fix] Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s5p6440/mach-smdk6440.c')
-rw-r--r--arch/arm/mach-s5p6440/mach-smdk6440.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/mach-s5p6440/mach-smdk6440.c b/arch/arm/mach-s5p6440/mach-smdk6440.c
index d7fede971ca..f9948174ba4 100644
--- a/arch/arm/mach-s5p6440/mach-smdk6440.c
+++ b/arch/arm/mach-s5p6440/mach-smdk6440.c
@@ -38,6 +38,8 @@
#include <plat/devs.h>
#include <plat/cpu.h>
#include <plat/pll.h>
+#include <plat/adc.h>
+#include <plat/ts.h>
#define S5P6440_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \
S3C2410_UCON_RXILEVEL | \
@@ -85,6 +87,14 @@ static struct s3c2410_uartcfg smdk6440_uartcfgs[] __initdata = {
static struct platform_device *smdk6440_devices[] __initdata = {
&s5p6440_device_iis,
+ &s3c_device_adc,
+ &s3c_device_ts,
+};
+
+static struct s3c2410_ts_mach_info s3c_ts_platform __initdata = {
+ .delay = 10000,
+ .presc = 49,
+ .oversampling_shift = 2,
};
static void __init smdk6440_map_io(void)
@@ -96,6 +106,8 @@ static void __init smdk6440_map_io(void)
static void __init smdk6440_machine_init(void)
{
+ s3c24xx_ts_set_platdata(&s3c_ts_platform);
+
platform_add_devices(smdk6440_devices, ARRAY_SIZE(smdk6440_devices));
}