mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00

We don't have a virtio-gpio implementation in QEMU and only support a vhost-user backend. The QEMU side of the code is minimal so it should be enough to instantiate the device and pass some vhost-user messages over the control socket. To do this we hook into the existing vhost-user-test code and just add the bits required for gpio. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Cc: Viresh Kumar <viresh.kumar@linaro.org> Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Eric Auger <eric.auger@redhat.com> Message-Id: <20220408155704.2777166-1-alex.bennee@linaro.org> Message-Id: <20220802095010.3330793-23-alex.bennee@linaro.org> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
68 lines
1.5 KiB
Meson
68 lines
1.5 KiB
Meson
libqos_srcs = files(
|
|
'../libqtest.c',
|
|
'../libqmp.c',
|
|
|
|
'qgraph.c',
|
|
'qos_external.c',
|
|
'pci.c',
|
|
'fw_cfg.c',
|
|
'libqos-malloc.c',
|
|
'libqos.c',
|
|
'sdhci-cmd.c',
|
|
|
|
# spapr
|
|
'malloc-spapr.c',
|
|
'libqos-spapr.c',
|
|
'rtas.c',
|
|
'pci-spapr.c',
|
|
|
|
# pc
|
|
'pci-pc.c',
|
|
'malloc-pc.c',
|
|
'libqos-pc.c',
|
|
'ahci.c',
|
|
|
|
# usb
|
|
'usb.c',
|
|
|
|
# qgraph devices:
|
|
'e1000e.c',
|
|
'i2c.c',
|
|
'i2c-imx.c',
|
|
'i2c-omap.c',
|
|
'sdhci.c',
|
|
'tpci200.c',
|
|
'virtio.c',
|
|
'virtio-9p.c',
|
|
'virtio-balloon.c',
|
|
'virtio-blk.c',
|
|
'vhost-user-blk.c',
|
|
'virtio-mmio.c',
|
|
'virtio-net.c',
|
|
'virtio-pci.c',
|
|
'virtio-pci-modern.c',
|
|
'virtio-rng.c',
|
|
'virtio-scsi.c',
|
|
'virtio-serial.c',
|
|
'virtio-iommu.c',
|
|
'virtio-gpio.c',
|
|
'generic-pcihost.c',
|
|
|
|
# qgraph machines:
|
|
'aarch64-xlnx-zcu102-machine.c',
|
|
'arm-imx25-pdk-machine.c',
|
|
'arm-n800-machine.c',
|
|
'arm-raspi2-machine.c',
|
|
'arm-sabrelite-machine.c',
|
|
'arm-smdkc210-machine.c',
|
|
'arm-virt-machine.c',
|
|
'arm-xilinx-zynq-a9-machine.c',
|
|
'ppc64_pseries-machine.c',
|
|
'x86_64_pc-machine.c',
|
|
)
|
|
|
|
libqos = static_library('qos', libqos_srcs + genh,
|
|
name_suffix: 'fa',
|
|
build_by_default: false)
|
|
|
|
qos = declare_dependency(link_whole: libqos)
|