Commit 3cb14fa0 authored by Reddy, Teerth's avatar Reddy, Teerth Committed by Tony Lindgren

TS: Fix for the TS event issue on OMAP3 ES2.0

Fix for the Touch Screen issue on OMAP3 ES2.0.The IRQ for the TS has been defined as 3 and 2 for ES1 and ES2
and the IRQ assignment is done at run time.
Signed-off-by: default avatarTeerth Reddy <teerth@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent a84f21c0
...@@ -117,6 +117,8 @@ static struct platform_device sdp3430_kp_device = { ...@@ -117,6 +117,8 @@ static struct platform_device sdp3430_kp_device = {
}, },
}; };
static int ts_gpio;
/** /**
* @brief ads7846_dev_init : Requests & sets GPIO line for pen-irq * @brief ads7846_dev_init : Requests & sets GPIO line for pen-irq
* *
...@@ -124,20 +126,20 @@ static struct platform_device sdp3430_kp_device = { ...@@ -124,20 +126,20 @@ static struct platform_device sdp3430_kp_device = {
*/ */
static void ads7846_dev_init(void) static void ads7846_dev_init(void)
{ {
if (omap_request_gpio(TS_GPIO) < 0) { if (omap_request_gpio(ts_gpio) < 0) {
printk(KERN_ERR "can't get ads746 pen down GPIO\n"); printk(KERN_ERR "can't get ads746 pen down GPIO\n");
return; return;
} }
omap_set_gpio_direction(TS_GPIO, 1); omap_set_gpio_direction(ts_gpio, 1);
omap_set_gpio_debounce(TS_GPIO, 1); omap_set_gpio_debounce(ts_gpio, 1);
omap_set_gpio_debounce_time(TS_GPIO, 0xa); omap_set_gpio_debounce_time(ts_gpio, 0xa);
} }
static int ads7846_get_pendown_state(void) static int ads7846_get_pendown_state(void)
{ {
return !omap_get_gpio_datain(TS_GPIO); return !omap_get_gpio_datain(ts_gpio);
} }
/* /*
...@@ -193,7 +195,7 @@ static struct spi_board_info sdp3430_spi_board_info[] __initdata = { ...@@ -193,7 +195,7 @@ static struct spi_board_info sdp3430_spi_board_info[] __initdata = {
.chip_select = 0, .chip_select = 0,
.max_speed_hz = 1500000, .max_speed_hz = 1500000,
.controller_data = &tsc2046_mcspi_config, .controller_data = &tsc2046_mcspi_config,
.irq = OMAP_GPIO_IRQ(TS_GPIO), .irq = 0,
.platform_data = &tsc2046_config, .platform_data = &tsc2046_config,
}, },
}; };
...@@ -285,6 +287,11 @@ static void __init omap_3430sdp_init(void) ...@@ -285,6 +287,11 @@ static void __init omap_3430sdp_init(void)
platform_add_devices(sdp3430_devices, ARRAY_SIZE(sdp3430_devices)); platform_add_devices(sdp3430_devices, ARRAY_SIZE(sdp3430_devices));
omap_board_config = sdp3430_config; omap_board_config = sdp3430_config;
omap_board_config_size = ARRAY_SIZE(sdp3430_config); omap_board_config_size = ARRAY_SIZE(sdp3430_config);
if (is_sil_rev_greater_than(OMAP3430_REV_ES1_0))
ts_gpio = OMAP34XX_TS_GPIO_IRQ_SDPV2;
else
ts_gpio = OMAP34XX_TS_GPIO_IRQ_SDPV1;
sdp3430_spi_board_info[0].irq = OMAP_GPIO_IRQ(ts_gpio);
spi_register_board_info(sdp3430_spi_board_info, spi_register_board_info(sdp3430_spi_board_info,
ARRAY_SIZE(sdp3430_spi_board_info)); ARRAY_SIZE(sdp3430_spi_board_info));
ads7846_dev_init(); ads7846_dev_init();
......
...@@ -43,11 +43,8 @@ extern void sdp_mmc_init(void); ...@@ -43,11 +43,8 @@ extern void sdp_mmc_init(void);
/* /*
* GPIO used for TSC2046, TI's Touchscreen controller * GPIO used for TSC2046, TI's Touchscreen controller
*/ */
#ifdef CONFIG_OMAP3430_ES2 #define OMAP34XX_TS_GPIO_IRQ_SDPV1 3
#define TS_GPIO 2 #define OMAP34XX_TS_GPIO_IRQ_SDPV2 2
#else
#define TS_GPIO 3
#endif
/* NAND */ /* NAND */
/* IMPORTANT NOTE ON MAPPING /* IMPORTANT NOTE ON MAPPING
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment