Kconfig 1.3 KB
Newer Older
J
Jeremy Fitzhardinge 已提交
1 2 3 4 5
#
# This Kconfig describes xen options
#

config XEN
6
	bool "Xen guest support"
7
	depends on PARAVIRT
8
	select PARAVIRT_CLOCK
9
	select XEN_HAVE_PVMMU
10
	depends on X86_64 || (X86_32 && X86_PAE && !X86_VISWS)
11
	depends on X86_TSC
J
Jeremy Fitzhardinge 已提交
12 13 14 15
	help
	  This is the Linux Xen port.  Enabling this will allow the
	  kernel to boot in a paravirtualized environment under the
	  Xen hypervisor.
16

17 18 19 20 21
config XEN_DOM0
	def_bool y
	depends on XEN && PCI_XEN && SWIOTLB_XEN
	depends on X86_LOCAL_APIC && X86_IO_APIC && ACPI && PCI

22 23
config XEN_PVHVM
	def_bool y
24
	depends on XEN && PCI && X86_LOCAL_APIC
25

26
config XEN_MAX_DOMAIN_MEMORY
27
       int
28 29
       default 500 if X86_64
       default 64 if X86_32
30 31
       depends on XEN
       help
32 33
         This only affects the sizing of some bss arrays, the unused
         portions of which are freed.
34 35 36

config XEN_SAVE_RESTORE
       bool
37
       depends on XEN
38
       select HIBERNATE_CALLBACKS
J
Jeremy Fitzhardinge 已提交
39 40 41 42 43 44 45 46
       default y

config XEN_DEBUG_FS
	bool "Enable Xen debug and tuning parameters in debugfs"
	depends on XEN && DEBUG_FS
	default n
	help
	  Enable statistics output and various tuning options in debugfs.
47
	  Enabling this option may incur a significant performance overhead.
48

49 50
config XEN_PVH
	bool "Support for running as a PVH guest"
51
	depends on X86_64 && XEN && XEN_PVHVM
52
	def_bool n