blob: 0c52cb5d43f52bdba5008ccade5edfd2b4fee5f4 [file] [log] [blame]
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001#
2# KVM configuration
3#
4
Avi Kivity0ba12d12009-05-21 16:45:19 +03005source "virt/kvm/Kconfig"
Avi Kivity5d9b8e32009-01-04 18:04:18 +02006
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05007menuconfig VIRTUALIZATION
8 bool "Virtualization"
9 ---help---
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.
13
14 If you say N, all options in this submenu will be skipped and
15 disabled.
16
17if VIRTUALIZATION
18
19config KVM
Hollis Blanchard74ef7402008-11-07 13:15:13 -060020 bool
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050021 select PREEMPT_NOTIFIERS
22 select ANON_INODES
Alexander Graf0e673fb2012-10-09 00:06:20 +020023 select HAVE_KVM_EVENTFD
Pranith Kumar83fe27e2014-12-05 11:24:45 -050024 select SRCU
Paul Mackerras4b3d1732016-08-18 16:04:41 +100025 select KVM_VFIO
Suresh Warrier95767302016-08-19 15:35:47 +100026 select IRQ_BYPASS_MANAGER
27 select HAVE_KVM_IRQ_BYPASS
Hollis Blanchard74ef7402008-11-07 13:15:13 -060028
Alexander Grafc14dea02010-04-16 00:11:41 +020029config KVM_BOOK3S_HANDLER
30 bool
31
Alexander Graf4f841392010-04-16 00:11:58 +020032config KVM_BOOK3S_32_HANDLER
33 bool
34 select KVM_BOOK3S_HANDLER
Paul Mackerrasde56a942011-06-29 00:21:34 +000035 select KVM_MMIO
Alexander Graf4f841392010-04-16 00:11:58 +020036
Alexander Grafc4f9c772009-10-30 05:47:24 +000037config KVM_BOOK3S_64_HANDLER
38 bool
Alexander Grafc14dea02010-04-16 00:11:41 +020039 select KVM_BOOK3S_HANDLER
Alexander Grafc4f9c772009-10-30 05:47:24 +000040
Aneesh Kumar K.V7aa79932013-10-07 22:17:51 +053041config KVM_BOOK3S_PR_POSSIBLE
Paul Mackerrasde56a942011-06-29 00:21:34 +000042 bool
43 select KVM_MMIO
Alexander Graf9b0cb3c2012-08-10 13:23:55 +020044 select MMU_NOTIFIER
Paul Mackerrasde56a942011-06-29 00:21:34 +000045
Aneesh Kumar K.V9975f5e2013-10-07 22:17:52 +053046config KVM_BOOK3S_HV_POSSIBLE
47 bool
48
Alexander Graf4f841392010-04-16 00:11:58 +020049config KVM_BOOK3S_32
50 tristate "KVM support for PowerPC book3s_32 processors"
Kees Cook07ff8b52013-01-16 18:53:22 -080051 depends on PPC_BOOK3S_32 && !SMP && !PTE_64BIT
Alexander Graf4f841392010-04-16 00:11:58 +020052 select KVM
53 select KVM_BOOK3S_32_HANDLER
Aneesh Kumar K.V7aa79932013-10-07 22:17:51 +053054 select KVM_BOOK3S_PR_POSSIBLE
Alexander Graf4f841392010-04-16 00:11:58 +020055 ---help---
56 Support running unmodified book3s_32 guest kernels
57 in virtual machines on book3s_32 host processors.
58
59 This module provides access to the hardware capabilities through
60 a character device node named /dev/kvm.
61
62 If unsure, say N.
63
Alexander Grafc4f9c772009-10-30 05:47:24 +000064config KVM_BOOK3S_64
65 tristate "KVM support for PowerPC book3s_64 processors"
Kees Cook07ff8b52013-01-16 18:53:22 -080066 depends on PPC_BOOK3S_64
Alexander Grafc4f9c772009-10-30 05:47:24 +000067 select KVM_BOOK3S_64_HANDLER
Paul Mackerrasde56a942011-06-29 00:21:34 +000068 select KVM
Aneesh Kumar K.V9975f5e2013-10-07 22:17:52 +053069 select KVM_BOOK3S_PR_POSSIBLE if !KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras76d837a2017-05-11 14:31:59 +100070 select SPAPR_TCE_IOMMU if IOMMU_SUPPORT && (PPC_SERIES || PPC_POWERNV)
Alexander Grafc4f9c772009-10-30 05:47:24 +000071 ---help---
72 Support running unmodified book3s_64 and book3s_32 guest kernels
73 in virtual machines on book3s_64 host processors.
74
75 This module provides access to the hardware capabilities through
76 a character device node named /dev/kvm.
77
78 If unsure, say N.
79
Paul Mackerrasde56a942011-06-29 00:21:34 +000080config KVM_BOOK3S_64_HV
Thomas Huth129fd422015-05-22 11:41:01 +020081 tristate "KVM for POWER7 and later using hypervisor mode in host"
Shreyas B. Prabhua7e73e72015-04-16 16:28:09 +053082 depends on KVM_BOOK3S_64 && PPC_POWERNV
Aneesh Kumar K.V9975f5e2013-10-07 22:17:52 +053083 select KVM_BOOK3S_HV_POSSIBLE
Paul Mackerras342d3db2011-12-12 12:38:05 +000084 select MMU_NOTIFIER
Aneesh Kumar K.Vfa61a4e32013-07-02 11:15:16 +053085 select CMA
Paul Mackerrasde56a942011-06-29 00:21:34 +000086 ---help---
87 Support running unmodified book3s_64 guest kernels in
Thomas Huth129fd422015-05-22 11:41:01 +020088 virtual machines on POWER7 and newer processors that have
Paul Mackerras9e368f22011-06-29 00:40:08 +000089 hypervisor mode available to the host.
Paul Mackerrasde56a942011-06-29 00:21:34 +000090
91 If you say Y here, KVM will use the hardware virtualization
92 facilities of POWER7 (and later) processors, meaning that
93 guest operating systems will run at full hardware speed
94 using supervisor and user modes. However, this also means
95 that KVM is not usable under PowerVM (pHyp), is only usable
Thomas Huth129fd422015-05-22 11:41:01 +020096 on POWER7 or later processors, and cannot emulate a
97 different processor from the host processor.
Paul Mackerrasde56a942011-06-29 00:21:34 +000098
99 If unsure, say N.
100
101config KVM_BOOK3S_64_PR
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530102 tristate "KVM support without using hypervisor mode in host"
103 depends on KVM_BOOK3S_64
Aneesh Kumar K.V7aa79932013-10-07 22:17:51 +0530104 select KVM_BOOK3S_PR_POSSIBLE
Aneesh Kumar K.V9975f5e2013-10-07 22:17:52 +0530105 ---help---
106 Support running guest kernels in virtual machines on processors
107 without using hypervisor mode in the host, by running the
108 guest in user mode (problem state) and emulating all
109 privileged instructions and registers.
110
111 This is not as fast as using hypervisor mode, but works on
112 machines where hypervisor mode is not available or not usable,
113 and can emulate processors that are different from the host
114 processor, including emulating 32-bit processors on a 64-bit
115 host.
Paul Mackerrasde56a942011-06-29 00:21:34 +0000116
Paul Mackerrasb6c295d2015-03-28 14:21:02 +1100117config KVM_BOOK3S_HV_EXIT_TIMING
118 bool "Detailed timing for hypervisor real-mode code"
119 depends on KVM_BOOK3S_HV_POSSIBLE && DEBUG_FS
120 ---help---
121 Calculate time taken for each vcpu in the real-mode guest entry,
122 exit, and interrupt handling code, plus time spent in the guest
123 and in nap mode due to idle (cede) while other threads are still
124 in the guest. The total, minimum and maximum times in nanoseconds
125 together with the number of executions are reported in debugfs in
126 kvm/vm#/vcpu#/timings. The overhead is of the order of 30 - 40
127 ns per exit on POWER8.
128
129 If unsure, say N.
130
Scott Woodd30f6e42011-12-20 15:34:43 +0000131config KVM_BOOKE_HV
132 bool
133
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600134config KVM_EXIT_TIMING
135 bool "Detailed exit timing"
Alexander Grafb2677b82014-07-25 10:38:59 +0200136 depends on KVM_E500V2 || KVM_E500MC
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600137 ---help---
138 Calculate elapsed time for every exit/enter cycle. A per-vcpu
139 report is available in debugfs kvm/vm#_vcpu#_timing.
140 The overhead is relatively small, however it is not recommended for
141 production environments.
142
143 If unsure, say N.
144
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000145config KVM_E500V2
146 bool "KVM support for PowerPC E500v2 processors"
Kees Cook07ff8b52013-01-16 18:53:22 -0800147 depends on E500 && !PPC_E500MC
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600148 select KVM
Paul Mackerrasde56a942011-06-29 00:21:34 +0000149 select KVM_MMIO
Alexander Graf862d31f2012-07-31 00:19:50 +0200150 select MMU_NOTIFIER
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600151 ---help---
152 Support running unmodified E500 guest kernels in virtual machines on
Alexander Grafbf7ca4b2012-02-15 23:40:00 +0000153 E500v2 host processors.
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600154
155 This module provides access to the hardware capabilities through
156 a character device node named /dev/kvm.
157
158 If unsure, say N.
159
Scott Wood73196cd32011-12-20 15:34:47 +0000160config KVM_E500MC
Mihai Caramand9ce6042013-04-11 00:03:14 +0000161 bool "KVM support for PowerPC E500MC/E5500/E6500 processors"
Kees Cook07ff8b52013-01-16 18:53:22 -0800162 depends on PPC_E500MC
Scott Wood73196cd32011-12-20 15:34:47 +0000163 select KVM
164 select KVM_MMIO
165 select KVM_BOOKE_HV
Alexander Graf862d31f2012-07-31 00:19:50 +0200166 select MMU_NOTIFIER
Scott Wood73196cd32011-12-20 15:34:47 +0000167 ---help---
Mihai Caramand9ce6042013-04-11 00:03:14 +0000168 Support running unmodified E500MC/E5500/E6500 guest kernels in
169 virtual machines on E500MC/E5500/E6500 host processors.
Scott Wood73196cd32011-12-20 15:34:47 +0000170
171 This module provides access to the hardware capabilities through
172 a character device node named /dev/kvm.
173
174 If unsure, say N.
175
Scott Wood5df554ad2013-04-12 14:08:46 +0000176config KVM_MPIC
177 bool "KVM in-kernel MPIC emulation"
Alexander Graf447a03c2013-04-17 01:54:26 +0200178 depends on KVM && E500
Alexander Grafde9ba2f2013-04-16 17:42:19 +0200179 select HAVE_KVM_IRQCHIP
Paul Mackerras297e2102014-06-30 20:51:13 +1000180 select HAVE_KVM_IRQFD
Alexander Grafde9ba2f2013-04-16 17:42:19 +0200181 select HAVE_KVM_IRQ_ROUTING
182 select HAVE_KVM_MSI
Scott Wood5df554ad2013-04-12 14:08:46 +0000183 help
184 Enable support for emulating MPIC devices inside the
185 host kernel, rather than relying on userspace to emulate.
186 Currently, support is limited to certain versions of
187 Freescale's MPIC implementation.
188
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000189config KVM_XICS
190 bool "KVM in-kernel XICS emulation"
191 depends on KVM_BOOK3S_64 && !KVM_MPIC
Paul Mackerras25a2150b2014-06-30 20:51:14 +1000192 select HAVE_KVM_IRQCHIP
193 select HAVE_KVM_IRQFD
Anton Blanchard476ce5ef02014-12-03 13:30:42 +1100194 default y
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000195 ---help---
196 Include support for the XICS (eXternal Interrupt Controller
197 Specification) interrupt controller architecture used on
198 IBM POWER (pSeries) servers.
199
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000200config KVM_XIVE
201 bool
202 default y
203 depends on KVM_XICS && PPC_XIVE_NATIVE && KVM_BOOK3S_HV_POSSIBLE
204
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000205source drivers/vhost/Kconfig
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500206
207endif # VIRTUALIZATION