1# 2# KVM configuration 3# 4 5source "virt/kvm/Kconfig" 6 7menuconfig VIRTUALIZATION 8 bool "Virtualization" 9 depends on HAVE_KVM || X86 10 default y 11 ---help--- 12 Say Y here to get to see options for using your Linux host to run other 13 operating systems inside virtual machines (guests). 14 This option alone does not add any kernel code. 15 16 If you say N, all options in this submenu will be skipped and disabled. 17 18if VIRTUALIZATION 19 20config KVM 21 tristate "Kernel-based Virtual Machine (KVM) support" 22 depends on HAVE_KVM 23 # for device assignment: 24 depends on PCI 25 # for TASKSTATS/TASK_DELAY_ACCT: 26 depends on NET 27 select PREEMPT_NOTIFIERS 28 select MMU_NOTIFIER 29 select ANON_INODES 30 select HAVE_KVM_IRQCHIP 31 select HAVE_KVM_EVENTFD 32 select KVM_APIC_ARCHITECTURE 33 select KVM_ASYNC_PF 34 select USER_RETURN_NOTIFIER 35 select KVM_MMIO 36 select TASKSTATS 37 select TASK_DELAY_ACCT 38 select PERF_EVENTS 39 ---help--- 40 Support hosting fully virtualized guest machines using hardware 41 virtualization extensions. You will need a fairly recent 42 processor equipped with virtualization extensions. You will also 43 need to select one or more of the processor modules below. 44 45 This module provides access to the hardware capabilities through 46 a character device node named /dev/kvm. 47 48 To compile this as a module, choose M here: the module 49 will be called kvm. 50 51 If unsure, say N. 52 53config KVM_INTEL 54 tristate "KVM for Intel processors support" 55 depends on KVM 56 # for perf_guest_get_msrs(): 57 depends on CPU_SUP_INTEL 58 ---help--- 59 Provides support for KVM on Intel processors equipped with the VT 60 extensions. 61 62 To compile this as a module, choose M here: the module 63 will be called kvm-intel. 64 65config KVM_AMD 66 tristate "KVM for AMD processors support" 67 depends on KVM 68 ---help--- 69 Provides support for KVM on AMD processors equipped with the AMD-V 70 (SVM) extensions. 71 72 To compile this as a module, choose M here: the module 73 will be called kvm-amd. 74 75config KVM_MMU_AUDIT 76 bool "Audit KVM MMU" 77 depends on KVM && TRACEPOINTS 78 ---help--- 79 This option adds a R/W kVM module parameter 'mmu_audit', which allows 80 audit KVM MMU at runtime. 81 82# OK, it's a little counter-intuitive to do this, but it puts it neatly under 83# the virtualization menu. 84source drivers/vhost/Kconfig 85source drivers/lguest/Kconfig 86 87endif # VIRTUALIZATION 88