xen-ops.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef INCLUDE_XEN_OPS_H
  3. #define INCLUDE_XEN_OPS_H
  4. #include <linux/percpu.h>
  5. #include <linux/notifier.h>
  6. #include <linux/efi.h>
  7. #include <asm/xen/interface.h>
  8. #include <xen/interface/vcpu.h>
  9. DECLARE_PER_CPU(struct vcpu_info *, xen_vcpu);
  10. DECLARE_PER_CPU(uint32_t, xen_vcpu_id);
  11. static inline uint32_t xen_vcpu_nr(int cpu)
  12. {
  13. return per_cpu(xen_vcpu_id, cpu);
  14. }
  15. #define XEN_VCPU_ID_INVALID U32_MAX
  16. void xen_arch_pre_suspend(void);
  17. void xen_arch_post_suspend(int suspend_cancelled);
  18. void xen_timer_resume(void);
  19. void xen_arch_resume(void);
  20. void xen_arch_suspend(void);
  21. void xen_reboot(int reason);
  22. void xen_resume_notifier_register(struct notifier_block *nb);
  23. void xen_resume_notifier_unregister(struct notifier_block *nb);
  24. bool xen_vcpu_stolen(int vcpu);
  25. void xen_setup_runstate_info(int cpu);
  26. void xen_time_setup_guest(void);
  27. void xen_manage_runstate_time(int action);
  28. void xen_get_runstate_snapshot(struct vcpu_runstate_info *res);
  29. u64 xen_steal_clock(int cpu);
  30. int xen_setup_shutdown_event(void);
  31. extern unsigned long *xen_contiguous_bitmap;
  32. #if defined(CONFIG_XEN_PV) || defined(CONFIG_ARM) || defined(CONFIG_ARM64)
  33. int xen_create_contiguous_region(phys_addr_t pstart, unsigned int order,
  34. unsigned int address_bits,
  35. dma_addr_t *dma_handle);
  36. void xen_destroy_contiguous_region(phys_addr_t pstart, unsigned int order);
  37. #else
  38. static inline int xen_create_contiguous_region(phys_addr_t pstart,
  39. unsigned int order,
  40. unsigned int address_bits,
  41. dma_addr_t *dma_handle)
  42. {
  43. return 0;
  44. }
  45. static inline void xen_destroy_contiguous_region(phys_addr_t pstart,
  46. unsigned int order) { }
  47. #endif
  48. struct vm_area_struct;
  49. /*
  50. * xen_remap_domain_gfn_array() - map an array of foreign frames by gfn
  51. * @vma: VMA to map the pages into
  52. * @addr: Address at which to map the pages
  53. * @gfn: Array of GFNs to map
  54. * @nr: Number entries in the GFN array
  55. * @err_ptr: Returns per-GFN error status.
  56. * @prot: page protection mask
  57. * @domid: Domain owning the pages
  58. * @pages: Array of pages if this domain has an auto-translated physmap
  59. *
  60. * @gfn and @err_ptr may point to the same buffer, the GFNs will be
  61. * overwritten by the error codes after they are mapped.
  62. *
  63. * Returns the number of successfully mapped frames, or a -ve error
  64. * code.
  65. */
  66. int xen_remap_domain_gfn_array(struct vm_area_struct *vma,
  67. unsigned long addr,
  68. xen_pfn_t *gfn, int nr,
  69. int *err_ptr, pgprot_t prot,
  70. unsigned domid,
  71. struct page **pages);
  72. /*
  73. * xen_remap_domain_mfn_array() - map an array of foreign frames by mfn
  74. * @vma: VMA to map the pages into
  75. * @addr: Address at which to map the pages
  76. * @mfn: Array of MFNs to map
  77. * @nr: Number entries in the MFN array
  78. * @err_ptr: Returns per-MFN error status.
  79. * @prot: page protection mask
  80. * @domid: Domain owning the pages
  81. * @pages: Array of pages if this domain has an auto-translated physmap
  82. *
  83. * @mfn and @err_ptr may point to the same buffer, the MFNs will be
  84. * overwritten by the error codes after they are mapped.
  85. *
  86. * Returns the number of successfully mapped frames, or a -ve error
  87. * code.
  88. */
  89. int xen_remap_domain_mfn_array(struct vm_area_struct *vma,
  90. unsigned long addr, xen_pfn_t *mfn, int nr,
  91. int *err_ptr, pgprot_t prot,
  92. unsigned int domid, struct page **pages);
  93. /* xen_remap_domain_gfn_range() - map a range of foreign frames
  94. * @vma: VMA to map the pages into
  95. * @addr: Address at which to map the pages
  96. * @gfn: First GFN to map.
  97. * @nr: Number frames to map
  98. * @prot: page protection mask
  99. * @domid: Domain owning the pages
  100. * @pages: Array of pages if this domain has an auto-translated physmap
  101. *
  102. * Returns the number of successfully mapped frames, or a -ve error
  103. * code.
  104. */
  105. int xen_remap_domain_gfn_range(struct vm_area_struct *vma,
  106. unsigned long addr,
  107. xen_pfn_t gfn, int nr,
  108. pgprot_t prot, unsigned domid,
  109. struct page **pages);
  110. int xen_unmap_domain_gfn_range(struct vm_area_struct *vma,
  111. int numpgs, struct page **pages);
  112. #ifdef CONFIG_XEN_AUTO_XLATE
  113. int xen_xlate_remap_gfn_array(struct vm_area_struct *vma,
  114. unsigned long addr,
  115. xen_pfn_t *gfn, int nr,
  116. int *err_ptr, pgprot_t prot,
  117. unsigned domid,
  118. struct page **pages);
  119. int xen_xlate_unmap_gfn_range(struct vm_area_struct *vma,
  120. int nr, struct page **pages);
  121. #else
  122. /*
  123. * These two functions are called from arch/x86/xen/mmu.c and so stubs
  124. * are needed for a configuration not specifying CONFIG_XEN_AUTO_XLATE.
  125. */
  126. static inline int xen_xlate_remap_gfn_array(struct vm_area_struct *vma,
  127. unsigned long addr,
  128. xen_pfn_t *gfn, int nr,
  129. int *err_ptr, pgprot_t prot,
  130. unsigned int domid,
  131. struct page **pages)
  132. {
  133. return -EOPNOTSUPP;
  134. }
  135. static inline int xen_xlate_unmap_gfn_range(struct vm_area_struct *vma,
  136. int nr, struct page **pages)
  137. {
  138. return -EOPNOTSUPP;
  139. }
  140. #endif
  141. int xen_xlate_map_ballooned_pages(xen_pfn_t **pfns, void **vaddr,
  142. unsigned long nr_grant_frames);
  143. bool xen_running_on_version_or_later(unsigned int major, unsigned int minor);
  144. efi_status_t xen_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc);
  145. efi_status_t xen_efi_set_time(efi_time_t *tm);
  146. efi_status_t xen_efi_get_wakeup_time(efi_bool_t *enabled, efi_bool_t *pending,
  147. efi_time_t *tm);
  148. efi_status_t xen_efi_set_wakeup_time(efi_bool_t enabled, efi_time_t *tm);
  149. efi_status_t xen_efi_get_variable(efi_char16_t *name, efi_guid_t *vendor,
  150. u32 *attr, unsigned long *data_size,
  151. void *data);
  152. efi_status_t xen_efi_get_next_variable(unsigned long *name_size,
  153. efi_char16_t *name, efi_guid_t *vendor);
  154. efi_status_t xen_efi_set_variable(efi_char16_t *name, efi_guid_t *vendor,
  155. u32 attr, unsigned long data_size,
  156. void *data);
  157. efi_status_t xen_efi_query_variable_info(u32 attr, u64 *storage_space,
  158. u64 *remaining_space,
  159. u64 *max_variable_size);
  160. efi_status_t xen_efi_get_next_high_mono_count(u32 *count);
  161. efi_status_t xen_efi_update_capsule(efi_capsule_header_t **capsules,
  162. unsigned long count, unsigned long sg_list);
  163. efi_status_t xen_efi_query_capsule_caps(efi_capsule_header_t **capsules,
  164. unsigned long count, u64 *max_size,
  165. int *reset_type);
  166. void xen_efi_reset_system(int reset_type, efi_status_t status,
  167. unsigned long data_size, efi_char16_t *data);
  168. #ifdef CONFIG_PREEMPT
  169. static inline void xen_preemptible_hcall_begin(void)
  170. {
  171. }
  172. static inline void xen_preemptible_hcall_end(void)
  173. {
  174. }
  175. #else
  176. DECLARE_PER_CPU(bool, xen_in_preemptible_hcall);
  177. static inline void xen_preemptible_hcall_begin(void)
  178. {
  179. __this_cpu_write(xen_in_preemptible_hcall, true);
  180. }
  181. static inline void xen_preemptible_hcall_end(void)
  182. {
  183. __this_cpu_write(xen_in_preemptible_hcall, false);
  184. }
  185. #endif /* CONFIG_PREEMPT */
  186. #endif /* INCLUDE_XEN_OPS_H */