staging: usbip: bugfix for isochronous packets and optimization
[zen-stable.git] / drivers / input / touchscreen / ads7846.c
blobc24946f512564e35925d0e6c090b7fd4a6c4eccd
1 /*
2 * ADS7846 based touchscreen and sensor driver
4 * Copyright (c) 2005 David Brownell
5 * Copyright (c) 2006 Nokia Corporation
6 * Various changes: Imre Deak <imre.deak@nokia.com>
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
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.
20 #include <linux/types.h>
21 #include <linux/hwmon.h>
22 #include <linux/init.h>
23 #include <linux/err.h>
24 #include <linux/sched.h>
25 #include <linux/delay.h>
26 #include <linux/input.h>
27 #include <linux/interrupt.h>
28 #include <linux/slab.h>
29 #include <linux/pm.h>
30 #include <linux/gpio.h>
31 #include <linux/spi/spi.h>
32 #include <linux/spi/ads7846.h>
33 #include <linux/regulator/consumer.h>
34 #include <asm/irq.h>
37 * This code has been heavily tested on a Nokia 770, and lightly
38 * tested on other ads7846 devices (OSK/Mistral, Lubbock, Spitz).
39 * TSC2046 is just newer ads7846 silicon.
40 * Support for ads7843 tested on Atmel at91sam926x-EK.
41 * Support for ads7845 has only been stubbed in.
42 * Support for Analog Devices AD7873 and AD7843 tested.
44 * IRQ handling needs a workaround because of a shortcoming in handling
45 * edge triggered IRQs on some platforms like the OMAP1/2. These
46 * platforms don't handle the ARM lazy IRQ disabling properly, thus we
47 * have to maintain our own SW IRQ disabled status. This should be
48 * removed as soon as the affected platform's IRQ handling is fixed.
50 * App note sbaa036 talks in more detail about accurate sampling...
51 * that ought to help in situations like LCDs inducing noise (which
52 * can also be helped by using synch signals) and more generally.
53 * This driver tries to utilize the measures described in the app
54 * note. The strength of filtering can be set in the board-* specific
55 * files.
58 #define TS_POLL_DELAY 1 /* ms delay before the first sample */
59 #define TS_POLL_PERIOD 5 /* ms delay between samples */
61 /* this driver doesn't aim at the peak continuous sample rate */
62 #define SAMPLE_BITS (8 /*cmd*/ + 16 /*sample*/ + 2 /* before, after */)
64 struct ts_event {
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
68 * with msbs zeroed). Instead, we read them as two 8-bit values,
69 * *** WHICH NEED BYTESWAPPING *** and range adjustment.
71 u16 x;
72 u16 y;
73 u16 z1, z2;
74 bool ignore;
75 u8 x_buf[3];
76 u8 y_buf[3];
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).
84 struct ads7846_packet {
85 u8 read_x, read_y, read_z1, read_z2, pwrdown;
86 u16 dummy; /* for the pwrdown read */
87 struct ts_event tc;
88 /* for ads7845 with mpc5121 psc spi we use 3-byte buffers */
89 u8 read_x_cmd[3], read_y_cmd[3], pwrdown_cmd[3];
92 struct ads7846 {
93 struct input_dev *input;
94 char phys[32];
95 char name[32];
97 struct spi_device *spi;
98 struct regulator *reg;
100 #if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE)
101 struct attribute_group *attr_group;
102 struct device *hwmon;
103 #endif
105 u16 model;
106 u16 vref_mv;
107 u16 vref_delay_usecs;
108 u16 x_plate_ohms;
109 u16 pressure_max;
111 bool swap_xy;
113 struct ads7846_packet *packet;
115 struct spi_transfer xfer[18];
116 struct spi_message msg[5];
117 int msg_count;
118 wait_queue_head_t wait;
120 bool pendown;
122 int read_cnt;
123 int read_rep;
124 int last_read;
126 u16 debounce_max;
127 u16 debounce_tol;
128 u16 debounce_rep;
130 u16 penirq_recheck_delay_usecs;
132 struct mutex lock;
133 bool stopped; /* P: lock */
134 bool disabled; /* P: lock */
135 bool suspended; /* P: lock */
137 int (*filter)(void *data, int data_idx, int *val);
138 void *filter_data;
139 void (*filter_cleanup)(void *data);
140 int (*get_pendown_state)(void);
141 int gpio_pendown;
143 void (*wait_for_sync)(void);
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
153 /*--------------------------------------------------------------------------*/
155 /* The ADS7846 has touchscreen and other sensors.
156 * Earlier ads784x chips are somewhat compatible.
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 */
171 #define ADS_PD10_PDOWN (0 << 0) /* low power mode + penirq */
172 #define ADS_PD10_ADC_ON (1 << 0) /* ADC on */
173 #define ADS_PD10_REF_ON (2 << 0) /* vREF on + penirq */
174 #define ADS_PD10_ALL_ON (3 << 0) /* ADC + vREF on */
176 #define MAX_12BIT ((1<<12)-1)
178 /* leave ADC powered up (disables penirq) between differential samples */
179 #define READ_12BIT_DFR(x, adc, vref) (ADS_START | ADS_A2A1A0_d_ ## x \
180 | ADS_12_BIT | ADS_DFR | \
181 (adc ? ADS_PD10_ADC_ON : 0) | (vref ? ADS_PD10_REF_ON : 0))
183 #define READ_Y(vref) (READ_12BIT_DFR(y, 1, vref))
184 #define READ_Z1(vref) (READ_12BIT_DFR(z1, 1, vref))
185 #define READ_Z2(vref) (READ_12BIT_DFR(z2, 1, vref))
187 #define READ_X(vref) (READ_12BIT_DFR(x, 1, vref))
188 #define PWRDOWN (READ_12BIT_DFR(y, 0, 0)) /* LAST */
190 /* single-ended samples need to first power up reference voltage;
191 * we leave both ADC and VREF powered
193 #define READ_12BIT_SER(x) (ADS_START | ADS_A2A1A0_ ## x \
194 | ADS_12_BIT | ADS_SER)
196 #define REF_ON (READ_12BIT_DFR(x, 1, 1))
197 #define REF_OFF (READ_12BIT_DFR(y, 0, 0))
199 /* Must be called with ts->lock held */
200 static void ads7846_stop(struct ads7846 *ts)
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);
211 /* Must be called with ts->lock held */
212 static void ads7846_restart(struct ads7846 *ts)
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);
222 /* Must be called with ts->lock held */
223 static void __ads7846_disable(struct ads7846 *ts)
225 ads7846_stop(ts);
226 regulator_disable(ts->reg);
229 * We know the chip's in low power mode since we always
230 * leave it that way after every request
234 /* Must be called with ts->lock held */
235 static void __ads7846_enable(struct ads7846 *ts)
237 regulator_enable(ts->reg);
238 ads7846_restart(ts);
241 static void ads7846_disable(struct ads7846 *ts)
243 mutex_lock(&ts->lock);
245 if (!ts->disabled) {
247 if (!ts->suspended)
248 __ads7846_disable(ts);
250 ts->disabled = true;
253 mutex_unlock(&ts->lock);
256 static void ads7846_enable(struct ads7846 *ts)
258 mutex_lock(&ts->lock);
260 if (ts->disabled) {
262 ts->disabled = false;
264 if (!ts->suspended)
265 __ads7846_enable(ts);
268 mutex_unlock(&ts->lock);
271 /*--------------------------------------------------------------------------*/
274 * Non-touchscreen sensors only use single-ended conversions.
275 * The range is GND..vREF. The ads7843 and ads7835 must use external vREF;
276 * ads7846 lets that pin be unconnected, to use internal vREF.
279 struct ser_req {
280 u8 ref_on;
281 u8 command;
282 u8 ref_off;
283 u16 scratch;
284 __be16 sample;
285 struct spi_message msg;
286 struct spi_transfer xfer[6];
289 struct ads7845_ser_req {
290 u8 command[3];
291 u8 pwrdown[3];
292 u8 sample[3];
293 struct spi_message msg;
294 struct spi_transfer xfer[2];
297 static int ads7846_read12_ser(struct device *dev, unsigned command)
299 struct spi_device *spi = to_spi_device(dev);
300 struct ads7846 *ts = dev_get_drvdata(dev);
301 struct ser_req *req;
302 int status;
303 int use_internal;
305 req = kzalloc(sizeof *req, GFP_KERNEL);
306 if (!req)
307 return -ENOMEM;
309 spi_message_init(&req->msg);
311 /* FIXME boards with ads7846 might use external vref instead ... */
312 use_internal = (ts->model == 7846);
314 /* maybe turn on internal vREF, and let it settle */
315 if (use_internal) {
316 req->ref_on = REF_ON;
317 req->xfer[0].tx_buf = &req->ref_on;
318 req->xfer[0].len = 1;
319 spi_message_add_tail(&req->xfer[0], &req->msg);
321 req->xfer[1].rx_buf = &req->scratch;
322 req->xfer[1].len = 2;
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);
329 /* take sample */
330 req->command = (u8) command;
331 req->xfer[2].tx_buf = &req->command;
332 req->xfer[2].len = 1;
333 spi_message_add_tail(&req->xfer[2], &req->msg);
335 req->xfer[3].rx_buf = &req->sample;
336 req->xfer[3].len = 2;
337 spi_message_add_tail(&req->xfer[3], &req->msg);
339 /* REVISIT: take a few more samples, and compare ... */
341 /* converter in low power mode & enable PENIRQ */
342 req->ref_off = PWRDOWN;
343 req->xfer[4].tx_buf = &req->ref_off;
344 req->xfer[4].len = 1;
345 spi_message_add_tail(&req->xfer[4], &req->msg);
347 req->xfer[5].rx_buf = &req->scratch;
348 req->xfer[5].len = 2;
349 CS_CHANGE(req->xfer[5]);
350 spi_message_add_tail(&req->xfer[5], &req->msg);
352 mutex_lock(&ts->lock);
353 ads7846_stop(ts);
354 status = spi_sync(spi, &req->msg);
355 ads7846_restart(ts);
356 mutex_unlock(&ts->lock);
358 if (status == 0) {
359 /* on-wire is a must-ignore bit, a BE12 value, then padding */
360 status = be16_to_cpu(req->sample);
361 status = status >> 3;
362 status &= 0x0fff;
365 kfree(req);
366 return status;
369 static int ads7845_read12_ser(struct device *dev, unsigned command)
371 struct spi_device *spi = to_spi_device(dev);
372 struct ads7846 *ts = dev_get_drvdata(dev);
373 struct ads7845_ser_req *req;
374 int status;
376 req = kzalloc(sizeof *req, GFP_KERNEL);
377 if (!req)
378 return -ENOMEM;
380 spi_message_init(&req->msg);
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);
388 mutex_lock(&ts->lock);
389 ads7846_stop(ts);
390 status = spi_sync(spi, &req->msg);
391 ads7846_restart(ts);
392 mutex_unlock(&ts->lock);
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;
401 kfree(req);
402 return status;
405 #if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE)
407 #define SHOW(name, var, adjust) static ssize_t \
408 name ## _show(struct device *dev, struct device_attribute *attr, char *buf) \
410 struct ads7846 *ts = dev_get_drvdata(dev); \
411 ssize_t v = ads7846_read12_ser(dev, \
412 READ_12BIT_SER(var) | ADS_PD10_ALL_ON); \
413 if (v < 0) \
414 return v; \
415 return sprintf(buf, "%u\n", adjust(ts, v)); \
417 static DEVICE_ATTR(name, S_IRUGO, name ## _show, NULL);
420 /* Sysfs conventions report temperatures in millidegrees Celsius.
421 * ADS7846 could use the low-accuracy two-sample scheme, but can't do the high
422 * accuracy scheme without calibration data. For now we won't try either;
423 * userspace sees raw sensor values, and must scale/calibrate appropriately.
425 static inline unsigned null_adjust(struct ads7846 *ts, ssize_t v)
427 return v;
430 SHOW(temp0, temp0, null_adjust) /* temp1_input */
431 SHOW(temp1, temp1, null_adjust) /* temp2_input */
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.
438 static inline unsigned vaux_adjust(struct ads7846 *ts, ssize_t v)
440 unsigned retval = v;
442 /* external resistors may scale vAUX into 0..vREF */
443 retval *= ts->vref_mv;
444 retval = retval >> 12;
446 return retval;
449 static inline unsigned vbatt_adjust(struct ads7846 *ts, ssize_t v)
451 unsigned retval = vaux_adjust(ts, v);
453 /* ads7846 has a resistor ladder to scale this signal down */
454 if (ts->model == 7846)
455 retval *= 4;
457 return retval;
460 SHOW(in0_input, vaux, vaux_adjust)
461 SHOW(in1_input, vbatt, vbatt_adjust)
463 static struct attribute *ads7846_attributes[] = {
464 &dev_attr_temp0.attr,
465 &dev_attr_temp1.attr,
466 &dev_attr_in0_input.attr,
467 &dev_attr_in1_input.attr,
468 NULL,
471 static struct attribute_group ads7846_attr_group = {
472 .attrs = ads7846_attributes,
475 static struct attribute *ads7843_attributes[] = {
476 &dev_attr_in0_input.attr,
477 &dev_attr_in1_input.attr,
478 NULL,
481 static struct attribute_group ads7843_attr_group = {
482 .attrs = ads7843_attributes,
485 static struct attribute *ads7845_attributes[] = {
486 &dev_attr_in0_input.attr,
487 NULL,
490 static struct attribute_group ads7845_attr_group = {
491 .attrs = ads7845_attributes,
494 static int ads784x_hwmon_register(struct spi_device *spi, struct ads7846 *ts)
496 struct device *hwmon;
497 int err;
499 /* hwmon sensors need a reference voltage */
500 switch (ts->model) {
501 case 7846:
502 if (!ts->vref_mv) {
503 dev_dbg(&spi->dev, "assuming 2.5V internal vREF\n");
504 ts->vref_mv = 2500;
506 break;
507 case 7845:
508 case 7843:
509 if (!ts->vref_mv) {
510 dev_warn(&spi->dev,
511 "external vREF for ADS%d not specified\n",
512 ts->model);
513 return 0;
515 break;
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;
534 err = sysfs_create_group(&spi->dev.kobj, ts->attr_group);
535 if (err)
536 return err;
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);
544 ts->hwmon = hwmon;
545 return 0;
548 static void ads784x_hwmon_unregister(struct spi_device *spi,
549 struct ads7846 *ts)
551 if (ts->hwmon) {
552 sysfs_remove_group(&spi->dev.kobj, ts->attr_group);
553 hwmon_device_unregister(ts->hwmon);
557 #else
558 static inline int ads784x_hwmon_register(struct spi_device *spi,
559 struct ads7846 *ts)
561 return 0;
564 static inline void ads784x_hwmon_unregister(struct spi_device *spi,
565 struct ads7846 *ts)
568 #endif
570 static ssize_t ads7846_pen_down_show(struct device *dev,
571 struct device_attribute *attr, char *buf)
573 struct ads7846 *ts = dev_get_drvdata(dev);
575 return sprintf(buf, "%u\n", ts->pendown);
578 static DEVICE_ATTR(pen_down, S_IRUGO, ads7846_pen_down_show, NULL);
580 static ssize_t ads7846_disable_show(struct device *dev,
581 struct device_attribute *attr, char *buf)
583 struct ads7846 *ts = dev_get_drvdata(dev);
585 return sprintf(buf, "%u\n", ts->disabled);
588 static ssize_t ads7846_disable_store(struct device *dev,
589 struct device_attribute *attr,
590 const char *buf, size_t count)
592 struct ads7846 *ts = dev_get_drvdata(dev);
593 unsigned long i;
595 if (strict_strtoul(buf, 10, &i))
596 return -EINVAL;
598 if (i)
599 ads7846_disable(ts);
600 else
601 ads7846_enable(ts);
603 return count;
606 static DEVICE_ATTR(disable, 0664, ads7846_disable_show, ads7846_disable_store);
608 static struct attribute *ads784x_attributes[] = {
609 &dev_attr_pen_down.attr,
610 &dev_attr_disable.attr,
611 NULL,
614 static struct attribute_group ads784x_attr_group = {
615 .attrs = ads784x_attributes,
618 /*--------------------------------------------------------------------------*/
620 static int get_pendown_state(struct ads7846 *ts)
622 if (ts->get_pendown_state)
623 return ts->get_pendown_state();
625 return !gpio_get_value(ts->gpio_pendown);
628 static void null_wait_for_sync(void)
632 static int ads7846_debounce_filter(void *ads, int data_idx, int *val)
634 struct ads7846 *ts = ads;
636 if (!ts->read_cnt || (abs(ts->last_read - *val) > ts->debounce_tol)) {
637 /* Start over collecting consistent readings. */
638 ts->read_rep = 0;
640 * Repeat it, if this was the first read or the read
641 * wasn't consistent enough.
643 if (ts->read_cnt < ts->debounce_max) {
644 ts->last_read = *val;
645 ts->read_cnt++;
646 return ADS7846_FILTER_REPEAT;
647 } else {
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.
654 ts->read_cnt = 0;
655 return ADS7846_FILTER_IGNORE;
657 } else {
658 if (++ts->read_rep > ts->debounce_rep) {
660 * Got a good reading for this coordinate,
661 * go for the next one.
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;
674 static int ads7846_no_filter(void *ads, int data_idx, int *val)
676 return ADS7846_FILTER_OK;
679 static int ads7846_get_value(struct ads7846 *ts, struct spi_message *m)
681 struct spi_transfer *t =
682 list_entry(m->transfers.prev, struct spi_transfer, transfer_list);
684 if (ts->model == 7845) {
685 return be16_to_cpup((__be16 *)&(((char*)t->rx_buf)[1])) >> 3;
686 } else {
688 * adjust: on-wire is a must-ignore bit, a BE12 value, then
689 * padding; built from two 8 bit values written msb-first.
691 return be16_to_cpup((__be16 *)t->rx_buf) >> 3;
695 static void ads7846_update_value(struct spi_message *m, int val)
697 struct spi_transfer *t =
698 list_entry(m->transfers.prev, struct spi_transfer, transfer_list);
700 *(u16 *)t->rx_buf = val;
703 static void ads7846_read_state(struct ads7846 *ts)
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;
712 while (msg_idx < ts->msg_count) {
714 ts->wait_for_sync();
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;
725 * Last message is power down request, no need to convert
726 * or filter the value.
728 if (msg_idx < ts->msg_count - 1) {
730 val = ads7846_get_value(ts, m);
732 action = ts->filter(ts->filter_data, msg_idx, &val);
733 switch (action) {
734 case ADS7846_FILTER_REPEAT:
735 continue;
737 case ADS7846_FILTER_IGNORE:
738 packet->tc.ignore = true;
739 msg_idx = ts->msg_count - 1;
740 continue;
742 case ADS7846_FILTER_OK:
743 ads7846_update_value(m, val);
744 packet->tc.ignore = false;
745 msg_idx++;
746 break;
748 default:
749 BUG();
751 } else {
752 msg_idx++;
757 static void ads7846_report_state(struct ads7846 *ts)
759 struct ads7846_packet *packet = ts->packet;
760 unsigned int Rt;
761 u16 x, y, z1, z2;
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.
768 if (ts->model == 7845) {
769 x = *(u16 *)packet->tc.x_buf;
770 y = *(u16 *)packet->tc.y_buf;
771 z1 = 0;
772 z2 = 0;
773 } else {
774 x = packet->tc.x;
775 y = packet->tc.y;
776 z1 = packet->tc.z1;
777 z2 = packet->tc.z2;
780 /* range filtering */
781 if (x == MAX_12BIT)
782 x = 0;
784 if (ts->model == 7843) {
785 Rt = ts->pressure_max / 2;
786 } else if (ts->model == 7845) {
787 if (get_pendown_state(ts))
788 Rt = ts->pressure_max / 2;
789 else
790 Rt = 0;
791 dev_vdbg(&ts->spi->dev, "x/y: %d/%d, PD %d\n", x, y, Rt);
792 } else if (likely(x && z1)) {
793 /* compute touch pressure resistance using equation #2 */
794 Rt = z2;
795 Rt -= z1;
796 Rt *= x;
797 Rt *= ts->x_plate_ohms;
798 Rt /= z1;
799 Rt = (Rt + 2047) >> 12;
800 } else {
801 Rt = 0;
805 * Sample found inconsistent by debouncing or pressure is beyond
806 * the maximum. Don't report it to user space, repeat at least
807 * once more the measurement
809 if (packet->tc.ignore || Rt > ts->pressure_max) {
810 dev_vdbg(&ts->spi->dev, "ignored %d pressure %d\n",
811 packet->tc.ignore, Rt);
812 return;
816 * Maybe check the pendown state before reporting. This discards
817 * false readings when the pen is lifted.
819 if (ts->penirq_recheck_delay_usecs) {
820 udelay(ts->penirq_recheck_delay_usecs);
821 if (!get_pendown_state(ts))
822 Rt = 0;
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
828 * value can fluctuate for quite a while after lifting the pen and
829 * in some cases may not even settle at the expected value.
831 * The only safe way to check for the pen up condition is in the
832 * timer by reading the pen signal state (it's a GPIO _and_ IRQ).
834 if (Rt) {
835 struct input_dev *input = ts->input;
837 if (ts->swap_xy)
838 swap(x, y);
840 if (!ts->pendown) {
841 input_report_key(input, BTN_TOUCH, 1);
842 ts->pendown = true;
843 dev_vdbg(&ts->spi->dev, "DOWN\n");
846 input_report_abs(input, ABS_X, x);
847 input_report_abs(input, ABS_Y, y);
848 input_report_abs(input, ABS_PRESSURE, ts->pressure_max - Rt);
850 input_sync(input);
851 dev_vdbg(&ts->spi->dev, "%4d/%4d/%4d\n", x, y, Rt);
855 static irqreturn_t ads7846_hard_irq(int irq, void *handle)
857 struct ads7846 *ts = handle;
859 return get_pendown_state(ts) ? IRQ_WAKE_THREAD : IRQ_HANDLED;
863 static irqreturn_t ads7846_irq(int irq, void *handle)
865 struct ads7846 *ts = handle;
867 /* Start with a small delay before checking pendown state */
868 msleep(TS_POLL_DELAY);
870 while (!ts->stopped && get_pendown_state(ts)) {
872 /* pen is down, continue with the measurement */
873 ads7846_read_state(ts);
875 if (!ts->stopped)
876 ads7846_report_state(ts);
878 wait_event_timeout(ts->wait, ts->stopped,
879 msecs_to_jiffies(TS_POLL_PERIOD));
882 if (ts->pendown) {
883 struct input_dev *input = ts->input;
885 input_report_key(input, BTN_TOUCH, 0);
886 input_report_abs(input, ABS_PRESSURE, 0);
887 input_sync(input);
889 ts->pendown = false;
890 dev_vdbg(&ts->spi->dev, "UP\n");
893 return IRQ_HANDLED;
896 #ifdef CONFIG_PM_SLEEP
897 static int ads7846_suspend(struct device *dev)
899 struct ads7846 *ts = dev_get_drvdata(dev);
901 mutex_lock(&ts->lock);
903 if (!ts->suspended) {
905 if (!ts->disabled)
906 __ads7846_disable(ts);
908 if (device_may_wakeup(&ts->spi->dev))
909 enable_irq_wake(ts->spi->irq);
911 ts->suspended = true;
914 mutex_unlock(&ts->lock);
916 return 0;
919 static int ads7846_resume(struct device *dev)
921 struct ads7846 *ts = dev_get_drvdata(dev);
923 mutex_lock(&ts->lock);
925 if (ts->suspended) {
927 ts->suspended = false;
929 if (device_may_wakeup(&ts->spi->dev))
930 disable_irq_wake(ts->spi->irq);
932 if (!ts->disabled)
933 __ads7846_enable(ts);
936 mutex_unlock(&ts->lock);
938 return 0;
940 #endif
942 static SIMPLE_DEV_PM_OPS(ads7846_pm, ads7846_suspend, ads7846_resume);
944 static int __devinit ads7846_setup_pendown(struct spi_device *spi, struct ads7846 *ts)
946 struct ads7846_platform_data *pdata = spi->dev.platform_data;
947 int err;
950 * REVISIT when the irq can be triggered active-low, or if for some
951 * reason the touchscreen isn't hooked up, we don't need to access
952 * the pendown state.
955 if (pdata->get_pendown_state) {
956 ts->get_pendown_state = pdata->get_pendown_state;
957 } else if (gpio_is_valid(pdata->gpio_pendown)) {
959 err = gpio_request(pdata->gpio_pendown, "ads7846_pendown");
960 if (err) {
961 dev_err(&spi->dev, "failed to request pendown GPIO%d\n",
962 pdata->gpio_pendown);
963 return err;
966 ts->gpio_pendown = pdata->gpio_pendown;
968 } else {
969 dev_err(&spi->dev, "no get_pendown_state nor gpio_pendown?\n");
970 return -EINVAL;
973 return 0;
977 * Set up the transfers to read touchscreen state; this assumes we
978 * use formula #2 for pressure, not #3.
980 static void __devinit ads7846_setup_spi_msg(struct ads7846 *ts,
981 const struct ads7846_platform_data *pdata)
983 struct spi_message *m = &ts->msg[0];
984 struct spi_transfer *x = ts->xfer;
985 struct ads7846_packet *packet = ts->packet;
986 int vref = pdata->keep_vref_on;
988 if (ts->model == 7873) {
990 * The AD7873 is almost identical to the ADS7846
991 * keep VREF off during differential/ratiometric
992 * conversion modes.
994 ts->model = 7846;
995 vref = 0;
998 ts->msg_count = 1;
999 spi_message_init(m);
1000 m->context = ts;
1002 if (ts->model == 7845) {
1003 packet->read_y_cmd[0] = READ_Y(vref);
1004 packet->read_y_cmd[1] = 0;
1005 packet->read_y_cmd[2] = 0;
1006 x->tx_buf = &packet->read_y_cmd[0];
1007 x->rx_buf = &packet->tc.y_buf[0];
1008 x->len = 3;
1009 spi_message_add_tail(x, m);
1010 } else {
1011 /* y- still on; turn on only y+ (and ADC) */
1012 packet->read_y = READ_Y(vref);
1013 x->tx_buf = &packet->read_y;
1014 x->len = 1;
1015 spi_message_add_tail(x, m);
1017 x++;
1018 x->rx_buf = &packet->tc.y;
1019 x->len = 2;
1020 spi_message_add_tail(x, m);
1024 * The first sample after switching drivers can be low quality;
1025 * optionally discard it, using a second one after the signals
1026 * have had enough time to stabilize.
1028 if (pdata->settle_delay_usecs) {
1029 x->delay_usecs = pdata->settle_delay_usecs;
1031 x++;
1032 x->tx_buf = &packet->read_y;
1033 x->len = 1;
1034 spi_message_add_tail(x, m);
1036 x++;
1037 x->rx_buf = &packet->tc.y;
1038 x->len = 2;
1039 spi_message_add_tail(x, m);
1042 ts->msg_count++;
1043 m++;
1044 spi_message_init(m);
1045 m->context = ts;
1047 if (ts->model == 7845) {
1048 x++;
1049 packet->read_x_cmd[0] = READ_X(vref);
1050 packet->read_x_cmd[1] = 0;
1051 packet->read_x_cmd[2] = 0;
1052 x->tx_buf = &packet->read_x_cmd[0];
1053 x->rx_buf = &packet->tc.x_buf[0];
1054 x->len = 3;
1055 spi_message_add_tail(x, m);
1056 } else {
1057 /* turn y- off, x+ on, then leave in lowpower */
1058 x++;
1059 packet->read_x = READ_X(vref);
1060 x->tx_buf = &packet->read_x;
1061 x->len = 1;
1062 spi_message_add_tail(x, m);
1064 x++;
1065 x->rx_buf = &packet->tc.x;
1066 x->len = 2;
1067 spi_message_add_tail(x, m);
1070 /* ... maybe discard first sample ... */
1071 if (pdata->settle_delay_usecs) {
1072 x->delay_usecs = pdata->settle_delay_usecs;
1074 x++;
1075 x->tx_buf = &packet->read_x;
1076 x->len = 1;
1077 spi_message_add_tail(x, m);
1079 x++;
1080 x->rx_buf = &packet->tc.x;
1081 x->len = 2;
1082 spi_message_add_tail(x, m);
1085 /* turn y+ off, x- on; we'll use formula #2 */
1086 if (ts->model == 7846) {
1087 ts->msg_count++;
1088 m++;
1089 spi_message_init(m);
1090 m->context = ts;
1092 x++;
1093 packet->read_z1 = READ_Z1(vref);
1094 x->tx_buf = &packet->read_z1;
1095 x->len = 1;
1096 spi_message_add_tail(x, m);
1098 x++;
1099 x->rx_buf = &packet->tc.z1;
1100 x->len = 2;
1101 spi_message_add_tail(x, m);
1103 /* ... maybe discard first sample ... */
1104 if (pdata->settle_delay_usecs) {
1105 x->delay_usecs = pdata->settle_delay_usecs;
1107 x++;
1108 x->tx_buf = &packet->read_z1;
1109 x->len = 1;
1110 spi_message_add_tail(x, m);
1112 x++;
1113 x->rx_buf = &packet->tc.z1;
1114 x->len = 2;
1115 spi_message_add_tail(x, m);
1118 ts->msg_count++;
1119 m++;
1120 spi_message_init(m);
1121 m->context = ts;
1123 x++;
1124 packet->read_z2 = READ_Z2(vref);
1125 x->tx_buf = &packet->read_z2;
1126 x->len = 1;
1127 spi_message_add_tail(x, m);
1129 x++;
1130 x->rx_buf = &packet->tc.z2;
1131 x->len = 2;
1132 spi_message_add_tail(x, m);
1134 /* ... maybe discard first sample ... */
1135 if (pdata->settle_delay_usecs) {
1136 x->delay_usecs = pdata->settle_delay_usecs;
1138 x++;
1139 x->tx_buf = &packet->read_z2;
1140 x->len = 1;
1141 spi_message_add_tail(x, m);
1143 x++;
1144 x->rx_buf = &packet->tc.z2;
1145 x->len = 2;
1146 spi_message_add_tail(x, m);
1150 /* power down */
1151 ts->msg_count++;
1152 m++;
1153 spi_message_init(m);
1154 m->context = ts;
1156 if (ts->model == 7845) {
1157 x++;
1158 packet->pwrdown_cmd[0] = PWRDOWN;
1159 packet->pwrdown_cmd[1] = 0;
1160 packet->pwrdown_cmd[2] = 0;
1161 x->tx_buf = &packet->pwrdown_cmd[0];
1162 x->len = 3;
1163 } else {
1164 x++;
1165 packet->pwrdown = PWRDOWN;
1166 x->tx_buf = &packet->pwrdown;
1167 x->len = 1;
1168 spi_message_add_tail(x, m);
1170 x++;
1171 x->rx_buf = &packet->dummy;
1172 x->len = 2;
1175 CS_CHANGE(*x);
1176 spi_message_add_tail(x, m);
1179 static int __devinit ads7846_probe(struct spi_device *spi)
1181 struct ads7846 *ts;
1182 struct ads7846_packet *packet;
1183 struct input_dev *input_dev;
1184 struct ads7846_platform_data *pdata = spi->dev.platform_data;
1185 unsigned long irq_flags;
1186 int err;
1188 if (!spi->irq) {
1189 dev_dbg(&spi->dev, "no IRQ?\n");
1190 return -ENODEV;
1193 if (!pdata) {
1194 dev_dbg(&spi->dev, "no platform data?\n");
1195 return -ENODEV;
1198 /* don't exceed max specified sample rate */
1199 if (spi->max_speed_hz > (125000 * SAMPLE_BITS)) {
1200 dev_dbg(&spi->dev, "f(sample) %d KHz?\n",
1201 (spi->max_speed_hz/SAMPLE_BITS)/1000);
1202 return -EINVAL;
1205 /* We'd set TX word size 8 bits and RX word size to 13 bits ... except
1206 * that even if the hardware can do that, the SPI controller driver
1207 * may not. So we stick to very-portable 8 bit words, both RX and TX.
1209 spi->bits_per_word = 8;
1210 spi->mode = SPI_MODE_0;
1211 err = spi_setup(spi);
1212 if (err < 0)
1213 return err;
1215 ts = kzalloc(sizeof(struct ads7846), GFP_KERNEL);
1216 packet = kzalloc(sizeof(struct ads7846_packet), GFP_KERNEL);
1217 input_dev = input_allocate_device();
1218 if (!ts || !packet || !input_dev) {
1219 err = -ENOMEM;
1220 goto err_free_mem;
1223 dev_set_drvdata(&spi->dev, ts);
1225 ts->packet = packet;
1226 ts->spi = spi;
1227 ts->input = input_dev;
1228 ts->vref_mv = pdata->vref_mv;
1229 ts->swap_xy = pdata->swap_xy;
1231 mutex_init(&ts->lock);
1232 init_waitqueue_head(&ts->wait);
1234 ts->model = pdata->model ? : 7846;
1235 ts->vref_delay_usecs = pdata->vref_delay_usecs ? : 100;
1236 ts->x_plate_ohms = pdata->x_plate_ohms ? : 400;
1237 ts->pressure_max = pdata->pressure_max ? : ~0;
1239 if (pdata->filter != NULL) {
1240 if (pdata->filter_init != NULL) {
1241 err = pdata->filter_init(pdata, &ts->filter_data);
1242 if (err < 0)
1243 goto err_free_mem;
1245 ts->filter = pdata->filter;
1246 ts->filter_cleanup = pdata->filter_cleanup;
1247 } else if (pdata->debounce_max) {
1248 ts->debounce_max = pdata->debounce_max;
1249 if (ts->debounce_max < 2)
1250 ts->debounce_max = 2;
1251 ts->debounce_tol = pdata->debounce_tol;
1252 ts->debounce_rep = pdata->debounce_rep;
1253 ts->filter = ads7846_debounce_filter;
1254 ts->filter_data = ts;
1255 } else {
1256 ts->filter = ads7846_no_filter;
1259 err = ads7846_setup_pendown(spi, ts);
1260 if (err)
1261 goto err_cleanup_filter;
1263 if (pdata->penirq_recheck_delay_usecs)
1264 ts->penirq_recheck_delay_usecs =
1265 pdata->penirq_recheck_delay_usecs;
1267 ts->wait_for_sync = pdata->wait_for_sync ? : null_wait_for_sync;
1269 snprintf(ts->phys, sizeof(ts->phys), "%s/input0", dev_name(&spi->dev));
1270 snprintf(ts->name, sizeof(ts->name), "ADS%d Touchscreen", ts->model);
1272 input_dev->name = ts->name;
1273 input_dev->phys = ts->phys;
1274 input_dev->dev.parent = &spi->dev;
1276 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
1277 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
1278 input_set_abs_params(input_dev, ABS_X,
1279 pdata->x_min ? : 0,
1280 pdata->x_max ? : MAX_12BIT,
1281 0, 0);
1282 input_set_abs_params(input_dev, ABS_Y,
1283 pdata->y_min ? : 0,
1284 pdata->y_max ? : MAX_12BIT,
1285 0, 0);
1286 input_set_abs_params(input_dev, ABS_PRESSURE,
1287 pdata->pressure_min, pdata->pressure_max, 0, 0);
1289 ads7846_setup_spi_msg(ts, pdata);
1291 ts->reg = regulator_get(&spi->dev, "vcc");
1292 if (IS_ERR(ts->reg)) {
1293 err = PTR_ERR(ts->reg);
1294 dev_err(&spi->dev, "unable to get regulator: %d\n", err);
1295 goto err_free_gpio;
1298 err = regulator_enable(ts->reg);
1299 if (err) {
1300 dev_err(&spi->dev, "unable to enable regulator: %d\n", err);
1301 goto err_put_regulator;
1304 irq_flags = pdata->irq_flags ? : IRQF_TRIGGER_FALLING;
1305 irq_flags |= IRQF_ONESHOT;
1307 err = request_threaded_irq(spi->irq, ads7846_hard_irq, ads7846_irq,
1308 irq_flags, spi->dev.driver->name, ts);
1309 if (err && !pdata->irq_flags) {
1310 dev_info(&spi->dev,
1311 "trying pin change workaround on irq %d\n", spi->irq);
1312 irq_flags |= IRQF_TRIGGER_RISING;
1313 err = request_threaded_irq(spi->irq,
1314 ads7846_hard_irq, ads7846_irq,
1315 irq_flags, spi->dev.driver->name, ts);
1318 if (err) {
1319 dev_dbg(&spi->dev, "irq %d busy?\n", spi->irq);
1320 goto err_disable_regulator;
1323 err = ads784x_hwmon_register(spi, ts);
1324 if (err)
1325 goto err_free_irq;
1327 dev_info(&spi->dev, "touchscreen, irq %d\n", spi->irq);
1330 * Take a first sample, leaving nPENIRQ active and vREF off; avoid
1331 * the touchscreen, in case it's not connected.
1333 if (ts->model == 7845)
1334 ads7845_read12_ser(&spi->dev, PWRDOWN);
1335 else
1336 (void) ads7846_read12_ser(&spi->dev,
1337 READ_12BIT_SER(vaux) | ADS_PD10_ALL_ON);
1339 err = sysfs_create_group(&spi->dev.kobj, &ads784x_attr_group);
1340 if (err)
1341 goto err_remove_hwmon;
1343 err = input_register_device(input_dev);
1344 if (err)
1345 goto err_remove_attr_group;
1347 device_init_wakeup(&spi->dev, pdata->wakeup);
1349 return 0;
1351 err_remove_attr_group:
1352 sysfs_remove_group(&spi->dev.kobj, &ads784x_attr_group);
1353 err_remove_hwmon:
1354 ads784x_hwmon_unregister(spi, ts);
1355 err_free_irq:
1356 free_irq(spi->irq, ts);
1357 err_disable_regulator:
1358 regulator_disable(ts->reg);
1359 err_put_regulator:
1360 regulator_put(ts->reg);
1361 err_free_gpio:
1362 if (!ts->get_pendown_state)
1363 gpio_free(ts->gpio_pendown);
1364 err_cleanup_filter:
1365 if (ts->filter_cleanup)
1366 ts->filter_cleanup(ts->filter_data);
1367 err_free_mem:
1368 input_free_device(input_dev);
1369 kfree(packet);
1370 kfree(ts);
1371 return err;
1374 static int __devexit ads7846_remove(struct spi_device *spi)
1376 struct ads7846 *ts = dev_get_drvdata(&spi->dev);
1378 device_init_wakeup(&spi->dev, false);
1380 sysfs_remove_group(&spi->dev.kobj, &ads784x_attr_group);
1382 ads7846_disable(ts);
1383 free_irq(ts->spi->irq, ts);
1385 input_unregister_device(ts->input);
1387 ads784x_hwmon_unregister(spi, ts);
1389 regulator_disable(ts->reg);
1390 regulator_put(ts->reg);
1392 if (!ts->get_pendown_state) {
1394 * If we are not using specialized pendown method we must
1395 * have been relying on gpio we set up ourselves.
1397 gpio_free(ts->gpio_pendown);
1400 if (ts->filter_cleanup)
1401 ts->filter_cleanup(ts->filter_data);
1403 kfree(ts->packet);
1404 kfree(ts);
1406 dev_dbg(&spi->dev, "unregistered touchscreen\n");
1408 return 0;
1411 static struct spi_driver ads7846_driver = {
1412 .driver = {
1413 .name = "ads7846",
1414 .bus = &spi_bus_type,
1415 .owner = THIS_MODULE,
1416 .pm = &ads7846_pm,
1418 .probe = ads7846_probe,
1419 .remove = __devexit_p(ads7846_remove),
1422 static int __init ads7846_init(void)
1424 return spi_register_driver(&ads7846_driver);
1426 module_init(ads7846_init);
1428 static void __exit ads7846_exit(void)
1430 spi_unregister_driver(&ads7846_driver);
1432 module_exit(ads7846_exit);
1434 MODULE_DESCRIPTION("ADS7846 TouchScreen Driver");
1435 MODULE_LICENSE("GPL");
1436 MODULE_ALIAS("spi:ads7846");