blob: e1c5300cacfc2044f83175dccffd864a8bd01fbc [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
17#include <linux/init.h>
18#include <linux/kernel.h>
19#include <linux/err.h>
20#include <linux/module.h>
21#include <linux/input.h>
22#include <linux/slab.h>
23#include <linux/interrupt.h>
24#include <linux/clk.h>
25#include <linux/platform_device.h>
26#include <linux/io.h>
Rachna Patil1b8be322012-03-04 08:11:57 -080027#include <linux/delay.h>
Patil, Rachna03963102013-01-24 03:45:10 +000028#include <linux/of.h>
29#include <linux/of_device.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
Patil, Rachnabb76dc02013-01-24 03:45:06 +000037static const int config_pins[] = {
38 STEPCONFIG_XPP,
39 STEPCONFIG_XNN,
40 STEPCONFIG_YPP,
41 STEPCONFIG_YNN,
42};
43
Patil, Rachna55c04de2012-10-16 12:55:42 +053044struct titsc {
Rachna Patil1b8be322012-03-04 08:11:57 -080045 struct input_dev *input;
Patil, Rachna2b99baf2012-10-16 12:55:44 +053046 struct ti_tscadc_dev *mfd_tscadc;
Rachna Patil1b8be322012-03-04 08:11:57 -080047 unsigned int irq;
48 unsigned int wires;
49 unsigned int x_plate_resistance;
50 bool pen_down;
Patil, Rachna03963102013-01-24 03:45:10 +000051 int coordinate_readouts;
Patil, Rachnabb76dc02013-01-24 03:45:06 +000052 u32 config_inp[4];
53 u32 bit_xp, bit_xn, bit_yp, bit_yn;
54 u32 inp_xp, inp_xn, inp_yp, inp_yn;
Rachna Patil1b8be322012-03-04 08:11:57 -080055};
56
Patil, Rachna55c04de2012-10-16 12:55:42 +053057static unsigned int titsc_readl(struct titsc *ts, unsigned int reg)
Rachna Patil1b8be322012-03-04 08:11:57 -080058{
Patil, Rachna2b99baf2012-10-16 12:55:44 +053059 return readl(ts->mfd_tscadc->tscadc_base + reg);
Rachna Patil1b8be322012-03-04 08:11:57 -080060}
61
Patil, Rachna55c04de2012-10-16 12:55:42 +053062static void titsc_writel(struct titsc *tsc, unsigned int reg,
Rachna Patil1b8be322012-03-04 08:11:57 -080063 unsigned int val)
64{
Patil, Rachna2b99baf2012-10-16 12:55:44 +053065 writel(val, tsc->mfd_tscadc->tscadc_base + reg);
Rachna Patil1b8be322012-03-04 08:11:57 -080066}
67
Patil, Rachnabb76dc02013-01-24 03:45:06 +000068static int titsc_config_wires(struct titsc *ts_dev)
69{
70 u32 analog_line[4];
71 u32 wire_order[4];
72 int i, bit_cfg;
73
74 for (i = 0; i < 4; i++) {
75 /*
76 * Get the order in which TSC wires are attached
77 * w.r.t. each of the analog input lines on the EVM.
78 */
79 analog_line[i] = (ts_dev->config_inp[i] & 0xF0) >> 4;
80 wire_order[i] = ts_dev->config_inp[i] & 0x0F;
81 if (WARN_ON(analog_line[i] > 7))
82 return -EINVAL;
83 if (WARN_ON(wire_order[i] > ARRAY_SIZE(config_pins)))
84 return -EINVAL;
85 }
86
87 for (i = 0; i < 4; i++) {
88 int an_line;
89 int wi_order;
90
91 an_line = analog_line[i];
92 wi_order = wire_order[i];
93 bit_cfg = config_pins[wi_order];
94 if (bit_cfg == 0)
95 return -EINVAL;
96 switch (wi_order) {
97 case 0:
98 ts_dev->bit_xp = bit_cfg;
99 ts_dev->inp_xp = an_line;
100 break;
101
102 case 1:
103 ts_dev->bit_xn = bit_cfg;
104 ts_dev->inp_xn = an_line;
105 break;
106
107 case 2:
108 ts_dev->bit_yp = bit_cfg;
109 ts_dev->inp_yp = an_line;
110 break;
111 case 3:
112 ts_dev->bit_yn = bit_cfg;
113 ts_dev->inp_yn = an_line;
114 break;
115 }
116 }
117 return 0;
118}
119
Patil, Rachna55c04de2012-10-16 12:55:42 +0530120static void titsc_step_config(struct titsc *ts_dev)
Rachna Patil1b8be322012-03-04 08:11:57 -0800121{
122 unsigned int config;
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200123 int i;
124 int end_step;
125 u32 stepenable;
Rachna Patil1b8be322012-03-04 08:11:57 -0800126
127 config = STEPCONFIG_MODE_HWSYNC |
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000128 STEPCONFIG_AVG_16 | ts_dev->bit_xp;
Rachna Patil1b8be322012-03-04 08:11:57 -0800129 switch (ts_dev->wires) {
130 case 4:
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000131 config |= STEPCONFIG_INP(ts_dev->inp_yp) | ts_dev->bit_xn;
Rachna Patil1b8be322012-03-04 08:11:57 -0800132 break;
133 case 5:
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000134 config |= ts_dev->bit_yn |
135 STEPCONFIG_INP_AN4 | ts_dev->bit_xn |
136 ts_dev->bit_yp;
Rachna Patil1b8be322012-03-04 08:11:57 -0800137 break;
138 case 8:
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000139 config |= STEPCONFIG_INP(ts_dev->inp_yp) | ts_dev->bit_xn;
Rachna Patil1b8be322012-03-04 08:11:57 -0800140 break;
141 }
142
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200143 /* 1 … coordinate_readouts is for X */
144 end_step = ts_dev->coordinate_readouts;
145 for (i = 0; i < end_step; i++) {
Patil, Rachna55c04de2012-10-16 12:55:42 +0530146 titsc_writel(ts_dev, REG_STEPCONFIG(i), config);
147 titsc_writel(ts_dev, REG_STEPDELAY(i), STEPCONFIG_OPENDLY);
Rachna Patil1b8be322012-03-04 08:11:57 -0800148 }
149
150 config = 0;
151 config = STEPCONFIG_MODE_HWSYNC |
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000152 STEPCONFIG_AVG_16 | ts_dev->bit_yn |
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200153 STEPCONFIG_INM_ADCREFM;
Rachna Patil1b8be322012-03-04 08:11:57 -0800154 switch (ts_dev->wires) {
155 case 4:
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000156 config |= ts_dev->bit_yp | STEPCONFIG_INP(ts_dev->inp_xp);
Rachna Patil1b8be322012-03-04 08:11:57 -0800157 break;
158 case 5:
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000159 config |= ts_dev->bit_xp | STEPCONFIG_INP_AN4 |
160 ts_dev->bit_xn | ts_dev->bit_yp;
Rachna Patil1b8be322012-03-04 08:11:57 -0800161 break;
162 case 8:
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 }
166
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200167 /* coordinate_readouts … coordinate_readouts * 2 is for Y */
168 end_step = ts_dev->coordinate_readouts * 2;
169 for (i = ts_dev->coordinate_readouts; i < end_step; i++) {
Patil, Rachna55c04de2012-10-16 12:55:42 +0530170 titsc_writel(ts_dev, REG_STEPCONFIG(i), config);
171 titsc_writel(ts_dev, REG_STEPDELAY(i), STEPCONFIG_OPENDLY);
Rachna Patil1b8be322012-03-04 08:11:57 -0800172 }
173
Rachna Patil1b8be322012-03-04 08:11:57 -0800174 /* Charge step configuration */
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000175 config = ts_dev->bit_xp | ts_dev->bit_yn |
Patil, Rachna33f5cc62012-10-16 12:55:38 +0530176 STEPCHARGE_RFP_XPUL | STEPCHARGE_RFM_XNUR |
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000177 STEPCHARGE_INM_AN1 | STEPCHARGE_INP(ts_dev->inp_yp);
Rachna Patil1b8be322012-03-04 08:11:57 -0800178
Patil, Rachna55c04de2012-10-16 12:55:42 +0530179 titsc_writel(ts_dev, REG_CHARGECONFIG, config);
180 titsc_writel(ts_dev, REG_CHARGEDELAY, CHARGEDLY_OPENDLY);
Rachna Patil1b8be322012-03-04 08:11:57 -0800181
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200182 /* coordinate_readouts * 2 … coordinate_readouts * 2 + 2 is for Z */
Rachna Patil1b8be322012-03-04 08:11:57 -0800183 config = STEPCONFIG_MODE_HWSYNC |
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000184 STEPCONFIG_AVG_16 | ts_dev->bit_yp |
185 ts_dev->bit_xn | STEPCONFIG_INM_ADCREFM |
186 STEPCONFIG_INP(ts_dev->inp_xp);
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200187 titsc_writel(ts_dev, REG_STEPCONFIG(end_step), config);
188 titsc_writel(ts_dev, REG_STEPDELAY(end_step),
Patil, Rachnad1fb5742012-10-16 12:55:39 +0530189 STEPCONFIG_OPENDLY);
Rachna Patil1b8be322012-03-04 08:11:57 -0800190
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200191 end_step++;
192 config |= STEPCONFIG_INP(ts_dev->inp_yn);
193 titsc_writel(ts_dev, REG_STEPCONFIG(end_step), config);
194 titsc_writel(ts_dev, REG_STEPDELAY(end_step),
Patil, Rachnad1fb5742012-10-16 12:55:39 +0530195 STEPCONFIG_OPENDLY);
Rachna Patil1b8be322012-03-04 08:11:57 -0800196
Patil, Rachnaabeccee2013-01-24 03:45:05 +0000197 /* The steps1 … end and bit 0 for TS_Charge */
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200198 stepenable = (1 << (end_step + 2)) - 1;
Patil, Rachnaabeccee2013-01-24 03:45:05 +0000199 am335x_tsc_se_set(ts_dev->mfd_tscadc, stepenable);
Rachna Patil1b8be322012-03-04 08:11:57 -0800200}
201
Patil, Rachna55c04de2012-10-16 12:55:42 +0530202static void titsc_read_coordinates(struct titsc *ts_dev,
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200203 u32 *x, u32 *y, u32 *z1, u32 *z2)
Rachna Patil1b8be322012-03-04 08:11:57 -0800204{
Patil, Rachna55c04de2012-10-16 12:55:42 +0530205 unsigned int fifocount = titsc_readl(ts_dev, REG_FIFO0CNT);
Rachna Patil1b8be322012-03-04 08:11:57 -0800206 unsigned int prev_val_x = ~0, prev_val_y = ~0;
207 unsigned int prev_diff_x = ~0, prev_diff_y = ~0;
208 unsigned int read, diff;
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530209 unsigned int i, channel;
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200210 unsigned int creads = ts_dev->coordinate_readouts;
Rachna Patil1b8be322012-03-04 08:11:57 -0800211
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200212 *z1 = *z2 = 0;
213 if (fifocount % (creads * 2 + 2))
214 fifocount -= fifocount % (creads * 2 + 2);
Rachna Patil1b8be322012-03-04 08:11:57 -0800215 /*
216 * Delta filter is used to remove large variations in sampled
217 * values from ADC. The filter tries to predict where the next
218 * coordinate could be. This is done by taking a previous
219 * coordinate and subtracting it form current one. Further the
220 * algorithm compares the difference with that of a present value,
221 * if true the value is reported to the sub system.
222 */
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200223 for (i = 0; i < fifocount; i++) {
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530224 read = titsc_readl(ts_dev, REG_FIFO0);
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200225
226 channel = (read & 0xf0000) >> 16;
227 read &= 0xfff;
228 if (channel < creads) {
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530229 diff = abs(read - prev_val_x);
230 if (diff < prev_diff_x) {
231 prev_diff_x = diff;
232 *x = read;
233 }
234 prev_val_x = read;
Rachna Patil1b8be322012-03-04 08:11:57 -0800235
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200236 } else if (channel < creads * 2) {
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530237 diff = abs(read - prev_val_y);
238 if (diff < prev_diff_y) {
239 prev_diff_y = diff;
240 *y = read;
241 }
242 prev_val_y = read;
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200243
244 } else if (channel < creads * 2 + 1) {
245 *z1 = read;
246
247 } else if (channel < creads * 2 + 2) {
248 *z2 = read;
Rachna Patil1b8be322012-03-04 08:11:57 -0800249 }
Rachna Patil1b8be322012-03-04 08:11:57 -0800250 }
251}
252
Patil, Rachna55c04de2012-10-16 12:55:42 +0530253static irqreturn_t titsc_irq(int irq, void *dev)
Rachna Patil1b8be322012-03-04 08:11:57 -0800254{
Patil, Rachna55c04de2012-10-16 12:55:42 +0530255 struct titsc *ts_dev = dev;
Rachna Patil1b8be322012-03-04 08:11:57 -0800256 struct input_dev *input_dev = ts_dev->input;
257 unsigned int status, irqclr = 0;
258 unsigned int x = 0, y = 0;
259 unsigned int z1, z2, z;
260 unsigned int fsm;
261
Patil, Rachna55c04de2012-10-16 12:55:42 +0530262 status = titsc_readl(ts_dev, REG_IRQSTATUS);
Patil, Rachna30af55f2012-10-16 12:55:40 +0530263 if (status & IRQENB_FIFO0THRES) {
Rachna Patil1b8be322012-03-04 08:11:57 -0800264
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200265 titsc_read_coordinates(ts_dev, &x, &y, &z1, &z2);
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530266
Rachna Patil1b8be322012-03-04 08:11:57 -0800267 if (ts_dev->pen_down && z1 != 0 && z2 != 0) {
268 /*
269 * Calculate pressure using formula
270 * Resistance(touch) = x plate resistance *
271 * x postion/4096 * ((z2 / z1) - 1)
272 */
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200273 z = z1 - z2;
Rachna Patil1b8be322012-03-04 08:11:57 -0800274 z *= x;
275 z *= ts_dev->x_plate_resistance;
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200276 z /= z2;
Rachna Patil1b8be322012-03-04 08:11:57 -0800277 z = (z + 2047) >> 12;
278
279 if (z <= MAX_12BIT) {
280 input_report_abs(input_dev, ABS_X, x);
281 input_report_abs(input_dev, ABS_Y, y);
282 input_report_abs(input_dev, ABS_PRESSURE, z);
283 input_report_key(input_dev, BTN_TOUCH, 1);
284 input_sync(input_dev);
285 }
286 }
Patil, Rachna30af55f2012-10-16 12:55:40 +0530287 irqclr |= IRQENB_FIFO0THRES;
Rachna Patil1b8be322012-03-04 08:11:57 -0800288 }
289
290 /*
291 * Time for sequencer to settle, to read
292 * correct state of the sequencer.
293 */
294 udelay(SEQ_SETTLE);
295
Patil, Rachna55c04de2012-10-16 12:55:42 +0530296 status = titsc_readl(ts_dev, REG_RAWIRQSTATUS);
Rachna Patil1b8be322012-03-04 08:11:57 -0800297 if (status & IRQENB_PENUP) {
298 /* Pen up event */
Patil, Rachna55c04de2012-10-16 12:55:42 +0530299 fsm = titsc_readl(ts_dev, REG_ADCFSM);
Rachna Patil1b8be322012-03-04 08:11:57 -0800300 if (fsm == ADCFSM_STEPID) {
301 ts_dev->pen_down = false;
302 input_report_key(input_dev, BTN_TOUCH, 0);
303 input_report_abs(input_dev, ABS_PRESSURE, 0);
304 input_sync(input_dev);
305 } else {
306 ts_dev->pen_down = true;
307 }
308 irqclr |= IRQENB_PENUP;
309 }
310
Sebastian Andrzej Siewior00789e52013-06-05 16:23:18 +0200311 if (status & IRQENB_HW_PEN) {
Rachna Patil1b8be322012-03-04 08:11:57 -0800312
Sebastian Andrzej Siewior00789e52013-06-05 16:23:18 +0200313 titsc_writel(ts_dev, REG_IRQWAKEUP, 0x00);
314 titsc_writel(ts_dev, REG_IRQCLR, IRQENB_HW_PEN);
315 }
316
Sebastian Andrzej Siewior9a28b882013-06-05 16:30:00 +0200317 if (irqclr) {
318 titsc_writel(ts_dev, REG_IRQSTATUS, irqclr);
319 am335x_tsc_se_update(ts_dev->mfd_tscadc);
320 return IRQ_HANDLED;
321 }
322 return IRQ_NONE;
Rachna Patil1b8be322012-03-04 08:11:57 -0800323}
324
Patil, Rachna03963102013-01-24 03:45:10 +0000325static int titsc_parse_dt(struct platform_device *pdev,
326 struct titsc *ts_dev)
327{
328 struct device_node *node = pdev->dev.of_node;
329 int err;
330
331 if (!node)
332 return -EINVAL;
333
334 err = of_property_read_u32(node, "ti,wires", &ts_dev->wires);
335 if (err < 0)
336 return err;
337 switch (ts_dev->wires) {
338 case 4:
339 case 5:
340 case 8:
341 break;
342 default:
343 return -EINVAL;
344 }
345
346 err = of_property_read_u32(node, "ti,x-plate-resistance",
347 &ts_dev->x_plate_resistance);
348 if (err < 0)
349 return err;
350
351 err = of_property_read_u32(node, "ti,coordiante-readouts",
352 &ts_dev->coordinate_readouts);
353 if (err < 0)
354 return err;
355
356 return of_property_read_u32_array(node, "ti,wire-config",
357 ts_dev->config_inp, ARRAY_SIZE(ts_dev->config_inp));
Rachna Patil1b8be322012-03-04 08:11:57 -0800358}
359
360/*
361 * The functions for inserting/removing driver as a module.
362 */
363
Linus Torvalds31564cb2012-12-18 12:46:37 -0800364static int titsc_probe(struct platform_device *pdev)
Rachna Patil1b8be322012-03-04 08:11:57 -0800365{
Patil, Rachna55c04de2012-10-16 12:55:42 +0530366 struct titsc *ts_dev;
Rachna Patil1b8be322012-03-04 08:11:57 -0800367 struct input_dev *input_dev;
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200368 struct ti_tscadc_dev *tscadc_dev = ti_tscadc_dev_get(pdev);
Rachna Patil1b8be322012-03-04 08:11:57 -0800369 int err;
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530370
Rachna Patil1b8be322012-03-04 08:11:57 -0800371 /* Allocate memory for device */
Patil, Rachna55c04de2012-10-16 12:55:42 +0530372 ts_dev = kzalloc(sizeof(struct titsc), GFP_KERNEL);
Rachna Patil1b8be322012-03-04 08:11:57 -0800373 input_dev = input_allocate_device();
374 if (!ts_dev || !input_dev) {
375 dev_err(&pdev->dev, "failed to allocate memory.\n");
376 err = -ENOMEM;
377 goto err_free_mem;
378 }
379
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530380 tscadc_dev->tsc = ts_dev;
381 ts_dev->mfd_tscadc = tscadc_dev;
Rachna Patil1b8be322012-03-04 08:11:57 -0800382 ts_dev->input = input_dev;
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530383 ts_dev->irq = tscadc_dev->irq;
Patil, Rachna03963102013-01-24 03:45:10 +0000384
Sebastian Andrzej Siewiorb9194fd2013-05-21 17:39:13 +0200385 err = titsc_parse_dt(pdev, ts_dev);
Patil, Rachna03963102013-01-24 03:45:10 +0000386 if (err) {
387 dev_err(&pdev->dev, "Could not find valid DT data.\n");
388 goto err_free_mem;
389 }
Rachna Patil1b8be322012-03-04 08:11:57 -0800390
Patil, Rachna55c04de2012-10-16 12:55:42 +0530391 err = request_irq(ts_dev->irq, titsc_irq,
Rachna Patil1b8be322012-03-04 08:11:57 -0800392 0, pdev->dev.driver->name, ts_dev);
393 if (err) {
394 dev_err(&pdev->dev, "failed to allocate irq.\n");
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530395 goto err_free_mem;
Rachna Patil1b8be322012-03-04 08:11:57 -0800396 }
397
Patil, Rachna55c04de2012-10-16 12:55:42 +0530398 titsc_writel(ts_dev, REG_IRQENABLE, IRQENB_FIFO0THRES);
Patil, Rachnabb76dc02013-01-24 03:45:06 +0000399 err = titsc_config_wires(ts_dev);
400 if (err) {
401 dev_err(&pdev->dev, "wrong i/p wire configuration\n");
402 goto err_free_irq;
403 }
Patil, Rachna55c04de2012-10-16 12:55:42 +0530404 titsc_step_config(ts_dev);
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200405 titsc_writel(ts_dev, REG_FIFO0THR,
406 ts_dev->coordinate_readouts * 2 + 2 - 1);
Rachna Patil1b8be322012-03-04 08:11:57 -0800407
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530408 input_dev->name = "ti-tsc";
Rachna Patil1b8be322012-03-04 08:11:57 -0800409 input_dev->dev.parent = &pdev->dev;
410
411 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
412 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
413
414 input_set_abs_params(input_dev, ABS_X, 0, MAX_12BIT, 0, 0);
415 input_set_abs_params(input_dev, ABS_Y, 0, MAX_12BIT, 0, 0);
416 input_set_abs_params(input_dev, ABS_PRESSURE, 0, MAX_12BIT, 0, 0);
417
418 /* register to the input system */
419 err = input_register_device(input_dev);
420 if (err)
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530421 goto err_free_irq;
Rachna Patil1b8be322012-03-04 08:11:57 -0800422
423 platform_set_drvdata(pdev, ts_dev);
424 return 0;
425
Rachna Patil1b8be322012-03-04 08:11:57 -0800426err_free_irq:
427 free_irq(ts_dev->irq, ts_dev);
Rachna Patil1b8be322012-03-04 08:11:57 -0800428err_free_mem:
429 input_free_device(input_dev);
430 kfree(ts_dev);
431 return err;
432}
433
Linus Torvalds31564cb2012-12-18 12:46:37 -0800434static int titsc_remove(struct platform_device *pdev)
Rachna Patil1b8be322012-03-04 08:11:57 -0800435{
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200436 struct titsc *ts_dev = platform_get_drvdata(pdev);
437 u32 steps;
Rachna Patil1b8be322012-03-04 08:11:57 -0800438
439 free_irq(ts_dev->irq, ts_dev);
440
Patil, Rachnaabeccee2013-01-24 03:45:05 +0000441 /* total steps followed by the enable mask */
Patil, Rachna03963102013-01-24 03:45:10 +0000442 steps = 2 * ts_dev->coordinate_readouts + 2;
Patil, Rachnaabeccee2013-01-24 03:45:05 +0000443 steps = (1 << steps) - 1;
444 am335x_tsc_se_clr(ts_dev->mfd_tscadc, steps);
445
Rachna Patil1b8be322012-03-04 08:11:57 -0800446 input_unregister_device(ts_dev->input);
447
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530448 kfree(ts_dev);
Rachna Patil1b8be322012-03-04 08:11:57 -0800449 return 0;
450}
451
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530452#ifdef CONFIG_PM
453static int titsc_suspend(struct device *dev)
454{
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200455 struct titsc *ts_dev = dev_get_drvdata(dev);
456 struct ti_tscadc_dev *tscadc_dev;
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530457 unsigned int idle;
458
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200459 tscadc_dev = ti_tscadc_dev_get(to_platform_device(dev));
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530460 if (device_may_wakeup(tscadc_dev->dev)) {
461 idle = titsc_readl(ts_dev, REG_IRQENABLE);
462 titsc_writel(ts_dev, REG_IRQENABLE,
463 (idle | IRQENB_HW_PEN));
464 titsc_writel(ts_dev, REG_IRQWAKEUP, IRQWKUP_ENB);
465 }
466 return 0;
467}
468
469static int titsc_resume(struct device *dev)
470{
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200471 struct titsc *ts_dev = dev_get_drvdata(dev);
472 struct ti_tscadc_dev *tscadc_dev;
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530473
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200474 tscadc_dev = ti_tscadc_dev_get(to_platform_device(dev));
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530475 if (device_may_wakeup(tscadc_dev->dev)) {
476 titsc_writel(ts_dev, REG_IRQWAKEUP,
477 0x00);
478 titsc_writel(ts_dev, REG_IRQCLR, IRQENB_HW_PEN);
479 }
480 titsc_step_config(ts_dev);
481 titsc_writel(ts_dev, REG_FIFO0THR,
Sebastian Andrzej Siewior8c896302013-05-29 14:46:21 +0200482 ts_dev->coordinate_readouts * 2 + 2 - 1);
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530483 return 0;
484}
485
486static const struct dev_pm_ops titsc_pm_ops = {
487 .suspend = titsc_suspend,
488 .resume = titsc_resume,
489};
490#define TITSC_PM_OPS (&titsc_pm_ops)
491#else
492#define TITSC_PM_OPS NULL
493#endif
494
Patil, Rachna03963102013-01-24 03:45:10 +0000495static const struct of_device_id ti_tsc_dt_ids[] = {
496 { .compatible = "ti,am3359-tsc", },
497 { }
498};
499MODULE_DEVICE_TABLE(of, ti_tsc_dt_ids);
500
Rachna Patil1b8be322012-03-04 08:11:57 -0800501static struct platform_driver ti_tsc_driver = {
Patil, Rachna55c04de2012-10-16 12:55:42 +0530502 .probe = titsc_probe,
Linus Torvalds31564cb2012-12-18 12:46:37 -0800503 .remove = titsc_remove,
Rachna Patil1b8be322012-03-04 08:11:57 -0800504 .driver = {
Sebastian Andrzej Siewior5f184e62013-05-27 17:08:28 +0200505 .name = "TI-am335x-tsc",
Rachna Patil1b8be322012-03-04 08:11:57 -0800506 .owner = THIS_MODULE,
Patil, Rachna2b99baf2012-10-16 12:55:44 +0530507 .pm = TITSC_PM_OPS,
Patil, Rachna03963102013-01-24 03:45:10 +0000508 .of_match_table = of_match_ptr(ti_tsc_dt_ids),
Rachna Patil1b8be322012-03-04 08:11:57 -0800509 },
510};
511module_platform_driver(ti_tsc_driver);
512
513MODULE_DESCRIPTION("TI touchscreen controller driver");
514MODULE_AUTHOR("Rachna Patil <rachna@ti.com>");
515MODULE_LICENSE("GPL");