5 source "virt/kvm/Kconfig"
7 menuconfig VIRTUALIZATION
10 Say Y here to get to see options for using your Linux host to run
11 other operating systems inside virtual machines (guests).
12 This option alone does not add any kernel code.
14 If you say N, all options in this submenu will be skipped and
21 select PREEMPT_NOTIFIERS
24 config KVM_BOOK3S_HANDLER
27 config KVM_BOOK3S_32_HANDLER
29 select KVM_BOOK3S_HANDLER
32 config KVM_BOOK3S_64_HANDLER
34 select KVM_BOOK3S_HANDLER
41 tristate "KVM support for PowerPC book3s_32 processors"
42 depends on EXPERIMENTAL && PPC_BOOK3S_32 && !SMP && !PTE_64BIT
44 select KVM_BOOK3S_32_HANDLER
47 Support running unmodified book3s_32 guest kernels
48 in virtual machines on book3s_32 host processors.
50 This module provides access to the hardware capabilities through
51 a character device node named /dev/kvm.
56 tristate "KVM support for PowerPC book3s_64 processors"
57 depends on EXPERIMENTAL && PPC_BOOK3S_64
58 select KVM_BOOK3S_64_HANDLER
61 Support running unmodified book3s_64 and book3s_32 guest kernels
62 in virtual machines on book3s_64 host processors.
64 This module provides access to the hardware capabilities through
65 a character device node named /dev/kvm.
69 config KVM_BOOK3S_64_HV
70 bool "KVM support for POWER7 and PPC970 using hypervisor mode in host"
71 depends on KVM_BOOK3S_64
73 Support running unmodified book3s_64 guest kernels in
74 virtual machines on POWER7 and PPC970 processors that have
75 hypervisor mode available to the host.
77 If you say Y here, KVM will use the hardware virtualization
78 facilities of POWER7 (and later) processors, meaning that
79 guest operating systems will run at full hardware speed
80 using supervisor and user modes. However, this also means
81 that KVM is not usable under PowerVM (pHyp), is only usable
82 on POWER7 (or later) processors and PPC970-family processors,
83 and cannot emulate a different processor from the host processor.
87 config KVM_BOOK3S_64_PR
89 depends on KVM_BOOK3S_64 && !KVM_BOOK3S_64_HV
93 bool "KVM support for PowerPC 440 processors"
94 depends on EXPERIMENTAL && 44x
98 Support running unmodified 440 guest kernels in virtual machines on
101 This module provides access to the hardware capabilities through
102 a character device node named /dev/kvm.
106 config KVM_EXIT_TIMING
107 bool "Detailed exit timing"
108 depends on KVM_440 || KVM_E500
110 Calculate elapsed time for every exit/enter cycle. A per-vcpu
111 report is available in debugfs kvm/vm#_vcpu#_timing.
112 The overhead is relatively small, however it is not recommended for
113 production environments.
118 bool "KVM support for PowerPC E500 processors"
119 depends on EXPERIMENTAL && E500
123 Support running unmodified E500 guest kernels in virtual machines on
124 E500 host processors.
126 This module provides access to the hardware capabilities through
127 a character device node named /dev/kvm.
131 source drivers/vhost/Kconfig
133 endif # VIRTUALIZATION