2 * TI TSC2102 (touchscreen/sensors/audio controller) emulator.
3 * TI TSC2301 (touchscreen/sensors/keypad).
5 * Copyright (c) 2006 Andrzej Zaborowski <balrog@zabor.org>
6 * Copyright (C) 2008 Nokia Corporation
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 or
11 * (at your option) version 3 of the License.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include "audio/audio.h"
25 #include "qemu-timer.h"
27 #include "omap.h" /* For I2SCodec and uWireSlave */
30 #define TSC_DATA_REGISTERS_PAGE 0x0
31 #define TSC_CONTROL_REGISTERS_PAGE 0x1
32 #define TSC_AUDIO_REGISTERS_PAGE 0x2
36 #define TSC_CUT_RESOLUTION(value, p) ((value) >> (16 - resolution[p]))
46 uint8_t in_fifo
[16384];
47 uint8_t out_fifo
[16384];
53 int state
, page
, offset
, irq
;
54 uint16_t command
, dav
;
74 int64_t volume_change
;
78 uint16_t filter_data
[0x14];
81 SWVoiceIn
*adc_voice
[1];
82 SWVoiceOut
*dac_voice
[1];
98 static const int resolution
[4] = { 12, 8, 10, 12 };
100 #define TSC_MODE_NO_SCAN 0x0
101 #define TSC_MODE_XY_SCAN 0x1
102 #define TSC_MODE_XYZ_SCAN 0x2
103 #define TSC_MODE_X 0x3
104 #define TSC_MODE_Y 0x4
105 #define TSC_MODE_Z 0x5
106 #define TSC_MODE_BAT1 0x6
107 #define TSC_MODE_BAT2 0x7
108 #define TSC_MODE_AUX 0x8
109 #define TSC_MODE_AUX_SCAN 0x9
110 #define TSC_MODE_TEMP1 0xa
111 #define TSC_MODE_PORT_SCAN 0xb
112 #define TSC_MODE_TEMP2 0xc
113 #define TSC_MODE_XX_DRV 0xd
114 #define TSC_MODE_YY_DRV 0xe
115 #define TSC_MODE_YX_DRV 0xf
117 static const uint16_t mode_regs
[16] = {
118 0x0000, /* No scan */
119 0x0600, /* X, Y scan */
120 0x0780, /* X, Y, Z scan */
127 0x0010, /* AUX scan */
129 0x0070, /* Port scan */
131 0x0000, /* X+, X- drivers */
132 0x0000, /* Y+, Y- drivers */
133 0x0000, /* Y+, X- drivers */
136 #define X_TRANSFORM(s) \
137 ((s->y * s->tr[0] - s->x * s->tr[1]) / s->tr[2] + s->tr[3])
138 #define Y_TRANSFORM(s) \
139 ((s->y * s->tr[4] - s->x * s->tr[5]) / s->tr[6] + s->tr[7])
140 #define Z1_TRANSFORM(s) \
141 ((400 - ((s)->x >> 7) + ((s)->pressure << 10)) << 4)
142 #define Z2_TRANSFORM(s) \
143 ((4000 + ((s)->y >> 7) - ((s)->pressure << 10)) << 4)
145 #define BAT1_VAL 0x8660
146 #define BAT2_VAL 0x0000
147 #define AUX1_VAL 0x35c0
148 #define AUX2_VAL 0xffff
149 #define TEMP1_VAL 0x8c70
150 #define TEMP2_VAL 0xa5b0
152 #define TSC_POWEROFF_DELAY 50
153 #define TSC_SOFTSTEP_DELAY 50
155 static void tsc210x_reset(TSC210xState
*s
)
167 s
->audio_ctrl1
= 0x0000;
168 s
->audio_ctrl2
= 0x4410;
169 s
->audio_ctrl3
= 0x0000;
174 s
->dac_power
= 0x8540;
176 s
->volume_change
= 0;
178 s
->filter_data
[0x00] = 0x6be3;
179 s
->filter_data
[0x01] = 0x9666;
180 s
->filter_data
[0x02] = 0x675d;
181 s
->filter_data
[0x03] = 0x6be3;
182 s
->filter_data
[0x04] = 0x9666;
183 s
->filter_data
[0x05] = 0x675d;
184 s
->filter_data
[0x06] = 0x7d83;
185 s
->filter_data
[0x07] = 0x84ee;
186 s
->filter_data
[0x08] = 0x7d83;
187 s
->filter_data
[0x09] = 0x84ee;
188 s
->filter_data
[0x0a] = 0x6be3;
189 s
->filter_data
[0x0b] = 0x9666;
190 s
->filter_data
[0x0c] = 0x675d;
191 s
->filter_data
[0x0d] = 0x6be3;
192 s
->filter_data
[0x0e] = 0x9666;
193 s
->filter_data
[0x0f] = 0x675d;
194 s
->filter_data
[0x10] = 0x7d83;
195 s
->filter_data
[0x11] = 0x84ee;
196 s
->filter_data
[0x12] = 0x7d83;
197 s
->filter_data
[0x13] = 0x84ee;
208 qemu_set_irq(s
->pint
, !s
->irq
);
209 qemu_set_irq(s
->davint
, !s
->dav
);
210 qemu_irq_raise(s
->kbint
);
219 /* { rate, dsor, fsref } */
220 static const TSC210xRateInfo tsc2101_rates
[] = {
249 /* { rate, dsor, fsref } */
250 static const TSC210xRateInfo tsc2102_rates
[] = {
279 static inline void tsc210x_out_flush(TSC210xState
*s
, int len
)
281 uint8_t *data
= s
->codec
.out
.fifo
+ s
->codec
.out
.start
;
282 uint8_t *end
= data
+ len
;
285 data
+= AUD_write(s
->dac_voice
[0], data
, end
- data
) ?: (end
- data
);
287 s
->codec
.out
.len
-= len
;
288 if (s
->codec
.out
.len
)
289 memmove(s
->codec
.out
.fifo
, end
, s
->codec
.out
.len
);
290 s
->codec
.out
.start
= 0;
293 static void tsc210x_audio_out_cb(TSC210xState
*s
, int free_b
)
295 if (s
->codec
.out
.len
>= free_b
) {
296 tsc210x_out_flush(s
, free_b
);
300 s
->codec
.out
.size
= MIN(free_b
, 16384);
301 qemu_irq_raise(s
->codec
.tx_start
);
304 static void tsc2102_audio_rate_update(TSC210xState
*s
)
306 const TSC210xRateInfo
*rate
;
308 s
->codec
.tx_rate
= 0;
309 s
->codec
.rx_rate
= 0;
310 if (s
->dac_power
& (1 << 15)) /* PWDNC */
313 for (rate
= tsc2102_rates
; rate
->rate
; rate
++)
314 if (rate
->dsor
== (s
->audio_ctrl1
& 0x3f) && /* DACFS */
315 rate
->fsref
== ((s
->audio_ctrl3
>> 13) & 1))/* REFFS */
318 printf("%s: unknown sampling rate configured\n", __FUNCTION__
);
322 s
->codec
.tx_rate
= rate
->rate
;
325 static void tsc2102_audio_output_update(TSC210xState
*s
)
328 struct audsettings fmt
;
330 if (s
->dac_voice
[0]) {
331 tsc210x_out_flush(s
, s
->codec
.out
.len
);
332 s
->codec
.out
.size
= 0;
333 AUD_set_active_out(s
->dac_voice
[0], 0);
334 AUD_close_out(&s
->card
, s
->dac_voice
[0]);
340 (~s
->dac_power
& (1 << 15)) && /* PWDNC */
341 (~s
->dac_power
& (1 << 10)); /* DAPWDN */
342 if (!enable
|| !s
->codec
.tx_rate
)
345 /* Force our own sampling rate even in slave DAC mode */
348 fmt
.freq
= s
->codec
.tx_rate
;
349 fmt
.fmt
= AUD_FMT_S16
;
351 s
->dac_voice
[0] = AUD_open_out(&s
->card
, s
->dac_voice
[0],
352 "tsc2102.sink", s
, (void *) tsc210x_audio_out_cb
, &fmt
);
353 if (s
->dac_voice
[0]) {
355 AUD_set_active_out(s
->dac_voice
[0], 1);
359 static uint16_t tsc2102_data_register_read(TSC210xState
*s
, int reg
)
364 return TSC_CUT_RESOLUTION(X_TRANSFORM(s
), s
->precision
) +
370 return TSC_CUT_RESOLUTION(Y_TRANSFORM(s
), s
->precision
) ^
375 return TSC_CUT_RESOLUTION(Z1_TRANSFORM(s
), s
->precision
) -
380 return TSC_CUT_RESOLUTION(Z2_TRANSFORM(s
), s
->precision
) |
383 case 0x04: /* KPData */
384 if ((s
->model
& 0xff00) == 0x2300) {
385 if (s
->kb
.intr
&& (s
->kb
.mode
& 2)) {
387 qemu_irq_raise(s
->kbint
);
394 case 0x05: /* BAT1 */
396 return TSC_CUT_RESOLUTION(BAT1_VAL
, s
->precision
) +
399 case 0x06: /* BAT2 */
401 return TSC_CUT_RESOLUTION(BAT2_VAL
, s
->precision
);
403 case 0x07: /* AUX1 */
405 return TSC_CUT_RESOLUTION(AUX1_VAL
, s
->precision
);
407 case 0x08: /* AUX2 */
411 case 0x09: /* TEMP1 */
413 return TSC_CUT_RESOLUTION(TEMP1_VAL
, s
->precision
) -
416 case 0x0a: /* TEMP2 */
418 return TSC_CUT_RESOLUTION(TEMP2_VAL
, s
->precision
) ^
427 fprintf(stderr
, "tsc2102_data_register_read: "
428 "no such register: 0x%02x\n", reg
);
434 static uint16_t tsc2102_control_register_read(
435 TSC210xState
*s
, int reg
)
438 case 0x00: /* TSC ADC */
439 return (s
->pressure
<< 15) | ((!s
->busy
) << 14) |
440 (s
->nextfunction
<< 10) | (s
->nextprecision
<< 8) | s
->filter
;
442 case 0x01: /* Status / Keypad Control */
443 if ((s
->model
& 0xff00) == 0x2100)
444 return (s
->pin_func
<< 14) | ((!s
->enabled
) << 13) |
445 (s
->host_mode
<< 12) | ((!!s
->dav
) << 11) | s
->dav
;
447 return (s
->kb
.intr
<< 15) | ((s
->kb
.scan
|| !s
->kb
.down
) << 14) |
448 (s
->kb
.debounce
<< 11);
450 case 0x02: /* DAC Control */
451 if ((s
->model
& 0xff00) == 0x2300)
452 return s
->dac_power
& 0x8000;
456 case 0x03: /* Reference */
459 case 0x04: /* Reset */
462 case 0x05: /* Configuration */
465 case 0x06: /* Secondary configuration */
466 if ((s
->model
& 0xff00) == 0x2100)
468 return ((!s
->dav
) << 15) | ((s
->kb
.mode
& 1) << 14) | s
->pll
[2];
470 case 0x10: /* Keypad Mask */
471 if ((s
->model
& 0xff00) == 0x2100)
478 fprintf(stderr
, "tsc2102_control_register_read: "
479 "no such register: 0x%02x\n", reg
);
485 static uint16_t tsc2102_audio_register_read(TSC210xState
*s
, int reg
)
491 case 0x00: /* Audio Control 1 */
492 return s
->audio_ctrl1
;
497 case 0x02: /* DAC Volume Control */
503 case 0x04: /* Audio Control 2 */
506 if (s
->softstep
&& !(s
->dac_power
& (1 << 10))) {
507 l_ch
= (qemu_get_clock(vm_clock
) >
508 s
->volume_change
+ TSC_SOFTSTEP_DELAY
);
509 r_ch
= (qemu_get_clock(vm_clock
) >
510 s
->volume_change
+ TSC_SOFTSTEP_DELAY
);
513 return s
->audio_ctrl2
| (l_ch
<< 3) | (r_ch
<< 2);
515 case 0x05: /* Stereo DAC Power Control */
516 return 0x2aa0 | s
->dac_power
|
517 (((s
->dac_power
& (1 << 10)) &&
518 (qemu_get_clock(vm_clock
) >
519 s
->powerdown
+ TSC_POWEROFF_DELAY
)) << 6);
521 case 0x06: /* Audio Control 3 */
522 val
= s
->audio_ctrl3
| 0x0001;
523 s
->audio_ctrl3
&= 0xff3f;
526 case 0x07: /* LCH_BASS_BOOST_N0 */
527 case 0x08: /* LCH_BASS_BOOST_N1 */
528 case 0x09: /* LCH_BASS_BOOST_N2 */
529 case 0x0a: /* LCH_BASS_BOOST_N3 */
530 case 0x0b: /* LCH_BASS_BOOST_N4 */
531 case 0x0c: /* LCH_BASS_BOOST_N5 */
532 case 0x0d: /* LCH_BASS_BOOST_D1 */
533 case 0x0e: /* LCH_BASS_BOOST_D2 */
534 case 0x0f: /* LCH_BASS_BOOST_D4 */
535 case 0x10: /* LCH_BASS_BOOST_D5 */
536 case 0x11: /* RCH_BASS_BOOST_N0 */
537 case 0x12: /* RCH_BASS_BOOST_N1 */
538 case 0x13: /* RCH_BASS_BOOST_N2 */
539 case 0x14: /* RCH_BASS_BOOST_N3 */
540 case 0x15: /* RCH_BASS_BOOST_N4 */
541 case 0x16: /* RCH_BASS_BOOST_N5 */
542 case 0x17: /* RCH_BASS_BOOST_D1 */
543 case 0x18: /* RCH_BASS_BOOST_D2 */
544 case 0x19: /* RCH_BASS_BOOST_D4 */
545 case 0x1a: /* RCH_BASS_BOOST_D5 */
546 return s
->filter_data
[reg
- 0x07];
548 case 0x1b: /* PLL Programmability 1 */
551 case 0x1c: /* PLL Programmability 2 */
554 case 0x1d: /* Audio Control 4 */
555 return (!s
->softstep
) << 14;
559 fprintf(stderr
, "tsc2102_audio_register_read: "
560 "no such register: 0x%02x\n", reg
);
566 static void tsc2102_data_register_write(
567 TSC210xState
*s
, int reg
, uint16_t value
)
574 case 0x05: /* BAT1 */
575 case 0x06: /* BAT2 */
576 case 0x07: /* AUX1 */
577 case 0x08: /* AUX2 */
578 case 0x09: /* TEMP1 */
579 case 0x0a: /* TEMP2 */
584 fprintf(stderr
, "tsc2102_data_register_write: "
585 "no such register: 0x%02x\n", reg
);
590 static void tsc2102_control_register_write(
591 TSC210xState
*s
, int reg
, uint16_t value
)
594 case 0x00: /* TSC ADC */
595 s
->host_mode
= value
>> 15;
596 s
->enabled
= !(value
& 0x4000);
597 if (s
->busy
&& !s
->enabled
)
598 qemu_del_timer(s
->timer
);
599 s
->busy
&= s
->enabled
;
600 s
->nextfunction
= (value
>> 10) & 0xf;
601 s
->nextprecision
= (value
>> 8) & 3;
602 s
->filter
= value
& 0xff;
605 case 0x01: /* Status / Keypad Control */
606 if ((s
->model
& 0xff00) == 0x2100)
607 s
->pin_func
= value
>> 14;
609 s
->kb
.scan
= (value
>> 14) & 1;
610 s
->kb
.debounce
= (value
>> 11) & 7;
611 if (s
->kb
.intr
&& s
->kb
.scan
) {
613 qemu_irq_raise(s
->kbint
);
618 case 0x02: /* DAC Control */
619 if ((s
->model
& 0xff00) == 0x2300) {
620 s
->dac_power
&= 0x7fff;
621 s
->dac_power
|= 0x8000 & value
;
626 case 0x03: /* Reference */
627 s
->ref
= value
& 0x1f;
630 case 0x04: /* Reset */
631 if (value
== 0xbb00) {
633 qemu_del_timer(s
->timer
);
637 fprintf(stderr
, "tsc2102_control_register_write: "
638 "wrong value written into RESET\n");
643 case 0x05: /* Configuration */
644 s
->timing
= value
& 0x3f;
647 fprintf(stderr
, "tsc2102_control_register_write: "
648 "wrong value written into CONFIG\n");
652 case 0x06: /* Secondary configuration */
653 if ((s
->model
& 0xff00) == 0x2100)
655 s
->kb
.mode
= value
>> 14;
656 s
->pll
[2] = value
& 0x3ffff;
659 case 0x10: /* Keypad Mask */
660 if ((s
->model
& 0xff00) == 0x2100)
668 fprintf(stderr
, "tsc2102_control_register_write: "
669 "no such register: 0x%02x\n", reg
);
674 static void tsc2102_audio_register_write(
675 TSC210xState
*s
, int reg
, uint16_t value
)
678 case 0x00: /* Audio Control 1 */
679 s
->audio_ctrl1
= value
& 0x0f3f;
681 if ((value
& ~0x0f3f) || ((value
& 7) != ((value
>> 3) & 7)))
682 fprintf(stderr
, "tsc2102_audio_register_write: "
683 "wrong value written into Audio 1\n");
685 tsc2102_audio_rate_update(s
);
686 tsc2102_audio_output_update(s
);
692 fprintf(stderr
, "tsc2102_audio_register_write: "
693 "wrong value written into reg 0x01\n");
697 case 0x02: /* DAC Volume Control */
699 s
->volume_change
= qemu_get_clock(vm_clock
);
705 fprintf(stderr
, "tsc2102_audio_register_write: "
706 "wrong value written into reg 0x03\n");
710 case 0x04: /* Audio Control 2 */
711 s
->audio_ctrl2
= value
& 0xf7f2;
714 fprintf(stderr
, "tsc2102_audio_register_write: "
715 "wrong value written into Audio 2\n");
719 case 0x05: /* Stereo DAC Power Control */
720 if ((value
& ~s
->dac_power
) & (1 << 10))
721 s
->powerdown
= qemu_get_clock(vm_clock
);
723 s
->dac_power
= value
& 0x9543;
725 if ((value
& ~0x9543) != 0x2aa0)
726 fprintf(stderr
, "tsc2102_audio_register_write: "
727 "wrong value written into Power\n");
729 tsc2102_audio_rate_update(s
);
730 tsc2102_audio_output_update(s
);
733 case 0x06: /* Audio Control 3 */
734 s
->audio_ctrl3
&= 0x00c0;
735 s
->audio_ctrl3
|= value
& 0xf800;
738 fprintf(stderr
, "tsc2102_audio_register_write: "
739 "wrong value written into Audio 3\n");
741 tsc2102_audio_output_update(s
);
744 case 0x07: /* LCH_BASS_BOOST_N0 */
745 case 0x08: /* LCH_BASS_BOOST_N1 */
746 case 0x09: /* LCH_BASS_BOOST_N2 */
747 case 0x0a: /* LCH_BASS_BOOST_N3 */
748 case 0x0b: /* LCH_BASS_BOOST_N4 */
749 case 0x0c: /* LCH_BASS_BOOST_N5 */
750 case 0x0d: /* LCH_BASS_BOOST_D1 */
751 case 0x0e: /* LCH_BASS_BOOST_D2 */
752 case 0x0f: /* LCH_BASS_BOOST_D4 */
753 case 0x10: /* LCH_BASS_BOOST_D5 */
754 case 0x11: /* RCH_BASS_BOOST_N0 */
755 case 0x12: /* RCH_BASS_BOOST_N1 */
756 case 0x13: /* RCH_BASS_BOOST_N2 */
757 case 0x14: /* RCH_BASS_BOOST_N3 */
758 case 0x15: /* RCH_BASS_BOOST_N4 */
759 case 0x16: /* RCH_BASS_BOOST_N5 */
760 case 0x17: /* RCH_BASS_BOOST_D1 */
761 case 0x18: /* RCH_BASS_BOOST_D2 */
762 case 0x19: /* RCH_BASS_BOOST_D4 */
763 case 0x1a: /* RCH_BASS_BOOST_D5 */
764 s
->filter_data
[reg
- 0x07] = value
;
767 case 0x1b: /* PLL Programmability 1 */
768 s
->pll
[0] = value
& 0xfffc;
771 fprintf(stderr
, "tsc2102_audio_register_write: "
772 "wrong value written into PLL 1\n");
776 case 0x1c: /* PLL Programmability 2 */
777 s
->pll
[1] = value
& 0xfffc;
780 fprintf(stderr
, "tsc2102_audio_register_write: "
781 "wrong value written into PLL 2\n");
785 case 0x1d: /* Audio Control 4 */
786 s
->softstep
= !(value
& 0x4000);
789 fprintf(stderr
, "tsc2102_audio_register_write: "
790 "wrong value written into Audio 4\n");
796 fprintf(stderr
, "tsc2102_audio_register_write: "
797 "no such register: 0x%02x\n", reg
);
802 /* This handles most of the chip logic. */
803 static void tsc210x_pin_update(TSC210xState
*s
)
808 switch (s
->pin_func
) {
810 pin_state
= s
->pressure
;
813 pin_state
= !!s
->dav
;
817 pin_state
= s
->pressure
&& !s
->dav
;
823 if (pin_state
!= s
->irq
) {
825 qemu_set_irq(s
->pint
, !s
->irq
);
828 switch (s
->nextfunction
) {
829 case TSC_MODE_XY_SCAN
:
830 case TSC_MODE_XYZ_SCAN
:
850 case TSC_MODE_AUX_SCAN
:
851 case TSC_MODE_PORT_SCAN
:
854 case TSC_MODE_NO_SCAN
:
855 case TSC_MODE_XX_DRV
:
856 case TSC_MODE_YY_DRV
:
857 case TSC_MODE_YX_DRV
:
862 if (!s
->enabled
|| s
->busy
|| s
->dav
)
866 s
->precision
= s
->nextprecision
;
867 s
->function
= s
->nextfunction
;
868 expires
= qemu_get_clock(vm_clock
) + (ticks_per_sec
>> 10);
869 qemu_mod_timer(s
->timer
, expires
);
872 static uint16_t tsc210x_read(TSC210xState
*s
)
874 uint16_t ret
= 0x0000;
877 fprintf(stderr
, "tsc210x_read: SPI underrun!\n");
880 case TSC_DATA_REGISTERS_PAGE
:
881 ret
= tsc2102_data_register_read(s
, s
->offset
);
883 qemu_irq_raise(s
->davint
);
885 case TSC_CONTROL_REGISTERS_PAGE
:
886 ret
= tsc2102_control_register_read(s
, s
->offset
);
888 case TSC_AUDIO_REGISTERS_PAGE
:
889 ret
= tsc2102_audio_register_read(s
, s
->offset
);
892 hw_error("tsc210x_read: wrong memory page\n");
895 tsc210x_pin_update(s
);
897 /* Allow sequential reads. */
903 static void tsc210x_write(TSC210xState
*s
, uint16_t value
)
906 * This is a two-state state machine for reading
907 * command and data every second time.
910 s
->command
= value
>> 15;
911 s
->page
= (value
>> 11) & 0x0f;
912 s
->offset
= (value
>> 5) & 0x3f;
916 fprintf(stderr
, "tsc210x_write: SPI overrun!\n");
919 case TSC_DATA_REGISTERS_PAGE
:
920 tsc2102_data_register_write(s
, s
->offset
, value
);
922 case TSC_CONTROL_REGISTERS_PAGE
:
923 tsc2102_control_register_write(s
, s
->offset
, value
);
925 case TSC_AUDIO_REGISTERS_PAGE
:
926 tsc2102_audio_register_write(s
, s
->offset
, value
);
929 hw_error("tsc210x_write: wrong memory page\n");
932 tsc210x_pin_update(s
);
937 uint32_t tsc210x_txrx(void *opaque
, uint32_t value
, int len
)
939 TSC210xState
*s
= opaque
;
943 hw_error("%s: FIXME: bad SPI word width %i\n", __FUNCTION__
, len
);
945 /* TODO: sequential reads etc - how do we make sure the host doesn't
946 * unintentionally read out a conversion result from a register while
947 * transmitting the command word of the next command? */
948 if (!value
|| (s
->state
&& s
->command
))
949 ret
= tsc210x_read(s
);
950 if (value
|| (s
->state
&& !s
->command
))
951 tsc210x_write(s
, value
);
956 static void tsc210x_timer_tick(void *opaque
)
958 TSC210xState
*s
= opaque
;
960 /* Timer ticked -- a set of conversions has been finished. */
966 s
->dav
|= mode_regs
[s
->function
];
967 tsc210x_pin_update(s
);
968 qemu_irq_lower(s
->davint
);
971 static void tsc210x_touchscreen_event(void *opaque
,
972 int x
, int y
, int z
, int buttons_state
)
974 TSC210xState
*s
= opaque
;
981 s
->pressure
= !!buttons_state
;
984 * Note: We would get better responsiveness in the guest by
985 * signaling TS events immediately, but for now we simulate
986 * the first conversion delay for sake of correctness.
988 if (p
!= s
->pressure
)
989 tsc210x_pin_update(s
);
992 static void tsc210x_i2s_swallow(TSC210xState
*s
)
995 tsc210x_out_flush(s
, s
->codec
.out
.len
);
997 s
->codec
.out
.len
= 0;
1000 static void tsc210x_i2s_set_rate(TSC210xState
*s
, int in
, int out
)
1002 s
->i2s_tx_rate
= out
;
1003 s
->i2s_rx_rate
= in
;
1006 static void tsc210x_save(QEMUFile
*f
, void *opaque
)
1008 TSC210xState
*s
= (TSC210xState
*) opaque
;
1009 int64_t now
= qemu_get_clock(vm_clock
);
1012 qemu_put_be16(f
, s
->x
);
1013 qemu_put_be16(f
, s
->y
);
1014 qemu_put_byte(f
, s
->pressure
);
1016 qemu_put_byte(f
, s
->state
);
1017 qemu_put_byte(f
, s
->page
);
1018 qemu_put_byte(f
, s
->offset
);
1019 qemu_put_byte(f
, s
->command
);
1021 qemu_put_byte(f
, s
->irq
);
1022 qemu_put_be16s(f
, &s
->dav
);
1024 qemu_put_timer(f
, s
->timer
);
1025 qemu_put_byte(f
, s
->enabled
);
1026 qemu_put_byte(f
, s
->host_mode
);
1027 qemu_put_byte(f
, s
->function
);
1028 qemu_put_byte(f
, s
->nextfunction
);
1029 qemu_put_byte(f
, s
->precision
);
1030 qemu_put_byte(f
, s
->nextprecision
);
1031 qemu_put_byte(f
, s
->filter
);
1032 qemu_put_byte(f
, s
->pin_func
);
1033 qemu_put_byte(f
, s
->ref
);
1034 qemu_put_byte(f
, s
->timing
);
1035 qemu_put_be32(f
, s
->noise
);
1037 qemu_put_be16s(f
, &s
->audio_ctrl1
);
1038 qemu_put_be16s(f
, &s
->audio_ctrl2
);
1039 qemu_put_be16s(f
, &s
->audio_ctrl3
);
1040 qemu_put_be16s(f
, &s
->pll
[0]);
1041 qemu_put_be16s(f
, &s
->pll
[1]);
1042 qemu_put_be16s(f
, &s
->volume
);
1043 qemu_put_sbe64(f
, (s
->volume_change
- now
));
1044 qemu_put_sbe64(f
, (s
->powerdown
- now
));
1045 qemu_put_byte(f
, s
->softstep
);
1046 qemu_put_be16s(f
, &s
->dac_power
);
1048 for (i
= 0; i
< 0x14; i
++)
1049 qemu_put_be16s(f
, &s
->filter_data
[i
]);
1052 static int tsc210x_load(QEMUFile
*f
, void *opaque
, int version_id
)
1054 TSC210xState
*s
= (TSC210xState
*) opaque
;
1055 int64_t now
= qemu_get_clock(vm_clock
);
1058 s
->x
= qemu_get_be16(f
);
1059 s
->y
= qemu_get_be16(f
);
1060 s
->pressure
= qemu_get_byte(f
);
1062 s
->state
= qemu_get_byte(f
);
1063 s
->page
= qemu_get_byte(f
);
1064 s
->offset
= qemu_get_byte(f
);
1065 s
->command
= qemu_get_byte(f
);
1067 s
->irq
= qemu_get_byte(f
);
1068 qemu_get_be16s(f
, &s
->dav
);
1070 qemu_get_timer(f
, s
->timer
);
1071 s
->enabled
= qemu_get_byte(f
);
1072 s
->host_mode
= qemu_get_byte(f
);
1073 s
->function
= qemu_get_byte(f
);
1074 s
->nextfunction
= qemu_get_byte(f
);
1075 s
->precision
= qemu_get_byte(f
);
1076 s
->nextprecision
= qemu_get_byte(f
);
1077 s
->filter
= qemu_get_byte(f
);
1078 s
->pin_func
= qemu_get_byte(f
);
1079 s
->ref
= qemu_get_byte(f
);
1080 s
->timing
= qemu_get_byte(f
);
1081 s
->noise
= qemu_get_be32(f
);
1083 qemu_get_be16s(f
, &s
->audio_ctrl1
);
1084 qemu_get_be16s(f
, &s
->audio_ctrl2
);
1085 qemu_get_be16s(f
, &s
->audio_ctrl3
);
1086 qemu_get_be16s(f
, &s
->pll
[0]);
1087 qemu_get_be16s(f
, &s
->pll
[1]);
1088 qemu_get_be16s(f
, &s
->volume
);
1089 s
->volume_change
= qemu_get_sbe64(f
) + now
;
1090 s
->powerdown
= qemu_get_sbe64(f
) + now
;
1091 s
->softstep
= qemu_get_byte(f
);
1092 qemu_get_be16s(f
, &s
->dac_power
);
1094 for (i
= 0; i
< 0x14; i
++)
1095 qemu_get_be16s(f
, &s
->filter_data
[i
]);
1097 s
->busy
= qemu_timer_pending(s
->timer
);
1098 qemu_set_irq(s
->pint
, !s
->irq
);
1099 qemu_set_irq(s
->davint
, !s
->dav
);
1104 uWireSlave
*tsc2102_init(qemu_irq pint
)
1108 s
= (TSC210xState
*)
1109 qemu_mallocz(sizeof(TSC210xState
));
1110 memset(s
, 0, sizeof(TSC210xState
));
1114 s
->precision
= s
->nextprecision
= 0;
1115 s
->timer
= qemu_new_timer(vm_clock
, tsc210x_timer_tick
, s
);
1118 s
->name
= "tsc2102";
1130 s
->chip
.send
= (void *) tsc210x_write
;
1131 s
->chip
.receive
= (void *) tsc210x_read
;
1133 s
->codec
.opaque
= s
;
1134 s
->codec
.tx_swallow
= (void *) tsc210x_i2s_swallow
;
1135 s
->codec
.set_rate
= (void *) tsc210x_i2s_set_rate
;
1136 s
->codec
.in
.fifo
= s
->in_fifo
;
1137 s
->codec
.out
.fifo
= s
->out_fifo
;
1141 qemu_add_mouse_event_handler(tsc210x_touchscreen_event
, s
, 1,
1142 "QEMU TSC2102-driven Touchscreen");
1144 AUD_register_card(s
->name
, &s
->card
);
1146 qemu_register_reset((void *) tsc210x_reset
, s
);
1147 register_savevm(s
->name
, -1, 0,
1148 tsc210x_save
, tsc210x_load
, s
);
1153 uWireSlave
*tsc2301_init(qemu_irq penirq
, qemu_irq kbirq
, qemu_irq dav
)
1157 s
= (TSC210xState
*)
1158 qemu_mallocz(sizeof(TSC210xState
));
1159 memset(s
, 0, sizeof(TSC210xState
));
1163 s
->precision
= s
->nextprecision
= 0;
1164 s
->timer
= qemu_new_timer(vm_clock
, tsc210x_timer_tick
, s
);
1169 s
->name
= "tsc2301";
1181 s
->chip
.send
= (void *) tsc210x_write
;
1182 s
->chip
.receive
= (void *) tsc210x_read
;
1184 s
->codec
.opaque
= s
;
1185 s
->codec
.tx_swallow
= (void *) tsc210x_i2s_swallow
;
1186 s
->codec
.set_rate
= (void *) tsc210x_i2s_set_rate
;
1187 s
->codec
.in
.fifo
= s
->in_fifo
;
1188 s
->codec
.out
.fifo
= s
->out_fifo
;
1192 qemu_add_mouse_event_handler(tsc210x_touchscreen_event
, s
, 1,
1193 "QEMU TSC2301-driven Touchscreen");
1195 AUD_register_card(s
->name
, &s
->card
);
1197 qemu_register_reset((void *) tsc210x_reset
, s
);
1198 register_savevm(s
->name
, -1, 0, tsc210x_save
, tsc210x_load
, s
);
1203 I2SCodec
*tsc210x_codec(uWireSlave
*chip
)
1205 TSC210xState
*s
= (TSC210xState
*) chip
->opaque
;
1211 * Use tslib generated calibration data to generate ADC input values
1212 * from the touchscreen. Assuming 12-bit precision was used during
1213 * tslib calibration.
1215 void tsc210x_set_transform(uWireSlave
*chip
,
1216 MouseTransformInfo
*info
)
1218 TSC210xState
*s
= (TSC210xState
*) chip
->opaque
;
1222 ltr
[0] = (int64_t) info
->a
[1] * info
->y
;
1223 ltr
[1] = (int64_t) info
->a
[4] * info
->x
;
1224 ltr
[2] = (int64_t) info
->a
[1] * info
->a
[3] -
1225 (int64_t) info
->a
[4] * info
->a
[0];
1226 ltr
[3] = (int64_t) info
->a
[2] * info
->a
[4] -
1227 (int64_t) info
->a
[5] * info
->a
[1];
1228 ltr
[4] = (int64_t) info
->a
[0] * info
->y
;
1229 ltr
[5] = (int64_t) info
->a
[3] * info
->x
;
1230 ltr
[6] = (int64_t) info
->a
[4] * info
->a
[0] -
1231 (int64_t) info
->a
[1] * info
->a
[3];
1232 ltr
[7] = (int64_t) info
->a
[2] * info
->a
[3] -
1233 (int64_t) info
->a
[5] * info
->a
[0];
1235 /* Avoid integer overflow */
1236 s
->tr
[0] = ltr
[0] >> 11;
1237 s
->tr
[1] = ltr
[1] >> 11;
1238 s
->tr
[2] = muldiv64(ltr
[2], 1, info
->a
[6]);
1239 s
->tr
[3] = muldiv64(ltr
[3], 1 << 4, ltr
[2]);
1240 s
->tr
[4] = ltr
[4] >> 11;
1241 s
->tr
[5] = ltr
[5] >> 11;
1242 s
->tr
[6] = muldiv64(ltr
[6], 1, info
->a
[6]);
1243 s
->tr
[7] = muldiv64(ltr
[7], 1 << 4, ltr
[6]);
1246 /* This version assumes touchscreen X & Y axis are parallel or
1247 * perpendicular to LCD's X & Y axis in some way. */
1248 if (abs(info
->a
[0]) > abs(info
->a
[1])) {
1250 s
->tr
[1] = -info
->a
[6] * info
->x
;
1251 s
->tr
[2] = info
->a
[0];
1252 s
->tr
[3] = -info
->a
[2] / info
->a
[0];
1253 s
->tr
[4] = info
->a
[6] * info
->y
;
1255 s
->tr
[6] = info
->a
[4];
1256 s
->tr
[7] = -info
->a
[5] / info
->a
[4];
1258 s
->tr
[0] = info
->a
[6] * info
->y
;
1260 s
->tr
[2] = info
->a
[1];
1261 s
->tr
[3] = -info
->a
[2] / info
->a
[1];
1263 s
->tr
[5] = -info
->a
[6] * info
->x
;
1264 s
->tr
[6] = info
->a
[3];
1265 s
->tr
[7] = -info
->a
[5] / info
->a
[3];
1277 void tsc210x_key_event(uWireSlave
*chip
, int key
, int down
)
1279 TSC210xState
*s
= (TSC210xState
*) chip
->opaque
;
1282 s
->kb
.down
|= 1 << key
;
1284 s
->kb
.down
&= ~(1 << key
);
1286 if (down
&& (s
->kb
.down
& ~s
->kb
.mask
) && !s
->kb
.intr
) {
1288 qemu_irq_lower(s
->kbint
);
1289 } else if (s
->kb
.intr
&& !(s
->kb
.down
& ~s
->kb
.mask
) &&
1290 !(s
->kb
.mode
& 1)) {
1292 qemu_irq_raise(s
->kbint
);