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>
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>
30 #include <linux/gpio.h>
31 #include <linux/spi/spi.h>
32 #include <linux/spi/ads7846.h>
33 #include <linux/regulator/consumer.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
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 */)
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.
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 */
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];
93 struct input_dev
*input
;
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
;
107 u16 vref_delay_usecs
;
113 struct ads7846_packet
*packet
;
115 struct spi_transfer xfer
[18];
116 struct spi_message msg
[5];
118 wait_queue_head_t wait
;
130 u16 penirq_recheck_delay_usecs
;
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
);
139 void (*filter_cleanup
)(void *data
);
140 int (*get_pendown_state
)(void);
143 void (*wait_for_sync
)(void);
146 /* leave chip selected when we're done, for quicker re-select? */
148 #define CS_CHANGE(xfer) ((xfer).cs_change = 1)
150 #define CS_CHANGE(xfer) ((xfer).cs_change = 0)
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. */
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. */
218 enable_irq(ts
->spi
->irq
);
222 /* Must be called with ts->lock held */
223 static void __ads7846_disable(struct ads7846
*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
);
241 static void ads7846_disable(struct ads7846
*ts
)
243 mutex_lock(&ts
->lock
);
248 __ads7846_disable(ts
);
253 mutex_unlock(&ts
->lock
);
256 static void ads7846_enable(struct ads7846
*ts
)
258 mutex_lock(&ts
->lock
);
262 ts
->disabled
= false;
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.
285 struct spi_message msg
;
286 struct spi_transfer xfer
[6];
289 struct ads7845_ser_req
{
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
);
305 req
= kzalloc(sizeof *req
, GFP_KERNEL
);
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 */
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
);
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
);
354 status
= spi_sync(spi
, &req
->msg
);
356 mutex_unlock(&ts
->lock
);
359 /* on-wire is a must-ignore bit, a BE12 value, then padding */
360 status
= be16_to_cpu(req
->sample
);
361 status
= status
>> 3;
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
;
376 req
= kzalloc(sizeof *req
, GFP_KERNEL
);
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
);
390 status
= spi_sync(spi
, &req
->msg
);
392 mutex_unlock(&ts
->lock
);
395 /* BE12 value, then padding */
396 status
= be16_to_cpu(*((u16
*)&req
->sample
[1]));
397 status
= status
>> 3;
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); \
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
)
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
)
442 /* external resistors may scale vAUX into 0..vREF */
443 retval
*= ts
->vref_mv
;
444 retval
= retval
>> 12;
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)
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
,
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
,
481 static struct attribute_group ads7843_attr_group
= {
482 .attrs
= ads7843_attributes
,
485 static struct attribute
*ads7845_attributes
[] = {
486 &dev_attr_in0_input
.attr
,
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
;
499 /* hwmon sensors need a reference voltage */
503 dev_dbg(&spi
->dev
, "assuming 2.5V internal vREF\n");
511 "external vREF for ADS%d not specified\n",
518 /* different chips have different sensor groups */
521 ts
->attr_group
= &ads7846_attr_group
;
524 ts
->attr_group
= &ads7845_attr_group
;
527 ts
->attr_group
= &ads7843_attr_group
;
530 dev_dbg(&spi
->dev
, "ADS%d not recognized\n", ts
->model
);
534 err
= sysfs_create_group(&spi
->dev
.kobj
, ts
->attr_group
);
538 hwmon
= hwmon_device_register(&spi
->dev
);
540 sysfs_remove_group(&spi
->dev
.kobj
, ts
->attr_group
);
541 return PTR_ERR(hwmon
);
548 static void ads784x_hwmon_unregister(struct spi_device
*spi
,
552 sysfs_remove_group(&spi
->dev
.kobj
, ts
->attr_group
);
553 hwmon_device_unregister(ts
->hwmon
);
558 static inline int ads784x_hwmon_register(struct spi_device
*spi
,
564 static inline void ads784x_hwmon_unregister(struct spi_device
*spi
,
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
);
595 if (strict_strtoul(buf
, 10, &i
))
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
,
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. */
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
;
646 return ADS7846_FILTER_REPEAT
;
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
655 return ADS7846_FILTER_IGNORE
;
658 if (++ts
->read_rep
> ts
->debounce_rep
) {
660 * Got a good reading for this coordinate,
661 * go for the next one.
665 return ADS7846_FILTER_OK
;
667 /* Read more values that are consistent. */
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;
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
;
712 while (msg_idx
< ts
->msg_count
) {
716 m
= &ts
->msg
[msg_idx
];
717 error
= spi_sync(ts
->spi
, m
);
719 dev_err(&ts
->spi
->dev
, "spi_async --> %d\n", error
);
720 packet
->tc
.ignore
= true;
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
);
734 case ADS7846_FILTER_REPEAT
:
737 case ADS7846_FILTER_IGNORE
:
738 packet
->tc
.ignore
= true;
739 msg_idx
= ts
->msg_count
- 1;
742 case ADS7846_FILTER_OK
:
743 ads7846_update_value(m
, val
);
744 packet
->tc
.ignore
= false;
757 static void ads7846_report_state(struct ads7846
*ts
)
759 struct ads7846_packet
*packet
= ts
->packet
;
764 * ads7846_get_value() does in-place conversion (including byte swap)
765 * from on-the-wire format as part of debouncing to get stable
768 if (ts
->model
== 7845) {
769 x
= *(u16
*)packet
->tc
.x_buf
;
770 y
= *(u16
*)packet
->tc
.y_buf
;
780 /* range filtering */
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;
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 */
797 Rt
*= ts
->x_plate_ohms
;
799 Rt
= (Rt
+ 2047) >> 12;
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
);
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
))
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).
835 struct input_dev
*input
= ts
->input
;
841 input_report_key(input
, BTN_TOUCH
, 1);
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
);
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
);
876 ads7846_report_state(ts
);
878 wait_event_timeout(ts
->wait
, ts
->stopped
,
879 msecs_to_jiffies(TS_POLL_PERIOD
));
883 struct input_dev
*input
= ts
->input
;
885 input_report_key(input
, BTN_TOUCH
, 0);
886 input_report_abs(input
, ABS_PRESSURE
, 0);
890 dev_vdbg(&ts
->spi
->dev
, "UP\n");
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
) {
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
);
919 static int ads7846_resume(struct device
*dev
)
921 struct ads7846
*ts
= dev_get_drvdata(dev
);
923 mutex_lock(&ts
->lock
);
927 ts
->suspended
= false;
929 if (device_may_wakeup(&ts
->spi
->dev
))
930 disable_irq_wake(ts
->spi
->irq
);
933 __ads7846_enable(ts
);
936 mutex_unlock(&ts
->lock
);
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
;
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
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");
961 dev_err(&spi
->dev
, "failed to request pendown GPIO%d\n",
962 pdata
->gpio_pendown
);
966 ts
->gpio_pendown
= pdata
->gpio_pendown
;
969 dev_err(&spi
->dev
, "no get_pendown_state nor gpio_pendown?\n");
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
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];
1009 spi_message_add_tail(x
, m
);
1011 /* y- still on; turn on only y+ (and ADC) */
1012 packet
->read_y
= READ_Y(vref
);
1013 x
->tx_buf
= &packet
->read_y
;
1015 spi_message_add_tail(x
, m
);
1018 x
->rx_buf
= &packet
->tc
.y
;
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
;
1032 x
->tx_buf
= &packet
->read_y
;
1034 spi_message_add_tail(x
, m
);
1037 x
->rx_buf
= &packet
->tc
.y
;
1039 spi_message_add_tail(x
, m
);
1044 spi_message_init(m
);
1047 if (ts
->model
== 7845) {
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];
1055 spi_message_add_tail(x
, m
);
1057 /* turn y- off, x+ on, then leave in lowpower */
1059 packet
->read_x
= READ_X(vref
);
1060 x
->tx_buf
= &packet
->read_x
;
1062 spi_message_add_tail(x
, m
);
1065 x
->rx_buf
= &packet
->tc
.x
;
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
;
1075 x
->tx_buf
= &packet
->read_x
;
1077 spi_message_add_tail(x
, m
);
1080 x
->rx_buf
= &packet
->tc
.x
;
1082 spi_message_add_tail(x
, m
);
1085 /* turn y+ off, x- on; we'll use formula #2 */
1086 if (ts
->model
== 7846) {
1089 spi_message_init(m
);
1093 packet
->read_z1
= READ_Z1(vref
);
1094 x
->tx_buf
= &packet
->read_z1
;
1096 spi_message_add_tail(x
, m
);
1099 x
->rx_buf
= &packet
->tc
.z1
;
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
;
1108 x
->tx_buf
= &packet
->read_z1
;
1110 spi_message_add_tail(x
, m
);
1113 x
->rx_buf
= &packet
->tc
.z1
;
1115 spi_message_add_tail(x
, m
);
1120 spi_message_init(m
);
1124 packet
->read_z2
= READ_Z2(vref
);
1125 x
->tx_buf
= &packet
->read_z2
;
1127 spi_message_add_tail(x
, m
);
1130 x
->rx_buf
= &packet
->tc
.z2
;
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
;
1139 x
->tx_buf
= &packet
->read_z2
;
1141 spi_message_add_tail(x
, m
);
1144 x
->rx_buf
= &packet
->tc
.z2
;
1146 spi_message_add_tail(x
, m
);
1153 spi_message_init(m
);
1156 if (ts
->model
== 7845) {
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];
1165 packet
->pwrdown
= PWRDOWN
;
1166 x
->tx_buf
= &packet
->pwrdown
;
1168 spi_message_add_tail(x
, m
);
1171 x
->rx_buf
= &packet
->dummy
;
1176 spi_message_add_tail(x
, m
);
1179 static int __devinit
ads7846_probe(struct spi_device
*spi
)
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
;
1189 dev_dbg(&spi
->dev
, "no IRQ?\n");
1194 dev_dbg(&spi
->dev
, "no platform data?\n");
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);
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
);
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
) {
1223 dev_set_drvdata(&spi
->dev
, ts
);
1225 ts
->packet
= packet
;
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
);
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
;
1256 ts
->filter
= ads7846_no_filter
;
1259 err
= ads7846_setup_pendown(spi
, ts
);
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
,
1280 pdata
->x_max
? : MAX_12BIT
,
1282 input_set_abs_params(input_dev
, ABS_Y
,
1284 pdata
->y_max
? : MAX_12BIT
,
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
);
1298 err
= regulator_enable(ts
->reg
);
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
) {
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
);
1319 dev_dbg(&spi
->dev
, "irq %d busy?\n", spi
->irq
);
1320 goto err_disable_regulator
;
1323 err
= ads784x_hwmon_register(spi
, ts
);
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
);
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
);
1341 goto err_remove_hwmon
;
1343 err
= input_register_device(input_dev
);
1345 goto err_remove_attr_group
;
1347 device_init_wakeup(&spi
->dev
, pdata
->wakeup
);
1351 err_remove_attr_group
:
1352 sysfs_remove_group(&spi
->dev
.kobj
, &ads784x_attr_group
);
1354 ads784x_hwmon_unregister(spi
, ts
);
1356 free_irq(spi
->irq
, ts
);
1357 err_disable_regulator
:
1358 regulator_disable(ts
->reg
);
1360 regulator_put(ts
->reg
);
1362 if (!ts
->get_pendown_state
)
1363 gpio_free(ts
->gpio_pendown
);
1365 if (ts
->filter_cleanup
)
1366 ts
->filter_cleanup(ts
->filter_data
);
1368 input_free_device(input_dev
);
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
);
1406 dev_dbg(&spi
->dev
, "unregistered touchscreen\n");
1411 static struct spi_driver ads7846_driver
= {
1414 .bus
= &spi_bus_type
,
1415 .owner
= THIS_MODULE
,
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");