features.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /******************************************************************************
  2. * features.h
  3. *
  4. * Feature flags, reported by XENVER_get_features.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to
  8. * deal in the Software without restriction, including without limitation the
  9. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  10. * sell copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  21. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  22. * DEALINGS IN THE SOFTWARE.
  23. *
  24. * Copyright (c) 2006, Keir Fraser <keir@xensource.com>
  25. */
  26. #ifndef __XEN_PUBLIC_FEATURES_H__
  27. #define __XEN_PUBLIC_FEATURES_H__
  28. /*
  29. * `incontents 200 elfnotes_features XEN_ELFNOTE_FEATURES
  30. *
  31. * The list of all the features the guest supports. They are set by
  32. * parsing the XEN_ELFNOTE_FEATURES and XEN_ELFNOTE_SUPPORTED_FEATURES
  33. * string. The format is the feature names (as given here without the
  34. * "XENFEAT_" prefix) separated by '|' characters.
  35. * If a feature is required for the kernel to function then the feature name
  36. * must be preceded by a '!' character.
  37. *
  38. * Note that if XEN_ELFNOTE_SUPPORTED_FEATURES is used, then in the
  39. * XENFEAT_dom0 MUST be set if the guest is to be booted as dom0,
  40. */
  41. /*
  42. * If set, the guest does not need to write-protect its pagetables, and can
  43. * update them via direct writes.
  44. */
  45. #define XENFEAT_writable_page_tables 0
  46. /*
  47. * If set, the guest does not need to write-protect its segment descriptor
  48. * tables, and can update them via direct writes.
  49. */
  50. #define XENFEAT_writable_descriptor_tables 1
  51. /*
  52. * If set, translation between the guest's 'pseudo-physical' address space
  53. * and the host's machine address space are handled by the hypervisor. In this
  54. * mode the guest does not need to perform phys-to/from-machine translations
  55. * when performing page table operations.
  56. */
  57. #define XENFEAT_auto_translated_physmap 2
  58. /* If set, the guest is running in supervisor mode (e.g., x86 ring 0). */
  59. #define XENFEAT_supervisor_mode_kernel 3
  60. /*
  61. * If set, the guest does not need to allocate x86 PAE page directories
  62. * below 4GB. This flag is usually implied by auto_translated_physmap.
  63. */
  64. #define XENFEAT_pae_pgdir_above_4gb 4
  65. /* x86: Does this Xen host support the MMU_PT_UPDATE_PRESERVE_AD hypercall? */
  66. #define XENFEAT_mmu_pt_update_preserve_ad 5
  67. /* x86: Does this Xen host support the MMU_{CLEAR,COPY}_PAGE hypercall? */
  68. #define XENFEAT_highmem_assist 6
  69. /*
  70. * If set, GNTTABOP_map_grant_ref honors flags to be placed into guest kernel
  71. * available pte bits.
  72. */
  73. #define XENFEAT_gnttab_map_avail_bits 7
  74. /* x86: Does this Xen host support the HVM callback vector type? */
  75. #define XENFEAT_hvm_callback_vector 8
  76. /* x86: pvclock algorithm is safe to use on HVM */
  77. #define XENFEAT_hvm_safe_pvclock 9
  78. /* x86: pirq can be used by HVM guests */
  79. #define XENFEAT_hvm_pirqs 10
  80. /* operation as Dom0 is supported */
  81. #define XENFEAT_dom0 11
  82. /* Xen also maps grant references at pfn = mfn.
  83. * This feature flag is deprecated and should not be used.
  84. #define XENFEAT_grant_map_identity 12
  85. */
  86. /* Guest can use XENMEMF_vnode to specify virtual node for memory op. */
  87. #define XENFEAT_memory_op_vnode_supported 13
  88. /* arm: Hypervisor supports ARM SMC calling convention. */
  89. #define XENFEAT_ARM_SMCCC_supported 14
  90. /*
  91. * x86/PVH: If set, ACPI RSDP can be placed at any address. Otherwise RSDP
  92. * must be located in lower 1MB, as required by ACPI Specification for IA-PC
  93. * systems.
  94. * This feature flag is only consulted if XEN_ELFNOTE_GUEST_OS contains
  95. * the "linux" string.
  96. */
  97. #define XENFEAT_linux_rsdp_unrestricted 15
  98. #define XENFEAT_NR_SUBMAPS 1
  99. #endif /* __XEN_PUBLIC_FEATURES_H__ */
  100. /*
  101. * Local variables:
  102. * mode: C
  103. * c-file-style: "BSD"
  104. * c-basic-offset: 4
  105. * tab-width: 4
  106. * indent-tabs-mode: nil
  107. * End:
  108. */