aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/virtio/Kconfig
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
commit8dea78da5cee153b8af9c07a2745f6c55057fe12 (patch)
treea8f4d49d63b1ecc92f2fddceba0655b2472c5bd9 /drivers/virtio/Kconfig
parent406089d01562f1e2bf9f089fd7637009ebaad589 (diff)
Patched in Tegra support.
Diffstat (limited to 'drivers/virtio/Kconfig')
-rw-r--r--drivers/virtio/Kconfig37
1 files changed, 10 insertions, 27 deletions
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig
index 8d5bddb56cb..57e493b1bd2 100644
--- a/drivers/virtio/Kconfig
+++ b/drivers/virtio/Kconfig
@@ -1,9 +1,11 @@
1# Virtio always gets selected by whoever wants it.
1config VIRTIO 2config VIRTIO
2 tristate 3 tristate
3 ---help--- 4
4 This option is selected by any driver which implements the virtio 5# Similarly the virtio ring implementation.
5 bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_LGUEST, 6config VIRTIO_RING
6 CONFIG_RPMSG or CONFIG_S390_GUEST. 7 tristate
8 depends on VIRTIO
7 9
8menu "Virtio drivers" 10menu "Virtio drivers"
9 11
@@ -11,6 +13,7 @@ config VIRTIO_PCI
11 tristate "PCI driver for virtio devices (EXPERIMENTAL)" 13 tristate "PCI driver for virtio devices (EXPERIMENTAL)"
12 depends on PCI && EXPERIMENTAL 14 depends on PCI && EXPERIMENTAL
13 select VIRTIO 15 select VIRTIO
16 select VIRTIO_RING
14 ---help--- 17 ---help---
15 This drivers provides support for virtio based paravirtual device 18 This drivers provides support for virtio based paravirtual device
16 drivers over PCI. This requires that your VMM has appropriate PCI 19 drivers over PCI. This requires that your VMM has appropriate PCI
@@ -23,33 +26,13 @@ config VIRTIO_PCI
23 If unsure, say M. 26 If unsure, say M.
24 27
25config VIRTIO_BALLOON 28config VIRTIO_BALLOON
26 tristate "Virtio balloon driver" 29 tristate "Virtio balloon driver (EXPERIMENTAL)"
27 depends on VIRTIO 30 select VIRTIO
31 select VIRTIO_RING
28 ---help--- 32 ---help---
29 This driver supports increasing and decreasing the amount 33 This driver supports increasing and decreasing the amount
30 of memory within a KVM guest. 34 of memory within a KVM guest.
31 35
32 If unsure, say M. 36 If unsure, say M.
33 37
34 config VIRTIO_MMIO
35 tristate "Platform bus driver for memory mapped virtio devices (EXPERIMENTAL)"
36 depends on HAS_IOMEM && EXPERIMENTAL
37 select VIRTIO
38 ---help---
39 This drivers provides support for memory mapped virtio
40 platform device driver.
41
42 If unsure, say N.
43
44config VIRTIO_MMIO_CMDLINE_DEVICES
45 bool "Memory mapped virtio devices parameter parsing"
46 depends on VIRTIO_MMIO
47 ---help---
48 Allow virtio-mmio devices instantiation via the kernel command line
49 or module parameters. Be aware that using incorrect parameters (base
50 address in particular) can crash your system - you have been warned.
51 See Documentation/kernel-parameters.txt for details.
52
53 If unsure, say 'N'.
54
55endmenu 38endmenu