diff options
author | Anthony Liguori <aliguori@amazon.com> | 2013-12-10 16:11:21 -0800 |
---|---|---|
committer | Anthony Liguori <aliguori@amazon.com> | 2013-12-10 16:11:21 -0800 |
commit | b5527dad7dba7d85520aaec787fb6fb14be1c366 (patch) | |
tree | 775db4f5dca5f1ff0adb731ea08f58491f840d2d /hw | |
parent | 75c4ce824ffd04a59f0af270f823fd5f1a59bd1a (diff) | |
parent | d58ce68a454e5ae9cbde0308def379e272f13b10 (diff) | |
download | qemu-b5527dad7dba7d85520aaec787fb6fb14be1c366.zip qemu-b5527dad7dba7d85520aaec787fb6fb14be1c366.tar.gz qemu-b5527dad7dba7d85520aaec787fb6fb14be1c366.tar.bz2 |
Merge remote-tracking branch 'kraxel/tags/pull-audio-1' into staging
Change audio wakeup rate from 250 Hz to 100 Hz.
Emulation bugfixes for intel-hda and adlib.
# gpg: Signature made Mon 09 Dec 2013 06:04:16 AM PST using RSA key ID D3E87138
# gpg: Can't check signature: public key not found
# By Gerd Hoffmann (2) and others
# Via Gerd Hoffmann
* kraxel/tags/pull-audio-1:
intel-hda: fix position buffer
adlib: fix patching of port I/O addresses
audio: adjust pulse to 100Hz wakeup rate
audio: Lower default wakeup rate to 100 times / second
Message-id: 1386597974-26506-1-git-send-email-kraxel@redhat.com
Signed-off-by: Anthony Liguori <aliguori@amazon.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/audio/adlib.c | 4 | ||||
-rw-r--r-- | hw/audio/intel-hda.c | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/hw/audio/adlib.c b/hw/audio/adlib.c index bd8e9d9..e88d2dd 100644 --- a/hw/audio/adlib.c +++ b/hw/audio/adlib.c @@ -347,8 +347,8 @@ static void adlib_realizefn (DeviceState *dev, Error **errp) s->samples = AUD_get_buffer_size_out (s->voice) >> SHIFT; s->mixbuf = g_malloc0 (s->samples << SHIFT); - adlib_portio_list[1].offset = s->port; - adlib_portio_list[2].offset = s->port + 8; + adlib_portio_list[0].offset = s->port; + adlib_portio_list[1].offset = s->port + 8; portio_list_init (port_list, OBJECT(s), adlib_portio_list, s, "adlib"); portio_list_add (port_list, isa_address_space_io(&s->parent_obj), 0); } diff --git a/hw/audio/intel-hda.c b/hw/audio/intel-hda.c index 4327264..6ab8c24 100644 --- a/hw/audio/intel-hda.c +++ b/hw/audio/intel-hda.c @@ -444,6 +444,7 @@ static bool intel_hda_xfer(HDACodecDevice *dev, uint32_t stnr, bool output, } } if (d->dp_lbase & 0x01) { + s = st - d->st; addr = intel_hda_addr(d->dp_lbase & ~0x01, d->dp_ubase); stl_le_pci_dma(&d->pci, addr + 8*s, st->lpib); } |