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>
15 #include <linux/string.h>
16 #include <linux/slab.h>
18 #include <linux/timer.h>
19 #include <linux/interrupt.h>
20 #include <linux/platform_device.h>
21 #include <linux/input.h>
22 #include <linux/mfd/ezx-pcap.h>
25 struct pcap_chip
*pcap
;
26 struct input_dev
*input
;
27 struct delayed_work work
;
33 #define SAMPLE_DELAY 20 /* msecs */
36 #define X_AXIS_MAX 1023
37 #define Y_AXIS_MAX X_AXIS_MAX
38 #define Y_AXIS_MIN X_AXIS_MIN
39 #define PRESSURE_MAX X_AXIS_MAX
40 #define PRESSURE_MIN X_AXIS_MIN
42 static void pcap_ts_read_xy(void *data
, u16 res
[2])
44 struct pcap_ts
*pcap_ts
= data
;
46 switch (pcap_ts
->read_state
) {
47 case PCAP_ADC_TS_M_PRESSURE
:
48 /* pressure reading is unreliable */
49 if (res
[0] > PRESSURE_MIN
&& res
[0] < PRESSURE_MAX
)
50 pcap_ts
->pressure
= res
[0];
51 pcap_ts
->read_state
= PCAP_ADC_TS_M_XY
;
52 schedule_delayed_work(&pcap_ts
->work
, 0);
54 case PCAP_ADC_TS_M_XY
:
57 if (pcap_ts
->x
<= X_AXIS_MIN
|| pcap_ts
->x
>= X_AXIS_MAX
||
58 pcap_ts
->y
<= Y_AXIS_MIN
|| pcap_ts
->y
>= Y_AXIS_MAX
) {
59 /* pen has been released */
60 input_report_abs(pcap_ts
->input
, ABS_PRESSURE
, 0);
61 input_report_key(pcap_ts
->input
, BTN_TOUCH
, 0);
63 pcap_ts
->read_state
= PCAP_ADC_TS_M_STANDBY
;
64 schedule_delayed_work(&pcap_ts
->work
, 0);
66 /* pen is touching the screen */
67 input_report_abs(pcap_ts
->input
, ABS_X
, pcap_ts
->x
);
68 input_report_abs(pcap_ts
->input
, ABS_Y
, pcap_ts
->y
);
69 input_report_key(pcap_ts
->input
, BTN_TOUCH
, 1);
70 input_report_abs(pcap_ts
->input
, ABS_PRESSURE
,
73 /* switch back to pressure read mode */
74 pcap_ts
->read_state
= PCAP_ADC_TS_M_PRESSURE
;
75 schedule_delayed_work(&pcap_ts
->work
,
76 msecs_to_jiffies(SAMPLE_DELAY
));
78 input_sync(pcap_ts
->input
);
81 dev_warn(&pcap_ts
->input
->dev
,
82 "pcap_ts: Warning, unhandled read_state %d\n",
88 static void pcap_ts_work(struct work_struct
*work
)
90 struct delayed_work
*dw
= to_delayed_work(work
);
91 struct pcap_ts
*pcap_ts
= container_of(dw
, struct pcap_ts
, work
);
94 pcap_set_ts_bits(pcap_ts
->pcap
,
95 pcap_ts
->read_state
<< PCAP_ADC_TS_M_SHIFT
);
97 if (pcap_ts
->read_state
== PCAP_ADC_TS_M_STANDBY
)
100 /* start adc conversion */
101 ch
[0] = PCAP_ADC_CH_TS_X1
;
102 ch
[1] = PCAP_ADC_CH_TS_Y1
;
103 pcap_adc_async(pcap_ts
->pcap
, PCAP_ADC_BANK_1
, 0, ch
,
104 pcap_ts_read_xy
, pcap_ts
);
107 static irqreturn_t
pcap_ts_event_touch(int pirq
, void *data
)
109 struct pcap_ts
*pcap_ts
= data
;
111 if (pcap_ts
->read_state
== PCAP_ADC_TS_M_STANDBY
) {
112 pcap_ts
->read_state
= PCAP_ADC_TS_M_PRESSURE
;
113 schedule_delayed_work(&pcap_ts
->work
, 0);
118 static int pcap_ts_open(struct input_dev
*dev
)
120 struct pcap_ts
*pcap_ts
= input_get_drvdata(dev
);
122 pcap_ts
->read_state
= PCAP_ADC_TS_M_STANDBY
;
123 schedule_delayed_work(&pcap_ts
->work
, 0);
128 static void pcap_ts_close(struct input_dev
*dev
)
130 struct pcap_ts
*pcap_ts
= input_get_drvdata(dev
);
132 cancel_delayed_work_sync(&pcap_ts
->work
);
134 pcap_ts
->read_state
= PCAP_ADC_TS_M_NONTS
;
135 pcap_set_ts_bits(pcap_ts
->pcap
,
136 pcap_ts
->read_state
<< PCAP_ADC_TS_M_SHIFT
);
139 static int pcap_ts_probe(struct platform_device
*pdev
)
141 struct input_dev
*input_dev
;
142 struct pcap_ts
*pcap_ts
;
145 pcap_ts
= kzalloc(sizeof(*pcap_ts
), GFP_KERNEL
);
149 pcap_ts
->pcap
= dev_get_drvdata(pdev
->dev
.parent
);
150 platform_set_drvdata(pdev
, pcap_ts
);
152 input_dev
= input_allocate_device();
156 INIT_DELAYED_WORK(&pcap_ts
->work
, pcap_ts_work
);
158 pcap_ts
->read_state
= PCAP_ADC_TS_M_NONTS
;
159 pcap_set_ts_bits(pcap_ts
->pcap
,
160 pcap_ts
->read_state
<< PCAP_ADC_TS_M_SHIFT
);
162 pcap_ts
->input
= input_dev
;
163 input_set_drvdata(input_dev
, pcap_ts
);
165 input_dev
->name
= "pcap-touchscreen";
166 input_dev
->phys
= "pcap_ts/input0";
167 input_dev
->id
.bustype
= BUS_HOST
;
168 input_dev
->id
.vendor
= 0x0001;
169 input_dev
->id
.product
= 0x0002;
170 input_dev
->id
.version
= 0x0100;
171 input_dev
->dev
.parent
= &pdev
->dev
;
172 input_dev
->open
= pcap_ts_open
;
173 input_dev
->close
= pcap_ts_close
;
175 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
176 input_dev
->keybit
[BIT_WORD(BTN_TOUCH
)] = BIT_MASK(BTN_TOUCH
);
177 input_set_abs_params(input_dev
, ABS_X
, X_AXIS_MIN
, X_AXIS_MAX
, 0, 0);
178 input_set_abs_params(input_dev
, ABS_Y
, Y_AXIS_MIN
, Y_AXIS_MAX
, 0, 0);
179 input_set_abs_params(input_dev
, ABS_PRESSURE
, PRESSURE_MIN
,
182 err
= input_register_device(pcap_ts
->input
);
186 err
= request_irq(pcap_to_irq(pcap_ts
->pcap
, PCAP_IRQ_TS
),
187 pcap_ts_event_touch
, 0, "Touch Screen", pcap_ts
);
194 input_unregister_device(input_dev
);
197 input_free_device(input_dev
);
204 static int pcap_ts_remove(struct platform_device
*pdev
)
206 struct pcap_ts
*pcap_ts
= platform_get_drvdata(pdev
);
208 free_irq(pcap_to_irq(pcap_ts
->pcap
, PCAP_IRQ_TS
), pcap_ts
);
209 cancel_delayed_work_sync(&pcap_ts
->work
);
211 input_unregister_device(pcap_ts
->input
);
219 static int pcap_ts_suspend(struct device
*dev
)
221 struct pcap_ts
*pcap_ts
= dev_get_drvdata(dev
);
223 pcap_set_ts_bits(pcap_ts
->pcap
, PCAP_ADC_TS_REF_LOWPWR
);
227 static int pcap_ts_resume(struct device
*dev
)
229 struct pcap_ts
*pcap_ts
= dev_get_drvdata(dev
);
231 pcap_set_ts_bits(pcap_ts
->pcap
,
232 pcap_ts
->read_state
<< PCAP_ADC_TS_M_SHIFT
);
236 static const struct dev_pm_ops pcap_ts_pm_ops
= {
237 .suspend
= pcap_ts_suspend
,
238 .resume
= pcap_ts_resume
,
240 #define PCAP_TS_PM_OPS (&pcap_ts_pm_ops)
242 #define PCAP_TS_PM_OPS NULL
245 static struct platform_driver pcap_ts_driver
= {
246 .probe
= pcap_ts_probe
,
247 .remove
= pcap_ts_remove
,
250 .pm
= PCAP_TS_PM_OPS
,
253 module_platform_driver(pcap_ts_driver
);
255 MODULE_DESCRIPTION("Motorola PCAP2 touchscreen driver");
256 MODULE_AUTHOR("Daniel Ribeiro / Harald Welte");
257 MODULE_LICENSE("GPL");
258 MODULE_ALIAS("platform:pcap_ts");