blob: c44a2ee8c8f8079a13095b3b67ec6f794a683ff8 [file] [log] [blame]
Isaku Yamahatae04d0d02008-04-02 10:53:55 -07001#ifndef INCLUDE_XEN_OPS_H
2#define INCLUDE_XEN_OPS_H
3
4#include <linux/percpu.h>
Stanislaw Gruszkacd979882014-02-26 11:30:30 +01005#include <linux/notifier.h>
Daniel Kiperbe81c8a2014-06-30 19:53:02 +02006#include <linux/efi.h>
Ian Campbell7892f692012-10-16 17:19:15 +01007#include <asm/xen/interface.h>
Stefano Stabellini4ccefbe2015-11-05 15:15:07 +00008#include <xen/interface/vcpu.h>
Isaku Yamahatae04d0d02008-04-02 10:53:55 -07009
10DECLARE_PER_CPU(struct vcpu_info *, xen_vcpu);
11
Vitaly Kuznetsov55467de2016-07-29 11:06:48 +020012DECLARE_PER_CPU(uint32_t, xen_vcpu_id);
13static inline uint32_t xen_vcpu_nr(int cpu)
Vitaly Kuznetsov88e957d2016-06-30 17:56:37 +020014{
15 return per_cpu(xen_vcpu_id, cpu);
16}
17
Ian Campbell03c81422011-02-17 11:04:20 +000018void xen_arch_pre_suspend(void);
19void xen_arch_post_suspend(int suspend_cancelled);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010020
Isaku Yamahataad55db92008-07-08 15:06:32 -070021void xen_timer_resume(void);
22void xen_arch_resume(void);
Boris Ostrovsky2b953a52015-04-28 18:46:20 -040023void xen_arch_suspend(void);
Isaku Yamahataad55db92008-07-08 15:06:32 -070024
Julien Grall5d9404e2017-04-24 18:58:37 +010025void xen_reboot(int reason);
26
Stanislaw Gruszkacd979882014-02-26 11:30:30 +010027void xen_resume_notifier_register(struct notifier_block *nb);
28void xen_resume_notifier_unregister(struct notifier_block *nb);
29
Stefano Stabellini4ccefbe2015-11-05 15:15:07 +000030bool xen_vcpu_stolen(int vcpu);
31void xen_setup_runstate_info(int cpu);
Juergen Grossecb23dc2016-05-20 09:26:48 +020032void xen_time_setup_guest(void);
Stefano Stabellini4ccefbe2015-11-05 15:15:07 +000033void xen_get_runstate_snapshot(struct vcpu_runstate_info *res);
Juergen Grossd34c30c2016-07-26 14:15:11 +020034u64 xen_steal_clock(int cpu);
Stefano Stabellini4ccefbe2015-11-05 15:15:07 +000035
Stefano Stabellini016b6f52010-05-14 12:45:07 +010036int xen_setup_shutdown_event(void);
37
Alex Nixon08bbc9d2009-02-09 12:05:46 -080038extern unsigned long *xen_contiguous_bitmap;
Vitaly Kuznetsov16624392017-03-14 18:35:54 +010039
40#ifdef CONFIG_XEN_PV
Stefano Stabellini1b65c4e2013-10-10 13:41:10 +000041int xen_create_contiguous_region(phys_addr_t pstart, unsigned int order,
Stefano Stabellini69908902013-10-09 16:56:32 +000042 unsigned int address_bits,
43 dma_addr_t *dma_handle);
Alex Nixon08bbc9d2009-02-09 12:05:46 -080044
Stefano Stabellini1b65c4e2013-10-10 13:41:10 +000045void xen_destroy_contiguous_region(phys_addr_t pstart, unsigned int order);
Vitaly Kuznetsov16624392017-03-14 18:35:54 +010046#else
47static 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
55static inline void xen_destroy_contiguous_region(phys_addr_t pstart,
56 unsigned int order) { }
57#endif
Alex Nixon08bbc9d2009-02-09 12:05:46 -080058
David Howellsc140d872012-03-28 18:30:02 +010059struct vm_area_struct;
David Vrabel4e8c0c82015-03-11 14:49:57 +000060
61/*
Julien Gralla13d7202015-08-07 17:34:41 +010062 * xen_remap_domain_gfn_array() - map an array of foreign frames
David Vrabel4e8c0c82015-03-11 14:49:57 +000063 * @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 Gralla13d7202015-08-07 17:34:41 +010078int xen_remap_domain_gfn_array(struct vm_area_struct *vma,
David Vrabel4e8c0c82015-03-11 14:49:57 +000079 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 Gralla13d7202015-08-07 17:34:41 +010085/* xen_remap_domain_gfn_range() - map a range of foreign frames
David Vrabel4e8c0c82015-03-11 14:49:57 +000086 * @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 Gralla13d7202015-08-07 17:34:41 +010097int xen_remap_domain_gfn_range(struct vm_area_struct *vma,
Ian Campbellde1ef202009-05-21 10:09:46 +010098 unsigned long addr,
David Vrabel4e8c0c82015-03-11 14:49:57 +000099 xen_pfn_t gfn, int nr,
Ian Campbell9a032e32012-10-17 13:37:49 -0700100 pgprot_t prot, unsigned domid,
101 struct page **pages);
Julien Gralla13d7202015-08-07 17:34:41 +0100102int xen_unmap_domain_gfn_range(struct vm_area_struct *vma,
Ian Campbell9a032e32012-10-17 13:37:49 -0700103 int numpgs, struct page **pages);
David Vrabel4e8c0c82015-03-11 14:49:57 +0000104int xen_xlate_remap_gfn_array(struct vm_area_struct *vma,
David Vrabel628c28e2015-03-11 14:49:56 +0000105 unsigned long addr,
David Vrabel4e8c0c82015-03-11 14:49:57 +0000106 xen_pfn_t *gfn, int nr,
107 int *err_ptr, pgprot_t prot,
David Vrabel628c28e2015-03-11 14:49:56 +0000108 unsigned domid,
109 struct page **pages);
110int xen_xlate_unmap_gfn_range(struct vm_area_struct *vma,
111 int nr, struct page **pages);
Shannon Zhao243848f2016-04-07 20:03:19 +0800112int xen_xlate_map_ballooned_pages(xen_pfn_t **pfns, void **vaddr,
113 unsigned long nr_grant_frames);
Ian Campbellde1ef202009-05-21 10:09:46 +0100114
Konrad Rzeszutek Wilk394b40f2012-11-27 11:39:40 -0500115bool xen_running_on_version_or_later(unsigned int major, unsigned int minor);
Daniel Kiperbe81c8a2014-06-30 19:53:02 +0200116
Shannon Zhaoa62ed502016-04-07 20:03:31 +0800117efi_status_t xen_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc);
118efi_status_t xen_efi_set_time(efi_time_t *tm);
119efi_status_t xen_efi_get_wakeup_time(efi_bool_t *enabled, efi_bool_t *pending,
120 efi_time_t *tm);
121efi_status_t xen_efi_set_wakeup_time(efi_bool_t enabled, efi_time_t *tm);
122efi_status_t xen_efi_get_variable(efi_char16_t *name, efi_guid_t *vendor,
123 u32 *attr, unsigned long *data_size,
124 void *data);
125efi_status_t xen_efi_get_next_variable(unsigned long *name_size,
126 efi_char16_t *name, efi_guid_t *vendor);
127efi_status_t xen_efi_set_variable(efi_char16_t *name, efi_guid_t *vendor,
128 u32 attr, unsigned long data_size,
129 void *data);
130efi_status_t xen_efi_query_variable_info(u32 attr, u64 *storage_space,
131 u64 *remaining_space,
132 u64 *max_variable_size);
133efi_status_t xen_efi_get_next_high_mono_count(u32 *count);
134efi_status_t xen_efi_update_capsule(efi_capsule_header_t **capsules,
135 unsigned long count, unsigned long sg_list);
136efi_status_t xen_efi_query_capsule_caps(efi_capsule_header_t **capsules,
137 unsigned long count, u64 *max_size,
138 int *reset_type);
Julien Gralle371fd72017-04-24 18:58:39 +0100139void xen_efi_reset_system(int reset_type, efi_status_t status,
140 unsigned long data_size, efi_char16_t *data);
141
Daniel Kiperbe81c8a2014-06-30 19:53:02 +0200142
David Vrabelfdfd8112015-02-19 15:23:17 +0000143#ifdef CONFIG_PREEMPT
144
145static inline void xen_preemptible_hcall_begin(void)
146{
147}
148
149static inline void xen_preemptible_hcall_end(void)
150{
151}
152
153#else
154
155DECLARE_PER_CPU(bool, xen_in_preemptible_hcall);
156
157static inline void xen_preemptible_hcall_begin(void)
158{
159 __this_cpu_write(xen_in_preemptible_hcall, true);
160}
161
162static 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 Yamahatae04d0d02008-04-02 10:53:55 -0700169#endif /* INCLUDE_XEN_OPS_H */