blob: d6fe062cad6b3128b25104107a1c0468d442295f [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>
Ian Campbell7892f692012-10-16 17:19:15 +01005#include <asm/xen/interface.h>
Isaku Yamahatae04d0d02008-04-02 10:53:55 -07006
7DECLARE_PER_CPU(struct vcpu_info *, xen_vcpu);
8
Ian Campbell03c81422011-02-17 11:04:20 +00009void xen_arch_pre_suspend(void);
10void xen_arch_post_suspend(int suspend_cancelled);
11void xen_arch_hvm_post_suspend(int suspend_cancelled);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010012
13void xen_mm_pin_all(void);
14void xen_mm_unpin_all(void);
15
Isaku Yamahataad55db92008-07-08 15:06:32 -070016void xen_timer_resume(void);
17void xen_arch_resume(void);
18
Stefano Stabellini016b6f52010-05-14 12:45:07 +010019int xen_setup_shutdown_event(void);
20
Alex Nixon08bbc9d2009-02-09 12:05:46 -080021extern unsigned long *xen_contiguous_bitmap;
22int xen_create_contiguous_region(unsigned long vstart, unsigned int order,
23 unsigned int address_bits);
24
25void xen_destroy_contiguous_region(unsigned long vstart, unsigned int order);
26
David Howellsc140d872012-03-28 18:30:02 +010027struct vm_area_struct;
Ian Campbellde1ef202009-05-21 10:09:46 +010028int xen_remap_domain_mfn_range(struct vm_area_struct *vma,
29 unsigned long addr,
Ian Campbell7892f692012-10-16 17:19:15 +010030 xen_pfn_t mfn, int nr,
Ian Campbell9a032e32012-10-17 13:37:49 -070031 pgprot_t prot, unsigned domid,
32 struct page **pages);
33int xen_unmap_domain_mfn_range(struct vm_area_struct *vma,
34 int numpgs, struct page **pages);
Ian Campbellde1ef202009-05-21 10:09:46 +010035
Konrad Rzeszutek Wilk394b40f2012-11-27 11:39:40 -050036bool xen_running_on_version_or_later(unsigned int major, unsigned int minor);
Isaku Yamahatae04d0d02008-04-02 10:53:55 -070037#endif /* INCLUDE_XEN_OPS_H */