diff options
Diffstat (limited to 'arch/powerpc/kvm/Kconfig')
-rw-r--r-- | arch/powerpc/kvm/Kconfig | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/arch/powerpc/kvm/Kconfig b/arch/powerpc/kvm/Kconfig index 8f64709ae331..f4dacb9c57fa 100644 --- a/arch/powerpc/kvm/Kconfig +++ b/arch/powerpc/kvm/Kconfig | |||
@@ -90,6 +90,9 @@ config KVM_BOOK3S_64_PR | |||
90 | depends on KVM_BOOK3S_64 && !KVM_BOOK3S_64_HV | 90 | depends on KVM_BOOK3S_64 && !KVM_BOOK3S_64_HV |
91 | select KVM_BOOK3S_PR | 91 | select KVM_BOOK3S_PR |
92 | 92 | ||
93 | config KVM_BOOKE_HV | ||
94 | bool | ||
95 | |||
93 | config KVM_440 | 96 | config KVM_440 |
94 | bool "KVM support for PowerPC 440 processors" | 97 | bool "KVM support for PowerPC 440 processors" |
95 | depends on EXPERIMENTAL && 44x | 98 | depends on EXPERIMENTAL && 44x |
@@ -106,7 +109,7 @@ config KVM_440 | |||
106 | 109 | ||
107 | config KVM_EXIT_TIMING | 110 | config KVM_EXIT_TIMING |
108 | bool "Detailed exit timing" | 111 | bool "Detailed exit timing" |
109 | depends on KVM_440 || KVM_E500 | 112 | depends on KVM_440 || KVM_E500V2 || KVM_E500MC |
110 | ---help--- | 113 | ---help--- |
111 | Calculate elapsed time for every exit/enter cycle. A per-vcpu | 114 | Calculate elapsed time for every exit/enter cycle. A per-vcpu |
112 | report is available in debugfs kvm/vm#_vcpu#_timing. | 115 | report is available in debugfs kvm/vm#_vcpu#_timing. |
@@ -115,14 +118,29 @@ config KVM_EXIT_TIMING | |||
115 | 118 | ||
116 | If unsure, say N. | 119 | If unsure, say N. |
117 | 120 | ||
118 | config KVM_E500 | 121 | config KVM_E500V2 |
119 | bool "KVM support for PowerPC E500 processors" | 122 | bool "KVM support for PowerPC E500v2 processors" |
120 | depends on EXPERIMENTAL && E500 | 123 | depends on EXPERIMENTAL && E500 && !PPC_E500MC |
121 | select KVM | 124 | select KVM |
122 | select KVM_MMIO | 125 | select KVM_MMIO |
123 | ---help--- | 126 | ---help--- |
124 | Support running unmodified E500 guest kernels in virtual machines on | 127 | Support running unmodified E500 guest kernels in virtual machines on |
125 | E500 host processors. | 128 | E500v2 host processors. |
129 | |||
130 | This module provides access to the hardware capabilities through | ||
131 | a character device node named /dev/kvm. | ||
132 | |||
133 | If unsure, say N. | ||
134 | |||
135 | config KVM_E500MC | ||
136 | bool "KVM support for PowerPC E500MC/E5500 processors" | ||
137 | depends on EXPERIMENTAL && PPC_E500MC | ||
138 | select KVM | ||
139 | select KVM_MMIO | ||
140 | select KVM_BOOKE_HV | ||
141 | ---help--- | ||
142 | Support running unmodified E500MC/E5500 (32-bit) guest kernels in | ||
143 | virtual machines on E500MC/E5500 host processors. | ||
126 | 144 | ||
127 | This module provides access to the hardware capabilities through | 145 | This module provides access to the hardware capabilities through |
128 | a character device node named /dev/kvm. | 146 | a character device node named /dev/kvm. |