2 * QEMU ES1370 emulation
4 * Copyright (c) 2005 Vassili Karpov (malc)
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 /* #define DEBUG_ES1370 */
26 /* #define VERBOSE_ES1370 */
32 SCTRL_P[12](END|ST)INC
42 Following macros and samplerate array were copied verbatim from
43 Linux kernel 2.4.30: drivers/sound/es1370.c
45 Copyright (C) 1998-2001, 2003 Thomas Sailer (t.sailer@alumni.ethz.ch)
48 /* Start blatant GPL violation */
50 #define ES1370_REG_CONTROL 0x00
51 #define ES1370_REG_STATUS 0x04
52 #define ES1370_REG_UART_DATA 0x08
53 #define ES1370_REG_UART_STATUS 0x09
54 #define ES1370_REG_UART_CONTROL 0x09
55 #define ES1370_REG_UART_TEST 0x0a
56 #define ES1370_REG_MEMPAGE 0x0c
57 #define ES1370_REG_CODEC 0x10
58 #define ES1370_REG_SERIAL_CONTROL 0x20
59 #define ES1370_REG_DAC1_SCOUNT 0x24
60 #define ES1370_REG_DAC2_SCOUNT 0x28
61 #define ES1370_REG_ADC_SCOUNT 0x2c
63 #define ES1370_REG_DAC1_FRAMEADR 0xc30
64 #define ES1370_REG_DAC1_FRAMECNT 0xc34
65 #define ES1370_REG_DAC2_FRAMEADR 0xc38
66 #define ES1370_REG_DAC2_FRAMECNT 0xc3c
67 #define ES1370_REG_ADC_FRAMEADR 0xd30
68 #define ES1370_REG_ADC_FRAMECNT 0xd34
69 #define ES1370_REG_PHANTOM_FRAMEADR 0xd38
70 #define ES1370_REG_PHANTOM_FRAMECNT 0xd3c
72 static const unsigned dac1_samplerate
[] = { 5512, 11025, 22050, 44100 };
74 #define DAC2_SRTODIV(x) (((1411200+(x)/2)/(x))-2)
75 #define DAC2_DIVTOSR(x) (1411200/((x)+2))
77 #define CTRL_ADC_STOP 0x80000000 /* 1 = ADC stopped */
78 #define CTRL_XCTL1 0x40000000 /* electret mic bias */
79 #define CTRL_OPEN 0x20000000 /* no function, can be read and written */
80 #define CTRL_PCLKDIV 0x1fff0000 /* ADC/DAC2 clock divider */
81 #define CTRL_SH_PCLKDIV 16
82 #define CTRL_MSFMTSEL 0x00008000 /* MPEG serial data fmt: 0 = Sony, 1 = I2S */
83 #define CTRL_M_SBB 0x00004000 /* DAC2 clock: 0 = PCLKDIV, 1 = MPEG */
84 #define CTRL_WTSRSEL 0x00003000 /* DAC1 clock freq: 0=5512, 1=11025, 2=22050, 3=44100 */
85 #define CTRL_SH_WTSRSEL 12
86 #define CTRL_DAC_SYNC 0x00000800 /* 1 = DAC2 runs off DAC1 clock */
87 #define CTRL_CCB_INTRM 0x00000400 /* 1 = CCB "voice" ints enabled */
88 #define CTRL_M_CB 0x00000200 /* recording source: 0 = ADC, 1 = MPEG */
89 #define CTRL_XCTL0 0x00000100 /* 0 = Line in, 1 = Line out */
90 #define CTRL_BREQ 0x00000080 /* 1 = test mode (internal mem test) */
91 #define CTRL_DAC1_EN 0x00000040 /* enable DAC1 */
92 #define CTRL_DAC2_EN 0x00000020 /* enable DAC2 */
93 #define CTRL_ADC_EN 0x00000010 /* enable ADC */
94 #define CTRL_UART_EN 0x00000008 /* enable MIDI uart */
95 #define CTRL_JYSTK_EN 0x00000004 /* enable Joystick port (presumably at address 0x200) */
96 #define CTRL_CDC_EN 0x00000002 /* enable serial (CODEC) interface */
97 #define CTRL_SERR_DIS 0x00000001 /* 1 = disable PCI SERR signal */
99 #define STAT_INTR 0x80000000 /* wired or of all interrupt bits */
100 #define STAT_CSTAT 0x00000400 /* 1 = codec busy or codec write in progress */
101 #define STAT_CBUSY 0x00000200 /* 1 = codec busy */
102 #define STAT_CWRIP 0x00000100 /* 1 = codec write in progress */
103 #define STAT_VC 0x00000060 /* CCB int source, 0=DAC1, 1=DAC2, 2=ADC, 3=undef */
105 #define STAT_MCCB 0x00000010 /* CCB int pending */
106 #define STAT_UART 0x00000008 /* UART int pending */
107 #define STAT_DAC1 0x00000004 /* DAC1 int pending */
108 #define STAT_DAC2 0x00000002 /* DAC2 int pending */
109 #define STAT_ADC 0x00000001 /* ADC int pending */
111 #define USTAT_RXINT 0x80 /* UART rx int pending */
112 #define USTAT_TXINT 0x04 /* UART tx int pending */
113 #define USTAT_TXRDY 0x02 /* UART tx ready */
114 #define USTAT_RXRDY 0x01 /* UART rx ready */
116 #define UCTRL_RXINTEN 0x80 /* 1 = enable RX ints */
117 #define UCTRL_TXINTEN 0x60 /* TX int enable field mask */
118 #define UCTRL_ENA_TXINT 0x20 /* enable TX int */
119 #define UCTRL_CNTRL 0x03 /* control field */
120 #define UCTRL_CNTRL_SWR 0x03 /* software reset command */
122 #define SCTRL_P2ENDINC 0x00380000 /* */
123 #define SCTRL_SH_P2ENDINC 19
124 #define SCTRL_P2STINC 0x00070000 /* */
125 #define SCTRL_SH_P2STINC 16
126 #define SCTRL_R1LOOPSEL 0x00008000 /* 0 = loop mode */
127 #define SCTRL_P2LOOPSEL 0x00004000 /* 0 = loop mode */
128 #define SCTRL_P1LOOPSEL 0x00002000 /* 0 = loop mode */
129 #define SCTRL_P2PAUSE 0x00001000 /* 1 = pause mode */
130 #define SCTRL_P1PAUSE 0x00000800 /* 1 = pause mode */
131 #define SCTRL_R1INTEN 0x00000400 /* enable interrupt */
132 #define SCTRL_P2INTEN 0x00000200 /* enable interrupt */
133 #define SCTRL_P1INTEN 0x00000100 /* enable interrupt */
134 #define SCTRL_P1SCTRLD 0x00000080 /* reload sample count register for DAC1 */
135 #define SCTRL_P2DACSEN 0x00000040 /* 1 = DAC2 play back last sample when disabled */
136 #define SCTRL_R1SEB 0x00000020 /* 1 = 16bit */
137 #define SCTRL_R1SMB 0x00000010 /* 1 = stereo */
138 #define SCTRL_R1FMT 0x00000030 /* format mask */
139 #define SCTRL_SH_R1FMT 4
140 #define SCTRL_P2SEB 0x00000008 /* 1 = 16bit */
141 #define SCTRL_P2SMB 0x00000004 /* 1 = stereo */
142 #define SCTRL_P2FMT 0x0000000c /* format mask */
143 #define SCTRL_SH_P2FMT 2
144 #define SCTRL_P1SEB 0x00000002 /* 1 = 16bit */
145 #define SCTRL_P1SMB 0x00000001 /* 1 = stereo */
146 #define SCTRL_P1FMT 0x00000003 /* format mask */
147 #define SCTRL_SH_P1FMT 0
149 /* End blatant GPL violation */
151 #define NB_CHANNELS 3
152 #define DAC1_CHANNEL 0
153 #define DAC2_CHANNEL 1
154 #define ADC_CHANNEL 2
156 #define IO_READ_PROTO(n) \
157 static uint32_t n (void *opaque, uint32_t addr)
158 #define IO_WRITE_PROTO(n) \
159 static void n (void *opaque, uint32_t addr, uint32_t val)
161 static void es1370_dac1_callback (void *opaque
, int free
);
162 static void es1370_dac2_callback (void *opaque
, int free
);
163 static void es1370_adc_callback (void *opaque
, int avail
);
167 #define ldebug(...) AUD_log ("es1370", __VA_ARGS__)
169 static void print_ctl (uint32_t val
)
174 #define a(n) if (val & CTRL_##n) strcat (buf, " "#n)
193 AUD_log ("es1370", "ctl - PCLKDIV %d(DAC2 freq %d), freq %d,%s\n",
194 (val
& CTRL_PCLKDIV
) >> CTRL_SH_PCLKDIV
,
195 DAC2_DIVTOSR ((val
& CTRL_PCLKDIV
) >> CTRL_SH_PCLKDIV
),
196 dac1_samplerate
[(val
& CTRL_WTSRSEL
) >> CTRL_SH_WTSRSEL
],
200 static void print_sctl (uint32_t val
)
202 static const char *fmt_names
[] = {"8M", "8S", "16M", "16S"};
207 #define a(n) if (val & SCTRL_##n) strcat (buf, " "#n)
208 #define b(n) if (!(val & SCTRL_##n)) strcat (buf, " "#n)
230 "p2_end_inc %d, p2_st_inc %d, r1_fmt %s, p2_fmt %s, p1_fmt %s\n",
232 (val
& SCTRL_P2ENDINC
) >> SCTRL_SH_P2ENDINC
,
233 (val
& SCTRL_P2STINC
) >> SCTRL_SH_P2STINC
,
234 fmt_names
[(val
>> SCTRL_SH_R1FMT
) & 3],
235 fmt_names
[(val
>> SCTRL_SH_P2FMT
) & 3],
236 fmt_names
[(val
>> SCTRL_SH_P1FMT
) & 3]
241 #define print_ctl(...)
242 #define print_sctl(...)
245 #ifdef VERBOSE_ES1370
246 #define dolog(...) AUD_log ("es1370", __VA_ARGS__)
251 #ifndef SILENT_ES1370
252 #define lwarn(...) AUD_log ("es1370: warning", __VA_ARGS__)
265 typedef struct ES1370State
{
269 struct chan chan
[NB_CHANNELS
];
270 SWVoiceOut
*dac_voice
[2];
271 SWVoiceIn
*adc_voice
;
280 typedef struct PCIES1370State
{
291 uint32_t sctl_sh_fmt
;
292 uint32_t sctl_loopsel
;
293 void (*calc_freq
) (ES1370State
*s
, uint32_t ctl
,
294 uint32_t *old_freq
, uint32_t *new_freq
);
297 static void es1370_dac1_calc_freq (ES1370State
*s
, uint32_t ctl
,
298 uint32_t *old_freq
, uint32_t *new_freq
);
299 static void es1370_dac2_and_adc_calc_freq (ES1370State
*s
, uint32_t ctl
,
303 static const struct chan_bits es1370_chan_bits
[] = {
304 {CTRL_DAC1_EN
, STAT_DAC1
, SCTRL_P1PAUSE
, SCTRL_P1INTEN
,
305 SCTRL_P1FMT
, SCTRL_SH_P1FMT
, SCTRL_P1LOOPSEL
,
306 es1370_dac1_calc_freq
},
308 {CTRL_DAC2_EN
, STAT_DAC2
, SCTRL_P2PAUSE
, SCTRL_P2INTEN
,
309 SCTRL_P2FMT
, SCTRL_SH_P2FMT
, SCTRL_P2LOOPSEL
,
310 es1370_dac2_and_adc_calc_freq
},
312 {CTRL_ADC_EN
, STAT_ADC
, 0, SCTRL_R1INTEN
,
313 SCTRL_R1FMT
, SCTRL_SH_R1FMT
, SCTRL_R1LOOPSEL
,
314 es1370_dac2_and_adc_calc_freq
}
317 static void es1370_update_status (ES1370State
*s
, uint32_t new_status
)
319 uint32_t level
= new_status
& (STAT_DAC1
| STAT_DAC2
| STAT_ADC
);
322 s
->status
= new_status
| STAT_INTR
;
325 s
->status
= new_status
& ~STAT_INTR
;
327 qemu_set_irq(s
->pci_dev
->irq
[0], !!level
);
330 static void es1370_reset (ES1370State
*s
)
340 for (i
= 0; i
< NB_CHANNELS
; ++i
) {
341 struct chan
*d
= &s
->chan
[i
];
344 if (i
== ADC_CHANNEL
) {
345 AUD_close_in (&s
->card
, s
->adc_voice
);
349 AUD_close_out (&s
->card
, s
->dac_voice
[i
]);
350 s
->dac_voice
[i
] = NULL
;
353 qemu_irq_lower(s
->pci_dev
->irq
[0]);
356 static void es1370_maybe_lower_irq (ES1370State
*s
, uint32_t sctl
)
358 uint32_t new_status
= s
->status
;
360 if (!(sctl
& SCTRL_P1INTEN
) && (s
->sctl
& SCTRL_P1INTEN
)) {
361 new_status
&= ~STAT_DAC1
;
364 if (!(sctl
& SCTRL_P2INTEN
) && (s
->sctl
& SCTRL_P2INTEN
)) {
365 new_status
&= ~STAT_DAC2
;
368 if (!(sctl
& SCTRL_R1INTEN
) && (s
->sctl
& SCTRL_R1INTEN
)) {
369 new_status
&= ~STAT_ADC
;
372 if (new_status
!= s
->status
) {
373 es1370_update_status (s
, new_status
);
377 static void es1370_dac1_calc_freq (ES1370State
*s
, uint32_t ctl
,
378 uint32_t *old_freq
, uint32_t *new_freq
)
381 *old_freq
= dac1_samplerate
[(s
->ctl
& CTRL_WTSRSEL
) >> CTRL_SH_WTSRSEL
];
382 *new_freq
= dac1_samplerate
[(ctl
& CTRL_WTSRSEL
) >> CTRL_SH_WTSRSEL
];
385 static void es1370_dac2_and_adc_calc_freq (ES1370State
*s
, uint32_t ctl
,
390 uint32_t old_pclkdiv
, new_pclkdiv
;
392 new_pclkdiv
= (ctl
& CTRL_PCLKDIV
) >> CTRL_SH_PCLKDIV
;
393 old_pclkdiv
= (s
->ctl
& CTRL_PCLKDIV
) >> CTRL_SH_PCLKDIV
;
394 *new_freq
= DAC2_DIVTOSR (new_pclkdiv
);
395 *old_freq
= DAC2_DIVTOSR (old_pclkdiv
);
398 static void es1370_update_voices (ES1370State
*s
, uint32_t ctl
, uint32_t sctl
)
401 uint32_t old_freq
, new_freq
, old_fmt
, new_fmt
;
403 for (i
= 0; i
< NB_CHANNELS
; ++i
) {
404 struct chan
*d
= &s
->chan
[i
];
405 const struct chan_bits
*b
= &es1370_chan_bits
[i
];
407 new_fmt
= (sctl
& b
->sctl_fmt
) >> b
->sctl_sh_fmt
;
408 old_fmt
= (s
->sctl
& b
->sctl_fmt
) >> b
->sctl_sh_fmt
;
410 b
->calc_freq (s
, ctl
, &old_freq
, &new_freq
);
412 if ((old_fmt
!= new_fmt
) || (old_freq
!= new_freq
)) {
413 d
->shift
= (new_fmt
& 1) + (new_fmt
>> 1);
414 ldebug ("channel %d, freq = %d, nchannels %d, fmt %d, shift %d\n",
418 (new_fmt
& 2) ? AUD_FMT_S16
: AUD_FMT_U8
,
424 as
.nchannels
= 1 << (new_fmt
& 1);
425 as
.fmt
= (new_fmt
& 2) ? AUD_FMT_S16
: AUD_FMT_U8
;
428 if (i
== ADC_CHANNEL
) {
444 i
? "es1370.dac2" : "es1370.dac1",
446 i
? es1370_dac2_callback
: es1370_dac1_callback
,
453 if (((ctl
^ s
->ctl
) & b
->ctl_en
)
454 || ((sctl
^ s
->sctl
) & b
->sctl_pause
)) {
455 int on
= (ctl
& b
->ctl_en
) && !(sctl
& b
->sctl_pause
);
457 if (i
== ADC_CHANNEL
) {
458 AUD_set_active_in (s
->adc_voice
, on
);
461 AUD_set_active_out (s
->dac_voice
[i
], on
);
470 static inline uint32_t es1370_fixup (ES1370State
*s
, uint32_t addr
)
473 if (addr
>= 0x30 && addr
<= 0x3f)
474 addr
|= s
->mempage
<< 8;
478 IO_WRITE_PROTO (es1370_writeb
)
480 ES1370State
*s
= opaque
;
481 uint32_t shift
, mask
;
483 addr
= es1370_fixup (s
, addr
);
486 case ES1370_REG_CONTROL
:
487 case ES1370_REG_CONTROL
+ 1:
488 case ES1370_REG_CONTROL
+ 2:
489 case ES1370_REG_CONTROL
+ 3:
490 shift
= (addr
- ES1370_REG_CONTROL
) << 3;
491 mask
= 0xff << shift
;
492 val
= (s
->ctl
& ~mask
) | ((val
& 0xff) << shift
);
493 es1370_update_voices (s
, val
, s
->sctl
);
496 case ES1370_REG_MEMPAGE
:
499 case ES1370_REG_SERIAL_CONTROL
:
500 case ES1370_REG_SERIAL_CONTROL
+ 1:
501 case ES1370_REG_SERIAL_CONTROL
+ 2:
502 case ES1370_REG_SERIAL_CONTROL
+ 3:
503 shift
= (addr
- ES1370_REG_SERIAL_CONTROL
) << 3;
504 mask
= 0xff << shift
;
505 val
= (s
->sctl
& ~mask
) | ((val
& 0xff) << shift
);
506 es1370_maybe_lower_irq (s
, val
);
507 es1370_update_voices (s
, s
->ctl
, val
);
511 lwarn ("writeb %#x <- %#x\n", addr
, val
);
516 IO_WRITE_PROTO (es1370_writew
)
518 ES1370State
*s
= opaque
;
519 addr
= es1370_fixup (s
, addr
);
520 uint32_t shift
, mask
;
521 struct chan
*d
= &s
->chan
[0];
524 case ES1370_REG_CODEC
:
525 dolog ("ignored codec write address %#x, data %#x\n",
526 (val
>> 8) & 0xff, val
& 0xff);
530 case ES1370_REG_CONTROL
:
531 case ES1370_REG_CONTROL
+ 2:
532 shift
= (addr
!= ES1370_REG_CONTROL
) << 4;
533 mask
= 0xffff << shift
;
534 val
= (s
->ctl
& ~mask
) | ((val
& 0xffff) << shift
);
535 es1370_update_voices (s
, val
, s
->sctl
);
539 case ES1370_REG_ADC_SCOUNT
:
541 case ES1370_REG_DAC2_SCOUNT
:
543 case ES1370_REG_DAC1_SCOUNT
:
544 d
->scount
= (d
->scount
& ~0xffff) | (val
& 0xffff);
548 lwarn ("writew %#x <- %#x\n", addr
, val
);
553 IO_WRITE_PROTO (es1370_writel
)
555 ES1370State
*s
= opaque
;
556 struct chan
*d
= &s
->chan
[0];
558 addr
= es1370_fixup (s
, addr
);
561 case ES1370_REG_CONTROL
:
562 es1370_update_voices (s
, val
, s
->sctl
);
566 case ES1370_REG_MEMPAGE
:
567 s
->mempage
= val
& 0xf;
570 case ES1370_REG_SERIAL_CONTROL
:
571 es1370_maybe_lower_irq (s
, val
);
572 es1370_update_voices (s
, s
->ctl
, val
);
576 case ES1370_REG_ADC_SCOUNT
:
578 case ES1370_REG_DAC2_SCOUNT
:
580 case ES1370_REG_DAC1_SCOUNT
:
581 d
->scount
= (val
& 0xffff) | (d
->scount
& ~0xffff);
582 ldebug ("chan %d CURR_SAMP_CT %d, SAMP_CT %d\n",
583 d
- &s
->chan
[0], val
>> 16, (val
& 0xffff));
586 case ES1370_REG_ADC_FRAMEADR
:
588 case ES1370_REG_DAC2_FRAMEADR
:
590 case ES1370_REG_DAC1_FRAMEADR
:
592 ldebug ("chan %d frame address %#x\n", d
- &s
->chan
[0], val
);
595 case ES1370_REG_PHANTOM_FRAMECNT
:
596 lwarn ("writing to phantom frame count %#x\n", val
);
598 case ES1370_REG_PHANTOM_FRAMEADR
:
599 lwarn ("writing to phantom frame address %#x\n", val
);
602 case ES1370_REG_ADC_FRAMECNT
:
604 case ES1370_REG_DAC2_FRAMECNT
:
606 case ES1370_REG_DAC1_FRAMECNT
:
609 ldebug ("chan %d frame count %d, buffer size %d\n",
610 d
- &s
->chan
[0], val
>> 16, val
& 0xffff);
614 lwarn ("writel %#x <- %#x\n", addr
, val
);
619 IO_READ_PROTO (es1370_readb
)
621 ES1370State
*s
= opaque
;
624 addr
= es1370_fixup (s
, addr
);
627 case 0x1b: /* Legacy */
628 lwarn ("Attempt to read from legacy register\n");
631 case ES1370_REG_MEMPAGE
:
634 case ES1370_REG_CONTROL
+ 0:
635 case ES1370_REG_CONTROL
+ 1:
636 case ES1370_REG_CONTROL
+ 2:
637 case ES1370_REG_CONTROL
+ 3:
638 val
= s
->ctl
>> ((addr
- ES1370_REG_CONTROL
) << 3);
640 case ES1370_REG_STATUS
+ 0:
641 case ES1370_REG_STATUS
+ 1:
642 case ES1370_REG_STATUS
+ 2:
643 case ES1370_REG_STATUS
+ 3:
644 val
= s
->status
>> ((addr
- ES1370_REG_STATUS
) << 3);
648 lwarn ("readb %#x -> %#x\n", addr
, val
);
654 IO_READ_PROTO (es1370_readw
)
656 ES1370State
*s
= opaque
;
657 struct chan
*d
= &s
->chan
[0];
660 addr
= es1370_fixup (s
, addr
);
663 case ES1370_REG_ADC_SCOUNT
+ 2:
665 case ES1370_REG_DAC2_SCOUNT
+ 2:
667 case ES1370_REG_DAC1_SCOUNT
+ 2:
668 val
= d
->scount
>> 16;
671 case ES1370_REG_ADC_FRAMECNT
:
673 case ES1370_REG_DAC2_FRAMECNT
:
675 case ES1370_REG_DAC1_FRAMECNT
:
676 val
= d
->frame_cnt
& 0xffff;
679 case ES1370_REG_ADC_FRAMECNT
+ 2:
681 case ES1370_REG_DAC2_FRAMECNT
+ 2:
683 case ES1370_REG_DAC1_FRAMECNT
+ 2:
684 val
= d
->frame_cnt
>> 16;
689 lwarn ("readw %#x -> %#x\n", addr
, val
);
696 IO_READ_PROTO (es1370_readl
)
698 ES1370State
*s
= opaque
;
700 struct chan
*d
= &s
->chan
[0];
702 addr
= es1370_fixup (s
, addr
);
705 case ES1370_REG_CONTROL
:
708 case ES1370_REG_STATUS
:
711 case ES1370_REG_MEMPAGE
:
714 case ES1370_REG_CODEC
:
717 case ES1370_REG_SERIAL_CONTROL
:
721 case ES1370_REG_ADC_SCOUNT
:
723 case ES1370_REG_DAC2_SCOUNT
:
725 case ES1370_REG_DAC1_SCOUNT
:
729 uint32_t curr_count
= d
->scount
>> 16;
730 uint32_t count
= d
->scount
& 0xffff;
732 curr_count
<<= d
->shift
;
734 dolog ("read scount curr %d, total %d\n", curr_count
, count
);
739 case ES1370_REG_ADC_FRAMECNT
:
741 case ES1370_REG_DAC2_FRAMECNT
:
743 case ES1370_REG_DAC1_FRAMECNT
:
747 uint32_t size
= ((d
->frame_cnt
& 0xffff) + 1) << 2;
748 uint32_t curr
= ((d
->frame_cnt
>> 16) + 1) << 2;
750 dolog ("read framecnt curr %d, size %d %d\n", curr
, size
,
756 case ES1370_REG_ADC_FRAMEADR
:
758 case ES1370_REG_DAC2_FRAMEADR
:
760 case ES1370_REG_DAC1_FRAMEADR
:
764 case ES1370_REG_PHANTOM_FRAMECNT
:
766 lwarn ("reading from phantom frame count\n");
768 case ES1370_REG_PHANTOM_FRAMEADR
:
770 lwarn ("reading from phantom frame address\n");
775 lwarn ("readl %#x -> %#x\n", addr
, val
);
782 static void es1370_transfer_audio (ES1370State
*s
, struct chan
*d
, int loop_sel
,
785 uint8_t tmpbuf
[4096];
786 uint32_t addr
= d
->frame_addr
;
787 int sc
= d
->scount
& 0xffff;
788 int csc
= d
->scount
>> 16;
789 int csc_bytes
= (csc
+ 1) << d
->shift
;
790 int cnt
= d
->frame_cnt
>> 16;
791 int size
= d
->frame_cnt
& 0xffff;
792 int left
= ((size
- cnt
+ 1) << 2) + d
->leftover
;
794 int temp
= audio_MIN (max
, audio_MIN (left
, csc_bytes
));
795 int index
= d
- &s
->chan
[0];
797 addr
+= (cnt
<< 2) + d
->leftover
;
799 if (index
== ADC_CHANNEL
) {
801 int acquired
, to_copy
;
803 to_copy
= audio_MIN ((size_t) temp
, sizeof (tmpbuf
));
804 acquired
= AUD_read (s
->adc_voice
, tmpbuf
, to_copy
);
808 cpu_physical_memory_write (addr
, tmpbuf
, acquired
);
812 transfered
+= acquired
;
816 SWVoiceOut
*voice
= s
->dac_voice
[index
];
821 to_copy
= audio_MIN ((size_t) temp
, sizeof (tmpbuf
));
822 cpu_physical_memory_read (addr
, tmpbuf
, to_copy
);
823 copied
= AUD_write (voice
, tmpbuf
, to_copy
);
828 transfered
+= copied
;
832 if (csc_bytes
== transfered
) {
834 d
->scount
= sc
| (sc
<< 16);
835 ldebug ("sc = %d, rate = %f\n",
836 (sc
+ 1) << d
->shift
,
837 (sc
+ 1) / (double) 44100);
841 d
->scount
= sc
| (((csc_bytes
- transfered
- 1) >> d
->shift
) << 16);
844 cnt
+= (transfered
+ d
->leftover
) >> 2;
846 if (s
->sctl
& loop_sel
) {
847 /* Bah, how stupid is that having a 0 represent true value?
848 i just spent few hours on this shit */
849 AUD_log ("es1370: warning", "non looping mode\n");
854 if ((uint32_t) cnt
<= d
->frame_cnt
)
855 d
->frame_cnt
|= cnt
<< 16;
858 d
->leftover
= (transfered
+ d
->leftover
) & 3;
861 static void es1370_run_channel (ES1370State
*s
, size_t chan
, int free_or_avail
)
863 uint32_t new_status
= s
->status
;
865 struct chan
*d
= &s
->chan
[chan
];
866 const struct chan_bits
*b
= &es1370_chan_bits
[chan
];
868 if (!(s
->ctl
& b
->ctl_en
) || (s
->sctl
& b
->sctl_pause
)) {
872 max_bytes
= free_or_avail
;
873 max_bytes
&= ~((1 << d
->shift
) - 1);
878 es1370_transfer_audio (s
, d
, b
->sctl_loopsel
, max_bytes
, &irq
);
881 if (s
->sctl
& b
->sctl_inten
) {
882 new_status
|= b
->stat_int
;
886 if (new_status
!= s
->status
) {
887 es1370_update_status (s
, new_status
);
891 static void es1370_dac1_callback (void *opaque
, int free
)
893 ES1370State
*s
= opaque
;
895 es1370_run_channel (s
, DAC1_CHANNEL
, free
);
898 static void es1370_dac2_callback (void *opaque
, int free
)
900 ES1370State
*s
= opaque
;
902 es1370_run_channel (s
, DAC2_CHANNEL
, free
);
905 static void es1370_adc_callback (void *opaque
, int avail
)
907 ES1370State
*s
= opaque
;
909 es1370_run_channel (s
, ADC_CHANNEL
, avail
);
912 static void es1370_map (PCIDevice
*pci_dev
, int region_num
,
913 uint32_t addr
, uint32_t size
, int type
)
915 PCIES1370State
*d
= (PCIES1370State
*) pci_dev
;
916 ES1370State
*s
= &d
->es1370
;
922 register_ioport_write (addr
, 0x40 * 4, 1, es1370_writeb
, s
);
923 register_ioport_write (addr
, 0x40 * 2, 2, es1370_writew
, s
);
924 register_ioport_write (addr
, 0x40, 4, es1370_writel
, s
);
926 register_ioport_read (addr
, 0x40 * 4, 1, es1370_readb
, s
);
927 register_ioport_read (addr
, 0x40 * 2, 2, es1370_readw
, s
);
928 register_ioport_read (addr
, 0x40, 4, es1370_readl
, s
);
931 static void es1370_save (QEMUFile
*f
, void *opaque
)
933 ES1370State
*s
= opaque
;
936 for (i
= 0; i
< NB_CHANNELS
; ++i
) {
937 struct chan
*d
= &s
->chan
[i
];
938 qemu_put_be32s (f
, &d
->shift
);
939 qemu_put_be32s (f
, &d
->leftover
);
940 qemu_put_be32s (f
, &d
->scount
);
941 qemu_put_be32s (f
, &d
->frame_addr
);
942 qemu_put_be32s (f
, &d
->frame_cnt
);
944 qemu_put_be32s (f
, &s
->ctl
);
945 qemu_put_be32s (f
, &s
->status
);
946 qemu_put_be32s (f
, &s
->mempage
);
947 qemu_put_be32s (f
, &s
->codec
);
948 qemu_put_be32s (f
, &s
->sctl
);
951 static int es1370_load (QEMUFile
*f
, void *opaque
, int version_id
)
954 ES1370State
*s
= opaque
;
960 for (i
= 0; i
< NB_CHANNELS
; ++i
) {
961 struct chan
*d
= &s
->chan
[i
];
962 qemu_get_be32s (f
, &d
->shift
);
963 qemu_get_be32s (f
, &d
->leftover
);
964 qemu_get_be32s (f
, &d
->scount
);
965 qemu_get_be32s (f
, &d
->frame_addr
);
966 qemu_get_be32s (f
, &d
->frame_cnt
);
967 if (i
== ADC_CHANNEL
) {
969 AUD_close_in (&s
->card
, s
->adc_voice
);
974 if (s
->dac_voice
[i
]) {
975 AUD_close_out (&s
->card
, s
->dac_voice
[i
]);
976 s
->dac_voice
[i
] = NULL
;
981 qemu_get_be32s (f
, &ctl
);
982 qemu_get_be32s (f
, &s
->status
);
983 qemu_get_be32s (f
, &s
->mempage
);
984 qemu_get_be32s (f
, &s
->codec
);
985 qemu_get_be32s (f
, &sctl
);
989 es1370_update_voices (s
, ctl
, sctl
);
993 static void es1370_on_reset (void *opaque
)
995 ES1370State
*s
= opaque
;
999 int es1370_init (PCIBus
*bus
, AudioState
*audio
)
1006 dolog ("No PCI bus\n");
1011 dolog ("No audio state\n");
1015 d
= (PCIES1370State
*) pci_register_device (bus
, "ES1370",
1016 sizeof (PCIES1370State
),
1020 AUD_log (NULL
, "Failed to register PCI device for ES1370\n");
1053 s
->pci_dev
= &d
->dev
;
1055 pci_register_io_region (&d
->dev
, 0, 256, PCI_ADDRESS_SPACE_IO
, es1370_map
);
1056 register_savevm ("es1370", 0, 1, es1370_save
, es1370_load
, s
);
1057 qemu_register_reset (es1370_on_reset
, s
);
1059 AUD_register_card (audio
, "es1370", &s
->card
);