4b52530be9
Add support for the generic MMIO based virtio transport. This patch includes some fixes for bugs spotted by Ying-Shiuan Pan <yspan@itri.org.tw>. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com> Message-id: 1373977512-28932-6-git-send-email-peter.maydell@linaro.org [Fred changes: updated to new virtio-bus mechanisms] Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com> [PMM changes: * fixed trivial makefile conflict * removed unused int_enable * host_features doesn't need migrating * reset guest accessible state in the reset function * minor style fixes like extra blank lines * RAZ/WI if there's no backend * made transport size 0x200, in line with kvmtool * set has_variable_vring_alignment ]
9 lines
261 B
Makefile
9 lines
261 B
Makefile
common-obj-y += virtio-rng.o
|
|
common-obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o
|
|
common-obj-y += virtio-bus.o
|
|
common-obj-y += virtio-mmio.o
|
|
common-obj-$(CONFIG_VIRTIO_BLK_DATA_PLANE) += dataplane/
|
|
|
|
obj-y += virtio.o virtio-balloon.o
|
|
obj-$(CONFIG_LINUX) += vhost.o
|