David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1 | /* |
| 2 | * ADS7846 based touchscreen and sensor driver |
| 3 | * |
| 4 | * Copyright (c) 2005 David Brownell |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 5 | * Copyright (c) 2006 Nokia Corporation |
| 6 | * Various changes: Imre Deak <imre.deak@nokia.com> |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 7 | * |
| 8 | * Using code from: |
| 9 | * - corgi_ts.c |
| 10 | * Copyright (C) 2004-2005 Richard Purdie |
| 11 | * - omap_ts.[hc], ads7846.h, ts_osk.c |
| 12 | * Copyright (C) 2002 MontaVista Software |
| 13 | * Copyright (C) 2004 Texas Instruments |
| 14 | * Copyright (C) 2005 Dirk Behme |
| 15 | * |
| 16 | * This program is free software; you can redistribute it and/or modify |
| 17 | * it under the terms of the GNU General Public License version 2 as |
| 18 | * published by the Free Software Foundation. |
| 19 | */ |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 20 | #include <linux/types.h> |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 21 | #include <linux/hwmon.h> |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 22 | #include <linux/init.h> |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 23 | #include <linux/err.h> |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 24 | #include <linux/sched.h> |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 25 | #include <linux/delay.h> |
| 26 | #include <linux/input.h> |
| 27 | #include <linux/interrupt.h> |
| 28 | #include <linux/slab.h> |
Mark Brown | 3c36e71 | 2011-01-20 22:51:26 -0800 | [diff] [blame] | 29 | #include <linux/pm.h> |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 30 | #include <linux/gpio.h> |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 31 | #include <linux/spi/spi.h> |
| 32 | #include <linux/spi/ads7846.h> |
Grazvydas Ignotas | 9114337 | 2010-02-25 02:04:56 -0800 | [diff] [blame] | 33 | #include <linux/regulator/consumer.h> |
Andrew Morton | 3ac8bf0 | 2006-03-26 01:37:33 -0800 | [diff] [blame] | 34 | #include <asm/irq.h> |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 35 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 36 | /* |
David Brownell | 9084533 | 2006-05-25 18:44:20 -0700 | [diff] [blame] | 37 | * This code has been heavily tested on a Nokia 770, and lightly |
Pavel Machek | 52ce4ea | 2009-11-23 08:25:17 -0800 | [diff] [blame] | 38 | * tested on other ads7846 devices (OSK/Mistral, Lubbock, Spitz). |
David Brownell | bff0de5 | 2007-05-22 23:28:40 -0400 | [diff] [blame] | 39 | * TSC2046 is just newer ads7846 silicon. |
Nicolas Ferre | 969111e | 2007-02-28 23:51:03 -0500 | [diff] [blame] | 40 | * Support for ads7843 tested on Atmel at91sam926x-EK. |
| 41 | * Support for ads7845 has only been stubbed in. |
Michael Hennerich | 06a0912 | 2010-03-09 20:38:45 -0800 | [diff] [blame] | 42 | * Support for Analog Devices AD7873 and AD7843 tested. |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 43 | * |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 44 | * IRQ handling needs a workaround because of a shortcoming in handling |
| 45 | * edge triggered IRQs on some platforms like the OMAP1/2. These |
| 46 | * platforms don't handle the ARM lazy IRQ disabling properly, thus we |
| 47 | * have to maintain our own SW IRQ disabled status. This should be |
| 48 | * removed as soon as the affected platform's IRQ handling is fixed. |
| 49 | * |
Pavel Machek | 52ce4ea | 2009-11-23 08:25:17 -0800 | [diff] [blame] | 50 | * App note sbaa036 talks in more detail about accurate sampling... |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 51 | * that ought to help in situations like LCDs inducing noise (which |
| 52 | * can also be helped by using synch signals) and more generally. |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 53 | * This driver tries to utilize the measures described in the app |
| 54 | * note. The strength of filtering can be set in the board-* specific |
| 55 | * files. |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 56 | */ |
| 57 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 58 | #define TS_POLL_DELAY 1 /* ms delay before the first sample */ |
| 59 | #define TS_POLL_PERIOD 5 /* ms delay between samples */ |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 60 | |
David Brownell | d93f70b | 2006-02-15 00:49:35 -0500 | [diff] [blame] | 61 | /* this driver doesn't aim at the peak continuous sample rate */ |
| 62 | #define SAMPLE_BITS (8 /*cmd*/ + 16 /*sample*/ + 2 /* before, after */) |
| 63 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 64 | struct ts_event { |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 65 | /* |
| 66 | * For portability, we can't read 12 bit values using SPI (which |
| 67 | * would make the controller deliver them as native byte order u16 |
David Brownell | d93f70b | 2006-02-15 00:49:35 -0500 | [diff] [blame] | 68 | * with msbs zeroed). Instead, we read them as two 8-bit values, |
Imre Deak | da970e6 | 2007-01-18 00:44:41 -0500 | [diff] [blame] | 69 | * *** WHICH NEED BYTESWAPPING *** and range adjustment. |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 70 | */ |
Imre Deak | da970e6 | 2007-01-18 00:44:41 -0500 | [diff] [blame] | 71 | u16 x; |
| 72 | u16 y; |
| 73 | u16 z1, z2; |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 74 | bool ignore; |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 75 | u8 x_buf[3]; |
| 76 | u8 y_buf[3]; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 77 | }; |
| 78 | |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 79 | /* |
| 80 | * We allocate this separately to avoid cache line sharing issues when |
| 81 | * driver is used with DMA-based SPI controllers (like atmel_spi) on |
| 82 | * systems where main memory is not DMA-coherent (most non-x86 boards). |
| 83 | */ |
| 84 | struct ads7846_packet { |
| 85 | u8 read_x, read_y, read_z1, read_z2, pwrdown; |
| 86 | u16 dummy; /* for the pwrdown read */ |
| 87 | struct ts_event tc; |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 88 | /* for ads7845 with mpc5121 psc spi we use 3-byte buffers */ |
| 89 | u8 read_x_cmd[3], read_y_cmd[3], pwrdown_cmd[3]; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 90 | }; |
| 91 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 92 | struct ads7846 { |
Dmitry Torokhov | a90f7e9 | 2006-02-15 00:49:22 -0500 | [diff] [blame] | 93 | struct input_dev *input; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 94 | char phys[32]; |
Michael Roth | b58895f | 2009-05-18 16:05:12 -0700 | [diff] [blame] | 95 | char name[32]; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 96 | |
| 97 | struct spi_device *spi; |
Grazvydas Ignotas | 9114337 | 2010-02-25 02:04:56 -0800 | [diff] [blame] | 98 | struct regulator *reg; |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 99 | |
| 100 | #if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE) |
Dmitry Torokhov | 8dd5165 | 2006-11-02 23:34:09 -0500 | [diff] [blame] | 101 | struct attribute_group *attr_group; |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 102 | struct device *hwmon; |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 103 | #endif |
| 104 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 105 | u16 model; |
David Brownell | 7c6d0ee | 2008-04-02 00:43:01 -0400 | [diff] [blame] | 106 | u16 vref_mv; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 107 | u16 vref_delay_usecs; |
| 108 | u16 x_plate_ohms; |
Imre Deak | d5b415c | 2006-04-26 00:13:18 -0400 | [diff] [blame] | 109 | u16 pressure_max; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 110 | |
Michael Roth | 86579a4 | 2009-05-18 16:04:44 -0700 | [diff] [blame] | 111 | bool swap_xy; |
| 112 | |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 113 | struct ads7846_packet *packet; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 114 | |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 115 | struct spi_transfer xfer[18]; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 116 | struct spi_message msg[5]; |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 117 | int msg_count; |
| 118 | wait_queue_head_t wait; |
| 119 | |
| 120 | bool pendown; |
| 121 | |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 122 | int read_cnt; |
Imre Deak | d5b415c | 2006-04-26 00:13:18 -0400 | [diff] [blame] | 123 | int read_rep; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 124 | int last_read; |
| 125 | |
| 126 | u16 debounce_max; |
| 127 | u16 debounce_tol; |
Imre Deak | d5b415c | 2006-04-26 00:13:18 -0400 | [diff] [blame] | 128 | u16 debounce_rep; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 129 | |
Semih Hazar | 1d25891 | 2007-07-18 00:36:04 -0400 | [diff] [blame] | 130 | u16 penirq_recheck_delay_usecs; |
| 131 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 132 | struct mutex lock; |
| 133 | bool stopped; /* P: lock */ |
| 134 | bool disabled; /* P: lock */ |
| 135 | bool suspended; /* P: lock */ |
Imre Deak | c9e617a | 2006-04-11 23:44:05 -0400 | [diff] [blame] | 136 | |
Imre Deak | da970e6 | 2007-01-18 00:44:41 -0500 | [diff] [blame] | 137 | int (*filter)(void *data, int data_idx, int *val); |
| 138 | void *filter_data; |
| 139 | void (*filter_cleanup)(void *data); |
Imre Deak | c9e617a | 2006-04-11 23:44:05 -0400 | [diff] [blame] | 140 | int (*get_pendown_state)(void); |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 141 | int gpio_pendown; |
Eric Miao | fd746d5 | 2009-04-11 16:54:59 -0700 | [diff] [blame] | 142 | |
| 143 | void (*wait_for_sync)(void); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 144 | }; |
| 145 | |
| 146 | /* leave chip selected when we're done, for quicker re-select? */ |
| 147 | #if 0 |
| 148 | #define CS_CHANGE(xfer) ((xfer).cs_change = 1) |
| 149 | #else |
| 150 | #define CS_CHANGE(xfer) ((xfer).cs_change = 0) |
| 151 | #endif |
| 152 | |
| 153 | /*--------------------------------------------------------------------------*/ |
| 154 | |
| 155 | /* The ADS7846 has touchscreen and other sensors. |
| 156 | * Earlier ads784x chips are somewhat compatible. |
| 157 | */ |
| 158 | #define ADS_START (1 << 7) |
| 159 | #define ADS_A2A1A0_d_y (1 << 4) /* differential */ |
| 160 | #define ADS_A2A1A0_d_z1 (3 << 4) /* differential */ |
| 161 | #define ADS_A2A1A0_d_z2 (4 << 4) /* differential */ |
| 162 | #define ADS_A2A1A0_d_x (5 << 4) /* differential */ |
| 163 | #define ADS_A2A1A0_temp0 (0 << 4) /* non-differential */ |
| 164 | #define ADS_A2A1A0_vbatt (2 << 4) /* non-differential */ |
| 165 | #define ADS_A2A1A0_vaux (6 << 4) /* non-differential */ |
| 166 | #define ADS_A2A1A0_temp1 (7 << 4) /* non-differential */ |
| 167 | #define ADS_8_BIT (1 << 3) |
| 168 | #define ADS_12_BIT (0 << 3) |
| 169 | #define ADS_SER (1 << 2) /* non-differential */ |
| 170 | #define ADS_DFR (0 << 2) /* differential */ |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 171 | #define ADS_PD10_PDOWN (0 << 0) /* low power mode + penirq */ |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 172 | #define ADS_PD10_ADC_ON (1 << 0) /* ADC on */ |
| 173 | #define ADS_PD10_REF_ON (2 << 0) /* vREF on + penirq */ |
| 174 | #define ADS_PD10_ALL_ON (3 << 0) /* ADC + vREF on */ |
| 175 | |
| 176 | #define MAX_12BIT ((1<<12)-1) |
| 177 | |
| 178 | /* leave ADC powered up (disables penirq) between differential samples */ |
Imre Deak | de2defd | 2007-01-18 00:45:21 -0500 | [diff] [blame] | 179 | #define READ_12BIT_DFR(x, adc, vref) (ADS_START | ADS_A2A1A0_d_ ## x \ |
| 180 | | ADS_12_BIT | ADS_DFR | \ |
| 181 | (adc ? ADS_PD10_ADC_ON : 0) | (vref ? ADS_PD10_REF_ON : 0)) |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 182 | |
Imre Deak | de2defd | 2007-01-18 00:45:21 -0500 | [diff] [blame] | 183 | #define READ_Y(vref) (READ_12BIT_DFR(y, 1, vref)) |
| 184 | #define READ_Z1(vref) (READ_12BIT_DFR(z1, 1, vref)) |
| 185 | #define READ_Z2(vref) (READ_12BIT_DFR(z2, 1, vref)) |
Imre Deak | 53a0ef89 | 2006-04-11 23:41:49 -0400 | [diff] [blame] | 186 | |
Imre Deak | de2defd | 2007-01-18 00:45:21 -0500 | [diff] [blame] | 187 | #define READ_X(vref) (READ_12BIT_DFR(x, 1, vref)) |
| 188 | #define PWRDOWN (READ_12BIT_DFR(y, 0, 0)) /* LAST */ |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 189 | |
| 190 | /* single-ended samples need to first power up reference voltage; |
| 191 | * we leave both ADC and VREF powered |
| 192 | */ |
| 193 | #define READ_12BIT_SER(x) (ADS_START | ADS_A2A1A0_ ## x \ |
| 194 | | ADS_12_BIT | ADS_SER) |
| 195 | |
Imre Deak | de2defd | 2007-01-18 00:45:21 -0500 | [diff] [blame] | 196 | #define REF_ON (READ_12BIT_DFR(x, 1, 1)) |
| 197 | #define REF_OFF (READ_12BIT_DFR(y, 0, 0)) |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 198 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 199 | /* Must be called with ts->lock held */ |
| 200 | static void ads7846_stop(struct ads7846 *ts) |
| 201 | { |
| 202 | if (!ts->disabled && !ts->suspended) { |
| 203 | /* Signal IRQ thread to stop polling and disable the handler. */ |
| 204 | ts->stopped = true; |
| 205 | mb(); |
| 206 | wake_up(&ts->wait); |
| 207 | disable_irq(ts->spi->irq); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | /* Must be called with ts->lock held */ |
| 212 | static void ads7846_restart(struct ads7846 *ts) |
| 213 | { |
| 214 | if (!ts->disabled && !ts->suspended) { |
| 215 | /* Tell IRQ thread that it may poll the device. */ |
| 216 | ts->stopped = false; |
| 217 | mb(); |
| 218 | enable_irq(ts->spi->irq); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | /* Must be called with ts->lock held */ |
| 223 | static void __ads7846_disable(struct ads7846 *ts) |
| 224 | { |
| 225 | ads7846_stop(ts); |
| 226 | regulator_disable(ts->reg); |
| 227 | |
| 228 | /* |
| 229 | * We know the chip's in low power mode since we always |
| 230 | * leave it that way after every request |
| 231 | */ |
| 232 | } |
| 233 | |
| 234 | /* Must be called with ts->lock held */ |
| 235 | static void __ads7846_enable(struct ads7846 *ts) |
| 236 | { |
| 237 | regulator_enable(ts->reg); |
| 238 | ads7846_restart(ts); |
| 239 | } |
| 240 | |
| 241 | static void ads7846_disable(struct ads7846 *ts) |
| 242 | { |
| 243 | mutex_lock(&ts->lock); |
| 244 | |
| 245 | if (!ts->disabled) { |
| 246 | |
| 247 | if (!ts->suspended) |
| 248 | __ads7846_disable(ts); |
| 249 | |
| 250 | ts->disabled = true; |
| 251 | } |
| 252 | |
| 253 | mutex_unlock(&ts->lock); |
| 254 | } |
| 255 | |
| 256 | static void ads7846_enable(struct ads7846 *ts) |
| 257 | { |
| 258 | mutex_lock(&ts->lock); |
| 259 | |
| 260 | if (ts->disabled) { |
| 261 | |
| 262 | ts->disabled = false; |
| 263 | |
| 264 | if (!ts->suspended) |
| 265 | __ads7846_enable(ts); |
| 266 | } |
| 267 | |
| 268 | mutex_unlock(&ts->lock); |
| 269 | } |
| 270 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 271 | /*--------------------------------------------------------------------------*/ |
| 272 | |
| 273 | /* |
| 274 | * Non-touchscreen sensors only use single-ended conversions. |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 275 | * The range is GND..vREF. The ads7843 and ads7835 must use external vREF; |
| 276 | * ads7846 lets that pin be unconnected, to use internal vREF. |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 277 | */ |
| 278 | |
| 279 | struct ser_req { |
David Brownell | d93f70b | 2006-02-15 00:49:35 -0500 | [diff] [blame] | 280 | u8 ref_on; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 281 | u8 command; |
David Brownell | d93f70b | 2006-02-15 00:49:35 -0500 | [diff] [blame] | 282 | u8 ref_off; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 283 | u16 scratch; |
| 284 | __be16 sample; |
| 285 | struct spi_message msg; |
| 286 | struct spi_transfer xfer[6]; |
| 287 | }; |
| 288 | |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 289 | struct ads7845_ser_req { |
| 290 | u8 command[3]; |
| 291 | u8 pwrdown[3]; |
| 292 | u8 sample[3]; |
| 293 | struct spi_message msg; |
| 294 | struct spi_transfer xfer[2]; |
| 295 | }; |
| 296 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 297 | static int ads7846_read12_ser(struct device *dev, unsigned command) |
| 298 | { |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 299 | struct spi_device *spi = to_spi_device(dev); |
| 300 | struct ads7846 *ts = dev_get_drvdata(dev); |
| 301 | struct ser_req *req; |
| 302 | int status; |
| 303 | int use_internal; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 304 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 305 | req = kzalloc(sizeof *req, GFP_KERNEL); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 306 | if (!req) |
| 307 | return -ENOMEM; |
| 308 | |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 309 | spi_message_init(&req->msg); |
Vitaly Wool | 8275c64 | 2006-01-08 13:34:28 -0800 | [diff] [blame] | 310 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 311 | /* FIXME boards with ads7846 might use external vref instead ... */ |
| 312 | use_internal = (ts->model == 7846); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 313 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 314 | /* maybe turn on internal vREF, and let it settle */ |
| 315 | if (use_internal) { |
| 316 | req->ref_on = REF_ON; |
| 317 | req->xfer[0].tx_buf = &req->ref_on; |
| 318 | req->xfer[0].len = 1; |
| 319 | spi_message_add_tail(&req->xfer[0], &req->msg); |
| 320 | |
| 321 | req->xfer[1].rx_buf = &req->scratch; |
| 322 | req->xfer[1].len = 2; |
| 323 | |
| 324 | /* for 1uF, settle for 800 usec; no cap, 100 usec. */ |
| 325 | req->xfer[1].delay_usecs = ts->vref_delay_usecs; |
| 326 | spi_message_add_tail(&req->xfer[1], &req->msg); |
| 327 | } |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 328 | |
| 329 | /* take sample */ |
| 330 | req->command = (u8) command; |
| 331 | req->xfer[2].tx_buf = &req->command; |
| 332 | req->xfer[2].len = 1; |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 333 | spi_message_add_tail(&req->xfer[2], &req->msg); |
| 334 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 335 | req->xfer[3].rx_buf = &req->sample; |
| 336 | req->xfer[3].len = 2; |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 337 | spi_message_add_tail(&req->xfer[3], &req->msg); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 338 | |
| 339 | /* REVISIT: take a few more samples, and compare ... */ |
| 340 | |
Nicolas Ferre | 969111e | 2007-02-28 23:51:03 -0500 | [diff] [blame] | 341 | /* converter in low power mode & enable PENIRQ */ |
| 342 | req->ref_off = PWRDOWN; |
| 343 | req->xfer[4].tx_buf = &req->ref_off; |
| 344 | req->xfer[4].len = 1; |
| 345 | spi_message_add_tail(&req->xfer[4], &req->msg); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 346 | |
Nicolas Ferre | 969111e | 2007-02-28 23:51:03 -0500 | [diff] [blame] | 347 | req->xfer[5].rx_buf = &req->scratch; |
| 348 | req->xfer[5].len = 2; |
| 349 | CS_CHANGE(req->xfer[5]); |
| 350 | spi_message_add_tail(&req->xfer[5], &req->msg); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 351 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 352 | mutex_lock(&ts->lock); |
| 353 | ads7846_stop(ts); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 354 | status = spi_sync(spi, &req->msg); |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 355 | ads7846_restart(ts); |
| 356 | mutex_unlock(&ts->lock); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 357 | |
Marc Pignat | c24b260 | 2007-12-04 23:45:11 -0800 | [diff] [blame] | 358 | if (status == 0) { |
| 359 | /* on-wire is a must-ignore bit, a BE12 value, then padding */ |
David Brownell | 7c6d0ee | 2008-04-02 00:43:01 -0400 | [diff] [blame] | 360 | status = be16_to_cpu(req->sample); |
| 361 | status = status >> 3; |
| 362 | status &= 0x0fff; |
Marc Pignat | c24b260 | 2007-12-04 23:45:11 -0800 | [diff] [blame] | 363 | } |
David Brownell | 9084533 | 2006-05-25 18:44:20 -0700 | [diff] [blame] | 364 | |
| 365 | kfree(req); |
David Brownell | 7c6d0ee | 2008-04-02 00:43:01 -0400 | [diff] [blame] | 366 | return status; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 367 | } |
| 368 | |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 369 | static int ads7845_read12_ser(struct device *dev, unsigned command) |
| 370 | { |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 371 | struct spi_device *spi = to_spi_device(dev); |
| 372 | struct ads7846 *ts = dev_get_drvdata(dev); |
| 373 | struct ads7845_ser_req *req; |
| 374 | int status; |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 375 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 376 | req = kzalloc(sizeof *req, GFP_KERNEL); |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 377 | if (!req) |
| 378 | return -ENOMEM; |
| 379 | |
| 380 | spi_message_init(&req->msg); |
| 381 | |
| 382 | req->command[0] = (u8) command; |
| 383 | req->xfer[0].tx_buf = req->command; |
| 384 | req->xfer[0].rx_buf = req->sample; |
| 385 | req->xfer[0].len = 3; |
| 386 | spi_message_add_tail(&req->xfer[0], &req->msg); |
| 387 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 388 | mutex_lock(&ts->lock); |
| 389 | ads7846_stop(ts); |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 390 | status = spi_sync(spi, &req->msg); |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 391 | ads7846_restart(ts); |
| 392 | mutex_unlock(&ts->lock); |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 393 | |
| 394 | if (status == 0) { |
| 395 | /* BE12 value, then padding */ |
| 396 | status = be16_to_cpu(*((u16 *)&req->sample[1])); |
| 397 | status = status >> 3; |
| 398 | status &= 0x0fff; |
| 399 | } |
| 400 | |
| 401 | kfree(req); |
| 402 | return status; |
| 403 | } |
| 404 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 405 | #if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE) |
| 406 | |
| 407 | #define SHOW(name, var, adjust) static ssize_t \ |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 408 | name ## _show(struct device *dev, struct device_attribute *attr, char *buf) \ |
| 409 | { \ |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 410 | struct ads7846 *ts = dev_get_drvdata(dev); \ |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 411 | ssize_t v = ads7846_read12_ser(dev, \ |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 412 | READ_12BIT_SER(var) | ADS_PD10_ALL_ON); \ |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 413 | if (v < 0) \ |
| 414 | return v; \ |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 415 | return sprintf(buf, "%u\n", adjust(ts, v)); \ |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 416 | } \ |
| 417 | static DEVICE_ATTR(name, S_IRUGO, name ## _show, NULL); |
| 418 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 419 | |
Adam Buchbinder | b731d7b | 2009-03-13 12:15:26 -0400 | [diff] [blame] | 420 | /* Sysfs conventions report temperatures in millidegrees Celsius. |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 421 | * ADS7846 could use the low-accuracy two-sample scheme, but can't do the high |
| 422 | * accuracy scheme without calibration data. For now we won't try either; |
| 423 | * userspace sees raw sensor values, and must scale/calibrate appropriately. |
| 424 | */ |
| 425 | static inline unsigned null_adjust(struct ads7846 *ts, ssize_t v) |
| 426 | { |
| 427 | return v; |
| 428 | } |
| 429 | |
| 430 | SHOW(temp0, temp0, null_adjust) /* temp1_input */ |
| 431 | SHOW(temp1, temp1, null_adjust) /* temp2_input */ |
| 432 | |
| 433 | |
| 434 | /* sysfs conventions report voltages in millivolts. We can convert voltages |
| 435 | * if we know vREF. userspace may need to scale vAUX to match the board's |
| 436 | * external resistors; we assume that vBATT only uses the internal ones. |
| 437 | */ |
| 438 | static inline unsigned vaux_adjust(struct ads7846 *ts, ssize_t v) |
| 439 | { |
| 440 | unsigned retval = v; |
| 441 | |
| 442 | /* external resistors may scale vAUX into 0..vREF */ |
David Brownell | 7c6d0ee | 2008-04-02 00:43:01 -0400 | [diff] [blame] | 443 | retval *= ts->vref_mv; |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 444 | retval = retval >> 12; |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 445 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 446 | return retval; |
| 447 | } |
| 448 | |
| 449 | static inline unsigned vbatt_adjust(struct ads7846 *ts, ssize_t v) |
| 450 | { |
| 451 | unsigned retval = vaux_adjust(ts, v); |
| 452 | |
| 453 | /* ads7846 has a resistor ladder to scale this signal down */ |
| 454 | if (ts->model == 7846) |
| 455 | retval *= 4; |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 456 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 457 | return retval; |
| 458 | } |
| 459 | |
| 460 | SHOW(in0_input, vaux, vaux_adjust) |
| 461 | SHOW(in1_input, vbatt, vbatt_adjust) |
| 462 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 463 | static struct attribute *ads7846_attributes[] = { |
| 464 | &dev_attr_temp0.attr, |
| 465 | &dev_attr_temp1.attr, |
| 466 | &dev_attr_in0_input.attr, |
| 467 | &dev_attr_in1_input.attr, |
| 468 | NULL, |
| 469 | }; |
| 470 | |
| 471 | static struct attribute_group ads7846_attr_group = { |
| 472 | .attrs = ads7846_attributes, |
| 473 | }; |
| 474 | |
| 475 | static struct attribute *ads7843_attributes[] = { |
| 476 | &dev_attr_in0_input.attr, |
| 477 | &dev_attr_in1_input.attr, |
| 478 | NULL, |
| 479 | }; |
| 480 | |
| 481 | static struct attribute_group ads7843_attr_group = { |
| 482 | .attrs = ads7843_attributes, |
| 483 | }; |
| 484 | |
| 485 | static struct attribute *ads7845_attributes[] = { |
| 486 | &dev_attr_in0_input.attr, |
| 487 | NULL, |
| 488 | }; |
| 489 | |
| 490 | static struct attribute_group ads7845_attr_group = { |
| 491 | .attrs = ads7845_attributes, |
| 492 | }; |
| 493 | |
| 494 | static int ads784x_hwmon_register(struct spi_device *spi, struct ads7846 *ts) |
| 495 | { |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 496 | struct device *hwmon; |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 497 | int err; |
| 498 | |
| 499 | /* hwmon sensors need a reference voltage */ |
| 500 | switch (ts->model) { |
| 501 | case 7846: |
David Brownell | 7c6d0ee | 2008-04-02 00:43:01 -0400 | [diff] [blame] | 502 | if (!ts->vref_mv) { |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 503 | dev_dbg(&spi->dev, "assuming 2.5V internal vREF\n"); |
David Brownell | 7c6d0ee | 2008-04-02 00:43:01 -0400 | [diff] [blame] | 504 | ts->vref_mv = 2500; |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 505 | } |
| 506 | break; |
| 507 | case 7845: |
| 508 | case 7843: |
David Brownell | 7c6d0ee | 2008-04-02 00:43:01 -0400 | [diff] [blame] | 509 | if (!ts->vref_mv) { |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 510 | dev_warn(&spi->dev, |
| 511 | "external vREF for ADS%d not specified\n", |
| 512 | ts->model); |
| 513 | return 0; |
| 514 | } |
| 515 | break; |
| 516 | } |
| 517 | |
| 518 | /* different chips have different sensor groups */ |
| 519 | switch (ts->model) { |
| 520 | case 7846: |
| 521 | ts->attr_group = &ads7846_attr_group; |
| 522 | break; |
| 523 | case 7845: |
| 524 | ts->attr_group = &ads7845_attr_group; |
| 525 | break; |
| 526 | case 7843: |
| 527 | ts->attr_group = &ads7843_attr_group; |
| 528 | break; |
| 529 | default: |
| 530 | dev_dbg(&spi->dev, "ADS%d not recognized\n", ts->model); |
| 531 | return 0; |
| 532 | } |
| 533 | |
| 534 | err = sysfs_create_group(&spi->dev.kobj, ts->attr_group); |
| 535 | if (err) |
| 536 | return err; |
| 537 | |
| 538 | hwmon = hwmon_device_register(&spi->dev); |
| 539 | if (IS_ERR(hwmon)) { |
| 540 | sysfs_remove_group(&spi->dev.kobj, ts->attr_group); |
| 541 | return PTR_ERR(hwmon); |
| 542 | } |
| 543 | |
| 544 | ts->hwmon = hwmon; |
| 545 | return 0; |
| 546 | } |
| 547 | |
| 548 | static void ads784x_hwmon_unregister(struct spi_device *spi, |
| 549 | struct ads7846 *ts) |
| 550 | { |
| 551 | if (ts->hwmon) { |
| 552 | sysfs_remove_group(&spi->dev.kobj, ts->attr_group); |
| 553 | hwmon_device_unregister(ts->hwmon); |
| 554 | } |
| 555 | } |
| 556 | |
| 557 | #else |
| 558 | static inline int ads784x_hwmon_register(struct spi_device *spi, |
| 559 | struct ads7846 *ts) |
| 560 | { |
| 561 | return 0; |
| 562 | } |
| 563 | |
| 564 | static inline void ads784x_hwmon_unregister(struct spi_device *spi, |
| 565 | struct ads7846 *ts) |
| 566 | { |
| 567 | } |
| 568 | #endif |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 569 | |
Imre Deak | 438f2a7 | 2006-04-11 23:41:32 -0400 | [diff] [blame] | 570 | static ssize_t ads7846_pen_down_show(struct device *dev, |
| 571 | struct device_attribute *attr, char *buf) |
| 572 | { |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 573 | struct ads7846 *ts = dev_get_drvdata(dev); |
| 574 | |
| 575 | return sprintf(buf, "%u\n", ts->pendown); |
Imre Deak | 438f2a7 | 2006-04-11 23:41:32 -0400 | [diff] [blame] | 576 | } |
| 577 | |
| 578 | static DEVICE_ATTR(pen_down, S_IRUGO, ads7846_pen_down_show, NULL); |
| 579 | |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 580 | static ssize_t ads7846_disable_show(struct device *dev, |
| 581 | struct device_attribute *attr, char *buf) |
| 582 | { |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 583 | struct ads7846 *ts = dev_get_drvdata(dev); |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 584 | |
| 585 | return sprintf(buf, "%u\n", ts->disabled); |
| 586 | } |
| 587 | |
| 588 | static ssize_t ads7846_disable_store(struct device *dev, |
| 589 | struct device_attribute *attr, |
| 590 | const char *buf, size_t count) |
| 591 | { |
| 592 | struct ads7846 *ts = dev_get_drvdata(dev); |
Harvey Harrison | 3a0c58d | 2008-12-23 04:09:28 -0500 | [diff] [blame] | 593 | unsigned long i; |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 594 | |
Joe Rouvier | 160f1fe | 2008-08-10 00:29:25 -0400 | [diff] [blame] | 595 | if (strict_strtoul(buf, 10, &i)) |
| 596 | return -EINVAL; |
| 597 | |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 598 | if (i) |
| 599 | ads7846_disable(ts); |
| 600 | else |
| 601 | ads7846_enable(ts); |
| 602 | |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 603 | return count; |
| 604 | } |
| 605 | |
| 606 | static DEVICE_ATTR(disable, 0664, ads7846_disable_show, ads7846_disable_store); |
| 607 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 608 | static struct attribute *ads784x_attributes[] = { |
Dmitry Torokhov | 8dd5165 | 2006-11-02 23:34:09 -0500 | [diff] [blame] | 609 | &dev_attr_pen_down.attr, |
| 610 | &dev_attr_disable.attr, |
| 611 | NULL, |
| 612 | }; |
| 613 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 614 | static struct attribute_group ads784x_attr_group = { |
| 615 | .attrs = ads784x_attributes, |
Dmitry Torokhov | 8dd5165 | 2006-11-02 23:34:09 -0500 | [diff] [blame] | 616 | }; |
| 617 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 618 | /*--------------------------------------------------------------------------*/ |
| 619 | |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 620 | static int get_pendown_state(struct ads7846 *ts) |
| 621 | { |
| 622 | if (ts->get_pendown_state) |
| 623 | return ts->get_pendown_state(); |
| 624 | |
| 625 | return !gpio_get_value(ts->gpio_pendown); |
| 626 | } |
| 627 | |
Eric Miao | fd746d5 | 2009-04-11 16:54:59 -0700 | [diff] [blame] | 628 | static void null_wait_for_sync(void) |
| 629 | { |
| 630 | } |
| 631 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 632 | static int ads7846_debounce_filter(void *ads, int data_idx, int *val) |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 633 | { |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 634 | struct ads7846 *ts = ads; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 635 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 636 | if (!ts->read_cnt || (abs(ts->last_read - *val) > ts->debounce_tol)) { |
| 637 | /* Start over collecting consistent readings. */ |
| 638 | ts->read_rep = 0; |
| 639 | /* |
| 640 | * Repeat it, if this was the first read or the read |
| 641 | * wasn't consistent enough. |
| 642 | */ |
| 643 | if (ts->read_cnt < ts->debounce_max) { |
| 644 | ts->last_read = *val; |
| 645 | ts->read_cnt++; |
| 646 | return ADS7846_FILTER_REPEAT; |
| 647 | } else { |
| 648 | /* |
| 649 | * Maximum number of debouncing reached and still |
| 650 | * not enough number of consistent readings. Abort |
| 651 | * the whole sample, repeat it in the next sampling |
| 652 | * period. |
| 653 | */ |
| 654 | ts->read_cnt = 0; |
| 655 | return ADS7846_FILTER_IGNORE; |
| 656 | } |
| 657 | } else { |
| 658 | if (++ts->read_rep > ts->debounce_rep) { |
| 659 | /* |
| 660 | * Got a good reading for this coordinate, |
| 661 | * go for the next one. |
| 662 | */ |
| 663 | ts->read_cnt = 0; |
| 664 | ts->read_rep = 0; |
| 665 | return ADS7846_FILTER_OK; |
| 666 | } else { |
| 667 | /* Read more values that are consistent. */ |
| 668 | ts->read_cnt++; |
| 669 | return ADS7846_FILTER_REPEAT; |
| 670 | } |
| 671 | } |
| 672 | } |
| 673 | |
| 674 | static int ads7846_no_filter(void *ads, int data_idx, int *val) |
| 675 | { |
| 676 | return ADS7846_FILTER_OK; |
| 677 | } |
| 678 | |
| 679 | static int ads7846_get_value(struct ads7846 *ts, struct spi_message *m) |
| 680 | { |
| 681 | struct spi_transfer *t = |
| 682 | list_entry(m->transfers.prev, struct spi_transfer, transfer_list); |
| 683 | |
| 684 | if (ts->model == 7845) { |
| 685 | return be16_to_cpup((__be16 *)&(((char*)t->rx_buf)[1])) >> 3; |
| 686 | } else { |
| 687 | /* |
| 688 | * adjust: on-wire is a must-ignore bit, a BE12 value, then |
| 689 | * padding; built from two 8 bit values written msb-first. |
| 690 | */ |
| 691 | return be16_to_cpup((__be16 *)t->rx_buf) >> 3; |
| 692 | } |
| 693 | } |
| 694 | |
| 695 | static void ads7846_update_value(struct spi_message *m, int val) |
| 696 | { |
| 697 | struct spi_transfer *t = |
| 698 | list_entry(m->transfers.prev, struct spi_transfer, transfer_list); |
| 699 | |
| 700 | *(u16 *)t->rx_buf = val; |
| 701 | } |
| 702 | |
| 703 | static void ads7846_read_state(struct ads7846 *ts) |
| 704 | { |
| 705 | struct ads7846_packet *packet = ts->packet; |
| 706 | struct spi_message *m; |
| 707 | int msg_idx = 0; |
| 708 | int val; |
| 709 | int action; |
| 710 | int error; |
| 711 | |
| 712 | while (msg_idx < ts->msg_count) { |
| 713 | |
| 714 | ts->wait_for_sync(); |
| 715 | |
| 716 | m = &ts->msg[msg_idx]; |
| 717 | error = spi_sync(ts->spi, m); |
| 718 | if (error) { |
| 719 | dev_err(&ts->spi->dev, "spi_async --> %d\n", error); |
| 720 | packet->tc.ignore = true; |
| 721 | return; |
| 722 | } |
| 723 | |
| 724 | /* |
| 725 | * Last message is power down request, no need to convert |
| 726 | * or filter the value. |
| 727 | */ |
| 728 | if (msg_idx < ts->msg_count - 1) { |
| 729 | |
| 730 | val = ads7846_get_value(ts, m); |
| 731 | |
| 732 | action = ts->filter(ts->filter_data, msg_idx, &val); |
| 733 | switch (action) { |
| 734 | case ADS7846_FILTER_REPEAT: |
| 735 | continue; |
| 736 | |
| 737 | case ADS7846_FILTER_IGNORE: |
| 738 | packet->tc.ignore = true; |
| 739 | msg_idx = ts->msg_count - 1; |
| 740 | continue; |
| 741 | |
| 742 | case ADS7846_FILTER_OK: |
| 743 | ads7846_update_value(m, val); |
| 744 | packet->tc.ignore = false; |
| 745 | msg_idx++; |
| 746 | break; |
| 747 | |
| 748 | default: |
| 749 | BUG(); |
| 750 | } |
| 751 | } else { |
| 752 | msg_idx++; |
| 753 | } |
| 754 | } |
| 755 | } |
| 756 | |
| 757 | static void ads7846_report_state(struct ads7846 *ts) |
| 758 | { |
| 759 | struct ads7846_packet *packet = ts->packet; |
| 760 | unsigned int Rt; |
| 761 | u16 x, y, z1, z2; |
| 762 | |
| 763 | /* |
| 764 | * ads7846_get_value() does in-place conversion (including byte swap) |
| 765 | * from on-the-wire format as part of debouncing to get stable |
| 766 | * readings. |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 767 | */ |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 768 | if (ts->model == 7845) { |
| 769 | x = *(u16 *)packet->tc.x_buf; |
| 770 | y = *(u16 *)packet->tc.y_buf; |
| 771 | z1 = 0; |
| 772 | z2 = 0; |
| 773 | } else { |
| 774 | x = packet->tc.x; |
| 775 | y = packet->tc.y; |
| 776 | z1 = packet->tc.z1; |
| 777 | z2 = packet->tc.z2; |
| 778 | } |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 779 | |
| 780 | /* range filtering */ |
| 781 | if (x == MAX_12BIT) |
| 782 | x = 0; |
| 783 | |
Hans-Christian Egtvedt | 9460b65 | 2008-07-23 14:38:27 -0400 | [diff] [blame] | 784 | if (ts->model == 7843) { |
| 785 | Rt = ts->pressure_max / 2; |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 786 | } else if (ts->model == 7845) { |
| 787 | if (get_pendown_state(ts)) |
| 788 | Rt = ts->pressure_max / 2; |
| 789 | else |
| 790 | Rt = 0; |
| 791 | dev_vdbg(&ts->spi->dev, "x/y: %d/%d, PD %d\n", x, y, Rt); |
Hans-Christian Egtvedt | 9460b65 | 2008-07-23 14:38:27 -0400 | [diff] [blame] | 792 | } else if (likely(x && z1)) { |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 793 | /* compute touch pressure resistance using equation #2 */ |
| 794 | Rt = z2; |
| 795 | Rt -= z1; |
| 796 | Rt *= x; |
| 797 | Rt *= ts->x_plate_ohms; |
| 798 | Rt /= z1; |
| 799 | Rt = (Rt + 2047) >> 12; |
Hans-Christian Egtvedt | 9460b65 | 2008-07-23 14:38:27 -0400 | [diff] [blame] | 800 | } else { |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 801 | Rt = 0; |
Hans-Christian Egtvedt | 9460b65 | 2008-07-23 14:38:27 -0400 | [diff] [blame] | 802 | } |
Nicolas Ferre | 969111e | 2007-02-28 23:51:03 -0500 | [diff] [blame] | 803 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 804 | /* |
| 805 | * Sample found inconsistent by debouncing or pressure is beyond |
Imre Deak | 1936d59 | 2007-01-18 00:45:31 -0500 | [diff] [blame] | 806 | * the maximum. Don't report it to user space, repeat at least |
| 807 | * once more the measurement |
| 808 | */ |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 809 | if (packet->tc.ignore || Rt > ts->pressure_max) { |
Pavel Machek | 52ce4ea | 2009-11-23 08:25:17 -0800 | [diff] [blame] | 810 | dev_vdbg(&ts->spi->dev, "ignored %d pressure %d\n", |
| 811 | packet->tc.ignore, Rt); |
Imre Deak | d5b415c | 2006-04-26 00:13:18 -0400 | [diff] [blame] | 812 | return; |
| 813 | } |
| 814 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 815 | /* |
| 816 | * Maybe check the pendown state before reporting. This discards |
Semih Hazar | 1d25891 | 2007-07-18 00:36:04 -0400 | [diff] [blame] | 817 | * false readings when the pen is lifted. |
| 818 | */ |
| 819 | if (ts->penirq_recheck_delay_usecs) { |
| 820 | udelay(ts->penirq_recheck_delay_usecs); |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 821 | if (!get_pendown_state(ts)) |
Semih Hazar | 1d25891 | 2007-07-18 00:36:04 -0400 | [diff] [blame] | 822 | Rt = 0; |
| 823 | } |
| 824 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 825 | /* |
| 826 | * NOTE: We can't rely on the pressure to determine the pen down |
| 827 | * state, even this controller has a pressure sensor. The pressure |
Imre Deak | 15e3589 | 2007-01-18 00:45:43 -0500 | [diff] [blame] | 828 | * value can fluctuate for quite a while after lifting the pen and |
| 829 | * in some cases may not even settle at the expected value. |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 830 | * |
Imre Deak | 15e3589 | 2007-01-18 00:45:43 -0500 | [diff] [blame] | 831 | * The only safe way to check for the pen up condition is in the |
| 832 | * timer by reading the pen signal state (it's a GPIO _and_ IRQ). |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 833 | */ |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 834 | if (Rt) { |
Imre Deak | 15e3589 | 2007-01-18 00:45:43 -0500 | [diff] [blame] | 835 | struct input_dev *input = ts->input; |
Imre Deak | ae82d5a | 2006-04-26 00:12:14 -0400 | [diff] [blame] | 836 | |
Michael Roth | 86579a4 | 2009-05-18 16:04:44 -0700 | [diff] [blame] | 837 | if (ts->swap_xy) |
| 838 | swap(x, y); |
| 839 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 840 | if (!ts->pendown) { |
| 841 | input_report_key(input, BTN_TOUCH, 1); |
| 842 | ts->pendown = true; |
| 843 | dev_vdbg(&ts->spi->dev, "DOWN\n"); |
| 844 | } |
| 845 | |
Imre Deak | 15e3589 | 2007-01-18 00:45:43 -0500 | [diff] [blame] | 846 | input_report_abs(input, ABS_X, x); |
| 847 | input_report_abs(input, ABS_Y, y); |
Pavel Machek | 30ad7ba | 2009-11-23 08:17:38 -0800 | [diff] [blame] | 848 | input_report_abs(input, ABS_PRESSURE, ts->pressure_max - Rt); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 849 | |
Imre Deak | 15e3589 | 2007-01-18 00:45:43 -0500 | [diff] [blame] | 850 | input_sync(input); |
Pavel Machek | 52ce4ea | 2009-11-23 08:25:17 -0800 | [diff] [blame] | 851 | dev_vdbg(&ts->spi->dev, "%4d/%4d/%4d\n", x, y, Rt); |
Imre Deak | 15e3589 | 2007-01-18 00:45:43 -0500 | [diff] [blame] | 852 | } |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 853 | } |
| 854 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 855 | static irqreturn_t ads7846_hard_irq(int irq, void *handle) |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 856 | { |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 857 | struct ads7846 *ts = handle; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 858 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 859 | return get_pendown_state(ts) ? IRQ_WAKE_THREAD : IRQ_HANDLED; |
Imre Deak | da970e6 | 2007-01-18 00:44:41 -0500 | [diff] [blame] | 860 | } |
| 861 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 862 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 863 | static irqreturn_t ads7846_irq(int irq, void *handle) |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 864 | { |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 865 | struct ads7846 *ts = handle; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 866 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 867 | /* Start with a small delay before checking pendown state */ |
| 868 | msleep(TS_POLL_DELAY); |
| 869 | |
| 870 | while (!ts->stopped && get_pendown_state(ts)) { |
| 871 | |
| 872 | /* pen is down, continue with the measurement */ |
| 873 | ads7846_read_state(ts); |
| 874 | |
| 875 | if (!ts->stopped) |
| 876 | ads7846_report_state(ts); |
| 877 | |
| 878 | wait_event_timeout(ts->wait, ts->stopped, |
| 879 | msecs_to_jiffies(TS_POLL_PERIOD)); |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 880 | } |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 881 | |
| 882 | if (ts->pendown) { |
| 883 | struct input_dev *input = ts->input; |
| 884 | |
| 885 | input_report_key(input, BTN_TOUCH, 0); |
| 886 | input_report_abs(input, ABS_PRESSURE, 0); |
| 887 | input_sync(input); |
| 888 | |
| 889 | ts->pendown = false; |
| 890 | dev_vdbg(&ts->spi->dev, "UP\n"); |
| 891 | } |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 892 | |
| 893 | return IRQ_HANDLED; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 894 | } |
| 895 | |
Mark Brown | 3c36e71 | 2011-01-20 22:51:26 -0800 | [diff] [blame] | 896 | #ifdef CONFIG_PM_SLEEP |
| 897 | static int ads7846_suspend(struct device *dev) |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 898 | { |
Mark Brown | 3c36e71 | 2011-01-20 22:51:26 -0800 | [diff] [blame] | 899 | struct ads7846 *ts = dev_get_drvdata(dev); |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 900 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 901 | mutex_lock(&ts->lock); |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 902 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 903 | if (!ts->suspended) { |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 904 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 905 | if (!ts->disabled) |
| 906 | __ads7846_disable(ts); |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 907 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 908 | if (device_may_wakeup(&ts->spi->dev)) |
| 909 | enable_irq_wake(ts->spi->irq); |
| 910 | |
| 911 | ts->suspended = true; |
| 912 | } |
| 913 | |
| 914 | mutex_unlock(&ts->lock); |
Ranjith Lohithakshan | fdba2bb | 2010-03-10 23:41:22 -0800 | [diff] [blame] | 915 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 916 | return 0; |
| 917 | } |
| 918 | |
Mark Brown | 3c36e71 | 2011-01-20 22:51:26 -0800 | [diff] [blame] | 919 | static int ads7846_resume(struct device *dev) |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 920 | { |
Mark Brown | 3c36e71 | 2011-01-20 22:51:26 -0800 | [diff] [blame] | 921 | struct ads7846 *ts = dev_get_drvdata(dev); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 922 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 923 | mutex_lock(&ts->lock); |
Ranjith Lohithakshan | fdba2bb | 2010-03-10 23:41:22 -0800 | [diff] [blame] | 924 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 925 | if (ts->suspended) { |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 926 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 927 | ts->suspended = false; |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 928 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 929 | if (device_may_wakeup(&ts->spi->dev)) |
| 930 | disable_irq_wake(ts->spi->irq); |
| 931 | |
| 932 | if (!ts->disabled) |
| 933 | __ads7846_enable(ts); |
| 934 | } |
| 935 | |
| 936 | mutex_unlock(&ts->lock); |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 937 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 938 | return 0; |
| 939 | } |
Mark Brown | 3c36e71 | 2011-01-20 22:51:26 -0800 | [diff] [blame] | 940 | #endif |
| 941 | |
| 942 | static SIMPLE_DEV_PM_OPS(ads7846_pm, ads7846_suspend, ads7846_resume); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 943 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 944 | static int __devinit ads7846_setup_pendown(struct spi_device *spi, struct ads7846 *ts) |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 945 | { |
| 946 | struct ads7846_platform_data *pdata = spi->dev.platform_data; |
| 947 | int err; |
| 948 | |
Dmitry Torokhov | 0fbc9fd | 2011-02-04 00:37:26 -0800 | [diff] [blame] | 949 | /* |
| 950 | * REVISIT when the irq can be triggered active-low, or if for some |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 951 | * reason the touchscreen isn't hooked up, we don't need to access |
| 952 | * the pendown state. |
| 953 | */ |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 954 | |
| 955 | if (pdata->get_pendown_state) { |
| 956 | ts->get_pendown_state = pdata->get_pendown_state; |
Dmitry Torokhov | 0fbc9fd | 2011-02-04 00:37:26 -0800 | [diff] [blame] | 957 | } else if (gpio_is_valid(pdata->gpio_pendown)) { |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 958 | |
Dmitry Torokhov | 0fbc9fd | 2011-02-04 00:37:26 -0800 | [diff] [blame] | 959 | err = gpio_request(pdata->gpio_pendown, "ads7846_pendown"); |
| 960 | if (err) { |
| 961 | dev_err(&spi->dev, "failed to request pendown GPIO%d\n", |
| 962 | pdata->gpio_pendown); |
| 963 | return err; |
| 964 | } |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 965 | |
Dmitry Torokhov | 0fbc9fd | 2011-02-04 00:37:26 -0800 | [diff] [blame] | 966 | ts->gpio_pendown = pdata->gpio_pendown; |
| 967 | |
| 968 | } else { |
| 969 | dev_err(&spi->dev, "no get_pendown_state nor gpio_pendown?\n"); |
| 970 | return -EINVAL; |
| 971 | } |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 972 | |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 973 | return 0; |
| 974 | } |
| 975 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 976 | /* |
| 977 | * Set up the transfers to read touchscreen state; this assumes we |
| 978 | * use formula #2 for pressure, not #3. |
| 979 | */ |
| 980 | static void __devinit ads7846_setup_spi_msg(struct ads7846 *ts, |
| 981 | const struct ads7846_platform_data *pdata) |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 982 | { |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 983 | struct spi_message *m = &ts->msg[0]; |
| 984 | struct spi_transfer *x = ts->xfer; |
| 985 | struct ads7846_packet *packet = ts->packet; |
| 986 | int vref = pdata->keep_vref_on; |
Imre Deak | de2defd | 2007-01-18 00:45:21 -0500 | [diff] [blame] | 987 | |
Michael Hennerich | 06a0912 | 2010-03-09 20:38:45 -0800 | [diff] [blame] | 988 | if (ts->model == 7873) { |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 989 | /* |
| 990 | * The AD7873 is almost identical to the ADS7846 |
Michael Hennerich | 06a0912 | 2010-03-09 20:38:45 -0800 | [diff] [blame] | 991 | * keep VREF off during differential/ratiometric |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 992 | * conversion modes. |
Michael Hennerich | 06a0912 | 2010-03-09 20:38:45 -0800 | [diff] [blame] | 993 | */ |
| 994 | ts->model = 7846; |
| 995 | vref = 0; |
| 996 | } |
| 997 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 998 | ts->msg_count = 1; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 999 | spi_message_init(m); |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1000 | m->context = ts; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1001 | |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 1002 | if (ts->model == 7845) { |
| 1003 | packet->read_y_cmd[0] = READ_Y(vref); |
| 1004 | packet->read_y_cmd[1] = 0; |
| 1005 | packet->read_y_cmd[2] = 0; |
| 1006 | x->tx_buf = &packet->read_y_cmd[0]; |
| 1007 | x->rx_buf = &packet->tc.y_buf[0]; |
| 1008 | x->len = 3; |
| 1009 | spi_message_add_tail(x, m); |
| 1010 | } else { |
| 1011 | /* y- still on; turn on only y+ (and ADC) */ |
| 1012 | packet->read_y = READ_Y(vref); |
| 1013 | x->tx_buf = &packet->read_y; |
| 1014 | x->len = 1; |
| 1015 | spi_message_add_tail(x, m); |
David Brownell | d93f70b | 2006-02-15 00:49:35 -0500 | [diff] [blame] | 1016 | |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 1017 | x++; |
| 1018 | x->rx_buf = &packet->tc.y; |
| 1019 | x->len = 2; |
| 1020 | spi_message_add_tail(x, m); |
| 1021 | } |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1022 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1023 | /* |
| 1024 | * The first sample after switching drivers can be low quality; |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1025 | * optionally discard it, using a second one after the signals |
| 1026 | * have had enough time to stabilize. |
| 1027 | */ |
| 1028 | if (pdata->settle_delay_usecs) { |
| 1029 | x->delay_usecs = pdata->settle_delay_usecs; |
| 1030 | |
| 1031 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1032 | x->tx_buf = &packet->read_y; |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1033 | x->len = 1; |
| 1034 | spi_message_add_tail(x, m); |
| 1035 | |
| 1036 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1037 | x->rx_buf = &packet->tc.y; |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1038 | x->len = 2; |
| 1039 | spi_message_add_tail(x, m); |
| 1040 | } |
| 1041 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1042 | ts->msg_count++; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1043 | m++; |
| 1044 | spi_message_init(m); |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1045 | m->context = ts; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1046 | |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 1047 | if (ts->model == 7845) { |
| 1048 | x++; |
| 1049 | packet->read_x_cmd[0] = READ_X(vref); |
| 1050 | packet->read_x_cmd[1] = 0; |
| 1051 | packet->read_x_cmd[2] = 0; |
| 1052 | x->tx_buf = &packet->read_x_cmd[0]; |
| 1053 | x->rx_buf = &packet->tc.x_buf[0]; |
| 1054 | x->len = 3; |
| 1055 | spi_message_add_tail(x, m); |
| 1056 | } else { |
| 1057 | /* turn y- off, x+ on, then leave in lowpower */ |
| 1058 | x++; |
| 1059 | packet->read_x = READ_X(vref); |
| 1060 | x->tx_buf = &packet->read_x; |
| 1061 | x->len = 1; |
| 1062 | spi_message_add_tail(x, m); |
David Brownell | d93f70b | 2006-02-15 00:49:35 -0500 | [diff] [blame] | 1063 | |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 1064 | x++; |
| 1065 | x->rx_buf = &packet->tc.x; |
| 1066 | x->len = 2; |
| 1067 | spi_message_add_tail(x, m); |
| 1068 | } |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1069 | |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1070 | /* ... maybe discard first sample ... */ |
| 1071 | if (pdata->settle_delay_usecs) { |
| 1072 | x->delay_usecs = pdata->settle_delay_usecs; |
| 1073 | |
| 1074 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1075 | x->tx_buf = &packet->read_x; |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1076 | x->len = 1; |
| 1077 | spi_message_add_tail(x, m); |
| 1078 | |
| 1079 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1080 | x->rx_buf = &packet->tc.x; |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1081 | x->len = 2; |
| 1082 | spi_message_add_tail(x, m); |
| 1083 | } |
| 1084 | |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1085 | /* turn y+ off, x- on; we'll use formula #2 */ |
| 1086 | if (ts->model == 7846) { |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1087 | ts->msg_count++; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1088 | m++; |
| 1089 | spi_message_init(m); |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1090 | m->context = ts; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1091 | |
| 1092 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1093 | packet->read_z1 = READ_Z1(vref); |
| 1094 | x->tx_buf = &packet->read_z1; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1095 | x->len = 1; |
| 1096 | spi_message_add_tail(x, m); |
| 1097 | |
| 1098 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1099 | x->rx_buf = &packet->tc.z1; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1100 | x->len = 2; |
| 1101 | spi_message_add_tail(x, m); |
| 1102 | |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1103 | /* ... maybe discard first sample ... */ |
| 1104 | if (pdata->settle_delay_usecs) { |
| 1105 | x->delay_usecs = pdata->settle_delay_usecs; |
| 1106 | |
| 1107 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1108 | x->tx_buf = &packet->read_z1; |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1109 | x->len = 1; |
| 1110 | spi_message_add_tail(x, m); |
| 1111 | |
| 1112 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1113 | x->rx_buf = &packet->tc.z1; |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1114 | x->len = 2; |
| 1115 | spi_message_add_tail(x, m); |
| 1116 | } |
| 1117 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1118 | ts->msg_count++; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1119 | m++; |
| 1120 | spi_message_init(m); |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1121 | m->context = ts; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1122 | |
| 1123 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1124 | packet->read_z2 = READ_Z2(vref); |
| 1125 | x->tx_buf = &packet->read_z2; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1126 | x->len = 1; |
| 1127 | spi_message_add_tail(x, m); |
| 1128 | |
| 1129 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1130 | x->rx_buf = &packet->tc.z2; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1131 | x->len = 2; |
| 1132 | spi_message_add_tail(x, m); |
| 1133 | |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1134 | /* ... maybe discard first sample ... */ |
| 1135 | if (pdata->settle_delay_usecs) { |
| 1136 | x->delay_usecs = pdata->settle_delay_usecs; |
| 1137 | |
| 1138 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1139 | x->tx_buf = &packet->read_z2; |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1140 | x->len = 1; |
| 1141 | spi_message_add_tail(x, m); |
| 1142 | |
| 1143 | x++; |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1144 | x->rx_buf = &packet->tc.z2; |
Semih Hazar | e4f4886 | 2007-07-18 00:35:56 -0400 | [diff] [blame] | 1145 | x->len = 2; |
| 1146 | spi_message_add_tail(x, m); |
| 1147 | } |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1148 | } |
Imre Deak | 53a0ef89 | 2006-04-11 23:41:49 -0400 | [diff] [blame] | 1149 | |
| 1150 | /* power down */ |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1151 | ts->msg_count++; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1152 | m++; |
| 1153 | spi_message_init(m); |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1154 | m->context = ts; |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1155 | |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 1156 | if (ts->model == 7845) { |
| 1157 | x++; |
| 1158 | packet->pwrdown_cmd[0] = PWRDOWN; |
| 1159 | packet->pwrdown_cmd[1] = 0; |
| 1160 | packet->pwrdown_cmd[2] = 0; |
| 1161 | x->tx_buf = &packet->pwrdown_cmd[0]; |
| 1162 | x->len = 3; |
| 1163 | } else { |
| 1164 | x++; |
| 1165 | packet->pwrdown = PWRDOWN; |
| 1166 | x->tx_buf = &packet->pwrdown; |
| 1167 | x->len = 1; |
| 1168 | spi_message_add_tail(x, m); |
Imre Deak | 53a0ef89 | 2006-04-11 23:41:49 -0400 | [diff] [blame] | 1169 | |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 1170 | x++; |
| 1171 | x->rx_buf = &packet->dummy; |
| 1172 | x->len = 2; |
| 1173 | } |
| 1174 | |
David Brownell | d93f70b | 2006-02-15 00:49:35 -0500 | [diff] [blame] | 1175 | CS_CHANGE(*x); |
Imre Deak | 0b7018a | 2006-04-11 23:42:03 -0400 | [diff] [blame] | 1176 | spi_message_add_tail(x, m); |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1177 | } |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1178 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1179 | static int __devinit ads7846_probe(struct spi_device *spi) |
| 1180 | { |
| 1181 | struct ads7846 *ts; |
| 1182 | struct ads7846_packet *packet; |
| 1183 | struct input_dev *input_dev; |
| 1184 | struct ads7846_platform_data *pdata = spi->dev.platform_data; |
| 1185 | unsigned long irq_flags; |
| 1186 | int err; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1187 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1188 | if (!spi->irq) { |
| 1189 | dev_dbg(&spi->dev, "no IRQ?\n"); |
| 1190 | return -ENODEV; |
| 1191 | } |
| 1192 | |
| 1193 | if (!pdata) { |
| 1194 | dev_dbg(&spi->dev, "no platform data?\n"); |
| 1195 | return -ENODEV; |
| 1196 | } |
| 1197 | |
| 1198 | /* don't exceed max specified sample rate */ |
| 1199 | if (spi->max_speed_hz > (125000 * SAMPLE_BITS)) { |
| 1200 | dev_dbg(&spi->dev, "f(sample) %d KHz?\n", |
| 1201 | (spi->max_speed_hz/SAMPLE_BITS)/1000); |
| 1202 | return -EINVAL; |
| 1203 | } |
| 1204 | |
| 1205 | /* We'd set TX word size 8 bits and RX word size to 13 bits ... except |
| 1206 | * that even if the hardware can do that, the SPI controller driver |
| 1207 | * may not. So we stick to very-portable 8 bit words, both RX and TX. |
| 1208 | */ |
| 1209 | spi->bits_per_word = 8; |
| 1210 | spi->mode = SPI_MODE_0; |
| 1211 | err = spi_setup(spi); |
| 1212 | if (err < 0) |
| 1213 | return err; |
| 1214 | |
| 1215 | ts = kzalloc(sizeof(struct ads7846), GFP_KERNEL); |
| 1216 | packet = kzalloc(sizeof(struct ads7846_packet), GFP_KERNEL); |
| 1217 | input_dev = input_allocate_device(); |
| 1218 | if (!ts || !packet || !input_dev) { |
| 1219 | err = -ENOMEM; |
| 1220 | goto err_free_mem; |
| 1221 | } |
| 1222 | |
| 1223 | dev_set_drvdata(&spi->dev, ts); |
| 1224 | |
| 1225 | ts->packet = packet; |
| 1226 | ts->spi = spi; |
| 1227 | ts->input = input_dev; |
| 1228 | ts->vref_mv = pdata->vref_mv; |
| 1229 | ts->swap_xy = pdata->swap_xy; |
| 1230 | |
| 1231 | mutex_init(&ts->lock); |
| 1232 | init_waitqueue_head(&ts->wait); |
| 1233 | |
| 1234 | ts->model = pdata->model ? : 7846; |
| 1235 | ts->vref_delay_usecs = pdata->vref_delay_usecs ? : 100; |
| 1236 | ts->x_plate_ohms = pdata->x_plate_ohms ? : 400; |
| 1237 | ts->pressure_max = pdata->pressure_max ? : ~0; |
| 1238 | |
| 1239 | if (pdata->filter != NULL) { |
| 1240 | if (pdata->filter_init != NULL) { |
| 1241 | err = pdata->filter_init(pdata, &ts->filter_data); |
| 1242 | if (err < 0) |
| 1243 | goto err_free_mem; |
| 1244 | } |
| 1245 | ts->filter = pdata->filter; |
| 1246 | ts->filter_cleanup = pdata->filter_cleanup; |
| 1247 | } else if (pdata->debounce_max) { |
| 1248 | ts->debounce_max = pdata->debounce_max; |
| 1249 | if (ts->debounce_max < 2) |
| 1250 | ts->debounce_max = 2; |
| 1251 | ts->debounce_tol = pdata->debounce_tol; |
| 1252 | ts->debounce_rep = pdata->debounce_rep; |
| 1253 | ts->filter = ads7846_debounce_filter; |
| 1254 | ts->filter_data = ts; |
| 1255 | } else { |
| 1256 | ts->filter = ads7846_no_filter; |
| 1257 | } |
| 1258 | |
| 1259 | err = ads7846_setup_pendown(spi, ts); |
| 1260 | if (err) |
| 1261 | goto err_cleanup_filter; |
| 1262 | |
| 1263 | if (pdata->penirq_recheck_delay_usecs) |
| 1264 | ts->penirq_recheck_delay_usecs = |
| 1265 | pdata->penirq_recheck_delay_usecs; |
| 1266 | |
| 1267 | ts->wait_for_sync = pdata->wait_for_sync ? : null_wait_for_sync; |
| 1268 | |
| 1269 | snprintf(ts->phys, sizeof(ts->phys), "%s/input0", dev_name(&spi->dev)); |
| 1270 | snprintf(ts->name, sizeof(ts->name), "ADS%d Touchscreen", ts->model); |
| 1271 | |
| 1272 | input_dev->name = ts->name; |
| 1273 | input_dev->phys = ts->phys; |
| 1274 | input_dev->dev.parent = &spi->dev; |
| 1275 | |
| 1276 | input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); |
| 1277 | input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH); |
| 1278 | input_set_abs_params(input_dev, ABS_X, |
| 1279 | pdata->x_min ? : 0, |
| 1280 | pdata->x_max ? : MAX_12BIT, |
| 1281 | 0, 0); |
| 1282 | input_set_abs_params(input_dev, ABS_Y, |
| 1283 | pdata->y_min ? : 0, |
| 1284 | pdata->y_max ? : MAX_12BIT, |
| 1285 | 0, 0); |
| 1286 | input_set_abs_params(input_dev, ABS_PRESSURE, |
| 1287 | pdata->pressure_min, pdata->pressure_max, 0, 0); |
| 1288 | |
| 1289 | ads7846_setup_spi_msg(ts, pdata); |
Imre Deak | d5b415c | 2006-04-26 00:13:18 -0400 | [diff] [blame] | 1290 | |
Grazvydas Ignotas | 9114337 | 2010-02-25 02:04:56 -0800 | [diff] [blame] | 1291 | ts->reg = regulator_get(&spi->dev, "vcc"); |
| 1292 | if (IS_ERR(ts->reg)) { |
Kevin Hilman | 067fb2f | 2010-05-26 23:30:55 -0700 | [diff] [blame] | 1293 | err = PTR_ERR(ts->reg); |
Dmitry Torokhov | 56960b3 | 2010-06-02 00:40:06 -0700 | [diff] [blame] | 1294 | dev_err(&spi->dev, "unable to get regulator: %d\n", err); |
Grazvydas Ignotas | 9114337 | 2010-02-25 02:04:56 -0800 | [diff] [blame] | 1295 | goto err_free_gpio; |
| 1296 | } |
| 1297 | |
| 1298 | err = regulator_enable(ts->reg); |
| 1299 | if (err) { |
| 1300 | dev_err(&spi->dev, "unable to enable regulator: %d\n", err); |
| 1301 | goto err_put_regulator; |
| 1302 | } |
| 1303 | |
Dmitry Torokhov | 0f622bf | 2010-07-01 09:01:50 -0700 | [diff] [blame] | 1304 | irq_flags = pdata->irq_flags ? : IRQF_TRIGGER_FALLING; |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1305 | irq_flags |= IRQF_ONESHOT; |
Anatolij Gustschin | 7804302 | 2010-06-28 01:25:19 -0700 | [diff] [blame] | 1306 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1307 | err = request_threaded_irq(spi->irq, ads7846_hard_irq, ads7846_irq, |
| 1308 | irq_flags, spi->dev.driver->name, ts); |
Dmitry Torokhov | 0f622bf | 2010-07-01 09:01:50 -0700 | [diff] [blame] | 1309 | if (err && !pdata->irq_flags) { |
Michael Roth | c57c0a2 | 2009-06-10 23:30:55 -0700 | [diff] [blame] | 1310 | dev_info(&spi->dev, |
| 1311 | "trying pin change workaround on irq %d\n", spi->irq); |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1312 | irq_flags |= IRQF_TRIGGER_RISING; |
| 1313 | err = request_threaded_irq(spi->irq, |
| 1314 | ads7846_hard_irq, ads7846_irq, |
| 1315 | irq_flags, spi->dev.driver->name, ts); |
Dmitry Torokhov | 0f622bf | 2010-07-01 09:01:50 -0700 | [diff] [blame] | 1316 | } |
| 1317 | |
| 1318 | if (err) { |
| 1319 | dev_dbg(&spi->dev, "irq %d busy?\n", spi->irq); |
| 1320 | goto err_disable_regulator; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1321 | } |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1322 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 1323 | err = ads784x_hwmon_register(spi, ts); |
| 1324 | if (err) |
| 1325 | goto err_free_irq; |
| 1326 | |
David Brownell | 2e5a7bd | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1327 | dev_info(&spi->dev, "touchscreen, irq %d\n", spi->irq); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1328 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1329 | /* |
| 1330 | * Take a first sample, leaving nPENIRQ active and vREF off; avoid |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1331 | * the touchscreen, in case it's not connected. |
| 1332 | */ |
Anatolij Gustschin | 3eac5c7 | 2010-07-01 09:01:56 -0700 | [diff] [blame] | 1333 | if (ts->model == 7845) |
| 1334 | ads7845_read12_ser(&spi->dev, PWRDOWN); |
| 1335 | else |
| 1336 | (void) ads7846_read12_ser(&spi->dev, |
| 1337 | READ_12BIT_SER(vaux) | ADS_PD10_ALL_ON); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1338 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 1339 | err = sysfs_create_group(&spi->dev.kobj, &ads784x_attr_group); |
Dmitry Torokhov | 8dd5165 | 2006-11-02 23:34:09 -0500 | [diff] [blame] | 1340 | if (err) |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 1341 | goto err_remove_hwmon; |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 1342 | |
Dmitry Torokhov | a90f7e9 | 2006-02-15 00:49:22 -0500 | [diff] [blame] | 1343 | err = input_register_device(input_dev); |
| 1344 | if (err) |
Dmitry Torokhov | 8dd5165 | 2006-11-02 23:34:09 -0500 | [diff] [blame] | 1345 | goto err_remove_attr_group; |
Dmitry Torokhov | a90f7e9 | 2006-02-15 00:49:22 -0500 | [diff] [blame] | 1346 | |
Ranjith Lohithakshan | fdba2bb | 2010-03-10 23:41:22 -0800 | [diff] [blame] | 1347 | device_init_wakeup(&spi->dev, pdata->wakeup); |
| 1348 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1349 | return 0; |
Dmitry Torokhov | a90f7e9 | 2006-02-15 00:49:22 -0500 | [diff] [blame] | 1350 | |
Dmitry Torokhov | 8dd5165 | 2006-11-02 23:34:09 -0500 | [diff] [blame] | 1351 | err_remove_attr_group: |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 1352 | sysfs_remove_group(&spi->dev.kobj, &ads784x_attr_group); |
| 1353 | err_remove_hwmon: |
| 1354 | ads784x_hwmon_unregister(spi, ts); |
Dmitry Torokhov | 8dd5165 | 2006-11-02 23:34:09 -0500 | [diff] [blame] | 1355 | err_free_irq: |
Dmitry Torokhov | a90f7e9 | 2006-02-15 00:49:22 -0500 | [diff] [blame] | 1356 | free_irq(spi->irq, ts); |
Grazvydas Ignotas | 9114337 | 2010-02-25 02:04:56 -0800 | [diff] [blame] | 1357 | err_disable_regulator: |
| 1358 | regulator_disable(ts->reg); |
| 1359 | err_put_regulator: |
| 1360 | regulator_put(ts->reg); |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 1361 | err_free_gpio: |
Dmitry Torokhov | 0fbc9fd | 2011-02-04 00:37:26 -0800 | [diff] [blame] | 1362 | if (!ts->get_pendown_state) |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 1363 | gpio_free(ts->gpio_pendown); |
Imre Deak | da970e6 | 2007-01-18 00:44:41 -0500 | [diff] [blame] | 1364 | err_cleanup_filter: |
| 1365 | if (ts->filter_cleanup) |
| 1366 | ts->filter_cleanup(ts->filter_data); |
Dmitry Torokhov | a90f7e9 | 2006-02-15 00:49:22 -0500 | [diff] [blame] | 1367 | err_free_mem: |
| 1368 | input_free_device(input_dev); |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1369 | kfree(packet); |
Dmitry Torokhov | a90f7e9 | 2006-02-15 00:49:22 -0500 | [diff] [blame] | 1370 | kfree(ts); |
| 1371 | return err; |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1372 | } |
| 1373 | |
David Brownell | 2e5a7bd | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1374 | static int __devexit ads7846_remove(struct spi_device *spi) |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1375 | { |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1376 | struct ads7846 *ts = dev_get_drvdata(&spi->dev); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1377 | |
Ranjith Lohithakshan | fdba2bb | 2010-03-10 23:41:22 -0800 | [diff] [blame] | 1378 | device_init_wakeup(&spi->dev, false); |
| 1379 | |
David Brownell | 2c8dc07 | 2007-01-18 00:45:48 -0500 | [diff] [blame] | 1380 | sysfs_remove_group(&spi->dev.kobj, &ads784x_attr_group); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1381 | |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1382 | ads7846_disable(ts); |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 1383 | free_irq(ts->spi->irq, ts); |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1384 | |
| 1385 | input_unregister_device(ts->input); |
| 1386 | |
| 1387 | ads784x_hwmon_unregister(spi, ts); |
Imre Deak | 7de90a8 | 2006-04-11 23:43:55 -0400 | [diff] [blame] | 1388 | |
Grazvydas Ignotas | 9114337 | 2010-02-25 02:04:56 -0800 | [diff] [blame] | 1389 | regulator_disable(ts->reg); |
| 1390 | regulator_put(ts->reg); |
| 1391 | |
Dmitry Torokhov | 0fbc9fd | 2011-02-04 00:37:26 -0800 | [diff] [blame] | 1392 | if (!ts->get_pendown_state) { |
| 1393 | /* |
| 1394 | * If we are not using specialized pendown method we must |
| 1395 | * have been relying on gpio we set up ourselves. |
| 1396 | */ |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 1397 | gpio_free(ts->gpio_pendown); |
Dmitry Torokhov | 0fbc9fd | 2011-02-04 00:37:26 -0800 | [diff] [blame] | 1398 | } |
Eric Miao | 4d5975e | 2008-09-10 12:06:15 -0400 | [diff] [blame] | 1399 | |
Imre Deak | da970e6 | 2007-01-18 00:44:41 -0500 | [diff] [blame] | 1400 | if (ts->filter_cleanup) |
| 1401 | ts->filter_cleanup(ts->filter_data); |
| 1402 | |
Dmitry Torokhov | e8f462d | 2008-10-09 00:52:23 -0400 | [diff] [blame] | 1403 | kfree(ts->packet); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1404 | kfree(ts); |
| 1405 | |
David Brownell | 2e5a7bd | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1406 | dev_dbg(&spi->dev, "unregistered touchscreen\n"); |
Jason Wang | 2991a1c | 2010-10-13 11:35:40 -0700 | [diff] [blame] | 1407 | |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1408 | return 0; |
| 1409 | } |
| 1410 | |
David Brownell | 2e5a7bd | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1411 | static struct spi_driver ads7846_driver = { |
| 1412 | .driver = { |
| 1413 | .name = "ads7846", |
| 1414 | .bus = &spi_bus_type, |
| 1415 | .owner = THIS_MODULE, |
Mark Brown | 3c36e71 | 2011-01-20 22:51:26 -0800 | [diff] [blame] | 1416 | .pm = &ads7846_pm, |
David Brownell | 2e5a7bd | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1417 | }, |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1418 | .probe = ads7846_probe, |
David Brownell | 2e5a7bd | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1419 | .remove = __devexit_p(ads7846_remove), |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1420 | }; |
| 1421 | |
| 1422 | static int __init ads7846_init(void) |
| 1423 | { |
David Brownell | 2e5a7bd | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1424 | return spi_register_driver(&ads7846_driver); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1425 | } |
| 1426 | module_init(ads7846_init); |
| 1427 | |
| 1428 | static void __exit ads7846_exit(void) |
| 1429 | { |
David Brownell | 2e5a7bd | 2006-01-08 13:34:25 -0800 | [diff] [blame] | 1430 | spi_unregister_driver(&ads7846_driver); |
David Brownell | ffa458c | 2006-01-08 13:34:21 -0800 | [diff] [blame] | 1431 | } |
| 1432 | module_exit(ads7846_exit); |
| 1433 | |
| 1434 | MODULE_DESCRIPTION("ADS7846 TouchScreen Driver"); |
| 1435 | MODULE_LICENSE("GPL"); |
Anton Vorontsov | e0626e3 | 2009-09-22 16:46:08 -0700 | [diff] [blame] | 1436 | MODULE_ALIAS("spi:ads7846"); |