2007-10-22 09:03:36 +08:00
|
|
|
config VIRTIO
|
2008-02-05 12:50:05 +08:00
|
|
|
tristate
|
2012-09-28 13:35:15 +08:00
|
|
|
---help---
|
|
|
|
This option is selected by any driver which implements the virtio
|
|
|
|
bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_LGUEST,
|
|
|
|
CONFIG_RPMSG or CONFIG_S390_GUEST.
|
2007-10-22 09:03:40 +08:00
|
|
|
|
2011-07-05 22:06:14 +08:00
|
|
|
menu "Virtio drivers"
|
|
|
|
|
2007-11-13 11:30:26 +08:00
|
|
|
config VIRTIO_PCI
|
2012-10-03 02:19:07 +08:00
|
|
|
tristate "PCI driver for virtio devices"
|
|
|
|
depends on PCI
|
2007-11-13 11:30:26 +08:00
|
|
|
select VIRTIO
|
|
|
|
---help---
|
|
|
|
This drivers provides support for virtio based paravirtual device
|
|
|
|
drivers over PCI. This requires that your VMM has appropriate PCI
|
|
|
|
virtio backends. Most QEMU based VMMs should support these devices
|
|
|
|
(like KVM or Xen).
|
|
|
|
|
|
|
|
Currently, the ABI is not considered stable so there is no guarantee
|
|
|
|
that this version of the driver will work with your VMM.
|
|
|
|
|
|
|
|
If unsure, say M.
|
|
|
|
|
2008-02-05 12:50:12 +08:00
|
|
|
config VIRTIO_BALLOON
|
2012-09-28 13:35:14 +08:00
|
|
|
tristate "Virtio balloon driver"
|
|
|
|
depends on VIRTIO
|
2008-02-05 12:50:12 +08:00
|
|
|
---help---
|
|
|
|
This driver supports increasing and decreasing the amount
|
|
|
|
of memory within a KVM guest.
|
|
|
|
|
|
|
|
If unsure, say M.
|
|
|
|
|
2011-10-24 21:07:03 +08:00
|
|
|
config VIRTIO_MMIO
|
2012-10-03 02:19:07 +08:00
|
|
|
tristate "Platform bus driver for memory mapped virtio devices"
|
|
|
|
depends on HAS_IOMEM
|
2011-10-24 21:07:03 +08:00
|
|
|
select VIRTIO
|
|
|
|
---help---
|
|
|
|
This drivers provides support for memory mapped virtio
|
|
|
|
platform device driver.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2012-05-10 01:30:16 +08:00
|
|
|
config VIRTIO_MMIO_CMDLINE_DEVICES
|
|
|
|
bool "Memory mapped virtio devices parameter parsing"
|
|
|
|
depends on VIRTIO_MMIO
|
|
|
|
---help---
|
|
|
|
Allow virtio-mmio devices instantiation via the kernel command line
|
|
|
|
or module parameters. Be aware that using incorrect parameters (base
|
|
|
|
address in particular) can crash your system - you have been warned.
|
|
|
|
See Documentation/kernel-parameters.txt for details.
|
|
|
|
|
|
|
|
If unsure, say 'N'.
|
|
|
|
|
2011-07-05 22:06:14 +08:00
|
|
|
endmenu
|