blob: a4fd077079a9a9949a04bb1181c0250422b5e903 [file] [log] [blame]
Andrii Anisov355d1e42020-08-06 12:42:47 +03001/* 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
15int HYPERVISOR_xen_version(int cmd, void *arg);
16int HYPERVISOR_console_io(int cmd, int count, char *str);
17int HYPERVISOR_grant_table_op(unsigned int cmd, void *uop, unsigned int count);
18int HYPERVISOR_sched_op(int cmd, void *arg);
19int HYPERVISOR_event_channel_op(int cmd, void *arg);
20unsigned long HYPERVISOR_hvm_op(int op, void *arg);
21int HYPERVISOR_memory_op(unsigned int cmd, void *arg);
22#endif /* _ASM_ARM_XEN_HYPERCALL_H */