1 /* SPDX-License-Identifier: GPL-2.0
2  *
3  * hypercall.h
4  *
5  * Linux-specific hypervisor handling.
6  *
7  * Stefano Stabellini <stefano.stabellini@eu.citrix.com>, Citrix, 2012
8  */
9 
10 #ifndef _ASM_ARM_XEN_HYPERCALL_H
11 #define _ASM_ARM_XEN_HYPERCALL_H
12 
13 #include <xen/interface/xen.h>
14 
15 int HYPERVISOR_xen_version(int cmd, void *arg);
16 int HYPERVISOR_console_io(int cmd, int count, char *str);
17 int HYPERVISOR_grant_table_op(unsigned int cmd, void *uop, unsigned int count);
18 int HYPERVISOR_sched_op(int cmd, void *arg);
19 int HYPERVISOR_event_channel_op(int cmd, void *arg);
20 unsigned long HYPERVISOR_hvm_op(int op, void *arg);
21 int HYPERVISOR_memory_op(unsigned int cmd, void *arg);
22 #endif /* _ASM_ARM_XEN_HYPERCALL_H */
23