Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1 | # |
| 2 | # KVM configuration |
| 3 | # |
| 4 | |
Avi Kivity | 0ba12d1 | 2009-05-21 16:45:19 +0300 | [diff] [blame] | 5 | source "virt/kvm/Kconfig" |
Avi Kivity | 5d9b8e3 | 2009-01-04 18:04:18 +0200 | [diff] [blame] | 6 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 7 | menuconfig 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 | |
| 17 | if VIRTUALIZATION |
| 18 | |
| 19 | config KVM |
Hollis Blanchard | 74ef740 | 2008-11-07 13:15:13 -0600 | [diff] [blame] | 20 | bool |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 21 | select PREEMPT_NOTIFIERS |
| 22 | select ANON_INODES |
Alexander Graf | 0e673fb | 2012-10-09 00:06:20 +0200 | [diff] [blame] | 23 | select HAVE_KVM_EVENTFD |
Hollis Blanchard | 74ef740 | 2008-11-07 13:15:13 -0600 | [diff] [blame] | 24 | |
Alexander Graf | c14dea0 | 2010-04-16 00:11:41 +0200 | [diff] [blame] | 25 | config KVM_BOOK3S_HANDLER |
| 26 | bool |
| 27 | |
Alexander Graf | 4f84139 | 2010-04-16 00:11:58 +0200 | [diff] [blame] | 28 | config KVM_BOOK3S_32_HANDLER |
| 29 | bool |
| 30 | select KVM_BOOK3S_HANDLER |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 31 | select KVM_MMIO |
Alexander Graf | 4f84139 | 2010-04-16 00:11:58 +0200 | [diff] [blame] | 32 | |
Alexander Graf | c4f9c77 | 2009-10-30 05:47:24 +0000 | [diff] [blame] | 33 | config KVM_BOOK3S_64_HANDLER |
| 34 | bool |
Alexander Graf | c14dea0 | 2010-04-16 00:11:41 +0200 | [diff] [blame] | 35 | select KVM_BOOK3S_HANDLER |
Alexander Graf | c4f9c77 | 2009-10-30 05:47:24 +0000 | [diff] [blame] | 36 | |
Aneesh Kumar K.V | 7aa7993 | 2013-10-07 22:17:51 +0530 | [diff] [blame] | 37 | config KVM_BOOK3S_PR_POSSIBLE |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 38 | bool |
| 39 | select KVM_MMIO |
Alexander Graf | 9b0cb3c | 2012-08-10 13:23:55 +0200 | [diff] [blame] | 40 | select MMU_NOTIFIER |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 41 | |
Aneesh Kumar K.V | 9975f5e | 2013-10-07 22:17:52 +0530 | [diff] [blame] | 42 | config KVM_BOOK3S_HV_POSSIBLE |
| 43 | bool |
| 44 | |
Alexander Graf | 4f84139 | 2010-04-16 00:11:58 +0200 | [diff] [blame] | 45 | config KVM_BOOK3S_32 |
| 46 | tristate "KVM support for PowerPC book3s_32 processors" |
Kees Cook | 07ff8b5 | 2013-01-16 18:53:22 -0800 | [diff] [blame] | 47 | depends on PPC_BOOK3S_32 && !SMP && !PTE_64BIT |
Alexander Graf | 4f84139 | 2010-04-16 00:11:58 +0200 | [diff] [blame] | 48 | select KVM |
| 49 | select KVM_BOOK3S_32_HANDLER |
Aneesh Kumar K.V | 7aa7993 | 2013-10-07 22:17:51 +0530 | [diff] [blame] | 50 | select KVM_BOOK3S_PR_POSSIBLE |
Alexander Graf | 4f84139 | 2010-04-16 00:11:58 +0200 | [diff] [blame] | 51 | ---help--- |
| 52 | Support running unmodified book3s_32 guest kernels |
| 53 | in virtual machines on book3s_32 host processors. |
| 54 | |
| 55 | This module provides access to the hardware capabilities through |
| 56 | a character device node named /dev/kvm. |
| 57 | |
| 58 | If unsure, say N. |
| 59 | |
Alexander Graf | c4f9c77 | 2009-10-30 05:47:24 +0000 | [diff] [blame] | 60 | config KVM_BOOK3S_64 |
| 61 | tristate "KVM support for PowerPC book3s_64 processors" |
Kees Cook | 07ff8b5 | 2013-01-16 18:53:22 -0800 | [diff] [blame] | 62 | depends on PPC_BOOK3S_64 |
Alexander Graf | c4f9c77 | 2009-10-30 05:47:24 +0000 | [diff] [blame] | 63 | select KVM_BOOK3S_64_HANDLER |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 64 | select KVM |
Aneesh Kumar K.V | 9975f5e | 2013-10-07 22:17:52 +0530 | [diff] [blame] | 65 | select KVM_BOOK3S_PR_POSSIBLE if !KVM_BOOK3S_HV_POSSIBLE |
Alexander Graf | c4f9c77 | 2009-10-30 05:47:24 +0000 | [diff] [blame] | 66 | ---help--- |
| 67 | Support running unmodified book3s_64 and book3s_32 guest kernels |
| 68 | in virtual machines on book3s_64 host processors. |
| 69 | |
| 70 | This module provides access to the hardware capabilities through |
| 71 | a character device node named /dev/kvm. |
| 72 | |
| 73 | If unsure, say N. |
| 74 | |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 75 | config KVM_BOOK3S_64_HV |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame^] | 76 | tristate "KVM support for POWER7 and PPC970 using hypervisor mode in host" |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 77 | depends on KVM_BOOK3S_64 |
Aneesh Kumar K.V | 9975f5e | 2013-10-07 22:17:52 +0530 | [diff] [blame] | 78 | select KVM_BOOK3S_HV_POSSIBLE |
Paul Mackerras | 342d3db | 2011-12-12 12:38:05 +0000 | [diff] [blame] | 79 | select MMU_NOTIFIER |
Aneesh Kumar K.V | fa61a4e3 | 2013-07-02 11:15:16 +0530 | [diff] [blame] | 80 | select CMA |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 81 | ---help--- |
| 82 | Support running unmodified book3s_64 guest kernels in |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 83 | virtual machines on POWER7 and PPC970 processors that have |
| 84 | hypervisor mode available to the host. |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 85 | |
| 86 | If you say Y here, KVM will use the hardware virtualization |
| 87 | facilities of POWER7 (and later) processors, meaning that |
| 88 | guest operating systems will run at full hardware speed |
| 89 | using supervisor and user modes. However, this also means |
| 90 | that KVM is not usable under PowerVM (pHyp), is only usable |
Paul Mackerras | 9e368f2 | 2011-06-29 00:40:08 +0000 | [diff] [blame] | 91 | on POWER7 (or later) processors and PPC970-family processors, |
| 92 | and cannot emulate a different processor from the host processor. |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 93 | |
| 94 | If unsure, say N. |
| 95 | |
| 96 | config KVM_BOOK3S_64_PR |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame^] | 97 | tristate "KVM support without using hypervisor mode in host" |
| 98 | depends on KVM_BOOK3S_64 |
Aneesh Kumar K.V | 7aa7993 | 2013-10-07 22:17:51 +0530 | [diff] [blame] | 99 | select KVM_BOOK3S_PR_POSSIBLE |
Aneesh Kumar K.V | 9975f5e | 2013-10-07 22:17:52 +0530 | [diff] [blame] | 100 | ---help--- |
| 101 | Support running guest kernels in virtual machines on processors |
| 102 | without using hypervisor mode in the host, by running the |
| 103 | guest in user mode (problem state) and emulating all |
| 104 | privileged instructions and registers. |
| 105 | |
| 106 | This is not as fast as using hypervisor mode, but works on |
| 107 | machines where hypervisor mode is not available or not usable, |
| 108 | and can emulate processors that are different from the host |
| 109 | processor, including emulating 32-bit processors on a 64-bit |
| 110 | host. |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 111 | |
Scott Wood | d30f6e4 | 2011-12-20 15:34:43 +0000 | [diff] [blame] | 112 | config KVM_BOOKE_HV |
| 113 | bool |
| 114 | |
Hollis Blanchard | 74ef740 | 2008-11-07 13:15:13 -0600 | [diff] [blame] | 115 | config KVM_440 |
| 116 | bool "KVM support for PowerPC 440 processors" |
Kees Cook | 07ff8b5 | 2013-01-16 18:53:22 -0800 | [diff] [blame] | 117 | depends on 44x |
Hollis Blanchard | 74ef740 | 2008-11-07 13:15:13 -0600 | [diff] [blame] | 118 | select KVM |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 119 | select KVM_MMIO |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 120 | ---help--- |
Hollis Blanchard | 74ef740 | 2008-11-07 13:15:13 -0600 | [diff] [blame] | 121 | Support running unmodified 440 guest kernels in virtual machines on |
| 122 | 440 host processors. |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 123 | |
| 124 | This module provides access to the hardware capabilities through |
| 125 | a character device node named /dev/kvm. |
| 126 | |
| 127 | If unsure, say N. |
| 128 | |
Hollis Blanchard | 73e75b4 | 2008-12-02 15:51:57 -0600 | [diff] [blame] | 129 | config KVM_EXIT_TIMING |
| 130 | bool "Detailed exit timing" |
Alexander Graf | bf7ca4b | 2012-02-15 23:40:00 +0000 | [diff] [blame] | 131 | depends on KVM_440 || KVM_E500V2 || KVM_E500MC |
Hollis Blanchard | 73e75b4 | 2008-12-02 15:51:57 -0600 | [diff] [blame] | 132 | ---help--- |
| 133 | Calculate elapsed time for every exit/enter cycle. A per-vcpu |
| 134 | report is available in debugfs kvm/vm#_vcpu#_timing. |
| 135 | The overhead is relatively small, however it is not recommended for |
| 136 | production environments. |
| 137 | |
| 138 | If unsure, say N. |
| 139 | |
Alexander Graf | bf7ca4b | 2012-02-15 23:40:00 +0000 | [diff] [blame] | 140 | config KVM_E500V2 |
| 141 | bool "KVM support for PowerPC E500v2 processors" |
Kees Cook | 07ff8b5 | 2013-01-16 18:53:22 -0800 | [diff] [blame] | 142 | depends on E500 && !PPC_E500MC |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 143 | select KVM |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 144 | select KVM_MMIO |
Alexander Graf | 862d31f | 2012-07-31 00:19:50 +0200 | [diff] [blame] | 145 | select MMU_NOTIFIER |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 146 | ---help--- |
| 147 | Support running unmodified E500 guest kernels in virtual machines on |
Alexander Graf | bf7ca4b | 2012-02-15 23:40:00 +0000 | [diff] [blame] | 148 | E500v2 host processors. |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 149 | |
| 150 | This module provides access to the hardware capabilities through |
| 151 | a character device node named /dev/kvm. |
| 152 | |
| 153 | If unsure, say N. |
| 154 | |
Scott Wood | 73196cd | 2011-12-20 15:34:47 +0000 | [diff] [blame] | 155 | config KVM_E500MC |
Mihai Caraman | d9ce604 | 2013-04-11 00:03:14 +0000 | [diff] [blame] | 156 | bool "KVM support for PowerPC E500MC/E5500/E6500 processors" |
Kees Cook | 07ff8b5 | 2013-01-16 18:53:22 -0800 | [diff] [blame] | 157 | depends on PPC_E500MC |
Scott Wood | 73196cd | 2011-12-20 15:34:47 +0000 | [diff] [blame] | 158 | select KVM |
| 159 | select KVM_MMIO |
| 160 | select KVM_BOOKE_HV |
Alexander Graf | 862d31f | 2012-07-31 00:19:50 +0200 | [diff] [blame] | 161 | select MMU_NOTIFIER |
Scott Wood | 73196cd | 2011-12-20 15:34:47 +0000 | [diff] [blame] | 162 | ---help--- |
Mihai Caraman | d9ce604 | 2013-04-11 00:03:14 +0000 | [diff] [blame] | 163 | Support running unmodified E500MC/E5500/E6500 guest kernels in |
| 164 | virtual machines on E500MC/E5500/E6500 host processors. |
Scott Wood | 73196cd | 2011-12-20 15:34:47 +0000 | [diff] [blame] | 165 | |
| 166 | This module provides access to the hardware capabilities through |
| 167 | a character device node named /dev/kvm. |
| 168 | |
| 169 | If unsure, say N. |
| 170 | |
Scott Wood | 5df554a | 2013-04-12 14:08:46 +0000 | [diff] [blame] | 171 | config KVM_MPIC |
| 172 | bool "KVM in-kernel MPIC emulation" |
Alexander Graf | 447a03c | 2013-04-17 01:54:26 +0200 | [diff] [blame] | 173 | depends on KVM && E500 |
Alexander Graf | de9ba2f | 2013-04-16 17:42:19 +0200 | [diff] [blame] | 174 | select HAVE_KVM_IRQCHIP |
| 175 | select HAVE_KVM_IRQ_ROUTING |
| 176 | select HAVE_KVM_MSI |
Scott Wood | 5df554a | 2013-04-12 14:08:46 +0000 | [diff] [blame] | 177 | help |
| 178 | Enable support for emulating MPIC devices inside the |
| 179 | host kernel, rather than relying on userspace to emulate. |
| 180 | Currently, support is limited to certain versions of |
| 181 | Freescale's MPIC implementation. |
| 182 | |
Benjamin Herrenschmidt | bc5ad3f | 2013-04-17 20:30:26 +0000 | [diff] [blame] | 183 | config KVM_XICS |
| 184 | bool "KVM in-kernel XICS emulation" |
| 185 | depends on KVM_BOOK3S_64 && !KVM_MPIC |
| 186 | ---help--- |
| 187 | Include support for the XICS (eXternal Interrupt Controller |
| 188 | Specification) interrupt controller architecture used on |
| 189 | IBM POWER (pSeries) servers. |
| 190 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 191 | source drivers/vhost/Kconfig |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 192 | |
| 193 | endif # VIRTUALIZATION |