]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/blob - kvm.h
kvm: Introduce core services for in-kernel irqchip support
[lisovros/qemu_apohw.git] / kvm.h
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 <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
25 extern 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
33 struct kvm_run;
34
35 typedef 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 /* external API */
44
45 int kvm_init(void);
46
47 int kvm_has_sync_mmu(void);
48 int kvm_has_vcpu_events(void);
49 int kvm_has_robust_singlestep(void);
50 int kvm_has_debugregs(void);
51 int kvm_has_xsave(void);
52 int kvm_has_xcrs(void);
53 int kvm_has_many_ioeventfds(void);
54 int kvm_has_gsi_routing(void);
55
56 #ifdef NEED_CPU_H
57 int kvm_init_vcpu(CPUState *env);
58
59 int kvm_cpu_exec(CPUState *env);
60
61 #if !defined(CONFIG_USER_ONLY)
62 void kvm_setup_guest_memory(void *start, size_t size);
63
64 int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
65 int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
66 void kvm_flush_coalesced_mmio_buffer(void);
67 #endif
68
69 int kvm_insert_breakpoint(CPUState *current_env, target_ulong addr,
70                           target_ulong len, int type);
71 int kvm_remove_breakpoint(CPUState *current_env, target_ulong addr,
72                           target_ulong len, int type);
73 void kvm_remove_all_breakpoints(CPUState *current_env);
74 int kvm_update_guest_debug(CPUState *env, unsigned long reinject_trap);
75 #ifndef _WIN32
76 int kvm_set_signal_mask(CPUState *env, const sigset_t *sigset);
77 #endif
78
79 int kvm_pit_in_kernel(void);
80 int kvm_irqchip_in_kernel(void);
81
82 int kvm_on_sigbus_vcpu(CPUState *env, int code, void *addr);
83 int kvm_on_sigbus(int code, void *addr);
84
85 /* internal API */
86
87 struct KVMState;
88 typedef struct KVMState KVMState;
89 extern KVMState *kvm_state;
90
91 int kvm_ioctl(KVMState *s, int type, ...);
92
93 int kvm_vm_ioctl(KVMState *s, int type, ...);
94
95 int kvm_vcpu_ioctl(CPUState *env, int type, ...);
96
97 /* Arch specific hooks */
98
99 extern const KVMCapabilityInfo kvm_arch_required_capabilities[];
100
101 void kvm_arch_pre_run(CPUState *env, struct kvm_run *run);
102 void kvm_arch_post_run(CPUState *env, struct kvm_run *run);
103
104 int kvm_arch_handle_exit(CPUState *env, struct kvm_run *run);
105
106 int kvm_arch_process_async_events(CPUState *env);
107
108 int kvm_arch_get_registers(CPUState *env);
109
110 /* state subset only touched by the VCPU itself during runtime */
111 #define KVM_PUT_RUNTIME_STATE   1
112 /* state subset modified during VCPU reset */
113 #define KVM_PUT_RESET_STATE     2
114 /* full state set, modified during initialization or on vmload */
115 #define KVM_PUT_FULL_STATE      3
116
117 int kvm_arch_put_registers(CPUState *env, int level);
118
119 int kvm_arch_init(KVMState *s);
120
121 int kvm_arch_init_vcpu(CPUState *env);
122
123 void kvm_arch_reset_vcpu(CPUState *env);
124
125 int kvm_arch_on_sigbus_vcpu(CPUState *env, int code, void *addr);
126 int kvm_arch_on_sigbus(int code, void *addr);
127
128 void kvm_arch_init_irq_routing(KVMState *s);
129
130 int kvm_irqchip_set_irq(KVMState *s, int irq, int level);
131
132 void kvm_irqchip_add_route(KVMState *s, int gsi, int irqchip, int pin);
133 int kvm_irqchip_commit_routes(KVMState *s);
134
135 struct kvm_guest_debug;
136 struct kvm_debug_exit_arch;
137
138 struct kvm_sw_breakpoint {
139     target_ulong pc;
140     target_ulong saved_insn;
141     int use_count;
142     QTAILQ_ENTRY(kvm_sw_breakpoint) entry;
143 };
144
145 QTAILQ_HEAD(kvm_sw_breakpoint_head, kvm_sw_breakpoint);
146
147 struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *env,
148                                                  target_ulong pc);
149
150 int kvm_sw_breakpoints_active(CPUState *env);
151
152 int kvm_arch_insert_sw_breakpoint(CPUState *current_env,
153                                   struct kvm_sw_breakpoint *bp);
154 int kvm_arch_remove_sw_breakpoint(CPUState *current_env,
155                                   struct kvm_sw_breakpoint *bp);
156 int kvm_arch_insert_hw_breakpoint(target_ulong addr,
157                                   target_ulong len, int type);
158 int kvm_arch_remove_hw_breakpoint(target_ulong addr,
159                                   target_ulong len, int type);
160 void kvm_arch_remove_all_hw_breakpoints(void);
161
162 void kvm_arch_update_guest_debug(CPUState *env, struct kvm_guest_debug *dbg);
163
164 bool kvm_arch_stop_on_emulation_error(CPUState *env);
165
166 int kvm_check_extension(KVMState *s, unsigned int extension);
167
168 uint32_t kvm_arch_get_supported_cpuid(KVMState *env, uint32_t function,
169                                       uint32_t index, int reg);
170 void kvm_cpu_synchronize_state(CPUState *env);
171 void kvm_cpu_synchronize_post_reset(CPUState *env);
172 void kvm_cpu_synchronize_post_init(CPUState *env);
173
174 /* generic hooks - to be moved/refactored once there are more users */
175
176 static inline void cpu_synchronize_state(CPUState *env)
177 {
178     if (kvm_enabled()) {
179         kvm_cpu_synchronize_state(env);
180     }
181 }
182
183 static inline void cpu_synchronize_post_reset(CPUState *env)
184 {
185     if (kvm_enabled()) {
186         kvm_cpu_synchronize_post_reset(env);
187     }
188 }
189
190 static inline void cpu_synchronize_post_init(CPUState *env)
191 {
192     if (kvm_enabled()) {
193         kvm_cpu_synchronize_post_init(env);
194     }
195 }
196
197
198 #if !defined(CONFIG_USER_ONLY)
199 int kvm_physical_memory_addr_from_host(KVMState *s, void *ram_addr,
200                                        target_phys_addr_t *phys_addr);
201 #endif
202
203 #endif
204 int kvm_set_ioeventfd_mmio_long(int fd, uint32_t adr, uint32_t val, bool assign);
205
206 int kvm_set_ioeventfd_pio_word(int fd, uint16_t adr, uint16_t val, bool assign);
207 #endif