Kconfig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #
  2. # This Kconfig describes xen options
  3. #
  4. config XEN
  5. bool "Xen guest support"
  6. depends on PARAVIRT
  7. select PARAVIRT_CLOCK
  8. depends on X86_64 || (X86_32 && X86_PAE)
  9. depends on X86_LOCAL_APIC && X86_TSC
  10. help
  11. This is the Linux Xen port. Enabling this will allow the
  12. kernel to boot in a paravirtualized environment under the
  13. Xen hypervisor.
  14. config XEN_PV
  15. bool "Xen PV guest support"
  16. default y
  17. depends on XEN
  18. select XEN_HAVE_PVMMU
  19. select XEN_HAVE_VPMU
  20. help
  21. Support running as a Xen PV guest.
  22. config XEN_PV_SMP
  23. def_bool y
  24. depends on XEN_PV && SMP
  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. config XEN_PVHVM
  33. bool "Xen PVHVM guest support"
  34. default y
  35. depends on XEN && PCI && X86_LOCAL_APIC
  36. help
  37. Support running as a Xen PVHVM guest.
  38. config XEN_PVHVM_SMP
  39. def_bool y
  40. depends on XEN_PVHVM && SMP
  41. config XEN_512GB
  42. bool "Limit Xen pv-domain memory to 512GB"
  43. depends on XEN_PV && X86_64
  44. default y
  45. help
  46. Limit paravirtualized user domains to 512GB of RAM.
  47. The Xen tools and crash dump analysis tools might not support
  48. pv-domains with more than 512 GB of RAM. This option controls the
  49. default setting of the kernel to use only up to 512 GB or more.
  50. It is always possible to change the default via specifying the
  51. boot parameter "xen_512gb_limit".
  52. config XEN_SAVE_RESTORE
  53. bool
  54. depends on XEN
  55. select HIBERNATE_CALLBACKS
  56. default y
  57. config XEN_DEBUG_FS
  58. bool "Enable Xen debug and tuning parameters in debugfs"
  59. depends on XEN && DEBUG_FS
  60. default n
  61. help
  62. Enable statistics output and various tuning options in debugfs.
  63. Enabling this option may incur a significant performance overhead.
  64. config XEN_PVH
  65. bool "Support for running as a PVH guest"
  66. depends on XEN && XEN_PVHVM && ACPI
  67. def_bool n