blob: eabc2a0cd9893bb441061b3ba0848c018a65d61e [file] [log] [blame]
Rusty Russellec3d41c2007-10-22 11:03:36 +10001config VIRTIO
Rusty Russellc6fd4702008-02-04 23:50:05 -05002 tristate
Rusty Russell387daf12012-09-28 15:05:15 +09303 ---help---
4 This option is selected by any driver which implements the virtio
5 bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_LGUEST,
6 CONFIG_RPMSG or CONFIG_S390_GUEST.
Rusty Russell0a8a69d2007-10-22 11:03:40 +10007
Rusty Russell0a8a69d2007-10-22 11:03:40 +10008config VIRTIO_RING
Rusty Russellc6fd4702008-02-04 23:50:05 -05009 tristate
Rusty Russell0a8a69d2007-10-22 11:03:40 +100010 depends on VIRTIO
Anthony Liguori33436602007-11-12 21:30:26 -060011
Ohad Ben-Cohene7254212011-07-05 17:06:14 +030012menu "Virtio drivers"
13
Anthony Liguori33436602007-11-12 21:30:26 -060014config VIRTIO_PCI
15 tristate "PCI driver for virtio devices (EXPERIMENTAL)"
16 depends on PCI && EXPERIMENTAL
17 select VIRTIO
18 select VIRTIO_RING
19 ---help---
20 This drivers provides support for virtio based paravirtual device
21 drivers over PCI. This requires that your VMM has appropriate PCI
22 virtio backends. Most QEMU based VMMs should support these devices
23 (like KVM or Xen).
24
25 Currently, the ABI is not considered stable so there is no guarantee
26 that this version of the driver will work with your VMM.
27
28 If unsure, say M.
29
Rusty Russell6b35e402008-02-04 23:50:12 -050030config VIRTIO_BALLOON
Rusty Russell7a23eb22012-09-28 15:05:14 +093031 tristate "Virtio balloon driver"
32 depends on VIRTIO
Rusty Russell6b35e402008-02-04 23:50:12 -050033 ---help---
34 This driver supports increasing and decreasing the amount
35 of memory within a KVM guest.
36
37 If unsure, say M.
38
Pawel Molledfd52e2011-10-24 14:07:03 +010039 config VIRTIO_MMIO
40 tristate "Platform bus driver for memory mapped virtio devices (EXPERIMENTAL)"
Heiko Carstensbd208172011-11-15 10:13:24 +010041 depends on HAS_IOMEM && EXPERIMENTAL
Pawel Molledfd52e2011-10-24 14:07:03 +010042 select VIRTIO
43 select VIRTIO_RING
44 ---help---
45 This drivers provides support for memory mapped virtio
46 platform device driver.
47
48 If unsure, say N.
49
Pawel Moll81a054c2012-05-09 18:30:16 +010050config VIRTIO_MMIO_CMDLINE_DEVICES
51 bool "Memory mapped virtio devices parameter parsing"
52 depends on VIRTIO_MMIO
53 ---help---
54 Allow virtio-mmio devices instantiation via the kernel command line
55 or module parameters. Be aware that using incorrect parameters (base
56 address in particular) can crash your system - you have been warned.
57 See Documentation/kernel-parameters.txt for details.
58
59 If unsure, say 'N'.
60
Ohad Ben-Cohene7254212011-07-05 17:06:14 +030061endmenu