blob: c34e59b720a68e6a976a7a25a434cff5d38493f9 [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 */
20#include <linux/device.h>
21#include <linux/init.h>
22#include <linux/delay.h>
23#include <linux/input.h>
24#include <linux/interrupt.h>
25#include <linux/slab.h>
26#include <linux/spi/spi.h>
27#include <linux/spi/ads7846.h>
Andrew Morton3ac8bf02006-03-26 01:37:33 -080028#include <asm/irq.h>
David Brownellffa458c2006-01-08 13:34:21 -080029
30#ifdef CONFIG_ARM
31#include <asm/mach-types.h>
32#ifdef CONFIG_ARCH_OMAP
33#include <asm/arch/gpio.h>
34#endif
David Brownellffa458c2006-01-08 13:34:21 -080035#endif
36
37
38/*
David Brownell90845332006-05-25 18:44:20 -070039 * This code has been heavily tested on a Nokia 770, and lightly
40 * tested on other ads7846 devices (OSK/Mistral, Lubbock).
David Brownellffa458c2006-01-08 13:34:21 -080041 * Support for ads7843 and ads7845 has only been stubbed in.
42 *
Imre Deak7de90a82006-04-11 23:43:55 -040043 * IRQ handling needs a workaround because of a shortcoming in handling
44 * edge triggered IRQs on some platforms like the OMAP1/2. These
45 * platforms don't handle the ARM lazy IRQ disabling properly, thus we
46 * have to maintain our own SW IRQ disabled status. This should be
47 * removed as soon as the affected platform's IRQ handling is fixed.
48 *
David Brownellffa458c2006-01-08 13:34:21 -080049 * app note sbaa036 talks in more detail about accurate sampling...
50 * that ought to help in situations like LCDs inducing noise (which
51 * can also be helped by using synch signals) and more generally.
Imre Deak7de90a82006-04-11 23:43:55 -040052 * This driver tries to utilize the measures described in the app
53 * note. The strength of filtering can be set in the board-* specific
54 * files.
David Brownellffa458c2006-01-08 13:34:21 -080055 */
56
57#define TS_POLL_PERIOD msecs_to_jiffies(10)
58
David Brownelld93f70b2006-02-15 00:49:35 -050059/* this driver doesn't aim at the peak continuous sample rate */
60#define SAMPLE_BITS (8 /*cmd*/ + 16 /*sample*/ + 2 /* before, after */)
61
David Brownellffa458c2006-01-08 13:34:21 -080062struct ts_event {
63 /* For portability, we can't read 12 bit values using SPI (which
64 * would make the controller deliver them as native byteorder u16
David Brownelld93f70b2006-02-15 00:49:35 -050065 * with msbs zeroed). Instead, we read them as two 8-bit values,
Imre Deakda970e62007-01-18 00:44:41 -050066 * *** WHICH NEED BYTESWAPPING *** and range adjustment.
David Brownellffa458c2006-01-08 13:34:21 -080067 */
Imre Deakda970e62007-01-18 00:44:41 -050068 u16 x;
69 u16 y;
70 u16 z1, z2;
Imre Deakd5b415c2006-04-26 00:13:18 -040071 int ignore;
David Brownellffa458c2006-01-08 13:34:21 -080072};
73
74struct ads7846 {
Dmitry Torokhova90f7e92006-02-15 00:49:22 -050075 struct input_dev *input;
David Brownellffa458c2006-01-08 13:34:21 -080076 char phys[32];
77
78 struct spi_device *spi;
Dmitry Torokhov8dd51652006-11-02 23:34:09 -050079 struct attribute_group *attr_group;
David Brownellffa458c2006-01-08 13:34:21 -080080 u16 model;
81 u16 vref_delay_usecs;
82 u16 x_plate_ohms;
Imre Deakd5b415c2006-04-26 00:13:18 -040083 u16 pressure_max;
David Brownellffa458c2006-01-08 13:34:21 -080084
Imre Deak53a0ef892006-04-11 23:41:49 -040085 u8 read_x, read_y, read_z1, read_z2, pwrdown;
86 u16 dummy; /* for the pwrdown read */
David Brownellffa458c2006-01-08 13:34:21 -080087 struct ts_event tc;
88
Imre Deak53a0ef892006-04-11 23:41:49 -040089 struct spi_transfer xfer[10];
Imre Deak0b7018a2006-04-11 23:42:03 -040090 struct spi_message msg[5];
Imre Deakd5b415c2006-04-26 00:13:18 -040091 struct spi_message *last_msg;
Imre Deak0b7018a2006-04-11 23:42:03 -040092 int msg_idx;
93 int read_cnt;
Imre Deakd5b415c2006-04-26 00:13:18 -040094 int read_rep;
Imre Deak0b7018a2006-04-11 23:42:03 -040095 int last_read;
96
97 u16 debounce_max;
98 u16 debounce_tol;
Imre Deakd5b415c2006-04-26 00:13:18 -040099 u16 debounce_rep;
David Brownellffa458c2006-01-08 13:34:21 -0800100
101 spinlock_t lock;
102 struct timer_list timer; /* P: lock */
103 unsigned pendown:1; /* P: lock */
104 unsigned pending:1; /* P: lock */
105// FIXME remove "irq_disabled"
106 unsigned irq_disabled:1; /* P: lock */
Imre Deak7de90a82006-04-11 23:43:55 -0400107 unsigned disabled:1;
Imre Deakc9e617a2006-04-11 23:44:05 -0400108
Imre Deakda970e62007-01-18 00:44:41 -0500109 int (*filter)(void *data, int data_idx, int *val);
110 void *filter_data;
111 void (*filter_cleanup)(void *data);
Imre Deakc9e617a2006-04-11 23:44:05 -0400112 int (*get_pendown_state)(void);
David Brownellffa458c2006-01-08 13:34:21 -0800113};
114
115/* leave chip selected when we're done, for quicker re-select? */
116#if 0
117#define CS_CHANGE(xfer) ((xfer).cs_change = 1)
118#else
119#define CS_CHANGE(xfer) ((xfer).cs_change = 0)
120#endif
121
122/*--------------------------------------------------------------------------*/
123
124/* The ADS7846 has touchscreen and other sensors.
125 * Earlier ads784x chips are somewhat compatible.
126 */
127#define ADS_START (1 << 7)
128#define ADS_A2A1A0_d_y (1 << 4) /* differential */
129#define ADS_A2A1A0_d_z1 (3 << 4) /* differential */
130#define ADS_A2A1A0_d_z2 (4 << 4) /* differential */
131#define ADS_A2A1A0_d_x (5 << 4) /* differential */
132#define ADS_A2A1A0_temp0 (0 << 4) /* non-differential */
133#define ADS_A2A1A0_vbatt (2 << 4) /* non-differential */
134#define ADS_A2A1A0_vaux (6 << 4) /* non-differential */
135#define ADS_A2A1A0_temp1 (7 << 4) /* non-differential */
136#define ADS_8_BIT (1 << 3)
137#define ADS_12_BIT (0 << 3)
138#define ADS_SER (1 << 2) /* non-differential */
139#define ADS_DFR (0 << 2) /* differential */
140#define ADS_PD10_PDOWN (0 << 0) /* lowpower mode + penirq */
141#define ADS_PD10_ADC_ON (1 << 0) /* ADC on */
142#define ADS_PD10_REF_ON (2 << 0) /* vREF on + penirq */
143#define ADS_PD10_ALL_ON (3 << 0) /* ADC + vREF on */
144
145#define MAX_12BIT ((1<<12)-1)
146
147/* leave ADC powered up (disables penirq) between differential samples */
Imre Deakde2defd2007-01-18 00:45:21 -0500148#define READ_12BIT_DFR(x, adc, vref) (ADS_START | ADS_A2A1A0_d_ ## x \
149 | ADS_12_BIT | ADS_DFR | \
150 (adc ? ADS_PD10_ADC_ON : 0) | (vref ? ADS_PD10_REF_ON : 0))
David Brownellffa458c2006-01-08 13:34:21 -0800151
Imre Deakde2defd2007-01-18 00:45:21 -0500152#define READ_Y(vref) (READ_12BIT_DFR(y, 1, vref))
153#define READ_Z1(vref) (READ_12BIT_DFR(z1, 1, vref))
154#define READ_Z2(vref) (READ_12BIT_DFR(z2, 1, vref))
Imre Deak53a0ef892006-04-11 23:41:49 -0400155
Imre Deakde2defd2007-01-18 00:45:21 -0500156#define READ_X(vref) (READ_12BIT_DFR(x, 1, vref))
157#define PWRDOWN (READ_12BIT_DFR(y, 0, 0)) /* LAST */
David Brownellffa458c2006-01-08 13:34:21 -0800158
159/* single-ended samples need to first power up reference voltage;
160 * we leave both ADC and VREF powered
161 */
162#define READ_12BIT_SER(x) (ADS_START | ADS_A2A1A0_ ## x \
163 | ADS_12_BIT | ADS_SER)
164
Imre Deakde2defd2007-01-18 00:45:21 -0500165#define REF_ON (READ_12BIT_DFR(x, 1, 1))
166#define REF_OFF (READ_12BIT_DFR(y, 0, 0))
David Brownellffa458c2006-01-08 13:34:21 -0800167
168/*--------------------------------------------------------------------------*/
169
170/*
171 * Non-touchscreen sensors only use single-ended conversions.
172 */
173
174struct ser_req {
David Brownelld93f70b2006-02-15 00:49:35 -0500175 u8 ref_on;
David Brownellffa458c2006-01-08 13:34:21 -0800176 u8 command;
David Brownelld93f70b2006-02-15 00:49:35 -0500177 u8 ref_off;
David Brownellffa458c2006-01-08 13:34:21 -0800178 u16 scratch;
179 __be16 sample;
180 struct spi_message msg;
181 struct spi_transfer xfer[6];
182};
183
Imre Deak7de90a82006-04-11 23:43:55 -0400184static void ads7846_enable(struct ads7846 *ts);
185static void ads7846_disable(struct ads7846 *ts);
186
Imre Deakc9e617a2006-04-11 23:44:05 -0400187static int device_suspended(struct device *dev)
188{
189 struct ads7846 *ts = dev_get_drvdata(dev);
190 return dev->power.power_state.event != PM_EVENT_ON || ts->disabled;
191}
192
David Brownellffa458c2006-01-08 13:34:21 -0800193static int ads7846_read12_ser(struct device *dev, unsigned command)
194{
195 struct spi_device *spi = to_spi_device(dev);
196 struct ads7846 *ts = dev_get_drvdata(dev);
Christoph Lametere94b1762006-12-06 20:33:17 -0800197 struct ser_req *req = kzalloc(sizeof *req, GFP_KERNEL);
David Brownellffa458c2006-01-08 13:34:21 -0800198 int status;
199 int sample;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500200 int i;
David Brownellffa458c2006-01-08 13:34:21 -0800201
202 if (!req)
203 return -ENOMEM;
204
Imre Deak0b7018a2006-04-11 23:42:03 -0400205 spi_message_init(&req->msg);
Vitaly Wool8275c642006-01-08 13:34:28 -0800206
David Brownellffa458c2006-01-08 13:34:21 -0800207 /* activate reference, so it has time to settle; */
David Brownelld93f70b2006-02-15 00:49:35 -0500208 req->ref_on = REF_ON;
209 req->xfer[0].tx_buf = &req->ref_on;
David Brownellffa458c2006-01-08 13:34:21 -0800210 req->xfer[0].len = 1;
211 req->xfer[1].rx_buf = &req->scratch;
212 req->xfer[1].len = 2;
213
214 /*
215 * for external VREF, 0 usec (and assume it's always on);
216 * for 1uF, use 800 usec;
217 * no cap, 100 usec.
218 */
219 req->xfer[1].delay_usecs = ts->vref_delay_usecs;
220
221 /* take sample */
222 req->command = (u8) command;
223 req->xfer[2].tx_buf = &req->command;
224 req->xfer[2].len = 1;
225 req->xfer[3].rx_buf = &req->sample;
226 req->xfer[3].len = 2;
227
228 /* REVISIT: take a few more samples, and compare ... */
229
230 /* turn off reference */
David Brownelld93f70b2006-02-15 00:49:35 -0500231 req->ref_off = REF_OFF;
232 req->xfer[4].tx_buf = &req->ref_off;
David Brownellffa458c2006-01-08 13:34:21 -0800233 req->xfer[4].len = 1;
234 req->xfer[5].rx_buf = &req->scratch;
235 req->xfer[5].len = 2;
236
237 CS_CHANGE(req->xfer[5]);
238
239 /* group all the transfers together, so we can't interfere with
240 * reading touchscreen state; disable penirq while sampling
241 */
Vitaly Wool8275c642006-01-08 13:34:28 -0800242 for (i = 0; i < 6; i++)
243 spi_message_add_tail(&req->xfer[i], &req->msg);
David Brownellffa458c2006-01-08 13:34:21 -0800244
Imre Deakc9e617a2006-04-11 23:44:05 -0400245 ts->irq_disabled = 1;
David Brownellffa458c2006-01-08 13:34:21 -0800246 disable_irq(spi->irq);
247 status = spi_sync(spi, &req->msg);
Imre Deakc9e617a2006-04-11 23:44:05 -0400248 ts->irq_disabled = 0;
David Brownellffa458c2006-01-08 13:34:21 -0800249 enable_irq(spi->irq);
250
251 if (req->msg.status)
252 status = req->msg.status;
David Brownellffa458c2006-01-08 13:34:21 -0800253
David Brownell90845332006-05-25 18:44:20 -0700254 /* on-wire is a must-ignore bit, a BE12 value, then padding */
255 sample = be16_to_cpu(req->sample);
256 sample = sample >> 3;
257 sample &= 0x0fff;
258
259 kfree(req);
David Brownellffa458c2006-01-08 13:34:21 -0800260 return status ? status : sample;
261}
262
263#define SHOW(name) static ssize_t \
264name ## _show(struct device *dev, struct device_attribute *attr, char *buf) \
265{ \
266 ssize_t v = ads7846_read12_ser(dev, \
267 READ_12BIT_SER(name) | ADS_PD10_ALL_ON); \
268 if (v < 0) \
269 return v; \
270 return sprintf(buf, "%u\n", (unsigned) v); \
271} \
272static DEVICE_ATTR(name, S_IRUGO, name ## _show, NULL);
273
274SHOW(temp0)
275SHOW(temp1)
276SHOW(vaux)
277SHOW(vbatt)
278
Imre Deak438f2a72006-04-11 23:41:32 -0400279static int is_pen_down(struct device *dev)
280{
281 struct ads7846 *ts = dev_get_drvdata(dev);
282
283 return ts->pendown;
284}
285
286static ssize_t ads7846_pen_down_show(struct device *dev,
287 struct device_attribute *attr, char *buf)
288{
289 return sprintf(buf, "%u\n", is_pen_down(dev));
290}
291
292static DEVICE_ATTR(pen_down, S_IRUGO, ads7846_pen_down_show, NULL);
293
Imre Deak7de90a82006-04-11 23:43:55 -0400294static ssize_t ads7846_disable_show(struct device *dev,
295 struct device_attribute *attr, char *buf)
296{
297 struct ads7846 *ts = dev_get_drvdata(dev);
298
299 return sprintf(buf, "%u\n", ts->disabled);
300}
301
302static ssize_t ads7846_disable_store(struct device *dev,
303 struct device_attribute *attr,
304 const char *buf, size_t count)
305{
306 struct ads7846 *ts = dev_get_drvdata(dev);
307 char *endp;
308 int i;
309
310 i = simple_strtoul(buf, &endp, 10);
311 spin_lock_irq(&ts->lock);
312
313 if (i)
314 ads7846_disable(ts);
315 else
316 ads7846_enable(ts);
317
318 spin_unlock_irq(&ts->lock);
319
320 return count;
321}
322
323static DEVICE_ATTR(disable, 0664, ads7846_disable_show, ads7846_disable_store);
324
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500325static struct attribute *ads7846_attributes[] = {
326 &dev_attr_temp0.attr,
327 &dev_attr_temp1.attr,
328 &dev_attr_vbatt.attr,
329 &dev_attr_vaux.attr,
330 &dev_attr_pen_down.attr,
331 &dev_attr_disable.attr,
332 NULL,
333};
334
335static struct attribute_group ads7846_attr_group = {
336 .attrs = ads7846_attributes,
337};
338
339/*
340 * ads7843/7845 don't have temperature sensors, and
341 * use the other sensors a bit differently too
342 */
343
344static struct attribute *ads7843_attributes[] = {
345 &dev_attr_vbatt.attr,
346 &dev_attr_vaux.attr,
347 &dev_attr_pen_down.attr,
348 &dev_attr_disable.attr,
349 NULL,
350};
351
352static struct attribute_group ads7843_attr_group = {
353 .attrs = ads7843_attributes,
354};
355
356static struct attribute *ads7845_attributes[] = {
357 &dev_attr_vaux.attr,
358 &dev_attr_pen_down.attr,
359 &dev_attr_disable.attr,
360 NULL,
361};
362
363static struct attribute_group ads7845_attr_group = {
364 .attrs = ads7845_attributes,
365};
366
David Brownellffa458c2006-01-08 13:34:21 -0800367/*--------------------------------------------------------------------------*/
368
369/*
370 * PENIRQ only kicks the timer. The timer only reissues the SPI transfer,
371 * to retrieve touchscreen status.
372 *
373 * The SPI transfer completion callback does the real work. It reports
374 * touchscreen events and reactivates the timer (or IRQ) as appropriate.
375 */
376
377static void ads7846_rx(void *ads)
378{
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500379 struct ads7846 *ts = ads;
380 struct input_dev *input_dev = ts->input;
381 unsigned Rt;
382 unsigned sync = 0;
383 u16 x, y, z1, z2;
384 unsigned long flags;
David Brownellffa458c2006-01-08 13:34:21 -0800385
Imre Deakda970e62007-01-18 00:44:41 -0500386 /* ads7846_rx_val() did in-place conversion (including byteswap) from
387 * on-the-wire format as part of debouncing to get stable readings.
David Brownellffa458c2006-01-08 13:34:21 -0800388 */
Imre Deakda970e62007-01-18 00:44:41 -0500389 x = ts->tc.x;
390 y = ts->tc.y;
391 z1 = ts->tc.z1;
392 z2 = ts->tc.z2;
David Brownellffa458c2006-01-08 13:34:21 -0800393
394 /* range filtering */
395 if (x == MAX_12BIT)
396 x = 0;
397
Imre Deakc9e617a2006-04-11 23:44:05 -0400398 if (likely(x && z1 && !device_suspended(&ts->spi->dev))) {
David Brownellffa458c2006-01-08 13:34:21 -0800399 /* compute touch pressure resistance using equation #2 */
400 Rt = z2;
401 Rt -= z1;
402 Rt *= x;
403 Rt *= ts->x_plate_ohms;
404 Rt /= z1;
405 Rt = (Rt + 2047) >> 12;
406 } else
407 Rt = 0;
408
Imre Deakd5b415c2006-04-26 00:13:18 -0400409 /* Sample found inconsistent by debouncing or pressure is beyond
410 * the maximum. Don't report it to user space, repeat at least
411 * once more the measurement */
412 if (ts->tc.ignore || Rt > ts->pressure_max) {
413 mod_timer(&ts->timer, jiffies + TS_POLL_PERIOD);
414 return;
415 }
416
David Brownellffa458c2006-01-08 13:34:21 -0800417 /* NOTE: "pendown" is inferred from pressure; we don't rely on
418 * being able to check nPENIRQ status, or "friendly" trigger modes
419 * (both-edges is much better than just-falling or low-level).
420 *
421 * REVISIT: some boards may require reading nPENIRQ; it's
422 * needed on 7843. and 7845 reads pressure differently...
423 *
424 * REVISIT: the touchscreen might not be connected; this code
425 * won't notice that, even if nPENIRQ never fires ...
426 */
427 if (!ts->pendown && Rt != 0) {
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500428 input_report_key(input_dev, BTN_TOUCH, 1);
David Brownellffa458c2006-01-08 13:34:21 -0800429 sync = 1;
430 } else if (ts->pendown && Rt == 0) {
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500431 input_report_key(input_dev, BTN_TOUCH, 0);
David Brownellffa458c2006-01-08 13:34:21 -0800432 sync = 1;
433 }
434
435 if (Rt) {
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500436 input_report_abs(input_dev, ABS_X, x);
437 input_report_abs(input_dev, ABS_Y, y);
David Brownellffa458c2006-01-08 13:34:21 -0800438 sync = 1;
439 }
Imre Deakae82d5a2006-04-26 00:12:14 -0400440
441 if (sync) {
442 input_report_abs(input_dev, ABS_PRESSURE, Rt);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500443 input_sync(input_dev);
Imre Deakae82d5a2006-04-26 00:12:14 -0400444 }
David Brownellffa458c2006-01-08 13:34:21 -0800445
446#ifdef VERBOSE
447 if (Rt || ts->pendown)
448 pr_debug("%s: %d/%d/%d%s\n", ts->spi->dev.bus_id,
449 x, y, Rt, Rt ? "" : " UP");
450#endif
451
David Brownellffa458c2006-01-08 13:34:21 -0800452 spin_lock_irqsave(&ts->lock, flags);
453
454 ts->pendown = (Rt != 0);
Imre Deakc9e617a2006-04-11 23:44:05 -0400455 mod_timer(&ts->timer, jiffies + TS_POLL_PERIOD);
David Brownellffa458c2006-01-08 13:34:21 -0800456
457 spin_unlock_irqrestore(&ts->lock, flags);
458}
459
Imre Deakda970e62007-01-18 00:44:41 -0500460static int ads7846_debounce(void *ads, int data_idx, int *val)
Imre Deak0b7018a2006-04-11 23:42:03 -0400461{
462 struct ads7846 *ts = ads;
Imre Deak0b7018a2006-04-11 23:42:03 -0400463
Imre Deakda970e62007-01-18 00:44:41 -0500464 if (!ts->read_cnt || (abs(ts->last_read - *val) > ts->debounce_tol)) {
465 /* Start over collecting consistent readings. */
466 ts->read_rep = 0;
Imre Deakd5b415c2006-04-26 00:13:18 -0400467 /* Repeat it, if this was the first read or the read
468 * wasn't consistent enough. */
469 if (ts->read_cnt < ts->debounce_max) {
Imre Deakda970e62007-01-18 00:44:41 -0500470 ts->last_read = *val;
Imre Deakd5b415c2006-04-26 00:13:18 -0400471 ts->read_cnt++;
Imre Deakda970e62007-01-18 00:44:41 -0500472 return ADS7846_FILTER_REPEAT;
Imre Deakd5b415c2006-04-26 00:13:18 -0400473 } else {
474 /* Maximum number of debouncing reached and still
475 * not enough number of consistent readings. Abort
476 * the whole sample, repeat it in the next sampling
477 * period.
478 */
Imre Deakd5b415c2006-04-26 00:13:18 -0400479 ts->read_cnt = 0;
Imre Deakda970e62007-01-18 00:44:41 -0500480 return ADS7846_FILTER_IGNORE;
Imre Deakd5b415c2006-04-26 00:13:18 -0400481 }
Imre Deak0b7018a2006-04-11 23:42:03 -0400482 } else {
Imre Deakd5b415c2006-04-26 00:13:18 -0400483 if (++ts->read_rep > ts->debounce_rep) {
484 /* Got a good reading for this coordinate,
485 * go for the next one. */
Imre Deakd5b415c2006-04-26 00:13:18 -0400486 ts->read_cnt = 0;
487 ts->read_rep = 0;
Imre Deakda970e62007-01-18 00:44:41 -0500488 return ADS7846_FILTER_OK;
489 } else {
Imre Deakd5b415c2006-04-26 00:13:18 -0400490 /* Read more values that are consistent. */
491 ts->read_cnt++;
Imre Deakda970e62007-01-18 00:44:41 -0500492 return ADS7846_FILTER_REPEAT;
493 }
494 }
495}
496
497static int ads7846_no_filter(void *ads, int data_idx, int *val)
498{
499 return ADS7846_FILTER_OK;
500}
501
502static void ads7846_rx_val(void *ads)
503{
504 struct ads7846 *ts = ads;
505 struct spi_message *m;
506 struct spi_transfer *t;
507 u16 *rx_val;
508 int val;
509 int action;
510 int status;
511
512 m = &ts->msg[ts->msg_idx];
513 t = list_entry(m->transfers.prev, struct spi_transfer, transfer_list);
514 rx_val = t->rx_buf;
515
516 /* adjust: on-wire is a must-ignore bit, a BE12 value, then padding;
517 * built from two 8 bit values written msb-first.
518 */
519 val = be16_to_cpu(*rx_val) >> 3;
520
521 action = ts->filter(ts->filter_data, ts->msg_idx, &val);
522 switch (action) {
523 case ADS7846_FILTER_REPEAT:
524 break;
525 case ADS7846_FILTER_IGNORE:
526 ts->tc.ignore = 1;
527 /* Last message will contain ads7846_rx() as the
528 * completion function.
529 */
530 m = ts->last_msg;
531 break;
532 case ADS7846_FILTER_OK:
533 *rx_val = val;
534 ts->tc.ignore = 0;
535 m = &ts->msg[++ts->msg_idx];
536 break;
537 default:
538 BUG();
Imre Deak0b7018a2006-04-11 23:42:03 -0400539 }
540 status = spi_async(ts->spi, m);
541 if (status)
542 dev_err(&ts->spi->dev, "spi_async --> %d\n",
543 status);
544}
545
David Brownellffa458c2006-01-08 13:34:21 -0800546static void ads7846_timer(unsigned long handle)
547{
548 struct ads7846 *ts = (void *)handle;
549 int status = 0;
David Brownellffa458c2006-01-08 13:34:21 -0800550
Imre Deakc9e617a2006-04-11 23:44:05 -0400551 spin_lock_irq(&ts->lock);
552
553 if (unlikely(ts->msg_idx && !ts->pendown)) {
David Brownell90845332006-05-25 18:44:20 -0700554 /* measurement cycle ended */
Imre Deakc9e617a2006-04-11 23:44:05 -0400555 if (!device_suspended(&ts->spi->dev)) {
556 ts->irq_disabled = 0;
557 enable_irq(ts->spi->irq);
558 }
559 ts->pending = 0;
560 ts->msg_idx = 0;
561 } else {
562 /* pen is still down, continue with the measurement */
563 ts->msg_idx = 0;
564 status = spi_async(ts->spi, &ts->msg[0]);
565 if (status)
566 dev_err(&ts->spi->dev, "spi_async --> %d\n", status);
567 }
568
569 spin_unlock_irq(&ts->lock);
David Brownellffa458c2006-01-08 13:34:21 -0800570}
571
David Howells7d12e782006-10-05 14:55:46 +0100572static irqreturn_t ads7846_irq(int irq, void *handle)
David Brownellffa458c2006-01-08 13:34:21 -0800573{
Imre Deak0b7018a2006-04-11 23:42:03 -0400574 struct ads7846 *ts = handle;
575 unsigned long flags;
Imre Deak0b7018a2006-04-11 23:42:03 -0400576
577 spin_lock_irqsave(&ts->lock, flags);
Imre Deakc9e617a2006-04-11 23:44:05 -0400578 if (likely(ts->get_pendown_state())) {
Imre Deak0b7018a2006-04-11 23:42:03 -0400579 if (!ts->irq_disabled) {
David Brownell90845332006-05-25 18:44:20 -0700580 /* The ARM do_simple_IRQ() dispatcher doesn't act
581 * like the other dispatchers: it will report IRQs
582 * even after they've been disabled. We work around
583 * that here. (The "generic irq" framework may help...)
Imre Deak0b7018a2006-04-11 23:42:03 -0400584 */
585 ts->irq_disabled = 1;
Imre Deak0b7018a2006-04-11 23:42:03 -0400586 disable_irq(ts->spi->irq);
Imre Deak0b7018a2006-04-11 23:42:03 -0400587 ts->pending = 1;
588 mod_timer(&ts->timer, jiffies);
589 }
590 }
591 spin_unlock_irqrestore(&ts->lock, flags);
Imre Deak7de90a82006-04-11 23:43:55 -0400592
593 return IRQ_HANDLED;
David Brownellffa458c2006-01-08 13:34:21 -0800594}
595
596/*--------------------------------------------------------------------------*/
597
Imre Deak7de90a82006-04-11 23:43:55 -0400598/* Must be called with ts->lock held */
599static void ads7846_disable(struct ads7846 *ts)
David Brownellffa458c2006-01-08 13:34:21 -0800600{
Imre Deak7de90a82006-04-11 23:43:55 -0400601 if (ts->disabled)
602 return;
David Brownellffa458c2006-01-08 13:34:21 -0800603
Imre Deakc9e617a2006-04-11 23:44:05 -0400604 ts->disabled = 1;
David Brownellffa458c2006-01-08 13:34:21 -0800605
Imre Deakc9e617a2006-04-11 23:44:05 -0400606 /* are we waiting for IRQ, or polling? */
607 if (!ts->pending) {
608 ts->irq_disabled = 1;
609 disable_irq(ts->spi->irq);
610 } else {
611 /* the timer will run at least once more, and
612 * leave everything in a clean state, IRQ disabled
613 */
614 while (ts->pending) {
Imre Deak7de90a82006-04-11 23:43:55 -0400615 spin_unlock_irq(&ts->lock);
Juha Yrjolac4febb92006-04-11 23:42:25 -0400616 msleep(1);
Imre Deak7de90a82006-04-11 23:43:55 -0400617 spin_lock_irq(&ts->lock);
David Brownellffa458c2006-01-08 13:34:21 -0800618 }
619 }
620
621 /* we know the chip's in lowpower mode since we always
622 * leave it that way after every request
623 */
624
Imre Deak7de90a82006-04-11 23:43:55 -0400625}
626
627/* Must be called with ts->lock held */
628static void ads7846_enable(struct ads7846 *ts)
629{
630 if (!ts->disabled)
631 return;
632
633 ts->disabled = 0;
634 ts->irq_disabled = 0;
635 enable_irq(ts->spi->irq);
636}
637
638static int ads7846_suspend(struct spi_device *spi, pm_message_t message)
639{
640 struct ads7846 *ts = dev_get_drvdata(&spi->dev);
641
642 spin_lock_irq(&ts->lock);
643
644 spi->dev.power.power_state = message;
645 ads7846_disable(ts);
646
647 spin_unlock_irq(&ts->lock);
648
David Brownellffa458c2006-01-08 13:34:21 -0800649 return 0;
Imre Deak7de90a82006-04-11 23:43:55 -0400650
David Brownellffa458c2006-01-08 13:34:21 -0800651}
652
David Brownell2e5a7bd2006-01-08 13:34:25 -0800653static int ads7846_resume(struct spi_device *spi)
David Brownellffa458c2006-01-08 13:34:21 -0800654{
David Brownell2e5a7bd2006-01-08 13:34:25 -0800655 struct ads7846 *ts = dev_get_drvdata(&spi->dev);
David Brownellffa458c2006-01-08 13:34:21 -0800656
Imre Deak7de90a82006-04-11 23:43:55 -0400657 spin_lock_irq(&ts->lock);
658
David Brownell2e5a7bd2006-01-08 13:34:25 -0800659 spi->dev.power.power_state = PMSG_ON;
Imre Deak7de90a82006-04-11 23:43:55 -0400660 ads7846_enable(ts);
661
662 spin_unlock_irq(&ts->lock);
663
David Brownellffa458c2006-01-08 13:34:21 -0800664 return 0;
665}
666
David Brownell2e5a7bd2006-01-08 13:34:25 -0800667static int __devinit ads7846_probe(struct spi_device *spi)
David Brownellffa458c2006-01-08 13:34:21 -0800668{
David Brownellffa458c2006-01-08 13:34:21 -0800669 struct ads7846 *ts;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500670 struct input_dev *input_dev;
David Brownell2e5a7bd2006-01-08 13:34:25 -0800671 struct ads7846_platform_data *pdata = spi->dev.platform_data;
Imre Deak0b7018a2006-04-11 23:42:03 -0400672 struct spi_message *m;
David Brownellffa458c2006-01-08 13:34:21 -0800673 struct spi_transfer *x;
Imre Deakde2defd2007-01-18 00:45:21 -0500674 int vref;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500675 int err;
David Brownellffa458c2006-01-08 13:34:21 -0800676
677 if (!spi->irq) {
David Brownell2e5a7bd2006-01-08 13:34:25 -0800678 dev_dbg(&spi->dev, "no IRQ?\n");
David Brownellffa458c2006-01-08 13:34:21 -0800679 return -ENODEV;
680 }
681
682 if (!pdata) {
David Brownell2e5a7bd2006-01-08 13:34:25 -0800683 dev_dbg(&spi->dev, "no platform data?\n");
David Brownellffa458c2006-01-08 13:34:21 -0800684 return -ENODEV;
685 }
686
687 /* don't exceed max specified sample rate */
David Brownelld93f70b2006-02-15 00:49:35 -0500688 if (spi->max_speed_hz > (125000 * SAMPLE_BITS)) {
David Brownell2e5a7bd2006-01-08 13:34:25 -0800689 dev_dbg(&spi->dev, "f(sample) %d KHz?\n",
David Brownelld93f70b2006-02-15 00:49:35 -0500690 (spi->max_speed_hz/SAMPLE_BITS)/1000);
David Brownellffa458c2006-01-08 13:34:21 -0800691 return -EINVAL;
692 }
693
David Brownell90845332006-05-25 18:44:20 -0700694 /* REVISIT when the irq can be triggered active-low, or if for some
695 * reason the touchscreen isn't hooked up, we don't need to access
696 * the pendown state.
697 */
Imre Deakc9e617a2006-04-11 23:44:05 -0400698 if (pdata->get_pendown_state == NULL) {
699 dev_dbg(&spi->dev, "no get_pendown_state function?\n");
700 return -EINVAL;
701 }
702
David Brownell90845332006-05-25 18:44:20 -0700703 /* We'd set TX wordsize 8 bits and RX wordsize to 13 bits ... except
704 * that even if the hardware can do that, the SPI controller driver
705 * may not. So we stick to very-portable 8 bit words, both RX and TX.
David Brownellffa458c2006-01-08 13:34:21 -0800706 */
David Brownell90845332006-05-25 18:44:20 -0700707 spi->bits_per_word = 8;
David Brownellffa458c2006-01-08 13:34:21 -0800708
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500709 ts = kzalloc(sizeof(struct ads7846), GFP_KERNEL);
710 input_dev = input_allocate_device();
711 if (!ts || !input_dev) {
712 err = -ENOMEM;
713 goto err_free_mem;
714 }
David Brownellffa458c2006-01-08 13:34:21 -0800715
David Brownell2e5a7bd2006-01-08 13:34:25 -0800716 dev_set_drvdata(&spi->dev, ts);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500717 spi->dev.power.power_state = PMSG_ON;
David Brownellffa458c2006-01-08 13:34:21 -0800718
719 ts->spi = spi;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500720 ts->input = input_dev;
David Brownellffa458c2006-01-08 13:34:21 -0800721
722 init_timer(&ts->timer);
723 ts->timer.data = (unsigned long) ts;
724 ts->timer.function = ads7846_timer;
725
Imre Deak7de90a82006-04-11 23:43:55 -0400726 spin_lock_init(&ts->lock);
727
David Brownellffa458c2006-01-08 13:34:21 -0800728 ts->model = pdata->model ? : 7846;
729 ts->vref_delay_usecs = pdata->vref_delay_usecs ? : 100;
730 ts->x_plate_ohms = pdata->x_plate_ohms ? : 400;
Imre Deakd5b415c2006-04-26 00:13:18 -0400731 ts->pressure_max = pdata->pressure_max ? : ~0;
Imre Deakda970e62007-01-18 00:44:41 -0500732
733 if (pdata->filter != NULL) {
734 if (pdata->filter_init != NULL) {
735 err = pdata->filter_init(pdata, &ts->filter_data);
736 if (err < 0)
737 goto err_free_mem;
738 }
739 ts->filter = pdata->filter;
740 ts->filter_cleanup = pdata->filter_cleanup;
741 } else if (pdata->debounce_max) {
Imre Deakd5b415c2006-04-26 00:13:18 -0400742 ts->debounce_max = pdata->debounce_max;
Imre Deakda970e62007-01-18 00:44:41 -0500743 if (ts->debounce_max < 2)
744 ts->debounce_max = 2;
Imre Deakd5b415c2006-04-26 00:13:18 -0400745 ts->debounce_tol = pdata->debounce_tol;
746 ts->debounce_rep = pdata->debounce_rep;
Imre Deakda970e62007-01-18 00:44:41 -0500747 ts->filter = ads7846_debounce;
748 ts->filter_data = ts;
Imre Deakd5b415c2006-04-26 00:13:18 -0400749 } else
Imre Deakda970e62007-01-18 00:44:41 -0500750 ts->filter = ads7846_no_filter;
Imre Deakc9e617a2006-04-11 23:44:05 -0400751 ts->get_pendown_state = pdata->get_pendown_state;
David Brownellffa458c2006-01-08 13:34:21 -0800752
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500753 snprintf(ts->phys, sizeof(ts->phys), "%s/input0", spi->dev.bus_id);
David Brownellffa458c2006-01-08 13:34:21 -0800754
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500755 input_dev->name = "ADS784x Touchscreen";
756 input_dev->phys = ts->phys;
757 input_dev->cdev.dev = &spi->dev;
David Brownellffa458c2006-01-08 13:34:21 -0800758
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500759 input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
760 input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
761 input_set_abs_params(input_dev, ABS_X,
David Brownellffa458c2006-01-08 13:34:21 -0800762 pdata->x_min ? : 0,
763 pdata->x_max ? : MAX_12BIT,
764 0, 0);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500765 input_set_abs_params(input_dev, ABS_Y,
David Brownellffa458c2006-01-08 13:34:21 -0800766 pdata->y_min ? : 0,
767 pdata->y_max ? : MAX_12BIT,
768 0, 0);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500769 input_set_abs_params(input_dev, ABS_PRESSURE,
David Brownellffa458c2006-01-08 13:34:21 -0800770 pdata->pressure_min, pdata->pressure_max, 0, 0);
771
Imre Deakde2defd2007-01-18 00:45:21 -0500772 vref = pdata->keep_vref_on;
773
David Brownellffa458c2006-01-08 13:34:21 -0800774 /* set up the transfers to read touchscreen state; this assumes we
775 * use formula #2 for pressure, not #3.
776 */
Imre Deak0b7018a2006-04-11 23:42:03 -0400777 m = &ts->msg[0];
David Brownellffa458c2006-01-08 13:34:21 -0800778 x = ts->xfer;
779
Imre Deak0b7018a2006-04-11 23:42:03 -0400780 spi_message_init(m);
781
David Brownellffa458c2006-01-08 13:34:21 -0800782 /* y- still on; turn on only y+ (and ADC) */
Imre Deakde2defd2007-01-18 00:45:21 -0500783 ts->read_y = READ_Y(vref);
David Brownelld93f70b2006-02-15 00:49:35 -0500784 x->tx_buf = &ts->read_y;
David Brownellffa458c2006-01-08 13:34:21 -0800785 x->len = 1;
Imre Deak0b7018a2006-04-11 23:42:03 -0400786 spi_message_add_tail(x, m);
David Brownelld93f70b2006-02-15 00:49:35 -0500787
David Brownellffa458c2006-01-08 13:34:21 -0800788 x++;
789 x->rx_buf = &ts->tc.y;
790 x->len = 2;
Imre Deak0b7018a2006-04-11 23:42:03 -0400791 spi_message_add_tail(x, m);
David Brownellffa458c2006-01-08 13:34:21 -0800792
Imre Deakda970e62007-01-18 00:44:41 -0500793 m->complete = ads7846_rx_val;
Imre Deak0b7018a2006-04-11 23:42:03 -0400794 m->context = ts;
David Brownelld93f70b2006-02-15 00:49:35 -0500795
Imre Deak0b7018a2006-04-11 23:42:03 -0400796 m++;
797 spi_message_init(m);
David Brownellffa458c2006-01-08 13:34:21 -0800798
799 /* turn y- off, x+ on, then leave in lowpower */
David Brownelld93f70b2006-02-15 00:49:35 -0500800 x++;
Imre Deakde2defd2007-01-18 00:45:21 -0500801 ts->read_x = READ_X(vref);
David Brownelld93f70b2006-02-15 00:49:35 -0500802 x->tx_buf = &ts->read_x;
David Brownellffa458c2006-01-08 13:34:21 -0800803 x->len = 1;
Imre Deak0b7018a2006-04-11 23:42:03 -0400804 spi_message_add_tail(x, m);
David Brownelld93f70b2006-02-15 00:49:35 -0500805
David Brownellffa458c2006-01-08 13:34:21 -0800806 x++;
807 x->rx_buf = &ts->tc.x;
808 x->len = 2;
Imre Deak0b7018a2006-04-11 23:42:03 -0400809 spi_message_add_tail(x, m);
810
Imre Deakda970e62007-01-18 00:44:41 -0500811 m->complete = ads7846_rx_val;
Imre Deak0b7018a2006-04-11 23:42:03 -0400812 m->context = ts;
813
814 /* turn y+ off, x- on; we'll use formula #2 */
815 if (ts->model == 7846) {
816 m++;
817 spi_message_init(m);
818
819 x++;
Imre Deakde2defd2007-01-18 00:45:21 -0500820 ts->read_z1 = READ_Z1(vref);
Imre Deak0b7018a2006-04-11 23:42:03 -0400821 x->tx_buf = &ts->read_z1;
822 x->len = 1;
823 spi_message_add_tail(x, m);
824
825 x++;
826 x->rx_buf = &ts->tc.z1;
827 x->len = 2;
828 spi_message_add_tail(x, m);
829
Imre Deakda970e62007-01-18 00:44:41 -0500830 m->complete = ads7846_rx_val;
Imre Deak0b7018a2006-04-11 23:42:03 -0400831 m->context = ts;
832
833 m++;
834 spi_message_init(m);
835
836 x++;
Imre Deakde2defd2007-01-18 00:45:21 -0500837 ts->read_z2 = READ_Z2(vref);
Imre Deak0b7018a2006-04-11 23:42:03 -0400838 x->tx_buf = &ts->read_z2;
839 x->len = 1;
840 spi_message_add_tail(x, m);
841
842 x++;
843 x->rx_buf = &ts->tc.z2;
844 x->len = 2;
845 spi_message_add_tail(x, m);
846
Imre Deakda970e62007-01-18 00:44:41 -0500847 m->complete = ads7846_rx_val;
Imre Deak0b7018a2006-04-11 23:42:03 -0400848 m->context = ts;
849 }
Imre Deak53a0ef892006-04-11 23:41:49 -0400850
851 /* power down */
Imre Deak0b7018a2006-04-11 23:42:03 -0400852 m++;
853 spi_message_init(m);
854
Imre Deak53a0ef892006-04-11 23:41:49 -0400855 x++;
856 ts->pwrdown = PWRDOWN;
857 x->tx_buf = &ts->pwrdown;
858 x->len = 1;
Imre Deak0b7018a2006-04-11 23:42:03 -0400859 spi_message_add_tail(x, m);
Imre Deak53a0ef892006-04-11 23:41:49 -0400860
861 x++;
862 x->rx_buf = &ts->dummy;
863 x->len = 2;
David Brownelld93f70b2006-02-15 00:49:35 -0500864 CS_CHANGE(*x);
Imre Deak0b7018a2006-04-11 23:42:03 -0400865 spi_message_add_tail(x, m);
David Brownellffa458c2006-01-08 13:34:21 -0800866
Imre Deak0b7018a2006-04-11 23:42:03 -0400867 m->complete = ads7846_rx;
868 m->context = ts;
David Brownellffa458c2006-01-08 13:34:21 -0800869
Imre Deakd5b415c2006-04-26 00:13:18 -0400870 ts->last_msg = m;
871
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700872 if (request_irq(spi->irq, ads7846_irq, IRQF_TRIGGER_FALLING,
David Brownell90845332006-05-25 18:44:20 -0700873 spi->dev.driver->name, ts)) {
David Brownell2e5a7bd2006-01-08 13:34:25 -0800874 dev_dbg(&spi->dev, "irq %d busy?\n", spi->irq);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500875 err = -EBUSY;
Imre Deakda970e62007-01-18 00:44:41 -0500876 goto err_cleanup_filter;
David Brownellffa458c2006-01-08 13:34:21 -0800877 }
David Brownellffa458c2006-01-08 13:34:21 -0800878
David Brownell2e5a7bd2006-01-08 13:34:25 -0800879 dev_info(&spi->dev, "touchscreen, irq %d\n", spi->irq);
David Brownellffa458c2006-01-08 13:34:21 -0800880
881 /* take a first sample, leaving nPENIRQ active; avoid
882 * the touchscreen, in case it's not connected.
883 */
David Brownell2e5a7bd2006-01-08 13:34:25 -0800884 (void) ads7846_read12_ser(&spi->dev,
David Brownellffa458c2006-01-08 13:34:21 -0800885 READ_12BIT_SER(vaux) | ADS_PD10_ALL_ON);
886
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500887 switch (ts->model) {
888 case 7846:
889 ts->attr_group = &ads7846_attr_group;
890 break;
891 case 7845:
892 ts->attr_group = &ads7845_attr_group;
893 break;
894 default:
895 ts->attr_group = &ads7843_attr_group;
896 break;
David Brownellffa458c2006-01-08 13:34:21 -0800897 }
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500898 err = sysfs_create_group(&spi->dev.kobj, ts->attr_group);
899 if (err)
900 goto err_free_irq;
Imre Deak7de90a82006-04-11 23:43:55 -0400901
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500902 err = input_register_device(input_dev);
903 if (err)
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500904 goto err_remove_attr_group;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500905
David Brownellffa458c2006-01-08 13:34:21 -0800906 return 0;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500907
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500908 err_remove_attr_group:
909 sysfs_remove_group(&spi->dev.kobj, ts->attr_group);
910 err_free_irq:
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500911 free_irq(spi->irq, ts);
Imre Deakda970e62007-01-18 00:44:41 -0500912 err_cleanup_filter:
913 if (ts->filter_cleanup)
914 ts->filter_cleanup(ts->filter_data);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500915 err_free_mem:
916 input_free_device(input_dev);
917 kfree(ts);
918 return err;
David Brownellffa458c2006-01-08 13:34:21 -0800919}
920
David Brownell2e5a7bd2006-01-08 13:34:25 -0800921static int __devexit ads7846_remove(struct spi_device *spi)
David Brownellffa458c2006-01-08 13:34:21 -0800922{
David Brownell2e5a7bd2006-01-08 13:34:25 -0800923 struct ads7846 *ts = dev_get_drvdata(&spi->dev);
David Brownellffa458c2006-01-08 13:34:21 -0800924
Imre Deak7de90a82006-04-11 23:43:55 -0400925 input_unregister_device(ts->input);
926
David Brownell2e5a7bd2006-01-08 13:34:25 -0800927 ads7846_suspend(spi, PMSG_SUSPEND);
David Brownellffa458c2006-01-08 13:34:21 -0800928
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500929 sysfs_remove_group(&spi->dev.kobj, ts->attr_group);
David Brownellffa458c2006-01-08 13:34:21 -0800930
Imre Deak7de90a82006-04-11 23:43:55 -0400931 free_irq(ts->spi->irq, ts);
Imre Deakc9e617a2006-04-11 23:44:05 -0400932 /* suspend left the IRQ disabled */
933 enable_irq(ts->spi->irq);
Imre Deak7de90a82006-04-11 23:43:55 -0400934
Imre Deakda970e62007-01-18 00:44:41 -0500935 if (ts->filter_cleanup)
936 ts->filter_cleanup(ts->filter_data);
937
David Brownellffa458c2006-01-08 13:34:21 -0800938 kfree(ts);
939
David Brownell2e5a7bd2006-01-08 13:34:25 -0800940 dev_dbg(&spi->dev, "unregistered touchscreen\n");
David Brownellffa458c2006-01-08 13:34:21 -0800941 return 0;
942}
943
David Brownell2e5a7bd2006-01-08 13:34:25 -0800944static struct spi_driver ads7846_driver = {
945 .driver = {
946 .name = "ads7846",
947 .bus = &spi_bus_type,
948 .owner = THIS_MODULE,
949 },
David Brownellffa458c2006-01-08 13:34:21 -0800950 .probe = ads7846_probe,
David Brownell2e5a7bd2006-01-08 13:34:25 -0800951 .remove = __devexit_p(ads7846_remove),
David Brownellffa458c2006-01-08 13:34:21 -0800952 .suspend = ads7846_suspend,
953 .resume = ads7846_resume,
954};
955
956static int __init ads7846_init(void)
957{
958 /* grr, board-specific init should stay out of drivers!! */
959
960#ifdef CONFIG_ARCH_OMAP
961 if (machine_is_omap_osk()) {
962 /* GPIO4 = PENIRQ; GPIO6 = BUSY */
963 omap_request_gpio(4);
964 omap_set_gpio_direction(4, 1);
965 omap_request_gpio(6);
966 omap_set_gpio_direction(6, 1);
967 }
968 // also TI 1510 Innovator, bitbanging through FPGA
969 // also Nokia 770
970 // also Palm Tungsten T2
971#endif
972
973 // PXA:
974 // also Dell Axim X50
975 // also HP iPaq H191x/H192x/H415x/H435x
David Brownell2e5a7bd2006-01-08 13:34:25 -0800976 // also Intel Lubbock (additional to UCB1400; as temperature sensor)
David Brownellffa458c2006-01-08 13:34:21 -0800977 // also Sharp Zaurus C7xx, C8xx (corgi/sheperd/husky)
978
David Brownell2e5a7bd2006-01-08 13:34:25 -0800979 // Atmel at91sam9261-EK uses ads7843
980
David Brownellffa458c2006-01-08 13:34:21 -0800981 // also various AMD Au1x00 devel boards
982
David Brownell2e5a7bd2006-01-08 13:34:25 -0800983 return spi_register_driver(&ads7846_driver);
David Brownellffa458c2006-01-08 13:34:21 -0800984}
985module_init(ads7846_init);
986
987static void __exit ads7846_exit(void)
988{
David Brownell2e5a7bd2006-01-08 13:34:25 -0800989 spi_unregister_driver(&ads7846_driver);
David Brownellffa458c2006-01-08 13:34:21 -0800990
991#ifdef CONFIG_ARCH_OMAP
992 if (machine_is_omap_osk()) {
993 omap_free_gpio(4);
994 omap_free_gpio(6);
995 }
996#endif
997
998}
999module_exit(ads7846_exit);
1000
1001MODULE_DESCRIPTION("ADS7846 TouchScreen Driver");
1002MODULE_LICENSE("GPL");