mbox series

[v3,0/3] Add VIRTIO sound card

Message ID cover.1689692765.git.manos.pitsidianakis@linaro.org (mailing list archive)
Headers show
Series Add VIRTIO sound card | expand

Message

Manos Pitsidianakis July 18, 2023, 6:04 p.m. UTC
This patch series adds an audio device implementing the recent virtio 
sound spec (1.2) and a corresponding PCI wrapper device.

Main differences with v2 patch 
<cover.1686238728.git.manos.pitsidianakis@linaro.org>:
- Addressed review comments.

Manos Pitsidianakis (3):
  Add virtio-sound device
  Add virtio-sound-pci device
  Implement audio capture in virtio-snd device

 MAINTAINERS                    |    6 +
 hw/virtio/Kconfig              |    5 +
 hw/virtio/meson.build          |    2 +
 hw/virtio/trace-events         |   22 +
 hw/virtio/virtio-snd-pci.c     |  101 +++
 hw/virtio/virtio-snd.c         | 1289 ++++++++++++++++++++++++++++++++
 include/hw/pci/pci.h           |    1 +
 include/hw/virtio/virtio-snd.h |  194 +++++
 softmmu/qdev-monitor.c         |    1 +
 9 files changed, 1621 insertions(+)
 create mode 100644 hw/virtio/virtio-snd-pci.c
 create mode 100644 hw/virtio/virtio-snd.c
 create mode 100644 include/hw/virtio/virtio-snd.h