mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
0b7018aae7
Some touchscreens seem to oscillate heavily for a while after touching the screen. Implement support for sampling the screen until we get two consecutive values that are close enough. Signed-off-by: Imre Deak <imre.deak@nokia.com> Signed-off-by: Juha Yrjola <juha.yrjola@nokia.com> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
21 lines
572 B
C
21 lines
572 B
C
/* linux/spi/ads7846.h */
|
|
|
|
/* Touchscreen characteristics vary between boards and models. The
|
|
* platform_data for the device's "struct device" holds this information.
|
|
*
|
|
* It's OK if the min/max values are zero.
|
|
*/
|
|
struct ads7846_platform_data {
|
|
u16 model; /* 7843, 7845, 7846. */
|
|
u16 vref_delay_usecs; /* 0 for external vref; etc */
|
|
u16 x_plate_ohms;
|
|
u16 y_plate_ohms;
|
|
|
|
u16 x_min, x_max;
|
|
u16 y_min, y_max;
|
|
u16 pressure_min, pressure_max;
|
|
|
|
u16 debounce_max; /* max number of readings per sample */
|
|
u16 debounce_tol; /* tolerance used for filtering */
|
|
};
|
|
|