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
25 config KVM_BOOK3S_HANDLER
28 config KVM_BOOK3S_32_HANDLER
30 select KVM_BOOK3S_HANDLER
32 config KVM_BOOK3S_64_HANDLER
34 select KVM_BOOK3S_HANDLER
37 tristate "KVM support for PowerPC book3s_32 processors"
38 depends on EXPERIMENTAL && PPC_BOOK3S_32 && !SMP && !PTE_64BIT
40 select KVM_BOOK3S_32_HANDLER
42 Support running unmodified book3s_32 guest kernels
43 in virtual machines on book3s_32 host processors.
45 This module provides access to the hardware capabilities through
46 a character device node named /dev/kvm.
51 tristate "KVM support for PowerPC book3s_64 processors"
52 depends on EXPERIMENTAL && PPC_BOOK3S_64
54 select KVM_BOOK3S_64_HANDLER
56 Support running unmodified book3s_64 and book3s_32 guest kernels
57 in virtual machines on book3s_64 host processors.
59 This module provides access to the hardware capabilities through
60 a character device node named /dev/kvm.
65 bool "KVM support for PowerPC 440 processors"
66 depends on EXPERIMENTAL && 44x
69 Support running unmodified 440 guest kernels in virtual machines on
72 This module provides access to the hardware capabilities through
73 a character device node named /dev/kvm.
77 config KVM_EXIT_TIMING
78 bool "Detailed exit timing"
79 depends on KVM_440 || KVM_E500
81 Calculate elapsed time for every exit/enter cycle. A per-vcpu
82 report is available in debugfs kvm/vm#_vcpu#_timing.
83 The overhead is relatively small, however it is not recommended for
84 production environments.
89 bool "KVM support for PowerPC E500 processors"
90 depends on EXPERIMENTAL && E500
93 Support running unmodified E500 guest kernels in virtual machines on
96 This module provides access to the hardware capabilities through
97 a character device node named /dev/kvm.
101 source drivers/vhost/Kconfig
102 source drivers/virtio/Kconfig
104 endif # VIRTUALIZATION