blob: 2f694f3846a9ad1a5d052e96d5f68cd9a152c313 [file] [log] [blame]
David Brownellffa458c2006-01-08 13:34:21 -08001/* linux/spi/ads7846.h */
2
3/* Touchscreen characteristics vary between boards and models. The
David Brownell2e5a7bd2006-01-08 13:34:25 -08004 * platform_data for the device's "struct device" holds this information.
David Brownellffa458c2006-01-08 13:34:21 -08005 *
6 * It's OK if the min/max values are zero.
7 */
Imre Deakda970e62007-01-18 00:44:41 -05008enum ads7846_filter {
9 ADS7846_FILTER_OK,
10 ADS7846_FILTER_REPEAT,
11 ADS7846_FILTER_IGNORE,
12};
13
David Brownellffa458c2006-01-08 13:34:21 -080014struct ads7846_platform_data {
Michael Hennerich06a09122010-03-09 20:38:45 -080015 u16 model; /* 7843, 7845, 7846, 7873. */
David Brownellffa458c2006-01-08 13:34:21 -080016 u16 vref_delay_usecs; /* 0 for external vref; etc */
Alexander Steinebcaaad2011-05-11 16:24:08 -070017 u16 vref_mv; /* external vref value, milliVolts
18 * ads7846: if 0, use internal vref */
David Brownell7c6d0ee2008-04-02 00:43:01 -040019 bool keep_vref_on; /* set to keep vref on for differential
Imre Deakde2defd2007-01-18 00:45:21 -050020 * measurements as well */
Michael Roth86579a42009-05-18 16:04:44 -070021 bool swap_xy; /* swap x and y axes */
Semih Hazare4f48862007-07-18 00:35:56 -040022
23 /* Settling time of the analog signals; a function of Vcc and the
24 * capacitance on the X/Y drivers. If set to non-zero, two samples
25 * are taken with settle_delay us apart, and the second one is used.
26 * ~150 uSec with 0.01uF caps.
27 */
28 u16 settle_delay_usecs;
29
Semih Hazar1d258912007-07-18 00:36:04 -040030 /* If set to non-zero, after samples are taken this delay is applied
31 * and penirq is rechecked, to help avoid false events. This value
32 * is affected by the material used to build the touch layer.
33 */
34 u16 penirq_recheck_delay_usecs;
35
David Brownellffa458c2006-01-08 13:34:21 -080036 u16 x_plate_ohms;
37 u16 y_plate_ohms;
38
39 u16 x_min, x_max;
40 u16 y_min, y_max;
41 u16 pressure_min, pressure_max;
Imre Deak0b7018a2006-04-11 23:42:03 -040042
Imre Deakd5b415c2006-04-26 00:13:18 -040043 u16 debounce_max; /* max number of additional readings
44 * per sample */
Imre Deak0b7018a2006-04-11 23:42:03 -040045 u16 debounce_tol; /* tolerance used for filtering */
Imre Deakd5b415c2006-04-26 00:13:18 -040046 u16 debounce_rep; /* additional consecutive good readings
47 * required after the first two */
Eric Miao6ae19b02008-09-10 12:06:15 -040048 int gpio_pendown; /* the GPIO used to decide the pendown
Igor Grinbergc4f49252012-11-20 23:00:10 -080049 * state if get_pendown_state == NULL */
50 int gpio_pendown_debounce; /* platform specific debounce time for
51 * the gpio_pendown */
Imre Deakc9e617a2006-04-11 23:44:05 -040052 int (*get_pendown_state)(void);
Dmitry Torokhov0f622bf2010-07-01 09:01:50 -070053 int (*filter_init) (const struct ads7846_platform_data *pdata,
Imre Deakda970e62007-01-18 00:44:41 -050054 void **filter_data);
55 int (*filter) (void *filter_data, int data_idx, int *val);
56 void (*filter_cleanup)(void *filter_data);
Eric Miaofd746d52009-04-11 16:54:59 -070057 void (*wait_for_sync)(void);
Ranjith Lohithakshanfdba2bb2010-03-10 23:41:22 -080058 bool wakeup;
Anatolij Gustschin78043022010-06-28 01:25:19 -070059 unsigned long irq_flags;
David Brownellffa458c2006-01-08 13:34:21 -080060};
61