hw/audio/intel-hda: Do not ignore DMA overrun errors
commitbe5a8cf347d0c47ee3e933dde075526fd8bd5c40
authorPhilippe Mathieu-Daudé <philmd@redhat.com>
Sat, 18 Dec 2021 16:09:10 +0000 (18 17:09 +0100)
committerThomas Huth <thuth@redhat.com>
Mon, 21 Mar 2022 09:10:58 +0000 (21 10:10 +0100)
tree1606a50055f990e8910bed48a2d5d734468db3e0
parent3ab6fdc91b72e156da22848f0003ff4225690ced
hw/audio/intel-hda: Do not ignore DMA overrun errors

Per the "High Definition Audio Specification" manual (rev. 1.0a),
section "3.3.30 Offset 5Dh: RIRBSTS - RIRB Status":

  Response Overrun Interrupt Status (RIRBOIS):

  Hardware sets this bit to a 1 when an overrun occurs in the RIRB.
  An interrupt may be generated if the Response Overrun Interrupt
  Control bit is set.

  This bit will be set if the RIRB DMA engine is not able to write
  the incoming responses to memory before additional incoming
  responses overrun the internal FIFO.

  When hardware detects an overrun, it will drop the responses which
  overrun the buffer and set the RIRBOIS status bit to indicate the
  error condition. Optionally, if the RIRBOIC is set, the hardware
  will also generate an error to alert software to the problem.

QEMU emulates the DMA engine with the stl_le_pci_dma() calls. This
function returns a MemTxResult indicating whether the DMA access
was successful.
Handle any MemTxResult error as "DMA engine is not able to write the
incoming responses to memory" and raise the Overrun Interrupt flag
when this case occurs.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20211218160912.1591633-2-philmd@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
hw/audio/intel-hda.c