4 * Copyright (c) 2006 Andrzej Zaborowski <balrog@zabor.org>
5 * Copyright (C) 2008 Nokia Corporation
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 or
10 * (at your option) version 3 of the License.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "qemu-timer.h"
27 #define TSC_CUT_RESOLUTION(value, p) ((value) >> (16 - (p ? 12 : 10)))
29 struct tsc2005_state_s {
30 qemu_irq pint; /* Combination of the nPENIRQ and DAV signals */
37 int state, reg, irq, command;
61 TSC_MODE_XYZ_SCAN = 0x0,
79 static const uint16_t mode_regs[16] = {
80 0xf000, /* X, Y, Z scan */
81 0xc000, /* X, Y scan */
88 0x0800, /* AUX scan */
91 0x0080, /* Short-circuit test */
92 0x0000, /* Reserved */
93 0x0000, /* X+, X- drivers */
94 0x0000, /* Y+, Y- drivers */
95 0x0000, /* Y+, X- drivers */
98 #define X_TRANSFORM(s) \
99 ((s->y * s->tr[0] - s->x * s->tr[1]) / s->tr[2] + s->tr[3])
100 #define Y_TRANSFORM(s) \
101 ((s->y * s->tr[4] - s->x * s->tr[5]) / s->tr[6] + s->tr[7])
102 #define Z1_TRANSFORM(s) \
103 ((400 - ((s)->x >> 7) + ((s)->pressure << 10)) << 4)
104 #define Z2_TRANSFORM(s) \
105 ((4000 + ((s)->y >> 7) - ((s)->pressure << 10)) << 4)
107 #define AUX_VAL (700 << 4) /* +/- 3 at 12-bit */
108 #define TEMP1_VAL (1264 << 4) /* +/- 5 at 12-bit */
109 #define TEMP2_VAL (1531 << 4) /* +/- 5 at 12-bit */
111 static uint16_t tsc2005_read(struct tsc2005_state_s *s, int reg)
117 s->dav &= ~mode_regs[TSC_MODE_X];
118 return TSC_CUT_RESOLUTION(X_TRANSFORM(s), s->precision) +
121 s->dav &= ~mode_regs[TSC_MODE_Y];
123 return TSC_CUT_RESOLUTION(Y_TRANSFORM(s), s->precision) ^
127 return TSC_CUT_RESOLUTION(Z1_TRANSFORM(s), s->precision) -
131 return TSC_CUT_RESOLUTION(Z2_TRANSFORM(s), s->precision) |
135 s->dav &= ~mode_regs[TSC_MODE_AUX];
136 return TSC_CUT_RESOLUTION(AUX_VAL, s->precision);
138 case 0x5: /* TEMP1 */
139 s->dav &= ~mode_regs[TSC_MODE_TEMP1];
140 return TSC_CUT_RESOLUTION(TEMP1_VAL, s->precision) -
142 case 0x6: /* TEMP2 */
144 s->dav &= ~mode_regs[TSC_MODE_TEMP2];
145 return TSC_CUT_RESOLUTION(TEMP2_VAL, s->precision) ^
148 case 0x7: /* Status */
149 ret = s->dav | (s->reset << 7) | (s->pdst << 2) | 0x0;
150 s->dav &= ~(mode_regs[TSC_MODE_X_TEST] | mode_regs[TSC_MODE_Y_TEST] |
151 mode_regs[TSC_MODE_TS_TEST]);
155 case 0x8: /* AUX high treshold */
156 return s->aux_thr[1];
157 case 0x9: /* AUX low treshold */
158 return s->aux_thr[0];
160 case 0xa: /* TEMP high treshold */
161 return s->temp_thr[1];
162 case 0xb: /* TEMP low treshold */
163 return s->temp_thr[0];
166 return (s->pressure << 15) | ((!s->busy) << 14) |
167 (s->nextprecision << 13) | s->timing[0];
171 return (s->pin_func << 14) | s->filter;
173 case 0xf: /* Function select status */
174 return s->function >= 0 ? 1 << s->function : 0;
177 /* Never gets here */
181 static void tsc2005_write(struct tsc2005_state_s *s, int reg, uint16_t data)
184 case 0x8: /* AUX high treshold */
185 s->aux_thr[1] = data;
187 case 0x9: /* AUX low treshold */
188 s->aux_thr[0] = data;
191 case 0xa: /* TEMP high treshold */
192 s->temp_thr[1] = data;
194 case 0xb: /* TEMP low treshold */
195 s->temp_thr[0] = data;
199 s->host_mode = data >> 15;
200 if (s->enabled != !(data & 0x4000)) {
201 s->enabled = !(data & 0x4000);
202 fprintf(stderr, "%s: touchscreen sense %sabled\n",
203 __FUNCTION__, s->enabled ? "en" : "dis");
204 if (s->busy && !s->enabled)
205 qemu_del_timer(s->timer);
206 s->busy &= s->enabled;
208 s->nextprecision = (data >> 13) & 1;
209 s->timing[0] = data & 0x1fff;
210 if ((s->timing[0] >> 11) == 3)
211 fprintf(stderr, "%s: illegal conversion clock setting\n",
215 s->timing[1] = data & 0xf07;
218 s->pin_func = (data >> 14) & 3;
219 s->filter = data & 0x3fff;
223 fprintf(stderr, "%s: write into read-only register %x\n",
228 /* This handles most of the chip's logic. */
229 static void tsc2005_pin_update(struct tsc2005_state_s *s)
234 switch (s->pin_func) {
236 pin_state = !s->pressure && !!s->dav;
244 pin_state = !s->pressure;
247 if (pin_state != s->irq) {
249 qemu_set_irq(s->pint, s->irq);
252 switch (s->nextfunction) {
253 case TSC_MODE_XYZ_SCAN:
254 case TSC_MODE_XY_SCAN:
255 if (!s->host_mode && s->dav)
260 case TSC_MODE_AUX_SCAN:
272 case TSC_MODE_X_TEST:
273 case TSC_MODE_Y_TEST:
274 case TSC_MODE_TS_TEST:
279 case TSC_MODE_RESERVED:
280 case TSC_MODE_XX_DRV:
281 case TSC_MODE_YY_DRV:
282 case TSC_MODE_YX_DRV:
287 if (!s->enabled || s->busy)
291 s->precision = s->nextprecision;
292 s->function = s->nextfunction;
293 s->pdst = !s->pnd0; /* Synchronised on internal clock */
294 expires = qemu_get_clock(vm_clock) + (ticks_per_sec >> 7);
295 qemu_mod_timer(s->timer, expires);
298 static void tsc2005_reset(struct tsc2005_state_s *s)
304 s->nextprecision = 0;
314 s->temp_thr[0] = 0x000;
315 s->temp_thr[1] = 0xfff;
316 s->aux_thr[0] = 0x000;
317 s->aux_thr[1] = 0xfff;
319 tsc2005_pin_update(s);
322 static uint8_t tsc2005_txrx_word(void *opaque, uint8_t value)
324 struct tsc2005_state_s *s = opaque;
327 switch (s->state ++) {
331 if (value & (1 << 1))
334 s->nextfunction = (value >> 3) & 0xf;
335 s->nextprecision = (value >> 2) & 1;
336 if (s->enabled != !(value & 1)) {
337 s->enabled = !(value & 1);
338 fprintf(stderr, "%s: touchscreen sense %sabled\n",
339 __FUNCTION__, s->enabled ? "en" : "dis");
340 if (s->busy && !s->enabled)
341 qemu_del_timer(s->timer);
342 s->busy &= s->enabled;
344 tsc2005_pin_update(s);
350 s->reg = (value >> 3) & 0xf;
351 s->pnd0 = (value >> 1) & 1;
352 s->command = value & 1;
356 s->data = tsc2005_read(s, s->reg);
357 tsc2005_pin_update(s);
366 ret = (s->data >> 8) & 0xff;
368 s->data |= value << 8;
373 ret = s->data & 0xff;
376 tsc2005_write(s, s->reg, s->data);
377 tsc2005_pin_update(s);
387 uint32_t tsc2005_txrx(void *opaque, uint32_t value, int len)
394 ret |= tsc2005_txrx_word(opaque, (value >> len) & 0xff) << len;
400 static void tsc2005_timer_tick(void *opaque)
402 struct tsc2005_state_s *s = opaque;
404 /* Timer ticked -- a set of conversions has been finished. */
410 s->dav |= mode_regs[s->function];
412 tsc2005_pin_update(s);
415 static void tsc2005_touchscreen_event(void *opaque,
416 int x, int y, int z, int buttons_state)
418 struct tsc2005_state_s *s = opaque;
425 s->pressure = !!buttons_state;
428 * Note: We would get better responsiveness in the guest by
429 * signaling TS events immediately, but for now we simulate
430 * the first conversion delay for sake of correctness.
432 if (p != s->pressure)
433 tsc2005_pin_update(s);
436 static void tsc2005_save(QEMUFile *f, void *opaque)
438 struct tsc2005_state_s *s = (struct tsc2005_state_s *) opaque;
441 qemu_put_be16(f, s->x);
442 qemu_put_be16(f, s->y);
443 qemu_put_byte(f, s->pressure);
445 qemu_put_byte(f, s->state);
446 qemu_put_byte(f, s->reg);
447 qemu_put_byte(f, s->command);
449 qemu_put_byte(f, s->irq);
450 qemu_put_be16s(f, &s->dav);
451 qemu_put_be16s(f, &s->data);
453 qemu_put_timer(f, s->timer);
454 qemu_put_byte(f, s->enabled);
455 qemu_put_byte(f, s->host_mode);
456 qemu_put_byte(f, s->function);
457 qemu_put_byte(f, s->nextfunction);
458 qemu_put_byte(f, s->precision);
459 qemu_put_byte(f, s->nextprecision);
460 qemu_put_be16(f, s->filter);
461 qemu_put_byte(f, s->pin_func);
462 qemu_put_be16(f, s->timing[0]);
463 qemu_put_be16(f, s->timing[1]);
464 qemu_put_be16s(f, &s->temp_thr[0]);
465 qemu_put_be16s(f, &s->temp_thr[1]);
466 qemu_put_be16s(f, &s->aux_thr[0]);
467 qemu_put_be16s(f, &s->aux_thr[1]);
468 qemu_put_be32(f, s->noise);
469 qemu_put_byte(f, s->reset);
470 qemu_put_byte(f, s->pdst);
471 qemu_put_byte(f, s->pnd0);
473 for (i = 0; i < 8; i ++)
474 qemu_put_be32(f, s->tr[i]);
477 static int tsc2005_load(QEMUFile *f, void *opaque, int version_id)
479 struct tsc2005_state_s *s = (struct tsc2005_state_s *) opaque;
482 s->x = qemu_get_be16(f);
483 s->y = qemu_get_be16(f);
484 s->pressure = qemu_get_byte(f);
486 s->state = qemu_get_byte(f);
487 s->reg = qemu_get_byte(f);
488 s->command = qemu_get_byte(f);
490 s->irq = qemu_get_byte(f);
491 qemu_get_be16s(f, &s->dav);
492 qemu_get_be16s(f, &s->data);
494 qemu_get_timer(f, s->timer);
495 s->enabled = qemu_get_byte(f);
496 s->host_mode = qemu_get_byte(f);
497 s->function = qemu_get_byte(f);
498 s->nextfunction = qemu_get_byte(f);
499 s->precision = qemu_get_byte(f);
500 s->nextprecision = qemu_get_byte(f);
501 s->filter = qemu_get_be16(f);
502 s->pin_func = qemu_get_byte(f);
503 s->timing[0] = qemu_get_be16(f);
504 s->timing[1] = qemu_get_be16(f);
505 qemu_get_be16s(f, &s->temp_thr[0]);
506 qemu_get_be16s(f, &s->temp_thr[1]);
507 qemu_get_be16s(f, &s->aux_thr[0]);
508 qemu_get_be16s(f, &s->aux_thr[1]);
509 s->noise = qemu_get_be32(f);
510 s->reset = qemu_get_byte(f);
511 s->pdst = qemu_get_byte(f);
512 s->pnd0 = qemu_get_byte(f);
514 for (i = 0; i < 8; i ++)
515 s->tr[i] = qemu_get_be32(f);
517 s->busy = qemu_timer_pending(s->timer);
518 tsc2005_pin_update(s);
523 void *tsc2005_init(qemu_irq pintdav)
525 struct tsc2005_state_s *s;
527 s = (struct tsc2005_state_s *)
528 qemu_mallocz(sizeof(struct tsc2005_state_s));
532 s->precision = s->nextprecision = 0;
533 s->timer = qemu_new_timer(vm_clock, tsc2005_timer_tick, s);
548 qemu_add_mouse_event_handler(tsc2005_touchscreen_event, s, 1,
549 "QEMU TSC2005-driven Touchscreen");
551 qemu_register_reset((void *) tsc2005_reset, s);
552 register_savevm("tsc2005", -1, 0, tsc2005_save, tsc2005_load, s);
558 * Use tslib generated calibration data to generate ADC input values
559 * from the touchscreen. Assuming 12-bit precision was used during
562 void tsc2005_set_transform(void *opaque, struct mouse_transform_info_s *info)
564 struct tsc2005_state_s *s = (struct tsc2005_state_s *) opaque;
566 /* This version assumes touchscreen X & Y axis are parallel or
567 * perpendicular to LCD's X & Y axis in some way. */
568 if (abs(info->a[0]) > abs(info->a[1])) {
570 s->tr[1] = -info->a[6] * info->x;
571 s->tr[2] = info->a[0];
572 s->tr[3] = -info->a[2] / info->a[0];
573 s->tr[4] = info->a[6] * info->y;
575 s->tr[6] = info->a[4];
576 s->tr[7] = -info->a[5] / info->a[4];
578 s->tr[0] = info->a[6] * info->y;
580 s->tr[2] = info->a[1];
581 s->tr[3] = -info->a[2] / info->a[1];
583 s->tr[5] = -info->a[6] * info->x;
584 s->tr[6] = info->a[3];
585 s->tr[7] = -info->a[5] / info->a[3];