2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 * Copyright (c) 2004 Arnaud Patard <arnaud.patard@rtp-net.org>
17 * iPAQ H1940 touchscreen support
21 * 2004-09-05: Herbert Pƶtzl <herbert@13thfloor.at>
22 * - added clock (de-)allocation code
24 * 2005-03-06: Arnaud Patard <arnaud.patard@rtp-net.org>
25 * - h1940_ -> s3c2410 (this driver is now also used on the n30
27 * - Debug messages are now enabled with the config option
28 * TOUCHSCREEN_S3C2410_DEBUG
29 * - Changed the way the value are read
30 * - Input subsystem should now work
31 * - Use ioremap and readl/writel
33 * 2005-03-23: Arnaud Patard <arnaud.patard@rtp-net.org>
34 * - Make use of some undocumented features of the touchscreen
37 * 2007-05-23: Harald Welte <laforge@openmoko.org>
38 * - Add proper support for S32440
40 * 2008-06-23: Andy Green <andy@openmoko.com>
41 * - removed averaging system
42 * - added generic Touchscreen filter stuff
44 * 2008-11-27: Nelson Castillo <arhuaco@freaks-unidos.net>
45 * - improve interrupt handling
48 #include <linux/errno.h>
49 #include <linux/kernel.h>
50 #include <linux/module.h>
51 #include <linux/slab.h>
52 #include <linux/input.h>
53 #include <linux/init.h>
54 #include <linux/serio.h>
55 #include <linux/timer.h>
56 #include <linux/kfifo.h>
57 #include <linux/delay.h>
58 #include <linux/platform_device.h>
59 #include <linux/clk.h>
63 #include <mach/regs-gpio.h>
66 #include <plat/regs-adc.h>
68 #include <linux/ts_filter.h>
70 /* For ts.dev.id.version */
71 #define S3C2410TSVERSION 0x0101
73 #define TSC_SLEEP (S3C2410_ADCTSC_PULL_UP_DISABLE | S3C2410_ADCTSC_XY_PST(0))
75 #define WAIT4INT(x) (((x)<<8) | \
76 S3C2410_ADCTSC_YM_SEN | \
77 S3C2410_ADCTSC_YP_SEN | \
78 S3C2410_ADCTSC_XP_SEN | \
79 S3C2410_ADCTSC_XY_PST(3))
81 #define AUTOPST (S3C2410_ADCTSC_YM_SEN | \
82 S3C2410_ADCTSC_YP_SEN | \
83 S3C2410_ADCTSC_XP_SEN | \
84 S3C2410_ADCTSC_AUTO_PST | \
85 S3C2410_ADCTSC_XY_PST(0))
87 #define DEBUG_LVL KERN_DEBUG
89 MODULE_AUTHOR("Arnaud Patard <arnaud.patard@rtp-net.org>");
90 MODULE_DESCRIPTION("s3c2410 touchscreen driver");
91 MODULE_LICENSE("GPL");
94 * Definitions & global arrays.
97 static char *s3c2410ts_name = "s3c2410 TouchScreen";
99 #define TS_RELEASE_TIMEOUT (HZ >> 4) /* ~ 60 milliseconds */
100 #define TS_EVENT_FIFO_SIZE (2 << 6) /* must be a power of 2 */
102 #define TS_STATE_STANDBY 0 /* initial state */
103 #define TS_STATE_PRESSED 1
104 #define TS_STATE_RELEASE_PENDING 2
105 #define TS_STATE_RELEASE 3
108 * Per-touchscreen data.
112 struct input_dev *dev;
113 struct ts_filter *tsf[MAX_TS_FILTER_CHAIN];
114 int coords[2]; /* just X and Y for us */
117 struct kfifo *event_fifo;
120 static struct s3c2410ts ts;
122 static void __iomem *base_addr;
125 * A few low level functions.
128 static inline void s3c2410_ts_connect(void)
130 s3c2410_gpio_cfgpin(S3C2410_GPG12, S3C2410_GPG12_XMON);
131 s3c2410_gpio_cfgpin(S3C2410_GPG13, S3C2410_GPG13_nXPON);
132 s3c2410_gpio_cfgpin(S3C2410_GPG14, S3C2410_GPG14_YMON);
133 s3c2410_gpio_cfgpin(S3C2410_GPG15, S3C2410_GPG15_nYPON);
136 static void s3c2410_ts_start_adc_conversion(void)
138 writel(S3C2410_ADCTSC_PULL_UP_DISABLE | AUTOPST,
139 base_addr + S3C2410_ADCTSC);
140 writel(readl(base_addr + S3C2410_ADCCON) | S3C2410_ADCCON_ENABLE_START,
141 base_addr + S3C2410_ADCCON);
145 * Just send the input events.
148 enum ts_input_event {IE_DOWN = 0, IE_UP};
150 static void ts_input_report(int event, int coords[])
152 #ifdef CONFIG_TOUCHSCREEN_S3C2410_DEBUG
153 static char *s[] = {"down", "up"};
156 do_gettimeofday(&tv);
159 if (event == IE_DOWN) {
160 input_report_abs(ts.dev, ABS_X, coords[0]);
161 input_report_abs(ts.dev, ABS_Y, coords[1]);
162 input_report_key(ts.dev, BTN_TOUCH, 1);
163 input_report_abs(ts.dev, ABS_PRESSURE, 1);
165 #ifdef CONFIG_TOUCHSCREEN_S3C2410_DEBUG
166 printk(DEBUG_LVL "T:%06d %6s (X:%03d, Y:%03d)\n",
167 (int)tv.tv_usec, s[event], coords[0], coords[1]);
170 input_report_key(ts.dev, BTN_TOUCH, 0);
171 input_report_abs(ts.dev, ABS_PRESSURE, 0);
173 #ifdef CONFIG_TOUCHSCREEN_S3C2410_DEBUG
174 printk(DEBUG_LVL "T:%06d %6s\n",
175 (int)tv.tv_usec, s[event]);
183 * Manage the state of the touchscreen.
186 static void event_send_timer_f(unsigned long data);
188 static struct timer_list event_send_timer =
189 TIMER_INITIALIZER(event_send_timer_f, 0, 0);
191 static void event_send_timer_f(unsigned long data)
193 static unsigned long running;
194 static int noop_counter;
197 if (unlikely(test_and_set_bit(0, &running))) {
198 mod_timer(&event_send_timer,
199 jiffies + TS_RELEASE_TIMEOUT);
203 while (__kfifo_get(ts.event_fifo, (unsigned char *)&event_type,
207 switch (event_type) {
209 if (ts.state == TS_STATE_RELEASE_PENDING)
210 /* Ignore short UP event */
211 ts.state = TS_STATE_PRESSED;
215 ts.state = TS_STATE_RELEASE_PENDING;
219 if (ts.is_down) /* stylus_action needs a conversion */
220 s3c2410_ts_start_adc_conversion();
222 if (unlikely(__kfifo_get(ts.event_fifo,
223 (unsigned char *)buf,
228 ts_input_report(IE_DOWN, buf);
229 ts.state = TS_STATE_PRESSED;
239 if (noop_counter++ >= 1) {
241 if (ts.state == TS_STATE_RELEASE_PENDING) {
242 /* We delay the UP event for a
243 * while to avoid jitter. If we get a DOWN
244 * event we do not send it. */
246 ts_input_report(IE_UP, NULL);
247 ts.state = TS_STATE_STANDBY;
250 (ts.tsf[0]->api->clear)(ts.tsf[0]);
253 mod_timer(&event_send_timer, jiffies + TS_RELEASE_TIMEOUT);
256 clear_bit(0, &running);
260 ts_exit_error: /* should not happen unless we have a bug */
261 printk(KERN_ERR __FILE__ ": event_send_timer_f failed\n");
268 static irqreturn_t stylus_updown(int irq, void *dev_id)
274 data0 = readl(base_addr+S3C2410_ADCDAT0);
275 data1 = readl(base_addr+S3C2410_ADCDAT1);
277 ts.is_down = (!(data0 & S3C2410_ADCDAT0_UPDOWN)) &&
278 (!(data1 & S3C2410_ADCDAT0_UPDOWN));
280 event_type = ts.is_down ? 'D' : 'U';
282 if (unlikely(__kfifo_put(ts.event_fifo, (unsigned char *)&event_type,
283 sizeof(int)) != sizeof(int))) /* should not happen */
284 printk(KERN_ERR __FILE__": stylus_updown lost event!\n");
287 s3c2410_ts_start_adc_conversion();
289 writel(WAIT4INT(0), base_addr+S3C2410_ADCTSC);
291 mod_timer(&event_send_timer, jiffies + 1);
296 static irqreturn_t stylus_action(int irq, void *dev_id)
300 /* grab the ADC results */
301 ts.coords[0] = readl(base_addr + S3C2410_ADCDAT0) &
302 S3C2410_ADCDAT0_XPDATA_MASK;
303 ts.coords[1] = readl(base_addr + S3C2410_ADCDAT1) &
304 S3C2410_ADCDAT1_YPDATA_MASK;
306 if (ts.tsf[0]) { /* filtering is enabled, don't use raw directly */
307 switch ((ts.tsf[0]->api->process)(ts.tsf[0], &ts.coords[0])) {
309 * no real sample came out of processing yet,
310 * get another raw result to feed it
312 s3c2410_ts_start_adc_conversion();
314 case 1: /* filters are ready to deliver a sample */
315 (ts.tsf[0]->api->scale)(ts.tsf[0], &ts.coords[0]);
318 /* error in filters, ignore the event */
319 (ts.tsf[0]->api->clear)(ts.tsf[0]);
320 writel(WAIT4INT(1), base_addr + S3C2410_ADCTSC);
323 printk(KERN_ERR":stylus_action error\n");
327 /* We use a buffer because want an atomic operation */
329 buf[1] = ts.coords[0];
330 buf[2] = ts.coords[1];
332 if (unlikely(__kfifo_put(ts.event_fifo, (unsigned char *)buf,
333 sizeof(int) * 3) != sizeof(int) * 3))
334 /* should not happen */
335 printk(KERN_ERR":stylus_action error\n");
337 writel(WAIT4INT(1), base_addr + S3C2410_ADCTSC);
338 mod_timer(&event_send_timer, jiffies + 1);
343 static struct clk *adc_clock;
346 * The functions for inserting/removing us as a module.
349 static int __init s3c2410ts_probe(struct platform_device *pdev)
352 struct s3c2410_ts_mach_info *info;
353 struct input_dev *input_dev;
356 dev_info(&pdev->dev, "Starting\n");
358 info = (struct s3c2410_ts_mach_info *)pdev->dev.platform_data;
362 dev_err(&pdev->dev, "Hm... too bad: no platform data for ts\n");
366 #ifdef CONFIG_TOUCHSCREEN_S3C2410_DEBUG
367 printk(DEBUG_LVL "Entering s3c2410ts_init\n");
370 adc_clock = clk_get(NULL, "adc");
372 dev_err(&pdev->dev, "failed to get adc clock source\n");
375 clk_enable(adc_clock);
377 #ifdef CONFIG_TOUCHSCREEN_S3C2410_DEBUG
378 printk(DEBUG_LVL "got and enabled clock\n");
381 base_addr = ioremap(S3C2410_PA_ADC,0x20);
382 if (base_addr == NULL) {
383 dev_err(&pdev->dev, "Failed to remap register block\n");
389 /* If we acutally are a S3C2410: Configure GPIOs */
390 if (!strcmp(pdev->name, "s3c2410-ts"))
391 s3c2410_ts_connect();
393 if ((info->presc & 0xff) > 0)
394 writel(S3C2410_ADCCON_PRSCEN |
395 S3C2410_ADCCON_PRSCVL(info->presc&0xFF),
396 base_addr + S3C2410_ADCCON);
398 writel(0, base_addr+S3C2410_ADCCON);
400 /* Initialise registers */
401 if ((info->delay & 0xffff) > 0)
402 writel(info->delay & 0xffff, base_addr + S3C2410_ADCDLY);
404 writel(WAIT4INT(0), base_addr + S3C2410_ADCTSC);
406 /* Initialise input stuff */
407 memset(&ts, 0, sizeof(struct s3c2410ts));
408 input_dev = input_allocate_device();
411 dev_err(&pdev->dev, "Unable to allocate the input device\n");
417 ts.dev->evbit[0] = BIT_MASK(EV_SYN) | BIT_MASK(EV_KEY) |
419 ts.dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
420 input_set_abs_params(ts.dev, ABS_X, 0, 0x3FF, 0, 0);
421 input_set_abs_params(ts.dev, ABS_Y, 0, 0x3FF, 0, 0);
422 input_set_abs_params(ts.dev, ABS_PRESSURE, 0, 1, 0, 0);
424 ts.dev->name = s3c2410ts_name;
425 ts.dev->id.bustype = BUS_RS232;
426 ts.dev->id.vendor = 0xDEAD;
427 ts.dev->id.product = 0xBEEF;
428 ts.dev->id.version = S3C2410TSVERSION;
429 ts.state = TS_STATE_STANDBY;
430 ts.event_fifo = kfifo_alloc(TS_EVENT_FIFO_SIZE, GFP_KERNEL, NULL);
431 if (IS_ERR(ts.event_fifo)) {
436 /* create the filter chain set up for the 2 coordinates we produce */
437 ret = ts_filter_create_chain(
438 (struct ts_filter_api **)&info->filter_sequence,
439 (void *)&info->filter_config, ts.tsf, ARRAY_SIZE(ts.coords));
441 dev_info(&pdev->dev, "%d filter(s) initialized\n", ret);
442 else /* this is OK, just means there won't be any filtering */
443 dev_info(&pdev->dev, "Unfiltered output selected\n");
446 (ts.tsf[0]->api->clear)(ts.tsf[0]);
448 dev_info(&pdev->dev, "No filtering\n");
451 if (request_irq(IRQ_ADC, stylus_action, IRQF_SAMPLE_RANDOM,
452 "s3c2410_action", ts.dev)) {
453 dev_err(&pdev->dev, "Could not allocate ts IRQ_ADC !\n");
458 if (request_irq(IRQ_TC, stylus_updown, IRQF_SAMPLE_RANDOM,
459 "s3c2410_action", ts.dev)) {
460 dev_err(&pdev->dev, "Could not allocate ts IRQ_TC !\n");
461 free_irq(IRQ_ADC, ts.dev);
467 dev_info(&pdev->dev, "successfully loaded\n");
469 /* All went ok, so register to the input system */
470 rc = input_register_device(ts.dev);
479 free_irq(IRQ_TC, ts.dev);
480 free_irq(IRQ_ADC, ts.dev);
481 clk_disable(adc_clock);
485 disable_irq(IRQ_ADC);
487 ts_filter_destroy_chain(ts.tsf);
488 kfifo_free(ts.event_fifo);
490 input_unregister_device(ts.dev);
498 static int s3c2410ts_remove(struct platform_device *pdev)
500 disable_irq(IRQ_ADC);
502 free_irq(IRQ_TC,ts.dev);
503 free_irq(IRQ_ADC,ts.dev);
506 clk_disable(adc_clock);
511 input_unregister_device(ts.dev);
514 ts_filter_destroy_chain(ts.tsf);
516 kfifo_free(ts.event_fifo);
522 static int s3c2410ts_suspend(struct platform_device *pdev, pm_message_t state)
524 writel(TSC_SLEEP, base_addr+S3C2410_ADCTSC);
525 writel(readl(base_addr+S3C2410_ADCCON) | S3C2410_ADCCON_STDBM,
526 base_addr+S3C2410_ADCCON);
528 disable_irq(IRQ_ADC);
531 clk_disable(adc_clock);
536 static int s3c2410ts_resume(struct platform_device *pdev)
538 struct s3c2410_ts_mach_info *info =
539 ( struct s3c2410_ts_mach_info *)pdev->dev.platform_data;
541 clk_enable(adc_clock);
545 (ts.tsf[0]->api->clear)(ts.tsf[0]);
550 if ((info->presc&0xff) > 0)
551 writel(S3C2410_ADCCON_PRSCEN |
552 S3C2410_ADCCON_PRSCVL(info->presc&0xFF),
553 base_addr+S3C2410_ADCCON);
555 writel(0,base_addr+S3C2410_ADCCON);
557 /* Initialise registers */
558 if ((info->delay & 0xffff) > 0)
559 writel(info->delay & 0xffff, base_addr+S3C2410_ADCDLY);
561 writel(WAIT4INT(0), base_addr+S3C2410_ADCTSC);
567 #define s3c2410ts_suspend NULL
568 #define s3c2410ts_resume NULL
571 static struct platform_driver s3c2410ts_driver = {
573 .name = "s3c2410-ts",
574 .owner = THIS_MODULE,
576 .probe = s3c2410ts_probe,
577 .remove = s3c2410ts_remove,
578 .suspend = s3c2410ts_suspend,
579 .resume = s3c2410ts_resume,
583 static struct platform_driver s3c2440ts_driver = {
585 .name = "s3c2440-ts",
586 .owner = THIS_MODULE,
588 .probe = s3c2410ts_probe,
589 .remove = s3c2410ts_remove,
590 .suspend = s3c2410ts_suspend,
591 .resume = s3c2410ts_resume,
595 static int __init s3c2410ts_init(void)
599 rc = platform_driver_register(&s3c2410ts_driver);
603 rc = platform_driver_register(&s3c2440ts_driver);
605 platform_driver_unregister(&s3c2410ts_driver);
610 static void __exit s3c2410ts_exit(void)
612 platform_driver_unregister(&s3c2440ts_driver);
613 platform_driver_unregister(&s3c2410ts_driver);
616 module_init(s3c2410ts_init);
617 module_exit(s3c2410ts_exit);