1
2
3
4
5
6
7
8
9
10
11
12
13
14#ifndef QEMU_KVM_H
15#define QEMU_KVM_H
16
17#include <errno.h>
18#include "config-host.h"
19#include "qemu-queue.h"
20
21#ifdef CONFIG_KVM
22#include <linux/kvm.h>
23#endif
24
25extern int kvm_allowed;
26
27#if defined CONFIG_KVM || !defined NEED_CPU_H
28#define kvm_enabled() (kvm_allowed)
29#else
30#define kvm_enabled() (0)
31#endif
32
33struct kvm_run;
34
35typedef struct KVMCapabilityInfo {
36 const char *name;
37 int value;
38} KVMCapabilityInfo;
39
40#define KVM_CAP_INFO(CAP) { "KVM_CAP_" stringify(CAP), KVM_CAP_##CAP }
41#define KVM_CAP_LAST_INFO { NULL, 0 }
42
43
44
45int kvm_init(void);
46
47int kvm_has_sync_mmu(void);
48int kvm_has_vcpu_events(void);
49int kvm_has_robust_singlestep(void);
50int kvm_has_debugregs(void);
51int kvm_has_xsave(void);
52int kvm_has_xcrs(void);
53int kvm_has_many_ioeventfds(void);
54
55#ifdef NEED_CPU_H
56int kvm_init_vcpu(CPUState *env);
57
58int kvm_cpu_exec(CPUState *env);
59
60#if !defined(CONFIG_USER_ONLY)
61int kvm_log_start(target_phys_addr_t phys_addr, ram_addr_t size);
62int kvm_log_stop(target_phys_addr_t phys_addr, ram_addr_t size);
63
64void kvm_setup_guest_memory(void *start, size_t size);
65
66int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
67int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
68void kvm_flush_coalesced_mmio_buffer(void);
69#endif
70
71int kvm_insert_breakpoint(CPUState *current_env, target_ulong addr,
72 target_ulong len, int type);
73int kvm_remove_breakpoint(CPUState *current_env, target_ulong addr,
74 target_ulong len, int type);
75void kvm_remove_all_breakpoints(CPUState *current_env);
76int kvm_update_guest_debug(CPUState *env, unsigned long reinject_trap);
77#ifndef _WIN32
78int kvm_set_signal_mask(CPUState *env, const sigset_t *sigset);
79#endif
80
81int kvm_pit_in_kernel(void);
82int kvm_irqchip_in_kernel(void);
83
84
85
86struct KVMState;
87typedef struct KVMState KVMState;
88
89int kvm_ioctl(KVMState *s, int type, ...);
90
91int kvm_vm_ioctl(KVMState *s, int type, ...);
92
93int kvm_vcpu_ioctl(CPUState *env, int type, ...);
94
95
96
97extern const KVMCapabilityInfo kvm_arch_required_capabilities[];
98
99int kvm_arch_post_run(CPUState *env, struct kvm_run *run);
100
101int kvm_arch_handle_exit(CPUState *env, struct kvm_run *run);
102
103int kvm_arch_pre_run(CPUState *env, struct kvm_run *run);
104
105int kvm_arch_process_irqchip_events(CPUState *env);
106
107int kvm_arch_get_registers(CPUState *env);
108
109
110#define KVM_PUT_RUNTIME_STATE 1
111
112#define KVM_PUT_RESET_STATE 2
113
114#define KVM_PUT_FULL_STATE 3
115
116int kvm_arch_put_registers(CPUState *env, int level);
117
118int kvm_arch_init(KVMState *s);
119
120int kvm_arch_init_vcpu(CPUState *env);
121
122void kvm_arch_reset_vcpu(CPUState *env);
123
124int kvm_on_sigbus_vcpu(CPUState *env, int code, void *addr);
125int kvm_on_sigbus(int code, void *addr);
126
127struct kvm_guest_debug;
128struct kvm_debug_exit_arch;
129
130struct kvm_sw_breakpoint {
131 target_ulong pc;
132 target_ulong saved_insn;
133 int use_count;
134 QTAILQ_ENTRY(kvm_sw_breakpoint) entry;
135};
136
137QTAILQ_HEAD(kvm_sw_breakpoint_head, kvm_sw_breakpoint);
138
139int kvm_arch_debug(struct kvm_debug_exit_arch *arch_info);
140
141struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *env,
142 target_ulong pc);
143
144int kvm_sw_breakpoints_active(CPUState *env);
145
146int kvm_arch_insert_sw_breakpoint(CPUState *current_env,
147 struct kvm_sw_breakpoint *bp);
148int kvm_arch_remove_sw_breakpoint(CPUState *current_env,
149 struct kvm_sw_breakpoint *bp);
150int kvm_arch_insert_hw_breakpoint(target_ulong addr,
151 target_ulong len, int type);
152int kvm_arch_remove_hw_breakpoint(target_ulong addr,
153 target_ulong len, int type);
154void kvm_arch_remove_all_hw_breakpoints(void);
155
156void kvm_arch_update_guest_debug(CPUState *env, struct kvm_guest_debug *dbg);
157
158bool kvm_arch_stop_on_emulation_error(CPUState *env);
159
160int kvm_check_extension(KVMState *s, unsigned int extension);
161
162uint32_t kvm_arch_get_supported_cpuid(CPUState *env, uint32_t function,
163 uint32_t index, int reg);
164void kvm_cpu_synchronize_state(CPUState *env);
165void kvm_cpu_synchronize_post_reset(CPUState *env);
166void kvm_cpu_synchronize_post_init(CPUState *env);
167
168
169
170static inline void cpu_synchronize_state(CPUState *env)
171{
172 if (kvm_enabled()) {
173 kvm_cpu_synchronize_state(env);
174 }
175}
176
177static inline void cpu_synchronize_post_reset(CPUState *env)
178{
179 if (kvm_enabled()) {
180 kvm_cpu_synchronize_post_reset(env);
181 }
182}
183
184static inline void cpu_synchronize_post_init(CPUState *env)
185{
186 if (kvm_enabled()) {
187 kvm_cpu_synchronize_post_init(env);
188 }
189}
190
191
192#if !defined(CONFIG_USER_ONLY)
193int kvm_physical_memory_addr_from_ram(KVMState *s, ram_addr_t ram_addr,
194 target_phys_addr_t *phys_addr);
195#endif
196
197#endif
198int kvm_set_ioeventfd_mmio_long(int fd, uint32_t adr, uint32_t val, bool assign);
199
200int kvm_set_ioeventfd_pio_word(int fd, uint16_t adr, uint16_t val, bool assign);
201#endif
202