]> git.proxmox.com Git - qemu.git/blame - kvm.h
qemu-option: Rename find_list() to qemu_find_opts() & external linkage
[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
17#include "config.h"
72cf2d4f 18#include "qemu-queue.h"
05330448
AL
19
20#ifdef CONFIG_KVM
21extern int kvm_allowed;
22
23#define kvm_enabled() (kvm_allowed)
24#else
25#define kvm_enabled() (0)
26#endif
27
28struct kvm_run;
29
30/* external API */
31
32int kvm_init(int smp_cpus);
33
34int kvm_init_vcpu(CPUState *env);
35
36int kvm_cpu_exec(CPUState *env);
37
c227f099
AL
38int kvm_log_start(target_phys_addr_t phys_addr, ram_addr_t size);
39int kvm_log_stop(target_phys_addr_t phys_addr, ram_addr_t size);
bd322087
AL
40
41int kvm_has_sync_mmu(void);
a0fb002c 42int kvm_has_vcpu_events(void);
b0b1d690 43int kvm_has_robust_singlestep(void);
bd322087 44
6f0437e8
JK
45void kvm_setup_guest_memory(void *start, size_t size);
46
c227f099
AL
47int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
48int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
62a2744c 49void kvm_flush_coalesced_mmio_buffer(void);
f65ed4c1 50
e22a25c9
AL
51int kvm_insert_breakpoint(CPUState *current_env, target_ulong addr,
52 target_ulong len, int type);
53int kvm_remove_breakpoint(CPUState *current_env, target_ulong addr,
54 target_ulong len, int type);
55void kvm_remove_all_breakpoints(CPUState *current_env);
56int kvm_update_guest_debug(CPUState *env, unsigned long reinject_trap);
20c20526 57#ifndef _WIN32
cc84de95 58int kvm_set_signal_mask(CPUState *env, const sigset_t *sigset);
20c20526 59#endif
e22a25c9 60
6f725c13
GC
61int kvm_pit_in_kernel(void);
62int kvm_irqchip_in_kernel(void);
63
05330448
AL
64/* internal API */
65
66struct KVMState;
67typedef struct KVMState KVMState;
68
984b5181 69int kvm_ioctl(KVMState *s, int type, ...);
05330448 70
984b5181 71int kvm_vm_ioctl(KVMState *s, int type, ...);
05330448 72
984b5181 73int kvm_vcpu_ioctl(CPUState *env, int type, ...);
05330448
AL
74
75/* Arch specific hooks */
76
77int kvm_arch_post_run(CPUState *env, struct kvm_run *run);
78
79int kvm_arch_handle_exit(CPUState *env, struct kvm_run *run);
80
81int kvm_arch_pre_run(CPUState *env, struct kvm_run *run);
82
83int kvm_arch_get_registers(CPUState *env);
84
ea375f9a
JK
85/* state subset only touched by the VCPU itself during runtime */
86#define KVM_PUT_RUNTIME_STATE 1
87/* state subset modified during VCPU reset */
88#define KVM_PUT_RESET_STATE 2
89/* full state set, modified during initialization or on vmload */
90#define KVM_PUT_FULL_STATE 3
91
92int kvm_arch_put_registers(CPUState *env, int level);
05330448
AL
93
94int kvm_arch_init(KVMState *s, int smp_cpus);
95
96int kvm_arch_init_vcpu(CPUState *env);
97
caa5af0f
JK
98void kvm_arch_reset_vcpu(CPUState *env);
99
e22a25c9
AL
100struct kvm_guest_debug;
101struct kvm_debug_exit_arch;
102
103struct kvm_sw_breakpoint {
104 target_ulong pc;
105 target_ulong saved_insn;
106 int use_count;
72cf2d4f 107 QTAILQ_ENTRY(kvm_sw_breakpoint) entry;
e22a25c9
AL
108};
109
72cf2d4f 110QTAILQ_HEAD(kvm_sw_breakpoint_head, kvm_sw_breakpoint);
e22a25c9
AL
111
112int kvm_arch_debug(struct kvm_debug_exit_arch *arch_info);
113
114struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *env,
115 target_ulong pc);
116
117int kvm_sw_breakpoints_active(CPUState *env);
118
119int kvm_arch_insert_sw_breakpoint(CPUState *current_env,
120 struct kvm_sw_breakpoint *bp);
121int kvm_arch_remove_sw_breakpoint(CPUState *current_env,
122 struct kvm_sw_breakpoint *bp);
123int kvm_arch_insert_hw_breakpoint(target_ulong addr,
124 target_ulong len, int type);
125int kvm_arch_remove_hw_breakpoint(target_ulong addr,
126 target_ulong len, int type);
127void kvm_arch_remove_all_hw_breakpoints(void);
128
129void kvm_arch_update_guest_debug(CPUState *env, struct kvm_guest_debug *dbg);
130
ad7b8b33
AL
131int kvm_check_extension(KVMState *s, unsigned int extension);
132
b827df58
AK
133uint32_t kvm_arch_get_supported_cpuid(CPUState *env, uint32_t function,
134 int reg);
4c0960c0 135void kvm_cpu_synchronize_state(CPUState *env);
ea375f9a
JK
136void kvm_cpu_synchronize_post_reset(CPUState *env);
137void kvm_cpu_synchronize_post_init(CPUState *env);
b827df58 138
e22a25c9
AL
139/* generic hooks - to be moved/refactored once there are more users */
140
4c0960c0 141static inline void cpu_synchronize_state(CPUState *env)
e22a25c9
AL
142{
143 if (kvm_enabled()) {
4c0960c0 144 kvm_cpu_synchronize_state(env);
e22a25c9
AL
145 }
146}
147
ea375f9a
JK
148static inline void cpu_synchronize_post_reset(CPUState *env)
149{
150 if (kvm_enabled()) {
151 kvm_cpu_synchronize_post_reset(env);
152 }
153}
154
155static inline void cpu_synchronize_post_init(CPUState *env)
156{
157 if (kvm_enabled()) {
158 kvm_cpu_synchronize_post_init(env);
159 }
160}
161
05330448 162#endif