]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/x86/xen/Kconfig
x86/xen: put setup.c, pmu.c and apic.c under CONFIG_XEN_PV
[karo-tx-linux.git] / arch / x86 / xen / Kconfig
1 #
2 # This Kconfig describes xen options
3 #
4
5 config XEN
6         bool "Xen guest support"
7         depends on PARAVIRT
8         select PARAVIRT_CLOCK
9         depends on X86_64 || (X86_32 && X86_PAE)
10         depends on X86_LOCAL_APIC && X86_TSC
11         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.
15
16 config XEN_PV
17         bool "Xen PV guest support"
18         default y
19         depends on XEN
20         select XEN_HAVE_PVMMU
21         select XEN_HAVE_VPMU
22         help
23           Support running as a Xen PV guest.
24
25 config XEN_DOM0
26         bool "Xen PV Dom0 support"
27         default y
28         depends on XEN_PV && PCI_XEN && SWIOTLB_XEN
29         depends on X86_IO_APIC && ACPI && PCI
30         help
31           Support running as a Xen PV Dom0 guest.
32
33 config XEN_PVHVM
34         bool "Xen PVHVM guest support"
35         default y
36         depends on XEN && PCI && X86_LOCAL_APIC
37         help
38           Support running as a Xen PVHVM guest.
39
40 config XEN_PVHVM_SMP
41         def_bool y
42         depends on XEN_PVHVM && SMP
43
44 config XEN_512GB
45         bool "Limit Xen pv-domain memory to 512GB"
46         depends on XEN_PV && X86_64
47         default y
48         help
49           Limit paravirtualized user domains to 512GB of RAM.
50
51           The Xen tools and crash dump analysis tools might not support
52           pv-domains with more than 512 GB of RAM. This option controls the
53           default setting of the kernel to use only up to 512 GB or more.
54           It is always possible to change the default via specifying the
55           boot parameter "xen_512gb_limit".
56
57 config XEN_SAVE_RESTORE
58        bool
59        depends on XEN
60        select HIBERNATE_CALLBACKS
61        default y
62
63 config XEN_DEBUG_FS
64         bool "Enable Xen debug and tuning parameters in debugfs"
65         depends on XEN && DEBUG_FS
66         default n
67         help
68           Enable statistics output and various tuning options in debugfs.
69           Enabling this option may incur a significant performance overhead.
70
71 config XEN_PVH
72         bool "Support for running as a PVH guest"
73         depends on XEN && XEN_PVHVM && ACPI
74         def_bool n