2013-01-21 00:28:06 +01:00
|
|
|
#
|
|
|
|
# KVM configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
source "virt/kvm/Kconfig"
|
|
|
|
|
|
|
|
menuconfig VIRTUALIZATION
|
|
|
|
bool "Virtualization"
|
|
|
|
---help---
|
|
|
|
Say Y here to get to see options for using your Linux host to run
|
|
|
|
other operating systems inside virtual machines (guests).
|
|
|
|
This option alone does not add any kernel code.
|
|
|
|
|
|
|
|
If you say N, all options in this submenu will be skipped and
|
|
|
|
disabled.
|
|
|
|
|
|
|
|
if VIRTUALIZATION
|
|
|
|
|
|
|
|
config KVM
|
|
|
|
bool "Kernel-based Virtual Machine (KVM) support"
|
2015-03-11 14:21:31 +01:00
|
|
|
depends on MMU && OF
|
2013-01-21 00:28:06 +01:00
|
|
|
select PREEMPT_NOTIFIERS
|
|
|
|
select ANON_INODES
|
2013-10-08 19:38:13 +02:00
|
|
|
select HAVE_KVM_CPU_RELAX_INTERCEPT
|
2015-01-16 00:58:55 +01:00
|
|
|
select HAVE_KVM_ARCH_TLB_FLUSH_ALL
|
2013-01-21 00:28:06 +01:00
|
|
|
select KVM_MMIO
|
|
|
|
select KVM_ARM_HOST
|
2015-01-16 00:58:57 +01:00
|
|
|
select KVM_GENERIC_DIRTYLOG_READ_PROTECT
|
2014-12-05 17:24:45 +01:00
|
|
|
select SRCU
|
2015-03-11 14:21:31 +01:00
|
|
|
select MMU_NOTIFIER
|
2015-06-05 17:21:49 +02:00
|
|
|
select KVM_VFIO
|
2015-03-04 11:14:36 +01:00
|
|
|
select HAVE_KVM_EVENTFD
|
|
|
|
select HAVE_KVM_IRQFD
|
2015-03-11 14:21:31 +01:00
|
|
|
depends on ARM_VIRT_EXT && ARM_LPAE && ARM_ARCH_TIMER
|
2013-01-21 00:28:06 +01:00
|
|
|
---help---
|
2015-03-11 14:21:31 +01:00
|
|
|
Support hosting virtualized guest machines.
|
2013-01-21 00:28:06 +01:00
|
|
|
|
|
|
|
This module provides access to the hardware capabilities through
|
|
|
|
a character device node named /dev/kvm.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config KVM_ARM_HOST
|
2015-03-11 14:21:31 +01:00
|
|
|
bool
|
2013-01-21 00:28:06 +01:00
|
|
|
---help---
|
|
|
|
Provides host support for ARM processors.
|
|
|
|
|
|
|
|
config KVM_ARM_MAX_VCPUS
|
2013-06-07 03:02:54 +02:00
|
|
|
int "Number maximum supported virtual CPUs per VM"
|
|
|
|
depends on KVM_ARM_HOST
|
|
|
|
default 4
|
2013-01-21 00:28:06 +01:00
|
|
|
help
|
|
|
|
Static number of max supported virtual CPUs per VM.
|
|
|
|
|
|
|
|
If you choose a high number, the vcpu structures will be quite
|
|
|
|
large, so only choose a reasonable number that you expect to
|
|
|
|
actually use.
|
|
|
|
|
|
|
|
endif # VIRTUALIZATION
|