blob: 2cf47175b12b3504dc6ffa4f19d94b275358a194 [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>
Ian Campbell7892f692012-10-16 17:19:15 +01006#include <asm/xen/interface.h>
Isaku Yamahatae04d0d02008-04-02 10:53:55 -07007
8DECLARE_PER_CPU(struct vcpu_info *, xen_vcpu);
9
Ian Campbell03c81422011-02-17 11:04:20 +000010void xen_arch_pre_suspend(void);
11void xen_arch_post_suspend(int suspend_cancelled);
12void xen_arch_hvm_post_suspend(int suspend_cancelled);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010013
14void xen_mm_pin_all(void);
15void xen_mm_unpin_all(void);
16
Isaku Yamahataad55db92008-07-08 15:06:32 -070017void xen_timer_resume(void);
18void xen_arch_resume(void);
19
Stanislaw Gruszkacd979882014-02-26 11:30:30 +010020void xen_resume_notifier_register(struct notifier_block *nb);
21void xen_resume_notifier_unregister(struct notifier_block *nb);
22
Stefano Stabellini016b6f52010-05-14 12:45:07 +010023int xen_setup_shutdown_event(void);
24
Alex Nixon08bbc9d2009-02-09 12:05:46 -080025extern unsigned long *xen_contiguous_bitmap;
Stefano Stabellini1b65c4e2013-10-10 13:41:10 +000026int xen_create_contiguous_region(phys_addr_t pstart, unsigned int order,
Stefano Stabellini69908902013-10-09 16:56:32 +000027 unsigned int address_bits,
28 dma_addr_t *dma_handle);
Alex Nixon08bbc9d2009-02-09 12:05:46 -080029
Stefano Stabellini1b65c4e2013-10-10 13:41:10 +000030void xen_destroy_contiguous_region(phys_addr_t pstart, unsigned int order);
Alex Nixon08bbc9d2009-02-09 12:05:46 -080031
David Howellsc140d872012-03-28 18:30:02 +010032struct vm_area_struct;
Ian Campbellde1ef202009-05-21 10:09:46 +010033int xen_remap_domain_mfn_range(struct vm_area_struct *vma,
34 unsigned long addr,
Ian Campbell7892f692012-10-16 17:19:15 +010035 xen_pfn_t mfn, int nr,
Ian Campbell9a032e32012-10-17 13:37:49 -070036 pgprot_t prot, unsigned domid,
37 struct page **pages);
38int xen_unmap_domain_mfn_range(struct vm_area_struct *vma,
39 int numpgs, struct page **pages);
Ian Campbellde1ef202009-05-21 10:09:46 +010040
Konrad Rzeszutek Wilk394b40f2012-11-27 11:39:40 -050041bool xen_running_on_version_or_later(unsigned int major, unsigned int minor);
Isaku Yamahatae04d0d02008-04-02 10:53:55 -070042#endif /* INCLUDE_XEN_OPS_H */