xref: /openbmc/qemu/target/i386/kvm/xen-emu.h (revision 61491cf4)
1 /*
2  * Xen HVM emulation support in KVM
3  *
4  * Copyright © 2019 Oracle and/or its affiliates. All rights reserved.
5  * Copyright © 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
6  *
7  * This work is licensed under the terms of the GNU GPL, version 2 or later.
8  * See the COPYING file in the top-level directory.
9  *
10  */
11 
12 #ifndef QEMU_I386_KVM_XEN_EMU_H
13 #define QEMU_I386_KVM_XEN_EMU_H
14 
15 #define XEN_HYPERCALL_MSR 0x40000000
16 
17 int kvm_xen_init(KVMState *s);
18 
19 #endif /* QEMU_I386_KVM_XEN_EMU_H */
20