1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
|
/* $OpenBSD: zts.c,v 1.9 2005/04/24 18:55:49 uwe Exp $ */
/*
* Copyright (c) 2005 Dale Rahn <drahn@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/timeout.h>
#include <sys/kernel.h>
#include <arm/xscale/pxa2x0reg.h>
#include <arm/xscale/pxa2x0_gpio.h>
#include <zaurus/dev/zaurus_sspvar.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wsmousevar.h>
#include <dev/wscons/wsdisplayvar.h>
#include <arm/xscale/pxa2x0var.h>
#include <arm/xscale/pxa2x0_lcd.h>
/*
* ADS784x touch screen controller
*/
#define ADSCTRL_PD0_SH 0 /* PD0 bit */
#define ADSCTRL_PD1_SH 1 /* PD1 bit */
#define ADSCTRL_DFR_SH 2 /* SER/DFR bit */
#define ADSCTRL_MOD_SH 3 /* Mode bit */
#define ADSCTRL_ADR_SH 4 /* Address setting */
#define ADSCTRL_STS_SH 7 /* Start bit */
#define GPIO_TP_INT_C3K 11
#define GPIO_HSYNC_C3K 22
#define POLL_TIMEOUT_RATE0 ((hz * 150)/1000)
#define POLL_TIMEOUT_RATE1 (hz / 100) /* XXX every tick */
#define CCNT_HS_400_VGA_C3K 6250 /* 15.024us */
/* XXX need to ask zaurus_lcd.c for the screen dimension */
#define CURRENT_DISPLAY (&sharp_zaurus_C3000)
extern const struct lcd_panel_geometry sharp_zaurus_C3000;
/* Settable via sysctl. */
int zts_rawmode;
struct ztsscale {
int ts_minx;
int ts_maxx;
int ts_miny;
int ts_maxy;
} zts_scale = {
/* C3000 */
209, 3620, 312, 3780
};
int zts_match(struct device *, void *, void *);
void zts_attach(struct device *, struct device *, void *);
int zts_enable(void *);
void zts_disable(void *);
void zts_power(int, void *);
void zts_poll(void *);
int zts_irq(void *);
int zts_ioctl(void *, u_long, caddr_t, int, struct proc *);
struct zts_softc {
struct device sc_dev;
struct timeout sc_ts_poll;
void *sc_gh;
void *sc_powerhook;
int sc_enabled;
int sc_buttons; /* button emulation ? */
struct device *sc_wsmousedev;
int sc_oldx;
int sc_oldy;
int sc_resx;
int sc_resy;
};
struct cfattach zts_ca = {
sizeof(struct zts_softc), zts_match, zts_attach
};
struct cfdriver zts_cd = {
NULL, "zts", DV_DULL
};
int
zts_match(struct device *parent, void *cf, void *aux)
{
return 1;
}
const struct wsmouse_accessops zts_accessops = {
zts_enable,
zts_ioctl,
zts_disable
};
void
zts_attach(struct device *parent, struct device *self, void *aux)
{
struct zts_softc *sc = (struct zts_softc *)self;
struct wsmousedev_attach_args a;
timeout_set(&sc->sc_ts_poll, zts_poll, sc);
/* Initialize ADS7846 Difference Reference mode */
(void)zssp_ic_send(ZSSP_IC_ADS7846,
(1<<ADSCTRL_ADR_SH) | (1<<ADSCTRL_STS_SH));
delay(5000);
(void)zssp_ic_send(ZSSP_IC_ADS7846,
(3<<ADSCTRL_ADR_SH) | (1<<ADSCTRL_STS_SH));
delay(5000);
(void)zssp_ic_send(ZSSP_IC_ADS7846,
(4<<ADSCTRL_ADR_SH) | (1<<ADSCTRL_STS_SH));
delay(5000);
(void)zssp_ic_send(ZSSP_IC_ADS7846,
(5<<ADSCTRL_ADR_SH) | (1<<ADSCTRL_STS_SH));
delay(5000);
a.accessops = &zts_accessops;
a.accesscookie = sc;
printf("\n");
sc->sc_resx = CURRENT_DISPLAY->panel_height;
sc->sc_resy = CURRENT_DISPLAY->panel_width;
sc->sc_wsmousedev = config_found(self, &a, wsmousedevprint);
}
int
zts_enable(void *v)
{
struct zts_softc *sc = v;
if (sc->sc_enabled)
return EBUSY;
timeout_del(&sc->sc_ts_poll);
sc->sc_powerhook = powerhook_establish(zts_power, sc);
if (sc->sc_powerhook == NULL) {
printf("%s: enable failed\n", sc->sc_dev.dv_xname);
return ENOMEM;
}
pxa2x0_gpio_set_function(GPIO_TP_INT_C3K, GPIO_IN);
/* XXX */
if (sc->sc_gh == NULL)
sc->sc_gh = pxa2x0_gpio_intr_establish(GPIO_TP_INT_C3K,
IST_EDGE_FALLING, IPL_TTY, zts_irq, sc,
sc->sc_dev.dv_xname);
else
pxa2x0_gpio_intr_unmask(sc->sc_gh);
/* enable interrupts */
sc->sc_enabled = 1;
sc->sc_buttons = 0;
return 0;
}
void
zts_disable(void *v)
{
struct zts_softc *sc = v;
timeout_del(&sc->sc_ts_poll);
if (sc->sc_powerhook != NULL) {
powerhook_disestablish(sc->sc_powerhook);
sc->sc_powerhook = NULL;
}
if (sc->sc_gh != NULL) {
#if 0
pxa2x0_gpio_intr_disestablish(sc->sc_gh);
sc->sc_gh = NULL;
#endif
}
/* disable interrupts */
sc->sc_enabled = 0;
}
void
zts_power(int why, void *v)
{
struct zts_softc *sc = v;
switch (why) {
case PWR_STANDBY:
case PWR_SUSPEND:
sc->sc_enabled = 0;
#if 0
pxa2x0_gpio_intr_disestablish(sc->sc_gh);
#endif
timeout_del(&sc->sc_ts_poll);
pxa2x0_gpio_intr_mask(sc->sc_gh);
/* Turn off reference voltage but leave ADC on. */
(void)zssp_ic_send(ZSSP_IC_ADS7846, (1 << ADSCTRL_PD1_SH) |
(1 << ADSCTRL_ADR_SH) | (1 << ADSCTRL_STS_SH));
pxa2x0_gpio_set_function(GPIO_TP_INT_C3K,
GPIO_OUT | GPIO_SET);
break;
case PWR_RESUME:
pxa2x0_gpio_set_function(GPIO_TP_INT_C3K, GPIO_IN);
pxa2x0_gpio_intr_mask(sc->sc_gh);
/* Enable automatic low power mode. */
(void)zssp_ic_send(ZSSP_IC_ADS7846,
(4 << ADSCTRL_ADR_SH) | (1 << ADSCTRL_STS_SH));
#if 0
sc->sc_gh = pxa2x0_gpio_intr_establish(GPIO_TP_INT_C3K,
IST_EDGE_FALLING, IPL_TTY, zts_irq, sc,
sc->sc_dev.dv_xname);
#else
pxa2x0_gpio_intr_unmask(sc->sc_gh);
#endif
sc->sc_enabled = 1;
break;
}
}
struct zts_pos {
int x;
int y;
int z; /* touch pressure */
};
#define NSAMPLES 3
struct zts_pos zts_samples[NSAMPLES];
int ztsavgloaded = 0;
int zts_readpos(struct zts_pos *);
void zts_avgpos(struct zts_pos *);
#define HSYNC() \
do { \
while (pxa2x0_gpio_get_bit(GPIO_HSYNC_C3K) == 0); \
while (pxa2x0_gpio_get_bit(GPIO_HSYNC_C3K) != 0); \
} while (0)
int pxa2x0_ccnt_enable(int);
u_int32_t pxa2x0_read_ccnt(void);
u_int32_t zts_sync_ads784x(int, int, u_int32_t);
void zts_sync_send(u_int32_t);
int
pxa2x0_ccnt_enable(int on)
{
u_int32_t rv;
on = on ? 0x1 : 0x0;
__asm __volatile("mrc p14, 0, %0, c0, c1, 0" : "=r" (rv));
__asm __volatile("mcr p14, 0, %0, c0, c1, 0" : : "r" (on));
return ((int)(rv & 0x1));
}
u_int32_t
pxa2x0_read_ccnt(void)
{
u_int32_t rv;
__asm __volatile("mrc p14, 0, %0, c1, c1, 0" : "=r" (rv));
return (rv);
}
/*
* Communicate synchronously with the ADS784x touch screen controller.
*/
u_int32_t
zts_sync_ads784x(int dorecv/* XXX */, int dosend/* XXX */, u_int32_t cmd)
{
int ccen;
u_int32_t rv;
/* XXX poll hsync only if LCD is enabled */
/* start clock counter */
ccen = pxa2x0_ccnt_enable(1);
HSYNC();
if (dorecv)
/* read SSDR and disable ADS784x */
rv = zssp_ic_stop(ZSSP_IC_ADS7846);
else
rv = 0;
if (dosend)
zts_sync_send(cmd);
/* stop clock counter */
pxa2x0_ccnt_enable(ccen);
return (rv);
}
void
zts_sync_send(u_int32_t cmd)
{
u_int32_t tck;
u_int32_t a, b;
/* XXX */
tck = CCNT_HS_400_VGA_C3K - 151;
/* send dummy command; discard SSDR */
(void)zssp_ic_send(ZSSP_IC_ADS7846, cmd);
/* wait for refresh */
HSYNC();
/* wait after refresh */
a = pxa2x0_read_ccnt();
b = pxa2x0_read_ccnt();
while ((b - a) < tck)
b = pxa2x0_read_ccnt();
/* send the actual command; keep ADS784x enabled */
zssp_ic_start(ZSSP_IC_ADS7846, cmd);
}
int
zts_readpos(struct zts_pos *pos)
{
int cmd;
int t0, t1;
int down;
/* XXX */
pxa2x0_gpio_set_function(GPIO_HSYNC_C3K, GPIO_IN);
/* check that pen is down */
cmd = (1 << ADSCTRL_PD0_SH) | (1 << ADSCTRL_PD1_SH) |
(3 << ADSCTRL_ADR_SH) | (1 << ADSCTRL_STS_SH);
t0 = zssp_ic_send(ZSSP_IC_ADS7846, cmd);
down = !(t0 < 10);
if (down == 0)
goto out;
/* Y */
cmd = (1 << ADSCTRL_PD0_SH) | (1 << ADSCTRL_PD1_SH) |
(1 << ADSCTRL_ADR_SH) | (1 << ADSCTRL_STS_SH);
(void)zts_sync_ads784x(0, 1, cmd);
/* Y */
cmd = (1 << ADSCTRL_PD0_SH) | (1 << ADSCTRL_PD1_SH) |
(1 << ADSCTRL_ADR_SH) | (1 << ADSCTRL_STS_SH);
(void)zts_sync_ads784x(1, 1, cmd);
/* X */
cmd = (1 << ADSCTRL_PD0_SH) | (1 << ADSCTRL_PD1_SH) |
(5 << ADSCTRL_ADR_SH) | (1 << ADSCTRL_STS_SH);
pos->y = zts_sync_ads784x(1, 1, cmd);
/* T0 */
cmd = (1 << ADSCTRL_PD0_SH) | (1 << ADSCTRL_PD1_SH) |
(3 << ADSCTRL_ADR_SH) | (1 << ADSCTRL_STS_SH);
pos->x = zts_sync_ads784x(1, 1, cmd);
/* T1 */
cmd = (1 << ADSCTRL_PD0_SH) | (1 << ADSCTRL_PD1_SH) |
(4 << ADSCTRL_ADR_SH) | (1 << ADSCTRL_STS_SH);
t0 = zts_sync_ads784x(1, 1, cmd);
t1 = zts_sync_ads784x(1, 0, cmd);
/* check that pen is still down */
/* XXX pressure sensitivity varies with X or what? */
if (t0 == 0 || (pos->x * (t1 - t0) / t0) >= 15000)
down = 0;
pos->z = down;
out:
/* Enable automatic low power mode. */
cmd = (4 << ADSCTRL_ADR_SH) | (1 << ADSCTRL_STS_SH);
(void)zssp_ic_send(ZSSP_IC_ADS7846, cmd);
return (down);
}
#define NAVGSAMPLES (NSAMPLES < 3 ? NSAMPLES : 3)
void
zts_avgpos(struct zts_pos *pos)
{
struct zts_pos *tpp = zts_samples;
int diff[NAVGSAMPLES];
int mindiff, mindiffv;
int n;
int i;
static int tail;
if (ztsavgloaded < NAVGSAMPLES) {
tpp[(tail + ztsavgloaded) % NSAMPLES] = *pos;
ztsavgloaded++;
return;
}
tpp[tail] = *pos;
tail = (tail+1) % NSAMPLES;
/* X */
i = tail;
for (n = 0 ; n < NAVGSAMPLES; n++) {
int alt;
alt = (i+1) % NSAMPLES;
diff[n] = tpp[i].x - tpp[alt].x;
if (diff[n] < 0)
diff[n] = - diff[n]; /* ABS */
i = alt;
}
mindiffv = diff[0];
mindiff = 0;
for (n = 1; n < NAVGSAMPLES; n++) {
if (diff[n] < mindiffv) {
mindiffv = diff[n];
mindiff = n;
}
}
pos->x = (tpp[(tail + mindiff) % NSAMPLES].x +
tpp[(tail + mindiff + 1) % NSAMPLES].x) / 2;
/* Y */
i = tail;
for (n = 0 ; n < NAVGSAMPLES; n++) {
int alt;
alt = (i+1) % NSAMPLES;
diff[n] = tpp[i].y - tpp[alt].y;
if (diff[n] < 0)
diff[n] = - diff[n]; /* ABS */
i = alt;
}
mindiffv = diff[0];
mindiff = 0;
for (n = 1; n < NAVGSAMPLES; n++) {
if (diff[n] < mindiffv) {
mindiffv = diff[n];
mindiff = n;
}
}
pos->y = (tpp[(tail + mindiff) % NSAMPLES].y +
tpp[(tail + mindiff + 1) % NSAMPLES].y) / 2;
}
void
zts_poll(void *v)
{
int s;
s = spltty();
(void)zts_irq(v);
splx(s);
}
#define TS_STABLE 8
int
zts_irq(void *v)
{
struct zts_softc *sc = v;
struct zts_pos tp;
int s;
int pindown;
int down;
extern int zkbd_modstate;
if (!sc->sc_enabled)
return 0;
s = splhigh();
pindown = pxa2x0_gpio_get_bit(GPIO_TP_INT_C3K) ? 0 : 1;
if (pindown) {
pxa2x0_gpio_intr_mask(sc->sc_gh);
timeout_add(&sc->sc_ts_poll, POLL_TIMEOUT_RATE1);
}
down = zts_readpos(&tp);
if (!pindown) {
pxa2x0_gpio_intr_unmask(sc->sc_gh);
timeout_add(&sc->sc_ts_poll, POLL_TIMEOUT_RATE0);
ztsavgloaded = 0;
}
pxa2x0_gpio_clear_intr(GPIO_TP_INT_C3K);
splx(s);
if (down) {
zts_avgpos(&tp);
if (!zts_rawmode) {
struct ztsscale *tsp = &zts_scale;
/* Scale down to the screen resolution. */
tp.x = ((tp.x - tsp->ts_minx) * sc->sc_resx) /
(tsp->ts_maxx - tsp->ts_minx);
tp.y = ((tp.y - tsp->ts_miny) * sc->sc_resy) /
(tsp->ts_maxy - tsp->ts_miny);
}
}
if (zkbd_modstate != 0 && down) {
if(zkbd_modstate & (1 << 1)) {
/* Fn */
down = 2;
}
if(zkbd_modstate & (1 << 2)) {
/* 'Alt' */
down = 4;
}
}
if (!down) {
/* x/y values are not reliable when pen is up */
tp.x = sc->sc_oldx;
tp.y = sc->sc_oldy;
}
if (down || sc->sc_buttons != down) {
wsmouse_input(sc->sc_wsmousedev, down, tp.x, tp.y, 0 /* z */,
WSMOUSE_INPUT_ABSOLUTE_X | WSMOUSE_INPUT_ABSOLUTE_Y |
WSMOUSE_INPUT_ABSOLUTE_Z);
sc->sc_buttons = down;
sc->sc_oldx = tp.x;
sc->sc_oldy = tp.y;
}
return 1;
}
int
zts_ioctl(void *v, u_long cmd, caddr_t data, int flag, struct proc *p)
{
switch (cmd) {
case WSMOUSEIO_GTYPE:
*(u_int *)data = WSMOUSE_TYPE_TPANEL;
return (0);
}
return (-1);
}
|