]> git.proxmox.com Git - mirror_qemu.git/blame - kvm.h
kvm: Decouple 'GSI routing' from 'kernel irqchip'
[mirror_qemu.git] / kvm.h
CommitLineData
05330448
AL
1/*
2 * QEMU KVM support
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
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 25extern int kvm_allowed;
3d4b2649 26extern bool kvm_kernel_irqchip;
7ae26bd4 27extern bool kvm_async_interrupts_allowed;
cc7e0ddf 28extern bool kvm_irqfds_allowed;
614e41bc 29extern bool kvm_msi_via_irqfd_allowed;
f3e1bed8 30extern bool kvm_gsi_routing_allowed;
98c8573e
PB
31
32#if defined CONFIG_KVM || !defined NEED_CPU_H
3d4b2649
JK
33#define kvm_enabled() (kvm_allowed)
34#define kvm_irqchip_in_kernel() (kvm_kernel_irqchip)
7ae26bd4
PM
35
36/**
37 * kvm_async_interrupts_enabled:
38 *
39 * Returns: true if we can deliver interrupts to KVM
40 * asynchronously (ie by ioctl from any thread at any time)
41 * rather than having to do interrupt delivery synchronously
42 * (where the vcpu must be stopped at a suitable point first).
43 */
44#define kvm_async_interrupts_enabled() (kvm_async_interrupts_allowed)
45
cc7e0ddf
PM
46/**
47 * kvm_irqfds_enabled:
48 *
49 * Returns: true if we can use irqfds to inject interrupts into
50 * a KVM CPU (ie the kernel supports irqfds and we are running
51 * with a configuration where it is meaningful to use them).
52 */
53#define kvm_irqfds_enabled() (kvm_irqfds_allowed)
54
614e41bc
PM
55/**
56 * kvm_msi_via_irqfd_enabled:
57 *
58 * Returns: true if we can route a PCI MSI (Message Signaled Interrupt)
59 * to a KVM CPU via an irqfd. This requires that the kernel supports
60 * this and that we're running in a configuration that permits it.
61 */
62#define kvm_msi_via_irqfd_enabled() (kvm_msi_via_irqfd_allowed)
63
f3e1bed8
PM
64/**
65 * kvm_gsi_routing_enabled:
66 *
67 * Returns: true if GSI routing is enabled (ie the kernel supports
68 * it and we're running in a configuration that permits it).
69 */
70#define kvm_gsi_routing_enabled() (kvm_gsi_routing_allowed)
71
05330448 72#else
3d4b2649
JK
73#define kvm_enabled() (0)
74#define kvm_irqchip_in_kernel() (false)
7ae26bd4 75#define kvm_async_interrupts_enabled() (false)
cc7e0ddf 76#define kvm_irqfds_enabled() (false)
614e41bc 77#define kvm_msi_via_irqfd_enabled() (false)
f3e1bed8 78#define kvm_gsi_routing_allowed() (false)
05330448
AL
79#endif
80
81struct kvm_run;
680c1c6f 82struct kvm_lapic_state;
05330448 83
94a8d39a
JK
84typedef struct KVMCapabilityInfo {
85 const char *name;
86 int value;
87} KVMCapabilityInfo;
88
89#define KVM_CAP_INFO(CAP) { "KVM_CAP_" stringify(CAP), KVM_CAP_##CAP }
90#define KVM_CAP_LAST_INFO { NULL, 0 }
91
92b4e489
JK
92struct KVMState;
93typedef struct KVMState KVMState;
94extern KVMState *kvm_state;
95
05330448
AL
96/* external API */
97
cad1e282 98int kvm_init(void);
05330448 99
00a1555e
PB
100int kvm_has_sync_mmu(void);
101int kvm_has_vcpu_events(void);
102int kvm_has_robust_singlestep(void);
ff44f1a3 103int kvm_has_debugregs(void);
f1665b21
SY
104int kvm_has_xsave(void);
105int kvm_has_xcrs(void);
8a7c7393 106int kvm_has_pit_state2(void);
d2f2b8a7 107int kvm_has_many_ioeventfds(void);
84b058d7 108int kvm_has_gsi_routing(void);
00a1555e 109
1c14f162 110#ifdef NEED_CPU_H
9349b4f9 111int kvm_init_vcpu(CPUArchState *env);
05330448 112
9349b4f9 113int kvm_cpu_exec(CPUArchState *env);
05330448 114
b3755a91 115#if !defined(CONFIG_USER_ONLY)
fdec9918
CB
116void *kvm_vmalloc(ram_addr_t size);
117void *kvm_arch_vmalloc(ram_addr_t size);
6f0437e8
JK
118void kvm_setup_guest_memory(void *start, size_t size);
119
c227f099
AL
120int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
121int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
62a2744c 122void kvm_flush_coalesced_mmio_buffer(void);
b3755a91 123#endif
f65ed4c1 124
9349b4f9 125int kvm_insert_breakpoint(CPUArchState *current_env, target_ulong addr,
e22a25c9 126 target_ulong len, int type);
9349b4f9 127int kvm_remove_breakpoint(CPUArchState *current_env, target_ulong addr,
e22a25c9 128 target_ulong len, int type);
9349b4f9
AF
129void kvm_remove_all_breakpoints(CPUArchState *current_env);
130int kvm_update_guest_debug(CPUArchState *env, unsigned long reinject_trap);
20c20526 131#ifndef _WIN32
9349b4f9 132int kvm_set_signal_mask(CPUArchState *env, const sigset_t *sigset);
20c20526 133#endif
e22a25c9 134
9349b4f9 135int kvm_on_sigbus_vcpu(CPUArchState *env, int code, void *addr);
a1b87fe0
JK
136int kvm_on_sigbus(int code, void *addr);
137
05330448
AL
138/* internal API */
139
984b5181 140int kvm_ioctl(KVMState *s, int type, ...);
05330448 141
984b5181 142int kvm_vm_ioctl(KVMState *s, int type, ...);
05330448 143
9349b4f9 144int kvm_vcpu_ioctl(CPUArchState *env, int type, ...);
05330448
AL
145
146/* Arch specific hooks */
147
94a8d39a
JK
148extern const KVMCapabilityInfo kvm_arch_required_capabilities[];
149
9349b4f9
AF
150void kvm_arch_pre_run(CPUArchState *env, struct kvm_run *run);
151void kvm_arch_post_run(CPUArchState *env, struct kvm_run *run);
05330448 152
9349b4f9 153int kvm_arch_handle_exit(CPUArchState *env, struct kvm_run *run);
05330448 154
9349b4f9 155int kvm_arch_process_async_events(CPUArchState *env);
0af691d7 156
9349b4f9 157int kvm_arch_get_registers(CPUArchState *env);
05330448 158
ea375f9a
JK
159/* state subset only touched by the VCPU itself during runtime */
160#define KVM_PUT_RUNTIME_STATE 1
161/* state subset modified during VCPU reset */
162#define KVM_PUT_RESET_STATE 2
163/* full state set, modified during initialization or on vmload */
164#define KVM_PUT_FULL_STATE 3
165
9349b4f9 166int kvm_arch_put_registers(CPUArchState *env, int level);
05330448 167
cad1e282 168int kvm_arch_init(KVMState *s);
05330448 169
9349b4f9 170int kvm_arch_init_vcpu(CPUArchState *env);
05330448 171
9349b4f9 172void kvm_arch_reset_vcpu(CPUArchState *env);
caa5af0f 173
9349b4f9 174int kvm_arch_on_sigbus_vcpu(CPUArchState *env, int code, void *addr);
a1b87fe0 175int kvm_arch_on_sigbus(int code, void *addr);
c0532a76 176
84b058d7
JK
177void kvm_arch_init_irq_routing(KVMState *s);
178
3889c3fa 179int kvm_set_irq(KVMState *s, int irq, int level);
04fa27f5 180int kvm_irqchip_send_msi(KVMState *s, MSIMessage msg);
84b058d7 181
1df186df 182void kvm_irqchip_add_irq_route(KVMState *s, int gsi, int irqchip, int pin);
84b058d7 183
680c1c6f
JK
184void kvm_put_apic_state(DeviceState *d, struct kvm_lapic_state *kapic);
185void kvm_get_apic_state(DeviceState *d, struct kvm_lapic_state *kapic);
186
e22a25c9
AL
187struct kvm_guest_debug;
188struct kvm_debug_exit_arch;
189
190struct kvm_sw_breakpoint {
191 target_ulong pc;
192 target_ulong saved_insn;
193 int use_count;
72cf2d4f 194 QTAILQ_ENTRY(kvm_sw_breakpoint) entry;
e22a25c9
AL
195};
196
72cf2d4f 197QTAILQ_HEAD(kvm_sw_breakpoint_head, kvm_sw_breakpoint);
e22a25c9 198
9349b4f9 199struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUArchState *env,
e22a25c9
AL
200 target_ulong pc);
201
9349b4f9 202int kvm_sw_breakpoints_active(CPUArchState *env);
e22a25c9 203
9349b4f9 204int kvm_arch_insert_sw_breakpoint(CPUArchState *current_env,
e22a25c9 205 struct kvm_sw_breakpoint *bp);
9349b4f9 206int kvm_arch_remove_sw_breakpoint(CPUArchState *current_env,
e22a25c9
AL
207 struct kvm_sw_breakpoint *bp);
208int kvm_arch_insert_hw_breakpoint(target_ulong addr,
209 target_ulong len, int type);
210int kvm_arch_remove_hw_breakpoint(target_ulong addr,
211 target_ulong len, int type);
212void kvm_arch_remove_all_hw_breakpoints(void);
213
9349b4f9 214void kvm_arch_update_guest_debug(CPUArchState *env, struct kvm_guest_debug *dbg);
e22a25c9 215
9349b4f9 216bool kvm_arch_stop_on_emulation_error(CPUArchState *env);
4513d923 217
ad7b8b33
AL
218int kvm_check_extension(KVMState *s, unsigned int extension);
219
ba9bc59e 220uint32_t kvm_arch_get_supported_cpuid(KVMState *env, uint32_t function,
c958a8bd 221 uint32_t index, int reg);
9349b4f9
AF
222void kvm_cpu_synchronize_state(CPUArchState *env);
223void kvm_cpu_synchronize_post_reset(CPUArchState *env);
224void kvm_cpu_synchronize_post_init(CPUArchState *env);
b827df58 225
e22a25c9
AL
226/* generic hooks - to be moved/refactored once there are more users */
227
9349b4f9 228static inline void cpu_synchronize_state(CPUArchState *env)
e22a25c9
AL
229{
230 if (kvm_enabled()) {
4c0960c0 231 kvm_cpu_synchronize_state(env);
e22a25c9
AL
232 }
233}
234
9349b4f9 235static inline void cpu_synchronize_post_reset(CPUArchState *env)
ea375f9a
JK
236{
237 if (kvm_enabled()) {
238 kvm_cpu_synchronize_post_reset(env);
239 }
240}
241
9349b4f9 242static inline void cpu_synchronize_post_init(CPUArchState *env)
ea375f9a
JK
243{
244 if (kvm_enabled()) {
245 kvm_cpu_synchronize_post_init(env);
246 }
247}
ca821806 248
983dfc3b
HY
249
250#if !defined(CONFIG_USER_ONLY)
9f213ed9
AK
251int kvm_physical_memory_addr_from_host(KVMState *s, void *ram_addr,
252 target_phys_addr_t *phys_addr);
983dfc3b
HY
253#endif
254
ca821806 255#endif
4b8f1c88
MT
256int kvm_set_ioeventfd_mmio(int fd, uint32_t adr, uint32_t val, bool assign,
257 uint32_t size);
ca821806 258
98c8573e 259int kvm_set_ioeventfd_pio_word(int fd, uint16_t adr, uint16_t val, bool assign);
92b4e489
JK
260
261int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg);
1e2aa8be 262void kvm_irqchip_release_virq(KVMState *s, int virq);
39853bbc
JK
263
264int kvm_irqchip_add_irqfd(KVMState *s, int fd, int virq);
265int kvm_irqchip_remove_irqfd(KVMState *s, int fd, int virq);
15b2bd18
PB
266int kvm_irqchip_add_irq_notifier(KVMState *s, EventNotifier *n, int virq);
267int kvm_irqchip_remove_irq_notifier(KVMState *s, EventNotifier *n, int virq);
05330448 268#endif