1/*-
2 * Copyright 2014 Luiz Otavio O Souza <loos@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: stable/11/sys/arm/ti/ti_adc.c 314503 2017-03-01 18:53:05Z ian $");
29
30#include "opt_evdev.h"
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/bus.h>
35
36#include <sys/conf.h>
37#include <sys/kernel.h>
38#include <sys/limits.h>
39#include <sys/lock.h>
40#include <sys/module.h>
41#include <sys/mutex.h>
42#include <sys/condvar.h>
43#include <sys/resource.h>
44#include <sys/rman.h>
45#include <sys/sysctl.h>
46#include <sys/selinfo.h>
47#include <sys/poll.h>
48#include <sys/uio.h>
49
50#include <machine/bus.h>
51
52#include <dev/ofw/openfirm.h>
53#include <dev/ofw/ofw_bus.h>
54#include <dev/ofw/ofw_bus_subr.h>
55
56#ifdef EVDEV_SUPPORT
57#include <dev/evdev/input.h>
58#include <dev/evdev/evdev.h>
59#endif
60
61#include <arm/ti/ti_prcm.h>
62#include <arm/ti/ti_adcreg.h>
63#include <arm/ti/ti_adcvar.h>
64
65#undef	DEBUG_TSC
66
67#define	DEFAULT_CHARGE_DELAY	0x400
68#define	STEPDLY_OPEN		0x98
69
70#define	ORDER_XP	0
71#define	ORDER_XN	1
72#define	ORDER_YP	2
73#define	ORDER_YN	3
74
75/* Define our 8 steps, one for each input channel. */
76static struct ti_adc_input ti_adc_inputs[TI_ADC_NPINS] = {
77	{ .stepconfig = ADC_STEPCFG(1), .stepdelay = ADC_STEPDLY(1) },
78	{ .stepconfig = ADC_STEPCFG(2), .stepdelay = ADC_STEPDLY(2) },
79	{ .stepconfig = ADC_STEPCFG(3), .stepdelay = ADC_STEPDLY(3) },
80	{ .stepconfig = ADC_STEPCFG(4), .stepdelay = ADC_STEPDLY(4) },
81	{ .stepconfig = ADC_STEPCFG(5), .stepdelay = ADC_STEPDLY(5) },
82	{ .stepconfig = ADC_STEPCFG(6), .stepdelay = ADC_STEPDLY(6) },
83	{ .stepconfig = ADC_STEPCFG(7), .stepdelay = ADC_STEPDLY(7) },
84	{ .stepconfig = ADC_STEPCFG(8), .stepdelay = ADC_STEPDLY(8) },
85};
86
87static int ti_adc_samples[5] = { 0, 2, 4, 8, 16 };
88
89static int ti_adc_detach(device_t dev);
90
91#ifdef EVDEV_SUPPORT
92static void
93ti_adc_ev_report(struct ti_adc_softc *sc)
94{
95
96	evdev_push_event(sc->sc_evdev, EV_ABS, ABS_X, sc->sc_x);
97	evdev_push_event(sc->sc_evdev, EV_ABS, ABS_Y, sc->sc_y);
98	evdev_push_event(sc->sc_evdev, EV_KEY, BTN_TOUCH, sc->sc_pen_down);
99	evdev_sync(sc->sc_evdev);
100}
101#endif /* EVDEV */
102
103static void
104ti_adc_enable(struct ti_adc_softc *sc)
105{
106	uint32_t reg;
107
108	TI_ADC_LOCK_ASSERT(sc);
109
110	if (sc->sc_last_state == 1)
111		return;
112
113	/* Enable the FIFO0 threshold and the end of sequence interrupt. */
114	ADC_WRITE4(sc, ADC_IRQENABLE_SET,
115	    ADC_IRQ_FIFO0_THRES | ADC_IRQ_FIFO1_THRES | ADC_IRQ_END_OF_SEQ);
116
117	reg = ADC_CTRL_STEP_WP | ADC_CTRL_STEP_ID;
118	if (sc->sc_tsc_wires > 0) {
119		reg |= ADC_CTRL_TSC_ENABLE;
120		switch (sc->sc_tsc_wires) {
121		case 4:
122			reg |= ADC_CTRL_TSC_4WIRE;
123			break;
124		case 5:
125			reg |= ADC_CTRL_TSC_5WIRE;
126			break;
127		case 8:
128			reg |= ADC_CTRL_TSC_8WIRE;
129			break;
130		default:
131			break;
132		}
133	}
134	reg |= ADC_CTRL_ENABLE;
135	/* Enable the ADC.  Run thru enabled steps, start the conversions. */
136	ADC_WRITE4(sc, ADC_CTRL, reg);
137
138	sc->sc_last_state = 1;
139}
140
141static void
142ti_adc_disable(struct ti_adc_softc *sc)
143{
144	int count;
145	uint32_t data;
146
147	TI_ADC_LOCK_ASSERT(sc);
148
149	if (sc->sc_last_state == 0)
150		return;
151
152	/* Disable all the enabled steps. */
153	ADC_WRITE4(sc, ADC_STEPENABLE, 0);
154
155	/* Disable the ADC. */
156	ADC_WRITE4(sc, ADC_CTRL, ADC_READ4(sc, ADC_CTRL) & ~ADC_CTRL_ENABLE);
157
158	/* Disable the FIFO0 threshold and the end of sequence interrupt. */
159	ADC_WRITE4(sc, ADC_IRQENABLE_CLR,
160	    ADC_IRQ_FIFO0_THRES | ADC_IRQ_FIFO1_THRES | ADC_IRQ_END_OF_SEQ);
161
162	/* ACK any pending interrupt. */
163	ADC_WRITE4(sc, ADC_IRQSTATUS, ADC_READ4(sc, ADC_IRQSTATUS));
164
165	/* Drain the FIFO data. */
166	count = ADC_READ4(sc, ADC_FIFO0COUNT) & ADC_FIFO_COUNT_MSK;
167	while (count > 0) {
168		data = ADC_READ4(sc, ADC_FIFO0DATA);
169		count = ADC_READ4(sc, ADC_FIFO0COUNT) & ADC_FIFO_COUNT_MSK;
170	}
171
172	count = ADC_READ4(sc, ADC_FIFO1COUNT) & ADC_FIFO_COUNT_MSK;
173	while (count > 0) {
174		data = ADC_READ4(sc, ADC_FIFO1DATA);
175		count = ADC_READ4(sc, ADC_FIFO1COUNT) & ADC_FIFO_COUNT_MSK;
176	}
177
178	sc->sc_last_state = 0;
179}
180
181static int
182ti_adc_setup(struct ti_adc_softc *sc)
183{
184	int ain, i;
185	uint32_t enabled;
186
187	TI_ADC_LOCK_ASSERT(sc);
188
189	/* Check for enabled inputs. */
190	enabled = sc->sc_tsc_enabled;
191	for (i = 0; i < sc->sc_adc_nchannels; i++) {
192		ain = sc->sc_adc_channels[i];
193		if (ti_adc_inputs[ain].enable)
194			enabled |= (1U << (ain + 1));
195	}
196
197	/* Set the ADC global status. */
198	if (enabled != 0) {
199		ti_adc_enable(sc);
200		/* Update the enabled steps. */
201		if (enabled != ADC_READ4(sc, ADC_STEPENABLE))
202			ADC_WRITE4(sc, ADC_STEPENABLE, enabled);
203	} else
204		ti_adc_disable(sc);
205
206	return (0);
207}
208
209static void
210ti_adc_input_setup(struct ti_adc_softc *sc, int32_t ain)
211{
212	struct ti_adc_input *input;
213	uint32_t reg, val;
214
215	TI_ADC_LOCK_ASSERT(sc);
216
217	input = &ti_adc_inputs[ain];
218	reg = input->stepconfig;
219	val = ADC_READ4(sc, reg);
220
221	/* Set single ended operation. */
222	val &= ~ADC_STEP_DIFF_CNTRL;
223
224	/* Set the negative voltage reference. */
225	val &= ~ADC_STEP_RFM_MSK;
226
227	/* Set the positive voltage reference. */
228	val &= ~ADC_STEP_RFP_MSK;
229
230	/* Set the samples average. */
231	val &= ~ADC_STEP_AVG_MSK;
232	val |= input->samples << ADC_STEP_AVG_SHIFT;
233
234	/* Select the desired input. */
235	val &= ~ADC_STEP_INP_MSK;
236	val |= ain << ADC_STEP_INP_SHIFT;
237
238	/* Set the ADC to one-shot mode. */
239	val &= ~ADC_STEP_MODE_MSK;
240
241	ADC_WRITE4(sc, reg, val);
242}
243
244static void
245ti_adc_reset(struct ti_adc_softc *sc)
246{
247	int ain, i;
248
249	TI_ADC_LOCK_ASSERT(sc);
250
251	/* Disable all the inputs. */
252	for (i = 0; i < sc->sc_adc_nchannels; i++) {
253		ain = sc->sc_adc_channels[i];
254		ti_adc_inputs[ain].enable = 0;
255	}
256}
257
258static int
259ti_adc_clockdiv_proc(SYSCTL_HANDLER_ARGS)
260{
261	int error, reg;
262	struct ti_adc_softc *sc;
263
264	sc = (struct ti_adc_softc *)arg1;
265
266	TI_ADC_LOCK(sc);
267	reg = (int)ADC_READ4(sc, ADC_CLKDIV) + 1;
268	TI_ADC_UNLOCK(sc);
269
270	error = sysctl_handle_int(oidp, &reg, sizeof(reg), req);
271	if (error != 0 || req->newptr == NULL)
272		return (error);
273
274	/*
275	 * The actual written value is the prescaler setting - 1.
276	 * Enforce a minimum value of 10 (i.e. 9) which limits the maximum
277	 * ADC clock to ~2.4Mhz (CLK_M_OSC / 10).
278	 */
279	reg--;
280	if (reg < 9)
281		reg = 9;
282	if (reg > USHRT_MAX)
283		reg = USHRT_MAX;
284
285	TI_ADC_LOCK(sc);
286	/* Disable the ADC. */
287	ti_adc_disable(sc);
288	/* Update the ADC prescaler setting. */
289	ADC_WRITE4(sc, ADC_CLKDIV, reg);
290	/* Enable the ADC again. */
291	ti_adc_setup(sc);
292	TI_ADC_UNLOCK(sc);
293
294	return (0);
295}
296
297static int
298ti_adc_enable_proc(SYSCTL_HANDLER_ARGS)
299{
300	int error;
301	int32_t enable;
302	struct ti_adc_softc *sc;
303	struct ti_adc_input *input;
304
305	input = (struct ti_adc_input *)arg1;
306	sc = input->sc;
307
308	enable = input->enable;
309	error = sysctl_handle_int(oidp, &enable, sizeof(enable),
310	    req);
311	if (error != 0 || req->newptr == NULL)
312		return (error);
313
314	if (enable)
315		enable = 1;
316
317	TI_ADC_LOCK(sc);
318	/* Setup the ADC as needed. */
319	if (input->enable != enable) {
320		input->enable = enable;
321		ti_adc_setup(sc);
322		if (input->enable == 0)
323			input->value = 0;
324	}
325	TI_ADC_UNLOCK(sc);
326
327	return (0);
328}
329
330static int
331ti_adc_open_delay_proc(SYSCTL_HANDLER_ARGS)
332{
333	int error, reg;
334	struct ti_adc_softc *sc;
335	struct ti_adc_input *input;
336
337	input = (struct ti_adc_input *)arg1;
338	sc = input->sc;
339
340	TI_ADC_LOCK(sc);
341	reg = (int)ADC_READ4(sc, input->stepdelay) & ADC_STEP_OPEN_DELAY;
342	TI_ADC_UNLOCK(sc);
343
344	error = sysctl_handle_int(oidp, &reg, sizeof(reg), req);
345	if (error != 0 || req->newptr == NULL)
346		return (error);
347
348	if (reg < 0)
349		reg = 0;
350
351	TI_ADC_LOCK(sc);
352	ADC_WRITE4(sc, input->stepdelay, reg & ADC_STEP_OPEN_DELAY);
353	TI_ADC_UNLOCK(sc);
354
355	return (0);
356}
357
358static int
359ti_adc_samples_avg_proc(SYSCTL_HANDLER_ARGS)
360{
361	int error, samples, i;
362	struct ti_adc_softc *sc;
363	struct ti_adc_input *input;
364
365	input = (struct ti_adc_input *)arg1;
366	sc = input->sc;
367
368	if (input->samples > nitems(ti_adc_samples))
369		input->samples = nitems(ti_adc_samples);
370	samples = ti_adc_samples[input->samples];
371
372	error = sysctl_handle_int(oidp, &samples, 0, req);
373	if (error != 0 || req->newptr == NULL)
374		return (error);
375
376	TI_ADC_LOCK(sc);
377	if (samples != ti_adc_samples[input->samples]) {
378		input->samples = 0;
379		for (i = 0; i < nitems(ti_adc_samples); i++)
380			if (samples >= ti_adc_samples[i])
381				input->samples = i;
382		ti_adc_input_setup(sc, input->input);
383	}
384	TI_ADC_UNLOCK(sc);
385
386	return (error);
387}
388
389static void
390ti_adc_read_data(struct ti_adc_softc *sc)
391{
392	int count, ain;
393	struct ti_adc_input *input;
394	uint32_t data;
395
396	TI_ADC_LOCK_ASSERT(sc);
397
398	/* Read the available data. */
399	count = ADC_READ4(sc, ADC_FIFO0COUNT) & ADC_FIFO_COUNT_MSK;
400	while (count > 0) {
401		data = ADC_READ4(sc, ADC_FIFO0DATA);
402		ain = (data & ADC_FIFO_STEP_ID_MSK) >> ADC_FIFO_STEP_ID_SHIFT;
403		input = &ti_adc_inputs[ain];
404		if (input->enable == 0)
405			input->value = 0;
406		else
407			input->value = (int32_t)(data & ADC_FIFO_DATA_MSK);
408		count = ADC_READ4(sc, ADC_FIFO0COUNT) & ADC_FIFO_COUNT_MSK;
409	}
410}
411
412static int
413cmp_values(const void *a, const void *b)
414{
415	const uint32_t *v1, *v2;
416	v1 = a;
417	v2 = b;
418	if (*v1 < *v2)
419		return -1;
420	if (*v1 > *v2)
421		return 1;
422
423	return (0);
424}
425
426static void
427ti_adc_tsc_read_data(struct ti_adc_softc *sc)
428{
429	int count;
430	uint32_t data[16];
431	uint32_t x, y;
432	int i, start, end;
433
434	TI_ADC_LOCK_ASSERT(sc);
435
436	/* Read the available data. */
437	count = ADC_READ4(sc, ADC_FIFO1COUNT) & ADC_FIFO_COUNT_MSK;
438	if (count == 0)
439		return;
440
441	i = 0;
442	while (count > 0) {
443		data[i++] = ADC_READ4(sc, ADC_FIFO1DATA) & ADC_FIFO_DATA_MSK;
444		count = ADC_READ4(sc, ADC_FIFO1COUNT) & ADC_FIFO_COUNT_MSK;
445	}
446
447	if (sc->sc_coord_readouts > 3) {
448		start = 1;
449		end = sc->sc_coord_readouts - 1;
450		qsort(data, sc->sc_coord_readouts,
451			sizeof(data[0]), &cmp_values);
452		qsort(&data[sc->sc_coord_readouts + 2],
453			sc->sc_coord_readouts,
454			sizeof(data[0]), &cmp_values);
455	}
456	else {
457		start = 0;
458		end = sc->sc_coord_readouts;
459	}
460
461	x = y = 0;
462	for (i = start; i < end; i++)
463		y += data[i];
464	y /= (end - start);
465
466	for (i = sc->sc_coord_readouts + 2 + start; i < sc->sc_coord_readouts + 2 + end; i++)
467		x += data[i];
468	x /= (end - start);
469
470#ifdef DEBUG_TSC
471	device_printf(sc->sc_dev, "touchscreen x: %d, y: %d\n", x, y);
472#endif
473
474#ifdef EVDEV_SUPPORT
475	if ((sc->sc_x != x) || (sc->sc_y != y)) {
476		sc->sc_x = x;
477		sc->sc_y = y;
478		ti_adc_ev_report(sc);
479	}
480#endif
481}
482
483static void
484ti_adc_intr_locked(struct ti_adc_softc *sc, uint32_t status)
485{
486	/* Read the available data. */
487	if (status & ADC_IRQ_FIFO0_THRES)
488		ti_adc_read_data(sc);
489}
490
491static void
492ti_adc_tsc_intr_locked(struct ti_adc_softc *sc, uint32_t status)
493{
494	/* Read the available data. */
495	if (status & ADC_IRQ_FIFO1_THRES)
496		ti_adc_tsc_read_data(sc);
497
498}
499
500static void
501ti_adc_intr(void *arg)
502{
503	struct ti_adc_softc *sc;
504	uint32_t status, rawstatus;
505
506	sc = (struct ti_adc_softc *)arg;
507
508	TI_ADC_LOCK(sc);
509
510	rawstatus = ADC_READ4(sc, ADC_IRQSTATUS_RAW);
511	status = ADC_READ4(sc, ADC_IRQSTATUS);
512
513	if (rawstatus & ADC_IRQ_HW_PEN_ASYNC) {
514		sc->sc_pen_down = 1;
515		status |= ADC_IRQ_HW_PEN_ASYNC;
516		ADC_WRITE4(sc, ADC_IRQENABLE_CLR,
517			ADC_IRQ_HW_PEN_ASYNC);
518#ifdef EVDEV_SUPPORT
519		ti_adc_ev_report(sc);
520#endif
521	}
522
523	if (rawstatus & ADC_IRQ_PEN_UP) {
524		sc->sc_pen_down = 0;
525		status |= ADC_IRQ_PEN_UP;
526#ifdef EVDEV_SUPPORT
527		ti_adc_ev_report(sc);
528#endif
529	}
530
531	if (status & ADC_IRQ_FIFO0_THRES)
532		ti_adc_intr_locked(sc, status);
533
534	if (status & ADC_IRQ_FIFO1_THRES)
535		ti_adc_tsc_intr_locked(sc, status);
536
537	if (status) {
538		/* ACK the interrupt. */
539		ADC_WRITE4(sc, ADC_IRQSTATUS, status);
540	}
541
542	/* Start the next conversion ? */
543	if (status & ADC_IRQ_END_OF_SEQ)
544		ti_adc_setup(sc);
545
546	TI_ADC_UNLOCK(sc);
547}
548
549static void
550ti_adc_sysctl_init(struct ti_adc_softc *sc)
551{
552	char pinbuf[3];
553	struct sysctl_ctx_list *ctx;
554	struct sysctl_oid *tree_node, *inp_node, *inpN_node;
555	struct sysctl_oid_list *tree, *inp_tree, *inpN_tree;
556	int ain, i;
557
558	/*
559	 * Add per-pin sysctl tree/handlers.
560	 */
561	ctx = device_get_sysctl_ctx(sc->sc_dev);
562	tree_node = device_get_sysctl_tree(sc->sc_dev);
563	tree = SYSCTL_CHILDREN(tree_node);
564	SYSCTL_ADD_PROC(ctx, tree, OID_AUTO, "clockdiv",
565	    CTLFLAG_RW | CTLTYPE_UINT,  sc, 0,
566	    ti_adc_clockdiv_proc, "IU", "ADC clock prescaler");
567	inp_node = SYSCTL_ADD_NODE(ctx, tree, OID_AUTO, "ain",
568	    CTLFLAG_RD, NULL, "ADC inputs");
569	inp_tree = SYSCTL_CHILDREN(inp_node);
570
571	for (i = 0; i < sc->sc_adc_nchannels; i++) {
572		ain = sc->sc_adc_channels[i];
573
574		snprintf(pinbuf, sizeof(pinbuf), "%d", ain);
575		inpN_node = SYSCTL_ADD_NODE(ctx, inp_tree, OID_AUTO, pinbuf,
576		    CTLFLAG_RD, NULL, "ADC input");
577		inpN_tree = SYSCTL_CHILDREN(inpN_node);
578
579		SYSCTL_ADD_PROC(ctx, inpN_tree, OID_AUTO, "enable",
580		    CTLFLAG_RW | CTLTYPE_UINT, &ti_adc_inputs[ain], 0,
581		    ti_adc_enable_proc, "IU", "Enable ADC input");
582		SYSCTL_ADD_PROC(ctx, inpN_tree, OID_AUTO, "open_delay",
583		    CTLFLAG_RW | CTLTYPE_UINT,  &ti_adc_inputs[ain], 0,
584		    ti_adc_open_delay_proc, "IU", "ADC open delay");
585		SYSCTL_ADD_PROC(ctx, inpN_tree, OID_AUTO, "samples_avg",
586		    CTLFLAG_RW | CTLTYPE_UINT,  &ti_adc_inputs[ain], 0,
587		    ti_adc_samples_avg_proc, "IU", "ADC samples average");
588		SYSCTL_ADD_INT(ctx, inpN_tree, OID_AUTO, "input",
589		    CTLFLAG_RD, &ti_adc_inputs[ain].value, 0,
590		    "Converted raw value for the ADC input");
591	}
592}
593
594static void
595ti_adc_inputs_init(struct ti_adc_softc *sc)
596{
597	int ain, i;
598	struct ti_adc_input *input;
599
600	TI_ADC_LOCK(sc);
601	for (i = 0; i < sc->sc_adc_nchannels; i++) {
602		ain = sc->sc_adc_channels[i];
603		input = &ti_adc_inputs[ain];
604		input->sc = sc;
605		input->input = ain;
606		input->value = 0;
607		input->enable = 0;
608		input->samples = 0;
609		ti_adc_input_setup(sc, ain);
610	}
611	TI_ADC_UNLOCK(sc);
612}
613
614static void
615ti_adc_tsc_init(struct ti_adc_softc *sc)
616{
617	int i, start_step, end_step;
618	uint32_t stepconfig, val;
619
620	TI_ADC_LOCK(sc);
621
622	/* X coordinates */
623	stepconfig = ADC_STEP_FIFO1 | (4 << ADC_STEP_AVG_SHIFT) |
624	    ADC_STEP_MODE_HW_ONESHOT | sc->sc_xp_bit;
625	if (sc->sc_tsc_wires == 4)
626		stepconfig |= ADC_STEP_INP(sc->sc_yp_inp) | sc->sc_xn_bit;
627	else if (sc->sc_tsc_wires == 5)
628		stepconfig |= ADC_STEP_INP(4) |
629			sc->sc_xn_bit | sc->sc_yn_bit | sc->sc_yp_bit;
630	else if (sc->sc_tsc_wires == 8)
631		stepconfig |= ADC_STEP_INP(sc->sc_yp_inp) | sc->sc_xn_bit;
632
633	start_step = ADC_STEPS - sc->sc_coord_readouts + 1;
634	end_step = start_step + sc->sc_coord_readouts - 1;
635	for (i = start_step; i <= end_step; i++) {
636		ADC_WRITE4(sc, ADC_STEPCFG(i), stepconfig);
637		ADC_WRITE4(sc, ADC_STEPDLY(i), STEPDLY_OPEN);
638	}
639
640	/* Y coordinates */
641	stepconfig = ADC_STEP_FIFO1 | (4 << ADC_STEP_AVG_SHIFT) |
642	    ADC_STEP_MODE_HW_ONESHOT | sc->sc_yn_bit |
643	    ADC_STEP_INM(8);
644	if (sc->sc_tsc_wires == 4)
645		stepconfig |= ADC_STEP_INP(sc->sc_xp_inp) | sc->sc_yp_bit;
646	else if (sc->sc_tsc_wires == 5)
647		stepconfig |= ADC_STEP_INP(4) |
648			sc->sc_xp_bit | sc->sc_xn_bit | sc->sc_yp_bit;
649	else if (sc->sc_tsc_wires == 8)
650		stepconfig |= ADC_STEP_INP(sc->sc_xp_inp) | sc->sc_yp_bit;
651
652	start_step = ADC_STEPS - (sc->sc_coord_readouts*2 + 2) + 1;
653	end_step = start_step + sc->sc_coord_readouts - 1;
654	for (i = start_step; i <= end_step; i++) {
655		ADC_WRITE4(sc, ADC_STEPCFG(i), stepconfig);
656		ADC_WRITE4(sc, ADC_STEPDLY(i), STEPDLY_OPEN);
657	}
658
659	/* Charge config */
660	val = ADC_READ4(sc, ADC_IDLECONFIG);
661	ADC_WRITE4(sc, ADC_TC_CHARGE_STEPCONFIG, val);
662	ADC_WRITE4(sc, ADC_TC_CHARGE_DELAY, sc->sc_charge_delay);
663
664	/* 2 steps for Z */
665	start_step = ADC_STEPS - (sc->sc_coord_readouts + 2) + 1;
666	stepconfig = ADC_STEP_FIFO1 | (4 << ADC_STEP_AVG_SHIFT) |
667	    ADC_STEP_MODE_HW_ONESHOT | sc->sc_yp_bit |
668	    sc->sc_xn_bit | ADC_STEP_INP(sc->sc_xp_inp) |
669	    ADC_STEP_INM(8);
670	ADC_WRITE4(sc, ADC_STEPCFG(start_step), stepconfig);
671	ADC_WRITE4(sc, ADC_STEPDLY(start_step), STEPDLY_OPEN);
672	start_step++;
673	stepconfig |= ADC_STEP_INP(sc->sc_yn_inp);
674	ADC_WRITE4(sc, ADC_STEPCFG(start_step), stepconfig);
675	ADC_WRITE4(sc, ADC_STEPDLY(start_step), STEPDLY_OPEN);
676
677	ADC_WRITE4(sc, ADC_FIFO1THRESHOLD, (sc->sc_coord_readouts*2 + 2) - 1);
678
679	sc->sc_tsc_enabled = 1;
680	start_step = ADC_STEPS - (sc->sc_coord_readouts*2 + 2) + 1;
681	end_step = ADC_STEPS;
682	for (i = start_step; i <= end_step; i++) {
683		sc->sc_tsc_enabled |= (1 << i);
684	}
685
686
687	TI_ADC_UNLOCK(sc);
688}
689
690static void
691ti_adc_idlestep_init(struct ti_adc_softc *sc)
692{
693	uint32_t val;
694
695	val = ADC_STEP_YNN_SW | ADC_STEP_INM(8) | ADC_STEP_INP(8) | ADC_STEP_YPN_SW;
696
697	ADC_WRITE4(sc, ADC_IDLECONFIG, val);
698}
699
700static int
701ti_adc_config_wires(struct ti_adc_softc *sc, int *wire_configs, int nwire_configs)
702{
703	int i;
704	int wire, ai;
705
706	for (i = 0; i < nwire_configs; i++) {
707		wire = wire_configs[i] & 0xf;
708		ai = (wire_configs[i] >> 4) & 0xf;
709		switch (wire) {
710		case ORDER_XP:
711			sc->sc_xp_bit = ADC_STEP_XPP_SW;
712			sc->sc_xp_inp = ai;
713			break;
714		case ORDER_XN:
715			sc->sc_xn_bit = ADC_STEP_XNN_SW;
716			sc->sc_xn_inp = ai;
717			break;
718		case ORDER_YP:
719			sc->sc_yp_bit = ADC_STEP_YPP_SW;
720			sc->sc_yp_inp = ai;
721			break;
722		case ORDER_YN:
723			sc->sc_yn_bit = ADC_STEP_YNN_SW;
724			sc->sc_yn_inp = ai;
725			break;
726		default:
727			device_printf(sc->sc_dev, "Invalid wire config\n");
728			return (-1);
729		}
730	}
731	return (0);
732}
733
734static int
735ti_adc_probe(device_t dev)
736{
737
738	if (!ofw_bus_is_compatible(dev, "ti,am3359-tscadc"))
739		return (ENXIO);
740	device_set_desc(dev, "TI ADC controller");
741
742	return (BUS_PROBE_DEFAULT);
743}
744
745static int
746ti_adc_attach(device_t dev)
747{
748	int err, rid, i;
749	struct ti_adc_softc *sc;
750	uint32_t rev, reg;
751	phandle_t node, child;
752	pcell_t cell;
753	int *channels;
754	int nwire_configs;
755	int *wire_configs;
756
757	sc = device_get_softc(dev);
758	sc->sc_dev = dev;
759
760	node = ofw_bus_get_node(dev);
761
762	sc->sc_tsc_wires = 0;
763	sc->sc_coord_readouts = 1;
764	sc->sc_x_plate_resistance = 0;
765	sc->sc_charge_delay = DEFAULT_CHARGE_DELAY;
766	/* Read "tsc" node properties */
767	child = ofw_bus_find_child(node, "tsc");
768	if (child != 0 && OF_hasprop(child, "ti,wires")) {
769		if ((OF_getencprop(child, "ti,wires", &cell, sizeof(cell))) > 0)
770			sc->sc_tsc_wires = cell;
771		if ((OF_getencprop(child, "ti,coordinate-readouts", &cell,
772		    sizeof(cell))) > 0)
773			sc->sc_coord_readouts = cell;
774		if ((OF_getencprop(child, "ti,x-plate-resistance", &cell,
775		    sizeof(cell))) > 0)
776			sc->sc_x_plate_resistance = cell;
777		if ((OF_getencprop(child, "ti,charge-delay", &cell,
778		    sizeof(cell))) > 0)
779			sc->sc_charge_delay = cell;
780		nwire_configs = OF_getencprop_alloc(child, "ti,wire-config",
781		    sizeof(*wire_configs), (void **)&wire_configs);
782		if (nwire_configs != sc->sc_tsc_wires) {
783			device_printf(sc->sc_dev,
784			    "invalid number of ti,wire-config: %d (should be %d)\n",
785			    nwire_configs, sc->sc_tsc_wires);
786			OF_prop_free(wire_configs);
787			return (EINVAL);
788		}
789		err = ti_adc_config_wires(sc, wire_configs, nwire_configs);
790		OF_prop_free(wire_configs);
791		if (err)
792			return (EINVAL);
793	}
794
795	/* Read "adc" node properties */
796	child = ofw_bus_find_child(node, "adc");
797	if (child != 0) {
798		sc->sc_adc_nchannels = OF_getencprop_alloc(child, "ti,adc-channels",
799		    sizeof(*channels), (void **)&channels);
800		if (sc->sc_adc_nchannels > 0) {
801			for (i = 0; i < sc->sc_adc_nchannels; i++)
802				sc->sc_adc_channels[i] = channels[i];
803			OF_prop_free(channels);
804		}
805	}
806
807	/* Sanity check FDT data */
808	if (sc->sc_tsc_wires + sc->sc_adc_nchannels > TI_ADC_NPINS) {
809		device_printf(dev, "total number of chanels (%d) is larger than %d\n",
810		    sc->sc_tsc_wires + sc->sc_adc_nchannels, TI_ADC_NPINS);
811		return (ENXIO);
812	}
813
814	rid = 0;
815	sc->sc_mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
816	    RF_ACTIVE);
817	if (!sc->sc_mem_res) {
818		device_printf(dev, "cannot allocate memory window\n");
819		return (ENXIO);
820	}
821
822	/* Activate the ADC_TSC module. */
823	err = ti_prcm_clk_enable(TSC_ADC_CLK);
824	if (err)
825		return (err);
826
827	rid = 0;
828	sc->sc_irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
829	    RF_ACTIVE);
830	if (!sc->sc_irq_res) {
831		bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->sc_mem_res);
832		device_printf(dev, "cannot allocate interrupt\n");
833		return (ENXIO);
834	}
835
836	if (bus_setup_intr(dev, sc->sc_irq_res, INTR_TYPE_MISC | INTR_MPSAFE,
837	    NULL, ti_adc_intr, sc, &sc->sc_intrhand) != 0) {
838		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_irq_res);
839		bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->sc_mem_res);
840		device_printf(dev, "Unable to setup the irq handler.\n");
841		return (ENXIO);
842	}
843
844	/* Check the ADC revision. */
845	rev = ADC_READ4(sc, ADC_REVISION);
846	device_printf(dev,
847	    "scheme: %#x func: %#x rtl: %d rev: %d.%d custom rev: %d\n",
848	    (rev & ADC_REV_SCHEME_MSK) >> ADC_REV_SCHEME_SHIFT,
849	    (rev & ADC_REV_FUNC_MSK) >> ADC_REV_FUNC_SHIFT,
850	    (rev & ADC_REV_RTL_MSK) >> ADC_REV_RTL_SHIFT,
851	    (rev & ADC_REV_MAJOR_MSK) >> ADC_REV_MAJOR_SHIFT,
852	    rev & ADC_REV_MINOR_MSK,
853	    (rev & ADC_REV_CUSTOM_MSK) >> ADC_REV_CUSTOM_SHIFT);
854
855	reg = ADC_READ4(sc, ADC_CTRL);
856	ADC_WRITE4(sc, ADC_CTRL, reg | ADC_CTRL_STEP_WP | ADC_CTRL_STEP_ID);
857
858	/*
859	 * Set the ADC prescaler to 2400 if touchscreen is not enabled
860	 * and to 24 if it is.  This sets the ADC clock to ~10Khz and
861	 * ~1Mhz respectively (CLK_M_OSC / prescaler).
862	 */
863	if (sc->sc_tsc_wires)
864		ADC_WRITE4(sc, ADC_CLKDIV, 24 - 1);
865	else
866		ADC_WRITE4(sc, ADC_CLKDIV, 2400 - 1);
867
868	TI_ADC_LOCK_INIT(sc);
869
870	ti_adc_idlestep_init(sc);
871	ti_adc_inputs_init(sc);
872	ti_adc_sysctl_init(sc);
873	ti_adc_tsc_init(sc);
874
875	TI_ADC_LOCK(sc);
876	ti_adc_setup(sc);
877	TI_ADC_UNLOCK(sc);
878
879#ifdef EVDEV_SUPPORT
880	if (sc->sc_tsc_wires > 0) {
881		sc->sc_evdev = evdev_alloc();
882		evdev_set_name(sc->sc_evdev, device_get_desc(dev));
883		evdev_set_phys(sc->sc_evdev, device_get_nameunit(dev));
884		evdev_set_id(sc->sc_evdev, BUS_VIRTUAL, 0, 0, 0);
885		evdev_support_prop(sc->sc_evdev, INPUT_PROP_DIRECT);
886		evdev_support_event(sc->sc_evdev, EV_SYN);
887		evdev_support_event(sc->sc_evdev, EV_ABS);
888		evdev_support_event(sc->sc_evdev, EV_KEY);
889
890		evdev_support_abs(sc->sc_evdev, ABS_X, 0, 0,
891		    ADC_MAX_VALUE, 0, 0, 0);
892		evdev_support_abs(sc->sc_evdev, ABS_Y, 0, 0,
893		    ADC_MAX_VALUE, 0, 0, 0);
894
895		evdev_support_key(sc->sc_evdev, BTN_TOUCH);
896
897		err = evdev_register(sc->sc_evdev);
898		if (err) {
899			device_printf(dev,
900			    "failed to register evdev: error=%d\n", err);
901			ti_adc_detach(dev);
902			return (err);
903		}
904
905		sc->sc_pen_down = 0;
906		sc->sc_x = -1;
907		sc->sc_y = -1;
908	}
909#endif /* EVDEV */
910
911	return (0);
912}
913
914static int
915ti_adc_detach(device_t dev)
916{
917	struct ti_adc_softc *sc;
918
919	sc = device_get_softc(dev);
920
921	/* Turn off the ADC. */
922	TI_ADC_LOCK(sc);
923	ti_adc_reset(sc);
924	ti_adc_setup(sc);
925
926#ifdef EVDEV_SUPPORT
927	evdev_free(sc->sc_evdev);
928#endif
929
930	TI_ADC_UNLOCK(sc);
931
932	TI_ADC_LOCK_DESTROY(sc);
933
934	if (sc->sc_intrhand)
935		bus_teardown_intr(dev, sc->sc_irq_res, sc->sc_intrhand);
936	if (sc->sc_irq_res)
937		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_irq_res);
938	if (sc->sc_mem_res)
939		bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->sc_mem_res);
940
941	return (bus_generic_detach(dev));
942}
943
944static device_method_t ti_adc_methods[] = {
945	DEVMETHOD(device_probe,		ti_adc_probe),
946	DEVMETHOD(device_attach,	ti_adc_attach),
947	DEVMETHOD(device_detach,	ti_adc_detach),
948
949	DEVMETHOD_END
950};
951
952static driver_t ti_adc_driver = {
953	"ti_adc",
954	ti_adc_methods,
955	sizeof(struct ti_adc_softc),
956};
957
958static devclass_t ti_adc_devclass;
959
960DRIVER_MODULE(ti_adc, simplebus, ti_adc_driver, ti_adc_devclass, 0, 0);
961MODULE_VERSION(ti_adc, 1);
962MODULE_DEPEND(ti_adc, simplebus, 1, 1, 1);
963#ifdef EVDEV_SUPPORT
964MODULE_DEPEND(ti_adc, evdev, 1, 1, 1);
965#endif
966