xref: /qemu/hw/virtio/Kconfig (revision 208b2d24)
1config VHOST
2    bool
3
4config VIRTIO
5    bool
6
7config VIRTIO_RNG
8    bool
9    default y
10    depends on VIRTIO
11
12config VIRTIO_PCI
13    bool
14    default y if PCI_DEVICES
15    depends on PCI
16    select VIRTIO
17
18config VIRTIO_MMIO
19    bool
20    select VIRTIO
21
22config VIRTIO_CCW
23    bool
24    select VIRTIO
25
26config VIRTIO_BALLOON
27    bool
28    default y
29    depends on VIRTIO
30
31config VIRTIO_CRYPTO
32    bool
33    default y
34    depends on VIRTIO
35
36config VIRTIO_PMEM_SUPPORTED
37    bool
38
39config VIRTIO_PMEM
40    bool
41    default y
42    depends on VIRTIO
43    depends on VIRTIO_PMEM_SUPPORTED
44    select MEM_DEVICE
45