From: Kuninori Morimoto Date: Wed, 11 Apr 2012 03:58:45 +0000 (-0700) Subject: ARM: mach-shmobile: kzm9g: add ST1232 Touchscreen support X-Git-Tag: v3.5-rc1~150^2~3^2~2^2~8 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=407c05266cd6e5db8ba77921fabdf9e04779088c;p=karo-tx-linux.git ARM: mach-shmobile: kzm9g: add ST1232 Touchscreen support Signed-off-by: Kuninori Morimoto Tested-by: Simon Horman Acked-by: Magnus Damm Signed-off-by: Rafael J. Wysocki --- diff --git a/arch/arm/mach-shmobile/board-kzm9g.c b/arch/arm/mach-shmobile/board-kzm9g.c index 145341dbebf5..c846531fa48c 100644 --- a/arch/arm/mach-shmobile/board-kzm9g.c +++ b/arch/arm/mach-shmobile/board-kzm9g.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -146,6 +147,13 @@ static struct platform_device lcdc_device = { }, }; +static struct i2c_board_info i2c1_devices[] = { + { + I2C_BOARD_INFO("st1232-ts", 0x55), + .irq = intcs_evt2irq(0x300), /* IRQ8 */ + }, +}; + static struct platform_device *kzm_devices[] __initdata = { &smsc_device, &usb_host_device, @@ -253,11 +261,17 @@ static void __init kzm_init(void) gpio_request(GPIO_PORT222, NULL); gpio_direction_output(GPIO_PORT222, 1); + /* Touchscreen */ + gpio_request(GPIO_PORT223, NULL); /* IRQ8 */ + gpio_direction_input(GPIO_PORT223); + #ifdef CONFIG_CACHE_L2X0 /* Early BRESP enable, Shared attribute override enable, 64K*8way */ l2x0_init(IOMEM(0xf0100000), 0x40460000, 0x82000fff); #endif + i2c_register_board_info(1, i2c1_devices, ARRAY_SIZE(i2c1_devices)); + sh73a0_add_standard_devices(); platform_add_devices(kzm_devices, ARRAY_SIZE(kzm_devices)); }