xen-ops.h 5.3 KB

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