blob: 87b9ab166423bca3e46e27e3fa8518de89c30466 [file] [log] [blame]
Jeremy Fitzhardingee738fca82007-07-17 18:37:05 -07001#
2# This Kconfig describes xen options
3#
4
5config XEN
Rusty Russelld3d1c4b2007-10-22 10:55:21 +10006 bool "Xen guest support"
7 select PARAVIRT
Gerd Hoffmann1c7b67f2008-06-03 16:17:30 +02008 select PARAVIRT_CLOCK
Jeremy Fitzhardinge51dd6602008-07-08 15:07:17 -07009 depends on X86_64 || (X86_32 && X86_PAE && !(X86_VISWS || X86_VOYAGER))
10 depends on X86_CMPXCHG && X86_TSC
Jeremy Fitzhardingee738fca82007-07-17 18:37:05 -070011 help
12 This is the Linux Xen port. Enabling this will allow the
13 kernel to boot in a paravirtualized environment under the
14 Xen hypervisor.
Jeremy Fitzhardinge8006ec32008-05-26 23:31:19 +010015
16config XEN_MAX_DOMAIN_MEMORY
17 int "Maximum allowed size of a domain in gigabytes"
Jeremy Fitzhardinge51dd6602008-07-08 15:07:17 -070018 default 8 if X86_32
19 default 32 if X86_64
Jeremy Fitzhardinge8006ec32008-05-26 23:31:19 +010020 depends on XEN
21 help
22 The pseudo-physical to machine address array is sized
23 according to the maximum possible memory size of a Xen
24 domain. This array uses 1 page per gigabyte, so there's no
Jeremy Fitzhardinge51dd6602008-07-08 15:07:17 -070025 need to be too stingy here.
Jeremy Fitzhardinge93a08862008-07-15 13:43:42 -070026
27config XEN_SAVE_RESTORE
28 bool
Chuck Ebbert08115ab2008-09-29 18:24:23 -040029 depends on XEN && PM
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070030 default y
31
32config XEN_DEBUG_FS
33 bool "Enable Xen debug and tuning parameters in debugfs"
34 depends on XEN && DEBUG_FS
35 default n
36 help
37 Enable statistics output and various tuning options in debugfs.
Chuck Ebbert08115ab2008-09-29 18:24:23 -040038 Enabling this option may incur a significant performance overhead.