Linux Audio

Check our new training course

Loading...
v6.8
  1/*
  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/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>
 26#include <linux/delay.h>
 27#include <linux/of.h>
 
 28#include <linux/sort.h>
 29#include <linux/pm_wakeirq.h>
 30
 31#include <linux/mfd/ti_am335x_tscadc.h>
 32
 33#define ADCFSM_STEPID		0x10
 34#define SEQ_SETTLE		275
 35#define MAX_12BIT		((1 << 12) - 1)
 36
 37#define TSC_IRQENB_MASK		(IRQENB_FIFO0THRES | IRQENB_EOS | IRQENB_HW_PEN)
 38
 39static const int config_pins[] = {
 40	STEPCONFIG_XPP,
 41	STEPCONFIG_XNN,
 42	STEPCONFIG_YPP,
 43	STEPCONFIG_YNN,
 44};
 45
 46struct titsc {
 47	struct input_dev	*input;
 48	struct ti_tscadc_dev	*mfd_tscadc;
 49	struct device		*dev;
 50	unsigned int		irq;
 51	unsigned int		wires;
 52	unsigned int		x_plate_resistance;
 53	bool			pen_down;
 54	int			coordinate_readouts;
 55	u32			config_inp[4];
 56	u32			bit_xp, bit_xn, bit_yp, bit_yn;
 57	u32			inp_xp, inp_xn, inp_yp, inp_yn;
 58	u32			step_mask;
 59	u32			charge_delay;
 60};
 61
 62static unsigned int titsc_readl(struct titsc *ts, unsigned int reg)
 63{
 64	return readl(ts->mfd_tscadc->tscadc_base + reg);
 65}
 66
 67static void titsc_writel(struct titsc *tsc, unsigned int reg,
 68					unsigned int val)
 69{
 70	writel(val, tsc->mfd_tscadc->tscadc_base + reg);
 71}
 72
 73static 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
125static void titsc_step_config(struct titsc *ts_dev)
126{
127	unsigned int	config;
128	int i, n;
129	int end_step, first_step, tsc_steps;
130	u32 stepenable;
131
132	config = STEPCONFIG_MODE_HWSYNC |
133			STEPCONFIG_AVG_16 | ts_dev->bit_xp |
134			STEPCONFIG_INM_ADCREFM;
135	switch (ts_dev->wires) {
136	case 4:
137		config |= STEPCONFIG_INP(ts_dev->inp_yp) | ts_dev->bit_xn;
138		break;
139	case 5:
140		config |= ts_dev->bit_yn |
141				STEPCONFIG_INP_AN4 | ts_dev->bit_xn |
142				ts_dev->bit_yp;
143		break;
144	case 8:
145		config |= STEPCONFIG_INP(ts_dev->inp_yp) | ts_dev->bit_xn;
146		break;
147	}
148
149	tsc_steps = ts_dev->coordinate_readouts * 2 + 2;
150	first_step = TOTAL_STEPS - tsc_steps;
151	/* Steps 16 to 16-coordinate_readouts is for X */
152	end_step = first_step + tsc_steps;
153	n = 0;
154	for (i = end_step - ts_dev->coordinate_readouts; i < end_step; i++) {
155		titsc_writel(ts_dev, REG_STEPCONFIG(i), config);
156		titsc_writel(ts_dev, REG_STEPDELAY(i),
157			     n++ == 0 ? STEPCONFIG_OPENDLY : 0);
158	}
159
160	config = 0;
161	config = STEPCONFIG_MODE_HWSYNC |
162			STEPCONFIG_AVG_16 | ts_dev->bit_yn |
163			STEPCONFIG_INM_ADCREFM;
164	switch (ts_dev->wires) {
165	case 4:
166		config |= ts_dev->bit_yp | STEPCONFIG_INP(ts_dev->inp_xp);
167		break;
168	case 5:
169		config |= ts_dev->bit_xp | STEPCONFIG_INP_AN4 |
170				STEPCONFIG_XNP | STEPCONFIG_YPN;
171		break;
172	case 8:
173		config |= ts_dev->bit_yp | STEPCONFIG_INP(ts_dev->inp_xp);
174		break;
175	}
176
177	/* 1 ... coordinate_readouts is for Y */
178	end_step = first_step + ts_dev->coordinate_readouts;
179	n = 0;
180	for (i = first_step; i < end_step; i++) {
181		titsc_writel(ts_dev, REG_STEPCONFIG(i), config);
182		titsc_writel(ts_dev, REG_STEPDELAY(i),
183			     n++ == 0 ? STEPCONFIG_OPENDLY : 0);
184	}
185
186	/* Make CHARGECONFIG same as IDLECONFIG */
187
188	config = titsc_readl(ts_dev, REG_IDLECONFIG);
189	titsc_writel(ts_dev, REG_CHARGECONFIG, config);
190	titsc_writel(ts_dev, REG_CHARGEDELAY, ts_dev->charge_delay);
191
192	/* coordinate_readouts + 1 ... coordinate_readouts + 2 is for Z */
193	config = STEPCONFIG_MODE_HWSYNC |
194			STEPCONFIG_AVG_16 | ts_dev->bit_yp |
195			ts_dev->bit_xn | STEPCONFIG_INM_ADCREFM |
196			STEPCONFIG_INP(ts_dev->inp_xp);
197	titsc_writel(ts_dev, REG_STEPCONFIG(end_step), config);
198	titsc_writel(ts_dev, REG_STEPDELAY(end_step),
199			STEPCONFIG_OPENDLY);
200
201	end_step++;
202	config = STEPCONFIG_MODE_HWSYNC |
203			STEPCONFIG_AVG_16 | ts_dev->bit_yp |
204			ts_dev->bit_xn | STEPCONFIG_INM_ADCREFM |
205			STEPCONFIG_INP(ts_dev->inp_yn);
206	titsc_writel(ts_dev, REG_STEPCONFIG(end_step), config);
207	titsc_writel(ts_dev, REG_STEPDELAY(end_step),
208			STEPCONFIG_OPENDLY);
209
210	/* The steps end ... end - readouts * 2 + 2 and bit 0 for TS_Charge */
211	stepenable = 1;
212	for (i = 0; i < tsc_steps; i++)
213		stepenable |= 1 << (first_step + i + 1);
214
215	ts_dev->step_mask = stepenable;
216	am335x_tsc_se_set_cache(ts_dev->mfd_tscadc, ts_dev->step_mask);
217}
218
219static int titsc_cmp_coord(const void *a, const void *b)
220{
221	return *(int *)a - *(int *)b;
222}
223
224static void titsc_read_coordinates(struct titsc *ts_dev,
225		u32 *x, u32 *y, u32 *z1, u32 *z2)
226{
227	unsigned int yvals[7], xvals[7];
228	unsigned int i, xsum = 0, ysum = 0;
229	unsigned int creads = ts_dev->coordinate_readouts;
230
231	for (i = 0; i < creads; i++) {
232		yvals[i] = titsc_readl(ts_dev, REG_FIFO0);
233		yvals[i] &= 0xfff;
234	}
235
236	*z1 = titsc_readl(ts_dev, REG_FIFO0);
237	*z1 &= 0xfff;
238	*z2 = titsc_readl(ts_dev, REG_FIFO0);
239	*z2 &= 0xfff;
240
241	for (i = 0; i < creads; i++) {
242		xvals[i] = titsc_readl(ts_dev, REG_FIFO0);
243		xvals[i] &= 0xfff;
244	}
245
246	/*
247	 * If co-ordinates readouts is less than 4 then
248	 * report the average. In case of 4 or more
249	 * readouts, sort the co-ordinate samples, drop
250	 * min and max values and report the average of
251	 * remaining values.
252	 */
253	if (creads <=  3) {
254		for (i = 0; i < creads; i++) {
255			ysum += yvals[i];
256			xsum += xvals[i];
257		}
258		ysum /= creads;
259		xsum /= creads;
260	} else {
261		sort(yvals, creads, sizeof(unsigned int),
262		     titsc_cmp_coord, NULL);
263		sort(xvals, creads, sizeof(unsigned int),
264		     titsc_cmp_coord, NULL);
265		for (i = 1; i < creads - 1; i++) {
266			ysum += yvals[i];
267			xsum += xvals[i];
268		}
269		ysum /= creads - 2;
270		xsum /= creads - 2;
271	}
272	*y = ysum;
273	*x = xsum;
274}
275
276static irqreturn_t titsc_irq(int irq, void *dev)
277{
278	struct titsc *ts_dev = dev;
279	struct input_dev *input_dev = ts_dev->input;
280	unsigned int fsm, status, irqclr = 0;
281	unsigned int x = 0, y = 0;
282	unsigned int z1, z2, z;
283
284	status = titsc_readl(ts_dev, REG_RAWIRQSTATUS);
285	if (status & IRQENB_HW_PEN) {
286		ts_dev->pen_down = true;
287		irqclr |= IRQENB_HW_PEN;
288		pm_stay_awake(ts_dev->dev);
289	}
290
291	if (status & IRQENB_PENUP) {
292		fsm = titsc_readl(ts_dev, REG_ADCFSM);
293		if (fsm == ADCFSM_STEPID) {
294			ts_dev->pen_down = false;
295			input_report_key(input_dev, BTN_TOUCH, 0);
296			input_report_abs(input_dev, ABS_PRESSURE, 0);
297			input_sync(input_dev);
298			pm_relax(ts_dev->dev);
299		} else {
300			ts_dev->pen_down = true;
301		}
302		irqclr |= IRQENB_PENUP;
303	}
304
305	if (status & IRQENB_EOS)
306		irqclr |= IRQENB_EOS;
307
308	/*
309	 * ADC and touchscreen share the IRQ line.
310	 * FIFO1 interrupts are used by ADC. Handle FIFO0 IRQs here only
311	 */
312	if (status & IRQENB_FIFO0THRES) {
313
314		titsc_read_coordinates(ts_dev, &x, &y, &z1, &z2);
315
316		if (ts_dev->pen_down && z1 != 0 && z2 != 0) {
317			/*
318			 * Calculate pressure using formula
319			 * Resistance(touch) = x plate resistance *
320			 * x position/4096 * ((z2 / z1) - 1)
321			 */
322			z = z1 - z2;
323			z *= x;
324			z *= ts_dev->x_plate_resistance;
325			z /= z2;
326			z = (z + 2047) >> 12;
327
328			if (z <= MAX_12BIT) {
329				input_report_abs(input_dev, ABS_X, x);
330				input_report_abs(input_dev, ABS_Y, y);
331				input_report_abs(input_dev, ABS_PRESSURE, z);
332				input_report_key(input_dev, BTN_TOUCH, 1);
333				input_sync(input_dev);
334			}
335		}
336		irqclr |= IRQENB_FIFO0THRES;
337	}
338	if (irqclr) {
339		titsc_writel(ts_dev, REG_IRQSTATUS, irqclr);
340		if (status & IRQENB_EOS)
341			am335x_tsc_se_set_cache(ts_dev->mfd_tscadc,
342						ts_dev->step_mask);
343		return IRQ_HANDLED;
344	}
345	return IRQ_NONE;
346}
347
348static int titsc_parse_dt(struct platform_device *pdev,
349					struct titsc *ts_dev)
350{
351	struct device_node *node = pdev->dev.of_node;
352	int err;
353
354	if (!node)
355		return -EINVAL;
356
357	err = of_property_read_u32(node, "ti,wires", &ts_dev->wires);
358	if (err < 0)
359		return err;
360	switch (ts_dev->wires) {
361	case 4:
362	case 5:
363	case 8:
364		break;
365	default:
366		return -EINVAL;
367	}
368
369	err = of_property_read_u32(node, "ti,x-plate-resistance",
370			&ts_dev->x_plate_resistance);
371	if (err < 0)
372		return err;
373
374	/*
375	 * Try with the new binding first. If it fails, try again with
376	 * bogus, miss-spelled version.
377	 */
378	err = of_property_read_u32(node, "ti,coordinate-readouts",
379			&ts_dev->coordinate_readouts);
380	if (err < 0) {
381		dev_warn(&pdev->dev, "please use 'ti,coordinate-readouts' instead\n");
382		err = of_property_read_u32(node, "ti,coordiante-readouts",
383				&ts_dev->coordinate_readouts);
384	}
385
386	if (err < 0)
387		return err;
388
389	if (ts_dev->coordinate_readouts <= 0) {
390		dev_warn(&pdev->dev,
391			 "invalid co-ordinate readouts, resetting it to 5\n");
392		ts_dev->coordinate_readouts = 5;
393	}
394
395	err = of_property_read_u32(node, "ti,charge-delay",
396				   &ts_dev->charge_delay);
397	/*
398	 * If ti,charge-delay value is not specified, then use
399	 * CHARGEDLY_OPENDLY as the default value.
400	 */
401	if (err < 0) {
402		ts_dev->charge_delay = CHARGEDLY_OPENDLY;
403		dev_warn(&pdev->dev, "ti,charge-delay not specified\n");
404	}
405
406	return of_property_read_u32_array(node, "ti,wire-config",
407			ts_dev->config_inp, ARRAY_SIZE(ts_dev->config_inp));
408}
409
410/*
411 * The functions for inserting/removing driver as a module.
412 */
413
414static int titsc_probe(struct platform_device *pdev)
415{
416	struct titsc *ts_dev;
417	struct input_dev *input_dev;
418	struct ti_tscadc_dev *tscadc_dev = ti_tscadc_dev_get(pdev);
419	int err;
420
421	/* Allocate memory for device */
422	ts_dev = kzalloc(sizeof(*ts_dev), GFP_KERNEL);
423	input_dev = input_allocate_device();
424	if (!ts_dev || !input_dev) {
425		dev_err(&pdev->dev, "failed to allocate memory.\n");
426		err = -ENOMEM;
427		goto err_free_mem;
428	}
429
430	tscadc_dev->tsc = ts_dev;
431	ts_dev->mfd_tscadc = tscadc_dev;
432	ts_dev->input = input_dev;
433	ts_dev->irq = tscadc_dev->irq;
434	ts_dev->dev = &pdev->dev;
435
436	err = titsc_parse_dt(pdev, ts_dev);
437	if (err) {
438		dev_err(&pdev->dev, "Could not find valid DT data.\n");
439		goto err_free_mem;
440	}
441
442	err = request_irq(ts_dev->irq, titsc_irq,
443			  IRQF_SHARED, pdev->dev.driver->name, ts_dev);
444	if (err) {
445		dev_err(&pdev->dev, "failed to allocate irq.\n");
446		goto err_free_mem;
447	}
448
449	device_init_wakeup(&pdev->dev, true);
450	err = dev_pm_set_wake_irq(&pdev->dev, ts_dev->irq);
451	if (err)
452		dev_err(&pdev->dev, "irq wake enable failed.\n");
453
454	titsc_writel(ts_dev, REG_IRQSTATUS, TSC_IRQENB_MASK);
455	titsc_writel(ts_dev, REG_IRQENABLE, IRQENB_FIFO0THRES);
456	titsc_writel(ts_dev, REG_IRQENABLE, IRQENB_EOS);
457	err = titsc_config_wires(ts_dev);
458	if (err) {
459		dev_err(&pdev->dev, "wrong i/p wire configuration\n");
460		goto err_free_irq;
461	}
462	titsc_step_config(ts_dev);
463	titsc_writel(ts_dev, REG_FIFO0THR,
464			ts_dev->coordinate_readouts * 2 + 2 - 1);
465
466	input_dev->name = "ti-tsc";
467	input_dev->dev.parent = &pdev->dev;
468
469	input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
470	input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
471
472	input_set_abs_params(input_dev, ABS_X, 0, MAX_12BIT, 0, 0);
473	input_set_abs_params(input_dev, ABS_Y, 0, MAX_12BIT, 0, 0);
474	input_set_abs_params(input_dev, ABS_PRESSURE, 0, MAX_12BIT, 0, 0);
475
476	/* register to the input system */
477	err = input_register_device(input_dev);
478	if (err)
479		goto err_free_irq;
480
481	platform_set_drvdata(pdev, ts_dev);
482	return 0;
483
484err_free_irq:
485	dev_pm_clear_wake_irq(&pdev->dev);
486	device_init_wakeup(&pdev->dev, false);
487	free_irq(ts_dev->irq, ts_dev);
488err_free_mem:
489	input_free_device(input_dev);
490	kfree(ts_dev);
491	return err;
492}
493
494static void titsc_remove(struct platform_device *pdev)
495{
496	struct titsc *ts_dev = platform_get_drvdata(pdev);
497	u32 steps;
498
499	dev_pm_clear_wake_irq(&pdev->dev);
500	device_init_wakeup(&pdev->dev, false);
501	free_irq(ts_dev->irq, ts_dev);
502
503	/* total steps followed by the enable mask */
504	steps = 2 * ts_dev->coordinate_readouts + 2;
505	steps = (1 << steps) - 1;
506	am335x_tsc_se_clr(ts_dev->mfd_tscadc, steps);
507
508	input_unregister_device(ts_dev->input);
509
510	kfree(ts_dev);
 
511}
512
513static int titsc_suspend(struct device *dev)
514{
515	struct titsc *ts_dev = dev_get_drvdata(dev);
516	unsigned int idle;
517
518	if (device_may_wakeup(dev)) {
519		titsc_writel(ts_dev, REG_IRQSTATUS, TSC_IRQENB_MASK);
520		idle = titsc_readl(ts_dev, REG_IRQENABLE);
521		titsc_writel(ts_dev, REG_IRQENABLE,
522				(idle | IRQENB_HW_PEN));
523		titsc_writel(ts_dev, REG_IRQWAKEUP, IRQWKUP_ENB);
524	}
525	return 0;
526}
527
528static int titsc_resume(struct device *dev)
529{
530	struct titsc *ts_dev = dev_get_drvdata(dev);
531
532	if (device_may_wakeup(dev)) {
533		titsc_writel(ts_dev, REG_IRQWAKEUP,
534				0x00);
535		titsc_writel(ts_dev, REG_IRQCLR, IRQENB_HW_PEN);
536		pm_relax(dev);
537	}
538	titsc_step_config(ts_dev);
539	titsc_writel(ts_dev, REG_FIFO0THR,
540			ts_dev->coordinate_readouts * 2 + 2 - 1);
541	return 0;
542}
543
544static DEFINE_SIMPLE_DEV_PM_OPS(titsc_pm_ops, titsc_suspend, titsc_resume);
545
546static const struct of_device_id ti_tsc_dt_ids[] = {
547	{ .compatible = "ti,am3359-tsc", },
548	{ }
549};
550MODULE_DEVICE_TABLE(of, ti_tsc_dt_ids);
551
552static struct platform_driver ti_tsc_driver = {
553	.probe	= titsc_probe,
554	.remove_new = titsc_remove,
555	.driver	= {
556		.name   = "TI-am335x-tsc",
557		.pm	= pm_sleep_ptr(&titsc_pm_ops),
558		.of_match_table = ti_tsc_dt_ids,
559	},
560};
561module_platform_driver(ti_tsc_driver);
562
563MODULE_DESCRIPTION("TI touchscreen controller driver");
564MODULE_AUTHOR("Rachna Patil <rachna@ti.com>");
565MODULE_LICENSE("GPL");
v6.2
  1/*
  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/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>
 26#include <linux/delay.h>
 27#include <linux/of.h>
 28#include <linux/of_device.h>
 29#include <linux/sort.h>
 30#include <linux/pm_wakeirq.h>
 31
 32#include <linux/mfd/ti_am335x_tscadc.h>
 33
 34#define ADCFSM_STEPID		0x10
 35#define SEQ_SETTLE		275
 36#define MAX_12BIT		((1 << 12) - 1)
 37
 38#define TSC_IRQENB_MASK		(IRQENB_FIFO0THRES | IRQENB_EOS | IRQENB_HW_PEN)
 39
 40static const int config_pins[] = {
 41	STEPCONFIG_XPP,
 42	STEPCONFIG_XNN,
 43	STEPCONFIG_YPP,
 44	STEPCONFIG_YNN,
 45};
 46
 47struct titsc {
 48	struct input_dev	*input;
 49	struct ti_tscadc_dev	*mfd_tscadc;
 50	struct device		*dev;
 51	unsigned int		irq;
 52	unsigned int		wires;
 53	unsigned int		x_plate_resistance;
 54	bool			pen_down;
 55	int			coordinate_readouts;
 56	u32			config_inp[4];
 57	u32			bit_xp, bit_xn, bit_yp, bit_yn;
 58	u32			inp_xp, inp_xn, inp_yp, inp_yn;
 59	u32			step_mask;
 60	u32			charge_delay;
 61};
 62
 63static unsigned int titsc_readl(struct titsc *ts, unsigned int reg)
 64{
 65	return readl(ts->mfd_tscadc->tscadc_base + reg);
 66}
 67
 68static void titsc_writel(struct titsc *tsc, unsigned int reg,
 69					unsigned int val)
 70{
 71	writel(val, tsc->mfd_tscadc->tscadc_base + reg);
 72}
 73
 74static int titsc_config_wires(struct titsc *ts_dev)
 75{
 76	u32 analog_line[4];
 77	u32 wire_order[4];
 78	int i, bit_cfg;
 79
 80	for (i = 0; i < 4; i++) {
 81		/*
 82		 * Get the order in which TSC wires are attached
 83		 * w.r.t. each of the analog input lines on the EVM.
 84		 */
 85		analog_line[i] = (ts_dev->config_inp[i] & 0xF0) >> 4;
 86		wire_order[i] = ts_dev->config_inp[i] & 0x0F;
 87		if (WARN_ON(analog_line[i] > 7))
 88			return -EINVAL;
 89		if (WARN_ON(wire_order[i] > ARRAY_SIZE(config_pins)))
 90			return -EINVAL;
 91	}
 92
 93	for (i = 0; i < 4; i++) {
 94		int an_line;
 95		int wi_order;
 96
 97		an_line = analog_line[i];
 98		wi_order = wire_order[i];
 99		bit_cfg = config_pins[wi_order];
100		if (bit_cfg == 0)
101			return -EINVAL;
102		switch (wi_order) {
103		case 0:
104			ts_dev->bit_xp = bit_cfg;
105			ts_dev->inp_xp = an_line;
106			break;
107
108		case 1:
109			ts_dev->bit_xn = bit_cfg;
110			ts_dev->inp_xn = an_line;
111			break;
112
113		case 2:
114			ts_dev->bit_yp = bit_cfg;
115			ts_dev->inp_yp = an_line;
116			break;
117		case 3:
118			ts_dev->bit_yn = bit_cfg;
119			ts_dev->inp_yn = an_line;
120			break;
121		}
122	}
123	return 0;
124}
125
126static void titsc_step_config(struct titsc *ts_dev)
127{
128	unsigned int	config;
129	int i, n;
130	int end_step, first_step, tsc_steps;
131	u32 stepenable;
132
133	config = STEPCONFIG_MODE_HWSYNC |
134			STEPCONFIG_AVG_16 | ts_dev->bit_xp |
135			STEPCONFIG_INM_ADCREFM;
136	switch (ts_dev->wires) {
137	case 4:
138		config |= STEPCONFIG_INP(ts_dev->inp_yp) | ts_dev->bit_xn;
139		break;
140	case 5:
141		config |= ts_dev->bit_yn |
142				STEPCONFIG_INP_AN4 | ts_dev->bit_xn |
143				ts_dev->bit_yp;
144		break;
145	case 8:
146		config |= STEPCONFIG_INP(ts_dev->inp_yp) | ts_dev->bit_xn;
147		break;
148	}
149
150	tsc_steps = ts_dev->coordinate_readouts * 2 + 2;
151	first_step = TOTAL_STEPS - tsc_steps;
152	/* Steps 16 to 16-coordinate_readouts is for X */
153	end_step = first_step + tsc_steps;
154	n = 0;
155	for (i = end_step - ts_dev->coordinate_readouts; i < end_step; i++) {
156		titsc_writel(ts_dev, REG_STEPCONFIG(i), config);
157		titsc_writel(ts_dev, REG_STEPDELAY(i),
158			     n++ == 0 ? STEPCONFIG_OPENDLY : 0);
159	}
160
161	config = 0;
162	config = STEPCONFIG_MODE_HWSYNC |
163			STEPCONFIG_AVG_16 | ts_dev->bit_yn |
164			STEPCONFIG_INM_ADCREFM;
165	switch (ts_dev->wires) {
166	case 4:
167		config |= ts_dev->bit_yp | STEPCONFIG_INP(ts_dev->inp_xp);
168		break;
169	case 5:
170		config |= ts_dev->bit_xp | STEPCONFIG_INP_AN4 |
171				STEPCONFIG_XNP | STEPCONFIG_YPN;
172		break;
173	case 8:
174		config |= ts_dev->bit_yp | STEPCONFIG_INP(ts_dev->inp_xp);
175		break;
176	}
177
178	/* 1 ... coordinate_readouts is for Y */
179	end_step = first_step + ts_dev->coordinate_readouts;
180	n = 0;
181	for (i = first_step; i < end_step; i++) {
182		titsc_writel(ts_dev, REG_STEPCONFIG(i), config);
183		titsc_writel(ts_dev, REG_STEPDELAY(i),
184			     n++ == 0 ? STEPCONFIG_OPENDLY : 0);
185	}
186
187	/* Make CHARGECONFIG same as IDLECONFIG */
188
189	config = titsc_readl(ts_dev, REG_IDLECONFIG);
190	titsc_writel(ts_dev, REG_CHARGECONFIG, config);
191	titsc_writel(ts_dev, REG_CHARGEDELAY, ts_dev->charge_delay);
192
193	/* coordinate_readouts + 1 ... coordinate_readouts + 2 is for Z */
194	config = STEPCONFIG_MODE_HWSYNC |
195			STEPCONFIG_AVG_16 | ts_dev->bit_yp |
196			ts_dev->bit_xn | STEPCONFIG_INM_ADCREFM |
197			STEPCONFIG_INP(ts_dev->inp_xp);
198	titsc_writel(ts_dev, REG_STEPCONFIG(end_step), config);
199	titsc_writel(ts_dev, REG_STEPDELAY(end_step),
200			STEPCONFIG_OPENDLY);
201
202	end_step++;
203	config = STEPCONFIG_MODE_HWSYNC |
204			STEPCONFIG_AVG_16 | ts_dev->bit_yp |
205			ts_dev->bit_xn | STEPCONFIG_INM_ADCREFM |
206			STEPCONFIG_INP(ts_dev->inp_yn);
207	titsc_writel(ts_dev, REG_STEPCONFIG(end_step), config);
208	titsc_writel(ts_dev, REG_STEPDELAY(end_step),
209			STEPCONFIG_OPENDLY);
210
211	/* The steps end ... end - readouts * 2 + 2 and bit 0 for TS_Charge */
212	stepenable = 1;
213	for (i = 0; i < tsc_steps; i++)
214		stepenable |= 1 << (first_step + i + 1);
215
216	ts_dev->step_mask = stepenable;
217	am335x_tsc_se_set_cache(ts_dev->mfd_tscadc, ts_dev->step_mask);
218}
219
220static int titsc_cmp_coord(const void *a, const void *b)
221{
222	return *(int *)a - *(int *)b;
223}
224
225static void titsc_read_coordinates(struct titsc *ts_dev,
226		u32 *x, u32 *y, u32 *z1, u32 *z2)
227{
228	unsigned int yvals[7], xvals[7];
229	unsigned int i, xsum = 0, ysum = 0;
230	unsigned int creads = ts_dev->coordinate_readouts;
231
232	for (i = 0; i < creads; i++) {
233		yvals[i] = titsc_readl(ts_dev, REG_FIFO0);
234		yvals[i] &= 0xfff;
235	}
236
237	*z1 = titsc_readl(ts_dev, REG_FIFO0);
238	*z1 &= 0xfff;
239	*z2 = titsc_readl(ts_dev, REG_FIFO0);
240	*z2 &= 0xfff;
241
242	for (i = 0; i < creads; i++) {
243		xvals[i] = titsc_readl(ts_dev, REG_FIFO0);
244		xvals[i] &= 0xfff;
245	}
246
247	/*
248	 * If co-ordinates readouts is less than 4 then
249	 * report the average. In case of 4 or more
250	 * readouts, sort the co-ordinate samples, drop
251	 * min and max values and report the average of
252	 * remaining values.
253	 */
254	if (creads <=  3) {
255		for (i = 0; i < creads; i++) {
256			ysum += yvals[i];
257			xsum += xvals[i];
258		}
259		ysum /= creads;
260		xsum /= creads;
261	} else {
262		sort(yvals, creads, sizeof(unsigned int),
263		     titsc_cmp_coord, NULL);
264		sort(xvals, creads, sizeof(unsigned int),
265		     titsc_cmp_coord, NULL);
266		for (i = 1; i < creads - 1; i++) {
267			ysum += yvals[i];
268			xsum += xvals[i];
269		}
270		ysum /= creads - 2;
271		xsum /= creads - 2;
272	}
273	*y = ysum;
274	*x = xsum;
275}
276
277static irqreturn_t titsc_irq(int irq, void *dev)
278{
279	struct titsc *ts_dev = dev;
280	struct input_dev *input_dev = ts_dev->input;
281	unsigned int fsm, status, irqclr = 0;
282	unsigned int x = 0, y = 0;
283	unsigned int z1, z2, z;
284
285	status = titsc_readl(ts_dev, REG_RAWIRQSTATUS);
286	if (status & IRQENB_HW_PEN) {
287		ts_dev->pen_down = true;
288		irqclr |= IRQENB_HW_PEN;
289		pm_stay_awake(ts_dev->dev);
290	}
291
292	if (status & IRQENB_PENUP) {
293		fsm = titsc_readl(ts_dev, REG_ADCFSM);
294		if (fsm == ADCFSM_STEPID) {
295			ts_dev->pen_down = false;
296			input_report_key(input_dev, BTN_TOUCH, 0);
297			input_report_abs(input_dev, ABS_PRESSURE, 0);
298			input_sync(input_dev);
299			pm_relax(ts_dev->dev);
300		} else {
301			ts_dev->pen_down = true;
302		}
303		irqclr |= IRQENB_PENUP;
304	}
305
306	if (status & IRQENB_EOS)
307		irqclr |= IRQENB_EOS;
308
309	/*
310	 * ADC and touchscreen share the IRQ line.
311	 * FIFO1 interrupts are used by ADC. Handle FIFO0 IRQs here only
312	 */
313	if (status & IRQENB_FIFO0THRES) {
314
315		titsc_read_coordinates(ts_dev, &x, &y, &z1, &z2);
316
317		if (ts_dev->pen_down && z1 != 0 && z2 != 0) {
318			/*
319			 * Calculate pressure using formula
320			 * Resistance(touch) = x plate resistance *
321			 * x position/4096 * ((z2 / z1) - 1)
322			 */
323			z = z1 - z2;
324			z *= x;
325			z *= ts_dev->x_plate_resistance;
326			z /= z2;
327			z = (z + 2047) >> 12;
328
329			if (z <= MAX_12BIT) {
330				input_report_abs(input_dev, ABS_X, x);
331				input_report_abs(input_dev, ABS_Y, y);
332				input_report_abs(input_dev, ABS_PRESSURE, z);
333				input_report_key(input_dev, BTN_TOUCH, 1);
334				input_sync(input_dev);
335			}
336		}
337		irqclr |= IRQENB_FIFO0THRES;
338	}
339	if (irqclr) {
340		titsc_writel(ts_dev, REG_IRQSTATUS, irqclr);
341		if (status & IRQENB_EOS)
342			am335x_tsc_se_set_cache(ts_dev->mfd_tscadc,
343						ts_dev->step_mask);
344		return IRQ_HANDLED;
345	}
346	return IRQ_NONE;
347}
348
349static int titsc_parse_dt(struct platform_device *pdev,
350					struct titsc *ts_dev)
351{
352	struct device_node *node = pdev->dev.of_node;
353	int err;
354
355	if (!node)
356		return -EINVAL;
357
358	err = of_property_read_u32(node, "ti,wires", &ts_dev->wires);
359	if (err < 0)
360		return err;
361	switch (ts_dev->wires) {
362	case 4:
363	case 5:
364	case 8:
365		break;
366	default:
367		return -EINVAL;
368	}
369
370	err = of_property_read_u32(node, "ti,x-plate-resistance",
371			&ts_dev->x_plate_resistance);
372	if (err < 0)
373		return err;
374
375	/*
376	 * Try with the new binding first. If it fails, try again with
377	 * bogus, miss-spelled version.
378	 */
379	err = of_property_read_u32(node, "ti,coordinate-readouts",
380			&ts_dev->coordinate_readouts);
381	if (err < 0) {
382		dev_warn(&pdev->dev, "please use 'ti,coordinate-readouts' instead\n");
383		err = of_property_read_u32(node, "ti,coordiante-readouts",
384				&ts_dev->coordinate_readouts);
385	}
386
387	if (err < 0)
388		return err;
389
390	if (ts_dev->coordinate_readouts <= 0) {
391		dev_warn(&pdev->dev,
392			 "invalid co-ordinate readouts, resetting it to 5\n");
393		ts_dev->coordinate_readouts = 5;
394	}
395
396	err = of_property_read_u32(node, "ti,charge-delay",
397				   &ts_dev->charge_delay);
398	/*
399	 * If ti,charge-delay value is not specified, then use
400	 * CHARGEDLY_OPENDLY as the default value.
401	 */
402	if (err < 0) {
403		ts_dev->charge_delay = CHARGEDLY_OPENDLY;
404		dev_warn(&pdev->dev, "ti,charge-delay not specified\n");
405	}
406
407	return of_property_read_u32_array(node, "ti,wire-config",
408			ts_dev->config_inp, ARRAY_SIZE(ts_dev->config_inp));
409}
410
411/*
412 * The functions for inserting/removing driver as a module.
413 */
414
415static int titsc_probe(struct platform_device *pdev)
416{
417	struct titsc *ts_dev;
418	struct input_dev *input_dev;
419	struct ti_tscadc_dev *tscadc_dev = ti_tscadc_dev_get(pdev);
420	int err;
421
422	/* Allocate memory for device */
423	ts_dev = kzalloc(sizeof(*ts_dev), GFP_KERNEL);
424	input_dev = input_allocate_device();
425	if (!ts_dev || !input_dev) {
426		dev_err(&pdev->dev, "failed to allocate memory.\n");
427		err = -ENOMEM;
428		goto err_free_mem;
429	}
430
431	tscadc_dev->tsc = ts_dev;
432	ts_dev->mfd_tscadc = tscadc_dev;
433	ts_dev->input = input_dev;
434	ts_dev->irq = tscadc_dev->irq;
435	ts_dev->dev = &pdev->dev;
436
437	err = titsc_parse_dt(pdev, ts_dev);
438	if (err) {
439		dev_err(&pdev->dev, "Could not find valid DT data.\n");
440		goto err_free_mem;
441	}
442
443	err = request_irq(ts_dev->irq, titsc_irq,
444			  IRQF_SHARED, pdev->dev.driver->name, ts_dev);
445	if (err) {
446		dev_err(&pdev->dev, "failed to allocate irq.\n");
447		goto err_free_mem;
448	}
449
450	device_init_wakeup(&pdev->dev, true);
451	err = dev_pm_set_wake_irq(&pdev->dev, ts_dev->irq);
452	if (err)
453		dev_err(&pdev->dev, "irq wake enable failed.\n");
454
455	titsc_writel(ts_dev, REG_IRQSTATUS, TSC_IRQENB_MASK);
456	titsc_writel(ts_dev, REG_IRQENABLE, IRQENB_FIFO0THRES);
457	titsc_writel(ts_dev, REG_IRQENABLE, IRQENB_EOS);
458	err = titsc_config_wires(ts_dev);
459	if (err) {
460		dev_err(&pdev->dev, "wrong i/p wire configuration\n");
461		goto err_free_irq;
462	}
463	titsc_step_config(ts_dev);
464	titsc_writel(ts_dev, REG_FIFO0THR,
465			ts_dev->coordinate_readouts * 2 + 2 - 1);
466
467	input_dev->name = "ti-tsc";
468	input_dev->dev.parent = &pdev->dev;
469
470	input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
471	input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
472
473	input_set_abs_params(input_dev, ABS_X, 0, MAX_12BIT, 0, 0);
474	input_set_abs_params(input_dev, ABS_Y, 0, MAX_12BIT, 0, 0);
475	input_set_abs_params(input_dev, ABS_PRESSURE, 0, MAX_12BIT, 0, 0);
476
477	/* register to the input system */
478	err = input_register_device(input_dev);
479	if (err)
480		goto err_free_irq;
481
482	platform_set_drvdata(pdev, ts_dev);
483	return 0;
484
485err_free_irq:
486	dev_pm_clear_wake_irq(&pdev->dev);
487	device_init_wakeup(&pdev->dev, false);
488	free_irq(ts_dev->irq, ts_dev);
489err_free_mem:
490	input_free_device(input_dev);
491	kfree(ts_dev);
492	return err;
493}
494
495static int titsc_remove(struct platform_device *pdev)
496{
497	struct titsc *ts_dev = platform_get_drvdata(pdev);
498	u32 steps;
499
500	dev_pm_clear_wake_irq(&pdev->dev);
501	device_init_wakeup(&pdev->dev, false);
502	free_irq(ts_dev->irq, ts_dev);
503
504	/* total steps followed by the enable mask */
505	steps = 2 * ts_dev->coordinate_readouts + 2;
506	steps = (1 << steps) - 1;
507	am335x_tsc_se_clr(ts_dev->mfd_tscadc, steps);
508
509	input_unregister_device(ts_dev->input);
510
511	kfree(ts_dev);
512	return 0;
513}
514
515static int __maybe_unused titsc_suspend(struct device *dev)
516{
517	struct titsc *ts_dev = dev_get_drvdata(dev);
518	unsigned int idle;
519
520	if (device_may_wakeup(dev)) {
521		titsc_writel(ts_dev, REG_IRQSTATUS, TSC_IRQENB_MASK);
522		idle = titsc_readl(ts_dev, REG_IRQENABLE);
523		titsc_writel(ts_dev, REG_IRQENABLE,
524				(idle | IRQENB_HW_PEN));
525		titsc_writel(ts_dev, REG_IRQWAKEUP, IRQWKUP_ENB);
526	}
527	return 0;
528}
529
530static int __maybe_unused titsc_resume(struct device *dev)
531{
532	struct titsc *ts_dev = dev_get_drvdata(dev);
533
534	if (device_may_wakeup(dev)) {
535		titsc_writel(ts_dev, REG_IRQWAKEUP,
536				0x00);
537		titsc_writel(ts_dev, REG_IRQCLR, IRQENB_HW_PEN);
538		pm_relax(dev);
539	}
540	titsc_step_config(ts_dev);
541	titsc_writel(ts_dev, REG_FIFO0THR,
542			ts_dev->coordinate_readouts * 2 + 2 - 1);
543	return 0;
544}
545
546static SIMPLE_DEV_PM_OPS(titsc_pm_ops, titsc_suspend, titsc_resume);
547
548static const struct of_device_id ti_tsc_dt_ids[] = {
549	{ .compatible = "ti,am3359-tsc", },
550	{ }
551};
552MODULE_DEVICE_TABLE(of, ti_tsc_dt_ids);
553
554static struct platform_driver ti_tsc_driver = {
555	.probe	= titsc_probe,
556	.remove	= titsc_remove,
557	.driver	= {
558		.name   = "TI-am335x-tsc",
559		.pm	= &titsc_pm_ops,
560		.of_match_table = ti_tsc_dt_ids,
561	},
562};
563module_platform_driver(ti_tsc_driver);
564
565MODULE_DESCRIPTION("TI touchscreen controller driver");
566MODULE_AUTHOR("Rachna Patil <rachna@ti.com>");
567MODULE_LICENSE("GPL");