]>
Commit | Line | Data |
---|---|---|
50efe82c AS |
1 | /* |
2 | * QEMU KVM Hyper-V support | |
3 | * | |
4 | * Copyright (C) 2015 Andrey Smetanin <[email protected]> | |
5 | * | |
6 | * Authors: | |
7 | * Andrey Smetanin <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
10 | * See the COPYING file in the top-level directory. | |
11 | * | |
12 | */ | |
13 | ||
121d0712 MA |
14 | #ifndef TARGET_I386_HYPERV_H |
15 | #define TARGET_I386_HYPERV_H | |
50efe82c AS |
16 | |
17 | #include "cpu.h" | |
18 | #include "sysemu/kvm.h" | |
701189e3 | 19 | #include "hw/hyperv/hyperv.h" |
50efe82c | 20 | |
8417442a | 21 | #ifdef CONFIG_KVM |
50efe82c | 22 | int kvm_hv_handle_exit(X86CPU *cpu, struct kvm_hyperv_exit *exit); |
8417442a | 23 | #endif |
50efe82c | 24 | |
606c34bf RK |
25 | int hyperv_x86_synic_add(X86CPU *cpu); |
26 | void hyperv_x86_synic_reset(X86CPU *cpu); | |
27 | void hyperv_x86_synic_update(X86CPU *cpu); | |
28 | ||
50efe82c | 29 | #endif |