diff options
author | Alexander Graf <agraf@suse.de> | 2010-04-15 18:11:58 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-05-17 05:18:54 -0400 |
commit | 4f84139037b0c006c906cacbe904b25ccd4dfff9 (patch) | |
tree | 1f321b6630122eb5873fb83590e21ce0ac801d4b /arch/powerpc/kvm/Kconfig | |
parent | dd84c21748d9280f210565429b1bdb9b6353e8d2 (diff) |
KVM: PPC: Enable Book3S_32 KVM building
Now that we have all the bits and pieces in place, let's enable building
of the Book3S_32 target.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/powerpc/kvm/Kconfig')
-rw-r--r-- | arch/powerpc/kvm/Kconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/powerpc/kvm/Kconfig b/arch/powerpc/kvm/Kconfig index d864698860c6..b7baff78f90c 100644 --- a/arch/powerpc/kvm/Kconfig +++ b/arch/powerpc/kvm/Kconfig | |||
@@ -25,10 +25,28 @@ config KVM | |||
25 | config KVM_BOOK3S_HANDLER | 25 | config KVM_BOOK3S_HANDLER |
26 | bool | 26 | bool |
27 | 27 | ||
28 | config KVM_BOOK3S_32_HANDLER | ||
29 | bool | ||
30 | select KVM_BOOK3S_HANDLER | ||
31 | |||
28 | config KVM_BOOK3S_64_HANDLER | 32 | config KVM_BOOK3S_64_HANDLER |
29 | bool | 33 | bool |
30 | select KVM_BOOK3S_HANDLER | 34 | select KVM_BOOK3S_HANDLER |
31 | 35 | ||
36 | config KVM_BOOK3S_32 | ||
37 | tristate "KVM support for PowerPC book3s_32 processors" | ||
38 | depends on EXPERIMENTAL && PPC_BOOK3S_32 && !SMP && !PTE_64BIT | ||
39 | select KVM | ||
40 | select KVM_BOOK3S_32_HANDLER | ||
41 | ---help--- | ||
42 | Support running unmodified book3s_32 guest kernels | ||
43 | in virtual machines on book3s_32 host processors. | ||
44 | |||
45 | This module provides access to the hardware capabilities through | ||
46 | a character device node named /dev/kvm. | ||
47 | |||
48 | If unsure, say N. | ||
49 | |||
32 | config KVM_BOOK3S_64 | 50 | config KVM_BOOK3S_64 |
33 | tristate "KVM support for PowerPC book3s_64 processors" | 51 | tristate "KVM support for PowerPC book3s_64 processors" |
34 | depends on EXPERIMENTAL && PPC_BOOK3S_64 | 52 | depends on EXPERIMENTAL && PPC_BOOK3S_64 |