Isaku Yamahata | e04d0d0 | 2008-04-02 10:53:55 -0700 | [diff] [blame] | 1 | #ifndef INCLUDE_XEN_OPS_H |
| 2 | #define INCLUDE_XEN_OPS_H |
| 3 | |
| 4 | #include <linux/percpu.h> |
Stanislaw Gruszka | cd97988 | 2014-02-26 11:30:30 +0100 | [diff] [blame] | 5 | #include <linux/notifier.h> |
Daniel Kiper | be81c8a | 2014-06-30 19:53:02 +0200 | [diff] [blame] | 6 | #include <linux/efi.h> |
Ian Campbell | 7892f69 | 2012-10-16 17:19:15 +0100 | [diff] [blame] | 7 | #include <asm/xen/interface.h> |
Stefano Stabellini | 4ccefbe | 2015-11-05 15:15:07 +0000 | [diff] [blame] | 8 | #include <xen/interface/vcpu.h> |
Isaku Yamahata | e04d0d0 | 2008-04-02 10:53:55 -0700 | [diff] [blame] | 9 | |
| 10 | DECLARE_PER_CPU(struct vcpu_info *, xen_vcpu); |
| 11 | |
Vitaly Kuznetsov | 55467de | 2016-07-29 11:06:48 +0200 | [diff] [blame] | 12 | DECLARE_PER_CPU(uint32_t, xen_vcpu_id); |
| 13 | static inline uint32_t xen_vcpu_nr(int cpu) |
Vitaly Kuznetsov | 88e957d | 2016-06-30 17:56:37 +0200 | [diff] [blame] | 14 | { |
| 15 | return per_cpu(xen_vcpu_id, cpu); |
| 16 | } |
| 17 | |
Ian Campbell | 03c8142 | 2011-02-17 11:04:20 +0000 | [diff] [blame] | 18 | void xen_arch_pre_suspend(void); |
| 19 | void xen_arch_post_suspend(int suspend_cancelled); |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 20 | |
Isaku Yamahata | ad55db9 | 2008-07-08 15:06:32 -0700 | [diff] [blame] | 21 | void xen_timer_resume(void); |
| 22 | void xen_arch_resume(void); |
Boris Ostrovsky | 2b953a5 | 2015-04-28 18:46:20 -0400 | [diff] [blame] | 23 | void xen_arch_suspend(void); |
Isaku Yamahata | ad55db9 | 2008-07-08 15:06:32 -0700 | [diff] [blame] | 24 | |
Julien Grall | 5d9404e | 2017-04-24 18:58:37 +0100 | [diff] [blame] | 25 | void xen_reboot(int reason); |
| 26 | |
Stanislaw Gruszka | cd97988 | 2014-02-26 11:30:30 +0100 | [diff] [blame] | 27 | void xen_resume_notifier_register(struct notifier_block *nb); |
| 28 | void xen_resume_notifier_unregister(struct notifier_block *nb); |
| 29 | |
Stefano Stabellini | 4ccefbe | 2015-11-05 15:15:07 +0000 | [diff] [blame] | 30 | bool xen_vcpu_stolen(int vcpu); |
| 31 | void xen_setup_runstate_info(int cpu); |
Juergen Gross | ecb23dc | 2016-05-20 09:26:48 +0200 | [diff] [blame] | 32 | void xen_time_setup_guest(void); |
Stefano Stabellini | 4ccefbe | 2015-11-05 15:15:07 +0000 | [diff] [blame] | 33 | void xen_get_runstate_snapshot(struct vcpu_runstate_info *res); |
Juergen Gross | d34c30c | 2016-07-26 14:15:11 +0200 | [diff] [blame] | 34 | u64 xen_steal_clock(int cpu); |
Stefano Stabellini | 4ccefbe | 2015-11-05 15:15:07 +0000 | [diff] [blame] | 35 | |
Stefano Stabellini | 016b6f5 | 2010-05-14 12:45:07 +0100 | [diff] [blame] | 36 | int xen_setup_shutdown_event(void); |
| 37 | |
Alex Nixon | 08bbc9d | 2009-02-09 12:05:46 -0800 | [diff] [blame] | 38 | extern unsigned long *xen_contiguous_bitmap; |
Vitaly Kuznetsov | 1662439 | 2017-03-14 18:35:54 +0100 | [diff] [blame] | 39 | |
| 40 | #ifdef CONFIG_XEN_PV |
Stefano Stabellini | 1b65c4e | 2013-10-10 13:41:10 +0000 | [diff] [blame] | 41 | int xen_create_contiguous_region(phys_addr_t pstart, unsigned int order, |
Stefano Stabellini | 6990890 | 2013-10-09 16:56:32 +0000 | [diff] [blame] | 42 | unsigned int address_bits, |
| 43 | dma_addr_t *dma_handle); |
Alex Nixon | 08bbc9d | 2009-02-09 12:05:46 -0800 | [diff] [blame] | 44 | |
Stefano Stabellini | 1b65c4e | 2013-10-10 13:41:10 +0000 | [diff] [blame] | 45 | void xen_destroy_contiguous_region(phys_addr_t pstart, unsigned int order); |
Vitaly Kuznetsov | 1662439 | 2017-03-14 18:35:54 +0100 | [diff] [blame] | 46 | #else |
| 47 | static inline int xen_create_contiguous_region(phys_addr_t pstart, |
| 48 | unsigned int order, |
| 49 | unsigned int address_bits, |
| 50 | dma_addr_t *dma_handle) |
| 51 | { |
| 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | static inline void xen_destroy_contiguous_region(phys_addr_t pstart, |
| 56 | unsigned int order) { } |
| 57 | #endif |
Alex Nixon | 08bbc9d | 2009-02-09 12:05:46 -0800 | [diff] [blame] | 58 | |
David Howells | c140d87 | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 59 | struct vm_area_struct; |
David Vrabel | 4e8c0c8 | 2015-03-11 14:49:57 +0000 | [diff] [blame] | 60 | |
| 61 | /* |
Julien Grall | a13d720 | 2015-08-07 17:34:41 +0100 | [diff] [blame] | 62 | * xen_remap_domain_gfn_array() - map an array of foreign frames |
David Vrabel | 4e8c0c8 | 2015-03-11 14:49:57 +0000 | [diff] [blame] | 63 | * @vma: VMA to map the pages into |
| 64 | * @addr: Address at which to map the pages |
| 65 | * @gfn: Array of GFNs to map |
| 66 | * @nr: Number entries in the GFN array |
| 67 | * @err_ptr: Returns per-GFN error status. |
| 68 | * @prot: page protection mask |
| 69 | * @domid: Domain owning the pages |
| 70 | * @pages: Array of pages if this domain has an auto-translated physmap |
| 71 | * |
| 72 | * @gfn and @err_ptr may point to the same buffer, the GFNs will be |
| 73 | * overwritten by the error codes after they are mapped. |
| 74 | * |
| 75 | * Returns the number of successfully mapped frames, or a -ve error |
| 76 | * code. |
| 77 | */ |
Julien Grall | a13d720 | 2015-08-07 17:34:41 +0100 | [diff] [blame] | 78 | int xen_remap_domain_gfn_array(struct vm_area_struct *vma, |
David Vrabel | 4e8c0c8 | 2015-03-11 14:49:57 +0000 | [diff] [blame] | 79 | unsigned long addr, |
| 80 | xen_pfn_t *gfn, int nr, |
| 81 | int *err_ptr, pgprot_t prot, |
| 82 | unsigned domid, |
| 83 | struct page **pages); |
| 84 | |
Julien Grall | a13d720 | 2015-08-07 17:34:41 +0100 | [diff] [blame] | 85 | /* xen_remap_domain_gfn_range() - map a range of foreign frames |
David Vrabel | 4e8c0c8 | 2015-03-11 14:49:57 +0000 | [diff] [blame] | 86 | * @vma: VMA to map the pages into |
| 87 | * @addr: Address at which to map the pages |
| 88 | * @gfn: First GFN to map. |
| 89 | * @nr: Number frames to map |
| 90 | * @prot: page protection mask |
| 91 | * @domid: Domain owning the pages |
| 92 | * @pages: Array of pages if this domain has an auto-translated physmap |
| 93 | * |
| 94 | * Returns the number of successfully mapped frames, or a -ve error |
| 95 | * code. |
| 96 | */ |
Julien Grall | a13d720 | 2015-08-07 17:34:41 +0100 | [diff] [blame] | 97 | int xen_remap_domain_gfn_range(struct vm_area_struct *vma, |
Ian Campbell | de1ef20 | 2009-05-21 10:09:46 +0100 | [diff] [blame] | 98 | unsigned long addr, |
David Vrabel | 4e8c0c8 | 2015-03-11 14:49:57 +0000 | [diff] [blame] | 99 | xen_pfn_t gfn, int nr, |
Ian Campbell | 9a032e3 | 2012-10-17 13:37:49 -0700 | [diff] [blame] | 100 | pgprot_t prot, unsigned domid, |
| 101 | struct page **pages); |
Julien Grall | a13d720 | 2015-08-07 17:34:41 +0100 | [diff] [blame] | 102 | int xen_unmap_domain_gfn_range(struct vm_area_struct *vma, |
Ian Campbell | 9a032e3 | 2012-10-17 13:37:49 -0700 | [diff] [blame] | 103 | int numpgs, struct page **pages); |
David Vrabel | 4e8c0c8 | 2015-03-11 14:49:57 +0000 | [diff] [blame] | 104 | int xen_xlate_remap_gfn_array(struct vm_area_struct *vma, |
David Vrabel | 628c28e | 2015-03-11 14:49:56 +0000 | [diff] [blame] | 105 | unsigned long addr, |
David Vrabel | 4e8c0c8 | 2015-03-11 14:49:57 +0000 | [diff] [blame] | 106 | xen_pfn_t *gfn, int nr, |
| 107 | int *err_ptr, pgprot_t prot, |
David Vrabel | 628c28e | 2015-03-11 14:49:56 +0000 | [diff] [blame] | 108 | unsigned domid, |
| 109 | struct page **pages); |
| 110 | int xen_xlate_unmap_gfn_range(struct vm_area_struct *vma, |
| 111 | int nr, struct page **pages); |
Shannon Zhao | 243848f | 2016-04-07 20:03:19 +0800 | [diff] [blame] | 112 | int xen_xlate_map_ballooned_pages(xen_pfn_t **pfns, void **vaddr, |
| 113 | unsigned long nr_grant_frames); |
Ian Campbell | de1ef20 | 2009-05-21 10:09:46 +0100 | [diff] [blame] | 114 | |
Konrad Rzeszutek Wilk | 394b40f | 2012-11-27 11:39:40 -0500 | [diff] [blame] | 115 | bool xen_running_on_version_or_later(unsigned int major, unsigned int minor); |
Daniel Kiper | be81c8a | 2014-06-30 19:53:02 +0200 | [diff] [blame] | 116 | |
Shannon Zhao | a62ed50 | 2016-04-07 20:03:31 +0800 | [diff] [blame] | 117 | efi_status_t xen_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc); |
| 118 | efi_status_t xen_efi_set_time(efi_time_t *tm); |
| 119 | efi_status_t xen_efi_get_wakeup_time(efi_bool_t *enabled, efi_bool_t *pending, |
| 120 | efi_time_t *tm); |
| 121 | efi_status_t xen_efi_set_wakeup_time(efi_bool_t enabled, efi_time_t *tm); |
| 122 | efi_status_t xen_efi_get_variable(efi_char16_t *name, efi_guid_t *vendor, |
| 123 | u32 *attr, unsigned long *data_size, |
| 124 | void *data); |
| 125 | efi_status_t xen_efi_get_next_variable(unsigned long *name_size, |
| 126 | efi_char16_t *name, efi_guid_t *vendor); |
| 127 | efi_status_t xen_efi_set_variable(efi_char16_t *name, efi_guid_t *vendor, |
| 128 | u32 attr, unsigned long data_size, |
| 129 | void *data); |
| 130 | efi_status_t xen_efi_query_variable_info(u32 attr, u64 *storage_space, |
| 131 | u64 *remaining_space, |
| 132 | u64 *max_variable_size); |
| 133 | efi_status_t xen_efi_get_next_high_mono_count(u32 *count); |
| 134 | efi_status_t xen_efi_update_capsule(efi_capsule_header_t **capsules, |
| 135 | unsigned long count, unsigned long sg_list); |
| 136 | efi_status_t xen_efi_query_capsule_caps(efi_capsule_header_t **capsules, |
| 137 | unsigned long count, u64 *max_size, |
| 138 | int *reset_type); |
Julien Grall | e371fd7 | 2017-04-24 18:58:39 +0100 | [diff] [blame] | 139 | void xen_efi_reset_system(int reset_type, efi_status_t status, |
| 140 | unsigned long data_size, efi_char16_t *data); |
| 141 | |
Daniel Kiper | be81c8a | 2014-06-30 19:53:02 +0200 | [diff] [blame] | 142 | |
David Vrabel | fdfd811 | 2015-02-19 15:23:17 +0000 | [diff] [blame] | 143 | #ifdef CONFIG_PREEMPT |
| 144 | |
| 145 | static inline void xen_preemptible_hcall_begin(void) |
| 146 | { |
| 147 | } |
| 148 | |
| 149 | static inline void xen_preemptible_hcall_end(void) |
| 150 | { |
| 151 | } |
| 152 | |
| 153 | #else |
| 154 | |
| 155 | DECLARE_PER_CPU(bool, xen_in_preemptible_hcall); |
| 156 | |
| 157 | static inline void xen_preemptible_hcall_begin(void) |
| 158 | { |
| 159 | __this_cpu_write(xen_in_preemptible_hcall, true); |
| 160 | } |
| 161 | |
| 162 | static inline void xen_preemptible_hcall_end(void) |
| 163 | { |
| 164 | __this_cpu_write(xen_in_preemptible_hcall, false); |
| 165 | } |
| 166 | |
| 167 | #endif /* CONFIG_PREEMPT */ |
| 168 | |
Isaku Yamahata | e04d0d0 | 2008-04-02 10:53:55 -0700 | [diff] [blame] | 169 | #endif /* INCLUDE_XEN_OPS_H */ |