You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

features.h 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. FILE_LICENCE ( MIT );
  29. /*
  30. * `incontents 200 elfnotes_features XEN_ELFNOTE_FEATURES
  31. *
  32. * The list of all the features the guest supports. They are set by
  33. * parsing the XEN_ELFNOTE_FEATURES and XEN_ELFNOTE_SUPPORTED_FEATURES
  34. * string. The format is the feature names (as given here without the
  35. * "XENFEAT_" prefix) separated by '|' characters.
  36. * If a feature is required for the kernel to function then the feature name
  37. * must be preceded by a '!' character.
  38. *
  39. * Note that if XEN_ELFNOTE_SUPPORTED_FEATURES is used, then in the
  40. * XENFEAT_dom0 MUST be set if the guest is to be booted as dom0,
  41. */
  42. /*
  43. * If set, the guest does not need to write-protect its pagetables, and can
  44. * update them via direct writes.
  45. */
  46. #define XENFEAT_writable_page_tables 0
  47. /*
  48. * If set, the guest does not need to write-protect its segment descriptor
  49. * tables, and can update them via direct writes.
  50. */
  51. #define XENFEAT_writable_descriptor_tables 1
  52. /*
  53. * If set, translation between the guest's 'pseudo-physical' address space
  54. * and the host's machine address space are handled by the hypervisor. In this
  55. * mode the guest does not need to perform phys-to/from-machine translations
  56. * when performing page table operations.
  57. */
  58. #define XENFEAT_auto_translated_physmap 2
  59. /* If set, the guest is running in supervisor mode (e.g., x86 ring 0). */
  60. #define XENFEAT_supervisor_mode_kernel 3
  61. /*
  62. * If set, the guest does not need to allocate x86 PAE page directories
  63. * below 4GB. This flag is usually implied by auto_translated_physmap.
  64. */
  65. #define XENFEAT_pae_pgdir_above_4gb 4
  66. /* x86: Does this Xen host support the MMU_PT_UPDATE_PRESERVE_AD hypercall? */
  67. #define XENFEAT_mmu_pt_update_preserve_ad 5
  68. /* x86: Does this Xen host support the MMU_{CLEAR,COPY}_PAGE hypercall? */
  69. #define XENFEAT_highmem_assist 6
  70. /*
  71. * If set, GNTTABOP_map_grant_ref honors flags to be placed into guest kernel
  72. * available pte bits.
  73. */
  74. #define XENFEAT_gnttab_map_avail_bits 7
  75. /* x86: Does this Xen host support the HVM callback vector type? */
  76. #define XENFEAT_hvm_callback_vector 8
  77. /* x86: pvclock algorithm is safe to use on HVM */
  78. #define XENFEAT_hvm_safe_pvclock 9
  79. /* x86: pirq can be used by HVM guests */
  80. #define XENFEAT_hvm_pirqs 10
  81. /* operation as Dom0 is supported */
  82. #define XENFEAT_dom0 11
  83. #define XENFEAT_NR_SUBMAPS 1
  84. #endif /* __XEN_PUBLIC_FEATURES_H__ */
  85. /*
  86. * Local variables:
  87. * mode: C
  88. * c-file-style: "BSD"
  89. * c-basic-offset: 4
  90. * tab-width: 4
  91. * indent-tabs-mode: nil
  92. * End:
  93. */