]>
Commit | Line | Data |
---|---|---|
05330448 AL |
1 | /* |
2 | * QEMU KVM support | |
3 | * | |
4 | * Copyright IBM, Corp. 2008 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[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 | ||
14 | #ifndef QEMU_KVM_H | |
15 | #define QEMU_KVM_H | |
16 | ||
ca821806 | 17 | #include <errno.h> |
1c14f162 | 18 | #include "config-host.h" |
72cf2d4f | 19 | #include "qemu-queue.h" |
05330448 | 20 | |
ca821806 MT |
21 | #ifdef CONFIG_KVM |
22 | #include <linux/kvm.h> | |
23 | #endif | |
05330448 | 24 | |
ca821806 | 25 | extern int kvm_allowed; |
3d4b2649 | 26 | extern bool kvm_kernel_irqchip; |
98c8573e PB |
27 | |
28 | #if defined CONFIG_KVM || !defined NEED_CPU_H | |
3d4b2649 JK |
29 | #define kvm_enabled() (kvm_allowed) |
30 | #define kvm_irqchip_in_kernel() (kvm_kernel_irqchip) | |
05330448 | 31 | #else |
3d4b2649 JK |
32 | #define kvm_enabled() (0) |
33 | #define kvm_irqchip_in_kernel() (false) | |
05330448 AL |
34 | #endif |
35 | ||
36 | struct kvm_run; | |
680c1c6f | 37 | struct kvm_lapic_state; |
05330448 | 38 | |
94a8d39a JK |
39 | typedef struct KVMCapabilityInfo { |
40 | const char *name; | |
41 | int value; | |
42 | } KVMCapabilityInfo; | |
43 | ||
44 | #define KVM_CAP_INFO(CAP) { "KVM_CAP_" stringify(CAP), KVM_CAP_##CAP } | |
45 | #define KVM_CAP_LAST_INFO { NULL, 0 } | |
46 | ||
92b4e489 JK |
47 | struct KVMState; |
48 | typedef struct KVMState KVMState; | |
49 | extern KVMState *kvm_state; | |
50 | ||
05330448 AL |
51 | /* external API */ |
52 | ||
cad1e282 | 53 | int kvm_init(void); |
05330448 | 54 | |
00a1555e PB |
55 | int kvm_has_sync_mmu(void); |
56 | int kvm_has_vcpu_events(void); | |
57 | int kvm_has_robust_singlestep(void); | |
ff44f1a3 | 58 | int kvm_has_debugregs(void); |
f1665b21 SY |
59 | int kvm_has_xsave(void); |
60 | int kvm_has_xcrs(void); | |
8a7c7393 | 61 | int kvm_has_pit_state2(void); |
d2f2b8a7 | 62 | int kvm_has_many_ioeventfds(void); |
84b058d7 | 63 | int kvm_has_gsi_routing(void); |
00a1555e | 64 | |
9b5b76d4 JK |
65 | int kvm_allows_irq0_override(void); |
66 | ||
1c14f162 | 67 | #ifdef NEED_CPU_H |
9349b4f9 | 68 | int kvm_init_vcpu(CPUArchState *env); |
05330448 | 69 | |
9349b4f9 | 70 | int kvm_cpu_exec(CPUArchState *env); |
05330448 | 71 | |
b3755a91 | 72 | #if !defined(CONFIG_USER_ONLY) |
fdec9918 CB |
73 | void *kvm_vmalloc(ram_addr_t size); |
74 | void *kvm_arch_vmalloc(ram_addr_t size); | |
6f0437e8 JK |
75 | void kvm_setup_guest_memory(void *start, size_t size); |
76 | ||
c227f099 AL |
77 | int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size); |
78 | int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size); | |
62a2744c | 79 | void kvm_flush_coalesced_mmio_buffer(void); |
b3755a91 | 80 | #endif |
f65ed4c1 | 81 | |
9349b4f9 | 82 | int kvm_insert_breakpoint(CPUArchState *current_env, target_ulong addr, |
e22a25c9 | 83 | target_ulong len, int type); |
9349b4f9 | 84 | int kvm_remove_breakpoint(CPUArchState *current_env, target_ulong addr, |
e22a25c9 | 85 | target_ulong len, int type); |
9349b4f9 AF |
86 | void kvm_remove_all_breakpoints(CPUArchState *current_env); |
87 | int kvm_update_guest_debug(CPUArchState *env, unsigned long reinject_trap); | |
20c20526 | 88 | #ifndef _WIN32 |
9349b4f9 | 89 | int kvm_set_signal_mask(CPUArchState *env, const sigset_t *sigset); |
20c20526 | 90 | #endif |
e22a25c9 | 91 | |
9349b4f9 | 92 | int kvm_on_sigbus_vcpu(CPUArchState *env, int code, void *addr); |
a1b87fe0 JK |
93 | int kvm_on_sigbus(int code, void *addr); |
94 | ||
05330448 AL |
95 | /* internal API */ |
96 | ||
984b5181 | 97 | int kvm_ioctl(KVMState *s, int type, ...); |
05330448 | 98 | |
984b5181 | 99 | int kvm_vm_ioctl(KVMState *s, int type, ...); |
05330448 | 100 | |
9349b4f9 | 101 | int kvm_vcpu_ioctl(CPUArchState *env, int type, ...); |
05330448 AL |
102 | |
103 | /* Arch specific hooks */ | |
104 | ||
94a8d39a JK |
105 | extern const KVMCapabilityInfo kvm_arch_required_capabilities[]; |
106 | ||
9349b4f9 AF |
107 | void kvm_arch_pre_run(CPUArchState *env, struct kvm_run *run); |
108 | void kvm_arch_post_run(CPUArchState *env, struct kvm_run *run); | |
05330448 | 109 | |
9349b4f9 | 110 | int kvm_arch_handle_exit(CPUArchState *env, struct kvm_run *run); |
05330448 | 111 | |
9349b4f9 | 112 | int kvm_arch_process_async_events(CPUArchState *env); |
0af691d7 | 113 | |
9349b4f9 | 114 | int kvm_arch_get_registers(CPUArchState *env); |
05330448 | 115 | |
ea375f9a JK |
116 | /* state subset only touched by the VCPU itself during runtime */ |
117 | #define KVM_PUT_RUNTIME_STATE 1 | |
118 | /* state subset modified during VCPU reset */ | |
119 | #define KVM_PUT_RESET_STATE 2 | |
120 | /* full state set, modified during initialization or on vmload */ | |
121 | #define KVM_PUT_FULL_STATE 3 | |
122 | ||
9349b4f9 | 123 | int kvm_arch_put_registers(CPUArchState *env, int level); |
05330448 | 124 | |
cad1e282 | 125 | int kvm_arch_init(KVMState *s); |
05330448 | 126 | |
9349b4f9 | 127 | int kvm_arch_init_vcpu(CPUArchState *env); |
05330448 | 128 | |
9349b4f9 | 129 | void kvm_arch_reset_vcpu(CPUArchState *env); |
caa5af0f | 130 | |
9349b4f9 | 131 | int kvm_arch_on_sigbus_vcpu(CPUArchState *env, int code, void *addr); |
a1b87fe0 | 132 | int kvm_arch_on_sigbus(int code, void *addr); |
c0532a76 | 133 | |
84b058d7 JK |
134 | void kvm_arch_init_irq_routing(KVMState *s); |
135 | ||
136 | int kvm_irqchip_set_irq(KVMState *s, int irq, int level); | |
04fa27f5 | 137 | int kvm_irqchip_send_msi(KVMState *s, MSIMessage msg); |
84b058d7 | 138 | |
1df186df | 139 | void kvm_irqchip_add_irq_route(KVMState *s, int gsi, int irqchip, int pin); |
84b058d7 | 140 | |
680c1c6f JK |
141 | void kvm_put_apic_state(DeviceState *d, struct kvm_lapic_state *kapic); |
142 | void kvm_get_apic_state(DeviceState *d, struct kvm_lapic_state *kapic); | |
143 | ||
e22a25c9 AL |
144 | struct kvm_guest_debug; |
145 | struct kvm_debug_exit_arch; | |
146 | ||
147 | struct kvm_sw_breakpoint { | |
148 | target_ulong pc; | |
149 | target_ulong saved_insn; | |
150 | int use_count; | |
72cf2d4f | 151 | QTAILQ_ENTRY(kvm_sw_breakpoint) entry; |
e22a25c9 AL |
152 | }; |
153 | ||
72cf2d4f | 154 | QTAILQ_HEAD(kvm_sw_breakpoint_head, kvm_sw_breakpoint); |
e22a25c9 | 155 | |
9349b4f9 | 156 | struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUArchState *env, |
e22a25c9 AL |
157 | target_ulong pc); |
158 | ||
9349b4f9 | 159 | int kvm_sw_breakpoints_active(CPUArchState *env); |
e22a25c9 | 160 | |
9349b4f9 | 161 | int kvm_arch_insert_sw_breakpoint(CPUArchState *current_env, |
e22a25c9 | 162 | struct kvm_sw_breakpoint *bp); |
9349b4f9 | 163 | int kvm_arch_remove_sw_breakpoint(CPUArchState *current_env, |
e22a25c9 AL |
164 | struct kvm_sw_breakpoint *bp); |
165 | int kvm_arch_insert_hw_breakpoint(target_ulong addr, | |
166 | target_ulong len, int type); | |
167 | int kvm_arch_remove_hw_breakpoint(target_ulong addr, | |
168 | target_ulong len, int type); | |
169 | void kvm_arch_remove_all_hw_breakpoints(void); | |
170 | ||
9349b4f9 | 171 | void kvm_arch_update_guest_debug(CPUArchState *env, struct kvm_guest_debug *dbg); |
e22a25c9 | 172 | |
9349b4f9 | 173 | bool kvm_arch_stop_on_emulation_error(CPUArchState *env); |
4513d923 | 174 | |
ad7b8b33 AL |
175 | int kvm_check_extension(KVMState *s, unsigned int extension); |
176 | ||
ba9bc59e | 177 | uint32_t kvm_arch_get_supported_cpuid(KVMState *env, uint32_t function, |
c958a8bd | 178 | uint32_t index, int reg); |
9349b4f9 AF |
179 | void kvm_cpu_synchronize_state(CPUArchState *env); |
180 | void kvm_cpu_synchronize_post_reset(CPUArchState *env); | |
181 | void kvm_cpu_synchronize_post_init(CPUArchState *env); | |
b827df58 | 182 | |
e22a25c9 AL |
183 | /* generic hooks - to be moved/refactored once there are more users */ |
184 | ||
9349b4f9 | 185 | static inline void cpu_synchronize_state(CPUArchState *env) |
e22a25c9 AL |
186 | { |
187 | if (kvm_enabled()) { | |
4c0960c0 | 188 | kvm_cpu_synchronize_state(env); |
e22a25c9 AL |
189 | } |
190 | } | |
191 | ||
9349b4f9 | 192 | static inline void cpu_synchronize_post_reset(CPUArchState *env) |
ea375f9a JK |
193 | { |
194 | if (kvm_enabled()) { | |
195 | kvm_cpu_synchronize_post_reset(env); | |
196 | } | |
197 | } | |
198 | ||
9349b4f9 | 199 | static inline void cpu_synchronize_post_init(CPUArchState *env) |
ea375f9a JK |
200 | { |
201 | if (kvm_enabled()) { | |
202 | kvm_cpu_synchronize_post_init(env); | |
203 | } | |
204 | } | |
ca821806 | 205 | |
983dfc3b HY |
206 | |
207 | #if !defined(CONFIG_USER_ONLY) | |
9f213ed9 AK |
208 | int kvm_physical_memory_addr_from_host(KVMState *s, void *ram_addr, |
209 | target_phys_addr_t *phys_addr); | |
983dfc3b HY |
210 | #endif |
211 | ||
ca821806 | 212 | #endif |
4b8f1c88 MT |
213 | int kvm_set_ioeventfd_mmio(int fd, uint32_t adr, uint32_t val, bool assign, |
214 | uint32_t size); | |
ca821806 | 215 | |
98c8573e | 216 | int kvm_set_ioeventfd_pio_word(int fd, uint16_t adr, uint16_t val, bool assign); |
92b4e489 JK |
217 | |
218 | int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg); | |
1e2aa8be | 219 | void kvm_irqchip_release_virq(KVMState *s, int virq); |
39853bbc JK |
220 | |
221 | int kvm_irqchip_add_irqfd(KVMState *s, int fd, int virq); | |
222 | int kvm_irqchip_remove_irqfd(KVMState *s, int fd, int virq); | |
15b2bd18 PB |
223 | int kvm_irqchip_add_irq_notifier(KVMState *s, EventNotifier *n, int virq); |
224 | int kvm_irqchip_remove_irq_notifier(KVMState *s, EventNotifier *n, int virq); | |
05330448 | 225 | #endif |