blob: 0da0420af442d47162bec58c18275d3a0218f4ab [file] [log] [blame]
Sanjay Lal2235a542012-11-21 18:33:59 -08001#
2# KVM configuration
3#
4source "virt/kvm/Kconfig"
5
6menuconfig VIRTUALIZATION
7 bool "Virtualization"
Sanjay Lal2235a542012-11-21 18:33:59 -08008 ---help---
9 Say Y here to get to see options for using your Linux host to run
10 other operating systems inside virtual machines (guests).
11 This option alone does not add any kernel code.
12
13 If you say N, all options in this submenu will be skipped and disabled.
14
15if VIRTUALIZATION
16
17config KVM
18 tristate "Kernel-based Virtual Machine (KVM) support"
19 depends on HAVE_KVM
James Hogan90e93112016-06-23 17:34:39 +010020 select EXPORT_UASM
Sanjay Lal2235a542012-11-21 18:33:59 -080021 select PREEMPT_NOTIFIERS
Sanjay Lal2235a542012-11-21 18:33:59 -080022 select KVM_MMIO
Pranith Kumar83fe27e2014-12-05 11:24:45 -050023 select SRCU
Sanjay Lal2235a542012-11-21 18:33:59 -080024 ---help---
25 Support for hosting Guest kernels.
26 Currently supported on MIPS32 processors.
27
28config KVM_MIPS_DYN_TRANS
29 bool "KVM/MIPS: Dynamic binary translation to reduce traps"
30 depends on KVM
31 ---help---
32 When running in Trap & Emulate mode patch privileged
33 instructions to reduce the number of traps.
34
35 If unsure, say Y.
36
37config KVM_MIPS_DEBUG_COP0_COUNTERS
38 bool "Maintain counters for COP0 accesses"
39 depends on KVM
40 ---help---
41 Maintain statistics for Guest COP0 accesses.
42 A histogram of COP0 accesses is printed when the VM is
43 shutdown.
44
45 If unsure, say N.
46
47source drivers/vhost/Kconfig
48
49endif # VIRTUALIZATION