]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/virtio/Kconfig
virtio-balloon: dependency fix
[mirror_ubuntu-bionic-kernel.git] / drivers / virtio / Kconfig
1 # Virtio always gets selected by whoever wants it.
2 config VIRTIO
3 tristate
4
5 # Similarly the virtio ring implementation.
6 config VIRTIO_RING
7 tristate
8 depends on VIRTIO
9
10 menu "Virtio drivers"
11
12 config VIRTIO_PCI
13 tristate "PCI driver for virtio devices (EXPERIMENTAL)"
14 depends on PCI && EXPERIMENTAL
15 select VIRTIO
16 select VIRTIO_RING
17 ---help---
18 This drivers provides support for virtio based paravirtual device
19 drivers over PCI. This requires that your VMM has appropriate PCI
20 virtio backends. Most QEMU based VMMs should support these devices
21 (like KVM or Xen).
22
23 Currently, the ABI is not considered stable so there is no guarantee
24 that this version of the driver will work with your VMM.
25
26 If unsure, say M.
27
28 config VIRTIO_BALLOON
29 tristate "Virtio balloon driver (EXPERIMENTAL)"
30 depends on EXPERIMENTAL && VIRTIO
31 ---help---
32 This driver supports increasing and decreasing the amount
33 of memory within a KVM guest.
34
35 If unsure, say M.
36
37 config VIRTIO_MMIO
38 tristate "Platform bus driver for memory mapped virtio devices (EXPERIMENTAL)"
39 depends on HAS_IOMEM && EXPERIMENTAL
40 select VIRTIO
41 select VIRTIO_RING
42 ---help---
43 This drivers provides support for memory mapped virtio
44 platform device driver.
45
46 If unsure, say N.
47
48 config VIRTIO_MMIO_CMDLINE_DEVICES
49 bool "Memory mapped virtio devices parameter parsing"
50 depends on VIRTIO_MMIO
51 ---help---
52 Allow virtio-mmio devices instantiation via the kernel command line
53 or module parameters. Be aware that using incorrect parameters (base
54 address in particular) can crash your system - you have been warned.
55 See Documentation/kernel-parameters.txt for details.
56
57 If unsure, say 'N'.
58
59 endmenu