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>
65 #include <mach/hardware.h>
66 #include <plat/regs-adc.h>
68 #include <linux/touchscreen/ts_filter_chain.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 >> 7 ? HZ >> 7 : 1) /* 8ms (5ms if HZ is 200) */
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_chain
*chain
;
116 struct kfifo
*event_fifo
;
119 static struct s3c2410ts ts
;
121 static void __iomem
*base_addr
;
124 * A few low level functions.
127 static inline void s3c2410_ts_connect(void)
129 s3c2410_gpio_cfgpin(S3C2410_GPG12
, S3C2410_GPG12_XMON
);
130 s3c2410_gpio_cfgpin(S3C2410_GPG13
, S3C2410_GPG13_nXPON
);
131 s3c2410_gpio_cfgpin(S3C2410_GPG14
, S3C2410_GPG14_YMON
);
132 s3c2410_gpio_cfgpin(S3C2410_GPG15
, S3C2410_GPG15_nYPON
);
135 static void s3c2410_ts_start_adc_conversion(void)
137 writel(S3C2410_ADCTSC_PULL_UP_DISABLE
| AUTOPST
,
138 base_addr
+ S3C2410_ADCTSC
);
139 writel(readl(base_addr
+ S3C2410_ADCCON
) | S3C2410_ADCCON_ENABLE_START
,
140 base_addr
+ S3C2410_ADCCON
);
144 * Just send the input events.
147 enum ts_input_event
{IE_DOWN
= 0, IE_UP
};
149 static void ts_input_report(int event
, int coords
[])
151 #ifdef CONFIG_TOUCHSCREEN_S3C2410_DEBUG
152 static char *s
[] = {"down", "up"};
155 do_gettimeofday(&tv
);
158 if (event
== IE_DOWN
) {
159 input_report_abs(ts
.dev
, ABS_X
, coords
[0]);
160 input_report_abs(ts
.dev
, ABS_Y
, coords
[1]);
161 input_report_key(ts
.dev
, BTN_TOUCH
, 1);
162 input_report_abs(ts
.dev
, ABS_PRESSURE
, 1);
164 #ifdef CONFIG_TOUCHSCREEN_S3C2410_DEBUG
165 printk(DEBUG_LVL
"T:%06d %6s (X:%03d, Y:%03d)\n",
166 (int)tv
.tv_usec
, s
[event
], coords
[0], coords
[1]);
169 input_report_key(ts
.dev
, BTN_TOUCH
, 0);
170 input_report_abs(ts
.dev
, ABS_PRESSURE
, 0);
172 #ifdef CONFIG_TOUCHSCREEN_S3C2410_DEBUG
173 printk(DEBUG_LVL
"T:%06d %6s\n",
174 (int)tv
.tv_usec
, s
[event
]);
182 * Manage the state of the touchscreen.
185 static void event_send_timer_f(unsigned long data
);
187 static struct timer_list event_send_timer
=
188 TIMER_INITIALIZER(event_send_timer_f
, 0, 0);
190 static void event_send_timer_f(unsigned long data
)
192 static int noop_counter
;
195 while (__kfifo_get(ts
.event_fifo
, (unsigned char *)&event_type
,
199 switch (event_type
) {
201 if (ts
.state
== TS_STATE_RELEASE_PENDING
)
202 /* Ignore short UP event */
203 ts
.state
= TS_STATE_PRESSED
;
207 ts
.state
= TS_STATE_RELEASE_PENDING
;
211 if (ts
.is_down
) /* stylus_action needs a conversion */
212 s3c2410_ts_start_adc_conversion();
214 if (unlikely(__kfifo_get(ts
.event_fifo
,
215 (unsigned char *)buf
,
220 ts_input_report(IE_DOWN
, buf
);
221 ts
.state
= TS_STATE_PRESSED
;
231 if (noop_counter
++ >= 1) {
233 if (ts
.state
== TS_STATE_RELEASE_PENDING
) {
235 * We delay the UP event for a while to avoid jitter.
236 * If we get a DOWN event we do not send it.
238 ts_input_report(IE_UP
, NULL
);
239 ts
.state
= TS_STATE_STANDBY
;
241 ts_filter_chain_clear(ts
.chain
);
244 mod_timer(&event_send_timer
, jiffies
+ TS_RELEASE_TIMEOUT
);
249 ts_exit_error
: /* should not happen unless we have a bug */
250 printk(KERN_ERR __FILE__
": event_send_timer_f failed\n");
257 static irqreturn_t
stylus_updown(int irq
, void *dev_id
)
263 data0
= readl(base_addr
+S3C2410_ADCDAT0
);
264 data1
= readl(base_addr
+S3C2410_ADCDAT1
);
266 ts
.is_down
= (!(data0
& S3C2410_ADCDAT0_UPDOWN
)) &&
267 (!(data1
& S3C2410_ADCDAT0_UPDOWN
));
269 event_type
= ts
.is_down
? 'D' : 'U';
271 if (unlikely(__kfifo_put(ts
.event_fifo
, (unsigned char *)&event_type
,
272 sizeof(int)) != sizeof(int))) /* should not happen */
273 printk(KERN_ERR __FILE__
": stylus_updown lost event!\n");
276 s3c2410_ts_start_adc_conversion();
278 writel(WAIT4INT(0), base_addr
+S3C2410_ADCTSC
);
280 mod_timer(&event_send_timer
, jiffies
+ 1);
285 static irqreturn_t
stylus_action(int irq
, void *dev_id
)
289 /* Grab the ADC results. */
290 buf
[1] = readl(base_addr
+ S3C2410_ADCDAT0
) &
291 S3C2410_ADCDAT0_XPDATA_MASK
;
292 buf
[2] = readl(base_addr
+ S3C2410_ADCDAT1
) &
293 S3C2410_ADCDAT1_YPDATA_MASK
;
295 switch (ts_filter_chain_feed(ts
.chain
, &buf
[1])) {
297 /* The filter wants more points. */
298 s3c2410_ts_start_adc_conversion();
301 /* We have a point from the filters or no filtering enabled. */
305 printk(KERN_ERR __FILE__
306 ":%d Invalid ts_filter_chain_feed return value.\n",
309 /* Error. Ignore the event. */
310 ts_filter_chain_clear(ts
.chain
);
311 writel(WAIT4INT(1), base_addr
+ S3C2410_ADCTSC
);
315 if (unlikely(__kfifo_put(ts
.event_fifo
, (unsigned char *)buf
,
316 sizeof(int) * 3) != sizeof(int) * 3))
317 printk(KERN_ERR __FILE__
":stylus_action bug.\n");
319 writel(WAIT4INT(1), base_addr
+ S3C2410_ADCTSC
);
320 mod_timer(&event_send_timer
, jiffies
+ 1);
325 static struct clk
*adc_clock
;
328 * The functions for inserting/removing us as a module.
331 static int __init
s3c2410ts_probe(struct platform_device
*pdev
)
334 struct s3c2410_ts_mach_info
*info
;
335 struct input_dev
*input_dev
;
338 dev_info(&pdev
->dev
, "Starting\n");
340 info
= (struct s3c2410_ts_mach_info
*)pdev
->dev
.platform_data
;
344 dev_err(&pdev
->dev
, "Hm... too bad: no platform data for ts\n");
348 #ifdef CONFIG_TOUCHSCREEN_S3C2410_DEBUG
349 printk(DEBUG_LVL
"Entering s3c2410ts_init\n");
352 adc_clock
= clk_get(NULL
, "adc");
354 dev_err(&pdev
->dev
, "failed to get adc clock source\n");
357 clk_enable(adc_clock
);
359 #ifdef CONFIG_TOUCHSCREEN_S3C2410_DEBUG
360 printk(DEBUG_LVL
"got and enabled clock\n");
363 base_addr
= ioremap(S3C2410_PA_ADC
,0x20);
364 if (base_addr
== NULL
) {
365 dev_err(&pdev
->dev
, "Failed to remap register block\n");
371 /* If we acutally are a S3C2410: Configure GPIOs */
372 if (!strcmp(pdev
->name
, "s3c2410-ts"))
373 s3c2410_ts_connect();
375 if ((info
->presc
& 0xff) > 0)
376 writel(S3C2410_ADCCON_PRSCEN
|
377 S3C2410_ADCCON_PRSCVL(info
->presc
&0xFF),
378 base_addr
+ S3C2410_ADCCON
);
380 writel(0, base_addr
+S3C2410_ADCCON
);
382 /* Initialise registers */
383 if ((info
->delay
& 0xffff) > 0)
384 writel(info
->delay
& 0xffff, base_addr
+ S3C2410_ADCDLY
);
386 writel(WAIT4INT(0), base_addr
+ S3C2410_ADCTSC
);
388 /* Initialise input stuff */
389 memset(&ts
, 0, sizeof(struct s3c2410ts
));
390 input_dev
= input_allocate_device();
393 dev_err(&pdev
->dev
, "Unable to allocate the input device\n");
399 ts
.dev
->evbit
[0] = BIT_MASK(EV_SYN
) | BIT_MASK(EV_KEY
) |
401 ts
.dev
->keybit
[BIT_WORD(BTN_TOUCH
)] = BIT_MASK(BTN_TOUCH
);
402 input_set_abs_params(ts
.dev
, ABS_X
, 0, 0x3FF, 0, 0);
403 input_set_abs_params(ts
.dev
, ABS_Y
, 0, 0x3FF, 0, 0);
404 input_set_abs_params(ts
.dev
, ABS_PRESSURE
, 0, 1, 0, 0);
406 ts
.dev
->name
= s3c2410ts_name
;
407 ts
.dev
->id
.bustype
= BUS_RS232
;
408 ts
.dev
->id
.vendor
= 0xDEAD;
409 ts
.dev
->id
.product
= 0xBEEF;
410 ts
.dev
->id
.version
= S3C2410TSVERSION
;
411 ts
.state
= TS_STATE_STANDBY
;
412 ts
.event_fifo
= kfifo_alloc(TS_EVENT_FIFO_SIZE
, GFP_KERNEL
, NULL
);
413 if (IS_ERR(ts
.event_fifo
)) {
418 /* create the filter chain set up for the 2 coordinates we produce */
419 ts
.chain
= ts_filter_chain_create(pdev
, info
->filter_config
, 2);
421 if (IS_ERR(ts
.chain
))
424 ts_filter_chain_clear(ts
.chain
);
427 if (request_irq(IRQ_ADC
, stylus_action
, IRQF_SAMPLE_RANDOM
,
428 "s3c2410_action", ts
.dev
)) {
429 dev_err(&pdev
->dev
, "Could not allocate ts IRQ_ADC !\n");
434 if (request_irq(IRQ_TC
, stylus_updown
, IRQF_SAMPLE_RANDOM
,
435 "s3c2410_action", ts
.dev
)) {
436 dev_err(&pdev
->dev
, "Could not allocate ts IRQ_TC !\n");
437 free_irq(IRQ_ADC
, ts
.dev
);
443 dev_info(&pdev
->dev
, "Successfully loaded\n");
445 /* All went ok, so register to the input system */
446 rc
= input_register_device(ts
.dev
);
455 free_irq(IRQ_TC
, ts
.dev
);
456 free_irq(IRQ_ADC
, ts
.dev
);
457 clk_disable(adc_clock
);
461 disable_irq(IRQ_ADC
);
463 ts_filter_chain_destroy(ts
.chain
);
464 kfifo_free(ts
.event_fifo
);
466 input_unregister_device(ts
.dev
);
474 static int s3c2410ts_remove(struct platform_device
*pdev
)
476 disable_irq(IRQ_ADC
);
478 free_irq(IRQ_TC
,ts
.dev
);
479 free_irq(IRQ_ADC
,ts
.dev
);
482 clk_disable(adc_clock
);
487 input_unregister_device(ts
.dev
);
490 ts_filter_chain_destroy(ts
.chain
);
492 kfifo_free(ts
.event_fifo
);
498 static int s3c2410ts_suspend(struct platform_device
*pdev
, pm_message_t state
)
500 writel(TSC_SLEEP
, base_addr
+S3C2410_ADCTSC
);
501 writel(readl(base_addr
+S3C2410_ADCCON
) | S3C2410_ADCCON_STDBM
,
502 base_addr
+S3C2410_ADCCON
);
504 disable_irq(IRQ_ADC
);
507 clk_disable(adc_clock
);
512 static int s3c2410ts_resume(struct platform_device
*pdev
)
514 struct s3c2410_ts_mach_info
*info
=
515 ( struct s3c2410_ts_mach_info
*)pdev
->dev
.platform_data
;
517 clk_enable(adc_clock
);
520 ts_filter_chain_clear(ts
.chain
);
525 if ((info
->presc
&0xff) > 0)
526 writel(S3C2410_ADCCON_PRSCEN
|
527 S3C2410_ADCCON_PRSCVL(info
->presc
&0xFF),
528 base_addr
+S3C2410_ADCCON
);
530 writel(0,base_addr
+S3C2410_ADCCON
);
532 /* Initialise registers */
533 if ((info
->delay
& 0xffff) > 0)
534 writel(info
->delay
& 0xffff, base_addr
+S3C2410_ADCDLY
);
536 writel(WAIT4INT(0), base_addr
+S3C2410_ADCTSC
);
542 #define s3c2410ts_suspend NULL
543 #define s3c2410ts_resume NULL
546 static struct platform_driver s3c2410ts_driver
= {
548 .name
= "s3c2410-ts",
549 .owner
= THIS_MODULE
,
551 .probe
= s3c2410ts_probe
,
552 .remove
= s3c2410ts_remove
,
553 .suspend
= s3c2410ts_suspend
,
554 .resume
= s3c2410ts_resume
,
558 static struct platform_driver s3c2440ts_driver
= {
560 .name
= "s3c2440-ts",
561 .owner
= THIS_MODULE
,
563 .probe
= s3c2410ts_probe
,
564 .remove
= s3c2410ts_remove
,
565 .suspend
= s3c2410ts_suspend
,
566 .resume
= s3c2410ts_resume
,
570 static int __init
s3c2410ts_init(void)
574 rc
= platform_driver_register(&s3c2410ts_driver
);
578 rc
= platform_driver_register(&s3c2440ts_driver
);
580 platform_driver_unregister(&s3c2410ts_driver
);
585 static void __exit
s3c2410ts_exit(void)
587 platform_driver_unregister(&s3c2440ts_driver
);
588 platform_driver_unregister(&s3c2410ts_driver
);
591 module_init(s3c2410ts_init
);
592 module_exit(s3c2410ts_exit
);