blob: 63a3cbdfa3f33a85a146f34fff7459cc6b46c17a [file] [log] [blame]
Russell Kingacb45432005-09-11 10:26:57 +01001/*
Pavel Machek54377752005-09-11 10:28:00 +01002 * Touchscreen driver for UCB1x00-based touchscreens
Russell Kingacb45432005-09-11 10:26:57 +01003 *
4 * Copyright (C) 2001 Russell King, All Rights Reserved.
Pavel Machek54377752005-09-11 10:28:00 +01005 * Copyright (C) 2005 Pavel Machek
Russell Kingacb45432005-09-11 10:26:57 +01006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * 21-Jan-2002 <jco@ict.es> :
12 *
13 * Added support for synchronous A/D mode. This mode is useful to
14 * avoid noise induced in the touchpanel by the LCD, provided that
15 * the UCB1x00 has a valid LCD sync signal routed to its ADCSYNC pin.
16 * It is important to note that the signal connected to the ADCSYNC
17 * pin should provide pulses even when the LCD is blanked, otherwise
18 * a pen touch needed to unblank the LCD will never be read.
19 */
Russell Kingacb45432005-09-11 10:26:57 +010020#include <linux/module.h>
21#include <linux/moduleparam.h>
22#include <linux/init.h>
23#include <linux/smp.h>
Russell Kingacb45432005-09-11 10:26:57 +010024#include <linux/sched.h>
25#include <linux/completion.h>
26#include <linux/delay.h>
27#include <linux/string.h>
28#include <linux/input.h>
29#include <linux/device.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080030#include <linux/freezer.h>
Russell Kingacb45432005-09-11 10:26:57 +010031#include <linux/slab.h>
Pavel Machek54377752005-09-11 10:28:00 +010032#include <linux/kthread.h>
Thomas Kunzec8602ed2009-02-10 14:54:57 +010033#include <linux/mfd/ucb1x00.h>
Russell Kingacb45432005-09-11 10:26:57 +010034
Russell Kingdcea83a2008-11-29 11:40:28 +000035#include <mach/dma.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010036#include <mach/collie.h>
Pavel Machek17532982005-10-30 23:38:01 +000037#include <asm/mach-types.h>
Russell Kingacb45432005-09-11 10:26:57 +010038
Russell Kingacb45432005-09-11 10:26:57 +010039
40
41struct ucb1x00_ts {
Dmitry Torokhovbd622662005-09-15 02:01:48 -050042 struct input_dev *idev;
Russell Kingacb45432005-09-11 10:26:57 +010043 struct ucb1x00 *ucb;
44
45 wait_queue_head_t irq_wait;
Russell Kingacb45432005-09-11 10:26:57 +010046 struct task_struct *rtask;
Russell Kingacb45432005-09-11 10:26:57 +010047 u16 x_res;
48 u16 y_res;
49
Russell King6b9ea422005-09-24 10:24:37 +010050 unsigned int adcsync:1;
Russell Kingacb45432005-09-11 10:26:57 +010051};
52
53static int adcsync;
54
55static inline void ucb1x00_ts_evt_add(struct ucb1x00_ts *ts, u16 pressure, u16 x, u16 y)
56{
Nicolas Pitre1393c3e2005-12-12 00:37:36 -080057 struct input_dev *idev = ts->idev;
Dmitry Torokhov08c67d22006-09-29 01:59:52 -070058
Nicolas Pitre1393c3e2005-12-12 00:37:36 -080059 input_report_abs(idev, ABS_X, x);
60 input_report_abs(idev, ABS_Y, y);
61 input_report_abs(idev, ABS_PRESSURE, pressure);
Jochen Friedrichde8c8b02011-01-30 13:40:56 +010062 input_report_key(idev, BTN_TOUCH, 1);
Nicolas Pitre1393c3e2005-12-12 00:37:36 -080063 input_sync(idev);
Russell Kingacb45432005-09-11 10:26:57 +010064}
65
66static inline void ucb1x00_ts_event_release(struct ucb1x00_ts *ts)
67{
Nicolas Pitre1393c3e2005-12-12 00:37:36 -080068 struct input_dev *idev = ts->idev;
Dmitry Torokhov08c67d22006-09-29 01:59:52 -070069
Nicolas Pitre1393c3e2005-12-12 00:37:36 -080070 input_report_abs(idev, ABS_PRESSURE, 0);
Jochen Friedrichde8c8b02011-01-30 13:40:56 +010071 input_report_key(idev, BTN_TOUCH, 0);
Nicolas Pitre1393c3e2005-12-12 00:37:36 -080072 input_sync(idev);
Russell Kingacb45432005-09-11 10:26:57 +010073}
74
75/*
76 * Switch to interrupt mode.
77 */
78static inline void ucb1x00_ts_mode_int(struct ucb1x00_ts *ts)
79{
80 ucb1x00_reg_write(ts->ucb, UCB_TS_CR,
81 UCB_TS_CR_TSMX_POW | UCB_TS_CR_TSPX_POW |
82 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_GND |
83 UCB_TS_CR_MODE_INT);
84}
85
86/*
87 * Switch to pressure mode, and read pressure. We don't need to wait
88 * here, since both plates are being driven.
89 */
90static inline unsigned int ucb1x00_ts_read_pressure(struct ucb1x00_ts *ts)
91{
Pavel Machek17532982005-10-30 23:38:01 +000092 if (machine_is_collie()) {
93 ucb1x00_io_write(ts->ucb, COLLIE_TC35143_GPIO_TBL_CHK, 0);
94 ucb1x00_reg_write(ts->ucb, UCB_TS_CR,
95 UCB_TS_CR_TSPX_POW | UCB_TS_CR_TSMX_POW |
96 UCB_TS_CR_MODE_POS | UCB_TS_CR_BIAS_ENA);
Russell Kingacb45432005-09-11 10:26:57 +010097
Pavel Machek17532982005-10-30 23:38:01 +000098 udelay(55);
99
100 return ucb1x00_adc_read(ts->ucb, UCB_ADC_INP_AD2, ts->adcsync);
101 } else {
102 ucb1x00_reg_write(ts->ucb, UCB_TS_CR,
103 UCB_TS_CR_TSMX_POW | UCB_TS_CR_TSPX_POW |
104 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_GND |
105 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
106
107 return ucb1x00_adc_read(ts->ucb, UCB_ADC_INP_TSPY, ts->adcsync);
108 }
Russell Kingacb45432005-09-11 10:26:57 +0100109}
110
111/*
112 * Switch to X position mode and measure Y plate. We switch the plate
113 * configuration in pressure mode, then switch to position mode. This
114 * gives a faster response time. Even so, we need to wait about 55us
115 * for things to stabilise.
116 */
117static inline unsigned int ucb1x00_ts_read_xpos(struct ucb1x00_ts *ts)
118{
Pavel Machek17532982005-10-30 23:38:01 +0000119 if (machine_is_collie())
120 ucb1x00_io_write(ts->ucb, 0, COLLIE_TC35143_GPIO_TBL_CHK);
121 else {
122 ucb1x00_reg_write(ts->ucb, UCB_TS_CR,
123 UCB_TS_CR_TSMX_GND | UCB_TS_CR_TSPX_POW |
124 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
125 ucb1x00_reg_write(ts->ucb, UCB_TS_CR,
126 UCB_TS_CR_TSMX_GND | UCB_TS_CR_TSPX_POW |
127 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
128 }
Russell Kingacb45432005-09-11 10:26:57 +0100129 ucb1x00_reg_write(ts->ucb, UCB_TS_CR,
130 UCB_TS_CR_TSMX_GND | UCB_TS_CR_TSPX_POW |
131 UCB_TS_CR_MODE_POS | UCB_TS_CR_BIAS_ENA);
132
133 udelay(55);
134
135 return ucb1x00_adc_read(ts->ucb, UCB_ADC_INP_TSPY, ts->adcsync);
136}
137
138/*
139 * Switch to Y position mode and measure X plate. We switch the plate
140 * configuration in pressure mode, then switch to position mode. This
141 * gives a faster response time. Even so, we need to wait about 55us
142 * for things to stabilise.
143 */
144static inline unsigned int ucb1x00_ts_read_ypos(struct ucb1x00_ts *ts)
145{
Pavel Machek17532982005-10-30 23:38:01 +0000146 if (machine_is_collie())
147 ucb1x00_io_write(ts->ucb, 0, COLLIE_TC35143_GPIO_TBL_CHK);
148 else {
149 ucb1x00_reg_write(ts->ucb, UCB_TS_CR,
150 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_POW |
151 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
152 ucb1x00_reg_write(ts->ucb, UCB_TS_CR,
153 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_POW |
154 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
155 }
156
Russell Kingacb45432005-09-11 10:26:57 +0100157 ucb1x00_reg_write(ts->ucb, UCB_TS_CR,
158 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_POW |
159 UCB_TS_CR_MODE_POS | UCB_TS_CR_BIAS_ENA);
160
161 udelay(55);
162
163 return ucb1x00_adc_read(ts->ucb, UCB_ADC_INP_TSPX, ts->adcsync);
164}
165
166/*
167 * Switch to X plate resistance mode. Set MX to ground, PX to
168 * supply. Measure current.
169 */
170static inline unsigned int ucb1x00_ts_read_xres(struct ucb1x00_ts *ts)
171{
172 ucb1x00_reg_write(ts->ucb, UCB_TS_CR,
173 UCB_TS_CR_TSMX_GND | UCB_TS_CR_TSPX_POW |
174 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
175 return ucb1x00_adc_read(ts->ucb, 0, ts->adcsync);
176}
177
178/*
179 * Switch to Y plate resistance mode. Set MY to ground, PY to
180 * supply. Measure current.
181 */
182static inline unsigned int ucb1x00_ts_read_yres(struct ucb1x00_ts *ts)
183{
184 ucb1x00_reg_write(ts->ucb, UCB_TS_CR,
185 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_POW |
186 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
187 return ucb1x00_adc_read(ts->ucb, 0, ts->adcsync);
188}
189
Pavel Machek17532982005-10-30 23:38:01 +0000190static inline int ucb1x00_ts_pen_down(struct ucb1x00_ts *ts)
191{
192 unsigned int val = ucb1x00_reg_read(ts->ucb, UCB_TS_CR);
Dmitry Torokhov08c67d22006-09-29 01:59:52 -0700193
Pavel Machek17532982005-10-30 23:38:01 +0000194 if (machine_is_collie())
195 return (!(val & (UCB_TS_CR_TSPX_LOW)));
196 else
197 return (val & (UCB_TS_CR_TSPX_LOW | UCB_TS_CR_TSMX_LOW));
198}
199
Russell Kingacb45432005-09-11 10:26:57 +0100200/*
201 * This is a RT kernel thread that handles the ADC accesses
202 * (mainly so we can use semaphores in the UCB1200 core code
203 * to serialise accesses to the ADC).
204 */
205static int ucb1x00_thread(void *_ts)
206{
207 struct ucb1x00_ts *ts = _ts;
Robert P. J. Dayf7440b02008-04-28 02:14:24 -0700208 DECLARE_WAITQUEUE(wait, current);
Russell King0af5e4c2012-01-22 20:58:55 +0000209 bool frozen, ignore = false;
Dmitry Torokhov1124d5c2007-05-14 23:52:22 -0400210 int valid = 0;
Russell Kingacb45432005-09-11 10:26:57 +0100211
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700212 set_freezable();
Russell Kingacb45432005-09-11 10:26:57 +0100213 add_wait_queue(&ts->irq_wait, &wait);
Russell King0af5e4c2012-01-22 20:58:55 +0000214 while (!kthread_freezable_should_stop(&frozen)) {
Pavel Machek17532982005-10-30 23:38:01 +0000215 unsigned int x, y, p;
Russell Kingacb45432005-09-11 10:26:57 +0100216 signed long timeout;
217
Russell King0af5e4c2012-01-22 20:58:55 +0000218 if (frozen)
219 ignore = true;
Russell Kingacb45432005-09-11 10:26:57 +0100220
221 ucb1x00_adc_enable(ts->ucb);
222
223 x = ucb1x00_ts_read_xpos(ts);
224 y = ucb1x00_ts_read_ypos(ts);
225 p = ucb1x00_ts_read_pressure(ts);
226
227 /*
228 * Switch back to interrupt mode.
229 */
230 ucb1x00_ts_mode_int(ts);
231 ucb1x00_adc_disable(ts->ucb);
232
Pavel Machek54377752005-09-11 10:28:00 +0100233 msleep(10);
Russell Kingacb45432005-09-11 10:26:57 +0100234
235 ucb1x00_enable(ts->ucb);
Russell Kingacb45432005-09-11 10:26:57 +0100236
Pavel Machek17532982005-10-30 23:38:01 +0000237
238 if (ucb1x00_ts_pen_down(ts)) {
Robert P. J. Dayf7440b02008-04-28 02:14:24 -0700239 set_current_state(TASK_INTERRUPTIBLE);
Russell Kingacb45432005-09-11 10:26:57 +0100240
Pavel Machek17532982005-10-30 23:38:01 +0000241 ucb1x00_enable_irq(ts->ucb, UCB_IRQ_TSPX, machine_is_collie() ? UCB_RISING : UCB_FALLING);
Russell Kingacb45432005-09-11 10:26:57 +0100242 ucb1x00_disable(ts->ucb);
243
244 /*
245 * If we spat out a valid sample set last time,
246 * spit out a "pen off" sample here.
247 */
248 if (valid) {
249 ucb1x00_ts_event_release(ts);
250 valid = 0;
251 }
252
253 timeout = MAX_SCHEDULE_TIMEOUT;
254 } else {
255 ucb1x00_disable(ts->ucb);
256
257 /*
258 * Filtering is policy. Policy belongs in user
259 * space. We therefore leave it to user space
260 * to do any filtering they please.
261 */
Russell King0af5e4c2012-01-22 20:58:55 +0000262 if (!ignore) {
Russell Kingacb45432005-09-11 10:26:57 +0100263 ucb1x00_ts_evt_add(ts, p, x, y);
264 valid = 1;
265 }
266
Robert P. J. Dayf7440b02008-04-28 02:14:24 -0700267 set_current_state(TASK_INTERRUPTIBLE);
Russell Kingacb45432005-09-11 10:26:57 +0100268 timeout = HZ / 100;
269 }
270
Russell Kingacb45432005-09-11 10:26:57 +0100271 schedule_timeout(timeout);
Russell Kingacb45432005-09-11 10:26:57 +0100272 }
273
274 remove_wait_queue(&ts->irq_wait, &wait);
275
276 ts->rtask = NULL;
Pavel Machek54377752005-09-11 10:28:00 +0100277 return 0;
Russell Kingacb45432005-09-11 10:26:57 +0100278}
279
280/*
281 * We only detect touch screen _touches_ with this interrupt
282 * handler, and even then we just schedule our task.
283 */
284static void ucb1x00_ts_irq(int idx, void *id)
285{
286 struct ucb1x00_ts *ts = id;
Dmitry Torokhov08c67d22006-09-29 01:59:52 -0700287
Russell Kingacb45432005-09-11 10:26:57 +0100288 ucb1x00_disable_irq(ts->ucb, UCB_IRQ_TSPX, UCB_FALLING);
289 wake_up(&ts->irq_wait);
290}
291
292static int ucb1x00_ts_open(struct input_dev *idev)
293{
Dmitry Torokhov26be5a52007-05-11 01:16:12 -0400294 struct ucb1x00_ts *ts = input_get_drvdata(idev);
Russell Kingacb45432005-09-11 10:26:57 +0100295 int ret = 0;
296
Pavel Machek54377752005-09-11 10:28:00 +0100297 BUG_ON(ts->rtask);
Russell Kingacb45432005-09-11 10:26:57 +0100298
299 init_waitqueue_head(&ts->irq_wait);
300 ret = ucb1x00_hook_irq(ts->ucb, UCB_IRQ_TSPX, ucb1x00_ts_irq, ts);
301 if (ret < 0)
302 goto out;
303
304 /*
305 * If we do this at all, we should allow the user to
306 * measure and read the X and Y resistance at any time.
307 */
308 ucb1x00_adc_enable(ts->ucb);
309 ts->x_res = ucb1x00_ts_read_xres(ts);
310 ts->y_res = ucb1x00_ts_read_yres(ts);
311 ucb1x00_adc_disable(ts->ucb);
312
Pavel Machek54377752005-09-11 10:28:00 +0100313 ts->rtask = kthread_run(ucb1x00_thread, ts, "ktsd");
314 if (!IS_ERR(ts->rtask)) {
Russell Kingacb45432005-09-11 10:26:57 +0100315 ret = 0;
316 } else {
317 ucb1x00_free_irq(ts->ucb, UCB_IRQ_TSPX, ts);
Pavel Machek54377752005-09-11 10:28:00 +0100318 ts->rtask = NULL;
319 ret = -EFAULT;
Russell Kingacb45432005-09-11 10:26:57 +0100320 }
321
322 out:
Russell Kingacb45432005-09-11 10:26:57 +0100323 return ret;
324}
325
326/*
327 * Release touchscreen resources. Disable IRQs.
328 */
329static void ucb1x00_ts_close(struct input_dev *idev)
330{
Dmitry Torokhov26be5a52007-05-11 01:16:12 -0400331 struct ucb1x00_ts *ts = input_get_drvdata(idev);
Russell Kingacb45432005-09-11 10:26:57 +0100332
Pavel Machek54377752005-09-11 10:28:00 +0100333 if (ts->rtask)
334 kthread_stop(ts->rtask);
Russell Kingacb45432005-09-11 10:26:57 +0100335
Pavel Machek54377752005-09-11 10:28:00 +0100336 ucb1x00_enable(ts->ucb);
337 ucb1x00_free_irq(ts->ucb, UCB_IRQ_TSPX, ts);
338 ucb1x00_reg_write(ts->ucb, UCB_TS_CR, 0);
339 ucb1x00_disable(ts->ucb);
Russell Kingacb45432005-09-11 10:26:57 +0100340}
341
Russell Kingacb45432005-09-11 10:26:57 +0100342
343/*
344 * Initialisation.
345 */
346static int ucb1x00_ts_add(struct ucb1x00_dev *dev)
347{
348 struct ucb1x00_ts *ts;
Dmitry Torokhov08c67d22006-09-29 01:59:52 -0700349 struct input_dev *idev;
350 int err;
Russell Kingacb45432005-09-11 10:26:57 +0100351
Dmitry Torokhovbd622662005-09-15 02:01:48 -0500352 ts = kzalloc(sizeof(struct ucb1x00_ts), GFP_KERNEL);
Dmitry Torokhov08c67d22006-09-29 01:59:52 -0700353 idev = input_allocate_device();
354 if (!ts || !idev) {
355 err = -ENOMEM;
356 goto fail;
Dmitry Torokhovbd622662005-09-15 02:01:48 -0500357 }
Russell Kingacb45432005-09-11 10:26:57 +0100358
359 ts->ucb = dev->ucb;
Dmitry Torokhov08c67d22006-09-29 01:59:52 -0700360 ts->idev = idev;
Russell Kingacb45432005-09-11 10:26:57 +0100361 ts->adcsync = adcsync ? UCB_SYNC : UCB_NOSYNC;
Russell Kingacb45432005-09-11 10:26:57 +0100362
Dmitry Torokhov08c67d22006-09-29 01:59:52 -0700363 idev->name = "Touchscreen panel";
Russell King65f2e752012-01-20 17:38:58 +0000364 idev->id.product = ts->ucb->id;
Dmitry Torokhov08c67d22006-09-29 01:59:52 -0700365 idev->open = ucb1x00_ts_open;
366 idev->close = ucb1x00_ts_close;
Russell Kingacb45432005-09-11 10:26:57 +0100367
Jochen Friedrichde8c8b02011-01-30 13:40:56 +0100368 idev->evbit[0] = BIT_MASK(EV_ABS) | BIT_MASK(EV_KEY);
369 idev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
Russell Kingacb45432005-09-11 10:26:57 +0100370
Dmitry Torokhov26be5a52007-05-11 01:16:12 -0400371 input_set_drvdata(idev, ts);
372
Jochen Friedrich9063f1f2011-01-26 11:30:01 +0100373 ucb1x00_adc_enable(ts->ucb);
374 ts->x_res = ucb1x00_ts_read_xres(ts);
375 ts->y_res = ucb1x00_ts_read_yres(ts);
376 ucb1x00_adc_disable(ts->ucb);
377
378 input_set_abs_params(idev, ABS_X, 0, ts->x_res, 0, 0);
379 input_set_abs_params(idev, ABS_Y, 0, ts->y_res, 0, 0);
380 input_set_abs_params(idev, ABS_PRESSURE, 0, 0, 0, 0);
381
Dmitry Torokhov08c67d22006-09-29 01:59:52 -0700382 err = input_register_device(idev);
383 if (err)
384 goto fail;
Russell Kingacb45432005-09-11 10:26:57 +0100385
386 dev->priv = ts;
387
388 return 0;
Dmitry Torokhov08c67d22006-09-29 01:59:52 -0700389
390 fail:
391 input_free_device(idev);
392 kfree(ts);
393 return err;
Russell Kingacb45432005-09-11 10:26:57 +0100394}
395
396static void ucb1x00_ts_remove(struct ucb1x00_dev *dev)
397{
398 struct ucb1x00_ts *ts = dev->priv;
Dmitry Torokhovbd622662005-09-15 02:01:48 -0500399
400 input_unregister_device(ts->idev);
Russell Kingacb45432005-09-11 10:26:57 +0100401 kfree(ts);
402}
403
404static struct ucb1x00_driver ucb1x00_ts_driver = {
405 .add = ucb1x00_ts_add,
406 .remove = ucb1x00_ts_remove,
Russell Kingacb45432005-09-11 10:26:57 +0100407};
408
409static int __init ucb1x00_ts_init(void)
410{
411 return ucb1x00_register_driver(&ucb1x00_ts_driver);
412}
413
414static void __exit ucb1x00_ts_exit(void)
415{
416 ucb1x00_unregister_driver(&ucb1x00_ts_driver);
417}
418
419module_param(adcsync, int, 0444);
420module_init(ucb1x00_ts_init);
421module_exit(ucb1x00_ts_exit);
422
423MODULE_AUTHOR("Russell King <rmk@arm.linux.org.uk>");
424MODULE_DESCRIPTION("UCB1x00 touchscreen driver");
425MODULE_LICENSE("GPL");