qemu-kvm: Fix GSI handling with in-kernel irqchip
[qemu-kvm.git] / kvm.h
blobc7c9d79df20c40cf619cd917f6428197ed508538
1 /*
2 * QEMU KVM support
4 * Copyright IBM, Corp. 2008
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
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.
14 #ifndef QEMU_KVM_H
15 #define QEMU_KVM_H
17 #include <errno.h>
18 #include "config-host.h"
19 #include "qemu-queue.h"
21 #ifdef CONFIG_KVM
22 #include <linux/kvm.h>
23 #endif
25 extern int kvm_allowed;
27 #if defined CONFIG_KVM || !defined NEED_CPU_H
28 #define kvm_enabled() (kvm_allowed)
29 #else
30 #define kvm_enabled() (0)
31 #endif
33 struct kvm_run;
34 struct kvm_lapic_state;
36 typedef struct KVMCapabilityInfo {
37 const char *name;
38 int value;
39 } KVMCapabilityInfo;
41 #define KVM_CAP_INFO(CAP) { "KVM_CAP_" stringify(CAP), KVM_CAP_##CAP }
42 #define KVM_CAP_LAST_INFO { NULL, 0 }
44 /* external API */
46 int kvm_init(void);
48 int kvm_has_sync_mmu(void);
49 int kvm_has_vcpu_events(void);
50 int kvm_has_robust_singlestep(void);
51 int kvm_has_debugregs(void);
52 int kvm_has_xsave(void);
53 int kvm_has_xcrs(void);
54 int kvm_has_many_ioeventfds(void);
55 int kvm_has_pit_state2(void);
56 int kvm_has_gsi_routing(void);
58 int kvm_allows_irq0_override(void);
60 #ifdef NEED_CPU_H
61 int kvm_init_vcpu(CPUState *env);
63 int kvm_cpu_exec(CPUState *env);
65 #if !defined(CONFIG_USER_ONLY)
66 void kvm_setup_guest_memory(void *start, size_t size);
68 int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
69 int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
70 void kvm_flush_coalesced_mmio_buffer(void);
71 #endif
73 int kvm_insert_breakpoint(CPUState *current_env, target_ulong addr,
74 target_ulong len, int type);
75 int kvm_remove_breakpoint(CPUState *current_env, target_ulong addr,
76 target_ulong len, int type);
77 void kvm_remove_all_breakpoints(CPUState *current_env);
78 int kvm_update_guest_debug(CPUState *env, unsigned long reinject_trap);
79 #ifndef _WIN32
80 int kvm_set_signal_mask(CPUState *env, const sigset_t *sigset);
81 #endif
83 int kvm_pit_in_kernel(void);
85 int kvm_on_sigbus_vcpu(CPUState *env, int code, void *addr);
86 int kvm_on_sigbus(int code, void *addr);
87 #endif /* NEED_CPU_H */
89 /* internal API */
91 struct KVMState;
92 typedef struct KVMState KVMState;
93 extern KVMState *kvm_state;
95 int kvm_ioctl(KVMState *s, int type, ...);
97 int kvm_vm_ioctl(KVMState *s, int type, ...);
99 #ifdef NEED_CPU_H
100 int kvm_vcpu_ioctl(CPUState *env, int type, ...);
102 /* Arch specific hooks */
104 extern const KVMCapabilityInfo kvm_arch_required_capabilities[];
106 void kvm_arch_pre_run(CPUState *env, struct kvm_run *run);
107 void kvm_arch_post_run(CPUState *env, struct kvm_run *run);
109 int kvm_arch_handle_exit(CPUState *env, struct kvm_run *run);
111 int kvm_arch_process_async_events(CPUState *env);
113 int kvm_arch_get_registers(CPUState *env);
115 /* state subset only touched by the VCPU itself during runtime */
116 #define KVM_PUT_RUNTIME_STATE 1
117 /* state subset modified during VCPU reset */
118 #define KVM_PUT_RESET_STATE 2
119 /* full state set, modified during initialization or on vmload */
120 #define KVM_PUT_FULL_STATE 3
122 int kvm_arch_put_registers(CPUState *env, int level);
124 int kvm_arch_init(KVMState *s);
126 int kvm_arch_init_vcpu(CPUState *env);
128 void kvm_arch_reset_vcpu(CPUState *env);
130 int kvm_arch_on_sigbus_vcpu(CPUState *env, int code, void *addr);
131 int kvm_arch_on_sigbus(int code, void *addr);
133 #ifdef UNUSED_UPSTREAM_KVM
134 void kvm_arch_init_irq_routing(KVMState *s);
135 #endif
137 int kvm_irqchip_set_irq(KVMState *s, int irq, int level);
139 void kvm_irqchip_add_route(KVMState *s, int gsi, int irqchip, int pin);
140 int kvm_irqchip_commit_routes(KVMState *s);
142 void kvm_put_apic_state(DeviceState *d, struct kvm_lapic_state *kapic);
143 void kvm_get_apic_state(DeviceState *d, struct kvm_lapic_state *kapic);
145 struct kvm_guest_debug;
146 struct kvm_debug_exit_arch;
148 struct kvm_sw_breakpoint {
149 target_ulong pc;
150 target_ulong saved_insn;
151 int use_count;
152 QTAILQ_ENTRY(kvm_sw_breakpoint) entry;
155 QTAILQ_HEAD(kvm_sw_breakpoint_head, kvm_sw_breakpoint);
157 struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *env,
158 target_ulong pc);
160 int kvm_sw_breakpoints_active(CPUState *env);
162 int kvm_arch_insert_sw_breakpoint(CPUState *current_env,
163 struct kvm_sw_breakpoint *bp);
164 int kvm_arch_remove_sw_breakpoint(CPUState *current_env,
165 struct kvm_sw_breakpoint *bp);
166 int kvm_arch_insert_hw_breakpoint(target_ulong addr,
167 target_ulong len, int type);
168 int kvm_arch_remove_hw_breakpoint(target_ulong addr,
169 target_ulong len, int type);
170 void kvm_arch_remove_all_hw_breakpoints(void);
172 void kvm_arch_update_guest_debug(CPUState *env, struct kvm_guest_debug *dbg);
174 bool kvm_arch_stop_on_emulation_error(CPUState *env);
176 int kvm_check_extension(KVMState *s, unsigned int extension);
178 uint32_t kvm_arch_get_supported_cpuid(KVMState *env, uint32_t function,
179 uint32_t index, int reg);
180 void kvm_cpu_synchronize_state(CPUState *env);
181 void kvm_cpu_synchronize_post_reset(CPUState *env);
182 void kvm_cpu_synchronize_post_init(CPUState *env);
184 /* generic hooks - to be moved/refactored once there are more users */
186 static inline void cpu_synchronize_state(CPUState *env)
188 if (kvm_enabled()) {
189 kvm_cpu_synchronize_state(env);
193 static inline void cpu_synchronize_post_reset(CPUState *env)
195 if (kvm_enabled()) {
196 kvm_cpu_synchronize_post_reset(env);
200 static inline void cpu_synchronize_post_init(CPUState *env)
202 if (kvm_enabled()) {
203 kvm_cpu_synchronize_post_init(env);
207 #if !defined(CONFIG_USER_ONLY)
208 int kvm_physical_memory_addr_from_host(KVMState *s, void *ram_addr,
209 target_phys_addr_t *phys_addr);
210 #endif
212 #endif
213 int kvm_set_ioeventfd_mmio_long(int fd, uint32_t adr, uint32_t val, bool assign);
215 int kvm_set_irqfd(int gsi, int fd, bool assigned);
217 int kvm_set_ioeventfd_pio_word(int fd, uint16_t adr, uint16_t val, bool assign);
219 typedef struct KVMMsiMessage {
220 uint32_t gsi;
221 uint32_t addr_lo;
222 uint32_t addr_hi;
223 uint32_t data;
224 } KVMMsiMessage;
226 int kvm_get_irq_route_gsi(void);
228 int kvm_msi_message_add(KVMMsiMessage *msg);
229 int kvm_msi_message_del(KVMMsiMessage *msg);
230 int kvm_msi_message_update(KVMMsiMessage *old, KVMMsiMessage *new);
232 int kvm_commit_irq_routes(void);
234 int kvm_irqchip_in_kernel(void);
236 int kvm_set_irq(int irq, int level, int *status);
238 #ifdef NEED_CPU_H
239 #include "qemu-kvm.h"
240 #endif
242 #endif