blob: a4f25a915ffc772cf0045311eaf171859647d34e [file] [log] [blame]
Rachna Patil1b8be322012-03-04 08:11:57 -08001/*
2 * TI Touch Screen driver
3 *
4 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
9 *
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16
Rachna Patil1b8be322012-03-04 08:11:57 -080017#include <linux/kernel.h>
18#include <linux/err.h>
19#include <linux/module.h>
20#include <linux/input.h>
21#include <linux/slab.h>
22#include <linux/interrupt.h>
23#include <linux/clk.h>
24#include <linux/platform_device.h>
25#include <linux/io.h>
Rachna Patil1b8be322012-03-04 08:11:57 -080026#include <linux/delay.h>
Patil, Rachna03963102013-01-24 03:45:10 +000027#include <linux/of.h>
28#include <linux/of_device.h>
Vignesh R83edfdf2015-02-03 11:47:05 -080029#include <linux/sort.h>
Rachna Patil1b8be322012-03-04 08:11:57 -080030
Patil, Rachna2b99baf2012-10-16 12:55:44 +053031#include <linux/mfd/ti_am335x_tscadc.h>
Patil, Rachna33f5cc62012-10-16 12:55:38 +053032
33#define ADCFSM_STEPID 0x10
Rachna Patil1b8be322012-03-04 08:11:57 -080034#define SEQ_SETTLE 275
Rachna Patil1b8be322012-03-04 08:11:57 -080035#define MAX_12BIT ((1 << 12) - 1)
Rachna Patil1b8be322012-03-04 08:11:57 -080036
Grygorii Strashko46850422018-05-30 14:23:15 -070037#define TSC_IRQENB_MASK (IRQENB_FIFO0THRES | IRQENB_EOS | IRQENB_HW_PEN)
38
Patil, Rachnabb76dc02013-01-24 03:45:06 +000039static const int config_pins[] = {
40 STEPCONFIG_XPP,
41 STEPCONFIG_XNN,
42 STEPCONFIG_YPP,
43 STEPCONFIG_YNN,
44};
45
Patil, Rachna55c04de2012-10-16 12:55:42 +053046struct titsc {
Rachna Patil1b8be322012-03-04 08:11:57 -080047 struct input_dev *input;
Patil, Rachna2b99baf2012-10-16 12:55:44 +053048 struct ti_tscadc_dev *mfd_tscadc;
Vignesh R333e07e2018-06-30 16:03:15 +053049 struct device *dev;
Rachna Patil1b8be322012-03-04 08:11:57 -080050 unsigned int irq;
51 unsigned int wires;
52 unsigned int x_plate_resistance;
53 bool pen_down;
Patil, Rachna03963102013-01-24 03:45:10 +000054 int coordinate_readouts;
Patil, Rachnabb76dc02013-01-24 03:45:06 +000055 u32 config_inp[4];
56 u32 bit_xp, bit_xn, bit_yp, bit_yn;
57 u32 inp_xp, inp_xn, inp_yp, inp_yn;
Zubair Lutfullahbaee5392013-09-19 07:24:00 +010058 u32 step_mask;
Vignesh Rbf223612015-02-03 11:45:34 -080059 u32 charge_delay;
Rachna Patil1b8be322012-03-04 08:11:57 -080060};
61
Patil, Rachna55c04de2012-10-16 12:55:42 +053062static unsigned int titsc_readl(struct titsc *ts, unsigned int reg)
Rachna Patil1b8be322012-03-04 08:11:57 -080063{
Patil, Rachna2b99baf2012-10-16 12:55:44 +053064 return readl(ts->mfd_tscadc->tscadc_base + reg);
Rachna Patil1b8be322012-03-04 08:11:57 -080065}
66
Patil, Rachna55c04de2012-10-16 12:55:42 +053067static void titsc_writel(struct titsc *tsc, unsigned int reg,
Rachna Patil1b8be322012-03-04 08:11:57 -080068 unsigned int val)
69{
Patil, Rachna2b99baf2012-10-16 12:55:44 +053070 writel(val, tsc->mfd_tscadc->tscadc_base + reg);
Rachna Patil1b8be322012-03-04 08:11:57 -080071}
72
Patil, Rachnabb76dc02013-01-24 03:45:06 +000073static int titsc_config_wires(struct titsc *ts_dev)
74{
75 u32 analog_line[4];
76 u32 wire_order[4];
77 int i, bit_cfg;
78
79 for (i = 0; i < 4; i++) {
80 /*
81 * Get the order in which TSC wires are attached
82 * w.r.t. each of the analog input lines on the EVM.
83 */
84 analog_line[i] = (ts_dev->config_inp[i] & 0xF0) >> 4;
85 wire_order[i] = ts_dev->config_inp[i] & 0x0F;
86 if (WARN_ON(analog_line[i] > 7))
87 return -EINVAL;
88 if (WARN_ON(wire_order[i] > ARRAY_SIZE(config_pins)))
89 return -EINVAL;
90 }
91
92 for (i = 0; i < 4; i++) {
93 int an_line;
94 int wi_order;
95
96 an_line = analog_line[i];
97 wi_order = wire_order[i];
98 bit_cfg = config_pins[wi_order];
99 if (bit_cfg == 0)
100 return -EINVAL;
101 switch (wi_order) {
102 case 0:
103 ts_dev->bit_xp = bit_cfg;
104 ts_dev->inp_xp = an_line;
105 break;
106
107 case 1:
108 ts_dev->bit_xn = bit_cfg;
109 ts_dev->inp_xn = an_line;
110 break;
111
112 case 2:
113 ts_dev->bit_yp = bit_cfg;
114 ts_dev->inp_yp = an_line;
115 break;
116 case 3:
117 ts_dev->bit_yn = bit_cfg;
118 ts_dev->inp_yn = an_line;
119 break;
120 }
121 }
122 return 0;
123}
124
Patil, Rachna55c04de2012-10-16 12:55:42 +0530125static void titsc_step_config(struct titsc *ts_dev)
Rachna Patil1b8be322012-03-04 08:11:57 -0800126{
127 unsigned int config;
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200128 int i;
Brad Griffis3a596842015-02-03 11:41:58 -0800129 int end_step, first_step, tsc_steps;
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200130 u32 stepenable;
Rachna Patil1b8be322012-03-04 08:11:57 -0800131
132 config = STEPCONFIG_MODE_HWSYNC |
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000133 STEPCONFIG_AVG_16 | ts_dev->bit_xp;
Rachna Patil1b8be322012-03-04 08:11:57 -0800134 switch (ts_dev->wires) {
135 case 4:
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000136 config |= STEPCONFIG_INP(ts_dev->inp_yp) | ts_dev->bit_xn;
Rachna Patil1b8be322012-03-04 08:11:57 -0800137 break;
138 case 5:
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000139 config |= ts_dev->bit_yn |
140 STEPCONFIG_INP_AN4 | ts_dev->bit_xn |
141 ts_dev->bit_yp;
Rachna Patil1b8be322012-03-04 08:11:57 -0800142 break;
143 case 8:
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000144 config |= STEPCONFIG_INP(ts_dev->inp_yp) | ts_dev->bit_xn;
Rachna Patil1b8be322012-03-04 08:11:57 -0800145 break;
146 }
147
Brad Griffis3a596842015-02-03 11:41:58 -0800148 tsc_steps = ts_dev->coordinate_readouts * 2 + 2;
149 first_step = TOTAL_STEPS - tsc_steps;
150 /* Steps 16 to 16-coordinate_readouts is for X */
151 end_step = first_step + tsc_steps;
152 for (i = end_step - ts_dev->coordinate_readouts; i < end_step; i++) {
Patil, Rachna55c04de2012-10-16 12:55:42 +0530153 titsc_writel(ts_dev, REG_STEPCONFIG(i), config);
154 titsc_writel(ts_dev, REG_STEPDELAY(i), STEPCONFIG_OPENDLY);
Rachna Patil1b8be322012-03-04 08:11:57 -0800155 }
156
157 config = 0;
158 config = STEPCONFIG_MODE_HWSYNC |
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000159 STEPCONFIG_AVG_16 | ts_dev->bit_yn |
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200160 STEPCONFIG_INM_ADCREFM;
Rachna Patil1b8be322012-03-04 08:11:57 -0800161 switch (ts_dev->wires) {
162 case 4:
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000163 config |= ts_dev->bit_yp | STEPCONFIG_INP(ts_dev->inp_xp);
Rachna Patil1b8be322012-03-04 08:11:57 -0800164 break;
165 case 5:
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000166 config |= ts_dev->bit_xp | STEPCONFIG_INP_AN4 |
Jeff Lancecf5dd482017-10-18 17:25:52 -0700167 STEPCONFIG_XNP | STEPCONFIG_YPN;
Rachna Patil1b8be322012-03-04 08:11:57 -0800168 break;
169 case 8:
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000170 config |= ts_dev->bit_yp | STEPCONFIG_INP(ts_dev->inp_xp);
Rachna Patil1b8be322012-03-04 08:11:57 -0800171 break;
172 }
173
Brad Griffis3a596842015-02-03 11:41:58 -0800174 /* 1 ... coordinate_readouts is for Y */
175 end_step = first_step + ts_dev->coordinate_readouts;
176 for (i = first_step; i < end_step; i++) {
Patil, Rachna55c04de2012-10-16 12:55:42 +0530177 titsc_writel(ts_dev, REG_STEPCONFIG(i), config);
178 titsc_writel(ts_dev, REG_STEPDELAY(i), STEPCONFIG_OPENDLY);
Rachna Patil1b8be322012-03-04 08:11:57 -0800179 }
180
Brad Griffis344d6352015-02-03 11:44:12 -0800181 /* Make CHARGECONFIG same as IDLECONFIG */
Rachna Patil1b8be322012-03-04 08:11:57 -0800182
Brad Griffis344d6352015-02-03 11:44:12 -0800183 config = titsc_readl(ts_dev, REG_IDLECONFIG);
Patil, Rachna55c04de2012-10-16 12:55:42 +0530184 titsc_writel(ts_dev, REG_CHARGECONFIG, config);
Vignesh Rbf223612015-02-03 11:45:34 -0800185 titsc_writel(ts_dev, REG_CHARGEDELAY, ts_dev->charge_delay);
Rachna Patil1b8be322012-03-04 08:11:57 -0800186
Brad Griffis3a596842015-02-03 11:41:58 -0800187 /* coordinate_readouts + 1 ... coordinate_readouts + 2 is for Z */
Rachna Patil1b8be322012-03-04 08:11:57 -0800188 config = STEPCONFIG_MODE_HWSYNC |
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000189 STEPCONFIG_AVG_16 | ts_dev->bit_yp |
190 ts_dev->bit_xn | STEPCONFIG_INM_ADCREFM |
191 STEPCONFIG_INP(ts_dev->inp_xp);
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200192 titsc_writel(ts_dev, REG_STEPCONFIG(end_step), config);
193 titsc_writel(ts_dev, REG_STEPDELAY(end_step),
Patil, Rachnad1fb5742012-10-16 12:55:39 +0530194 STEPCONFIG_OPENDLY);
Rachna Patil1b8be322012-03-04 08:11:57 -0800195
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200196 end_step++;
197 config |= STEPCONFIG_INP(ts_dev->inp_yn);
198 titsc_writel(ts_dev, REG_STEPCONFIG(end_step), config);
199 titsc_writel(ts_dev, REG_STEPDELAY(end_step),
Patil, Rachnad1fb5742012-10-16 12:55:39 +0530200 STEPCONFIG_OPENDLY);
Rachna Patil1b8be322012-03-04 08:11:57 -0800201
Brad Griffis3a596842015-02-03 11:41:58 -0800202 /* The steps end ... end - readouts * 2 + 2 and bit 0 for TS_Charge */
203 stepenable = 1;
204 for (i = 0; i < tsc_steps; i++)
205 stepenable |= 1 << (first_step + i + 1);
206
Zubair Lutfullahbaee5392013-09-19 07:24:00 +0100207 ts_dev->step_mask = stepenable;
Sebastian Andrzej Siewior7e170c62013-12-19 16:28:29 +0100208 am335x_tsc_se_set_cache(ts_dev->mfd_tscadc, ts_dev->step_mask);
Rachna Patil1b8be322012-03-04 08:11:57 -0800209}
210
Vignesh R83edfdf2015-02-03 11:47:05 -0800211static int titsc_cmp_coord(const void *a, const void *b)
212{
213 return *(int *)a - *(int *)b;
214}
215
Patil, Rachna55c04de2012-10-16 12:55:42 +0530216static void titsc_read_coordinates(struct titsc *ts_dev,
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200217 u32 *x, u32 *y, u32 *z1, u32 *z2)
Rachna Patil1b8be322012-03-04 08:11:57 -0800218{
Vignesh R83edfdf2015-02-03 11:47:05 -0800219 unsigned int yvals[7], xvals[7];
220 unsigned int i, xsum = 0, ysum = 0;
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200221 unsigned int creads = ts_dev->coordinate_readouts;
Rachna Patil1b8be322012-03-04 08:11:57 -0800222
Vignesh R83edfdf2015-02-03 11:47:05 -0800223 for (i = 0; i < creads; i++) {
224 yvals[i] = titsc_readl(ts_dev, REG_FIFO0);
225 yvals[i] &= 0xfff;
Rachna Patil1b8be322012-03-04 08:11:57 -0800226 }
Vignesh R83edfdf2015-02-03 11:47:05 -0800227
228 *z1 = titsc_readl(ts_dev, REG_FIFO0);
229 *z1 &= 0xfff;
230 *z2 = titsc_readl(ts_dev, REG_FIFO0);
231 *z2 &= 0xfff;
232
233 for (i = 0; i < creads; i++) {
234 xvals[i] = titsc_readl(ts_dev, REG_FIFO0);
235 xvals[i] &= 0xfff;
236 }
237
238 /*
239 * If co-ordinates readouts is less than 4 then
240 * report the average. In case of 4 or more
241 * readouts, sort the co-ordinate samples, drop
242 * min and max values and report the average of
243 * remaining values.
244 */
245 if (creads <= 3) {
246 for (i = 0; i < creads; i++) {
247 ysum += yvals[i];
248 xsum += xvals[i];
249 }
250 ysum /= creads;
251 xsum /= creads;
252 } else {
253 sort(yvals, creads, sizeof(unsigned int),
254 titsc_cmp_coord, NULL);
255 sort(xvals, creads, sizeof(unsigned int),
256 titsc_cmp_coord, NULL);
257 for (i = 1; i < creads - 1; i++) {
258 ysum += yvals[i];
259 xsum += xvals[i];
260 }
261 ysum /= creads - 2;
262 xsum /= creads - 2;
263 }
264 *y = ysum;
265 *x = xsum;
Rachna Patil1b8be322012-03-04 08:11:57 -0800266}
267
Patil, Rachna55c04de2012-10-16 12:55:42 +0530268static irqreturn_t titsc_irq(int irq, void *dev)
Rachna Patil1b8be322012-03-04 08:11:57 -0800269{
Patil, Rachna55c04de2012-10-16 12:55:42 +0530270 struct titsc *ts_dev = dev;
Rachna Patil1b8be322012-03-04 08:11:57 -0800271 struct input_dev *input_dev = ts_dev->input;
Brad Griffis344d6352015-02-03 11:44:12 -0800272 unsigned int fsm, status, irqclr = 0;
Rachna Patil1b8be322012-03-04 08:11:57 -0800273 unsigned int x = 0, y = 0;
274 unsigned int z1, z2, z;
Rachna Patil1b8be322012-03-04 08:11:57 -0800275
Brad Griffis344d6352015-02-03 11:44:12 -0800276 status = titsc_readl(ts_dev, REG_RAWIRQSTATUS);
277 if (status & IRQENB_HW_PEN) {
278 ts_dev->pen_down = true;
Brad Griffis344d6352015-02-03 11:44:12 -0800279 irqclr |= IRQENB_HW_PEN;
Vignesh R333e07e2018-06-30 16:03:15 +0530280 pm_stay_awake(ts_dev->dev);
Brad Griffis344d6352015-02-03 11:44:12 -0800281 }
282
283 if (status & IRQENB_PENUP) {
284 fsm = titsc_readl(ts_dev, REG_ADCFSM);
285 if (fsm == ADCFSM_STEPID) {
286 ts_dev->pen_down = false;
287 input_report_key(input_dev, BTN_TOUCH, 0);
288 input_report_abs(input_dev, ABS_PRESSURE, 0);
289 input_sync(input_dev);
Vignesh R333e07e2018-06-30 16:03:15 +0530290 pm_relax(ts_dev->dev);
Brad Griffis344d6352015-02-03 11:44:12 -0800291 } else {
292 ts_dev->pen_down = true;
293 }
294 irqclr |= IRQENB_PENUP;
295 }
296
297 if (status & IRQENB_EOS)
298 irqclr |= IRQENB_EOS;
299
Zubair Lutfullahbaee5392013-09-19 07:24:00 +0100300 /*
301 * ADC and touchscreen share the IRQ line.
302 * FIFO1 interrupts are used by ADC. Handle FIFO0 IRQs here only
303 */
Patil, Rachna30af55f2012-10-16 12:55:40 +0530304 if (status & IRQENB_FIFO0THRES) {
Rachna Patil1b8be322012-03-04 08:11:57 -0800305
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200306 titsc_read_coordinates(ts_dev, &x, &y, &z1, &z2);
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530307
Rachna Patil1b8be322012-03-04 08:11:57 -0800308 if (ts_dev->pen_down && z1 != 0 && z2 != 0) {
309 /*
310 * Calculate pressure using formula
311 * Resistance(touch) = x plate resistance *
312 * x postion/4096 * ((z2 / z1) - 1)
313 */
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200314 z = z1 - z2;
Rachna Patil1b8be322012-03-04 08:11:57 -0800315 z *= x;
316 z *= ts_dev->x_plate_resistance;
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200317 z /= z2;
Rachna Patil1b8be322012-03-04 08:11:57 -0800318 z = (z + 2047) >> 12;
319
320 if (z <= MAX_12BIT) {
321 input_report_abs(input_dev, ABS_X, x);
322 input_report_abs(input_dev, ABS_Y, y);
323 input_report_abs(input_dev, ABS_PRESSURE, z);
324 input_report_key(input_dev, BTN_TOUCH, 1);
325 input_sync(input_dev);
326 }
327 }
Patil, Rachna30af55f2012-10-16 12:55:40 +0530328 irqclr |= IRQENB_FIFO0THRES;
Rachna Patil1b8be322012-03-04 08:11:57 -0800329 }
Sebastian Andrzej Siewior9a28b882013-06-05 16:30:00 +0200330 if (irqclr) {
331 titsc_writel(ts_dev, REG_IRQSTATUS, irqclr);
Brad Griffis344d6352015-02-03 11:44:12 -0800332 if (status & IRQENB_EOS)
333 am335x_tsc_se_set_cache(ts_dev->mfd_tscadc,
334 ts_dev->step_mask);
Sebastian Andrzej Siewior9a28b882013-06-05 16:30:00 +0200335 return IRQ_HANDLED;
336 }
337 return IRQ_NONE;
Rachna Patil1b8be322012-03-04 08:11:57 -0800338}
339
Patil, Rachna03963102013-01-24 03:45:10 +0000340static int titsc_parse_dt(struct platform_device *pdev,
341 struct titsc *ts_dev)
342{
343 struct device_node *node = pdev->dev.of_node;
344 int err;
345
346 if (!node)
347 return -EINVAL;
348
349 err = of_property_read_u32(node, "ti,wires", &ts_dev->wires);
350 if (err < 0)
351 return err;
352 switch (ts_dev->wires) {
353 case 4:
354 case 5:
355 case 8:
356 break;
357 default:
358 return -EINVAL;
359 }
360
361 err = of_property_read_u32(node, "ti,x-plate-resistance",
362 &ts_dev->x_plate_resistance);
363 if (err < 0)
364 return err;
365
Felipe Balbic9aeb242013-11-10 23:56:43 -0800366 /*
367 * Try with the new binding first. If it fails, try again with
368 * bogus, miss-spelled version.
369 */
370 err = of_property_read_u32(node, "ti,coordinate-readouts",
Patil, Rachna03963102013-01-24 03:45:10 +0000371 &ts_dev->coordinate_readouts);
Felipe Balbi31972f62014-06-15 00:15:09 -0700372 if (err < 0) {
373 dev_warn(&pdev->dev, "please use 'ti,coordinate-readouts' instead\n");
Felipe Balbic9aeb242013-11-10 23:56:43 -0800374 err = of_property_read_u32(node, "ti,coordiante-readouts",
375 &ts_dev->coordinate_readouts);
Felipe Balbi31972f62014-06-15 00:15:09 -0700376 }
377
Felipe Balbic9aeb242013-11-10 23:56:43 -0800378 if (err < 0)
Patil, Rachna03963102013-01-24 03:45:10 +0000379 return err;
380
Vignesh R83edfdf2015-02-03 11:47:05 -0800381 if (ts_dev->coordinate_readouts <= 0) {
382 dev_warn(&pdev->dev,
383 "invalid co-ordinate readouts, resetting it to 5\n");
384 ts_dev->coordinate_readouts = 5;
385 }
386
Vignesh Rbf223612015-02-03 11:45:34 -0800387 err = of_property_read_u32(node, "ti,charge-delay",
388 &ts_dev->charge_delay);
389 /*
390 * If ti,charge-delay value is not specified, then use
391 * CHARGEDLY_OPENDLY as the default value.
392 */
393 if (err < 0) {
394 ts_dev->charge_delay = CHARGEDLY_OPENDLY;
395 dev_warn(&pdev->dev, "ti,charge-delay not specified\n");
396 }
397
Patil, Rachna03963102013-01-24 03:45:10 +0000398 return of_property_read_u32_array(node, "ti,wire-config",
399 ts_dev->config_inp, ARRAY_SIZE(ts_dev->config_inp));
Rachna Patil1b8be322012-03-04 08:11:57 -0800400}
401
402/*
403 * The functions for inserting/removing driver as a module.
404 */
405
Linus Torvalds31564cb2012-12-18 12:46:37 -0800406static int titsc_probe(struct platform_device *pdev)
Rachna Patil1b8be322012-03-04 08:11:57 -0800407{
Patil, Rachna55c04de2012-10-16 12:55:42 +0530408 struct titsc *ts_dev;
Rachna Patil1b8be322012-03-04 08:11:57 -0800409 struct input_dev *input_dev;
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200410 struct ti_tscadc_dev *tscadc_dev = ti_tscadc_dev_get(pdev);
Rachna Patil1b8be322012-03-04 08:11:57 -0800411 int err;
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530412
Rachna Patil1b8be322012-03-04 08:11:57 -0800413 /* Allocate memory for device */
Andrew F. Davis520d8262016-06-01 11:35:05 -0700414 ts_dev = kzalloc(sizeof(*ts_dev), GFP_KERNEL);
Rachna Patil1b8be322012-03-04 08:11:57 -0800415 input_dev = input_allocate_device();
416 if (!ts_dev || !input_dev) {
417 dev_err(&pdev->dev, "failed to allocate memory.\n");
418 err = -ENOMEM;
419 goto err_free_mem;
420 }
421
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530422 tscadc_dev->tsc = ts_dev;
423 ts_dev->mfd_tscadc = tscadc_dev;
Rachna Patil1b8be322012-03-04 08:11:57 -0800424 ts_dev->input = input_dev;
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530425 ts_dev->irq = tscadc_dev->irq;
Vignesh R333e07e2018-06-30 16:03:15 +0530426 ts_dev->dev = &pdev->dev;
Patil, Rachna03963102013-01-24 03:45:10 +0000427
Sebastian Andrzej Siewiorb9194fd2013-05-21 17:39:13 +0200428 err = titsc_parse_dt(pdev, ts_dev);
Patil, Rachna03963102013-01-24 03:45:10 +0000429 if (err) {
430 dev_err(&pdev->dev, "Could not find valid DT data.\n");
431 goto err_free_mem;
432 }
Rachna Patil1b8be322012-03-04 08:11:57 -0800433
Patil, Rachna55c04de2012-10-16 12:55:42 +0530434 err = request_irq(ts_dev->irq, titsc_irq,
Zubair Lutfullahbaee5392013-09-19 07:24:00 +0100435 IRQF_SHARED, pdev->dev.driver->name, ts_dev);
Rachna Patil1b8be322012-03-04 08:11:57 -0800436 if (err) {
437 dev_err(&pdev->dev, "failed to allocate irq.\n");
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530438 goto err_free_mem;
Rachna Patil1b8be322012-03-04 08:11:57 -0800439 }
440
Vignesh R333e07e2018-06-30 16:03:15 +0530441 device_init_wakeup(&pdev->dev, true);
442
Grygorii Strashko46850422018-05-30 14:23:15 -0700443 titsc_writel(ts_dev, REG_IRQSTATUS, TSC_IRQENB_MASK);
Patil, Rachna55c04de2012-10-16 12:55:42 +0530444 titsc_writel(ts_dev, REG_IRQENABLE, IRQENB_FIFO0THRES);
Brad Griffis344d6352015-02-03 11:44:12 -0800445 titsc_writel(ts_dev, REG_IRQENABLE, IRQENB_EOS);
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000446 err = titsc_config_wires(ts_dev);
447 if (err) {
448 dev_err(&pdev->dev, "wrong i/p wire configuration\n");
449 goto err_free_irq;
450 }
Patil, Rachna55c04de2012-10-16 12:55:42 +0530451 titsc_step_config(ts_dev);
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200452 titsc_writel(ts_dev, REG_FIFO0THR,
453 ts_dev->coordinate_readouts * 2 + 2 - 1);
Rachna Patil1b8be322012-03-04 08:11:57 -0800454
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530455 input_dev->name = "ti-tsc";
Rachna Patil1b8be322012-03-04 08:11:57 -0800456 input_dev->dev.parent = &pdev->dev;
457
458 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
459 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
460
461 input_set_abs_params(input_dev, ABS_X, 0, MAX_12BIT, 0, 0);
462 input_set_abs_params(input_dev, ABS_Y, 0, MAX_12BIT, 0, 0);
463 input_set_abs_params(input_dev, ABS_PRESSURE, 0, MAX_12BIT, 0, 0);
464
465 /* register to the input system */
466 err = input_register_device(input_dev);
467 if (err)
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530468 goto err_free_irq;
Rachna Patil1b8be322012-03-04 08:11:57 -0800469
470 platform_set_drvdata(pdev, ts_dev);
471 return 0;
472
Rachna Patil1b8be322012-03-04 08:11:57 -0800473err_free_irq:
Vignesh R333e07e2018-06-30 16:03:15 +0530474 device_init_wakeup(&pdev->dev, false);
Rachna Patil1b8be322012-03-04 08:11:57 -0800475 free_irq(ts_dev->irq, ts_dev);
Rachna Patil1b8be322012-03-04 08:11:57 -0800476err_free_mem:
477 input_free_device(input_dev);
478 kfree(ts_dev);
479 return err;
480}
481
Linus Torvalds31564cb2012-12-18 12:46:37 -0800482static int titsc_remove(struct platform_device *pdev)
Rachna Patil1b8be322012-03-04 08:11:57 -0800483{
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200484 struct titsc *ts_dev = platform_get_drvdata(pdev);
485 u32 steps;
Rachna Patil1b8be322012-03-04 08:11:57 -0800486
Vignesh R333e07e2018-06-30 16:03:15 +0530487 device_init_wakeup(&pdev->dev, false);
Rachna Patil1b8be322012-03-04 08:11:57 -0800488 free_irq(ts_dev->irq, ts_dev);
489
Patil, Rachnaabeccee2013-01-24 03:45:05 +0000490 /* total steps followed by the enable mask */
Patil, Rachna03963102013-01-24 03:45:10 +0000491 steps = 2 * ts_dev->coordinate_readouts + 2;
Patil, Rachnaabeccee2013-01-24 03:45:05 +0000492 steps = (1 << steps) - 1;
493 am335x_tsc_se_clr(ts_dev->mfd_tscadc, steps);
494
Rachna Patil1b8be322012-03-04 08:11:57 -0800495 input_unregister_device(ts_dev->input);
496
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530497 kfree(ts_dev);
Rachna Patil1b8be322012-03-04 08:11:57 -0800498 return 0;
499}
500
Dmitry Torokhov20aa7872016-01-07 17:28:06 -0800501static int __maybe_unused titsc_suspend(struct device *dev)
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530502{
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200503 struct titsc *ts_dev = dev_get_drvdata(dev);
504 struct ti_tscadc_dev *tscadc_dev;
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530505 unsigned int idle;
506
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200507 tscadc_dev = ti_tscadc_dev_get(to_platform_device(dev));
Vignesh R333e07e2018-06-30 16:03:15 +0530508 if (device_may_wakeup(dev)) {
Grygorii Strashko46850422018-05-30 14:23:15 -0700509 titsc_writel(ts_dev, REG_IRQSTATUS, TSC_IRQENB_MASK);
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530510 idle = titsc_readl(ts_dev, REG_IRQENABLE);
511 titsc_writel(ts_dev, REG_IRQENABLE,
512 (idle | IRQENB_HW_PEN));
513 titsc_writel(ts_dev, REG_IRQWAKEUP, IRQWKUP_ENB);
514 }
515 return 0;
516}
517
Dmitry Torokhov20aa7872016-01-07 17:28:06 -0800518static int __maybe_unused titsc_resume(struct device *dev)
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530519{
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200520 struct titsc *ts_dev = dev_get_drvdata(dev);
521 struct ti_tscadc_dev *tscadc_dev;
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530522
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200523 tscadc_dev = ti_tscadc_dev_get(to_platform_device(dev));
Vignesh R333e07e2018-06-30 16:03:15 +0530524 if (device_may_wakeup(dev)) {
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530525 titsc_writel(ts_dev, REG_IRQWAKEUP,
526 0x00);
527 titsc_writel(ts_dev, REG_IRQCLR, IRQENB_HW_PEN);
Vignesh R333e07e2018-06-30 16:03:15 +0530528 pm_relax(dev);
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530529 }
530 titsc_step_config(ts_dev);
531 titsc_writel(ts_dev, REG_FIFO0THR,
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200532 ts_dev->coordinate_readouts * 2 + 2 - 1);
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530533 return 0;
534}
535
Dmitry Torokhov20aa7872016-01-07 17:28:06 -0800536static SIMPLE_DEV_PM_OPS(titsc_pm_ops, titsc_suspend, titsc_resume);
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530537
Patil, Rachna03963102013-01-24 03:45:10 +0000538static const struct of_device_id ti_tsc_dt_ids[] = {
539 { .compatible = "ti,am3359-tsc", },
540 { }
541};
542MODULE_DEVICE_TABLE(of, ti_tsc_dt_ids);
543
Rachna Patil1b8be322012-03-04 08:11:57 -0800544static struct platform_driver ti_tsc_driver = {
Patil, Rachna55c04de2012-10-16 12:55:42 +0530545 .probe = titsc_probe,
Linus Torvalds31564cb2012-12-18 12:46:37 -0800546 .remove = titsc_remove,
Rachna Patil1b8be322012-03-04 08:11:57 -0800547 .driver = {
Sebastian Andrzej Siewior5f184e62013-05-27 17:08:28 +0200548 .name = "TI-am335x-tsc",
Dmitry Torokhov20aa7872016-01-07 17:28:06 -0800549 .pm = &titsc_pm_ops,
Sachin Kamat8e6146b2013-10-06 00:53:52 -0700550 .of_match_table = ti_tsc_dt_ids,
Rachna Patil1b8be322012-03-04 08:11:57 -0800551 },
552};
553module_platform_driver(ti_tsc_driver);
554
555MODULE_DESCRIPTION("TI touchscreen controller driver");
556MODULE_AUTHOR("Rachna Patil <rachna@ti.com>");
557MODULE_LICENSE("GPL");