blob: 095f84b1f56e33769a4513a9d635aa3b0100f7f3 [file] [log] [blame]
Nicolas Pitref40219b2006-11-17 01:07:26 -05001/*
2 * Philips UCB1400 touchscreen driver
3 *
4 * Author: Nicolas Pitre
5 * Created: September 25, 2006
6 * Copyright: MontaVista Software, Inc.
7 *
Marek Vašutd9105c22008-08-03 21:34:08 +01008 * Spliting done by: Marek Vasut <marek.vasut@gmail.com>
9 * If something doesnt work and it worked before spliting, e-mail me,
10 * dont bother Nicolas please ;-)
11 *
Nicolas Pitref40219b2006-11-17 01:07:26 -050012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 *
16 * This code is heavily based on ucb1x00-*.c copyrighted by Russell King
17 * covering the UCB1100, UCB1200 and UCB1300.. Support for the UCB1400 has
18 * been made separate from ucb1x00-core/ucb1x00-ts on Russell's request.
19 */
20
21#include <linux/module.h>
Nicolas Pitref40219b2006-11-17 01:07:26 -050022#include <linux/init.h>
Nicolas Pitref40219b2006-11-17 01:07:26 -050023#include <linux/completion.h>
24#include <linux/delay.h>
25#include <linux/input.h>
26#include <linux/device.h>
27#include <linux/interrupt.h>
28#include <linux/suspend.h>
29#include <linux/slab.h>
30#include <linux/kthread.h>
Dmitry Torokhovbff19b12006-12-08 01:37:03 -050031#include <linux/freezer.h>
Marek Vašutd9105c22008-08-03 21:34:08 +010032#include <linux/ucb1400.h>
Nicolas Pitref40219b2006-11-17 01:07:26 -050033
34static int adcsync;
Cliff Brakeb5b16c52007-04-12 01:35:43 -040035static int ts_delay = 55; /* us */
36static int ts_delay_pressure; /* us */
Nicolas Pitref40219b2006-11-17 01:07:26 -050037
Nicolas Pitref40219b2006-11-17 01:07:26 -050038/* Switch to interrupt mode. */
Marek Vašutd9105c22008-08-03 21:34:08 +010039static inline void ucb1400_ts_mode_int(struct snd_ac97 *ac97)
Nicolas Pitref40219b2006-11-17 01:07:26 -050040{
Marek Vašutd9105c22008-08-03 21:34:08 +010041 ucb1400_reg_write(ac97, UCB_TS_CR,
Nicolas Pitref40219b2006-11-17 01:07:26 -050042 UCB_TS_CR_TSMX_POW | UCB_TS_CR_TSPX_POW |
43 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_GND |
44 UCB_TS_CR_MODE_INT);
45}
46
47/*
48 * Switch to pressure mode, and read pressure. We don't need to wait
49 * here, since both plates are being driven.
50 */
Marek Vašutd9105c22008-08-03 21:34:08 +010051static inline unsigned int ucb1400_ts_read_pressure(struct ucb1400_ts *ucb)
Nicolas Pitref40219b2006-11-17 01:07:26 -050052{
Marek Vašutd9105c22008-08-03 21:34:08 +010053 ucb1400_reg_write(ucb->ac97, UCB_TS_CR,
Nicolas Pitref40219b2006-11-17 01:07:26 -050054 UCB_TS_CR_TSMX_POW | UCB_TS_CR_TSPX_POW |
55 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_GND |
56 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
Cliff Brakeb5b16c52007-04-12 01:35:43 -040057 udelay(ts_delay_pressure);
Marek Vašutd9105c22008-08-03 21:34:08 +010058 return ucb1400_adc_read(ucb->ac97, UCB_ADC_INP_TSPY, adcsync);
Nicolas Pitref40219b2006-11-17 01:07:26 -050059}
60
61/*
62 * Switch to X position mode and measure Y plate. We switch the plate
63 * configuration in pressure mode, then switch to position mode. This
64 * gives a faster response time. Even so, we need to wait about 55us
65 * for things to stabilise.
66 */
Marek Vašutd9105c22008-08-03 21:34:08 +010067static inline unsigned int ucb1400_ts_read_xpos(struct ucb1400_ts *ucb)
Nicolas Pitref40219b2006-11-17 01:07:26 -050068{
Marek Vašutd9105c22008-08-03 21:34:08 +010069 ucb1400_reg_write(ucb->ac97, UCB_TS_CR,
Nicolas Pitref40219b2006-11-17 01:07:26 -050070 UCB_TS_CR_TSMX_GND | UCB_TS_CR_TSPX_POW |
71 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
Marek Vašutd9105c22008-08-03 21:34:08 +010072 ucb1400_reg_write(ucb->ac97, UCB_TS_CR,
Nicolas Pitref40219b2006-11-17 01:07:26 -050073 UCB_TS_CR_TSMX_GND | UCB_TS_CR_TSPX_POW |
74 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
Marek Vašutd9105c22008-08-03 21:34:08 +010075 ucb1400_reg_write(ucb->ac97, UCB_TS_CR,
Nicolas Pitref40219b2006-11-17 01:07:26 -050076 UCB_TS_CR_TSMX_GND | UCB_TS_CR_TSPX_POW |
77 UCB_TS_CR_MODE_POS | UCB_TS_CR_BIAS_ENA);
78
Cliff Brakeb5b16c52007-04-12 01:35:43 -040079 udelay(ts_delay);
Nicolas Pitref40219b2006-11-17 01:07:26 -050080
Marek Vašutd9105c22008-08-03 21:34:08 +010081 return ucb1400_adc_read(ucb->ac97, UCB_ADC_INP_TSPY, adcsync);
Nicolas Pitref40219b2006-11-17 01:07:26 -050082}
83
84/*
85 * Switch to Y position mode and measure X plate. We switch the plate
86 * configuration in pressure mode, then switch to position mode. This
87 * gives a faster response time. Even so, we need to wait about 55us
88 * for things to stabilise.
89 */
Marek Vašutd9105c22008-08-03 21:34:08 +010090static inline unsigned int ucb1400_ts_read_ypos(struct ucb1400_ts *ucb)
Nicolas Pitref40219b2006-11-17 01:07:26 -050091{
Marek Vašutd9105c22008-08-03 21:34:08 +010092 ucb1400_reg_write(ucb->ac97, UCB_TS_CR,
Nicolas Pitref40219b2006-11-17 01:07:26 -050093 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_POW |
94 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
Marek Vašutd9105c22008-08-03 21:34:08 +010095 ucb1400_reg_write(ucb->ac97, UCB_TS_CR,
Nicolas Pitref40219b2006-11-17 01:07:26 -050096 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_POW |
97 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
Marek Vašutd9105c22008-08-03 21:34:08 +010098 ucb1400_reg_write(ucb->ac97, UCB_TS_CR,
Nicolas Pitref40219b2006-11-17 01:07:26 -050099 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_POW |
100 UCB_TS_CR_MODE_POS | UCB_TS_CR_BIAS_ENA);
101
Cliff Brakeb5b16c52007-04-12 01:35:43 -0400102 udelay(ts_delay);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500103
Marek Vašutd9105c22008-08-03 21:34:08 +0100104 return ucb1400_adc_read(ucb->ac97, UCB_ADC_INP_TSPX, adcsync);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500105}
106
107/*
108 * Switch to X plate resistance mode. Set MX to ground, PX to
109 * supply. Measure current.
110 */
Marek Vašutd9105c22008-08-03 21:34:08 +0100111static inline unsigned int ucb1400_ts_read_xres(struct ucb1400_ts *ucb)
Nicolas Pitref40219b2006-11-17 01:07:26 -0500112{
Marek Vašutd9105c22008-08-03 21:34:08 +0100113 ucb1400_reg_write(ucb->ac97, UCB_TS_CR,
Nicolas Pitref40219b2006-11-17 01:07:26 -0500114 UCB_TS_CR_TSMX_GND | UCB_TS_CR_TSPX_POW |
115 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
Marek Vašutd9105c22008-08-03 21:34:08 +0100116 return ucb1400_adc_read(ucb->ac97, 0, adcsync);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500117}
118
119/*
120 * Switch to Y plate resistance mode. Set MY to ground, PY to
121 * supply. Measure current.
122 */
Marek Vašutd9105c22008-08-03 21:34:08 +0100123static inline unsigned int ucb1400_ts_read_yres(struct ucb1400_ts *ucb)
Nicolas Pitref40219b2006-11-17 01:07:26 -0500124{
Marek Vašutd9105c22008-08-03 21:34:08 +0100125 ucb1400_reg_write(ucb->ac97, UCB_TS_CR,
Nicolas Pitref40219b2006-11-17 01:07:26 -0500126 UCB_TS_CR_TSMY_GND | UCB_TS_CR_TSPY_POW |
127 UCB_TS_CR_MODE_PRES | UCB_TS_CR_BIAS_ENA);
Marek Vašutd9105c22008-08-03 21:34:08 +0100128 return ucb1400_adc_read(ucb->ac97, 0, adcsync);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500129}
130
Hans J. Kochf9c22732009-07-12 20:51:25 -0700131static inline int ucb1400_ts_pen_up(struct snd_ac97 *ac97)
Nicolas Pitref40219b2006-11-17 01:07:26 -0500132{
Marek Vašutd9105c22008-08-03 21:34:08 +0100133 unsigned short val = ucb1400_reg_read(ac97, UCB_TS_CR);
Hans J. Kochf9c22732009-07-12 20:51:25 -0700134
Marek Vašutd9105c22008-08-03 21:34:08 +0100135 return val & (UCB_TS_CR_TSPX_LOW | UCB_TS_CR_TSMX_LOW);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500136}
137
Marek Vašutd9105c22008-08-03 21:34:08 +0100138static inline void ucb1400_ts_irq_enable(struct snd_ac97 *ac97)
Nicolas Pitref40219b2006-11-17 01:07:26 -0500139{
Marek Vašutd9105c22008-08-03 21:34:08 +0100140 ucb1400_reg_write(ac97, UCB_IE_CLEAR, UCB_IE_TSPX);
141 ucb1400_reg_write(ac97, UCB_IE_CLEAR, 0);
142 ucb1400_reg_write(ac97, UCB_IE_FAL, UCB_IE_TSPX);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500143}
144
Marek Vašutd9105c22008-08-03 21:34:08 +0100145static inline void ucb1400_ts_irq_disable(struct snd_ac97 *ac97)
Nicolas Pitref40219b2006-11-17 01:07:26 -0500146{
Marek Vašutd9105c22008-08-03 21:34:08 +0100147 ucb1400_reg_write(ac97, UCB_IE_FAL, 0);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500148}
149
150static void ucb1400_ts_evt_add(struct input_dev *idev, u16 pressure, u16 x, u16 y)
151{
152 input_report_abs(idev, ABS_X, x);
153 input_report_abs(idev, ABS_Y, y);
154 input_report_abs(idev, ABS_PRESSURE, pressure);
Mike Rapoportcd2d64b2009-03-04 01:12:49 -0800155 input_report_key(idev, BTN_TOUCH, 1);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500156 input_sync(idev);
157}
158
159static void ucb1400_ts_event_release(struct input_dev *idev)
160{
161 input_report_abs(idev, ABS_PRESSURE, 0);
Mike Rapoportcd2d64b2009-03-04 01:12:49 -0800162 input_report_key(idev, BTN_TOUCH, 0);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500163 input_sync(idev);
164}
165
Marek Vašutd9105c22008-08-03 21:34:08 +0100166static void ucb1400_handle_pending_irq(struct ucb1400_ts *ucb)
Nicolas Pitref40219b2006-11-17 01:07:26 -0500167{
168 unsigned int isr;
169
Marek Vašutd9105c22008-08-03 21:34:08 +0100170 isr = ucb1400_reg_read(ucb->ac97, UCB_IE_STATUS);
171 ucb1400_reg_write(ucb->ac97, UCB_IE_CLEAR, isr);
172 ucb1400_reg_write(ucb->ac97, UCB_IE_CLEAR, 0);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500173
Pavel Revak9b2fb2d2009-08-20 22:30:54 -0700174 if (isr & UCB_IE_TSPX)
Marek Vašutd9105c22008-08-03 21:34:08 +0100175 ucb1400_ts_irq_disable(ucb->ac97);
Pavel Revak9b2fb2d2009-08-20 22:30:54 -0700176 else
177 dev_dbg(&ucb->ts_idev->dev, "ucb1400: unexpected IE_STATUS = %#x\n", isr);
178 enable_irq(ucb->irq);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500179}
180
181static int ucb1400_ts_thread(void *_ucb)
182{
Marek Vašutd9105c22008-08-03 21:34:08 +0100183 struct ucb1400_ts *ucb = _ucb;
Nicolas Pitref40219b2006-11-17 01:07:26 -0500184 struct task_struct *tsk = current;
185 int valid = 0;
Satoru Takeuchic130bdb2007-05-14 23:52:07 -0400186 struct sched_param param = { .sched_priority = 1 };
Nicolas Pitref40219b2006-11-17 01:07:26 -0500187
Satoru Takeuchic130bdb2007-05-14 23:52:07 -0400188 sched_setscheduler(tsk, SCHED_FIFO, &param);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500189
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700190 set_freezable();
Nicolas Pitref40219b2006-11-17 01:07:26 -0500191 while (!kthread_should_stop()) {
192 unsigned int x, y, p;
193 long timeout;
194
195 ucb->ts_restart = 0;
196
197 if (ucb->irq_pending) {
198 ucb->irq_pending = 0;
199 ucb1400_handle_pending_irq(ucb);
200 }
201
Marek Vašutd9105c22008-08-03 21:34:08 +0100202 ucb1400_adc_enable(ucb->ac97);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500203 x = ucb1400_ts_read_xpos(ucb);
204 y = ucb1400_ts_read_ypos(ucb);
205 p = ucb1400_ts_read_pressure(ucb);
Marek Vašutd9105c22008-08-03 21:34:08 +0100206 ucb1400_adc_disable(ucb->ac97);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500207
208 /* Switch back to interrupt mode. */
Marek Vašutd9105c22008-08-03 21:34:08 +0100209 ucb1400_ts_mode_int(ucb->ac97);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500210
211 msleep(10);
212
Hans J. Kochf9c22732009-07-12 20:51:25 -0700213 if (ucb1400_ts_pen_up(ucb->ac97)) {
Marek Vašutd9105c22008-08-03 21:34:08 +0100214 ucb1400_ts_irq_enable(ucb->ac97);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500215
216 /*
217 * If we spat out a valid sample set last time,
218 * spit out a "pen off" sample here.
219 */
220 if (valid) {
221 ucb1400_ts_event_release(ucb->ts_idev);
222 valid = 0;
223 }
224
225 timeout = MAX_SCHEDULE_TIMEOUT;
226 } else {
227 valid = 1;
228 ucb1400_ts_evt_add(ucb->ts_idev, p, x, y);
229 timeout = msecs_to_jiffies(10);
230 }
231
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700232 wait_event_freezable_timeout(ucb->ts_wait,
Marek Vašutd9105c22008-08-03 21:34:08 +0100233 ucb->irq_pending || ucb->ts_restart ||
234 kthread_should_stop(), timeout);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500235 }
236
237 /* Send the "pen off" if we are stopping with the pen still active */
238 if (valid)
239 ucb1400_ts_event_release(ucb->ts_idev);
240
241 ucb->ts_task = NULL;
242 return 0;
243}
244
245/*
246 * A restriction with interrupts exists when using the ucb1400, as
247 * the codec read/write routines may sleep while waiting for codec
248 * access completion and uses semaphores for access control to the
249 * AC97 bus. A complete codec read cycle could take anywhere from
250 * 60 to 100uSec so we *definitely* don't want to spin inside the
251 * interrupt handler waiting for codec access. So, we handle the
252 * interrupt by scheduling a RT kernel thread to run in process
253 * context instead of interrupt context.
254 */
255static irqreturn_t ucb1400_hard_irq(int irqnr, void *devid)
256{
Marek Vašutd9105c22008-08-03 21:34:08 +0100257 struct ucb1400_ts *ucb = devid;
Nicolas Pitref40219b2006-11-17 01:07:26 -0500258
259 if (irqnr == ucb->irq) {
Ben Nizette3deb6492009-04-17 20:35:58 -0700260 disable_irq_nosync(ucb->irq);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500261 ucb->irq_pending = 1;
262 wake_up(&ucb->ts_wait);
263 return IRQ_HANDLED;
264 }
265 return IRQ_NONE;
266}
267
268static int ucb1400_ts_open(struct input_dev *idev)
269{
Marek Vašutd9105c22008-08-03 21:34:08 +0100270 struct ucb1400_ts *ucb = input_get_drvdata(idev);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500271 int ret = 0;
272
273 BUG_ON(ucb->ts_task);
274
275 ucb->ts_task = kthread_run(ucb1400_ts_thread, ucb, "UCB1400_ts");
276 if (IS_ERR(ucb->ts_task)) {
277 ret = PTR_ERR(ucb->ts_task);
278 ucb->ts_task = NULL;
279 }
280
281 return ret;
282}
283
284static void ucb1400_ts_close(struct input_dev *idev)
285{
Marek Vašutd9105c22008-08-03 21:34:08 +0100286 struct ucb1400_ts *ucb = input_get_drvdata(idev);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500287
288 if (ucb->ts_task)
289 kthread_stop(ucb->ts_task);
290
Marek Vašutd9105c22008-08-03 21:34:08 +0100291 ucb1400_ts_irq_disable(ucb->ac97);
292 ucb1400_reg_write(ucb->ac97, UCB_TS_CR, 0);
293}
294
295#ifndef NO_IRQ
296#define NO_IRQ 0
297#endif
298
299/*
300 * Try to probe our interrupt, rather than relying on lots of
301 * hard-coded machine dependencies.
302 */
303static int ucb1400_ts_detect_irq(struct ucb1400_ts *ucb)
304{
305 unsigned long mask, timeout;
306
307 mask = probe_irq_on();
308
309 /* Enable the ADC interrupt. */
310 ucb1400_reg_write(ucb->ac97, UCB_IE_RIS, UCB_IE_ADC);
311 ucb1400_reg_write(ucb->ac97, UCB_IE_FAL, UCB_IE_ADC);
312 ucb1400_reg_write(ucb->ac97, UCB_IE_CLEAR, 0xffff);
313 ucb1400_reg_write(ucb->ac97, UCB_IE_CLEAR, 0);
314
315 /* Cause an ADC interrupt. */
316 ucb1400_reg_write(ucb->ac97, UCB_ADC_CR, UCB_ADC_ENA);
317 ucb1400_reg_write(ucb->ac97, UCB_ADC_CR, UCB_ADC_ENA | UCB_ADC_START);
318
319 /* Wait for the conversion to complete. */
320 timeout = jiffies + HZ/2;
321 while (!(ucb1400_reg_read(ucb->ac97, UCB_ADC_DATA) &
322 UCB_ADC_DAT_VALID)) {
323 cpu_relax();
324 if (time_after(jiffies, timeout)) {
325 printk(KERN_ERR "ucb1400: timed out in IRQ probe\n");
326 probe_irq_off(mask);
327 return -ENODEV;
328 }
329 }
330 ucb1400_reg_write(ucb->ac97, UCB_ADC_CR, 0);
331
332 /* Disable and clear interrupt. */
333 ucb1400_reg_write(ucb->ac97, UCB_IE_RIS, 0);
334 ucb1400_reg_write(ucb->ac97, UCB_IE_FAL, 0);
335 ucb1400_reg_write(ucb->ac97, UCB_IE_CLEAR, 0xffff);
336 ucb1400_reg_write(ucb->ac97, UCB_IE_CLEAR, 0);
337
338 /* Read triggered interrupt. */
339 ucb->irq = probe_irq_off(mask);
340 if (ucb->irq < 0 || ucb->irq == NO_IRQ)
341 return -ENODEV;
342
343 return 0;
344}
345
346static int ucb1400_ts_probe(struct platform_device *dev)
347{
348 int error, x_res, y_res;
Marek Vasut1700f5f2009-08-20 22:05:53 -0700349 u16 fcsr;
Marek Vašutd9105c22008-08-03 21:34:08 +0100350 struct ucb1400_ts *ucb = dev->dev.platform_data;
351
352 ucb->ts_idev = input_allocate_device();
353 if (!ucb->ts_idev) {
354 error = -ENOMEM;
355 goto err;
356 }
357
358 error = ucb1400_ts_detect_irq(ucb);
359 if (error) {
360 printk(KERN_ERR "UCB1400: IRQ probe failed\n");
361 goto err_free_devs;
362 }
363
364 init_waitqueue_head(&ucb->ts_wait);
365
366 error = request_irq(ucb->irq, ucb1400_hard_irq, IRQF_TRIGGER_RISING,
367 "UCB1400", ucb);
368 if (error) {
369 printk(KERN_ERR "ucb1400: unable to grab irq%d: %d\n",
370 ucb->irq, error);
371 goto err_free_devs;
372 }
373 printk(KERN_DEBUG "UCB1400: found IRQ %d\n", ucb->irq);
374
375 input_set_drvdata(ucb->ts_idev, ucb);
376
377 ucb->ts_idev->dev.parent = &dev->dev;
378 ucb->ts_idev->name = "UCB1400 touchscreen interface";
379 ucb->ts_idev->id.vendor = ucb1400_reg_read(ucb->ac97,
380 AC97_VENDOR_ID1);
381 ucb->ts_idev->id.product = ucb->id;
382 ucb->ts_idev->open = ucb1400_ts_open;
383 ucb->ts_idev->close = ucb1400_ts_close;
Mike Rapoportcd2d64b2009-03-04 01:12:49 -0800384 ucb->ts_idev->evbit[0] = BIT_MASK(EV_ABS) | BIT_MASK(EV_KEY);
385 ucb->ts_idev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
Marek Vašutd9105c22008-08-03 21:34:08 +0100386
Marek Vasut1700f5f2009-08-20 22:05:53 -0700387 /*
388 * Enable ADC filter to prevent horrible jitter on Colibri.
389 * This also further reduces jitter on boards where ADCSYNC
390 * pin is connected.
391 */
392 fcsr = ucb1400_reg_read(ucb->ac97, UCB_FCSR);
393 ucb1400_reg_write(ucb->ac97, UCB_FCSR, fcsr | UCB_FCSR_AVE);
394
Marek Vašutd9105c22008-08-03 21:34:08 +0100395 ucb1400_adc_enable(ucb->ac97);
396 x_res = ucb1400_ts_read_xres(ucb);
397 y_res = ucb1400_ts_read_yres(ucb);
398 ucb1400_adc_disable(ucb->ac97);
399 printk(KERN_DEBUG "UCB1400: x/y = %d/%d\n", x_res, y_res);
400
401 input_set_abs_params(ucb->ts_idev, ABS_X, 0, x_res, 0, 0);
402 input_set_abs_params(ucb->ts_idev, ABS_Y, 0, y_res, 0, 0);
403 input_set_abs_params(ucb->ts_idev, ABS_PRESSURE, 0, 0, 0, 0);
404
405 error = input_register_device(ucb->ts_idev);
406 if (error)
407 goto err_free_irq;
408
409 return 0;
410
411err_free_irq:
412 free_irq(ucb->irq, ucb);
413err_free_devs:
414 input_free_device(ucb->ts_idev);
415err:
416 return error;
417
418}
419
420static int ucb1400_ts_remove(struct platform_device *dev)
421{
422 struct ucb1400_ts *ucb = dev->dev.platform_data;
423
424 free_irq(ucb->irq, ucb);
425 input_unregister_device(ucb->ts_idev);
426 return 0;
Nicolas Pitref40219b2006-11-17 01:07:26 -0500427}
428
429#ifdef CONFIG_PM
Marek Vašutd9105c22008-08-03 21:34:08 +0100430static int ucb1400_ts_resume(struct platform_device *dev)
Nicolas Pitref40219b2006-11-17 01:07:26 -0500431{
Manuel Traut346a8502009-05-27 06:20:05 -0700432 struct ucb1400_ts *ucb = dev->dev.platform_data;
Nicolas Pitref40219b2006-11-17 01:07:26 -0500433
434 if (ucb->ts_task) {
435 /*
436 * Restart the TS thread to ensure the
437 * TS interrupt mode is set up again
438 * after sleep.
439 */
440 ucb->ts_restart = 1;
441 wake_up(&ucb->ts_wait);
442 }
443 return 0;
444}
445#else
446#define ucb1400_ts_resume NULL
447#endif
448
Marek Vašutd9105c22008-08-03 21:34:08 +0100449static struct platform_driver ucb1400_ts_driver = {
450 .probe = ucb1400_ts_probe,
451 .remove = ucb1400_ts_remove,
452 .resume = ucb1400_ts_resume,
453 .driver = {
454 .name = "ucb1400_ts",
455 },
Nicolas Pitref40219b2006-11-17 01:07:26 -0500456};
457
458static int __init ucb1400_ts_init(void)
459{
Marek Vašutd9105c22008-08-03 21:34:08 +0100460 return platform_driver_register(&ucb1400_ts_driver);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500461}
462
463static void __exit ucb1400_ts_exit(void)
464{
Marek Vašutd9105c22008-08-03 21:34:08 +0100465 platform_driver_unregister(&ucb1400_ts_driver);
Nicolas Pitref40219b2006-11-17 01:07:26 -0500466}
467
Cliff Brakeb5b16c52007-04-12 01:35:43 -0400468module_param(adcsync, bool, 0444);
469MODULE_PARM_DESC(adcsync, "Synchronize touch readings with ADCSYNC pin.");
470
471module_param(ts_delay, int, 0444);
Marek Vašutd9105c22008-08-03 21:34:08 +0100472MODULE_PARM_DESC(ts_delay, "Delay between panel setup and"
473 " position read. Default = 55us.");
Cliff Brakeb5b16c52007-04-12 01:35:43 -0400474
475module_param(ts_delay_pressure, int, 0444);
476MODULE_PARM_DESC(ts_delay_pressure,
Marek Vašutd9105c22008-08-03 21:34:08 +0100477 "delay between panel setup and pressure read."
478 " Default = 0us.");
Nicolas Pitref40219b2006-11-17 01:07:26 -0500479
480module_init(ucb1400_ts_init);
481module_exit(ucb1400_ts_exit);
482
483MODULE_DESCRIPTION("Philips UCB1400 touchscreen driver");
484MODULE_LICENSE("GPL");