|
@@ -35,11 +35,14 @@
|
|
|
#include <mach/regs-srom.h>
|
|
|
#include <mach/s3c6410.h>
|
|
|
|
|
|
+#include <plat/adc.h>
|
|
|
#include <plat/cpu.h>
|
|
|
#include <plat/devs.h>
|
|
|
#include <plat/fb.h>
|
|
|
#include <plat/nand.h>
|
|
|
#include <plat/regs-serial.h>
|
|
|
+#include <plat/ts.h>
|
|
|
+
|
|
|
#include <video/platform_lcd.h>
|
|
|
|
|
|
#define UCON (S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK)
|
|
@@ -202,6 +205,12 @@ static struct platform_device mini6410_lcd_powerdev = {
|
|
|
.dev.platform_data = &mini6410_lcd_power_data,
|
|
|
};
|
|
|
|
|
|
+static struct s3c2410_ts_mach_info s3c_ts_platform __initdata = {
|
|
|
+ .delay = 10000,
|
|
|
+ .presc = 49,
|
|
|
+ .oversampling_shift = 2,
|
|
|
+};
|
|
|
+
|
|
|
static struct platform_device *mini6410_devices[] __initdata = {
|
|
|
&mini6410_device_eth,
|
|
|
&s3c_device_hsmmc0,
|
|
@@ -210,6 +219,8 @@ static struct platform_device *mini6410_devices[] __initdata = {
|
|
|
&s3c_device_nand,
|
|
|
&s3c_device_fb,
|
|
|
&mini6410_lcd_powerdev,
|
|
|
+ &s3c_device_adc,
|
|
|
+ &s3c_device_ts,
|
|
|
};
|
|
|
|
|
|
static void __init mini6410_map_io(void)
|
|
@@ -308,6 +319,7 @@ static void __init mini6410_machine_init(void)
|
|
|
|
|
|
s3c_nand_set_platdata(&mini6410_nand_info);
|
|
|
s3c_fb_set_platdata(&mini6410_lcd_pdata);
|
|
|
+ s3c24xx_ts_set_platdata(&s3c_ts_platform);
|
|
|
|
|
|
/* configure nCS1 width to 16 bits */
|
|
|
|