]> Git Repo - qemu.git/commitdiff
audio/intel-hda: support FIFORDY
authorStanislav Vorobiov <[email protected]>
Tue, 29 Apr 2014 12:48:47 +0000 (16:48 +0400)
committerGerd Hoffmann <[email protected]>
Tue, 20 May 2014 06:49:21 +0000 (08:49 +0200)
linux kernel 3.12 has changed intel-hda
driver to always check for FIFORDY, this
causes long hangs in guest since QEMU
always has this bit set to 0. We now simply set
it to 1 always, since we're synchronous anyway
and always ready to receive the stream

Signed-off-by: Stanislav Vorobiov <[email protected]>
Signed-off-by: Gerd Hoffmann <[email protected]>
hw/audio/intel-hda.c

index d41f82cec4db2dbad97ba8422b99362497487d93..9e075c01373bea17daa9f5339e6bc5a3c638c6b1 100644 (file)
@@ -574,7 +574,7 @@ static void intel_hda_set_st_ctl(IntelHDAState *d, const IntelHDAReg *reg, uint3
     if (st->ctl & 0x01) {
         /* reset */
         dprint(d, 1, "st #%d: reset\n", reg->stream);
-        st->ctl = 0;
+        st->ctl = SD_STS_FIFO_READY << 24;
     }
     if ((st->ctl & 0x02) != (old & 0x02)) {
         uint32_t stnr = (st->ctl >> 20) & 0x0f;
@@ -829,6 +829,7 @@ static const struct IntelHDAReg regtab[] = {
         .wclear   = 0x1c000000,                                       \
         .offset   = offsetof(IntelHDAState, st[_i].ctl),              \
         .whandler = intel_hda_set_st_ctl,                             \
+        .reset    = SD_STS_FIFO_READY << 24                           \
     },                                                                \
     [ ST_REG(_i, ICH6_REG_SD_LPIB) ] = {                              \
         .stream   = _i,                                               \
This page took 0.028461 seconds and 4 git commands to generate.