2 * Driver for Motorola PCAP2 touchscreen as found in the EZX phone platform.
4 * Copyright (C) 2006 Harald Welte <laforge@openezx.org>
5 * Copyright (C) 2009 Daniel Ribeiro <drwyrm@gmail.com>
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.
13 #include <linux/module.h>
14 #include <linux/init.h>
16 #include <linux/string.h>
17 #include <linux/slab.h>
19 #include <linux/timer.h>
20 #include <linux/interrupt.h>
21 #include <linux/platform_device.h>
22 #include <linux/input.h>
23 #include <linux/mfd/ezx-pcap.h>
26 struct pcap_chip
*pcap
;
27 struct input_dev
*input
;
28 struct delayed_work work
;
34 #define SAMPLE_DELAY 20 /* msecs */
37 #define X_AXIS_MAX 1023
38 #define Y_AXIS_MAX X_AXIS_MAX
39 #define Y_AXIS_MIN X_AXIS_MIN
40 #define PRESSURE_MAX X_AXIS_MAX
41 #define PRESSURE_MIN X_AXIS_MIN
43 static void pcap_ts_read_xy(void *data
, u16 res
[2])
45 struct pcap_ts
*pcap_ts
= data
;
47 switch (pcap_ts
->read_state
) {
48 case PCAP_ADC_TS_M_PRESSURE
:
49 /* pressure reading is unreliable */
50 if (res
[0] > PRESSURE_MIN
&& res
[0] < PRESSURE_MAX
)
51 pcap_ts
->pressure
= res
[0];
52 pcap_ts
->read_state
= PCAP_ADC_TS_M_XY
;
53 schedule_delayed_work(&pcap_ts
->work
, 0);
55 case PCAP_ADC_TS_M_XY
:
58 if (pcap_ts
->x
<= X_AXIS_MIN
|| pcap_ts
->x
>= X_AXIS_MAX
||
59 pcap_ts
->y
<= Y_AXIS_MIN
|| pcap_ts
->y
>= Y_AXIS_MAX
) {
60 /* pen has been released */
61 input_report_abs(pcap_ts
->input
, ABS_PRESSURE
, 0);
62 input_report_key(pcap_ts
->input
, BTN_TOUCH
, 0);
64 pcap_ts
->read_state
= PCAP_ADC_TS_M_STANDBY
;
65 schedule_delayed_work(&pcap_ts
->work
, 0);
67 /* pen is touching the screen */
68 input_report_abs(pcap_ts
->input
, ABS_X
, pcap_ts
->x
);
69 input_report_abs(pcap_ts
->input
, ABS_Y
, pcap_ts
->y
);
70 input_report_key(pcap_ts
->input
, BTN_TOUCH
, 1);
71 input_report_abs(pcap_ts
->input
, ABS_PRESSURE
,
74 /* switch back to pressure read mode */
75 pcap_ts
->read_state
= PCAP_ADC_TS_M_PRESSURE
;
76 schedule_delayed_work(&pcap_ts
->work
,
77 msecs_to_jiffies(SAMPLE_DELAY
));
79 input_sync(pcap_ts
->input
);
82 dev_warn(&pcap_ts
->input
->dev
,
83 "pcap_ts: Warning, unhandled read_state %d\n",
89 static void pcap_ts_work(struct work_struct
*work
)
91 struct delayed_work
*dw
= container_of(work
, struct delayed_work
, work
);
92 struct pcap_ts
*pcap_ts
= container_of(dw
, struct pcap_ts
, work
);
95 pcap_set_ts_bits(pcap_ts
->pcap
,
96 pcap_ts
->read_state
<< PCAP_ADC_TS_M_SHIFT
);
98 if (pcap_ts
->read_state
== PCAP_ADC_TS_M_STANDBY
)
101 /* start adc conversion */
102 ch
[0] = PCAP_ADC_CH_TS_X1
;
103 ch
[1] = PCAP_ADC_CH_TS_Y1
;
104 pcap_adc_async(pcap_ts
->pcap
, PCAP_ADC_BANK_1
, 0, ch
,
105 pcap_ts_read_xy
, pcap_ts
);
108 static irqreturn_t
pcap_ts_event_touch(int pirq
, void *data
)
110 struct pcap_ts
*pcap_ts
= data
;
112 if (pcap_ts
->read_state
== PCAP_ADC_TS_M_STANDBY
) {
113 pcap_ts
->read_state
= PCAP_ADC_TS_M_PRESSURE
;
114 schedule_delayed_work(&pcap_ts
->work
, 0);
119 static int pcap_ts_open(struct input_dev
*dev
)
121 struct pcap_ts
*pcap_ts
= input_get_drvdata(dev
);
123 pcap_ts
->read_state
= PCAP_ADC_TS_M_STANDBY
;
124 schedule_delayed_work(&pcap_ts
->work
, 0);
129 static void pcap_ts_close(struct input_dev
*dev
)
131 struct pcap_ts
*pcap_ts
= input_get_drvdata(dev
);
133 cancel_delayed_work_sync(&pcap_ts
->work
);
135 pcap_ts
->read_state
= PCAP_ADC_TS_M_NONTS
;
136 pcap_set_ts_bits(pcap_ts
->pcap
,
137 pcap_ts
->read_state
<< PCAP_ADC_TS_M_SHIFT
);
140 static int __devinit
pcap_ts_probe(struct platform_device
*pdev
)
142 struct input_dev
*input_dev
;
143 struct pcap_ts
*pcap_ts
;
146 pcap_ts
= kzalloc(sizeof(*pcap_ts
), GFP_KERNEL
);
150 pcap_ts
->pcap
= dev_get_drvdata(pdev
->dev
.parent
);
151 platform_set_drvdata(pdev
, pcap_ts
);
153 input_dev
= input_allocate_device();
157 INIT_DELAYED_WORK(&pcap_ts
->work
, pcap_ts_work
);
159 pcap_ts
->read_state
= PCAP_ADC_TS_M_NONTS
;
160 pcap_set_ts_bits(pcap_ts
->pcap
,
161 pcap_ts
->read_state
<< PCAP_ADC_TS_M_SHIFT
);
163 pcap_ts
->input
= input_dev
;
164 input_set_drvdata(input_dev
, pcap_ts
);
166 input_dev
->name
= "pcap-touchscreen";
167 input_dev
->phys
= "pcap_ts/input0";
168 input_dev
->id
.bustype
= BUS_HOST
;
169 input_dev
->id
.vendor
= 0x0001;
170 input_dev
->id
.product
= 0x0002;
171 input_dev
->id
.version
= 0x0100;
172 input_dev
->dev
.parent
= &pdev
->dev
;
173 input_dev
->open
= pcap_ts_open
;
174 input_dev
->close
= pcap_ts_close
;
176 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
177 input_dev
->keybit
[BIT_WORD(BTN_TOUCH
)] = BIT_MASK(BTN_TOUCH
);
178 input_set_abs_params(input_dev
, ABS_X
, X_AXIS_MIN
, X_AXIS_MAX
, 0, 0);
179 input_set_abs_params(input_dev
, ABS_Y
, Y_AXIS_MIN
, Y_AXIS_MAX
, 0, 0);
180 input_set_abs_params(input_dev
, ABS_PRESSURE
, PRESSURE_MIN
,
183 err
= input_register_device(pcap_ts
->input
);
187 err
= request_irq(pcap_to_irq(pcap_ts
->pcap
, PCAP_IRQ_TS
),
188 pcap_ts_event_touch
, 0, "Touch Screen", pcap_ts
);
195 input_unregister_device(input_dev
);
198 input_free_device(input_dev
);
205 static int __devexit
pcap_ts_remove(struct platform_device
*pdev
)
207 struct pcap_ts
*pcap_ts
= platform_get_drvdata(pdev
);
209 free_irq(pcap_to_irq(pcap_ts
->pcap
, PCAP_IRQ_TS
), pcap_ts
);
210 cancel_delayed_work_sync(&pcap_ts
->work
);
212 input_unregister_device(pcap_ts
->input
);
220 static int pcap_ts_suspend(struct device
*dev
)
222 struct pcap_ts
*pcap_ts
= dev_get_drvdata(dev
);
224 pcap_set_ts_bits(pcap_ts
->pcap
, PCAP_ADC_TS_REF_LOWPWR
);
228 static int pcap_ts_resume(struct device
*dev
)
230 struct pcap_ts
*pcap_ts
= dev_get_drvdata(dev
);
232 pcap_set_ts_bits(pcap_ts
->pcap
,
233 pcap_ts
->read_state
<< PCAP_ADC_TS_M_SHIFT
);
237 static const struct dev_pm_ops pcap_ts_pm_ops
= {
238 .suspend
= pcap_ts_suspend
,
239 .resume
= pcap_ts_resume
,
241 #define PCAP_TS_PM_OPS (&pcap_ts_pm_ops)
243 #define PCAP_TS_PM_OPS NULL
246 static struct platform_driver pcap_ts_driver
= {
247 .probe
= pcap_ts_probe
,
248 .remove
= __devexit_p(pcap_ts_remove
),
251 .owner
= THIS_MODULE
,
252 .pm
= PCAP_TS_PM_OPS
,
256 static int __init
pcap_ts_init(void)
258 return platform_driver_register(&pcap_ts_driver
);
261 static void __exit
pcap_ts_exit(void)
263 platform_driver_unregister(&pcap_ts_driver
);
266 module_init(pcap_ts_init
);
267 module_exit(pcap_ts_exit
);
269 MODULE_DESCRIPTION("Motorola PCAP2 touchscreen driver");
270 MODULE_AUTHOR("Daniel Ribeiro / Harald Welte");
271 MODULE_LICENSE("GPL");
272 MODULE_ALIAS("platform:pcap_ts");