|
@@ -25,6 +25,8 @@
|
|
|
#include <plat/s5pv210.h>
|
|
|
#include <plat/devs.h>
|
|
|
#include <plat/cpu.h>
|
|
|
+#include <plat/adc.h>
|
|
|
+#include <plat/ts.h>
|
|
|
|
|
|
/* Following are default values for UCON, ULCON and UFCON UART registers */
|
|
|
#define S5PV210_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \
|
|
@@ -74,6 +76,14 @@ static struct s3c2410_uartcfg smdkv210_uartcfgs[] __initdata = {
|
|
|
static struct platform_device *smdkv210_devices[] __initdata = {
|
|
|
&s5pv210_device_iis0,
|
|
|
&s5pv210_device_ac97,
|
|
|
+ &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 smdkv210_map_io(void)
|
|
@@ -85,6 +95,7 @@ static void __init smdkv210_map_io(void)
|
|
|
|
|
|
static void __init smdkv210_machine_init(void)
|
|
|
{
|
|
|
+ s3c24xx_ts_set_platdata(&s3c_ts_platform);
|
|
|
platform_add_devices(smdkv210_devices, ARRAY_SIZE(smdkv210_devices));
|
|
|
}
|
|
|
|