blob: b31e90f0d44bec3918d755c39a61655705d5f374 [file] [log] [blame]
David Brownellffa458c2006-01-08 13:34:21 -08001/*
2 * ADS7846 based touchscreen and sensor driver
3 *
4 * Copyright (c) 2005 David Brownell
Imre Deak7de90a82006-04-11 23:43:55 -04005 * Copyright (c) 2006 Nokia Corporation
6 * Various changes: Imre Deak <imre.deak@nokia.com>
David Brownellffa458c2006-01-08 13:34:21 -08007 *
8 * Using code from:
9 * - corgi_ts.c
10 * Copyright (C) 2004-2005 Richard Purdie
11 * - omap_ts.[hc], ads7846.h, ts_osk.c
12 * Copyright (C) 2002 MontaVista Software
13 * Copyright (C) 2004 Texas Instruments
14 * Copyright (C) 2005 Dirk Behme
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2 as
18 * published by the Free Software Foundation.
19 */
Jason Wang2991a1c2010-10-13 11:35:40 -070020#include <linux/types.h>
David Brownell2c8dc072007-01-18 00:45:48 -050021#include <linux/hwmon.h>
David Brownellffa458c2006-01-08 13:34:21 -080022#include <linux/init.h>
David Brownell2c8dc072007-01-18 00:45:48 -050023#include <linux/err.h>
Jason Wang2991a1c2010-10-13 11:35:40 -070024#include <linux/sched.h>
David Brownellffa458c2006-01-08 13:34:21 -080025#include <linux/delay.h>
26#include <linux/input.h>
27#include <linux/interrupt.h>
28#include <linux/slab.h>
Mark Brown3c36e712011-01-20 22:51:26 -080029#include <linux/pm.h>
Eric Miao4d5975e2008-09-10 12:06:15 -040030#include <linux/gpio.h>
David Brownellffa458c2006-01-08 13:34:21 -080031#include <linux/spi/spi.h>
32#include <linux/spi/ads7846.h>
Grazvydas Ignotas91143372010-02-25 02:04:56 -080033#include <linux/regulator/consumer.h>
Andrew Morton3ac8bf02006-03-26 01:37:33 -080034#include <asm/irq.h>
David Brownellffa458c2006-01-08 13:34:21 -080035
David Brownellffa458c2006-01-08 13:34:21 -080036/*
David Brownell90845332006-05-25 18:44:20 -070037 * This code has been heavily tested on a Nokia 770, and lightly
Pavel Machek52ce4eaa2009-11-23 08:25:17 -080038 * tested on other ads7846 devices (OSK/Mistral, Lubbock, Spitz).
David Brownellbff0de52007-05-22 23:28:40 -040039 * TSC2046 is just newer ads7846 silicon.
Nicolas Ferre969111e2007-02-28 23:51:03 -050040 * Support for ads7843 tested on Atmel at91sam926x-EK.
41 * Support for ads7845 has only been stubbed in.
Michael Hennerich06a09122010-03-09 20:38:45 -080042 * Support for Analog Devices AD7873 and AD7843 tested.
David Brownellffa458c2006-01-08 13:34:21 -080043 *
Imre Deak7de90a82006-04-11 23:43:55 -040044 * IRQ handling needs a workaround because of a shortcoming in handling
45 * edge triggered IRQs on some platforms like the OMAP1/2. These
46 * platforms don't handle the ARM lazy IRQ disabling properly, thus we
47 * have to maintain our own SW IRQ disabled status. This should be
48 * removed as soon as the affected platform's IRQ handling is fixed.
49 *
Pavel Machek52ce4eaa2009-11-23 08:25:17 -080050 * App note sbaa036 talks in more detail about accurate sampling...
David Brownellffa458c2006-01-08 13:34:21 -080051 * that ought to help in situations like LCDs inducing noise (which
52 * can also be helped by using synch signals) and more generally.
Imre Deak7de90a82006-04-11 23:43:55 -040053 * This driver tries to utilize the measures described in the app
54 * note. The strength of filtering can be set in the board-* specific
55 * files.
David Brownellffa458c2006-01-08 13:34:21 -080056 */
57
Jason Wang2991a1c2010-10-13 11:35:40 -070058#define TS_POLL_DELAY 1 /* ms delay before the first sample */
59#define TS_POLL_PERIOD 5 /* ms delay between samples */
David Brownellffa458c2006-01-08 13:34:21 -080060
David Brownelld93f70b2006-02-15 00:49:35 -050061/* this driver doesn't aim at the peak continuous sample rate */
62#define SAMPLE_BITS (8 /*cmd*/ + 16 /*sample*/ + 2 /* before, after */)
63
David Brownellffa458c2006-01-08 13:34:21 -080064struct ts_event {
Jason Wang2991a1c2010-10-13 11:35:40 -070065 /*
66 * For portability, we can't read 12 bit values using SPI (which
67 * would make the controller deliver them as native byte order u16
David Brownelld93f70b2006-02-15 00:49:35 -050068 * with msbs zeroed). Instead, we read them as two 8-bit values,
Imre Deakda970e62007-01-18 00:44:41 -050069 * *** WHICH NEED BYTESWAPPING *** and range adjustment.
David Brownellffa458c2006-01-08 13:34:21 -080070 */
Imre Deakda970e62007-01-18 00:44:41 -050071 u16 x;
72 u16 y;
73 u16 z1, z2;
Jason Wang2991a1c2010-10-13 11:35:40 -070074 bool ignore;
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -070075 u8 x_buf[3];
76 u8 y_buf[3];
David Brownellffa458c2006-01-08 13:34:21 -080077};
78
Dmitry Torokhove8f462d2008-10-09 00:52:23 -040079/*
80 * We allocate this separately to avoid cache line sharing issues when
81 * driver is used with DMA-based SPI controllers (like atmel_spi) on
82 * systems where main memory is not DMA-coherent (most non-x86 boards).
83 */
84struct ads7846_packet {
85 u8 read_x, read_y, read_z1, read_z2, pwrdown;
86 u16 dummy; /* for the pwrdown read */
87 struct ts_event tc;
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -070088 /* for ads7845 with mpc5121 psc spi we use 3-byte buffers */
89 u8 read_x_cmd[3], read_y_cmd[3], pwrdown_cmd[3];
Dmitry Torokhove8f462d2008-10-09 00:52:23 -040090};
91
David Brownellffa458c2006-01-08 13:34:21 -080092struct ads7846 {
Dmitry Torokhova90f7e92006-02-15 00:49:22 -050093 struct input_dev *input;
David Brownellffa458c2006-01-08 13:34:21 -080094 char phys[32];
Michael Rothb58895f2009-05-18 16:05:12 -070095 char name[32];
David Brownellffa458c2006-01-08 13:34:21 -080096
97 struct spi_device *spi;
Grazvydas Ignotas91143372010-02-25 02:04:56 -080098 struct regulator *reg;
David Brownell2c8dc072007-01-18 00:45:48 -050099
100#if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE)
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500101 struct attribute_group *attr_group;
Tony Jones1beeffe2007-08-20 13:46:20 -0700102 struct device *hwmon;
David Brownell2c8dc072007-01-18 00:45:48 -0500103#endif
104
David Brownellffa458c2006-01-08 13:34:21 -0800105 u16 model;
David Brownell7c6d0ee2008-04-02 00:43:01 -0400106 u16 vref_mv;
David Brownellffa458c2006-01-08 13:34:21 -0800107 u16 vref_delay_usecs;
108 u16 x_plate_ohms;
Imre Deakd5b415c2006-04-26 00:13:18 -0400109 u16 pressure_max;
David Brownellffa458c2006-01-08 13:34:21 -0800110
Michael Roth86579a42009-05-18 16:04:44 -0700111 bool swap_xy;
112
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400113 struct ads7846_packet *packet;
David Brownellffa458c2006-01-08 13:34:21 -0800114
Semih Hazare4f48862007-07-18 00:35:56 -0400115 struct spi_transfer xfer[18];
Imre Deak0b7018a2006-04-11 23:42:03 -0400116 struct spi_message msg[5];
Jason Wang2991a1c2010-10-13 11:35:40 -0700117 int msg_count;
118 wait_queue_head_t wait;
119
120 bool pendown;
121
Imre Deak0b7018a2006-04-11 23:42:03 -0400122 int read_cnt;
Imre Deakd5b415c2006-04-26 00:13:18 -0400123 int read_rep;
Imre Deak0b7018a2006-04-11 23:42:03 -0400124 int last_read;
125
126 u16 debounce_max;
127 u16 debounce_tol;
Imre Deakd5b415c2006-04-26 00:13:18 -0400128 u16 debounce_rep;
David Brownellffa458c2006-01-08 13:34:21 -0800129
Semih Hazar1d258912007-07-18 00:36:04 -0400130 u16 penirq_recheck_delay_usecs;
131
Jason Wang2991a1c2010-10-13 11:35:40 -0700132 struct mutex lock;
133 bool stopped; /* P: lock */
134 bool disabled; /* P: lock */
135 bool suspended; /* P: lock */
Imre Deakc9e617a2006-04-11 23:44:05 -0400136
Imre Deakda970e62007-01-18 00:44:41 -0500137 int (*filter)(void *data, int data_idx, int *val);
138 void *filter_data;
139 void (*filter_cleanup)(void *data);
Imre Deakc9e617a2006-04-11 23:44:05 -0400140 int (*get_pendown_state)(void);
Eric Miao4d5975e2008-09-10 12:06:15 -0400141 int gpio_pendown;
Eric Miaofd746d52009-04-11 16:54:59 -0700142
143 void (*wait_for_sync)(void);
David Brownellffa458c2006-01-08 13:34:21 -0800144};
145
146/* leave chip selected when we're done, for quicker re-select? */
147#if 0
148#define CS_CHANGE(xfer) ((xfer).cs_change = 1)
149#else
150#define CS_CHANGE(xfer) ((xfer).cs_change = 0)
151#endif
152
153/*--------------------------------------------------------------------------*/
154
155/* The ADS7846 has touchscreen and other sensors.
156 * Earlier ads784x chips are somewhat compatible.
157 */
158#define ADS_START (1 << 7)
159#define ADS_A2A1A0_d_y (1 << 4) /* differential */
160#define ADS_A2A1A0_d_z1 (3 << 4) /* differential */
161#define ADS_A2A1A0_d_z2 (4 << 4) /* differential */
162#define ADS_A2A1A0_d_x (5 << 4) /* differential */
163#define ADS_A2A1A0_temp0 (0 << 4) /* non-differential */
164#define ADS_A2A1A0_vbatt (2 << 4) /* non-differential */
165#define ADS_A2A1A0_vaux (6 << 4) /* non-differential */
166#define ADS_A2A1A0_temp1 (7 << 4) /* non-differential */
167#define ADS_8_BIT (1 << 3)
168#define ADS_12_BIT (0 << 3)
169#define ADS_SER (1 << 2) /* non-differential */
170#define ADS_DFR (0 << 2) /* differential */
Jason Wang2991a1c2010-10-13 11:35:40 -0700171#define ADS_PD10_PDOWN (0 << 0) /* low power mode + penirq */
David Brownellffa458c2006-01-08 13:34:21 -0800172#define ADS_PD10_ADC_ON (1 << 0) /* ADC on */
173#define ADS_PD10_REF_ON (2 << 0) /* vREF on + penirq */
174#define ADS_PD10_ALL_ON (3 << 0) /* ADC + vREF on */
175
176#define MAX_12BIT ((1<<12)-1)
177
178/* leave ADC powered up (disables penirq) between differential samples */
Imre Deakde2defd2007-01-18 00:45:21 -0500179#define READ_12BIT_DFR(x, adc, vref) (ADS_START | ADS_A2A1A0_d_ ## x \
180 | ADS_12_BIT | ADS_DFR | \
181 (adc ? ADS_PD10_ADC_ON : 0) | (vref ? ADS_PD10_REF_ON : 0))
David Brownellffa458c2006-01-08 13:34:21 -0800182
Imre Deakde2defd2007-01-18 00:45:21 -0500183#define READ_Y(vref) (READ_12BIT_DFR(y, 1, vref))
184#define READ_Z1(vref) (READ_12BIT_DFR(z1, 1, vref))
185#define READ_Z2(vref) (READ_12BIT_DFR(z2, 1, vref))
Imre Deak53a0ef892006-04-11 23:41:49 -0400186
Imre Deakde2defd2007-01-18 00:45:21 -0500187#define READ_X(vref) (READ_12BIT_DFR(x, 1, vref))
188#define PWRDOWN (READ_12BIT_DFR(y, 0, 0)) /* LAST */
David Brownellffa458c2006-01-08 13:34:21 -0800189
190/* single-ended samples need to first power up reference voltage;
191 * we leave both ADC and VREF powered
192 */
193#define READ_12BIT_SER(x) (ADS_START | ADS_A2A1A0_ ## x \
194 | ADS_12_BIT | ADS_SER)
195
Imre Deakde2defd2007-01-18 00:45:21 -0500196#define REF_ON (READ_12BIT_DFR(x, 1, 1))
197#define REF_OFF (READ_12BIT_DFR(y, 0, 0))
David Brownellffa458c2006-01-08 13:34:21 -0800198
Jason Wang2991a1c2010-10-13 11:35:40 -0700199/* Must be called with ts->lock held */
200static void ads7846_stop(struct ads7846 *ts)
201{
202 if (!ts->disabled && !ts->suspended) {
203 /* Signal IRQ thread to stop polling and disable the handler. */
204 ts->stopped = true;
205 mb();
206 wake_up(&ts->wait);
207 disable_irq(ts->spi->irq);
208 }
209}
210
211/* Must be called with ts->lock held */
212static void ads7846_restart(struct ads7846 *ts)
213{
214 if (!ts->disabled && !ts->suspended) {
215 /* Tell IRQ thread that it may poll the device. */
216 ts->stopped = false;
217 mb();
218 enable_irq(ts->spi->irq);
219 }
220}
221
222/* Must be called with ts->lock held */
223static void __ads7846_disable(struct ads7846 *ts)
224{
225 ads7846_stop(ts);
226 regulator_disable(ts->reg);
227
228 /*
229 * We know the chip's in low power mode since we always
230 * leave it that way after every request
231 */
232}
233
234/* Must be called with ts->lock held */
235static void __ads7846_enable(struct ads7846 *ts)
236{
237 regulator_enable(ts->reg);
238 ads7846_restart(ts);
239}
240
241static void ads7846_disable(struct ads7846 *ts)
242{
243 mutex_lock(&ts->lock);
244
245 if (!ts->disabled) {
246
247 if (!ts->suspended)
248 __ads7846_disable(ts);
249
250 ts->disabled = true;
251 }
252
253 mutex_unlock(&ts->lock);
254}
255
256static void ads7846_enable(struct ads7846 *ts)
257{
258 mutex_lock(&ts->lock);
259
260 if (ts->disabled) {
261
262 ts->disabled = false;
263
264 if (!ts->suspended)
265 __ads7846_enable(ts);
266 }
267
268 mutex_unlock(&ts->lock);
269}
270
David Brownellffa458c2006-01-08 13:34:21 -0800271/*--------------------------------------------------------------------------*/
272
273/*
274 * Non-touchscreen sensors only use single-ended conversions.
David Brownell2c8dc072007-01-18 00:45:48 -0500275 * The range is GND..vREF. The ads7843 and ads7835 must use external vREF;
276 * ads7846 lets that pin be unconnected, to use internal vREF.
David Brownellffa458c2006-01-08 13:34:21 -0800277 */
278
279struct ser_req {
David Brownelld93f70b2006-02-15 00:49:35 -0500280 u8 ref_on;
David Brownellffa458c2006-01-08 13:34:21 -0800281 u8 command;
David Brownelld93f70b2006-02-15 00:49:35 -0500282 u8 ref_off;
David Brownellffa458c2006-01-08 13:34:21 -0800283 u16 scratch;
284 __be16 sample;
285 struct spi_message msg;
286 struct spi_transfer xfer[6];
287};
288
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700289struct ads7845_ser_req {
290 u8 command[3];
291 u8 pwrdown[3];
292 u8 sample[3];
293 struct spi_message msg;
294 struct spi_transfer xfer[2];
295};
296
David Brownellffa458c2006-01-08 13:34:21 -0800297static int ads7846_read12_ser(struct device *dev, unsigned command)
298{
Jason Wang2991a1c2010-10-13 11:35:40 -0700299 struct spi_device *spi = to_spi_device(dev);
300 struct ads7846 *ts = dev_get_drvdata(dev);
301 struct ser_req *req;
302 int status;
303 int use_internal;
David Brownellffa458c2006-01-08 13:34:21 -0800304
Jason Wang2991a1c2010-10-13 11:35:40 -0700305 req = kzalloc(sizeof *req, GFP_KERNEL);
David Brownellffa458c2006-01-08 13:34:21 -0800306 if (!req)
307 return -ENOMEM;
308
Imre Deak0b7018a2006-04-11 23:42:03 -0400309 spi_message_init(&req->msg);
Vitaly Wool8275c642006-01-08 13:34:28 -0800310
David Brownell2c8dc072007-01-18 00:45:48 -0500311 /* FIXME boards with ads7846 might use external vref instead ... */
312 use_internal = (ts->model == 7846);
David Brownellffa458c2006-01-08 13:34:21 -0800313
David Brownell2c8dc072007-01-18 00:45:48 -0500314 /* maybe turn on internal vREF, and let it settle */
315 if (use_internal) {
316 req->ref_on = REF_ON;
317 req->xfer[0].tx_buf = &req->ref_on;
318 req->xfer[0].len = 1;
319 spi_message_add_tail(&req->xfer[0], &req->msg);
320
321 req->xfer[1].rx_buf = &req->scratch;
322 req->xfer[1].len = 2;
323
324 /* for 1uF, settle for 800 usec; no cap, 100 usec. */
325 req->xfer[1].delay_usecs = ts->vref_delay_usecs;
326 spi_message_add_tail(&req->xfer[1], &req->msg);
327 }
David Brownellffa458c2006-01-08 13:34:21 -0800328
329 /* take sample */
330 req->command = (u8) command;
331 req->xfer[2].tx_buf = &req->command;
332 req->xfer[2].len = 1;
David Brownell2c8dc072007-01-18 00:45:48 -0500333 spi_message_add_tail(&req->xfer[2], &req->msg);
334
David Brownellffa458c2006-01-08 13:34:21 -0800335 req->xfer[3].rx_buf = &req->sample;
336 req->xfer[3].len = 2;
David Brownell2c8dc072007-01-18 00:45:48 -0500337 spi_message_add_tail(&req->xfer[3], &req->msg);
David Brownellffa458c2006-01-08 13:34:21 -0800338
339 /* REVISIT: take a few more samples, and compare ... */
340
Nicolas Ferre969111e2007-02-28 23:51:03 -0500341 /* converter in low power mode & enable PENIRQ */
342 req->ref_off = PWRDOWN;
343 req->xfer[4].tx_buf = &req->ref_off;
344 req->xfer[4].len = 1;
345 spi_message_add_tail(&req->xfer[4], &req->msg);
David Brownellffa458c2006-01-08 13:34:21 -0800346
Nicolas Ferre969111e2007-02-28 23:51:03 -0500347 req->xfer[5].rx_buf = &req->scratch;
348 req->xfer[5].len = 2;
349 CS_CHANGE(req->xfer[5]);
350 spi_message_add_tail(&req->xfer[5], &req->msg);
David Brownellffa458c2006-01-08 13:34:21 -0800351
Jason Wang2991a1c2010-10-13 11:35:40 -0700352 mutex_lock(&ts->lock);
353 ads7846_stop(ts);
David Brownellffa458c2006-01-08 13:34:21 -0800354 status = spi_sync(spi, &req->msg);
Jason Wang2991a1c2010-10-13 11:35:40 -0700355 ads7846_restart(ts);
356 mutex_unlock(&ts->lock);
David Brownellffa458c2006-01-08 13:34:21 -0800357
Marc Pignatc24b2602007-12-04 23:45:11 -0800358 if (status == 0) {
359 /* on-wire is a must-ignore bit, a BE12 value, then padding */
David Brownell7c6d0ee2008-04-02 00:43:01 -0400360 status = be16_to_cpu(req->sample);
361 status = status >> 3;
362 status &= 0x0fff;
Marc Pignatc24b2602007-12-04 23:45:11 -0800363 }
David Brownell90845332006-05-25 18:44:20 -0700364
365 kfree(req);
David Brownell7c6d0ee2008-04-02 00:43:01 -0400366 return status;
David Brownellffa458c2006-01-08 13:34:21 -0800367}
368
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700369static int ads7845_read12_ser(struct device *dev, unsigned command)
370{
Jason Wang2991a1c2010-10-13 11:35:40 -0700371 struct spi_device *spi = to_spi_device(dev);
372 struct ads7846 *ts = dev_get_drvdata(dev);
373 struct ads7845_ser_req *req;
374 int status;
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700375
Jason Wang2991a1c2010-10-13 11:35:40 -0700376 req = kzalloc(sizeof *req, GFP_KERNEL);
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700377 if (!req)
378 return -ENOMEM;
379
380 spi_message_init(&req->msg);
381
382 req->command[0] = (u8) command;
383 req->xfer[0].tx_buf = req->command;
384 req->xfer[0].rx_buf = req->sample;
385 req->xfer[0].len = 3;
386 spi_message_add_tail(&req->xfer[0], &req->msg);
387
Jason Wang2991a1c2010-10-13 11:35:40 -0700388 mutex_lock(&ts->lock);
389 ads7846_stop(ts);
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700390 status = spi_sync(spi, &req->msg);
Jason Wang2991a1c2010-10-13 11:35:40 -0700391 ads7846_restart(ts);
392 mutex_unlock(&ts->lock);
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700393
394 if (status == 0) {
395 /* BE12 value, then padding */
396 status = be16_to_cpu(*((u16 *)&req->sample[1]));
397 status = status >> 3;
398 status &= 0x0fff;
399 }
400
401 kfree(req);
402 return status;
403}
404
David Brownell2c8dc072007-01-18 00:45:48 -0500405#if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE)
406
407#define SHOW(name, var, adjust) static ssize_t \
David Brownellffa458c2006-01-08 13:34:21 -0800408name ## _show(struct device *dev, struct device_attribute *attr, char *buf) \
409{ \
David Brownell2c8dc072007-01-18 00:45:48 -0500410 struct ads7846 *ts = dev_get_drvdata(dev); \
David Brownellffa458c2006-01-08 13:34:21 -0800411 ssize_t v = ads7846_read12_ser(dev, \
David Brownell2c8dc072007-01-18 00:45:48 -0500412 READ_12BIT_SER(var) | ADS_PD10_ALL_ON); \
David Brownellffa458c2006-01-08 13:34:21 -0800413 if (v < 0) \
414 return v; \
David Brownell2c8dc072007-01-18 00:45:48 -0500415 return sprintf(buf, "%u\n", adjust(ts, v)); \
David Brownellffa458c2006-01-08 13:34:21 -0800416} \
417static DEVICE_ATTR(name, S_IRUGO, name ## _show, NULL);
418
David Brownell2c8dc072007-01-18 00:45:48 -0500419
Adam Buchbinderb731d7b2009-03-13 12:15:26 -0400420/* Sysfs conventions report temperatures in millidegrees Celsius.
David Brownell2c8dc072007-01-18 00:45:48 -0500421 * ADS7846 could use the low-accuracy two-sample scheme, but can't do the high
422 * accuracy scheme without calibration data. For now we won't try either;
423 * userspace sees raw sensor values, and must scale/calibrate appropriately.
424 */
425static inline unsigned null_adjust(struct ads7846 *ts, ssize_t v)
426{
427 return v;
428}
429
430SHOW(temp0, temp0, null_adjust) /* temp1_input */
431SHOW(temp1, temp1, null_adjust) /* temp2_input */
432
433
434/* sysfs conventions report voltages in millivolts. We can convert voltages
435 * if we know vREF. userspace may need to scale vAUX to match the board's
436 * external resistors; we assume that vBATT only uses the internal ones.
437 */
438static inline unsigned vaux_adjust(struct ads7846 *ts, ssize_t v)
439{
440 unsigned retval = v;
441
442 /* external resistors may scale vAUX into 0..vREF */
David Brownell7c6d0ee2008-04-02 00:43:01 -0400443 retval *= ts->vref_mv;
David Brownell2c8dc072007-01-18 00:45:48 -0500444 retval = retval >> 12;
Jason Wang2991a1c2010-10-13 11:35:40 -0700445
David Brownell2c8dc072007-01-18 00:45:48 -0500446 return retval;
447}
448
449static inline unsigned vbatt_adjust(struct ads7846 *ts, ssize_t v)
450{
451 unsigned retval = vaux_adjust(ts, v);
452
453 /* ads7846 has a resistor ladder to scale this signal down */
454 if (ts->model == 7846)
455 retval *= 4;
Jason Wang2991a1c2010-10-13 11:35:40 -0700456
David Brownell2c8dc072007-01-18 00:45:48 -0500457 return retval;
458}
459
460SHOW(in0_input, vaux, vaux_adjust)
461SHOW(in1_input, vbatt, vbatt_adjust)
462
David Brownell2c8dc072007-01-18 00:45:48 -0500463static struct attribute *ads7846_attributes[] = {
464 &dev_attr_temp0.attr,
465 &dev_attr_temp1.attr,
466 &dev_attr_in0_input.attr,
467 &dev_attr_in1_input.attr,
468 NULL,
469};
470
471static struct attribute_group ads7846_attr_group = {
472 .attrs = ads7846_attributes,
473};
474
475static struct attribute *ads7843_attributes[] = {
476 &dev_attr_in0_input.attr,
477 &dev_attr_in1_input.attr,
478 NULL,
479};
480
481static struct attribute_group ads7843_attr_group = {
482 .attrs = ads7843_attributes,
483};
484
485static struct attribute *ads7845_attributes[] = {
486 &dev_attr_in0_input.attr,
487 NULL,
488};
489
490static struct attribute_group ads7845_attr_group = {
491 .attrs = ads7845_attributes,
492};
493
494static int ads784x_hwmon_register(struct spi_device *spi, struct ads7846 *ts)
495{
Tony Jones1beeffe2007-08-20 13:46:20 -0700496 struct device *hwmon;
David Brownell2c8dc072007-01-18 00:45:48 -0500497 int err;
498
499 /* hwmon sensors need a reference voltage */
500 switch (ts->model) {
501 case 7846:
David Brownell7c6d0ee2008-04-02 00:43:01 -0400502 if (!ts->vref_mv) {
David Brownell2c8dc072007-01-18 00:45:48 -0500503 dev_dbg(&spi->dev, "assuming 2.5V internal vREF\n");
David Brownell7c6d0ee2008-04-02 00:43:01 -0400504 ts->vref_mv = 2500;
David Brownell2c8dc072007-01-18 00:45:48 -0500505 }
506 break;
507 case 7845:
508 case 7843:
David Brownell7c6d0ee2008-04-02 00:43:01 -0400509 if (!ts->vref_mv) {
David Brownell2c8dc072007-01-18 00:45:48 -0500510 dev_warn(&spi->dev,
511 "external vREF for ADS%d not specified\n",
512 ts->model);
513 return 0;
514 }
515 break;
516 }
517
518 /* different chips have different sensor groups */
519 switch (ts->model) {
520 case 7846:
521 ts->attr_group = &ads7846_attr_group;
522 break;
523 case 7845:
524 ts->attr_group = &ads7845_attr_group;
525 break;
526 case 7843:
527 ts->attr_group = &ads7843_attr_group;
528 break;
529 default:
530 dev_dbg(&spi->dev, "ADS%d not recognized\n", ts->model);
531 return 0;
532 }
533
534 err = sysfs_create_group(&spi->dev.kobj, ts->attr_group);
535 if (err)
536 return err;
537
538 hwmon = hwmon_device_register(&spi->dev);
539 if (IS_ERR(hwmon)) {
540 sysfs_remove_group(&spi->dev.kobj, ts->attr_group);
541 return PTR_ERR(hwmon);
542 }
543
544 ts->hwmon = hwmon;
545 return 0;
546}
547
548static void ads784x_hwmon_unregister(struct spi_device *spi,
549 struct ads7846 *ts)
550{
551 if (ts->hwmon) {
552 sysfs_remove_group(&spi->dev.kobj, ts->attr_group);
553 hwmon_device_unregister(ts->hwmon);
554 }
555}
556
557#else
558static inline int ads784x_hwmon_register(struct spi_device *spi,
559 struct ads7846 *ts)
560{
561 return 0;
562}
563
564static inline void ads784x_hwmon_unregister(struct spi_device *spi,
565 struct ads7846 *ts)
566{
567}
568#endif
David Brownellffa458c2006-01-08 13:34:21 -0800569
Imre Deak438f2a72006-04-11 23:41:32 -0400570static ssize_t ads7846_pen_down_show(struct device *dev,
571 struct device_attribute *attr, char *buf)
572{
Jason Wang2991a1c2010-10-13 11:35:40 -0700573 struct ads7846 *ts = dev_get_drvdata(dev);
574
575 return sprintf(buf, "%u\n", ts->pendown);
Imre Deak438f2a72006-04-11 23:41:32 -0400576}
577
578static DEVICE_ATTR(pen_down, S_IRUGO, ads7846_pen_down_show, NULL);
579
Imre Deak7de90a82006-04-11 23:43:55 -0400580static ssize_t ads7846_disable_show(struct device *dev,
581 struct device_attribute *attr, char *buf)
582{
Jason Wang2991a1c2010-10-13 11:35:40 -0700583 struct ads7846 *ts = dev_get_drvdata(dev);
Imre Deak7de90a82006-04-11 23:43:55 -0400584
585 return sprintf(buf, "%u\n", ts->disabled);
586}
587
588static ssize_t ads7846_disable_store(struct device *dev,
589 struct device_attribute *attr,
590 const char *buf, size_t count)
591{
592 struct ads7846 *ts = dev_get_drvdata(dev);
Harvey Harrison3a0c58d2008-12-23 04:09:28 -0500593 unsigned long i;
Imre Deak7de90a82006-04-11 23:43:55 -0400594
Joe Rouvier160f1fe2008-08-10 00:29:25 -0400595 if (strict_strtoul(buf, 10, &i))
596 return -EINVAL;
597
Imre Deak7de90a82006-04-11 23:43:55 -0400598 if (i)
599 ads7846_disable(ts);
600 else
601 ads7846_enable(ts);
602
Imre Deak7de90a82006-04-11 23:43:55 -0400603 return count;
604}
605
606static DEVICE_ATTR(disable, 0664, ads7846_disable_show, ads7846_disable_store);
607
David Brownell2c8dc072007-01-18 00:45:48 -0500608static struct attribute *ads784x_attributes[] = {
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500609 &dev_attr_pen_down.attr,
610 &dev_attr_disable.attr,
611 NULL,
612};
613
David Brownell2c8dc072007-01-18 00:45:48 -0500614static struct attribute_group ads784x_attr_group = {
615 .attrs = ads784x_attributes,
Dmitry Torokhov8dd51652006-11-02 23:34:09 -0500616};
617
David Brownellffa458c2006-01-08 13:34:21 -0800618/*--------------------------------------------------------------------------*/
619
Eric Miao4d5975e2008-09-10 12:06:15 -0400620static int get_pendown_state(struct ads7846 *ts)
621{
622 if (ts->get_pendown_state)
623 return ts->get_pendown_state();
624
625 return !gpio_get_value(ts->gpio_pendown);
626}
627
Eric Miaofd746d52009-04-11 16:54:59 -0700628static void null_wait_for_sync(void)
629{
630}
631
Jason Wang2991a1c2010-10-13 11:35:40 -0700632static int ads7846_debounce_filter(void *ads, int data_idx, int *val)
David Brownellffa458c2006-01-08 13:34:21 -0800633{
Jason Wang2991a1c2010-10-13 11:35:40 -0700634 struct ads7846 *ts = ads;
David Brownellffa458c2006-01-08 13:34:21 -0800635
Jason Wang2991a1c2010-10-13 11:35:40 -0700636 if (!ts->read_cnt || (abs(ts->last_read - *val) > ts->debounce_tol)) {
637 /* Start over collecting consistent readings. */
638 ts->read_rep = 0;
639 /*
640 * Repeat it, if this was the first read or the read
641 * wasn't consistent enough.
642 */
643 if (ts->read_cnt < ts->debounce_max) {
644 ts->last_read = *val;
645 ts->read_cnt++;
646 return ADS7846_FILTER_REPEAT;
647 } else {
648 /*
649 * Maximum number of debouncing reached and still
650 * not enough number of consistent readings. Abort
651 * the whole sample, repeat it in the next sampling
652 * period.
653 */
654 ts->read_cnt = 0;
655 return ADS7846_FILTER_IGNORE;
656 }
657 } else {
658 if (++ts->read_rep > ts->debounce_rep) {
659 /*
660 * Got a good reading for this coordinate,
661 * go for the next one.
662 */
663 ts->read_cnt = 0;
664 ts->read_rep = 0;
665 return ADS7846_FILTER_OK;
666 } else {
667 /* Read more values that are consistent. */
668 ts->read_cnt++;
669 return ADS7846_FILTER_REPEAT;
670 }
671 }
672}
673
674static int ads7846_no_filter(void *ads, int data_idx, int *val)
675{
676 return ADS7846_FILTER_OK;
677}
678
679static int ads7846_get_value(struct ads7846 *ts, struct spi_message *m)
680{
681 struct spi_transfer *t =
682 list_entry(m->transfers.prev, struct spi_transfer, transfer_list);
683
684 if (ts->model == 7845) {
685 return be16_to_cpup((__be16 *)&(((char*)t->rx_buf)[1])) >> 3;
686 } else {
687 /*
688 * adjust: on-wire is a must-ignore bit, a BE12 value, then
689 * padding; built from two 8 bit values written msb-first.
690 */
691 return be16_to_cpup((__be16 *)t->rx_buf) >> 3;
692 }
693}
694
695static void ads7846_update_value(struct spi_message *m, int val)
696{
697 struct spi_transfer *t =
698 list_entry(m->transfers.prev, struct spi_transfer, transfer_list);
699
700 *(u16 *)t->rx_buf = val;
701}
702
703static void ads7846_read_state(struct ads7846 *ts)
704{
705 struct ads7846_packet *packet = ts->packet;
706 struct spi_message *m;
707 int msg_idx = 0;
708 int val;
709 int action;
710 int error;
711
712 while (msg_idx < ts->msg_count) {
713
714 ts->wait_for_sync();
715
716 m = &ts->msg[msg_idx];
717 error = spi_sync(ts->spi, m);
718 if (error) {
719 dev_err(&ts->spi->dev, "spi_async --> %d\n", error);
720 packet->tc.ignore = true;
721 return;
722 }
723
724 /*
725 * Last message is power down request, no need to convert
726 * or filter the value.
727 */
728 if (msg_idx < ts->msg_count - 1) {
729
730 val = ads7846_get_value(ts, m);
731
732 action = ts->filter(ts->filter_data, msg_idx, &val);
733 switch (action) {
734 case ADS7846_FILTER_REPEAT:
735 continue;
736
737 case ADS7846_FILTER_IGNORE:
738 packet->tc.ignore = true;
739 msg_idx = ts->msg_count - 1;
740 continue;
741
742 case ADS7846_FILTER_OK:
743 ads7846_update_value(m, val);
744 packet->tc.ignore = false;
745 msg_idx++;
746 break;
747
748 default:
749 BUG();
750 }
751 } else {
752 msg_idx++;
753 }
754 }
755}
756
757static void ads7846_report_state(struct ads7846 *ts)
758{
759 struct ads7846_packet *packet = ts->packet;
760 unsigned int Rt;
761 u16 x, y, z1, z2;
762
763 /*
764 * ads7846_get_value() does in-place conversion (including byte swap)
765 * from on-the-wire format as part of debouncing to get stable
766 * readings.
David Brownellffa458c2006-01-08 13:34:21 -0800767 */
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700768 if (ts->model == 7845) {
769 x = *(u16 *)packet->tc.x_buf;
770 y = *(u16 *)packet->tc.y_buf;
771 z1 = 0;
772 z2 = 0;
773 } else {
774 x = packet->tc.x;
775 y = packet->tc.y;
776 z1 = packet->tc.z1;
777 z2 = packet->tc.z2;
778 }
David Brownellffa458c2006-01-08 13:34:21 -0800779
780 /* range filtering */
781 if (x == MAX_12BIT)
782 x = 0;
783
Hans-Christian Egtvedt9460b652008-07-23 14:38:27 -0400784 if (ts->model == 7843) {
785 Rt = ts->pressure_max / 2;
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -0700786 } else if (ts->model == 7845) {
787 if (get_pendown_state(ts))
788 Rt = ts->pressure_max / 2;
789 else
790 Rt = 0;
791 dev_vdbg(&ts->spi->dev, "x/y: %d/%d, PD %d\n", x, y, Rt);
Hans-Christian Egtvedt9460b652008-07-23 14:38:27 -0400792 } else if (likely(x && z1)) {
David Brownellffa458c2006-01-08 13:34:21 -0800793 /* compute touch pressure resistance using equation #2 */
794 Rt = z2;
795 Rt -= z1;
796 Rt *= x;
797 Rt *= ts->x_plate_ohms;
798 Rt /= z1;
799 Rt = (Rt + 2047) >> 12;
Hans-Christian Egtvedt9460b652008-07-23 14:38:27 -0400800 } else {
David Brownellffa458c2006-01-08 13:34:21 -0800801 Rt = 0;
Hans-Christian Egtvedt9460b652008-07-23 14:38:27 -0400802 }
Nicolas Ferre969111e2007-02-28 23:51:03 -0500803
Jason Wang2991a1c2010-10-13 11:35:40 -0700804 /*
805 * Sample found inconsistent by debouncing or pressure is beyond
Imre Deak1936d592007-01-18 00:45:31 -0500806 * the maximum. Don't report it to user space, repeat at least
807 * once more the measurement
808 */
Dmitry Torokhove8f462d2008-10-09 00:52:23 -0400809 if (packet->tc.ignore || Rt > ts->pressure_max) {
Pavel Machek52ce4eaa2009-11-23 08:25:17 -0800810 dev_vdbg(&ts->spi->dev, "ignored %d pressure %d\n",
811 packet->tc.ignore, Rt);
Imre Deakd5b415c2006-04-26 00:13:18 -0400812 return;
813 }
814
Jason Wang2991a1c2010-10-13 11:35:40 -0700815 /*
816 * Maybe check the pendown state before reporting. This discards
Semih Hazar1d258912007-07-18 00:36:04 -0400817 * false readings when the pen is lifted.
818 */
819 if (ts->penirq_recheck_delay_usecs) {
820 udelay(ts->penirq_recheck_delay_usecs);
Eric Miao4d5975e2008-09-10 12:06:15 -0400821 if (!get_pendown_state(ts))
Semih Hazar1d258912007-07-18 00:36:04 -0400822 Rt = 0;
823 }
824
Jason Wang2991a1c2010-10-13 11:35:40 -0700825 /*
826 * NOTE: We can't rely on the pressure to determine the pen down
827 * state, even this controller has a pressure sensor. The pressure
Imre Deak15e35892007-01-18 00:45:43 -0500828 * value can fluctuate for quite a while after lifting the pen and
829 * in some cases may not even settle at the expected value.
David Brownellffa458c2006-01-08 13:34:21 -0800830 *
Imre Deak15e35892007-01-18 00:45:43 -0500831 * The only safe way to check for the pen up condition is in the
832 * timer by reading the pen signal state (it's a GPIO _and_ IRQ).
David Brownellffa458c2006-01-08 13:34:21 -0800833 */
David Brownellffa458c2006-01-08 13:34:21 -0800834 if (Rt) {
Imre Deak15e35892007-01-18 00:45:43 -0500835 struct input_dev *input = ts->input;
Imre Deakae82d5a2006-04-26 00:12:14 -0400836
Michael Roth86579a42009-05-18 16:04:44 -0700837 if (ts->swap_xy)
838 swap(x, y);
839
Jason Wang2991a1c2010-10-13 11:35:40 -0700840 if (!ts->pendown) {
841 input_report_key(input, BTN_TOUCH, 1);
842 ts->pendown = true;
843 dev_vdbg(&ts->spi->dev, "DOWN\n");
844 }
845
Imre Deak15e35892007-01-18 00:45:43 -0500846 input_report_abs(input, ABS_X, x);
847 input_report_abs(input, ABS_Y, y);
Pavel Machek30ad7ba2009-11-23 08:17:38 -0800848 input_report_abs(input, ABS_PRESSURE, ts->pressure_max - Rt);
David Brownellffa458c2006-01-08 13:34:21 -0800849
Imre Deak15e35892007-01-18 00:45:43 -0500850 input_sync(input);
Pavel Machek52ce4eaa2009-11-23 08:25:17 -0800851 dev_vdbg(&ts->spi->dev, "%4d/%4d/%4d\n", x, y, Rt);
Imre Deak15e35892007-01-18 00:45:43 -0500852 }
David Brownellffa458c2006-01-08 13:34:21 -0800853}
854
Jason Wang2991a1c2010-10-13 11:35:40 -0700855static irqreturn_t ads7846_hard_irq(int irq, void *handle)
Imre Deak0b7018a2006-04-11 23:42:03 -0400856{
Jason Wang2991a1c2010-10-13 11:35:40 -0700857 struct ads7846 *ts = handle;
Imre Deak0b7018a2006-04-11 23:42:03 -0400858
Jason Wang2991a1c2010-10-13 11:35:40 -0700859 return get_pendown_state(ts) ? IRQ_WAKE_THREAD : IRQ_HANDLED;
Imre Deakda970e62007-01-18 00:44:41 -0500860}
861
David Brownellffa458c2006-01-08 13:34:21 -0800862
David Howells7d12e782006-10-05 14:55:46 +0100863static irqreturn_t ads7846_irq(int irq, void *handle)
David Brownellffa458c2006-01-08 13:34:21 -0800864{
Imre Deak0b7018a2006-04-11 23:42:03 -0400865 struct ads7846 *ts = handle;
Imre Deak0b7018a2006-04-11 23:42:03 -0400866
Jason Wang2991a1c2010-10-13 11:35:40 -0700867 /* Start with a small delay before checking pendown state */
868 msleep(TS_POLL_DELAY);
869
870 while (!ts->stopped && get_pendown_state(ts)) {
871
872 /* pen is down, continue with the measurement */
873 ads7846_read_state(ts);
874
875 if (!ts->stopped)
876 ads7846_report_state(ts);
877
878 wait_event_timeout(ts->wait, ts->stopped,
879 msecs_to_jiffies(TS_POLL_PERIOD));
Imre Deak0b7018a2006-04-11 23:42:03 -0400880 }
Jason Wang2991a1c2010-10-13 11:35:40 -0700881
882 if (ts->pendown) {
883 struct input_dev *input = ts->input;
884
885 input_report_key(input, BTN_TOUCH, 0);
886 input_report_abs(input, ABS_PRESSURE, 0);
887 input_sync(input);
888
889 ts->pendown = false;
890 dev_vdbg(&ts->spi->dev, "UP\n");
891 }
Imre Deak7de90a82006-04-11 23:43:55 -0400892
893 return IRQ_HANDLED;
David Brownellffa458c2006-01-08 13:34:21 -0800894}
895
Mark Brown3c36e712011-01-20 22:51:26 -0800896#ifdef CONFIG_PM_SLEEP
897static int ads7846_suspend(struct device *dev)
Imre Deak7de90a82006-04-11 23:43:55 -0400898{
Mark Brown3c36e712011-01-20 22:51:26 -0800899 struct ads7846 *ts = dev_get_drvdata(dev);
Imre Deak7de90a82006-04-11 23:43:55 -0400900
Jason Wang2991a1c2010-10-13 11:35:40 -0700901 mutex_lock(&ts->lock);
Imre Deak7de90a82006-04-11 23:43:55 -0400902
Jason Wang2991a1c2010-10-13 11:35:40 -0700903 if (!ts->suspended) {
Imre Deak7de90a82006-04-11 23:43:55 -0400904
Jason Wang2991a1c2010-10-13 11:35:40 -0700905 if (!ts->disabled)
906 __ads7846_disable(ts);
Imre Deak7de90a82006-04-11 23:43:55 -0400907
Jason Wang2991a1c2010-10-13 11:35:40 -0700908 if (device_may_wakeup(&ts->spi->dev))
909 enable_irq_wake(ts->spi->irq);
910
911 ts->suspended = true;
912 }
913
914 mutex_unlock(&ts->lock);
Ranjith Lohithakshanfdba2bb2010-03-10 23:41:22 -0800915
David Brownellffa458c2006-01-08 13:34:21 -0800916 return 0;
917}
918
Mark Brown3c36e712011-01-20 22:51:26 -0800919static int ads7846_resume(struct device *dev)
David Brownellffa458c2006-01-08 13:34:21 -0800920{
Mark Brown3c36e712011-01-20 22:51:26 -0800921 struct ads7846 *ts = dev_get_drvdata(dev);
David Brownellffa458c2006-01-08 13:34:21 -0800922
Jason Wang2991a1c2010-10-13 11:35:40 -0700923 mutex_lock(&ts->lock);
Ranjith Lohithakshanfdba2bb2010-03-10 23:41:22 -0800924
Jason Wang2991a1c2010-10-13 11:35:40 -0700925 if (ts->suspended) {
Imre Deak7de90a82006-04-11 23:43:55 -0400926
Jason Wang2991a1c2010-10-13 11:35:40 -0700927 ts->suspended = false;
Imre Deak7de90a82006-04-11 23:43:55 -0400928
Jason Wang2991a1c2010-10-13 11:35:40 -0700929 if (device_may_wakeup(&ts->spi->dev))
930 disable_irq_wake(ts->spi->irq);
931
932 if (!ts->disabled)
933 __ads7846_enable(ts);
934 }
935
936 mutex_unlock(&ts->lock);
Imre Deak7de90a82006-04-11 23:43:55 -0400937
David Brownellffa458c2006-01-08 13:34:21 -0800938 return 0;
939}
Mark Brown3c36e712011-01-20 22:51:26 -0800940#endif
941
942static SIMPLE_DEV_PM_OPS(ads7846_pm, ads7846_suspend, ads7846_resume);
David Brownellffa458c2006-01-08 13:34:21 -0800943
Jason Wang2991a1c2010-10-13 11:35:40 -0700944static int __devinit ads7846_setup_pendown(struct spi_device *spi, struct ads7846 *ts)
Eric Miao4d5975e2008-09-10 12:06:15 -0400945{
946 struct ads7846_platform_data *pdata = spi->dev.platform_data;
947 int err;
948
949 /* REVISIT when the irq can be triggered active-low, or if for some
950 * reason the touchscreen isn't hooked up, we don't need to access
951 * the pendown state.
952 */
953 if (!pdata->get_pendown_state && !gpio_is_valid(pdata->gpio_pendown)) {
954 dev_err(&spi->dev, "no get_pendown_state nor gpio_pendown?\n");
955 return -EINVAL;
956 }
957
958 if (pdata->get_pendown_state) {
959 ts->get_pendown_state = pdata->get_pendown_state;
960 return 0;
961 }
962
963 err = gpio_request(pdata->gpio_pendown, "ads7846_pendown");
964 if (err) {
965 dev_err(&spi->dev, "failed to request pendown GPIO%d\n",
Jason Wang2991a1c2010-10-13 11:35:40 -0700966 pdata->gpio_pendown);
Eric Miao4d5975e2008-09-10 12:06:15 -0400967 return err;
968 }
969
970 ts->gpio_pendown = pdata->gpio_pendown;
Jason Wang2991a1c2010-10-13 11:35:40 -0700971
Eric Miao4d5975e2008-09-10 12:06:15 -0400972 return 0;
973}
974
Jason Wang2991a1c2010-10-13 11:35:40 -0700975/*
976 * Set up the transfers to read touchscreen state; this assumes we
977 * use formula #2 for pressure, not #3.
978 */
979static void __devinit ads7846_setup_spi_msg(struct ads7846 *ts,
980 const struct ads7846_platform_data *pdata)
David Brownellffa458c2006-01-08 13:34:21 -0800981{
Jason Wang2991a1c2010-10-13 11:35:40 -0700982 struct spi_message *m = &ts->msg[0];
983 struct spi_transfer *x = ts->xfer;
984 struct ads7846_packet *packet = ts->packet;
985 int vref = pdata->keep_vref_on;
Imre Deakde2defd2007-01-18 00:45:21 -0500986
Michael Hennerich06a09122010-03-09 20:38:45 -0800987 if (ts->model == 7873) {
Jason Wang2991a1c2010-10-13 11:35:40 -0700988 /*
989 * The AD7873 is almost identical to the ADS7846
Michael Hennerich06a09122010-03-09 20:38:45 -0800990 * keep VREF off during differential/ratiometric
Jason Wang2991a1c2010-10-13 11:35:40 -0700991 * conversion modes.
Michael Hennerich06a09122010-03-09 20:38:45 -0800992 */
993 ts->model = 7846;
994 vref = 0;
995 }
996
Jason Wang2991a1c2010-10-13 11:35:40 -0700997 ts->msg_count = 1;
Imre Deak0b7018a2006-04-11 23:42:03 -0400998 spi_message_init(m);
Jason Wang2991a1c2010-10-13 11:35:40 -0700999 m->context = ts;
Imre Deak0b7018a2006-04-11 23:42:03 -04001000
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001001 if (ts->model == 7845) {
1002 packet->read_y_cmd[0] = READ_Y(vref);
1003 packet->read_y_cmd[1] = 0;
1004 packet->read_y_cmd[2] = 0;
1005 x->tx_buf = &packet->read_y_cmd[0];
1006 x->rx_buf = &packet->tc.y_buf[0];
1007 x->len = 3;
1008 spi_message_add_tail(x, m);
1009 } else {
1010 /* y- still on; turn on only y+ (and ADC) */
1011 packet->read_y = READ_Y(vref);
1012 x->tx_buf = &packet->read_y;
1013 x->len = 1;
1014 spi_message_add_tail(x, m);
David Brownelld93f70b2006-02-15 00:49:35 -05001015
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001016 x++;
1017 x->rx_buf = &packet->tc.y;
1018 x->len = 2;
1019 spi_message_add_tail(x, m);
1020 }
David Brownellffa458c2006-01-08 13:34:21 -08001021
Jason Wang2991a1c2010-10-13 11:35:40 -07001022 /*
1023 * The first sample after switching drivers can be low quality;
Semih Hazare4f48862007-07-18 00:35:56 -04001024 * optionally discard it, using a second one after the signals
1025 * have had enough time to stabilize.
1026 */
1027 if (pdata->settle_delay_usecs) {
1028 x->delay_usecs = pdata->settle_delay_usecs;
1029
1030 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001031 x->tx_buf = &packet->read_y;
Semih Hazare4f48862007-07-18 00:35:56 -04001032 x->len = 1;
1033 spi_message_add_tail(x, m);
1034
1035 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001036 x->rx_buf = &packet->tc.y;
Semih Hazare4f48862007-07-18 00:35:56 -04001037 x->len = 2;
1038 spi_message_add_tail(x, m);
1039 }
1040
Jason Wang2991a1c2010-10-13 11:35:40 -07001041 ts->msg_count++;
Imre Deak0b7018a2006-04-11 23:42:03 -04001042 m++;
1043 spi_message_init(m);
Jason Wang2991a1c2010-10-13 11:35:40 -07001044 m->context = ts;
David Brownellffa458c2006-01-08 13:34:21 -08001045
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001046 if (ts->model == 7845) {
1047 x++;
1048 packet->read_x_cmd[0] = READ_X(vref);
1049 packet->read_x_cmd[1] = 0;
1050 packet->read_x_cmd[2] = 0;
1051 x->tx_buf = &packet->read_x_cmd[0];
1052 x->rx_buf = &packet->tc.x_buf[0];
1053 x->len = 3;
1054 spi_message_add_tail(x, m);
1055 } else {
1056 /* turn y- off, x+ on, then leave in lowpower */
1057 x++;
1058 packet->read_x = READ_X(vref);
1059 x->tx_buf = &packet->read_x;
1060 x->len = 1;
1061 spi_message_add_tail(x, m);
David Brownelld93f70b2006-02-15 00:49:35 -05001062
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001063 x++;
1064 x->rx_buf = &packet->tc.x;
1065 x->len = 2;
1066 spi_message_add_tail(x, m);
1067 }
Imre Deak0b7018a2006-04-11 23:42:03 -04001068
Semih Hazare4f48862007-07-18 00:35:56 -04001069 /* ... maybe discard first sample ... */
1070 if (pdata->settle_delay_usecs) {
1071 x->delay_usecs = pdata->settle_delay_usecs;
1072
1073 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001074 x->tx_buf = &packet->read_x;
Semih Hazare4f48862007-07-18 00:35:56 -04001075 x->len = 1;
1076 spi_message_add_tail(x, m);
1077
1078 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001079 x->rx_buf = &packet->tc.x;
Semih Hazare4f48862007-07-18 00:35:56 -04001080 x->len = 2;
1081 spi_message_add_tail(x, m);
1082 }
1083
Imre Deak0b7018a2006-04-11 23:42:03 -04001084 /* turn y+ off, x- on; we'll use formula #2 */
1085 if (ts->model == 7846) {
Jason Wang2991a1c2010-10-13 11:35:40 -07001086 ts->msg_count++;
Imre Deak0b7018a2006-04-11 23:42:03 -04001087 m++;
1088 spi_message_init(m);
Jason Wang2991a1c2010-10-13 11:35:40 -07001089 m->context = ts;
Imre Deak0b7018a2006-04-11 23:42:03 -04001090
1091 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001092 packet->read_z1 = READ_Z1(vref);
1093 x->tx_buf = &packet->read_z1;
Imre Deak0b7018a2006-04-11 23:42:03 -04001094 x->len = 1;
1095 spi_message_add_tail(x, m);
1096
1097 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001098 x->rx_buf = &packet->tc.z1;
Imre Deak0b7018a2006-04-11 23:42:03 -04001099 x->len = 2;
1100 spi_message_add_tail(x, m);
1101
Semih Hazare4f48862007-07-18 00:35:56 -04001102 /* ... maybe discard first sample ... */
1103 if (pdata->settle_delay_usecs) {
1104 x->delay_usecs = pdata->settle_delay_usecs;
1105
1106 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001107 x->tx_buf = &packet->read_z1;
Semih Hazare4f48862007-07-18 00:35:56 -04001108 x->len = 1;
1109 spi_message_add_tail(x, m);
1110
1111 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001112 x->rx_buf = &packet->tc.z1;
Semih Hazare4f48862007-07-18 00:35:56 -04001113 x->len = 2;
1114 spi_message_add_tail(x, m);
1115 }
1116
Jason Wang2991a1c2010-10-13 11:35:40 -07001117 ts->msg_count++;
Imre Deak0b7018a2006-04-11 23:42:03 -04001118 m++;
1119 spi_message_init(m);
Jason Wang2991a1c2010-10-13 11:35:40 -07001120 m->context = ts;
Imre Deak0b7018a2006-04-11 23:42:03 -04001121
1122 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001123 packet->read_z2 = READ_Z2(vref);
1124 x->tx_buf = &packet->read_z2;
Imre Deak0b7018a2006-04-11 23:42:03 -04001125 x->len = 1;
1126 spi_message_add_tail(x, m);
1127
1128 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001129 x->rx_buf = &packet->tc.z2;
Imre Deak0b7018a2006-04-11 23:42:03 -04001130 x->len = 2;
1131 spi_message_add_tail(x, m);
1132
Semih Hazare4f48862007-07-18 00:35:56 -04001133 /* ... maybe discard first sample ... */
1134 if (pdata->settle_delay_usecs) {
1135 x->delay_usecs = pdata->settle_delay_usecs;
1136
1137 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001138 x->tx_buf = &packet->read_z2;
Semih Hazare4f48862007-07-18 00:35:56 -04001139 x->len = 1;
1140 spi_message_add_tail(x, m);
1141
1142 x++;
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001143 x->rx_buf = &packet->tc.z2;
Semih Hazare4f48862007-07-18 00:35:56 -04001144 x->len = 2;
1145 spi_message_add_tail(x, m);
1146 }
Imre Deak0b7018a2006-04-11 23:42:03 -04001147 }
Imre Deak53a0ef892006-04-11 23:41:49 -04001148
1149 /* power down */
Jason Wang2991a1c2010-10-13 11:35:40 -07001150 ts->msg_count++;
Imre Deak0b7018a2006-04-11 23:42:03 -04001151 m++;
1152 spi_message_init(m);
Jason Wang2991a1c2010-10-13 11:35:40 -07001153 m->context = ts;
Imre Deak0b7018a2006-04-11 23:42:03 -04001154
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001155 if (ts->model == 7845) {
1156 x++;
1157 packet->pwrdown_cmd[0] = PWRDOWN;
1158 packet->pwrdown_cmd[1] = 0;
1159 packet->pwrdown_cmd[2] = 0;
1160 x->tx_buf = &packet->pwrdown_cmd[0];
1161 x->len = 3;
1162 } else {
1163 x++;
1164 packet->pwrdown = PWRDOWN;
1165 x->tx_buf = &packet->pwrdown;
1166 x->len = 1;
1167 spi_message_add_tail(x, m);
Imre Deak53a0ef892006-04-11 23:41:49 -04001168
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001169 x++;
1170 x->rx_buf = &packet->dummy;
1171 x->len = 2;
1172 }
1173
David Brownelld93f70b2006-02-15 00:49:35 -05001174 CS_CHANGE(*x);
Imre Deak0b7018a2006-04-11 23:42:03 -04001175 spi_message_add_tail(x, m);
Jason Wang2991a1c2010-10-13 11:35:40 -07001176}
David Brownellffa458c2006-01-08 13:34:21 -08001177
Jason Wang2991a1c2010-10-13 11:35:40 -07001178static int __devinit ads7846_probe(struct spi_device *spi)
1179{
1180 struct ads7846 *ts;
1181 struct ads7846_packet *packet;
1182 struct input_dev *input_dev;
1183 struct ads7846_platform_data *pdata = spi->dev.platform_data;
1184 unsigned long irq_flags;
1185 int err;
David Brownellffa458c2006-01-08 13:34:21 -08001186
Jason Wang2991a1c2010-10-13 11:35:40 -07001187 if (!spi->irq) {
1188 dev_dbg(&spi->dev, "no IRQ?\n");
1189 return -ENODEV;
1190 }
1191
1192 if (!pdata) {
1193 dev_dbg(&spi->dev, "no platform data?\n");
1194 return -ENODEV;
1195 }
1196
1197 /* don't exceed max specified sample rate */
1198 if (spi->max_speed_hz > (125000 * SAMPLE_BITS)) {
1199 dev_dbg(&spi->dev, "f(sample) %d KHz?\n",
1200 (spi->max_speed_hz/SAMPLE_BITS)/1000);
1201 return -EINVAL;
1202 }
1203
1204 /* We'd set TX word size 8 bits and RX word size to 13 bits ... except
1205 * that even if the hardware can do that, the SPI controller driver
1206 * may not. So we stick to very-portable 8 bit words, both RX and TX.
1207 */
1208 spi->bits_per_word = 8;
1209 spi->mode = SPI_MODE_0;
1210 err = spi_setup(spi);
1211 if (err < 0)
1212 return err;
1213
1214 ts = kzalloc(sizeof(struct ads7846), GFP_KERNEL);
1215 packet = kzalloc(sizeof(struct ads7846_packet), GFP_KERNEL);
1216 input_dev = input_allocate_device();
1217 if (!ts || !packet || !input_dev) {
1218 err = -ENOMEM;
1219 goto err_free_mem;
1220 }
1221
1222 dev_set_drvdata(&spi->dev, ts);
1223
1224 ts->packet = packet;
1225 ts->spi = spi;
1226 ts->input = input_dev;
1227 ts->vref_mv = pdata->vref_mv;
1228 ts->swap_xy = pdata->swap_xy;
1229
1230 mutex_init(&ts->lock);
1231 init_waitqueue_head(&ts->wait);
1232
1233 ts->model = pdata->model ? : 7846;
1234 ts->vref_delay_usecs = pdata->vref_delay_usecs ? : 100;
1235 ts->x_plate_ohms = pdata->x_plate_ohms ? : 400;
1236 ts->pressure_max = pdata->pressure_max ? : ~0;
1237
1238 if (pdata->filter != NULL) {
1239 if (pdata->filter_init != NULL) {
1240 err = pdata->filter_init(pdata, &ts->filter_data);
1241 if (err < 0)
1242 goto err_free_mem;
1243 }
1244 ts->filter = pdata->filter;
1245 ts->filter_cleanup = pdata->filter_cleanup;
1246 } else if (pdata->debounce_max) {
1247 ts->debounce_max = pdata->debounce_max;
1248 if (ts->debounce_max < 2)
1249 ts->debounce_max = 2;
1250 ts->debounce_tol = pdata->debounce_tol;
1251 ts->debounce_rep = pdata->debounce_rep;
1252 ts->filter = ads7846_debounce_filter;
1253 ts->filter_data = ts;
1254 } else {
1255 ts->filter = ads7846_no_filter;
1256 }
1257
1258 err = ads7846_setup_pendown(spi, ts);
1259 if (err)
1260 goto err_cleanup_filter;
1261
1262 if (pdata->penirq_recheck_delay_usecs)
1263 ts->penirq_recheck_delay_usecs =
1264 pdata->penirq_recheck_delay_usecs;
1265
1266 ts->wait_for_sync = pdata->wait_for_sync ? : null_wait_for_sync;
1267
1268 snprintf(ts->phys, sizeof(ts->phys), "%s/input0", dev_name(&spi->dev));
1269 snprintf(ts->name, sizeof(ts->name), "ADS%d Touchscreen", ts->model);
1270
1271 input_dev->name = ts->name;
1272 input_dev->phys = ts->phys;
1273 input_dev->dev.parent = &spi->dev;
1274
1275 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
1276 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
1277 input_set_abs_params(input_dev, ABS_X,
1278 pdata->x_min ? : 0,
1279 pdata->x_max ? : MAX_12BIT,
1280 0, 0);
1281 input_set_abs_params(input_dev, ABS_Y,
1282 pdata->y_min ? : 0,
1283 pdata->y_max ? : MAX_12BIT,
1284 0, 0);
1285 input_set_abs_params(input_dev, ABS_PRESSURE,
1286 pdata->pressure_min, pdata->pressure_max, 0, 0);
1287
1288 ads7846_setup_spi_msg(ts, pdata);
Imre Deakd5b415c2006-04-26 00:13:18 -04001289
Grazvydas Ignotas91143372010-02-25 02:04:56 -08001290 ts->reg = regulator_get(&spi->dev, "vcc");
1291 if (IS_ERR(ts->reg)) {
Kevin Hilman067fb2f2010-05-26 23:30:55 -07001292 err = PTR_ERR(ts->reg);
Dmitry Torokhov56960b32010-06-02 00:40:06 -07001293 dev_err(&spi->dev, "unable to get regulator: %d\n", err);
Grazvydas Ignotas91143372010-02-25 02:04:56 -08001294 goto err_free_gpio;
1295 }
1296
1297 err = regulator_enable(ts->reg);
1298 if (err) {
1299 dev_err(&spi->dev, "unable to enable regulator: %d\n", err);
1300 goto err_put_regulator;
1301 }
1302
Dmitry Torokhov0f622bf2010-07-01 09:01:50 -07001303 irq_flags = pdata->irq_flags ? : IRQF_TRIGGER_FALLING;
Jason Wang2991a1c2010-10-13 11:35:40 -07001304 irq_flags |= IRQF_ONESHOT;
Anatolij Gustschin78043022010-06-28 01:25:19 -07001305
Jason Wang2991a1c2010-10-13 11:35:40 -07001306 err = request_threaded_irq(spi->irq, ads7846_hard_irq, ads7846_irq,
1307 irq_flags, spi->dev.driver->name, ts);
Dmitry Torokhov0f622bf2010-07-01 09:01:50 -07001308 if (err && !pdata->irq_flags) {
Michael Rothc57c0a22009-06-10 23:30:55 -07001309 dev_info(&spi->dev,
1310 "trying pin change workaround on irq %d\n", spi->irq);
Jason Wang2991a1c2010-10-13 11:35:40 -07001311 irq_flags |= IRQF_TRIGGER_RISING;
1312 err = request_threaded_irq(spi->irq,
1313 ads7846_hard_irq, ads7846_irq,
1314 irq_flags, spi->dev.driver->name, ts);
Dmitry Torokhov0f622bf2010-07-01 09:01:50 -07001315 }
1316
1317 if (err) {
1318 dev_dbg(&spi->dev, "irq %d busy?\n", spi->irq);
1319 goto err_disable_regulator;
David Brownellffa458c2006-01-08 13:34:21 -08001320 }
David Brownellffa458c2006-01-08 13:34:21 -08001321
David Brownell2c8dc072007-01-18 00:45:48 -05001322 err = ads784x_hwmon_register(spi, ts);
1323 if (err)
1324 goto err_free_irq;
1325
David Brownell2e5a7bd2006-01-08 13:34:25 -08001326 dev_info(&spi->dev, "touchscreen, irq %d\n", spi->irq);
David Brownellffa458c2006-01-08 13:34:21 -08001327
Jason Wang2991a1c2010-10-13 11:35:40 -07001328 /*
1329 * Take a first sample, leaving nPENIRQ active and vREF off; avoid
David Brownellffa458c2006-01-08 13:34:21 -08001330 * the touchscreen, in case it's not connected.
1331 */
Anatolij Gustschin3eac5c72010-07-01 09:01:56 -07001332 if (ts->model == 7845)
1333 ads7845_read12_ser(&spi->dev, PWRDOWN);
1334 else
1335 (void) ads7846_read12_ser(&spi->dev,
1336 READ_12BIT_SER(vaux) | ADS_PD10_ALL_ON);
David Brownellffa458c2006-01-08 13:34:21 -08001337
David Brownell2c8dc072007-01-18 00:45:48 -05001338 err = sysfs_create_group(&spi->dev.kobj, &ads784x_attr_group);
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001339 if (err)
David Brownell2c8dc072007-01-18 00:45:48 -05001340 goto err_remove_hwmon;
Imre Deak7de90a82006-04-11 23:43:55 -04001341
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001342 err = input_register_device(input_dev);
1343 if (err)
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001344 goto err_remove_attr_group;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001345
Ranjith Lohithakshanfdba2bb2010-03-10 23:41:22 -08001346 device_init_wakeup(&spi->dev, pdata->wakeup);
1347
David Brownellffa458c2006-01-08 13:34:21 -08001348 return 0;
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001349
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001350 err_remove_attr_group:
David Brownell2c8dc072007-01-18 00:45:48 -05001351 sysfs_remove_group(&spi->dev.kobj, &ads784x_attr_group);
1352 err_remove_hwmon:
1353 ads784x_hwmon_unregister(spi, ts);
Dmitry Torokhov8dd51652006-11-02 23:34:09 -05001354 err_free_irq:
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001355 free_irq(spi->irq, ts);
Grazvydas Ignotas91143372010-02-25 02:04:56 -08001356 err_disable_regulator:
1357 regulator_disable(ts->reg);
1358 err_put_regulator:
1359 regulator_put(ts->reg);
Eric Miao4d5975e2008-09-10 12:06:15 -04001360 err_free_gpio:
1361 if (ts->gpio_pendown != -1)
1362 gpio_free(ts->gpio_pendown);
Imre Deakda970e62007-01-18 00:44:41 -05001363 err_cleanup_filter:
1364 if (ts->filter_cleanup)
1365 ts->filter_cleanup(ts->filter_data);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001366 err_free_mem:
1367 input_free_device(input_dev);
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001368 kfree(packet);
Dmitry Torokhova90f7e92006-02-15 00:49:22 -05001369 kfree(ts);
1370 return err;
David Brownellffa458c2006-01-08 13:34:21 -08001371}
1372
David Brownell2e5a7bd2006-01-08 13:34:25 -08001373static int __devexit ads7846_remove(struct spi_device *spi)
David Brownellffa458c2006-01-08 13:34:21 -08001374{
Jason Wang2991a1c2010-10-13 11:35:40 -07001375 struct ads7846 *ts = dev_get_drvdata(&spi->dev);
David Brownellffa458c2006-01-08 13:34:21 -08001376
Ranjith Lohithakshanfdba2bb2010-03-10 23:41:22 -08001377 device_init_wakeup(&spi->dev, false);
1378
David Brownell2c8dc072007-01-18 00:45:48 -05001379 sysfs_remove_group(&spi->dev.kobj, &ads784x_attr_group);
David Brownellffa458c2006-01-08 13:34:21 -08001380
Jason Wang2991a1c2010-10-13 11:35:40 -07001381 ads7846_disable(ts);
Imre Deak7de90a82006-04-11 23:43:55 -04001382 free_irq(ts->spi->irq, ts);
Jason Wang2991a1c2010-10-13 11:35:40 -07001383
1384 input_unregister_device(ts->input);
1385
1386 ads784x_hwmon_unregister(spi, ts);
Imre Deak7de90a82006-04-11 23:43:55 -04001387
Grazvydas Ignotas91143372010-02-25 02:04:56 -08001388 regulator_disable(ts->reg);
1389 regulator_put(ts->reg);
1390
Eric Miao4d5975e2008-09-10 12:06:15 -04001391 if (ts->gpio_pendown != -1)
1392 gpio_free(ts->gpio_pendown);
1393
Imre Deakda970e62007-01-18 00:44:41 -05001394 if (ts->filter_cleanup)
1395 ts->filter_cleanup(ts->filter_data);
1396
Dmitry Torokhove8f462d2008-10-09 00:52:23 -04001397 kfree(ts->packet);
David Brownellffa458c2006-01-08 13:34:21 -08001398 kfree(ts);
1399
David Brownell2e5a7bd2006-01-08 13:34:25 -08001400 dev_dbg(&spi->dev, "unregistered touchscreen\n");
Jason Wang2991a1c2010-10-13 11:35:40 -07001401
David Brownellffa458c2006-01-08 13:34:21 -08001402 return 0;
1403}
1404
David Brownell2e5a7bd2006-01-08 13:34:25 -08001405static struct spi_driver ads7846_driver = {
1406 .driver = {
1407 .name = "ads7846",
1408 .bus = &spi_bus_type,
1409 .owner = THIS_MODULE,
Mark Brown3c36e712011-01-20 22:51:26 -08001410 .pm = &ads7846_pm,
David Brownell2e5a7bd2006-01-08 13:34:25 -08001411 },
David Brownellffa458c2006-01-08 13:34:21 -08001412 .probe = ads7846_probe,
David Brownell2e5a7bd2006-01-08 13:34:25 -08001413 .remove = __devexit_p(ads7846_remove),
David Brownellffa458c2006-01-08 13:34:21 -08001414};
1415
1416static int __init ads7846_init(void)
1417{
David Brownell2e5a7bd2006-01-08 13:34:25 -08001418 return spi_register_driver(&ads7846_driver);
David Brownellffa458c2006-01-08 13:34:21 -08001419}
1420module_init(ads7846_init);
1421
1422static void __exit ads7846_exit(void)
1423{
David Brownell2e5a7bd2006-01-08 13:34:25 -08001424 spi_unregister_driver(&ads7846_driver);
David Brownellffa458c2006-01-08 13:34:21 -08001425}
1426module_exit(ads7846_exit);
1427
1428MODULE_DESCRIPTION("ADS7846 TouchScreen Driver");
1429MODULE_LICENSE("GPL");
Anton Vorontsove0626e32009-09-22 16:46:08 -07001430MODULE_ALIAS("spi:ads7846");