blob: ba9d38c3f412a7a1526f028f5cf2a2c8863f1ed8 [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 */
David Brownell2c8dc072007-01-18 00:45:48 -050020#include <linux/hwmon.h>
David Brownellffa458c2006-01-08 13:34:21 -080021#include <linux/init.h>
David Brownell2c8dc072007-01-18 00:45:48 -050022#include <linux/err.h>
David Brownellffa458c2006-01-08 13:34:21 -080023#include <linux/delay.h>
24#include <linux/input.h>
25#include <linux/interrupt.h>
26#include <linux/slab.h>
Eric Miao4d5975e2008-09-10 12:06:15 -040027#include <linux/gpio.h>
David Brownellffa458c2006-01-08 13:34:21 -080028#include <linux/spi/spi.h>
29#include <linux/spi/ads7846.h>
Andrew Morton3ac8bf02006-03-26 01:37:33 -080030#include <asm/irq.h>
David Brownellffa458c2006-01-08 13:34:21 -080031
David Brownellffa458c2006-01-08 13:34:21 -080032
33/*
David Brownell90845332006-05-25 18:44:20 -070034 * This code has been heavily tested on a Nokia 770, and lightly
35 * tested on other ads7846 devices (OSK/Mistral, Lubbock).
David Brownellbff0de52007-05-22 23:28:40 -040036 * TSC2046 is just newer ads7846 silicon.
Nicolas Ferre969111e2007-02-28 23:51:03 -050037 * Support for ads7843 tested on Atmel at91sam926x-EK.
38 * Support for ads7845 has only been stubbed in.
David Brownellffa458c2006-01-08 13:34:21 -080039 *
Imre Deak7de90a82006-04-11 23:43:55 -040040 * IRQ handling needs a workaround because of a shortcoming in handling
41 * edge triggered IRQs on some platforms like the OMAP1/2. These
42 * platforms don't handle the ARM lazy IRQ disabling properly, thus we
43 * have to maintain our own SW IRQ disabled status. This should be
44 * removed as soon as the affected platform's IRQ handling is fixed.
45 *
David Brownellffa458c2006-01-08 13:34:21 -080046 * app note sbaa036 talks in more detail about accurate sampling...
47 * that ought to help in situations like LCDs inducing noise (which
48 * can also be helped by using synch signals) and more generally.
Imre Deak7de90a82006-04-11 23:43:55 -040049 * This driver tries to utilize the measures described in the app
50 * note. The strength of filtering can be set in the board-* specific
51 * files.
David Brownellffa458c2006-01-08 13:34:21 -080052 */
53
Imre Deak1936d592007-01-18 00:45:31 -050054#define TS_POLL_DELAY (1 * 1000000) /* ns delay before the first sample */
55#define TS_POLL_PERIOD (5 * 1000000) /* ns delay between samples */
David Brownellffa458c2006-01-08 13:34:21 -080056
David Brownelld93f70b2006-02-15 00:49:35 -050057/* this driver doesn't aim at the peak continuous sample rate */
58#define SAMPLE_BITS (8 /*cmd*/ + 16 /*sample*/ + 2 /* before, after */)
59
David Brownellffa458c2006-01-08 13:34:21 -080060struct ts_event {
61 /* For portability, we can't read 12 bit values using SPI (which
62 * would make the controller deliver them as native byteorder u16
David Brownelld93f70b2006-02-15 00:49:35 -050063 * with msbs zeroed). Instead, we read them as two 8-bit values,
Imre Deakda970e62007-01-18 00:44:41 -050064 * *** WHICH NEED BYTESWAPPING *** and range adjustment.
David Brownellffa458c2006-01-08 13:34:21 -080065 */
Imre Deakda970e62007-01-18 00:44:41 -050066 u16 x;
67 u16 y;
68 u16 z1, z2;
David Brownell2c8dc072007-01-18 00:45:48 -050069 int ignore;
David Brownellffa458c2006-01-08 13:34:21 -080070};
71
Dmitry Torokhove8f462d2008-10-09 00:52:23 -040072/*
73 * We allocate this separately to avoid cache line sharing issues when
74 * driver is used with DMA-based SPI controllers (like atmel_spi) on
75 * systems where main memory is not DMA-coherent (most non-x86 boards).
76 */
77struct ads7846_packet {
78 u8 read_x, read_y, read_z1, read_z2, pwrdown;
79 u16 dummy; /* for the pwrdown read */
80 struct ts_event tc;
81};
82
David Brownellffa458c2006-01-08 13:34:21 -080083struct ads7846 {
Dmitry Torokhova90f7e92006-02-15 00:49:22 -050084 struct input_dev *input;
David Brownellffa458c2006-01-08 13:34:21 -080085 char phys[32];
Michael Rothb58895f2009-05-18 16:05:12 -070086 char name[32];
David Brownellffa458c2006-01-08 13:34:21 -080087
88 struct spi_device *spi;
David Brownell2c8dc072007-01-18 00:45:48 -050089
90#if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE)
Dmitry Torokhov8dd51652006-11-02 23:34:09 -050091 struct attribute_group *attr_group;
Tony Jones1beeffe2007-08-20 13:46:20 -070092 struct device *hwmon;
David Brownell2c8dc072007-01-18 00:45:48 -050093#endif
94
David Brownellffa458c2006-01-08 13:34:21 -080095 u16 model;
David Brownell7c6d0ee2008-04-02 00:43:01 -040096 u16 vref_mv;
David Brownellffa458c2006-01-08 13:34:21 -080097 u16 vref_delay_usecs;
98 u16 x_plate_ohms;
Imre Deakd5b415c2006-04-26 00:13:18 -040099 u16 pressure_max;
David Brownellffa458c2006-01-08 13:34:21 -0800100
Michael Roth86579a42009-05-18 16:04:44 -0700101 bool swap_xy;
102
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400103 struct ads7846_packet *packet;
David Brownellffa458c2006-01-08 13:34:21 -0800104
Semih Hazare4f48862007-07-18 00:35:56 -0400105 struct spi_transfer xfer[18];
Imre Deak0b7018a2006-04-11 23:42:03 -0400106 struct spi_message msg[5];
Imre Deakd5b415c2006-04-26 00:13:18 -0400107 struct spi_message *last_msg;
Imre Deak0b7018a2006-04-11 23:42:03 -0400108 int msg_idx;
109 int read_cnt;
Imre Deakd5b415c2006-04-26 00:13:18 -0400110 int read_rep;
Imre Deak0b7018a2006-04-11 23:42:03 -0400111 int last_read;
112
113 u16 debounce_max;
114 u16 debounce_tol;
Imre Deakd5b415c2006-04-26 00:13:18 -0400115 u16 debounce_rep;
David Brownellffa458c2006-01-08 13:34:21 -0800116
Semih Hazar1d258912007-07-18 00:36:04 -0400117 u16 penirq_recheck_delay_usecs;
118
David Brownellffa458c2006-01-08 13:34:21 -0800119 spinlock_t lock;
Imre Deak1936d592007-01-18 00:45:31 -0500120 struct hrtimer timer;
David Brownellffa458c2006-01-08 13:34:21 -0800121 unsigned pendown:1; /* P: lock */
122 unsigned pending:1; /* P: lock */
123// FIXME remove "irq_disabled"
124 unsigned irq_disabled:1; /* P: lock */
Imre Deak7de90a82006-04-11 23:43:55 -0400125 unsigned disabled:1;
David Brownellfbb38e32007-12-14 01:26:33 -0500126 unsigned is_suspended:1;
Imre Deakc9e617a2006-04-11 23:44:05 -0400127
Imre Deakda970e62007-01-18 00:44:41 -0500128 int (*filter)(void *data, int data_idx, int *val);
129 void *filter_data;
130 void (*filter_cleanup)(void *data);
Imre Deakc9e617a2006-04-11 23:44:05 -0400131 int (*get_pendown_state)(void);
Eric Miao4d5975e2008-09-10 12:06:15 -0400132 int gpio_pendown;
Eric Miaofd746d52009-04-11 16:54:59 -0700133
134 void (*wait_for_sync)(void);
David Brownellffa458c2006-01-08 13:34:21 -0800135};
136
137/* leave chip selected when we're done, for quicker re-select? */
138#if 0
139#define CS_CHANGE(xfer) ((xfer).cs_change = 1)
140#else
141#define CS_CHANGE(xfer) ((xfer).cs_change = 0)
142#endif
143
144/*--------------------------------------------------------------------------*/
145
146/* The ADS7846 has touchscreen and other sensors.
147 * Earlier ads784x chips are somewhat compatible.
148 */
149#define ADS_START (1 << 7)
150#define ADS_A2A1A0_d_y (1 << 4) /* differential */
151#define ADS_A2A1A0_d_z1 (3 << 4) /* differential */
152#define ADS_A2A1A0_d_z2 (4 << 4) /* differential */
153#define ADS_A2A1A0_d_x (5 << 4) /* differential */
154#define ADS_A2A1A0_temp0 (0 << 4) /* non-differential */
155#define ADS_A2A1A0_vbatt (2 << 4) /* non-differential */
156#define ADS_A2A1A0_vaux (6 << 4) /* non-differential */
157#define ADS_A2A1A0_temp1 (7 << 4) /* non-differential */
158#define ADS_8_BIT (1 << 3)
159#define ADS_12_BIT (0 << 3)
160#define ADS_SER (1 << 2) /* non-differential */
161#define ADS_DFR (0 << 2) /* differential */
162#define ADS_PD10_PDOWN (0 << 0) /* lowpower mode + penirq */
163#define ADS_PD10_ADC_ON (1 << 0) /* ADC on */
164#define ADS_PD10_REF_ON (2 << 0) /* vREF on + penirq */
165#define ADS_PD10_ALL_ON (3 << 0) /* ADC + vREF on */
166
167#define MAX_12BIT ((1<<12)-1)
168
169/* leave ADC powered up (disables penirq) between differential samples */
Imre Deakde2defd2007-01-18 00:45:21 -0500170#define READ_12BIT_DFR(x, adc, vref) (ADS_START | ADS_A2A1A0_d_ ## x \
171 | ADS_12_BIT | ADS_DFR | \
172 (adc ? ADS_PD10_ADC_ON : 0) | (vref ? ADS_PD10_REF_ON : 0))
David Brownellffa458c2006-01-08 13:34:21 -0800173
Imre Deakde2defd2007-01-18 00:45:21 -0500174#define READ_Y(vref) (READ_12BIT_DFR(y, 1, vref))
175#define READ_Z1(vref) (READ_12BIT_DFR(z1, 1, vref))
176#define READ_Z2(vref) (READ_12BIT_DFR(z2, 1, vref))
Imre Deak53a0ef892006-04-11 23:41:49 -0400177
Imre Deakde2defd2007-01-18 00:45:21 -0500178#define READ_X(vref) (READ_12BIT_DFR(x, 1, vref))
179#define PWRDOWN (READ_12BIT_DFR(y, 0, 0)) /* LAST */
David Brownellffa458c2006-01-08 13:34:21 -0800180
181/* single-ended samples need to first power up reference voltage;
182 * we leave both ADC and VREF powered
183 */
184#define READ_12BIT_SER(x) (ADS_START | ADS_A2A1A0_ ## x \
185 | ADS_12_BIT | ADS_SER)
186
Imre Deakde2defd2007-01-18 00:45:21 -0500187#define REF_ON (READ_12BIT_DFR(x, 1, 1))
188#define REF_OFF (READ_12BIT_DFR(y, 0, 0))
David Brownellffa458c2006-01-08 13:34:21 -0800189
190/*--------------------------------------------------------------------------*/
191
192/*
193 * Non-touchscreen sensors only use single-ended conversions.
David Brownell2c8dc072007-01-18 00:45:48 -0500194 * The range is GND..vREF. The ads7843 and ads7835 must use external vREF;
195 * ads7846 lets that pin be unconnected, to use internal vREF.
David Brownellffa458c2006-01-08 13:34:21 -0800196 */
197
198struct ser_req {
David Brownelld93f70b2006-02-15 00:49:35 -0500199 u8 ref_on;
David Brownellffa458c2006-01-08 13:34:21 -0800200 u8 command;
David Brownelld93f70b2006-02-15 00:49:35 -0500201 u8 ref_off;
David Brownellffa458c2006-01-08 13:34:21 -0800202 u16 scratch;
203 __be16 sample;
204 struct spi_message msg;
205 struct spi_transfer xfer[6];
206};
207
Imre Deak7de90a82006-04-11 23:43:55 -0400208static void ads7846_enable(struct ads7846 *ts);
209static void ads7846_disable(struct ads7846 *ts);
210
Imre Deakc9e617a2006-04-11 23:44:05 -0400211static int device_suspended(struct device *dev)
212{
213 struct ads7846 *ts = dev_get_drvdata(dev);
David Brownellfbb38e32007-12-14 01:26:33 -0500214 return ts->is_suspended || ts->disabled;
Imre Deakc9e617a2006-04-11 23:44:05 -0400215}
216
David Brownellffa458c2006-01-08 13:34:21 -0800217static int ads7846_read12_ser(struct device *dev, unsigned command)
218{
219 struct spi_device *spi = to_spi_device(dev);
220 struct ads7846 *ts = dev_get_drvdata(dev);
Christoph Lametere94b1762006-12-06 20:33:17 -0800221 struct ser_req *req = kzalloc(sizeof *req, GFP_KERNEL);
David Brownellffa458c2006-01-08 13:34:21 -0800222 int status;
David Brownell2c8dc072007-01-18 00:45:48 -0500223 int use_internal;
David Brownellffa458c2006-01-08 13:34:21 -0800224
225 if (!req)
226 return -ENOMEM;
227
Imre Deak0b7018a2006-04-11 23:42:03 -0400228 spi_message_init(&req->msg);
Vitaly Wool8275c642006-01-08 13:34:28 -0800229
David Brownell2c8dc072007-01-18 00:45:48 -0500230 /* FIXME boards with ads7846 might use external vref instead ... */
231 use_internal = (ts->model == 7846);
David Brownellffa458c2006-01-08 13:34:21 -0800232
David Brownell2c8dc072007-01-18 00:45:48 -0500233 /* maybe turn on internal vREF, and let it settle */
234 if (use_internal) {
235 req->ref_on = REF_ON;
236 req->xfer[0].tx_buf = &req->ref_on;
237 req->xfer[0].len = 1;
238 spi_message_add_tail(&req->xfer[0], &req->msg);
239
240 req->xfer[1].rx_buf = &req->scratch;
241 req->xfer[1].len = 2;
242
243 /* for 1uF, settle for 800 usec; no cap, 100 usec. */
244 req->xfer[1].delay_usecs = ts->vref_delay_usecs;
245 spi_message_add_tail(&req->xfer[1], &req->msg);
246 }
David Brownellffa458c2006-01-08 13:34:21 -0800247
248 /* take sample */
249 req->command = (u8) command;
250 req->xfer[2].tx_buf = &req->command;
251 req->xfer[2].len = 1;
David Brownell2c8dc072007-01-18 00:45:48 -0500252 spi_message_add_tail(&req->xfer[2], &req->msg);
253
David Brownellffa458c2006-01-08 13:34:21 -0800254 req->xfer[3].rx_buf = &req->sample;
255 req->xfer[3].len = 2;
David Brownell2c8dc072007-01-18 00:45:48 -0500256 spi_message_add_tail(&req->xfer[3], &req->msg);
David Brownellffa458c2006-01-08 13:34:21 -0800257
258 /* REVISIT: take a few more samples, and compare ... */
259
Nicolas Ferre969111e2007-02-28 23:51:03 -0500260 /* converter in low power mode & enable PENIRQ */
261 req->ref_off = PWRDOWN;
262 req->xfer[4].tx_buf = &req->ref_off;
263 req->xfer[4].len = 1;
264 spi_message_add_tail(&req->xfer[4], &req->msg);
David Brownellffa458c2006-01-08 13:34:21 -0800265
Nicolas Ferre969111e2007-02-28 23:51:03 -0500266 req->xfer[5].rx_buf = &req->scratch;
267 req->xfer[5].len = 2;
268 CS_CHANGE(req->xfer[5]);
269 spi_message_add_tail(&req->xfer[5], &req->msg);
David Brownellffa458c2006-01-08 13:34:21 -0800270
Imre Deakc9e617a2006-04-11 23:44:05 -0400271 ts->irq_disabled = 1;
David Brownellffa458c2006-01-08 13:34:21 -0800272 disable_irq(spi->irq);
273 status = spi_sync(spi, &req->msg);
Imre Deakc9e617a2006-04-11 23:44:05 -0400274 ts->irq_disabled = 0;
David Brownellffa458c2006-01-08 13:34:21 -0800275 enable_irq(spi->irq);
276
Marc Pignatc24b2602007-12-04 23:45:11 -0800277 if (status == 0) {
278 /* on-wire is a must-ignore bit, a BE12 value, then padding */
David Brownell7c6d0ee2008-04-02 00:43:01 -0400279 status = be16_to_cpu(req->sample);
280 status = status >> 3;
281 status &= 0x0fff;
Marc Pignatc24b2602007-12-04 23:45:11 -0800282 }
David Brownell90845332006-05-25 18:44:20 -0700283
284 kfree(req);
David Brownell7c6d0ee2008-04-02 00:43:01 -0400285 return status;
David Brownellffa458c2006-01-08 13:34:21 -0800286}
287
David Brownell2c8dc072007-01-18 00:45:48 -0500288#if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE)
289
290#define SHOW(name, var, adjust) static ssize_t \
David Brownellffa458c2006-01-08 13:34:21 -0800291name ## _show(struct device *dev, struct device_attribute *attr, char *buf) \
292{ \
David Brownell2c8dc072007-01-18 00:45:48 -0500293 struct ads7846 *ts = dev_get_drvdata(dev); \
David Brownellffa458c2006-01-08 13:34:21 -0800294 ssize_t v = ads7846_read12_ser(dev, \
David Brownell2c8dc072007-01-18 00:45:48 -0500295 READ_12BIT_SER(var) | ADS_PD10_ALL_ON); \
David Brownellffa458c2006-01-08 13:34:21 -0800296 if (v < 0) \
297 return v; \
David Brownell2c8dc072007-01-18 00:45:48 -0500298 return sprintf(buf, "%u\n", adjust(ts, v)); \
David Brownellffa458c2006-01-08 13:34:21 -0800299} \
300static DEVICE_ATTR(name, S_IRUGO, name ## _show, NULL);
301
David Brownell2c8dc072007-01-18 00:45:48 -0500302
Adam Buchbinderb731d7b2009-03-13 12:15:26 -0400303/* Sysfs conventions report temperatures in millidegrees Celsius.
David Brownell2c8dc072007-01-18 00:45:48 -0500304 * ADS7846 could use the low-accuracy two-sample scheme, but can't do the high
305 * accuracy scheme without calibration data. For now we won't try either;
306 * userspace sees raw sensor values, and must scale/calibrate appropriately.
307 */
308static inline unsigned null_adjust(struct ads7846 *ts, ssize_t v)
309{
310 return v;
311}
312
313SHOW(temp0, temp0, null_adjust) /* temp1_input */
314SHOW(temp1, temp1, null_adjust) /* temp2_input */
315
316
317/* sysfs conventions report voltages in millivolts. We can convert voltages
318 * if we know vREF. userspace may need to scale vAUX to match the board's
319 * external resistors; we assume that vBATT only uses the internal ones.
320 */
321static inline unsigned vaux_adjust(struct ads7846 *ts, ssize_t v)
322{
323 unsigned retval = v;
324
325 /* external resistors may scale vAUX into 0..vREF */
David Brownell7c6d0ee2008-04-02 00:43:01 -0400326 retval *= ts->vref_mv;
David Brownell2c8dc072007-01-18 00:45:48 -0500327 retval = retval >> 12;
328 return retval;
329}
330
331static inline unsigned vbatt_adjust(struct ads7846 *ts, ssize_t v)
332{
333 unsigned retval = vaux_adjust(ts, v);
334
335 /* ads7846 has a resistor ladder to scale this signal down */
336 if (ts->model == 7846)
337 retval *= 4;
338 return retval;
339}
340
341SHOW(in0_input, vaux, vaux_adjust)
342SHOW(in1_input, vbatt, vbatt_adjust)
343
344
345static struct attribute *ads7846_attributes[] = {
346 &dev_attr_temp0.attr,
347 &dev_attr_temp1.attr,
348 &dev_attr_in0_input.attr,
349 &dev_attr_in1_input.attr,
350 NULL,
351};
352
353static struct attribute_group ads7846_attr_group = {
354 .attrs = ads7846_attributes,
355};
356
357static struct attribute *ads7843_attributes[] = {
358 &dev_attr_in0_input.attr,
359 &dev_attr_in1_input.attr,
360 NULL,
361};
362
363static struct attribute_group ads7843_attr_group = {
364 .attrs = ads7843_attributes,
365};
366
367static struct attribute *ads7845_attributes[] = {
368 &dev_attr_in0_input.attr,
369 NULL,
370};
371
372static struct attribute_group ads7845_attr_group = {
373 .attrs = ads7845_attributes,
374};
375
376static int ads784x_hwmon_register(struct spi_device *spi, struct ads7846 *ts)
377{
Tony Jones1beeffe2007-08-20 13:46:20 -0700378 struct device *hwmon;
David Brownell2c8dc072007-01-18 00:45:48 -0500379 int err;
380
381 /* hwmon sensors need a reference voltage */
382 switch (ts->model) {
383 case 7846:
David Brownell7c6d0ee2008-04-02 00:43:01 -0400384 if (!ts->vref_mv) {
David Brownell2c8dc072007-01-18 00:45:48 -0500385 dev_dbg(&spi->dev, "assuming 2.5V internal vREF\n");
David Brownell7c6d0ee2008-04-02 00:43:01 -0400386 ts->vref_mv = 2500;
David Brownell2c8dc072007-01-18 00:45:48 -0500387 }
388 break;
389 case 7845:
390 case 7843:
David Brownell7c6d0ee2008-04-02 00:43:01 -0400391 if (!ts->vref_mv) {
David Brownell2c8dc072007-01-18 00:45:48 -0500392 dev_warn(&spi->dev,
393 "external vREF for ADS%d not specified\n",
394 ts->model);
395 return 0;
396 }
397 break;
398 }
399
400 /* different chips have different sensor groups */
401 switch (ts->model) {
402 case 7846:
403 ts->attr_group = &ads7846_attr_group;
404 break;
405 case 7845:
406 ts->attr_group = &ads7845_attr_group;
407 break;
408 case 7843:
409 ts->attr_group = &ads7843_attr_group;
410 break;
411 default:
412 dev_dbg(&spi->dev, "ADS%d not recognized\n", ts->model);
413 return 0;
414 }
415
416 err = sysfs_create_group(&spi->dev.kobj, ts->attr_group);
417 if (err)
418 return err;
419
420 hwmon = hwmon_device_register(&spi->dev);
421 if (IS_ERR(hwmon)) {
422 sysfs_remove_group(&spi->dev.kobj, ts->attr_group);
423 return PTR_ERR(hwmon);
424 }
425
426 ts->hwmon = hwmon;
427 return 0;
428}
429
430static void ads784x_hwmon_unregister(struct spi_device *spi,
431 struct ads7846 *ts)
432{
433 if (ts->hwmon) {
434 sysfs_remove_group(&spi->dev.kobj, ts->attr_group);
435 hwmon_device_unregister(ts->hwmon);
436 }
437}
438
439#else
440static inline int ads784x_hwmon_register(struct spi_device *spi,
441 struct ads7846 *ts)
442{
443 return 0;
444}
445
446static inline void ads784x_hwmon_unregister(struct spi_device *spi,
447 struct ads7846 *ts)
448{
449}
450#endif
David Brownellffa458c2006-01-08 13:34:21 -0800451
Imre Deak438f2a72006-04-11 23:41:32 -0400452static int is_pen_down(struct device *dev)
453{
David Brownell2c8dc072007-01-18 00:45:48 -0500454 struct ads7846 *ts = dev_get_drvdata(dev);
Imre Deak438f2a72006-04-11 23:41:32 -0400455
456 return ts->pendown;
457}
458
459static ssize_t ads7846_pen_down_show(struct device *dev,
460 struct device_attribute *attr, char *buf)
461{
462 return sprintf(buf, "%u\n", is_pen_down(dev));
463}
464
465static DEVICE_ATTR(pen_down, S_IRUGO, ads7846_pen_down_show, NULL);
466
Imre Deak7de90a82006-04-11 23:43:55 -0400467static ssize_t ads7846_disable_show(struct device *dev,
468 struct device_attribute *attr, char *buf)
469{
470 struct ads7846 *ts = dev_get_drvdata(dev);
471
472 return sprintf(buf, "%u\n", ts->disabled);
473}
474
475static ssize_t ads7846_disable_store(struct device *dev,
476 struct device_attribute *attr,
477 const char *buf, size_t count)
478{
479 struct ads7846 *ts = dev_get_drvdata(dev);
Harvey Harrison3a0c58d2008-12-23 04:09:28 -0500480 unsigned long i;
Imre Deak7de90a82006-04-11 23:43:55 -0400481
Joe Rouvier160f1fe2008-08-10 00:29:25 -0400482 if (strict_strtoul(buf, 10, &i))
483 return -EINVAL;
484
Imre Deak7de90a82006-04-11 23:43:55 -0400485 spin_lock_irq(&ts->lock);
486
487 if (i)
488 ads7846_disable(ts);
489 else
490 ads7846_enable(ts);
491
492 spin_unlock_irq(&ts->lock);
493
494 return count;
495}
496
497static DEVICE_ATTR(disable, 0664, ads7846_disable_show, ads7846_disable_store);
498
David Brownell2c8dc072007-01-18 00:45:48 -0500499static struct attribute *ads784x_attributes[] = {
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500500 &dev_attr_pen_down.attr,
501 &dev_attr_disable.attr,
502 NULL,
503};
504
David Brownell2c8dc072007-01-18 00:45:48 -0500505static struct attribute_group ads784x_attr_group = {
506 .attrs = ads784x_attributes,
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500507};
508
David Brownellffa458c2006-01-08 13:34:21 -0800509/*--------------------------------------------------------------------------*/
510
Eric Miao4d5975e2008-09-10 12:06:15 -0400511static int get_pendown_state(struct ads7846 *ts)
512{
513 if (ts->get_pendown_state)
514 return ts->get_pendown_state();
515
516 return !gpio_get_value(ts->gpio_pendown);
517}
518
Eric Miaofd746d52009-04-11 16:54:59 -0700519static void null_wait_for_sync(void)
520{
521}
522
David Brownellffa458c2006-01-08 13:34:21 -0800523/*
524 * PENIRQ only kicks the timer. The timer only reissues the SPI transfer,
525 * to retrieve touchscreen status.
526 *
527 * The SPI transfer completion callback does the real work. It reports
528 * touchscreen events and reactivates the timer (or IRQ) as appropriate.
529 */
530
531static void ads7846_rx(void *ads)
532{
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500533 struct ads7846 *ts = ads;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400534 struct ads7846_packet *packet = ts->packet;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500535 unsigned Rt;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500536 u16 x, y, z1, z2;
David Brownellffa458c2006-01-08 13:34:21 -0800537
Imre Deakda970e62007-01-18 00:44:41 -0500538 /* ads7846_rx_val() did in-place conversion (including byteswap) from
539 * on-the-wire format as part of debouncing to get stable readings.
David Brownellffa458c2006-01-08 13:34:21 -0800540 */
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400541 x = packet->tc.x;
542 y = packet->tc.y;
543 z1 = packet->tc.z1;
544 z2 = packet->tc.z2;
David Brownellffa458c2006-01-08 13:34:21 -0800545
546 /* range filtering */
547 if (x == MAX_12BIT)
548 x = 0;
549
Hans-Christian Egtvedt9460b652008-07-23 14:38:27 -0400550 if (ts->model == 7843) {
551 Rt = ts->pressure_max / 2;
552 } else if (likely(x && z1)) {
David Brownellffa458c2006-01-08 13:34:21 -0800553 /* compute touch pressure resistance using equation #2 */
554 Rt = z2;
555 Rt -= z1;
556 Rt *= x;
557 Rt *= ts->x_plate_ohms;
558 Rt /= z1;
559 Rt = (Rt + 2047) >> 12;
Hans-Christian Egtvedt9460b652008-07-23 14:38:27 -0400560 } else {
David Brownellffa458c2006-01-08 13:34:21 -0800561 Rt = 0;
Hans-Christian Egtvedt9460b652008-07-23 14:38:27 -0400562 }
Nicolas Ferre969111e2007-02-28 23:51:03 -0500563
Imre Deakd5b415c2006-04-26 00:13:18 -0400564 /* Sample found inconsistent by debouncing or pressure is beyond
Imre Deak1936d592007-01-18 00:45:31 -0500565 * the maximum. Don't report it to user space, repeat at least
566 * once more the measurement
567 */
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400568 if (packet->tc.ignore || Rt > ts->pressure_max) {
Imre Deak15e35892007-01-18 00:45:43 -0500569#ifdef VERBOSE
570 pr_debug("%s: ignored %d pressure %d\n",
Kay Sieversa6c24902008-10-30 00:07:50 -0400571 dev_name(&ts->spi->dev), packet->tc.ignore, Rt);
Imre Deak15e35892007-01-18 00:45:43 -0500572#endif
Imre Deak1936d592007-01-18 00:45:31 -0500573 hrtimer_start(&ts->timer, ktime_set(0, TS_POLL_PERIOD),
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800574 HRTIMER_MODE_REL);
Imre Deakd5b415c2006-04-26 00:13:18 -0400575 return;
576 }
577
Semih Hazar1d258912007-07-18 00:36:04 -0400578 /* Maybe check the pendown state before reporting. This discards
579 * false readings when the pen is lifted.
580 */
581 if (ts->penirq_recheck_delay_usecs) {
582 udelay(ts->penirq_recheck_delay_usecs);
Eric Miao4d5975e2008-09-10 12:06:15 -0400583 if (!get_pendown_state(ts))
Semih Hazar1d258912007-07-18 00:36:04 -0400584 Rt = 0;
585 }
586
Imre Deak15e35892007-01-18 00:45:43 -0500587 /* NOTE: We can't rely on the pressure to determine the pen down
588 * state, even this controller has a pressure sensor. The pressure
589 * value can fluctuate for quite a while after lifting the pen and
590 * in some cases may not even settle at the expected value.
David Brownellffa458c2006-01-08 13:34:21 -0800591 *
Imre Deak15e35892007-01-18 00:45:43 -0500592 * The only safe way to check for the pen up condition is in the
593 * timer by reading the pen signal state (it's a GPIO _and_ IRQ).
David Brownellffa458c2006-01-08 13:34:21 -0800594 */
David Brownellffa458c2006-01-08 13:34:21 -0800595 if (Rt) {
Imre Deak15e35892007-01-18 00:45:43 -0500596 struct input_dev *input = ts->input;
Imre Deakae82d5a2006-04-26 00:12:14 -0400597
Imre Deak15e35892007-01-18 00:45:43 -0500598 if (!ts->pendown) {
599 input_report_key(input, BTN_TOUCH, 1);
600 ts->pendown = 1;
601#ifdef VERBOSE
602 dev_dbg(&ts->spi->dev, "DOWN\n");
David Brownellffa458c2006-01-08 13:34:21 -0800603#endif
Imre Deak15e35892007-01-18 00:45:43 -0500604 }
Michael Roth86579a42009-05-18 16:04:44 -0700605
606 if (ts->swap_xy)
607 swap(x, y);
608
Imre Deak15e35892007-01-18 00:45:43 -0500609 input_report_abs(input, ABS_X, x);
610 input_report_abs(input, ABS_Y, y);
611 input_report_abs(input, ABS_PRESSURE, Rt);
David Brownellffa458c2006-01-08 13:34:21 -0800612
Imre Deak15e35892007-01-18 00:45:43 -0500613 input_sync(input);
614#ifdef VERBOSE
615 dev_dbg(&ts->spi->dev, "%4d/%4d/%4d\n", x, y, Rt);
616#endif
617 }
David Brownellffa458c2006-01-08 13:34:21 -0800618
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800619 hrtimer_start(&ts->timer, ktime_set(0, TS_POLL_PERIOD),
620 HRTIMER_MODE_REL);
David Brownellffa458c2006-01-08 13:34:21 -0800621}
622
Imre Deakda970e62007-01-18 00:44:41 -0500623static int ads7846_debounce(void *ads, int data_idx, int *val)
Imre Deak0b7018a2006-04-11 23:42:03 -0400624{
625 struct ads7846 *ts = ads;
Imre Deak0b7018a2006-04-11 23:42:03 -0400626
Imre Deakda970e62007-01-18 00:44:41 -0500627 if (!ts->read_cnt || (abs(ts->last_read - *val) > ts->debounce_tol)) {
628 /* Start over collecting consistent readings. */
629 ts->read_rep = 0;
Imre Deakd5b415c2006-04-26 00:13:18 -0400630 /* Repeat it, if this was the first read or the read
631 * wasn't consistent enough. */
632 if (ts->read_cnt < ts->debounce_max) {
Imre Deakda970e62007-01-18 00:44:41 -0500633 ts->last_read = *val;
Imre Deakd5b415c2006-04-26 00:13:18 -0400634 ts->read_cnt++;
Imre Deakda970e62007-01-18 00:44:41 -0500635 return ADS7846_FILTER_REPEAT;
Imre Deakd5b415c2006-04-26 00:13:18 -0400636 } else {
637 /* Maximum number of debouncing reached and still
638 * not enough number of consistent readings. Abort
639 * the whole sample, repeat it in the next sampling
640 * period.
641 */
Imre Deakd5b415c2006-04-26 00:13:18 -0400642 ts->read_cnt = 0;
Imre Deakda970e62007-01-18 00:44:41 -0500643 return ADS7846_FILTER_IGNORE;
Imre Deakd5b415c2006-04-26 00:13:18 -0400644 }
Imre Deak0b7018a2006-04-11 23:42:03 -0400645 } else {
Imre Deakd5b415c2006-04-26 00:13:18 -0400646 if (++ts->read_rep > ts->debounce_rep) {
647 /* Got a good reading for this coordinate,
648 * go for the next one. */
Imre Deakd5b415c2006-04-26 00:13:18 -0400649 ts->read_cnt = 0;
650 ts->read_rep = 0;
Imre Deakda970e62007-01-18 00:44:41 -0500651 return ADS7846_FILTER_OK;
652 } else {
Imre Deakd5b415c2006-04-26 00:13:18 -0400653 /* Read more values that are consistent. */
654 ts->read_cnt++;
Imre Deakda970e62007-01-18 00:44:41 -0500655 return ADS7846_FILTER_REPEAT;
656 }
657 }
658}
659
660static int ads7846_no_filter(void *ads, int data_idx, int *val)
661{
662 return ADS7846_FILTER_OK;
663}
664
665static void ads7846_rx_val(void *ads)
666{
667 struct ads7846 *ts = ads;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400668 struct ads7846_packet *packet = ts->packet;
Imre Deakda970e62007-01-18 00:44:41 -0500669 struct spi_message *m;
670 struct spi_transfer *t;
Imre Deakda970e62007-01-18 00:44:41 -0500671 int val;
672 int action;
673 int status;
674
675 m = &ts->msg[ts->msg_idx];
676 t = list_entry(m->transfers.prev, struct spi_transfer, transfer_list);
Imre Deakda970e62007-01-18 00:44:41 -0500677
678 /* adjust: on-wire is a must-ignore bit, a BE12 value, then padding;
679 * built from two 8 bit values written msb-first.
680 */
Harvey Harrison494f6852008-07-23 14:16:19 -0400681 val = be16_to_cpup((__be16 *)t->rx_buf) >> 3;
Imre Deakda970e62007-01-18 00:44:41 -0500682
683 action = ts->filter(ts->filter_data, ts->msg_idx, &val);
684 switch (action) {
685 case ADS7846_FILTER_REPEAT:
686 break;
687 case ADS7846_FILTER_IGNORE:
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400688 packet->tc.ignore = 1;
Imre Deakda970e62007-01-18 00:44:41 -0500689 /* Last message will contain ads7846_rx() as the
690 * completion function.
691 */
692 m = ts->last_msg;
693 break;
694 case ADS7846_FILTER_OK:
Harvey Harrison494f6852008-07-23 14:16:19 -0400695 *(u16 *)t->rx_buf = val;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400696 packet->tc.ignore = 0;
Imre Deakda970e62007-01-18 00:44:41 -0500697 m = &ts->msg[++ts->msg_idx];
698 break;
699 default:
700 BUG();
Imre Deak0b7018a2006-04-11 23:42:03 -0400701 }
Eric Miaofd746d52009-04-11 16:54:59 -0700702 ts->wait_for_sync();
Imre Deak0b7018a2006-04-11 23:42:03 -0400703 status = spi_async(ts->spi, m);
704 if (status)
705 dev_err(&ts->spi->dev, "spi_async --> %d\n",
706 status);
707}
708
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800709static enum hrtimer_restart ads7846_timer(struct hrtimer *handle)
David Brownellffa458c2006-01-08 13:34:21 -0800710{
Imre Deak1936d592007-01-18 00:45:31 -0500711 struct ads7846 *ts = container_of(handle, struct ads7846, timer);
David Brownellffa458c2006-01-08 13:34:21 -0800712 int status = 0;
David Brownellffa458c2006-01-08 13:34:21 -0800713
Peter Zijlstraca109492008-11-25 12:43:51 +0100714 spin_lock(&ts->lock);
Imre Deakc9e617a2006-04-11 23:44:05 -0400715
Eric Miao4d5975e2008-09-10 12:06:15 -0400716 if (unlikely(!get_pendown_state(ts) ||
Imre Deak15e35892007-01-18 00:45:43 -0500717 device_suspended(&ts->spi->dev))) {
718 if (ts->pendown) {
719 struct input_dev *input = ts->input;
720
721 input_report_key(input, BTN_TOUCH, 0);
722 input_report_abs(input, ABS_PRESSURE, 0);
723 input_sync(input);
724
725 ts->pendown = 0;
726#ifdef VERBOSE
727 dev_dbg(&ts->spi->dev, "UP\n");
728#endif
729 }
730
David Brownell90845332006-05-25 18:44:20 -0700731 /* measurement cycle ended */
Imre Deakc9e617a2006-04-11 23:44:05 -0400732 if (!device_suspended(&ts->spi->dev)) {
733 ts->irq_disabled = 0;
734 enable_irq(ts->spi->irq);
735 }
736 ts->pending = 0;
Imre Deakc9e617a2006-04-11 23:44:05 -0400737 } else {
738 /* pen is still down, continue with the measurement */
739 ts->msg_idx = 0;
Eric Miaofd746d52009-04-11 16:54:59 -0700740 ts->wait_for_sync();
Imre Deakc9e617a2006-04-11 23:44:05 -0400741 status = spi_async(ts->spi, &ts->msg[0]);
742 if (status)
743 dev_err(&ts->spi->dev, "spi_async --> %d\n", status);
744 }
745
Peter Zijlstraca109492008-11-25 12:43:51 +0100746 spin_unlock(&ts->lock);
Imre Deak1936d592007-01-18 00:45:31 -0500747 return HRTIMER_NORESTART;
David Brownellffa458c2006-01-08 13:34:21 -0800748}
749
David Howells7d12e782006-10-05 14:55:46 +0100750static irqreturn_t ads7846_irq(int irq, void *handle)
David Brownellffa458c2006-01-08 13:34:21 -0800751{
Imre Deak0b7018a2006-04-11 23:42:03 -0400752 struct ads7846 *ts = handle;
753 unsigned long flags;
Imre Deak0b7018a2006-04-11 23:42:03 -0400754
755 spin_lock_irqsave(&ts->lock, flags);
Eric Miao4d5975e2008-09-10 12:06:15 -0400756 if (likely(get_pendown_state(ts))) {
Imre Deak0b7018a2006-04-11 23:42:03 -0400757 if (!ts->irq_disabled) {
David Brownell90845332006-05-25 18:44:20 -0700758 /* The ARM do_simple_IRQ() dispatcher doesn't act
759 * like the other dispatchers: it will report IRQs
760 * even after they've been disabled. We work around
761 * that here. (The "generic irq" framework may help...)
Imre Deak0b7018a2006-04-11 23:42:03 -0400762 */
763 ts->irq_disabled = 1;
Ben Nizette3f3e7c62009-04-15 18:57:55 -0700764 disable_irq_nosync(ts->spi->irq);
Imre Deak0b7018a2006-04-11 23:42:03 -0400765 ts->pending = 1;
Imre Deak1936d592007-01-18 00:45:31 -0500766 hrtimer_start(&ts->timer, ktime_set(0, TS_POLL_DELAY),
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800767 HRTIMER_MODE_REL);
Imre Deak0b7018a2006-04-11 23:42:03 -0400768 }
769 }
770 spin_unlock_irqrestore(&ts->lock, flags);
Imre Deak7de90a82006-04-11 23:43:55 -0400771
772 return IRQ_HANDLED;
David Brownellffa458c2006-01-08 13:34:21 -0800773}
774
775/*--------------------------------------------------------------------------*/
776
Imre Deak7de90a82006-04-11 23:43:55 -0400777/* Must be called with ts->lock held */
778static void ads7846_disable(struct ads7846 *ts)
David Brownellffa458c2006-01-08 13:34:21 -0800779{
Imre Deak7de90a82006-04-11 23:43:55 -0400780 if (ts->disabled)
781 return;
David Brownellffa458c2006-01-08 13:34:21 -0800782
Imre Deakc9e617a2006-04-11 23:44:05 -0400783 ts->disabled = 1;
David Brownellffa458c2006-01-08 13:34:21 -0800784
Imre Deakc9e617a2006-04-11 23:44:05 -0400785 /* are we waiting for IRQ, or polling? */
786 if (!ts->pending) {
787 ts->irq_disabled = 1;
788 disable_irq(ts->spi->irq);
789 } else {
790 /* the timer will run at least once more, and
791 * leave everything in a clean state, IRQ disabled
792 */
793 while (ts->pending) {
Imre Deak7de90a82006-04-11 23:43:55 -0400794 spin_unlock_irq(&ts->lock);
Juha Yrjolac4febb92006-04-11 23:42:25 -0400795 msleep(1);
Imre Deak7de90a82006-04-11 23:43:55 -0400796 spin_lock_irq(&ts->lock);
David Brownellffa458c2006-01-08 13:34:21 -0800797 }
798 }
799
800 /* we know the chip's in lowpower mode since we always
801 * leave it that way after every request
802 */
Imre Deak7de90a82006-04-11 23:43:55 -0400803}
804
805/* Must be called with ts->lock held */
806static void ads7846_enable(struct ads7846 *ts)
807{
808 if (!ts->disabled)
809 return;
810
811 ts->disabled = 0;
812 ts->irq_disabled = 0;
813 enable_irq(ts->spi->irq);
814}
815
816static int ads7846_suspend(struct spi_device *spi, pm_message_t message)
817{
818 struct ads7846 *ts = dev_get_drvdata(&spi->dev);
819
820 spin_lock_irq(&ts->lock);
821
David Brownellfbb38e32007-12-14 01:26:33 -0500822 ts->is_suspended = 1;
Imre Deak7de90a82006-04-11 23:43:55 -0400823 ads7846_disable(ts);
824
825 spin_unlock_irq(&ts->lock);
826
David Brownellffa458c2006-01-08 13:34:21 -0800827 return 0;
Imre Deak7de90a82006-04-11 23:43:55 -0400828
David Brownellffa458c2006-01-08 13:34:21 -0800829}
830
David Brownell2e5a7bd2006-01-08 13:34:25 -0800831static int ads7846_resume(struct spi_device *spi)
David Brownellffa458c2006-01-08 13:34:21 -0800832{
David Brownell2e5a7bd2006-01-08 13:34:25 -0800833 struct ads7846 *ts = dev_get_drvdata(&spi->dev);
David Brownellffa458c2006-01-08 13:34:21 -0800834
Imre Deak7de90a82006-04-11 23:43:55 -0400835 spin_lock_irq(&ts->lock);
836
David Brownellfbb38e32007-12-14 01:26:33 -0500837 ts->is_suspended = 0;
Imre Deak7de90a82006-04-11 23:43:55 -0400838 ads7846_enable(ts);
839
840 spin_unlock_irq(&ts->lock);
841
David Brownellffa458c2006-01-08 13:34:21 -0800842 return 0;
843}
844
Eric Miao4d5975e2008-09-10 12:06:15 -0400845static int __devinit setup_pendown(struct spi_device *spi, struct ads7846 *ts)
846{
847 struct ads7846_platform_data *pdata = spi->dev.platform_data;
848 int err;
849
850 /* REVISIT when the irq can be triggered active-low, or if for some
851 * reason the touchscreen isn't hooked up, we don't need to access
852 * the pendown state.
853 */
854 if (!pdata->get_pendown_state && !gpio_is_valid(pdata->gpio_pendown)) {
855 dev_err(&spi->dev, "no get_pendown_state nor gpio_pendown?\n");
856 return -EINVAL;
857 }
858
859 if (pdata->get_pendown_state) {
860 ts->get_pendown_state = pdata->get_pendown_state;
861 return 0;
862 }
863
864 err = gpio_request(pdata->gpio_pendown, "ads7846_pendown");
865 if (err) {
866 dev_err(&spi->dev, "failed to request pendown GPIO%d\n",
867 pdata->gpio_pendown);
868 return err;
869 }
870
871 ts->gpio_pendown = pdata->gpio_pendown;
872 return 0;
873}
874
David Brownell2e5a7bd2006-01-08 13:34:25 -0800875static int __devinit ads7846_probe(struct spi_device *spi)
David Brownellffa458c2006-01-08 13:34:21 -0800876{
David Brownellffa458c2006-01-08 13:34:21 -0800877 struct ads7846 *ts;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400878 struct ads7846_packet *packet;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500879 struct input_dev *input_dev;
David Brownell2e5a7bd2006-01-08 13:34:25 -0800880 struct ads7846_platform_data *pdata = spi->dev.platform_data;
Imre Deak0b7018a2006-04-11 23:42:03 -0400881 struct spi_message *m;
David Brownellffa458c2006-01-08 13:34:21 -0800882 struct spi_transfer *x;
Imre Deakde2defd2007-01-18 00:45:21 -0500883 int vref;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500884 int err;
David Brownellffa458c2006-01-08 13:34:21 -0800885
886 if (!spi->irq) {
David Brownell2e5a7bd2006-01-08 13:34:25 -0800887 dev_dbg(&spi->dev, "no IRQ?\n");
David Brownellffa458c2006-01-08 13:34:21 -0800888 return -ENODEV;
889 }
890
891 if (!pdata) {
David Brownell2e5a7bd2006-01-08 13:34:25 -0800892 dev_dbg(&spi->dev, "no platform data?\n");
David Brownellffa458c2006-01-08 13:34:21 -0800893 return -ENODEV;
894 }
895
896 /* don't exceed max specified sample rate */
David Brownelld93f70b2006-02-15 00:49:35 -0500897 if (spi->max_speed_hz > (125000 * SAMPLE_BITS)) {
David Brownell2e5a7bd2006-01-08 13:34:25 -0800898 dev_dbg(&spi->dev, "f(sample) %d KHz?\n",
David Brownelld93f70b2006-02-15 00:49:35 -0500899 (spi->max_speed_hz/SAMPLE_BITS)/1000);
David Brownellffa458c2006-01-08 13:34:21 -0800900 return -EINVAL;
901 }
902
David Brownell90845332006-05-25 18:44:20 -0700903 /* We'd set TX wordsize 8 bits and RX wordsize to 13 bits ... except
904 * that even if the hardware can do that, the SPI controller driver
905 * may not. So we stick to very-portable 8 bit words, both RX and TX.
David Brownellffa458c2006-01-08 13:34:21 -0800906 */
David Brownell90845332006-05-25 18:44:20 -0700907 spi->bits_per_word = 8;
Semih Hazar230ffc82007-05-22 23:35:12 -0400908 spi->mode = SPI_MODE_0;
Imre Deak7937e862007-01-18 00:45:38 -0500909 err = spi_setup(spi);
910 if (err < 0)
911 return err;
David Brownellffa458c2006-01-08 13:34:21 -0800912
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500913 ts = kzalloc(sizeof(struct ads7846), GFP_KERNEL);
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400914 packet = kzalloc(sizeof(struct ads7846_packet), GFP_KERNEL);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500915 input_dev = input_allocate_device();
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400916 if (!ts || !packet || !input_dev) {
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500917 err = -ENOMEM;
918 goto err_free_mem;
919 }
David Brownellffa458c2006-01-08 13:34:21 -0800920
David Brownell2e5a7bd2006-01-08 13:34:25 -0800921 dev_set_drvdata(&spi->dev, ts);
David Brownellffa458c2006-01-08 13:34:21 -0800922
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400923 ts->packet = packet;
David Brownellffa458c2006-01-08 13:34:21 -0800924 ts->spi = spi;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500925 ts->input = input_dev;
David Brownell7c6d0ee2008-04-02 00:43:01 -0400926 ts->vref_mv = pdata->vref_mv;
Michael Roth86579a42009-05-18 16:04:44 -0700927 ts->swap_xy = pdata->swap_xy;
David Brownellffa458c2006-01-08 13:34:21 -0800928
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800929 hrtimer_init(&ts->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
David Brownellffa458c2006-01-08 13:34:21 -0800930 ts->timer.function = ads7846_timer;
931
Imre Deak7de90a82006-04-11 23:43:55 -0400932 spin_lock_init(&ts->lock);
933
David Brownellffa458c2006-01-08 13:34:21 -0800934 ts->model = pdata->model ? : 7846;
935 ts->vref_delay_usecs = pdata->vref_delay_usecs ? : 100;
936 ts->x_plate_ohms = pdata->x_plate_ohms ? : 400;
Imre Deakd5b415c2006-04-26 00:13:18 -0400937 ts->pressure_max = pdata->pressure_max ? : ~0;
Imre Deakda970e62007-01-18 00:44:41 -0500938
939 if (pdata->filter != NULL) {
940 if (pdata->filter_init != NULL) {
941 err = pdata->filter_init(pdata, &ts->filter_data);
942 if (err < 0)
943 goto err_free_mem;
944 }
945 ts->filter = pdata->filter;
946 ts->filter_cleanup = pdata->filter_cleanup;
947 } else if (pdata->debounce_max) {
Imre Deakd5b415c2006-04-26 00:13:18 -0400948 ts->debounce_max = pdata->debounce_max;
Imre Deakda970e62007-01-18 00:44:41 -0500949 if (ts->debounce_max < 2)
950 ts->debounce_max = 2;
Imre Deakd5b415c2006-04-26 00:13:18 -0400951 ts->debounce_tol = pdata->debounce_tol;
952 ts->debounce_rep = pdata->debounce_rep;
Imre Deakda970e62007-01-18 00:44:41 -0500953 ts->filter = ads7846_debounce;
954 ts->filter_data = ts;
Imre Deakd5b415c2006-04-26 00:13:18 -0400955 } else
Imre Deakda970e62007-01-18 00:44:41 -0500956 ts->filter = ads7846_no_filter;
Eric Miao4d5975e2008-09-10 12:06:15 -0400957
958 err = setup_pendown(spi, ts);
959 if (err)
960 goto err_cleanup_filter;
David Brownellffa458c2006-01-08 13:34:21 -0800961
Semih Hazar1d258912007-07-18 00:36:04 -0400962 if (pdata->penirq_recheck_delay_usecs)
963 ts->penirq_recheck_delay_usecs =
964 pdata->penirq_recheck_delay_usecs;
965
Eric Miaofd746d52009-04-11 16:54:59 -0700966 ts->wait_for_sync = pdata->wait_for_sync ? : null_wait_for_sync;
967
Kay Sieversa6c24902008-10-30 00:07:50 -0400968 snprintf(ts->phys, sizeof(ts->phys), "%s/input0", dev_name(&spi->dev));
Michael Rothb58895f2009-05-18 16:05:12 -0700969 snprintf(ts->name, sizeof(ts->name), "ADS%d Touchscreen", ts->model);
David Brownellffa458c2006-01-08 13:34:21 -0800970
Michael Rothb58895f2009-05-18 16:05:12 -0700971 input_dev->name = ts->name;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500972 input_dev->phys = ts->phys;
Dmitry Torokhova5394fb02007-04-12 01:35:14 -0400973 input_dev->dev.parent = &spi->dev;
David Brownellffa458c2006-01-08 13:34:21 -0800974
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700975 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
976 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500977 input_set_abs_params(input_dev, ABS_X,
David Brownellffa458c2006-01-08 13:34:21 -0800978 pdata->x_min ? : 0,
979 pdata->x_max ? : MAX_12BIT,
980 0, 0);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500981 input_set_abs_params(input_dev, ABS_Y,
David Brownellffa458c2006-01-08 13:34:21 -0800982 pdata->y_min ? : 0,
983 pdata->y_max ? : MAX_12BIT,
984 0, 0);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -0500985 input_set_abs_params(input_dev, ABS_PRESSURE,
David Brownellffa458c2006-01-08 13:34:21 -0800986 pdata->pressure_min, pdata->pressure_max, 0, 0);
987
Imre Deakde2defd2007-01-18 00:45:21 -0500988 vref = pdata->keep_vref_on;
989
David Brownellffa458c2006-01-08 13:34:21 -0800990 /* set up the transfers to read touchscreen state; this assumes we
991 * use formula #2 for pressure, not #3.
992 */
Imre Deak0b7018a2006-04-11 23:42:03 -0400993 m = &ts->msg[0];
David Brownellffa458c2006-01-08 13:34:21 -0800994 x = ts->xfer;
995
Imre Deak0b7018a2006-04-11 23:42:03 -0400996 spi_message_init(m);
997
David Brownellffa458c2006-01-08 13:34:21 -0800998 /* y- still on; turn on only y+ (and ADC) */
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400999 packet->read_y = READ_Y(vref);
1000 x->tx_buf = &packet->read_y;
David Brownellffa458c2006-01-08 13:34:21 -08001001 x->len = 1;
Imre Deak0b7018a2006-04-11 23:42:03 -04001002 spi_message_add_tail(x, m);
David Brownelld93f70b2006-02-15 00:49:35 -05001003
David Brownellffa458c2006-01-08 13:34:21 -08001004 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001005 x->rx_buf = &packet->tc.y;
David Brownellffa458c2006-01-08 13:34:21 -08001006 x->len = 2;
Imre Deak0b7018a2006-04-11 23:42:03 -04001007 spi_message_add_tail(x, m);
David Brownellffa458c2006-01-08 13:34:21 -08001008
Semih Hazare4f48862007-07-18 00:35:56 -04001009 /* the first sample after switching drivers can be low quality;
1010 * optionally discard it, using a second one after the signals
1011 * have had enough time to stabilize.
1012 */
1013 if (pdata->settle_delay_usecs) {
1014 x->delay_usecs = pdata->settle_delay_usecs;
1015
1016 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001017 x->tx_buf = &packet->read_y;
Semih Hazare4f48862007-07-18 00:35:56 -04001018 x->len = 1;
1019 spi_message_add_tail(x, m);
1020
1021 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001022 x->rx_buf = &packet->tc.y;
Semih Hazare4f48862007-07-18 00:35:56 -04001023 x->len = 2;
1024 spi_message_add_tail(x, m);
1025 }
1026
Imre Deakda970e62007-01-18 00:44:41 -05001027 m->complete = ads7846_rx_val;
Imre Deak0b7018a2006-04-11 23:42:03 -04001028 m->context = ts;
David Brownelld93f70b2006-02-15 00:49:35 -05001029
Imre Deak0b7018a2006-04-11 23:42:03 -04001030 m++;
1031 spi_message_init(m);
David Brownellffa458c2006-01-08 13:34:21 -08001032
1033 /* turn y- off, x+ on, then leave in lowpower */
David Brownelld93f70b2006-02-15 00:49:35 -05001034 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001035 packet->read_x = READ_X(vref);
1036 x->tx_buf = &packet->read_x;
David Brownellffa458c2006-01-08 13:34:21 -08001037 x->len = 1;
Imre Deak0b7018a2006-04-11 23:42:03 -04001038 spi_message_add_tail(x, m);
David Brownelld93f70b2006-02-15 00:49:35 -05001039
David Brownellffa458c2006-01-08 13:34:21 -08001040 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001041 x->rx_buf = &packet->tc.x;
David Brownellffa458c2006-01-08 13:34:21 -08001042 x->len = 2;
Imre Deak0b7018a2006-04-11 23:42:03 -04001043 spi_message_add_tail(x, m);
1044
Semih Hazare4f48862007-07-18 00:35:56 -04001045 /* ... maybe discard first sample ... */
1046 if (pdata->settle_delay_usecs) {
1047 x->delay_usecs = pdata->settle_delay_usecs;
1048
1049 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001050 x->tx_buf = &packet->read_x;
Semih Hazare4f48862007-07-18 00:35:56 -04001051 x->len = 1;
1052 spi_message_add_tail(x, m);
1053
1054 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001055 x->rx_buf = &packet->tc.x;
Semih Hazare4f48862007-07-18 00:35:56 -04001056 x->len = 2;
1057 spi_message_add_tail(x, m);
1058 }
1059
Imre Deakda970e62007-01-18 00:44:41 -05001060 m->complete = ads7846_rx_val;
Imre Deak0b7018a2006-04-11 23:42:03 -04001061 m->context = ts;
1062
1063 /* turn y+ off, x- on; we'll use formula #2 */
1064 if (ts->model == 7846) {
1065 m++;
1066 spi_message_init(m);
1067
1068 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001069 packet->read_z1 = READ_Z1(vref);
1070 x->tx_buf = &packet->read_z1;
Imre Deak0b7018a2006-04-11 23:42:03 -04001071 x->len = 1;
1072 spi_message_add_tail(x, m);
1073
1074 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001075 x->rx_buf = &packet->tc.z1;
Imre Deak0b7018a2006-04-11 23:42:03 -04001076 x->len = 2;
1077 spi_message_add_tail(x, m);
1078
Semih Hazare4f48862007-07-18 00:35:56 -04001079 /* ... maybe discard first sample ... */
1080 if (pdata->settle_delay_usecs) {
1081 x->delay_usecs = pdata->settle_delay_usecs;
1082
1083 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001084 x->tx_buf = &packet->read_z1;
Semih Hazare4f48862007-07-18 00:35:56 -04001085 x->len = 1;
1086 spi_message_add_tail(x, m);
1087
1088 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001089 x->rx_buf = &packet->tc.z1;
Semih Hazare4f48862007-07-18 00:35:56 -04001090 x->len = 2;
1091 spi_message_add_tail(x, m);
1092 }
1093
Imre Deakda970e62007-01-18 00:44:41 -05001094 m->complete = ads7846_rx_val;
Imre Deak0b7018a2006-04-11 23:42:03 -04001095 m->context = ts;
1096
1097 m++;
1098 spi_message_init(m);
1099
1100 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001101 packet->read_z2 = READ_Z2(vref);
1102 x->tx_buf = &packet->read_z2;
Imre Deak0b7018a2006-04-11 23:42:03 -04001103 x->len = 1;
1104 spi_message_add_tail(x, m);
1105
1106 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001107 x->rx_buf = &packet->tc.z2;
Imre Deak0b7018a2006-04-11 23:42:03 -04001108 x->len = 2;
1109 spi_message_add_tail(x, m);
1110
Semih Hazare4f48862007-07-18 00:35:56 -04001111 /* ... maybe discard first sample ... */
1112 if (pdata->settle_delay_usecs) {
1113 x->delay_usecs = pdata->settle_delay_usecs;
1114
1115 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001116 x->tx_buf = &packet->read_z2;
Semih Hazare4f48862007-07-18 00:35:56 -04001117 x->len = 1;
1118 spi_message_add_tail(x, m);
1119
1120 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001121 x->rx_buf = &packet->tc.z2;
Semih Hazare4f48862007-07-18 00:35:56 -04001122 x->len = 2;
1123 spi_message_add_tail(x, m);
1124 }
1125
Imre Deakda970e62007-01-18 00:44:41 -05001126 m->complete = ads7846_rx_val;
Imre Deak0b7018a2006-04-11 23:42:03 -04001127 m->context = ts;
1128 }
Imre Deak53a0ef892006-04-11 23:41:49 -04001129
1130 /* power down */
Imre Deak0b7018a2006-04-11 23:42:03 -04001131 m++;
1132 spi_message_init(m);
1133
Imre Deak53a0ef892006-04-11 23:41:49 -04001134 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001135 packet->pwrdown = PWRDOWN;
1136 x->tx_buf = &packet->pwrdown;
Imre Deak53a0ef892006-04-11 23:41:49 -04001137 x->len = 1;
Imre Deak0b7018a2006-04-11 23:42:03 -04001138 spi_message_add_tail(x, m);
Imre Deak53a0ef892006-04-11 23:41:49 -04001139
1140 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001141 x->rx_buf = &packet->dummy;
Imre Deak53a0ef892006-04-11 23:41:49 -04001142 x->len = 2;
David Brownelld93f70b2006-02-15 00:49:35 -05001143 CS_CHANGE(*x);
Imre Deak0b7018a2006-04-11 23:42:03 -04001144 spi_message_add_tail(x, m);
David Brownellffa458c2006-01-08 13:34:21 -08001145
Imre Deak0b7018a2006-04-11 23:42:03 -04001146 m->complete = ads7846_rx;
1147 m->context = ts;
David Brownellffa458c2006-01-08 13:34:21 -08001148
Imre Deakd5b415c2006-04-26 00:13:18 -04001149 ts->last_msg = m;
1150
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001151 if (request_irq(spi->irq, ads7846_irq, IRQF_TRIGGER_FALLING,
David Brownell90845332006-05-25 18:44:20 -07001152 spi->dev.driver->name, ts)) {
Michael Rothc57c0a22009-06-10 23:30:55 -07001153 dev_info(&spi->dev,
1154 "trying pin change workaround on irq %d\n", spi->irq);
1155 err = request_irq(spi->irq, ads7846_irq,
1156 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
1157 spi->dev.driver->name, ts);
1158 if (err) {
1159 dev_dbg(&spi->dev, "irq %d busy?\n", spi->irq);
1160 goto err_free_gpio;
1161 }
David Brownellffa458c2006-01-08 13:34:21 -08001162 }
David Brownellffa458c2006-01-08 13:34:21 -08001163
David Brownell2c8dc072007-01-18 00:45:48 -05001164 err = ads784x_hwmon_register(spi, ts);
1165 if (err)
1166 goto err_free_irq;
1167
David Brownell2e5a7bd2006-01-08 13:34:25 -08001168 dev_info(&spi->dev, "touchscreen, irq %d\n", spi->irq);
David Brownellffa458c2006-01-08 13:34:21 -08001169
David Brownell2c8dc072007-01-18 00:45:48 -05001170 /* take a first sample, leaving nPENIRQ active and vREF off; avoid
David Brownellffa458c2006-01-08 13:34:21 -08001171 * the touchscreen, in case it's not connected.
1172 */
David Brownell2e5a7bd2006-01-08 13:34:25 -08001173 (void) ads7846_read12_ser(&spi->dev,
David Brownellffa458c2006-01-08 13:34:21 -08001174 READ_12BIT_SER(vaux) | ADS_PD10_ALL_ON);
1175
David Brownell2c8dc072007-01-18 00:45:48 -05001176 err = sysfs_create_group(&spi->dev.kobj, &ads784x_attr_group);
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001177 if (err)
David Brownell2c8dc072007-01-18 00:45:48 -05001178 goto err_remove_hwmon;
Imre Deak7de90a82006-04-11 23:43:55 -04001179
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001180 err = input_register_device(input_dev);
1181 if (err)
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001182 goto err_remove_attr_group;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001183
David Brownellffa458c2006-01-08 13:34:21 -08001184 return 0;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001185
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001186 err_remove_attr_group:
David Brownell2c8dc072007-01-18 00:45:48 -05001187 sysfs_remove_group(&spi->dev.kobj, &ads784x_attr_group);
1188 err_remove_hwmon:
1189 ads784x_hwmon_unregister(spi, ts);
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001190 err_free_irq:
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001191 free_irq(spi->irq, ts);
Eric Miao4d5975e2008-09-10 12:06:15 -04001192 err_free_gpio:
1193 if (ts->gpio_pendown != -1)
1194 gpio_free(ts->gpio_pendown);
Imre Deakda970e62007-01-18 00:44:41 -05001195 err_cleanup_filter:
1196 if (ts->filter_cleanup)
1197 ts->filter_cleanup(ts->filter_data);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001198 err_free_mem:
1199 input_free_device(input_dev);
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001200 kfree(packet);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001201 kfree(ts);
1202 return err;
David Brownellffa458c2006-01-08 13:34:21 -08001203}
1204
David Brownell2e5a7bd2006-01-08 13:34:25 -08001205static int __devexit ads7846_remove(struct spi_device *spi)
David Brownellffa458c2006-01-08 13:34:21 -08001206{
David Brownell2e5a7bd2006-01-08 13:34:25 -08001207 struct ads7846 *ts = dev_get_drvdata(&spi->dev);
David Brownellffa458c2006-01-08 13:34:21 -08001208
David Brownell2c8dc072007-01-18 00:45:48 -05001209 ads784x_hwmon_unregister(spi, ts);
Imre Deak7de90a82006-04-11 23:43:55 -04001210 input_unregister_device(ts->input);
1211
David Brownell2e5a7bd2006-01-08 13:34:25 -08001212 ads7846_suspend(spi, PMSG_SUSPEND);
David Brownellffa458c2006-01-08 13:34:21 -08001213
David Brownell2c8dc072007-01-18 00:45:48 -05001214 sysfs_remove_group(&spi->dev.kobj, &ads784x_attr_group);
David Brownellffa458c2006-01-08 13:34:21 -08001215
Imre Deak7de90a82006-04-11 23:43:55 -04001216 free_irq(ts->spi->irq, ts);
Imre Deakc9e617a2006-04-11 23:44:05 -04001217 /* suspend left the IRQ disabled */
1218 enable_irq(ts->spi->irq);
Imre Deak7de90a82006-04-11 23:43:55 -04001219
Eric Miao4d5975e2008-09-10 12:06:15 -04001220 if (ts->gpio_pendown != -1)
1221 gpio_free(ts->gpio_pendown);
1222
Imre Deakda970e62007-01-18 00:44:41 -05001223 if (ts->filter_cleanup)
1224 ts->filter_cleanup(ts->filter_data);
1225
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001226 kfree(ts->packet);
David Brownellffa458c2006-01-08 13:34:21 -08001227 kfree(ts);
1228
David Brownell2e5a7bd2006-01-08 13:34:25 -08001229 dev_dbg(&spi->dev, "unregistered touchscreen\n");
David Brownellffa458c2006-01-08 13:34:21 -08001230 return 0;
1231}
1232
David Brownell2e5a7bd2006-01-08 13:34:25 -08001233static struct spi_driver ads7846_driver = {
1234 .driver = {
1235 .name = "ads7846",
1236 .bus = &spi_bus_type,
1237 .owner = THIS_MODULE,
1238 },
David Brownellffa458c2006-01-08 13:34:21 -08001239 .probe = ads7846_probe,
David Brownell2e5a7bd2006-01-08 13:34:25 -08001240 .remove = __devexit_p(ads7846_remove),
David Brownellffa458c2006-01-08 13:34:21 -08001241 .suspend = ads7846_suspend,
1242 .resume = ads7846_resume,
1243};
1244
1245static int __init ads7846_init(void)
1246{
David Brownell2e5a7bd2006-01-08 13:34:25 -08001247 return spi_register_driver(&ads7846_driver);
David Brownellffa458c2006-01-08 13:34:21 -08001248}
1249module_init(ads7846_init);
1250
1251static void __exit ads7846_exit(void)
1252{
David Brownell2e5a7bd2006-01-08 13:34:25 -08001253 spi_unregister_driver(&ads7846_driver);
David Brownellffa458c2006-01-08 13:34:21 -08001254}
1255module_exit(ads7846_exit);
1256
1257MODULE_DESCRIPTION("ADS7846 TouchScreen Driver");
1258MODULE_LICENSE("GPL");