|
@@ -22,6 +22,7 @@
|
|
|
#include <linux/i2c.h>
|
|
|
#include <linux/fb.h>
|
|
|
#include <linux/delay.h>
|
|
|
+#include <linux/input.h>
|
|
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
#include <asm/mach/map.h>
|
|
@@ -42,6 +43,10 @@
|
|
|
#include <plat/s5pc100.h>
|
|
|
#include <plat/fb.h>
|
|
|
#include <plat/iic.h>
|
|
|
+#include <plat/ata.h>
|
|
|
+#include <plat/adc.h>
|
|
|
+#include <plat/keypad.h>
|
|
|
+#include <plat/ts.h>
|
|
|
|
|
|
/* Following are default values for UCON, ULCON and UFCON UART registers */
|
|
|
#define S5PC100_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \
|
|
@@ -149,16 +154,51 @@ static struct s3c_fb_platdata smdkc100_lcd_pdata __initdata = {
|
|
|
.setup_gpio = s5pc100_fb_gpio_setup_24bpp,
|
|
|
};
|
|
|
|
|
|
+static struct s3c_ide_platdata smdkc100_ide_pdata __initdata = {
|
|
|
+ .setup_gpio = s5pc100_ide_setup_gpio,
|
|
|
+};
|
|
|
+
|
|
|
+static uint32_t smdkc100_keymap[] __initdata = {
|
|
|
+ /* KEY(row, col, keycode) */
|
|
|
+ KEY(0, 3, KEY_1), KEY(0, 4, KEY_2), KEY(0, 5, KEY_3),
|
|
|
+ KEY(0, 6, KEY_4), KEY(0, 7, KEY_5),
|
|
|
+ KEY(1, 3, KEY_A), KEY(1, 4, KEY_B), KEY(1, 5, KEY_C),
|
|
|
+ KEY(1, 6, KEY_D), KEY(1, 7, KEY_E)
|
|
|
+};
|
|
|
+
|
|
|
+static struct matrix_keymap_data smdkc100_keymap_data __initdata = {
|
|
|
+ .keymap = smdkc100_keymap,
|
|
|
+ .keymap_size = ARRAY_SIZE(smdkc100_keymap),
|
|
|
+};
|
|
|
+
|
|
|
+static struct samsung_keypad_platdata smdkc100_keypad_data __initdata = {
|
|
|
+ .keymap_data = &smdkc100_keymap_data,
|
|
|
+ .rows = 2,
|
|
|
+ .cols = 8,
|
|
|
+};
|
|
|
+
|
|
|
static struct platform_device *smdkc100_devices[] __initdata = {
|
|
|
+ &s3c_device_adc,
|
|
|
+ &s3c_device_cfcon,
|
|
|
&s3c_device_i2c0,
|
|
|
&s3c_device_i2c1,
|
|
|
&s3c_device_fb,
|
|
|
&s3c_device_hsmmc0,
|
|
|
&s3c_device_hsmmc1,
|
|
|
&s3c_device_hsmmc2,
|
|
|
+ &s3c_device_ts,
|
|
|
+ &s3c_device_wdt,
|
|
|
&smdkc100_lcd_powerdev,
|
|
|
&s5pc100_device_iis0,
|
|
|
+ &samsung_device_keypad,
|
|
|
&s5pc100_device_ac97,
|
|
|
+ &s3c_device_rtc,
|
|
|
+};
|
|
|
+
|
|
|
+static struct s3c2410_ts_mach_info s3c_ts_platform __initdata = {
|
|
|
+ .delay = 10000,
|
|
|
+ .presc = 49,
|
|
|
+ .oversampling_shift = 2,
|
|
|
};
|
|
|
|
|
|
static void __init smdkc100_map_io(void)
|
|
@@ -170,6 +210,8 @@ static void __init smdkc100_map_io(void)
|
|
|
|
|
|
static void __init smdkc100_machine_init(void)
|
|
|
{
|
|
|
+ s3c24xx_ts_set_platdata(&s3c_ts_platform);
|
|
|
+
|
|
|
/* I2C */
|
|
|
s3c_i2c0_set_platdata(NULL);
|
|
|
s3c_i2c1_set_platdata(NULL);
|
|
@@ -177,6 +219,9 @@ static void __init smdkc100_machine_init(void)
|
|
|
i2c_register_board_info(1, i2c_devs1, ARRAY_SIZE(i2c_devs1));
|
|
|
|
|
|
s3c_fb_set_platdata(&smdkc100_lcd_pdata);
|
|
|
+ s3c_ide_set_platdata(&smdkc100_ide_pdata);
|
|
|
+
|
|
|
+ samsung_keypad_set_platdata(&smdkc100_keypad_data);
|
|
|
|
|
|
/* LCD init */
|
|
|
gpio_request(S5PC100_GPD(0), "GPD");
|