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 */
29 #include "qemu/osdep.h"
31 #include "hw/audio/audio.h"
32 #include "audio/audio.h"
33 #include "hw/pci/pci.h"
34 #include "sysemu/dma.h"
37 SCTRL_P[12](END|ST)INC
47 Following macros and samplerate array were copied verbatim from
48 Linux kernel 2.4.30: drivers/sound/es1370.c
50 Copyright (C) 1998-2001, 2003 Thomas Sailer (t.sailer@alumni.ethz.ch)
53 /* Start blatant GPL violation */
55 #define ES1370_REG_CONTROL 0x00
56 #define ES1370_REG_STATUS 0x04
57 #define ES1370_REG_UART_DATA 0x08
58 #define ES1370_REG_UART_STATUS 0x09
59 #define ES1370_REG_UART_CONTROL 0x09
60 #define ES1370_REG_UART_TEST 0x0a
61 #define ES1370_REG_MEMPAGE 0x0c
62 #define ES1370_REG_CODEC 0x10
63 #define ES1370_REG_SERIAL_CONTROL 0x20
64 #define ES1370_REG_DAC1_SCOUNT 0x24
65 #define ES1370_REG_DAC2_SCOUNT 0x28
66 #define ES1370_REG_ADC_SCOUNT 0x2c
68 #define ES1370_REG_DAC1_FRAMEADR 0xc30
69 #define ES1370_REG_DAC1_FRAMECNT 0xc34
70 #define ES1370_REG_DAC2_FRAMEADR 0xc38
71 #define ES1370_REG_DAC2_FRAMECNT 0xc3c
72 #define ES1370_REG_ADC_FRAMEADR 0xd30
73 #define ES1370_REG_ADC_FRAMECNT 0xd34
74 #define ES1370_REG_PHANTOM_FRAMEADR 0xd38
75 #define ES1370_REG_PHANTOM_FRAMECNT 0xd3c
77 static const unsigned dac1_samplerate
[] = { 5512, 11025, 22050, 44100 };
79 #define DAC2_SRTODIV(x) (((1411200+(x)/2)/(x))-2)
80 #define DAC2_DIVTOSR(x) (1411200/((x)+2))
82 #define CTRL_ADC_STOP 0x80000000 /* 1 = ADC stopped */
83 #define CTRL_XCTL1 0x40000000 /* electret mic bias */
84 #define CTRL_OPEN 0x20000000 /* no function, can be read and written */
85 #define CTRL_PCLKDIV 0x1fff0000 /* ADC/DAC2 clock divider */
86 #define CTRL_SH_PCLKDIV 16
87 #define CTRL_MSFMTSEL 0x00008000 /* MPEG serial data fmt: 0 = Sony, 1 = I2S */
88 #define CTRL_M_SBB 0x00004000 /* DAC2 clock: 0 = PCLKDIV, 1 = MPEG */
89 #define CTRL_WTSRSEL 0x00003000 /* DAC1 clock freq: 0=5512, 1=11025, 2=22050, 3=44100 */
90 #define CTRL_SH_WTSRSEL 12
91 #define CTRL_DAC_SYNC 0x00000800 /* 1 = DAC2 runs off DAC1 clock */
92 #define CTRL_CCB_INTRM 0x00000400 /* 1 = CCB "voice" ints enabled */
93 #define CTRL_M_CB 0x00000200 /* recording source: 0 = ADC, 1 = MPEG */
94 #define CTRL_XCTL0 0x00000100 /* 0 = Line in, 1 = Line out */
95 #define CTRL_BREQ 0x00000080 /* 1 = test mode (internal mem test) */
96 #define CTRL_DAC1_EN 0x00000040 /* enable DAC1 */
97 #define CTRL_DAC2_EN 0x00000020 /* enable DAC2 */
98 #define CTRL_ADC_EN 0x00000010 /* enable ADC */
99 #define CTRL_UART_EN 0x00000008 /* enable MIDI uart */
100 #define CTRL_JYSTK_EN 0x00000004 /* enable Joystick port (presumably at address 0x200) */
101 #define CTRL_CDC_EN 0x00000002 /* enable serial (CODEC) interface */
102 #define CTRL_SERR_DIS 0x00000001 /* 1 = disable PCI SERR signal */
104 #define STAT_INTR 0x80000000 /* wired or of all interrupt bits */
105 #define STAT_CSTAT 0x00000400 /* 1 = codec busy or codec write in progress */
106 #define STAT_CBUSY 0x00000200 /* 1 = codec busy */
107 #define STAT_CWRIP 0x00000100 /* 1 = codec write in progress */
108 #define STAT_VC 0x00000060 /* CCB int source, 0=DAC1, 1=DAC2, 2=ADC, 3=undef */
110 #define STAT_MCCB 0x00000010 /* CCB int pending */
111 #define STAT_UART 0x00000008 /* UART int pending */
112 #define STAT_DAC1 0x00000004 /* DAC1 int pending */
113 #define STAT_DAC2 0x00000002 /* DAC2 int pending */
114 #define STAT_ADC 0x00000001 /* ADC int pending */
116 #define USTAT_RXINT 0x80 /* UART rx int pending */
117 #define USTAT_TXINT 0x04 /* UART tx int pending */
118 #define USTAT_TXRDY 0x02 /* UART tx ready */
119 #define USTAT_RXRDY 0x01 /* UART rx ready */
121 #define UCTRL_RXINTEN 0x80 /* 1 = enable RX ints */
122 #define UCTRL_TXINTEN 0x60 /* TX int enable field mask */
123 #define UCTRL_ENA_TXINT 0x20 /* enable TX int */
124 #define UCTRL_CNTRL 0x03 /* control field */
125 #define UCTRL_CNTRL_SWR 0x03 /* software reset command */
127 #define SCTRL_P2ENDINC 0x00380000 /* */
128 #define SCTRL_SH_P2ENDINC 19
129 #define SCTRL_P2STINC 0x00070000 /* */
130 #define SCTRL_SH_P2STINC 16
131 #define SCTRL_R1LOOPSEL 0x00008000 /* 0 = loop mode */
132 #define SCTRL_P2LOOPSEL 0x00004000 /* 0 = loop mode */
133 #define SCTRL_P1LOOPSEL 0x00002000 /* 0 = loop mode */
134 #define SCTRL_P2PAUSE 0x00001000 /* 1 = pause mode */
135 #define SCTRL_P1PAUSE 0x00000800 /* 1 = pause mode */
136 #define SCTRL_R1INTEN 0x00000400 /* enable interrupt */
137 #define SCTRL_P2INTEN 0x00000200 /* enable interrupt */
138 #define SCTRL_P1INTEN 0x00000100 /* enable interrupt */
139 #define SCTRL_P1SCTRLD 0x00000080 /* reload sample count register for DAC1 */
140 #define SCTRL_P2DACSEN 0x00000040 /* 1 = DAC2 play back last sample when disabled */
141 #define SCTRL_R1SEB 0x00000020 /* 1 = 16bit */
142 #define SCTRL_R1SMB 0x00000010 /* 1 = stereo */
143 #define SCTRL_R1FMT 0x00000030 /* format mask */
144 #define SCTRL_SH_R1FMT 4
145 #define SCTRL_P2SEB 0x00000008 /* 1 = 16bit */
146 #define SCTRL_P2SMB 0x00000004 /* 1 = stereo */
147 #define SCTRL_P2FMT 0x0000000c /* format mask */
148 #define SCTRL_SH_P2FMT 2
149 #define SCTRL_P1SEB 0x00000002 /* 1 = 16bit */
150 #define SCTRL_P1SMB 0x00000001 /* 1 = stereo */
151 #define SCTRL_P1FMT 0x00000003 /* format mask */
152 #define SCTRL_SH_P1FMT 0
154 /* End blatant GPL violation */
156 #define NB_CHANNELS 3
157 #define DAC1_CHANNEL 0
158 #define DAC2_CHANNEL 1
159 #define ADC_CHANNEL 2
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
;
286 uint32_t sctl_sh_fmt
;
287 uint32_t sctl_loopsel
;
288 void (*calc_freq
) (ES1370State
*s
, uint32_t ctl
,
289 uint32_t *old_freq
, uint32_t *new_freq
);
292 #define TYPE_ES1370 "ES1370"
293 #define ES1370(obj) \
294 OBJECT_CHECK(ES1370State, (obj), TYPE_ES1370)
296 static void es1370_dac1_calc_freq (ES1370State
*s
, uint32_t ctl
,
297 uint32_t *old_freq
, uint32_t *new_freq
);
298 static void es1370_dac2_and_adc_calc_freq (ES1370State
*s
, uint32_t ctl
,
302 static const struct chan_bits es1370_chan_bits
[] = {
303 {CTRL_DAC1_EN
, STAT_DAC1
, SCTRL_P1PAUSE
, SCTRL_P1INTEN
,
304 SCTRL_P1FMT
, SCTRL_SH_P1FMT
, SCTRL_P1LOOPSEL
,
305 es1370_dac1_calc_freq
},
307 {CTRL_DAC2_EN
, STAT_DAC2
, SCTRL_P2PAUSE
, SCTRL_P2INTEN
,
308 SCTRL_P2FMT
, SCTRL_SH_P2FMT
, SCTRL_P2LOOPSEL
,
309 es1370_dac2_and_adc_calc_freq
},
311 {CTRL_ADC_EN
, STAT_ADC
, 0, SCTRL_R1INTEN
,
312 SCTRL_R1FMT
, SCTRL_SH_R1FMT
, SCTRL_R1LOOPSEL
,
313 es1370_dac2_and_adc_calc_freq
}
316 static void es1370_update_status (ES1370State
*s
, uint32_t new_status
)
318 uint32_t level
= new_status
& (STAT_DAC1
| STAT_DAC2
| STAT_ADC
);
321 s
->status
= new_status
| STAT_INTR
;
324 s
->status
= new_status
& ~STAT_INTR
;
326 pci_set_irq(&s
->dev
, !!level
);
329 static void es1370_reset (ES1370State
*s
)
339 for (i
= 0; i
< NB_CHANNELS
; ++i
) {
340 struct chan
*d
= &s
->chan
[i
];
343 if (i
== ADC_CHANNEL
) {
344 AUD_close_in (&s
->card
, s
->adc_voice
);
348 AUD_close_out (&s
->card
, s
->dac_voice
[i
]);
349 s
->dac_voice
[i
] = NULL
;
352 pci_irq_deassert(&s
->dev
);
355 static void es1370_maybe_lower_irq (ES1370State
*s
, uint32_t sctl
)
357 uint32_t new_status
= s
->status
;
359 if (!(sctl
& SCTRL_P1INTEN
) && (s
->sctl
& SCTRL_P1INTEN
)) {
360 new_status
&= ~STAT_DAC1
;
363 if (!(sctl
& SCTRL_P2INTEN
) && (s
->sctl
& SCTRL_P2INTEN
)) {
364 new_status
&= ~STAT_DAC2
;
367 if (!(sctl
& SCTRL_R1INTEN
) && (s
->sctl
& SCTRL_R1INTEN
)) {
368 new_status
&= ~STAT_ADC
;
371 if (new_status
!= s
->status
) {
372 es1370_update_status (s
, new_status
);
376 static void es1370_dac1_calc_freq (ES1370State
*s
, uint32_t ctl
,
377 uint32_t *old_freq
, uint32_t *new_freq
)
380 *old_freq
= dac1_samplerate
[(s
->ctl
& CTRL_WTSRSEL
) >> CTRL_SH_WTSRSEL
];
381 *new_freq
= dac1_samplerate
[(ctl
& CTRL_WTSRSEL
) >> CTRL_SH_WTSRSEL
];
384 static void es1370_dac2_and_adc_calc_freq (ES1370State
*s
, uint32_t ctl
,
389 uint32_t old_pclkdiv
, new_pclkdiv
;
391 new_pclkdiv
= (ctl
& CTRL_PCLKDIV
) >> CTRL_SH_PCLKDIV
;
392 old_pclkdiv
= (s
->ctl
& CTRL_PCLKDIV
) >> CTRL_SH_PCLKDIV
;
393 *new_freq
= DAC2_DIVTOSR (new_pclkdiv
);
394 *old_freq
= DAC2_DIVTOSR (old_pclkdiv
);
397 static void es1370_update_voices (ES1370State
*s
, uint32_t ctl
, uint32_t sctl
)
400 uint32_t old_freq
, new_freq
, old_fmt
, new_fmt
;
402 for (i
= 0; i
< NB_CHANNELS
; ++i
) {
403 struct chan
*d
= &s
->chan
[i
];
404 const struct chan_bits
*b
= &es1370_chan_bits
[i
];
406 new_fmt
= (sctl
& b
->sctl_fmt
) >> b
->sctl_sh_fmt
;
407 old_fmt
= (s
->sctl
& b
->sctl_fmt
) >> b
->sctl_sh_fmt
;
409 b
->calc_freq (s
, ctl
, &old_freq
, &new_freq
);
411 if ((old_fmt
!= new_fmt
) || (old_freq
!= new_freq
)) {
412 d
->shift
= (new_fmt
& 1) + (new_fmt
>> 1);
413 ldebug ("channel %zu, freq = %d, nchannels %d, fmt %d, shift %d\n",
417 (new_fmt
& 2) ? AUD_FMT_S16
: AUD_FMT_U8
,
420 struct audsettings as
;
423 as
.nchannels
= 1 << (new_fmt
& 1);
424 as
.fmt
= (new_fmt
& 2) ? AUD_FMT_S16
: AUD_FMT_U8
;
427 if (i
== ADC_CHANNEL
) {
443 i
? "es1370.dac2" : "es1370.dac1",
445 i
? es1370_dac2_callback
: es1370_dac1_callback
,
452 if (((ctl
^ s
->ctl
) & b
->ctl_en
)
453 || ((sctl
^ s
->sctl
) & b
->sctl_pause
)) {
454 int on
= (ctl
& b
->ctl_en
) && !(sctl
& b
->sctl_pause
);
456 if (i
== ADC_CHANNEL
) {
457 AUD_set_active_in (s
->adc_voice
, on
);
460 AUD_set_active_out (s
->dac_voice
[i
], on
);
469 static inline uint32_t es1370_fixup (ES1370State
*s
, uint32_t addr
)
472 if (addr
>= 0x30 && addr
<= 0x3f)
473 addr
|= s
->mempage
<< 8;
477 static void es1370_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
479 ES1370State
*s
= opaque
;
480 uint32_t shift
, mask
;
482 addr
= es1370_fixup (s
, addr
);
485 case ES1370_REG_CONTROL
:
486 case ES1370_REG_CONTROL
+ 1:
487 case ES1370_REG_CONTROL
+ 2:
488 case ES1370_REG_CONTROL
+ 3:
489 shift
= (addr
- ES1370_REG_CONTROL
) << 3;
490 mask
= 0xff << shift
;
491 val
= (s
->ctl
& ~mask
) | ((val
& 0xff) << shift
);
492 es1370_update_voices (s
, val
, s
->sctl
);
495 case ES1370_REG_MEMPAGE
:
498 case ES1370_REG_SERIAL_CONTROL
:
499 case ES1370_REG_SERIAL_CONTROL
+ 1:
500 case ES1370_REG_SERIAL_CONTROL
+ 2:
501 case ES1370_REG_SERIAL_CONTROL
+ 3:
502 shift
= (addr
- ES1370_REG_SERIAL_CONTROL
) << 3;
503 mask
= 0xff << shift
;
504 val
= (s
->sctl
& ~mask
) | ((val
& 0xff) << shift
);
505 es1370_maybe_lower_irq (s
, val
);
506 es1370_update_voices (s
, s
->ctl
, val
);
510 lwarn ("writeb %#x <- %#x\n", addr
, val
);
515 static void es1370_writew(void *opaque
, uint32_t addr
, uint32_t val
)
517 ES1370State
*s
= opaque
;
518 addr
= es1370_fixup (s
, addr
);
519 uint32_t shift
, mask
;
520 struct chan
*d
= &s
->chan
[0];
523 case ES1370_REG_CODEC
:
524 dolog ("ignored codec write address %#x, data %#x\n",
525 (val
>> 8) & 0xff, val
& 0xff);
529 case ES1370_REG_CONTROL
:
530 case ES1370_REG_CONTROL
+ 2:
531 shift
= (addr
!= ES1370_REG_CONTROL
) << 4;
532 mask
= 0xffff << shift
;
533 val
= (s
->ctl
& ~mask
) | ((val
& 0xffff) << shift
);
534 es1370_update_voices (s
, val
, s
->sctl
);
538 case ES1370_REG_ADC_SCOUNT
:
540 case ES1370_REG_DAC2_SCOUNT
:
542 case ES1370_REG_DAC1_SCOUNT
:
543 d
->scount
= (d
->scount
& ~0xffff) | (val
& 0xffff);
547 lwarn ("writew %#x <- %#x\n", addr
, val
);
552 static void es1370_writel(void *opaque
, uint32_t addr
, uint32_t val
)
554 ES1370State
*s
= opaque
;
555 struct chan
*d
= &s
->chan
[0];
557 addr
= es1370_fixup (s
, addr
);
560 case ES1370_REG_CONTROL
:
561 es1370_update_voices (s
, val
, s
->sctl
);
565 case ES1370_REG_MEMPAGE
:
566 s
->mempage
= val
& 0xf;
569 case ES1370_REG_SERIAL_CONTROL
:
570 es1370_maybe_lower_irq (s
, val
);
571 es1370_update_voices (s
, s
->ctl
, val
);
575 case ES1370_REG_ADC_SCOUNT
:
577 case ES1370_REG_DAC2_SCOUNT
:
579 case ES1370_REG_DAC1_SCOUNT
:
580 d
->scount
= (val
& 0xffff) | (d
->scount
& ~0xffff);
581 ldebug ("chan %td CURR_SAMP_CT %d, SAMP_CT %d\n",
582 d
- &s
->chan
[0], val
>> 16, (val
& 0xffff));
585 case ES1370_REG_ADC_FRAMEADR
:
587 case ES1370_REG_DAC2_FRAMEADR
:
589 case ES1370_REG_DAC1_FRAMEADR
:
591 ldebug ("chan %td frame address %#x\n", d
- &s
->chan
[0], val
);
594 case ES1370_REG_PHANTOM_FRAMECNT
:
595 lwarn ("writing to phantom frame count %#x\n", val
);
597 case ES1370_REG_PHANTOM_FRAMEADR
:
598 lwarn ("writing to phantom frame address %#x\n", val
);
601 case ES1370_REG_ADC_FRAMECNT
:
603 case ES1370_REG_DAC2_FRAMECNT
:
605 case ES1370_REG_DAC1_FRAMECNT
:
608 ldebug ("chan %td frame count %d, buffer size %d\n",
609 d
- &s
->chan
[0], val
>> 16, val
& 0xffff);
613 lwarn ("writel %#x <- %#x\n", addr
, val
);
618 static uint32_t es1370_readb(void *opaque
, uint32_t addr
)
620 ES1370State
*s
= opaque
;
623 addr
= es1370_fixup (s
, addr
);
626 case 0x1b: /* Legacy */
627 lwarn ("Attempt to read from legacy register\n");
630 case ES1370_REG_MEMPAGE
:
633 case ES1370_REG_CONTROL
+ 0:
634 case ES1370_REG_CONTROL
+ 1:
635 case ES1370_REG_CONTROL
+ 2:
636 case ES1370_REG_CONTROL
+ 3:
637 val
= s
->ctl
>> ((addr
- ES1370_REG_CONTROL
) << 3);
639 case ES1370_REG_STATUS
+ 0:
640 case ES1370_REG_STATUS
+ 1:
641 case ES1370_REG_STATUS
+ 2:
642 case ES1370_REG_STATUS
+ 3:
643 val
= s
->status
>> ((addr
- ES1370_REG_STATUS
) << 3);
647 lwarn ("readb %#x -> %#x\n", addr
, val
);
653 static uint32_t es1370_readw(void *opaque
, uint32_t addr
)
655 ES1370State
*s
= opaque
;
656 struct chan
*d
= &s
->chan
[0];
659 addr
= es1370_fixup (s
, addr
);
662 case ES1370_REG_ADC_SCOUNT
+ 2:
664 case ES1370_REG_DAC2_SCOUNT
+ 2:
666 case ES1370_REG_DAC1_SCOUNT
+ 2:
667 val
= d
->scount
>> 16;
670 case ES1370_REG_ADC_FRAMECNT
:
672 case ES1370_REG_DAC2_FRAMECNT
:
674 case ES1370_REG_DAC1_FRAMECNT
:
675 val
= d
->frame_cnt
& 0xffff;
678 case ES1370_REG_ADC_FRAMECNT
+ 2:
680 case ES1370_REG_DAC2_FRAMECNT
+ 2:
682 case ES1370_REG_DAC1_FRAMECNT
+ 2:
683 val
= d
->frame_cnt
>> 16;
688 lwarn ("readw %#x -> %#x\n", addr
, val
);
695 static uint32_t es1370_readl(void *opaque
, uint32_t addr
)
697 ES1370State
*s
= opaque
;
699 struct chan
*d
= &s
->chan
[0];
701 addr
= es1370_fixup (s
, addr
);
704 case ES1370_REG_CONTROL
:
707 case ES1370_REG_STATUS
:
710 case ES1370_REG_MEMPAGE
:
713 case ES1370_REG_CODEC
:
716 case ES1370_REG_SERIAL_CONTROL
:
720 case ES1370_REG_ADC_SCOUNT
:
722 case ES1370_REG_DAC2_SCOUNT
:
724 case ES1370_REG_DAC1_SCOUNT
:
728 uint32_t curr_count
= d
->scount
>> 16;
729 uint32_t count
= d
->scount
& 0xffff;
731 curr_count
<<= d
->shift
;
733 dolog ("read scount curr %d, total %d\n", curr_count
, count
);
738 case ES1370_REG_ADC_FRAMECNT
:
740 case ES1370_REG_DAC2_FRAMECNT
:
742 case ES1370_REG_DAC1_FRAMECNT
:
746 uint32_t size
= ((d
->frame_cnt
& 0xffff) + 1) << 2;
747 uint32_t curr
= ((d
->frame_cnt
>> 16) + 1) << 2;
749 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
);
781 static void es1370_transfer_audio (ES1370State
*s
, struct chan
*d
, int loop_sel
,
784 uint8_t tmpbuf
[4096];
785 uint32_t addr
= d
->frame_addr
;
786 int sc
= d
->scount
& 0xffff;
787 int csc
= d
->scount
>> 16;
788 int csc_bytes
= (csc
+ 1) << d
->shift
;
789 int cnt
= d
->frame_cnt
>> 16;
790 int size
= d
->frame_cnt
& 0xffff;
791 int left
= ((size
- cnt
+ 1) << 2) + d
->leftover
;
793 int temp
= audio_MIN (max
, audio_MIN (left
, csc_bytes
));
794 int index
= d
- &s
->chan
[0];
796 addr
+= (cnt
<< 2) + d
->leftover
;
798 if (index
== ADC_CHANNEL
) {
800 int acquired
, to_copy
;
802 to_copy
= audio_MIN ((size_t) temp
, sizeof (tmpbuf
));
803 acquired
= AUD_read (s
->adc_voice
, tmpbuf
, to_copy
);
807 pci_dma_write (&s
->dev
, addr
, tmpbuf
, acquired
);
811 transferred
+= acquired
;
815 SWVoiceOut
*voice
= s
->dac_voice
[index
];
820 to_copy
= audio_MIN ((size_t) temp
, sizeof (tmpbuf
));
821 pci_dma_read (&s
->dev
, addr
, tmpbuf
, to_copy
);
822 copied
= AUD_write (voice
, tmpbuf
, to_copy
);
827 transferred
+= copied
;
831 if (csc_bytes
== transferred
) {
833 d
->scount
= sc
| (sc
<< 16);
834 ldebug ("sc = %d, rate = %f\n",
835 (sc
+ 1) << d
->shift
,
836 (sc
+ 1) / (double) 44100);
840 d
->scount
= sc
| (((csc_bytes
- transferred
- 1) >> d
->shift
) << 16);
843 cnt
+= (transferred
+ d
->leftover
) >> 2;
845 if (s
->sctl
& loop_sel
) {
846 /* Bah, how stupid is that having a 0 represent true value?
847 i just spent few hours on this shit */
848 AUD_log ("es1370: warning", "non looping mode\n");
853 if ((uint32_t) cnt
<= d
->frame_cnt
)
854 d
->frame_cnt
|= cnt
<< 16;
857 d
->leftover
= (transferred
+ d
->leftover
) & 3;
860 static void es1370_run_channel (ES1370State
*s
, size_t chan
, int free_or_avail
)
862 uint32_t new_status
= s
->status
;
864 struct chan
*d
= &s
->chan
[chan
];
865 const struct chan_bits
*b
= &es1370_chan_bits
[chan
];
867 if (!(s
->ctl
& b
->ctl_en
) || (s
->sctl
& b
->sctl_pause
)) {
871 max_bytes
= free_or_avail
;
872 max_bytes
&= ~((1 << d
->shift
) - 1);
877 es1370_transfer_audio (s
, d
, b
->sctl_loopsel
, max_bytes
, &irq
);
880 if (s
->sctl
& b
->sctl_inten
) {
881 new_status
|= b
->stat_int
;
885 if (new_status
!= s
->status
) {
886 es1370_update_status (s
, new_status
);
890 static void es1370_dac1_callback (void *opaque
, int free
)
892 ES1370State
*s
= opaque
;
894 es1370_run_channel (s
, DAC1_CHANNEL
, free
);
897 static void es1370_dac2_callback (void *opaque
, int free
)
899 ES1370State
*s
= opaque
;
901 es1370_run_channel (s
, DAC2_CHANNEL
, free
);
904 static void es1370_adc_callback (void *opaque
, int avail
)
906 ES1370State
*s
= opaque
;
908 es1370_run_channel (s
, ADC_CHANNEL
, avail
);
911 static uint64_t es1370_read(void *opaque
, hwaddr addr
,
916 return es1370_readb(opaque
, addr
);
918 return es1370_readw(opaque
, addr
);
920 return es1370_readl(opaque
, addr
);
926 static void es1370_write(void *opaque
, hwaddr addr
, uint64_t val
,
931 es1370_writeb(opaque
, addr
, val
);
934 es1370_writew(opaque
, addr
, val
);
937 es1370_writel(opaque
, addr
, val
);
942 static const MemoryRegionOps es1370_io_ops
= {
944 .write
= es1370_write
,
946 .min_access_size
= 1,
947 .max_access_size
= 4,
949 .endianness
= DEVICE_LITTLE_ENDIAN
,
952 static const VMStateDescription vmstate_es1370_channel
= {
953 .name
= "es1370_channel",
955 .minimum_version_id
= 2,
956 .fields
= (VMStateField
[]) {
957 VMSTATE_UINT32 (shift
, struct chan
),
958 VMSTATE_UINT32 (leftover
, struct chan
),
959 VMSTATE_UINT32 (scount
, struct chan
),
960 VMSTATE_UINT32 (frame_addr
, struct chan
),
961 VMSTATE_UINT32 (frame_cnt
, struct chan
),
962 VMSTATE_END_OF_LIST ()
966 static int es1370_post_load (void *opaque
, int version_id
)
969 ES1370State
*s
= opaque
;
972 for (i
= 0; i
< NB_CHANNELS
; ++i
) {
973 if (i
== ADC_CHANNEL
) {
975 AUD_close_in (&s
->card
, s
->adc_voice
);
980 if (s
->dac_voice
[i
]) {
981 AUD_close_out (&s
->card
, s
->dac_voice
[i
]);
982 s
->dac_voice
[i
] = NULL
;
991 es1370_update_voices (s
, ctl
, sctl
);
995 static const VMStateDescription vmstate_es1370
= {
998 .minimum_version_id
= 2,
999 .post_load
= es1370_post_load
,
1000 .fields
= (VMStateField
[]) {
1001 VMSTATE_PCI_DEVICE (dev
, ES1370State
),
1002 VMSTATE_STRUCT_ARRAY (chan
, ES1370State
, NB_CHANNELS
, 2,
1003 vmstate_es1370_channel
, struct chan
),
1004 VMSTATE_UINT32 (ctl
, ES1370State
),
1005 VMSTATE_UINT32 (status
, ES1370State
),
1006 VMSTATE_UINT32 (mempage
, ES1370State
),
1007 VMSTATE_UINT32 (codec
, ES1370State
),
1008 VMSTATE_UINT32 (sctl
, ES1370State
),
1009 VMSTATE_END_OF_LIST ()
1013 static void es1370_on_reset (void *opaque
)
1015 ES1370State
*s
= opaque
;
1019 static void es1370_realize(PCIDevice
*dev
, Error
**errp
)
1021 ES1370State
*s
= ES1370(dev
);
1022 uint8_t *c
= s
->dev
.config
;
1024 c
[PCI_STATUS
+ 1] = PCI_STATUS_DEVSEL_SLOW
>> 8;
1027 c
[PCI_CAPABILITY_LIST
] = 0xdc;
1028 c
[PCI_INTERRUPT_LINE
] = 10;
1032 c
[PCI_INTERRUPT_PIN
] = 1;
1033 c
[PCI_MIN_GNT
] = 0x0c;
1034 c
[PCI_MAX_LAT
] = 0x80;
1036 memory_region_init_io (&s
->io
, OBJECT(s
), &es1370_io_ops
, s
, "es1370", 256);
1037 pci_register_bar (&s
->dev
, 0, PCI_BASE_ADDRESS_SPACE_IO
, &s
->io
);
1038 qemu_register_reset (es1370_on_reset
, s
);
1040 AUD_register_card ("es1370", &s
->card
);
1044 static int es1370_init (PCIBus
*bus
)
1046 pci_create_simple (bus
, -1, TYPE_ES1370
);
1050 static void es1370_class_init (ObjectClass
*klass
, void *data
)
1052 DeviceClass
*dc
= DEVICE_CLASS (klass
);
1053 PCIDeviceClass
*k
= PCI_DEVICE_CLASS (klass
);
1055 k
->realize
= es1370_realize
;
1056 k
->vendor_id
= PCI_VENDOR_ID_ENSONIQ
;
1057 k
->device_id
= PCI_DEVICE_ID_ENSONIQ_ES1370
;
1058 k
->class_id
= PCI_CLASS_MULTIMEDIA_AUDIO
;
1059 k
->subsystem_vendor_id
= 0x4942;
1060 k
->subsystem_id
= 0x4c4c;
1061 set_bit(DEVICE_CATEGORY_SOUND
, dc
->categories
);
1062 dc
->desc
= "ENSONIQ AudioPCI ES1370";
1063 dc
->vmsd
= &vmstate_es1370
;
1066 static const TypeInfo es1370_info
= {
1067 .name
= TYPE_ES1370
,
1068 .parent
= TYPE_PCI_DEVICE
,
1069 .instance_size
= sizeof (ES1370State
),
1070 .class_init
= es1370_class_init
,
1073 static void es1370_register_types (void)
1075 type_register_static (&es1370_info
);
1076 pci_register_soundhw("es1370", "ENSONIQ AudioPCI ES1370", es1370_init
);
1079 type_init (es1370_register_types
)