2013-01-21 07:28:06 +08: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 21:21:31 +08:00
|
|
|
depends on MMU && OF
|
2013-01-21 07:28:06 +08:00
|
|
|
select PREEMPT_NOTIFIERS
|
|
|
|
select ANON_INODES
|
2015-10-12 21:22:31 +08:00
|
|
|
select ARM_GIC
|
2013-10-09 01:38:13 +08:00
|
|
|
select HAVE_KVM_CPU_RELAX_INTERCEPT
|
2015-01-16 07:58:55 +08:00
|
|
|
select HAVE_KVM_ARCH_TLB_FLUSH_ALL
|
2013-01-21 07:28:06 +08:00
|
|
|
select KVM_MMIO
|
|
|
|
select KVM_ARM_HOST
|
2015-01-16 07:58:57 +08:00
|
|
|
select KVM_GENERIC_DIRTYLOG_READ_PROTECT
|
2014-12-06 00:24:45 +08:00
|
|
|
select SRCU
|
2015-03-11 21:21:31 +08:00
|
|
|
select MMU_NOTIFIER
|
2015-06-05 23:21:49 +08:00
|
|
|
select KVM_VFIO
|
2015-03-04 18:14:36 +08:00
|
|
|
select HAVE_KVM_EVENTFD
|
|
|
|
select HAVE_KVM_IRQFD
|
2016-07-23 00:20:41 +08:00
|
|
|
select HAVE_KVM_IRQCHIP
|
|
|
|
select HAVE_KVM_IRQ_ROUTING
|
2015-03-11 21:21:31 +08:00
|
|
|
depends on ARM_VIRT_EXT && ARM_LPAE && ARM_ARCH_TIMER
|
2013-01-21 07:28:06 +08:00
|
|
|
---help---
|
2015-03-11 21:21:31 +08:00
|
|
|
Support hosting virtualized guest machines.
|
2013-01-21 07:28:06 +08: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 21:21:31 +08:00
|
|
|
bool
|
2013-01-21 07:28:06 +08:00
|
|
|
---help---
|
|
|
|
Provides host support for ARM processors.
|
|
|
|
|
2015-10-09 23:08:43 +08:00
|
|
|
source drivers/vhost/Kconfig
|
|
|
|
|
2013-01-21 07:28:06 +08:00
|
|
|
endif # VIRTUALIZATION
|