Kconfig 2.2 KB
Newer Older
A
Avi Kivity 已提交
1 2 3
#
# KVM configuration
#
4

5
source "virt/kvm/Kconfig"
A
Avi Kivity 已提交
6

7 8
menuconfig VIRTUALIZATION
	bool "Virtualization"
9
	depends on HAVE_KVM || X86
10
	default y
11
	---help---
12 13
	  Say Y here to get to see options for using your Linux host to run other
	  operating systems inside virtual machines (guests).
14 15 16
	  This option alone does not add any kernel code.

	  If you say N, all options in this submenu will be skipped and disabled.
17 18

if VIRTUALIZATION
19

A
Avi Kivity 已提交
20 21
config KVM
	tristate "Kernel-based Virtual Machine (KVM) support"
A
Avi Kivity 已提交
22
	depends on HAVE_KVM
A
Avi Kivity 已提交
23 24
	# for device assignment:
	depends on PCI
25
	select PREEMPT_NOTIFIERS
A
Andrea Arcangeli 已提交
26
	select MMU_NOTIFIER
A
Avi Kivity 已提交
27
	select ANON_INODES
28
	select HAVE_KVM_IRQCHIP
G
Gregory Haskins 已提交
29
	select HAVE_KVM_EVENTFD
30
	select KVM_APIC_ARCHITECTURE
31
	select KVM_ASYNC_PF
A
Avi Kivity 已提交
32
	select USER_RETURN_NOTIFIER
A
Avi Kivity 已提交
33
	select KVM_MMIO
G
Glauber Costa 已提交
34
	select TASK_DELAY_ACCT
A
Avi Kivity 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
	---help---
	  Support hosting fully virtualized guest machines using hardware
	  virtualization extensions.  You will need a fairly recent
	  processor equipped with virtualization extensions. You will also
	  need to select one or more of the processor modules below.

	  This module provides access to the hardware capabilities through
	  a character device node named /dev/kvm.

	  To compile this as a module, choose M here: the module
	  will be called kvm.

	  If unsure, say N.

config KVM_INTEL
	tristate "KVM for Intel processors support"
	depends on KVM
	---help---
	  Provides support for KVM on Intel processors equipped with the VT
	  extensions.

56 57 58
	  To compile this as a module, choose M here: the module
	  will be called kvm-intel.

A
Avi Kivity 已提交
59 60 61 62 63 64
config KVM_AMD
	tristate "KVM for AMD processors support"
	depends on KVM
	---help---
	  Provides support for KVM on AMD processors equipped with the AMD-V
	  (SVM) extensions.
65

66 67 68
	  To compile this as a module, choose M here: the module
	  will be called kvm-amd.

69 70 71 72 73 74 75
config KVM_MMU_AUDIT
	bool "Audit KVM MMU"
	depends on KVM && TRACEPOINTS
	---help---
	 This option adds a R/W kVM module parameter 'mmu_audit', which allows
	 audit  KVM MMU at runtime.

76 77
# OK, it's a little counter-intuitive to do this, but it puts it neatly under
# the virtualization menu.
78
source drivers/vhost/Kconfig
79
source drivers/lguest/Kconfig
80
source drivers/virtio/Kconfig
81

82
endif # VIRTUALIZATION