blob: 1de1c19dad30f2e0ef089f0901e8d6d0b2584b43 [file] [log] [blame]
David Brownellffa458c2006-01-08 13:34:21 -08001/*
2 * ADS7846 based touchscreen and sensor driver
3 *
4 * Copyright (c) 2005 David Brownell
Imre Deak7de90a82006-04-11 23:43:55 -04005 * Copyright (c) 2006 Nokia Corporation
6 * Various changes: Imre Deak <imre.deak@nokia.com>
David Brownellffa458c2006-01-08 13:34:21 -08007 *
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 Wang2991a1c2010-10-13 11:35:40 -070020#include <linux/types.h>
David Brownell2c8dc072007-01-18 00:45:48 -050021#include <linux/hwmon.h>
David Brownellffa458c2006-01-08 13:34:21 -080022#include <linux/init.h>
David Brownell2c8dc072007-01-18 00:45:48 -050023#include <linux/err.h>
Jason Wang2991a1c2010-10-13 11:35:40 -070024#include <linux/sched.h>
David Brownellffa458c2006-01-08 13:34:21 -080025#include <linux/delay.h>
26#include <linux/input.h>
27#include <linux/interrupt.h>
28#include <linux/slab.h>
Mark Brown3c36e712011-01-20 22:51:26 -080029#include <linux/pm.h>
Eric Miao4d5975e2008-09-10 12:06:15 -040030#include <linux/gpio.h>
David Brownellffa458c2006-01-08 13:34:21 -080031#include <linux/spi/spi.h>
32#include <linux/spi/ads7846.h>
Grazvydas Ignotas91143372010-02-25 02:04:56 -080033#include <linux/regulator/consumer.h>
Andrew Morton3ac8bf02006-03-26 01:37:33 -080034#include <asm/irq.h>
David Brownellffa458c2006-01-08 13:34:21 -080035
David Brownellffa458c2006-01-08 13:34:21 -080036/*
David Brownell90845332006-05-25 18:44:20 -070037 * This code has been heavily tested on a Nokia 770, and lightly
Pavel Machek52ce4ea2009-11-23 08:25:17 -080038 * tested on other ads7846 devices (OSK/Mistral, Lubbock, Spitz).
David Brownellbff0de52007-05-22 23:28:40 -040039 * TSC2046 is just newer ads7846 silicon.
Nicolas Ferre969111e2007-02-28 23:51:03 -050040 * Support for ads7843 tested on Atmel at91sam926x-EK.
41 * Support for ads7845 has only been stubbed in.
Michael Hennerich06a09122010-03-09 20:38:45 -080042 * Support for Analog Devices AD7873 and AD7843 tested.
David Brownellffa458c2006-01-08 13:34:21 -080043 *
Imre Deak7de90a82006-04-11 23:43:55 -040044 * 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 Machek52ce4ea2009-11-23 08:25:17 -080050 * App note sbaa036 talks in more detail about accurate sampling...
David Brownellffa458c2006-01-08 13:34:21 -080051 * that ought to help in situations like LCDs inducing noise (which
52 * can also be helped by using synch signals) and more generally.
Imre Deak7de90a82006-04-11 23:43:55 -040053 * 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 Brownellffa458c2006-01-08 13:34:21 -080056 */
57
Jason Wang2991a1c2010-10-13 11:35:40 -070058#define TS_POLL_DELAY 1 /* ms delay before the first sample */
59#define TS_POLL_PERIOD 5 /* ms delay between samples */
David Brownellffa458c2006-01-08 13:34:21 -080060
David Brownelld93f70b2006-02-15 00:49:35 -050061/* this driver doesn't aim at the peak continuous sample rate */
62#define SAMPLE_BITS (8 /*cmd*/ + 16 /*sample*/ + 2 /* before, after */)
63
David Brownellffa458c2006-01-08 13:34:21 -080064struct ts_event {
Jason Wang2991a1c2010-10-13 11:35:40 -070065 /*
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 Brownelld93f70b2006-02-15 00:49:35 -050068 * with msbs zeroed). Instead, we read them as two 8-bit values,
Imre Deakda970e62007-01-18 00:44:41 -050069 * *** WHICH NEED BYTESWAPPING *** and range adjustment.
David Brownellffa458c2006-01-08 13:34:21 -080070 */
Imre Deakda970e62007-01-18 00:44:41 -050071 u16 x;
72 u16 y;
73 u16 z1, z2;
Jason Wang2991a1c2010-10-13 11:35:40 -070074 bool ignore;
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -070075 u8 x_buf[3];
76 u8 y_buf[3];
David Brownellffa458c2006-01-08 13:34:21 -080077};
78
Dmitry Torokhove8f462d2008-10-09 00:52:23 -040079/*
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 */
84struct 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 Gustschin3eac5c72010-07-01 09:01:56 -070088 /* 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 Torokhove8f462d2008-10-09 00:52:23 -040090};
91
David Brownellffa458c2006-01-08 13:34:21 -080092struct ads7846 {
Dmitry Torokhova90f7e92006-02-15 00:49:22 -050093 struct input_dev *input;
David Brownellffa458c2006-01-08 13:34:21 -080094 char phys[32];
Michael Rothb58895f2009-05-18 16:05:12 -070095 char name[32];
David Brownellffa458c2006-01-08 13:34:21 -080096
97 struct spi_device *spi;
Grazvydas Ignotas91143372010-02-25 02:04:56 -080098 struct regulator *reg;
David Brownell2c8dc072007-01-18 00:45:48 -050099
100#if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE)
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500101 struct attribute_group *attr_group;
Tony Jones1beeffe2007-08-20 13:46:20 -0700102 struct device *hwmon;
David Brownell2c8dc072007-01-18 00:45:48 -0500103#endif
104
David Brownellffa458c2006-01-08 13:34:21 -0800105 u16 model;
David Brownell7c6d0ee2008-04-02 00:43:01 -0400106 u16 vref_mv;
David Brownellffa458c2006-01-08 13:34:21 -0800107 u16 vref_delay_usecs;
108 u16 x_plate_ohms;
Imre Deakd5b415c2006-04-26 00:13:18 -0400109 u16 pressure_max;
David Brownellffa458c2006-01-08 13:34:21 -0800110
Michael Roth86579a42009-05-18 16:04:44 -0700111 bool swap_xy;
112
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400113 struct ads7846_packet *packet;
David Brownellffa458c2006-01-08 13:34:21 -0800114
Semih Hazare4f48862007-07-18 00:35:56 -0400115 struct spi_transfer xfer[18];
Imre Deak0b7018a2006-04-11 23:42:03 -0400116 struct spi_message msg[5];
Jason Wang2991a1c2010-10-13 11:35:40 -0700117 int msg_count;
118 wait_queue_head_t wait;
119
120 bool pendown;
121
Imre Deak0b7018a2006-04-11 23:42:03 -0400122 int read_cnt;
Imre Deakd5b415c2006-04-26 00:13:18 -0400123 int read_rep;
Imre Deak0b7018a2006-04-11 23:42:03 -0400124 int last_read;
125
126 u16 debounce_max;
127 u16 debounce_tol;
Imre Deakd5b415c2006-04-26 00:13:18 -0400128 u16 debounce_rep;
David Brownellffa458c2006-01-08 13:34:21 -0800129
Semih Hazar1d258912007-07-18 00:36:04 -0400130 u16 penirq_recheck_delay_usecs;
131
Jason Wang2991a1c2010-10-13 11:35:40 -0700132 struct mutex lock;
133 bool stopped; /* P: lock */
134 bool disabled; /* P: lock */
135 bool suspended; /* P: lock */
Imre Deakc9e617a2006-04-11 23:44:05 -0400136
Imre Deakda970e62007-01-18 00:44:41 -0500137 int (*filter)(void *data, int data_idx, int *val);
138 void *filter_data;
139 void (*filter_cleanup)(void *data);
Imre Deakc9e617a2006-04-11 23:44:05 -0400140 int (*get_pendown_state)(void);
Eric Miao4d5975e2008-09-10 12:06:15 -0400141 int gpio_pendown;
Eric Miaofd746d52009-04-11 16:54:59 -0700142
143 void (*wait_for_sync)(void);
David Brownellffa458c2006-01-08 13:34:21 -0800144};
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 Wang2991a1c2010-10-13 11:35:40 -0700171#define ADS_PD10_PDOWN (0 << 0) /* low power mode + penirq */
David Brownellffa458c2006-01-08 13:34:21 -0800172#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 Deakde2defd2007-01-18 00:45:21 -0500179#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 Brownellffa458c2006-01-08 13:34:21 -0800182
Imre Deakde2defd2007-01-18 00:45:21 -0500183#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 Deak53a0ef892006-04-11 23:41:49 -0400186
Imre Deakde2defd2007-01-18 00:45:21 -0500187#define READ_X(vref) (READ_12BIT_DFR(x, 1, vref))
188#define PWRDOWN (READ_12BIT_DFR(y, 0, 0)) /* LAST */
David Brownellffa458c2006-01-08 13:34:21 -0800189
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 Deakde2defd2007-01-18 00:45:21 -0500196#define REF_ON (READ_12BIT_DFR(x, 1, 1))
197#define REF_OFF (READ_12BIT_DFR(y, 0, 0))
David Brownellffa458c2006-01-08 13:34:21 -0800198
Jason Wang2991a1c2010-10-13 11:35:40 -0700199/* Must be called with ts->lock held */
200static 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 */
212static 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 */
223static 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 */
235static void __ads7846_enable(struct ads7846 *ts)
236{
237 regulator_enable(ts->reg);
238 ads7846_restart(ts);
239}
240
241static 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
256static 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 Brownellffa458c2006-01-08 13:34:21 -0800271/*--------------------------------------------------------------------------*/
272
273/*
274 * Non-touchscreen sensors only use single-ended conversions.
David Brownell2c8dc072007-01-18 00:45:48 -0500275 * 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 Brownellffa458c2006-01-08 13:34:21 -0800277 */
278
279struct ser_req {
David Brownelld93f70b2006-02-15 00:49:35 -0500280 u8 ref_on;
David Brownellffa458c2006-01-08 13:34:21 -0800281 u8 command;
David Brownelld93f70b2006-02-15 00:49:35 -0500282 u8 ref_off;
David Brownellffa458c2006-01-08 13:34:21 -0800283 u16 scratch;
David Brownellffa458c2006-01-08 13:34:21 -0800284 struct spi_message msg;
285 struct spi_transfer xfer[6];
Alexander Stein1dbe7da2011-05-05 08:40:14 -0700286 /*
287 * DMA (thus cache coherency maintenance) requires the
288 * transfer buffers to live in their own cache lines.
289 */
290 __be16 sample ____cacheline_aligned;
David Brownellffa458c2006-01-08 13:34:21 -0800291};
292
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700293struct ads7845_ser_req {
294 u8 command[3];
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700295 struct spi_message msg;
296 struct spi_transfer xfer[2];
Alexander Stein1dbe7da2011-05-05 08:40:14 -0700297 /*
298 * DMA (thus cache coherency maintenance) requires the
299 * transfer buffers to live in their own cache lines.
300 */
301 u8 sample[3] ____cacheline_aligned;
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700302};
303
David Brownellffa458c2006-01-08 13:34:21 -0800304static int ads7846_read12_ser(struct device *dev, unsigned command)
305{
Jason Wang2991a1c2010-10-13 11:35:40 -0700306 struct spi_device *spi = to_spi_device(dev);
307 struct ads7846 *ts = dev_get_drvdata(dev);
308 struct ser_req *req;
309 int status;
310 int use_internal;
David Brownellffa458c2006-01-08 13:34:21 -0800311
Jason Wang2991a1c2010-10-13 11:35:40 -0700312 req = kzalloc(sizeof *req, GFP_KERNEL);
David Brownellffa458c2006-01-08 13:34:21 -0800313 if (!req)
314 return -ENOMEM;
315
Imre Deak0b7018a2006-04-11 23:42:03 -0400316 spi_message_init(&req->msg);
Vitaly Wool8275c642006-01-08 13:34:28 -0800317
David Brownell2c8dc072007-01-18 00:45:48 -0500318 /* FIXME boards with ads7846 might use external vref instead ... */
319 use_internal = (ts->model == 7846);
David Brownellffa458c2006-01-08 13:34:21 -0800320
David Brownell2c8dc072007-01-18 00:45:48 -0500321 /* maybe turn on internal vREF, and let it settle */
322 if (use_internal) {
323 req->ref_on = REF_ON;
324 req->xfer[0].tx_buf = &req->ref_on;
325 req->xfer[0].len = 1;
326 spi_message_add_tail(&req->xfer[0], &req->msg);
327
328 req->xfer[1].rx_buf = &req->scratch;
329 req->xfer[1].len = 2;
330
331 /* for 1uF, settle for 800 usec; no cap, 100 usec. */
332 req->xfer[1].delay_usecs = ts->vref_delay_usecs;
333 spi_message_add_tail(&req->xfer[1], &req->msg);
334 }
David Brownellffa458c2006-01-08 13:34:21 -0800335
336 /* take sample */
337 req->command = (u8) command;
338 req->xfer[2].tx_buf = &req->command;
339 req->xfer[2].len = 1;
David Brownell2c8dc072007-01-18 00:45:48 -0500340 spi_message_add_tail(&req->xfer[2], &req->msg);
341
David Brownellffa458c2006-01-08 13:34:21 -0800342 req->xfer[3].rx_buf = &req->sample;
343 req->xfer[3].len = 2;
David Brownell2c8dc072007-01-18 00:45:48 -0500344 spi_message_add_tail(&req->xfer[3], &req->msg);
David Brownellffa458c2006-01-08 13:34:21 -0800345
346 /* REVISIT: take a few more samples, and compare ... */
347
Nicolas Ferre969111e2007-02-28 23:51:03 -0500348 /* converter in low power mode & enable PENIRQ */
349 req->ref_off = PWRDOWN;
350 req->xfer[4].tx_buf = &req->ref_off;
351 req->xfer[4].len = 1;
352 spi_message_add_tail(&req->xfer[4], &req->msg);
David Brownellffa458c2006-01-08 13:34:21 -0800353
Nicolas Ferre969111e2007-02-28 23:51:03 -0500354 req->xfer[5].rx_buf = &req->scratch;
355 req->xfer[5].len = 2;
356 CS_CHANGE(req->xfer[5]);
357 spi_message_add_tail(&req->xfer[5], &req->msg);
David Brownellffa458c2006-01-08 13:34:21 -0800358
Jason Wang2991a1c2010-10-13 11:35:40 -0700359 mutex_lock(&ts->lock);
360 ads7846_stop(ts);
David Brownellffa458c2006-01-08 13:34:21 -0800361 status = spi_sync(spi, &req->msg);
Jason Wang2991a1c2010-10-13 11:35:40 -0700362 ads7846_restart(ts);
363 mutex_unlock(&ts->lock);
David Brownellffa458c2006-01-08 13:34:21 -0800364
Marc Pignatc24b2602007-12-04 23:45:11 -0800365 if (status == 0) {
366 /* on-wire is a must-ignore bit, a BE12 value, then padding */
David Brownell7c6d0ee2008-04-02 00:43:01 -0400367 status = be16_to_cpu(req->sample);
368 status = status >> 3;
369 status &= 0x0fff;
Marc Pignatc24b2602007-12-04 23:45:11 -0800370 }
David Brownell90845332006-05-25 18:44:20 -0700371
372 kfree(req);
David Brownell7c6d0ee2008-04-02 00:43:01 -0400373 return status;
David Brownellffa458c2006-01-08 13:34:21 -0800374}
375
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700376static int ads7845_read12_ser(struct device *dev, unsigned command)
377{
Jason Wang2991a1c2010-10-13 11:35:40 -0700378 struct spi_device *spi = to_spi_device(dev);
379 struct ads7846 *ts = dev_get_drvdata(dev);
380 struct ads7845_ser_req *req;
381 int status;
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700382
Jason Wang2991a1c2010-10-13 11:35:40 -0700383 req = kzalloc(sizeof *req, GFP_KERNEL);
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700384 if (!req)
385 return -ENOMEM;
386
387 spi_message_init(&req->msg);
388
389 req->command[0] = (u8) command;
390 req->xfer[0].tx_buf = req->command;
391 req->xfer[0].rx_buf = req->sample;
392 req->xfer[0].len = 3;
393 spi_message_add_tail(&req->xfer[0], &req->msg);
394
Jason Wang2991a1c2010-10-13 11:35:40 -0700395 mutex_lock(&ts->lock);
396 ads7846_stop(ts);
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700397 status = spi_sync(spi, &req->msg);
Jason Wang2991a1c2010-10-13 11:35:40 -0700398 ads7846_restart(ts);
399 mutex_unlock(&ts->lock);
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700400
401 if (status == 0) {
402 /* BE12 value, then padding */
403 status = be16_to_cpu(*((u16 *)&req->sample[1]));
404 status = status >> 3;
405 status &= 0x0fff;
406 }
407
408 kfree(req);
409 return status;
410}
411
David Brownell2c8dc072007-01-18 00:45:48 -0500412#if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE)
413
414#define SHOW(name, var, adjust) static ssize_t \
David Brownellffa458c2006-01-08 13:34:21 -0800415name ## _show(struct device *dev, struct device_attribute *attr, char *buf) \
416{ \
David Brownell2c8dc072007-01-18 00:45:48 -0500417 struct ads7846 *ts = dev_get_drvdata(dev); \
David Brownellffa458c2006-01-08 13:34:21 -0800418 ssize_t v = ads7846_read12_ser(dev, \
David Brownell2c8dc072007-01-18 00:45:48 -0500419 READ_12BIT_SER(var) | ADS_PD10_ALL_ON); \
David Brownellffa458c2006-01-08 13:34:21 -0800420 if (v < 0) \
421 return v; \
David Brownell2c8dc072007-01-18 00:45:48 -0500422 return sprintf(buf, "%u\n", adjust(ts, v)); \
David Brownellffa458c2006-01-08 13:34:21 -0800423} \
424static DEVICE_ATTR(name, S_IRUGO, name ## _show, NULL);
425
David Brownell2c8dc072007-01-18 00:45:48 -0500426
Adam Buchbinderb731d7b2009-03-13 12:15:26 -0400427/* Sysfs conventions report temperatures in millidegrees Celsius.
David Brownell2c8dc072007-01-18 00:45:48 -0500428 * ADS7846 could use the low-accuracy two-sample scheme, but can't do the high
429 * accuracy scheme without calibration data. For now we won't try either;
430 * userspace sees raw sensor values, and must scale/calibrate appropriately.
431 */
432static inline unsigned null_adjust(struct ads7846 *ts, ssize_t v)
433{
434 return v;
435}
436
437SHOW(temp0, temp0, null_adjust) /* temp1_input */
438SHOW(temp1, temp1, null_adjust) /* temp2_input */
439
440
441/* sysfs conventions report voltages in millivolts. We can convert voltages
442 * if we know vREF. userspace may need to scale vAUX to match the board's
443 * external resistors; we assume that vBATT only uses the internal ones.
444 */
445static inline unsigned vaux_adjust(struct ads7846 *ts, ssize_t v)
446{
447 unsigned retval = v;
448
449 /* external resistors may scale vAUX into 0..vREF */
David Brownell7c6d0ee2008-04-02 00:43:01 -0400450 retval *= ts->vref_mv;
David Brownell2c8dc072007-01-18 00:45:48 -0500451 retval = retval >> 12;
Jason Wang2991a1c2010-10-13 11:35:40 -0700452
David Brownell2c8dc072007-01-18 00:45:48 -0500453 return retval;
454}
455
456static inline unsigned vbatt_adjust(struct ads7846 *ts, ssize_t v)
457{
458 unsigned retval = vaux_adjust(ts, v);
459
460 /* ads7846 has a resistor ladder to scale this signal down */
461 if (ts->model == 7846)
462 retval *= 4;
Jason Wang2991a1c2010-10-13 11:35:40 -0700463
David Brownell2c8dc072007-01-18 00:45:48 -0500464 return retval;
465}
466
467SHOW(in0_input, vaux, vaux_adjust)
468SHOW(in1_input, vbatt, vbatt_adjust)
469
David Brownell2c8dc072007-01-18 00:45:48 -0500470static struct attribute *ads7846_attributes[] = {
471 &dev_attr_temp0.attr,
472 &dev_attr_temp1.attr,
473 &dev_attr_in0_input.attr,
474 &dev_attr_in1_input.attr,
475 NULL,
476};
477
478static struct attribute_group ads7846_attr_group = {
479 .attrs = ads7846_attributes,
480};
481
482static struct attribute *ads7843_attributes[] = {
483 &dev_attr_in0_input.attr,
484 &dev_attr_in1_input.attr,
485 NULL,
486};
487
488static struct attribute_group ads7843_attr_group = {
489 .attrs = ads7843_attributes,
490};
491
492static struct attribute *ads7845_attributes[] = {
493 &dev_attr_in0_input.attr,
494 NULL,
495};
496
497static struct attribute_group ads7845_attr_group = {
498 .attrs = ads7845_attributes,
499};
500
501static int ads784x_hwmon_register(struct spi_device *spi, struct ads7846 *ts)
502{
Tony Jones1beeffe2007-08-20 13:46:20 -0700503 struct device *hwmon;
David Brownell2c8dc072007-01-18 00:45:48 -0500504 int err;
505
506 /* hwmon sensors need a reference voltage */
507 switch (ts->model) {
508 case 7846:
David Brownell7c6d0ee2008-04-02 00:43:01 -0400509 if (!ts->vref_mv) {
David Brownell2c8dc072007-01-18 00:45:48 -0500510 dev_dbg(&spi->dev, "assuming 2.5V internal vREF\n");
David Brownell7c6d0ee2008-04-02 00:43:01 -0400511 ts->vref_mv = 2500;
David Brownell2c8dc072007-01-18 00:45:48 -0500512 }
513 break;
514 case 7845:
515 case 7843:
David Brownell7c6d0ee2008-04-02 00:43:01 -0400516 if (!ts->vref_mv) {
David Brownell2c8dc072007-01-18 00:45:48 -0500517 dev_warn(&spi->dev,
518 "external vREF for ADS%d not specified\n",
519 ts->model);
520 return 0;
521 }
522 break;
523 }
524
525 /* different chips have different sensor groups */
526 switch (ts->model) {
527 case 7846:
528 ts->attr_group = &ads7846_attr_group;
529 break;
530 case 7845:
531 ts->attr_group = &ads7845_attr_group;
532 break;
533 case 7843:
534 ts->attr_group = &ads7843_attr_group;
535 break;
536 default:
537 dev_dbg(&spi->dev, "ADS%d not recognized\n", ts->model);
538 return 0;
539 }
540
541 err = sysfs_create_group(&spi->dev.kobj, ts->attr_group);
542 if (err)
543 return err;
544
545 hwmon = hwmon_device_register(&spi->dev);
546 if (IS_ERR(hwmon)) {
547 sysfs_remove_group(&spi->dev.kobj, ts->attr_group);
548 return PTR_ERR(hwmon);
549 }
550
551 ts->hwmon = hwmon;
552 return 0;
553}
554
555static void ads784x_hwmon_unregister(struct spi_device *spi,
556 struct ads7846 *ts)
557{
558 if (ts->hwmon) {
559 sysfs_remove_group(&spi->dev.kobj, ts->attr_group);
560 hwmon_device_unregister(ts->hwmon);
561 }
562}
563
564#else
565static inline int ads784x_hwmon_register(struct spi_device *spi,
566 struct ads7846 *ts)
567{
568 return 0;
569}
570
571static inline void ads784x_hwmon_unregister(struct spi_device *spi,
572 struct ads7846 *ts)
573{
574}
575#endif
David Brownellffa458c2006-01-08 13:34:21 -0800576
Imre Deak438f2a72006-04-11 23:41:32 -0400577static ssize_t ads7846_pen_down_show(struct device *dev,
578 struct device_attribute *attr, char *buf)
579{
Jason Wang2991a1c2010-10-13 11:35:40 -0700580 struct ads7846 *ts = dev_get_drvdata(dev);
581
582 return sprintf(buf, "%u\n", ts->pendown);
Imre Deak438f2a72006-04-11 23:41:32 -0400583}
584
585static DEVICE_ATTR(pen_down, S_IRUGO, ads7846_pen_down_show, NULL);
586
Imre Deak7de90a82006-04-11 23:43:55 -0400587static ssize_t ads7846_disable_show(struct device *dev,
588 struct device_attribute *attr, char *buf)
589{
Jason Wang2991a1c2010-10-13 11:35:40 -0700590 struct ads7846 *ts = dev_get_drvdata(dev);
Imre Deak7de90a82006-04-11 23:43:55 -0400591
592 return sprintf(buf, "%u\n", ts->disabled);
593}
594
595static ssize_t ads7846_disable_store(struct device *dev,
596 struct device_attribute *attr,
597 const char *buf, size_t count)
598{
599 struct ads7846 *ts = dev_get_drvdata(dev);
Harvey Harrison3a0c58d2008-12-23 04:09:28 -0500600 unsigned long i;
Imre Deak7de90a82006-04-11 23:43:55 -0400601
Joe Rouvier160f1fe2008-08-10 00:29:25 -0400602 if (strict_strtoul(buf, 10, &i))
603 return -EINVAL;
604
Imre Deak7de90a82006-04-11 23:43:55 -0400605 if (i)
606 ads7846_disable(ts);
607 else
608 ads7846_enable(ts);
609
Imre Deak7de90a82006-04-11 23:43:55 -0400610 return count;
611}
612
613static DEVICE_ATTR(disable, 0664, ads7846_disable_show, ads7846_disable_store);
614
David Brownell2c8dc072007-01-18 00:45:48 -0500615static struct attribute *ads784x_attributes[] = {
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500616 &dev_attr_pen_down.attr,
617 &dev_attr_disable.attr,
618 NULL,
619};
620
David Brownell2c8dc072007-01-18 00:45:48 -0500621static struct attribute_group ads784x_attr_group = {
622 .attrs = ads784x_attributes,
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500623};
624
David Brownellffa458c2006-01-08 13:34:21 -0800625/*--------------------------------------------------------------------------*/
626
Eric Miao4d5975e2008-09-10 12:06:15 -0400627static int get_pendown_state(struct ads7846 *ts)
628{
629 if (ts->get_pendown_state)
630 return ts->get_pendown_state();
631
632 return !gpio_get_value(ts->gpio_pendown);
633}
634
Eric Miaofd746d52009-04-11 16:54:59 -0700635static void null_wait_for_sync(void)
636{
637}
638
Jason Wang2991a1c2010-10-13 11:35:40 -0700639static int ads7846_debounce_filter(void *ads, int data_idx, int *val)
David Brownellffa458c2006-01-08 13:34:21 -0800640{
Jason Wang2991a1c2010-10-13 11:35:40 -0700641 struct ads7846 *ts = ads;
David Brownellffa458c2006-01-08 13:34:21 -0800642
Jason Wang2991a1c2010-10-13 11:35:40 -0700643 if (!ts->read_cnt || (abs(ts->last_read - *val) > ts->debounce_tol)) {
644 /* Start over collecting consistent readings. */
645 ts->read_rep = 0;
646 /*
647 * Repeat it, if this was the first read or the read
648 * wasn't consistent enough.
649 */
650 if (ts->read_cnt < ts->debounce_max) {
651 ts->last_read = *val;
652 ts->read_cnt++;
653 return ADS7846_FILTER_REPEAT;
654 } else {
655 /*
656 * Maximum number of debouncing reached and still
657 * not enough number of consistent readings. Abort
658 * the whole sample, repeat it in the next sampling
659 * period.
660 */
661 ts->read_cnt = 0;
662 return ADS7846_FILTER_IGNORE;
663 }
664 } else {
665 if (++ts->read_rep > ts->debounce_rep) {
666 /*
667 * Got a good reading for this coordinate,
668 * go for the next one.
669 */
670 ts->read_cnt = 0;
671 ts->read_rep = 0;
672 return ADS7846_FILTER_OK;
673 } else {
674 /* Read more values that are consistent. */
675 ts->read_cnt++;
676 return ADS7846_FILTER_REPEAT;
677 }
678 }
679}
680
681static int ads7846_no_filter(void *ads, int data_idx, int *val)
682{
683 return ADS7846_FILTER_OK;
684}
685
686static int ads7846_get_value(struct ads7846 *ts, struct spi_message *m)
687{
688 struct spi_transfer *t =
689 list_entry(m->transfers.prev, struct spi_transfer, transfer_list);
690
691 if (ts->model == 7845) {
692 return be16_to_cpup((__be16 *)&(((char*)t->rx_buf)[1])) >> 3;
693 } else {
694 /*
695 * adjust: on-wire is a must-ignore bit, a BE12 value, then
696 * padding; built from two 8 bit values written msb-first.
697 */
698 return be16_to_cpup((__be16 *)t->rx_buf) >> 3;
699 }
700}
701
702static void ads7846_update_value(struct spi_message *m, int val)
703{
704 struct spi_transfer *t =
705 list_entry(m->transfers.prev, struct spi_transfer, transfer_list);
706
707 *(u16 *)t->rx_buf = val;
708}
709
710static void ads7846_read_state(struct ads7846 *ts)
711{
712 struct ads7846_packet *packet = ts->packet;
713 struct spi_message *m;
714 int msg_idx = 0;
715 int val;
716 int action;
717 int error;
718
719 while (msg_idx < ts->msg_count) {
720
721 ts->wait_for_sync();
722
723 m = &ts->msg[msg_idx];
724 error = spi_sync(ts->spi, m);
725 if (error) {
726 dev_err(&ts->spi->dev, "spi_async --> %d\n", error);
727 packet->tc.ignore = true;
728 return;
729 }
730
731 /*
732 * Last message is power down request, no need to convert
733 * or filter the value.
734 */
735 if (msg_idx < ts->msg_count - 1) {
736
737 val = ads7846_get_value(ts, m);
738
739 action = ts->filter(ts->filter_data, msg_idx, &val);
740 switch (action) {
741 case ADS7846_FILTER_REPEAT:
742 continue;
743
744 case ADS7846_FILTER_IGNORE:
745 packet->tc.ignore = true;
746 msg_idx = ts->msg_count - 1;
747 continue;
748
749 case ADS7846_FILTER_OK:
750 ads7846_update_value(m, val);
751 packet->tc.ignore = false;
752 msg_idx++;
753 break;
754
755 default:
756 BUG();
757 }
758 } else {
759 msg_idx++;
760 }
761 }
762}
763
764static void ads7846_report_state(struct ads7846 *ts)
765{
766 struct ads7846_packet *packet = ts->packet;
767 unsigned int Rt;
768 u16 x, y, z1, z2;
769
770 /*
771 * ads7846_get_value() does in-place conversion (including byte swap)
772 * from on-the-wire format as part of debouncing to get stable
773 * readings.
David Brownellffa458c2006-01-08 13:34:21 -0800774 */
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700775 if (ts->model == 7845) {
776 x = *(u16 *)packet->tc.x_buf;
777 y = *(u16 *)packet->tc.y_buf;
778 z1 = 0;
779 z2 = 0;
780 } else {
781 x = packet->tc.x;
782 y = packet->tc.y;
783 z1 = packet->tc.z1;
784 z2 = packet->tc.z2;
785 }
David Brownellffa458c2006-01-08 13:34:21 -0800786
787 /* range filtering */
788 if (x == MAX_12BIT)
789 x = 0;
790
Hans-Christian Egtvedt9460b652008-07-23 14:38:27 -0400791 if (ts->model == 7843) {
792 Rt = ts->pressure_max / 2;
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700793 } else if (ts->model == 7845) {
794 if (get_pendown_state(ts))
795 Rt = ts->pressure_max / 2;
796 else
797 Rt = 0;
798 dev_vdbg(&ts->spi->dev, "x/y: %d/%d, PD %d\n", x, y, Rt);
Hans-Christian Egtvedt9460b652008-07-23 14:38:27 -0400799 } else if (likely(x && z1)) {
David Brownellffa458c2006-01-08 13:34:21 -0800800 /* compute touch pressure resistance using equation #2 */
801 Rt = z2;
802 Rt -= z1;
803 Rt *= x;
804 Rt *= ts->x_plate_ohms;
805 Rt /= z1;
806 Rt = (Rt + 2047) >> 12;
Hans-Christian Egtvedt9460b652008-07-23 14:38:27 -0400807 } else {
David Brownellffa458c2006-01-08 13:34:21 -0800808 Rt = 0;
Hans-Christian Egtvedt9460b652008-07-23 14:38:27 -0400809 }
Nicolas Ferre969111e2007-02-28 23:51:03 -0500810
Jason Wang2991a1c2010-10-13 11:35:40 -0700811 /*
812 * Sample found inconsistent by debouncing or pressure is beyond
Imre Deak1936d592007-01-18 00:45:31 -0500813 * the maximum. Don't report it to user space, repeat at least
814 * once more the measurement
815 */
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400816 if (packet->tc.ignore || Rt > ts->pressure_max) {
Pavel Machek52ce4ea2009-11-23 08:25:17 -0800817 dev_vdbg(&ts->spi->dev, "ignored %d pressure %d\n",
818 packet->tc.ignore, Rt);
Imre Deakd5b415c2006-04-26 00:13:18 -0400819 return;
820 }
821
Jason Wang2991a1c2010-10-13 11:35:40 -0700822 /*
823 * Maybe check the pendown state before reporting. This discards
Semih Hazar1d258912007-07-18 00:36:04 -0400824 * false readings when the pen is lifted.
825 */
826 if (ts->penirq_recheck_delay_usecs) {
827 udelay(ts->penirq_recheck_delay_usecs);
Eric Miao4d5975e2008-09-10 12:06:15 -0400828 if (!get_pendown_state(ts))
Semih Hazar1d258912007-07-18 00:36:04 -0400829 Rt = 0;
830 }
831
Jason Wang2991a1c2010-10-13 11:35:40 -0700832 /*
833 * NOTE: We can't rely on the pressure to determine the pen down
834 * state, even this controller has a pressure sensor. The pressure
Imre Deak15e35892007-01-18 00:45:43 -0500835 * value can fluctuate for quite a while after lifting the pen and
836 * in some cases may not even settle at the expected value.
David Brownellffa458c2006-01-08 13:34:21 -0800837 *
Imre Deak15e35892007-01-18 00:45:43 -0500838 * The only safe way to check for the pen up condition is in the
839 * timer by reading the pen signal state (it's a GPIO _and_ IRQ).
David Brownellffa458c2006-01-08 13:34:21 -0800840 */
David Brownellffa458c2006-01-08 13:34:21 -0800841 if (Rt) {
Imre Deak15e35892007-01-18 00:45:43 -0500842 struct input_dev *input = ts->input;
Imre Deakae82d5a2006-04-26 00:12:14 -0400843
Michael Roth86579a42009-05-18 16:04:44 -0700844 if (ts->swap_xy)
845 swap(x, y);
846
Jason Wang2991a1c2010-10-13 11:35:40 -0700847 if (!ts->pendown) {
848 input_report_key(input, BTN_TOUCH, 1);
849 ts->pendown = true;
850 dev_vdbg(&ts->spi->dev, "DOWN\n");
851 }
852
Imre Deak15e35892007-01-18 00:45:43 -0500853 input_report_abs(input, ABS_X, x);
854 input_report_abs(input, ABS_Y, y);
Pavel Machek30ad7ba2009-11-23 08:17:38 -0800855 input_report_abs(input, ABS_PRESSURE, ts->pressure_max - Rt);
David Brownellffa458c2006-01-08 13:34:21 -0800856
Imre Deak15e35892007-01-18 00:45:43 -0500857 input_sync(input);
Pavel Machek52ce4ea2009-11-23 08:25:17 -0800858 dev_vdbg(&ts->spi->dev, "%4d/%4d/%4d\n", x, y, Rt);
Imre Deak15e35892007-01-18 00:45:43 -0500859 }
David Brownellffa458c2006-01-08 13:34:21 -0800860}
861
Jason Wang2991a1c2010-10-13 11:35:40 -0700862static irqreturn_t ads7846_hard_irq(int irq, void *handle)
Imre Deak0b7018a2006-04-11 23:42:03 -0400863{
Jason Wang2991a1c2010-10-13 11:35:40 -0700864 struct ads7846 *ts = handle;
Imre Deak0b7018a2006-04-11 23:42:03 -0400865
Jason Wang2991a1c2010-10-13 11:35:40 -0700866 return get_pendown_state(ts) ? IRQ_WAKE_THREAD : IRQ_HANDLED;
Imre Deakda970e62007-01-18 00:44:41 -0500867}
868
David Brownellffa458c2006-01-08 13:34:21 -0800869
David Howells7d12e782006-10-05 14:55:46 +0100870static irqreturn_t ads7846_irq(int irq, void *handle)
David Brownellffa458c2006-01-08 13:34:21 -0800871{
Imre Deak0b7018a2006-04-11 23:42:03 -0400872 struct ads7846 *ts = handle;
Imre Deak0b7018a2006-04-11 23:42:03 -0400873
Jason Wang2991a1c2010-10-13 11:35:40 -0700874 /* Start with a small delay before checking pendown state */
875 msleep(TS_POLL_DELAY);
876
877 while (!ts->stopped && get_pendown_state(ts)) {
878
879 /* pen is down, continue with the measurement */
880 ads7846_read_state(ts);
881
882 if (!ts->stopped)
883 ads7846_report_state(ts);
884
885 wait_event_timeout(ts->wait, ts->stopped,
886 msecs_to_jiffies(TS_POLL_PERIOD));
Imre Deak0b7018a2006-04-11 23:42:03 -0400887 }
Jason Wang2991a1c2010-10-13 11:35:40 -0700888
889 if (ts->pendown) {
890 struct input_dev *input = ts->input;
891
892 input_report_key(input, BTN_TOUCH, 0);
893 input_report_abs(input, ABS_PRESSURE, 0);
894 input_sync(input);
895
896 ts->pendown = false;
897 dev_vdbg(&ts->spi->dev, "UP\n");
898 }
Imre Deak7de90a82006-04-11 23:43:55 -0400899
900 return IRQ_HANDLED;
David Brownellffa458c2006-01-08 13:34:21 -0800901}
902
Mark Brown3c36e712011-01-20 22:51:26 -0800903#ifdef CONFIG_PM_SLEEP
904static int ads7846_suspend(struct device *dev)
Imre Deak7de90a82006-04-11 23:43:55 -0400905{
Mark Brown3c36e712011-01-20 22:51:26 -0800906 struct ads7846 *ts = dev_get_drvdata(dev);
Imre Deak7de90a82006-04-11 23:43:55 -0400907
Jason Wang2991a1c2010-10-13 11:35:40 -0700908 mutex_lock(&ts->lock);
Imre Deak7de90a82006-04-11 23:43:55 -0400909
Jason Wang2991a1c2010-10-13 11:35:40 -0700910 if (!ts->suspended) {
Imre Deak7de90a82006-04-11 23:43:55 -0400911
Jason Wang2991a1c2010-10-13 11:35:40 -0700912 if (!ts->disabled)
913 __ads7846_disable(ts);
Imre Deak7de90a82006-04-11 23:43:55 -0400914
Jason Wang2991a1c2010-10-13 11:35:40 -0700915 if (device_may_wakeup(&ts->spi->dev))
916 enable_irq_wake(ts->spi->irq);
917
918 ts->suspended = true;
919 }
920
921 mutex_unlock(&ts->lock);
Ranjith Lohithakshanfdba2bb2010-03-10 23:41:22 -0800922
David Brownellffa458c2006-01-08 13:34:21 -0800923 return 0;
924}
925
Mark Brown3c36e712011-01-20 22:51:26 -0800926static int ads7846_resume(struct device *dev)
David Brownellffa458c2006-01-08 13:34:21 -0800927{
Mark Brown3c36e712011-01-20 22:51:26 -0800928 struct ads7846 *ts = dev_get_drvdata(dev);
David Brownellffa458c2006-01-08 13:34:21 -0800929
Jason Wang2991a1c2010-10-13 11:35:40 -0700930 mutex_lock(&ts->lock);
Ranjith Lohithakshanfdba2bb2010-03-10 23:41:22 -0800931
Jason Wang2991a1c2010-10-13 11:35:40 -0700932 if (ts->suspended) {
Imre Deak7de90a82006-04-11 23:43:55 -0400933
Jason Wang2991a1c2010-10-13 11:35:40 -0700934 ts->suspended = false;
Imre Deak7de90a82006-04-11 23:43:55 -0400935
Jason Wang2991a1c2010-10-13 11:35:40 -0700936 if (device_may_wakeup(&ts->spi->dev))
937 disable_irq_wake(ts->spi->irq);
938
939 if (!ts->disabled)
940 __ads7846_enable(ts);
941 }
942
943 mutex_unlock(&ts->lock);
Imre Deak7de90a82006-04-11 23:43:55 -0400944
David Brownellffa458c2006-01-08 13:34:21 -0800945 return 0;
946}
Mark Brown3c36e712011-01-20 22:51:26 -0800947#endif
948
949static SIMPLE_DEV_PM_OPS(ads7846_pm, ads7846_suspend, ads7846_resume);
David Brownellffa458c2006-01-08 13:34:21 -0800950
Jason Wang2991a1c2010-10-13 11:35:40 -0700951static int __devinit ads7846_setup_pendown(struct spi_device *spi, struct ads7846 *ts)
Eric Miao4d5975e2008-09-10 12:06:15 -0400952{
953 struct ads7846_platform_data *pdata = spi->dev.platform_data;
954 int err;
955
Dmitry Torokhov0fbc9fd2011-02-04 00:37:26 -0800956 /*
957 * REVISIT when the irq can be triggered active-low, or if for some
Eric Miao4d5975e2008-09-10 12:06:15 -0400958 * reason the touchscreen isn't hooked up, we don't need to access
959 * the pendown state.
960 */
Eric Miao4d5975e2008-09-10 12:06:15 -0400961
962 if (pdata->get_pendown_state) {
963 ts->get_pendown_state = pdata->get_pendown_state;
Dmitry Torokhov0fbc9fd2011-02-04 00:37:26 -0800964 } else if (gpio_is_valid(pdata->gpio_pendown)) {
Eric Miao4d5975e2008-09-10 12:06:15 -0400965
Dmitry Torokhov0fbc9fd2011-02-04 00:37:26 -0800966 err = gpio_request(pdata->gpio_pendown, "ads7846_pendown");
967 if (err) {
968 dev_err(&spi->dev, "failed to request pendown GPIO%d\n",
969 pdata->gpio_pendown);
970 return err;
971 }
Eric Miao4d5975e2008-09-10 12:06:15 -0400972
Dmitry Torokhov0fbc9fd2011-02-04 00:37:26 -0800973 ts->gpio_pendown = pdata->gpio_pendown;
974
975 } else {
976 dev_err(&spi->dev, "no get_pendown_state nor gpio_pendown?\n");
977 return -EINVAL;
978 }
Jason Wang2991a1c2010-10-13 11:35:40 -0700979
Eric Miao4d5975e2008-09-10 12:06:15 -0400980 return 0;
981}
982
Jason Wang2991a1c2010-10-13 11:35:40 -0700983/*
984 * Set up the transfers to read touchscreen state; this assumes we
985 * use formula #2 for pressure, not #3.
986 */
987static void __devinit ads7846_setup_spi_msg(struct ads7846 *ts,
988 const struct ads7846_platform_data *pdata)
David Brownellffa458c2006-01-08 13:34:21 -0800989{
Jason Wang2991a1c2010-10-13 11:35:40 -0700990 struct spi_message *m = &ts->msg[0];
991 struct spi_transfer *x = ts->xfer;
992 struct ads7846_packet *packet = ts->packet;
993 int vref = pdata->keep_vref_on;
Imre Deakde2defd2007-01-18 00:45:21 -0500994
Michael Hennerich06a09122010-03-09 20:38:45 -0800995 if (ts->model == 7873) {
Jason Wang2991a1c2010-10-13 11:35:40 -0700996 /*
997 * The AD7873 is almost identical to the ADS7846
Michael Hennerich06a09122010-03-09 20:38:45 -0800998 * keep VREF off during differential/ratiometric
Jason Wang2991a1c2010-10-13 11:35:40 -0700999 * conversion modes.
Michael Hennerich06a09122010-03-09 20:38:45 -08001000 */
1001 ts->model = 7846;
1002 vref = 0;
1003 }
1004
Jason Wang2991a1c2010-10-13 11:35:40 -07001005 ts->msg_count = 1;
Imre Deak0b7018a2006-04-11 23:42:03 -04001006 spi_message_init(m);
Jason Wang2991a1c2010-10-13 11:35:40 -07001007 m->context = ts;
Imre Deak0b7018a2006-04-11 23:42:03 -04001008
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001009 if (ts->model == 7845) {
1010 packet->read_y_cmd[0] = READ_Y(vref);
1011 packet->read_y_cmd[1] = 0;
1012 packet->read_y_cmd[2] = 0;
1013 x->tx_buf = &packet->read_y_cmd[0];
1014 x->rx_buf = &packet->tc.y_buf[0];
1015 x->len = 3;
1016 spi_message_add_tail(x, m);
1017 } else {
1018 /* y- still on; turn on only y+ (and ADC) */
1019 packet->read_y = READ_Y(vref);
1020 x->tx_buf = &packet->read_y;
1021 x->len = 1;
1022 spi_message_add_tail(x, m);
David Brownelld93f70b2006-02-15 00:49:35 -05001023
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001024 x++;
1025 x->rx_buf = &packet->tc.y;
1026 x->len = 2;
1027 spi_message_add_tail(x, m);
1028 }
David Brownellffa458c2006-01-08 13:34:21 -08001029
Jason Wang2991a1c2010-10-13 11:35:40 -07001030 /*
1031 * The first sample after switching drivers can be low quality;
Semih Hazare4f48862007-07-18 00:35:56 -04001032 * optionally discard it, using a second one after the signals
1033 * have had enough time to stabilize.
1034 */
1035 if (pdata->settle_delay_usecs) {
1036 x->delay_usecs = pdata->settle_delay_usecs;
1037
1038 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001039 x->tx_buf = &packet->read_y;
Semih Hazare4f48862007-07-18 00:35:56 -04001040 x->len = 1;
1041 spi_message_add_tail(x, m);
1042
1043 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001044 x->rx_buf = &packet->tc.y;
Semih Hazare4f48862007-07-18 00:35:56 -04001045 x->len = 2;
1046 spi_message_add_tail(x, m);
1047 }
1048
Jason Wang2991a1c2010-10-13 11:35:40 -07001049 ts->msg_count++;
Imre Deak0b7018a2006-04-11 23:42:03 -04001050 m++;
1051 spi_message_init(m);
Jason Wang2991a1c2010-10-13 11:35:40 -07001052 m->context = ts;
David Brownellffa458c2006-01-08 13:34:21 -08001053
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001054 if (ts->model == 7845) {
1055 x++;
1056 packet->read_x_cmd[0] = READ_X(vref);
1057 packet->read_x_cmd[1] = 0;
1058 packet->read_x_cmd[2] = 0;
1059 x->tx_buf = &packet->read_x_cmd[0];
1060 x->rx_buf = &packet->tc.x_buf[0];
1061 x->len = 3;
1062 spi_message_add_tail(x, m);
1063 } else {
1064 /* turn y- off, x+ on, then leave in lowpower */
1065 x++;
1066 packet->read_x = READ_X(vref);
1067 x->tx_buf = &packet->read_x;
1068 x->len = 1;
1069 spi_message_add_tail(x, m);
David Brownelld93f70b2006-02-15 00:49:35 -05001070
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001071 x++;
1072 x->rx_buf = &packet->tc.x;
1073 x->len = 2;
1074 spi_message_add_tail(x, m);
1075 }
Imre Deak0b7018a2006-04-11 23:42:03 -04001076
Semih Hazare4f48862007-07-18 00:35:56 -04001077 /* ... maybe discard first sample ... */
1078 if (pdata->settle_delay_usecs) {
1079 x->delay_usecs = pdata->settle_delay_usecs;
1080
1081 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001082 x->tx_buf = &packet->read_x;
Semih Hazare4f48862007-07-18 00:35:56 -04001083 x->len = 1;
1084 spi_message_add_tail(x, m);
1085
1086 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001087 x->rx_buf = &packet->tc.x;
Semih Hazare4f48862007-07-18 00:35:56 -04001088 x->len = 2;
1089 spi_message_add_tail(x, m);
1090 }
1091
Imre Deak0b7018a2006-04-11 23:42:03 -04001092 /* turn y+ off, x- on; we'll use formula #2 */
1093 if (ts->model == 7846) {
Jason Wang2991a1c2010-10-13 11:35:40 -07001094 ts->msg_count++;
Imre Deak0b7018a2006-04-11 23:42:03 -04001095 m++;
1096 spi_message_init(m);
Jason Wang2991a1c2010-10-13 11:35:40 -07001097 m->context = ts;
Imre Deak0b7018a2006-04-11 23:42:03 -04001098
1099 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001100 packet->read_z1 = READ_Z1(vref);
1101 x->tx_buf = &packet->read_z1;
Imre Deak0b7018a2006-04-11 23:42:03 -04001102 x->len = 1;
1103 spi_message_add_tail(x, m);
1104
1105 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001106 x->rx_buf = &packet->tc.z1;
Imre Deak0b7018a2006-04-11 23:42:03 -04001107 x->len = 2;
1108 spi_message_add_tail(x, m);
1109
Semih Hazare4f48862007-07-18 00:35:56 -04001110 /* ... maybe discard first sample ... */
1111 if (pdata->settle_delay_usecs) {
1112 x->delay_usecs = pdata->settle_delay_usecs;
1113
1114 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001115 x->tx_buf = &packet->read_z1;
Semih Hazare4f48862007-07-18 00:35:56 -04001116 x->len = 1;
1117 spi_message_add_tail(x, m);
1118
1119 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001120 x->rx_buf = &packet->tc.z1;
Semih Hazare4f48862007-07-18 00:35:56 -04001121 x->len = 2;
1122 spi_message_add_tail(x, m);
1123 }
1124
Jason Wang2991a1c2010-10-13 11:35:40 -07001125 ts->msg_count++;
Imre Deak0b7018a2006-04-11 23:42:03 -04001126 m++;
1127 spi_message_init(m);
Jason Wang2991a1c2010-10-13 11:35:40 -07001128 m->context = ts;
Imre Deak0b7018a2006-04-11 23:42:03 -04001129
1130 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001131 packet->read_z2 = READ_Z2(vref);
1132 x->tx_buf = &packet->read_z2;
Imre Deak0b7018a2006-04-11 23:42:03 -04001133 x->len = 1;
1134 spi_message_add_tail(x, m);
1135
1136 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001137 x->rx_buf = &packet->tc.z2;
Imre Deak0b7018a2006-04-11 23:42:03 -04001138 x->len = 2;
1139 spi_message_add_tail(x, m);
1140
Semih Hazare4f48862007-07-18 00:35:56 -04001141 /* ... maybe discard first sample ... */
1142 if (pdata->settle_delay_usecs) {
1143 x->delay_usecs = pdata->settle_delay_usecs;
1144
1145 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001146 x->tx_buf = &packet->read_z2;
Semih Hazare4f48862007-07-18 00:35:56 -04001147 x->len = 1;
1148 spi_message_add_tail(x, m);
1149
1150 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001151 x->rx_buf = &packet->tc.z2;
Semih Hazare4f48862007-07-18 00:35:56 -04001152 x->len = 2;
1153 spi_message_add_tail(x, m);
1154 }
Imre Deak0b7018a2006-04-11 23:42:03 -04001155 }
Imre Deak53a0ef892006-04-11 23:41:49 -04001156
1157 /* power down */
Jason Wang2991a1c2010-10-13 11:35:40 -07001158 ts->msg_count++;
Imre Deak0b7018a2006-04-11 23:42:03 -04001159 m++;
1160 spi_message_init(m);
Jason Wang2991a1c2010-10-13 11:35:40 -07001161 m->context = ts;
Imre Deak0b7018a2006-04-11 23:42:03 -04001162
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001163 if (ts->model == 7845) {
1164 x++;
1165 packet->pwrdown_cmd[0] = PWRDOWN;
1166 packet->pwrdown_cmd[1] = 0;
1167 packet->pwrdown_cmd[2] = 0;
1168 x->tx_buf = &packet->pwrdown_cmd[0];
1169 x->len = 3;
1170 } else {
1171 x++;
1172 packet->pwrdown = PWRDOWN;
1173 x->tx_buf = &packet->pwrdown;
1174 x->len = 1;
1175 spi_message_add_tail(x, m);
Imre Deak53a0ef892006-04-11 23:41:49 -04001176
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001177 x++;
1178 x->rx_buf = &packet->dummy;
1179 x->len = 2;
1180 }
1181
David Brownelld93f70b2006-02-15 00:49:35 -05001182 CS_CHANGE(*x);
Imre Deak0b7018a2006-04-11 23:42:03 -04001183 spi_message_add_tail(x, m);
Jason Wang2991a1c2010-10-13 11:35:40 -07001184}
David Brownellffa458c2006-01-08 13:34:21 -08001185
Jason Wang2991a1c2010-10-13 11:35:40 -07001186static int __devinit ads7846_probe(struct spi_device *spi)
1187{
1188 struct ads7846 *ts;
1189 struct ads7846_packet *packet;
1190 struct input_dev *input_dev;
1191 struct ads7846_platform_data *pdata = spi->dev.platform_data;
1192 unsigned long irq_flags;
1193 int err;
David Brownellffa458c2006-01-08 13:34:21 -08001194
Jason Wang2991a1c2010-10-13 11:35:40 -07001195 if (!spi->irq) {
1196 dev_dbg(&spi->dev, "no IRQ?\n");
1197 return -ENODEV;
1198 }
1199
1200 if (!pdata) {
1201 dev_dbg(&spi->dev, "no platform data?\n");
1202 return -ENODEV;
1203 }
1204
1205 /* don't exceed max specified sample rate */
1206 if (spi->max_speed_hz > (125000 * SAMPLE_BITS)) {
1207 dev_dbg(&spi->dev, "f(sample) %d KHz?\n",
1208 (spi->max_speed_hz/SAMPLE_BITS)/1000);
1209 return -EINVAL;
1210 }
1211
1212 /* We'd set TX word size 8 bits and RX word size to 13 bits ... except
1213 * that even if the hardware can do that, the SPI controller driver
1214 * may not. So we stick to very-portable 8 bit words, both RX and TX.
1215 */
1216 spi->bits_per_word = 8;
1217 spi->mode = SPI_MODE_0;
1218 err = spi_setup(spi);
1219 if (err < 0)
1220 return err;
1221
1222 ts = kzalloc(sizeof(struct ads7846), GFP_KERNEL);
1223 packet = kzalloc(sizeof(struct ads7846_packet), GFP_KERNEL);
1224 input_dev = input_allocate_device();
1225 if (!ts || !packet || !input_dev) {
1226 err = -ENOMEM;
1227 goto err_free_mem;
1228 }
1229
1230 dev_set_drvdata(&spi->dev, ts);
1231
1232 ts->packet = packet;
1233 ts->spi = spi;
1234 ts->input = input_dev;
1235 ts->vref_mv = pdata->vref_mv;
1236 ts->swap_xy = pdata->swap_xy;
1237
1238 mutex_init(&ts->lock);
1239 init_waitqueue_head(&ts->wait);
1240
1241 ts->model = pdata->model ? : 7846;
1242 ts->vref_delay_usecs = pdata->vref_delay_usecs ? : 100;
1243 ts->x_plate_ohms = pdata->x_plate_ohms ? : 400;
1244 ts->pressure_max = pdata->pressure_max ? : ~0;
1245
1246 if (pdata->filter != NULL) {
1247 if (pdata->filter_init != NULL) {
1248 err = pdata->filter_init(pdata, &ts->filter_data);
1249 if (err < 0)
1250 goto err_free_mem;
1251 }
1252 ts->filter = pdata->filter;
1253 ts->filter_cleanup = pdata->filter_cleanup;
1254 } else if (pdata->debounce_max) {
1255 ts->debounce_max = pdata->debounce_max;
1256 if (ts->debounce_max < 2)
1257 ts->debounce_max = 2;
1258 ts->debounce_tol = pdata->debounce_tol;
1259 ts->debounce_rep = pdata->debounce_rep;
1260 ts->filter = ads7846_debounce_filter;
1261 ts->filter_data = ts;
1262 } else {
1263 ts->filter = ads7846_no_filter;
1264 }
1265
1266 err = ads7846_setup_pendown(spi, ts);
1267 if (err)
1268 goto err_cleanup_filter;
1269
1270 if (pdata->penirq_recheck_delay_usecs)
1271 ts->penirq_recheck_delay_usecs =
1272 pdata->penirq_recheck_delay_usecs;
1273
1274 ts->wait_for_sync = pdata->wait_for_sync ? : null_wait_for_sync;
1275
1276 snprintf(ts->phys, sizeof(ts->phys), "%s/input0", dev_name(&spi->dev));
1277 snprintf(ts->name, sizeof(ts->name), "ADS%d Touchscreen", ts->model);
1278
1279 input_dev->name = ts->name;
1280 input_dev->phys = ts->phys;
1281 input_dev->dev.parent = &spi->dev;
1282
1283 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
1284 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
1285 input_set_abs_params(input_dev, ABS_X,
1286 pdata->x_min ? : 0,
1287 pdata->x_max ? : MAX_12BIT,
1288 0, 0);
1289 input_set_abs_params(input_dev, ABS_Y,
1290 pdata->y_min ? : 0,
1291 pdata->y_max ? : MAX_12BIT,
1292 0, 0);
1293 input_set_abs_params(input_dev, ABS_PRESSURE,
1294 pdata->pressure_min, pdata->pressure_max, 0, 0);
1295
1296 ads7846_setup_spi_msg(ts, pdata);
Imre Deakd5b415c2006-04-26 00:13:18 -04001297
Grazvydas Ignotas91143372010-02-25 02:04:56 -08001298 ts->reg = regulator_get(&spi->dev, "vcc");
1299 if (IS_ERR(ts->reg)) {
Kevin Hilman067fb2f2010-05-26 23:30:55 -07001300 err = PTR_ERR(ts->reg);
Dmitry Torokhov56960b32010-06-02 00:40:06 -07001301 dev_err(&spi->dev, "unable to get regulator: %d\n", err);
Grazvydas Ignotas91143372010-02-25 02:04:56 -08001302 goto err_free_gpio;
1303 }
1304
1305 err = regulator_enable(ts->reg);
1306 if (err) {
1307 dev_err(&spi->dev, "unable to enable regulator: %d\n", err);
1308 goto err_put_regulator;
1309 }
1310
Dmitry Torokhov0f622bf2010-07-01 09:01:50 -07001311 irq_flags = pdata->irq_flags ? : IRQF_TRIGGER_FALLING;
Jason Wang2991a1c2010-10-13 11:35:40 -07001312 irq_flags |= IRQF_ONESHOT;
Anatolij Gustschin78043022010-06-28 01:25:19 -07001313
Jason Wang2991a1c2010-10-13 11:35:40 -07001314 err = request_threaded_irq(spi->irq, ads7846_hard_irq, ads7846_irq,
1315 irq_flags, spi->dev.driver->name, ts);
Dmitry Torokhov0f622bf2010-07-01 09:01:50 -07001316 if (err && !pdata->irq_flags) {
Michael Rothc57c0a22009-06-10 23:30:55 -07001317 dev_info(&spi->dev,
1318 "trying pin change workaround on irq %d\n", spi->irq);
Jason Wang2991a1c2010-10-13 11:35:40 -07001319 irq_flags |= IRQF_TRIGGER_RISING;
1320 err = request_threaded_irq(spi->irq,
1321 ads7846_hard_irq, ads7846_irq,
1322 irq_flags, spi->dev.driver->name, ts);
Dmitry Torokhov0f622bf2010-07-01 09:01:50 -07001323 }
1324
1325 if (err) {
1326 dev_dbg(&spi->dev, "irq %d busy?\n", spi->irq);
1327 goto err_disable_regulator;
David Brownellffa458c2006-01-08 13:34:21 -08001328 }
David Brownellffa458c2006-01-08 13:34:21 -08001329
David Brownell2c8dc072007-01-18 00:45:48 -05001330 err = ads784x_hwmon_register(spi, ts);
1331 if (err)
1332 goto err_free_irq;
1333
David Brownell2e5a7bd2006-01-08 13:34:25 -08001334 dev_info(&spi->dev, "touchscreen, irq %d\n", spi->irq);
David Brownellffa458c2006-01-08 13:34:21 -08001335
Jason Wang2991a1c2010-10-13 11:35:40 -07001336 /*
1337 * Take a first sample, leaving nPENIRQ active and vREF off; avoid
David Brownellffa458c2006-01-08 13:34:21 -08001338 * the touchscreen, in case it's not connected.
1339 */
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001340 if (ts->model == 7845)
1341 ads7845_read12_ser(&spi->dev, PWRDOWN);
1342 else
1343 (void) ads7846_read12_ser(&spi->dev,
1344 READ_12BIT_SER(vaux) | ADS_PD10_ALL_ON);
David Brownellffa458c2006-01-08 13:34:21 -08001345
David Brownell2c8dc072007-01-18 00:45:48 -05001346 err = sysfs_create_group(&spi->dev.kobj, &ads784x_attr_group);
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001347 if (err)
David Brownell2c8dc072007-01-18 00:45:48 -05001348 goto err_remove_hwmon;
Imre Deak7de90a82006-04-11 23:43:55 -04001349
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001350 err = input_register_device(input_dev);
1351 if (err)
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001352 goto err_remove_attr_group;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001353
Ranjith Lohithakshanfdba2bb2010-03-10 23:41:22 -08001354 device_init_wakeup(&spi->dev, pdata->wakeup);
1355
David Brownellffa458c2006-01-08 13:34:21 -08001356 return 0;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001357
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001358 err_remove_attr_group:
David Brownell2c8dc072007-01-18 00:45:48 -05001359 sysfs_remove_group(&spi->dev.kobj, &ads784x_attr_group);
1360 err_remove_hwmon:
1361 ads784x_hwmon_unregister(spi, ts);
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001362 err_free_irq:
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001363 free_irq(spi->irq, ts);
Grazvydas Ignotas91143372010-02-25 02:04:56 -08001364 err_disable_regulator:
1365 regulator_disable(ts->reg);
1366 err_put_regulator:
1367 regulator_put(ts->reg);
Eric Miao4d5975e2008-09-10 12:06:15 -04001368 err_free_gpio:
Dmitry Torokhov0fbc9fd2011-02-04 00:37:26 -08001369 if (!ts->get_pendown_state)
Eric Miao4d5975e2008-09-10 12:06:15 -04001370 gpio_free(ts->gpio_pendown);
Imre Deakda970e62007-01-18 00:44:41 -05001371 err_cleanup_filter:
1372 if (ts->filter_cleanup)
1373 ts->filter_cleanup(ts->filter_data);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001374 err_free_mem:
1375 input_free_device(input_dev);
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001376 kfree(packet);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001377 kfree(ts);
1378 return err;
David Brownellffa458c2006-01-08 13:34:21 -08001379}
1380
David Brownell2e5a7bd2006-01-08 13:34:25 -08001381static int __devexit ads7846_remove(struct spi_device *spi)
David Brownellffa458c2006-01-08 13:34:21 -08001382{
Jason Wang2991a1c2010-10-13 11:35:40 -07001383 struct ads7846 *ts = dev_get_drvdata(&spi->dev);
David Brownellffa458c2006-01-08 13:34:21 -08001384
Ranjith Lohithakshanfdba2bb2010-03-10 23:41:22 -08001385 device_init_wakeup(&spi->dev, false);
1386
David Brownell2c8dc072007-01-18 00:45:48 -05001387 sysfs_remove_group(&spi->dev.kobj, &ads784x_attr_group);
David Brownellffa458c2006-01-08 13:34:21 -08001388
Jason Wang2991a1c2010-10-13 11:35:40 -07001389 ads7846_disable(ts);
Imre Deak7de90a82006-04-11 23:43:55 -04001390 free_irq(ts->spi->irq, ts);
Jason Wang2991a1c2010-10-13 11:35:40 -07001391
1392 input_unregister_device(ts->input);
1393
1394 ads784x_hwmon_unregister(spi, ts);
Imre Deak7de90a82006-04-11 23:43:55 -04001395
Grazvydas Ignotas91143372010-02-25 02:04:56 -08001396 regulator_disable(ts->reg);
1397 regulator_put(ts->reg);
1398
Dmitry Torokhov0fbc9fd2011-02-04 00:37:26 -08001399 if (!ts->get_pendown_state) {
1400 /*
1401 * If we are not using specialized pendown method we must
1402 * have been relying on gpio we set up ourselves.
1403 */
Eric Miao4d5975e2008-09-10 12:06:15 -04001404 gpio_free(ts->gpio_pendown);
Dmitry Torokhov0fbc9fd2011-02-04 00:37:26 -08001405 }
Eric Miao4d5975e2008-09-10 12:06:15 -04001406
Imre Deakda970e62007-01-18 00:44:41 -05001407 if (ts->filter_cleanup)
1408 ts->filter_cleanup(ts->filter_data);
1409
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001410 kfree(ts->packet);
David Brownellffa458c2006-01-08 13:34:21 -08001411 kfree(ts);
1412
David Brownell2e5a7bd2006-01-08 13:34:25 -08001413 dev_dbg(&spi->dev, "unregistered touchscreen\n");
Jason Wang2991a1c2010-10-13 11:35:40 -07001414
David Brownellffa458c2006-01-08 13:34:21 -08001415 return 0;
1416}
1417
David Brownell2e5a7bd2006-01-08 13:34:25 -08001418static struct spi_driver ads7846_driver = {
1419 .driver = {
1420 .name = "ads7846",
1421 .bus = &spi_bus_type,
1422 .owner = THIS_MODULE,
Mark Brown3c36e712011-01-20 22:51:26 -08001423 .pm = &ads7846_pm,
David Brownell2e5a7bd2006-01-08 13:34:25 -08001424 },
David Brownellffa458c2006-01-08 13:34:21 -08001425 .probe = ads7846_probe,
David Brownell2e5a7bd2006-01-08 13:34:25 -08001426 .remove = __devexit_p(ads7846_remove),
David Brownellffa458c2006-01-08 13:34:21 -08001427};
1428
1429static int __init ads7846_init(void)
1430{
David Brownell2e5a7bd2006-01-08 13:34:25 -08001431 return spi_register_driver(&ads7846_driver);
David Brownellffa458c2006-01-08 13:34:21 -08001432}
1433module_init(ads7846_init);
1434
1435static void __exit ads7846_exit(void)
1436{
David Brownell2e5a7bd2006-01-08 13:34:25 -08001437 spi_unregister_driver(&ads7846_driver);
David Brownellffa458c2006-01-08 13:34:21 -08001438}
1439module_exit(ads7846_exit);
1440
1441MODULE_DESCRIPTION("ADS7846 TouchScreen Driver");
1442MODULE_LICENSE("GPL");
Anton Vorontsove0626e32009-09-22 16:46:08 -07001443MODULE_ALIAS("spi:ads7846");