Statistics
| Branch: | Revision:

root / kvm.h @ 250b086e

History | View | Annotate | Download (5.9 kB)

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
extern bool kvm_kernel_irqchip;
27

    
28
#if defined CONFIG_KVM || !defined NEED_CPU_H
29
#define kvm_enabled()           (kvm_allowed)
30
#define kvm_irqchip_in_kernel() (kvm_kernel_irqchip)
31
#else
32
#define kvm_enabled()           (0)
33
#define kvm_irqchip_in_kernel() (false)
34
#endif
35

    
36
struct kvm_run;
37
struct kvm_lapic_state;
38

    
39
typedef struct KVMCapabilityInfo {
40
    const char *name;
41
    int value;
42
} KVMCapabilityInfo;
43

    
44
#define KVM_CAP_INFO(CAP) { "KVM_CAP_" stringify(CAP), KVM_CAP_##CAP }
45
#define KVM_CAP_LAST_INFO { NULL, 0 }
46

    
47
/* external API */
48

    
49
int kvm_init(void);
50

    
51
int kvm_has_sync_mmu(void);
52
int kvm_has_vcpu_events(void);
53
int kvm_has_robust_singlestep(void);
54
int kvm_has_debugregs(void);
55
int kvm_has_xsave(void);
56
int kvm_has_xcrs(void);
57
int kvm_has_pit_state2(void);
58
int kvm_has_many_ioeventfds(void);
59
int kvm_has_gsi_routing(void);
60

    
61
int kvm_allows_irq0_override(void);
62

    
63
#ifdef NEED_CPU_H
64
int kvm_init_vcpu(CPUState *env);
65

    
66
int kvm_cpu_exec(CPUState *env);
67

    
68
#if !defined(CONFIG_USER_ONLY)
69
void kvm_setup_guest_memory(void *start, size_t size);
70

    
71
int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
72
int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size);
73
void kvm_flush_coalesced_mmio_buffer(void);
74
#endif
75

    
76
int kvm_insert_breakpoint(CPUState *current_env, target_ulong addr,
77
                          target_ulong len, int type);
78
int kvm_remove_breakpoint(CPUState *current_env, target_ulong addr,
79
                          target_ulong len, int type);
80
void kvm_remove_all_breakpoints(CPUState *current_env);
81
int kvm_update_guest_debug(CPUState *env, unsigned long reinject_trap);
82
#ifndef _WIN32
83
int kvm_set_signal_mask(CPUState *env, const sigset_t *sigset);
84
#endif
85

    
86
int kvm_pit_in_kernel(void);
87

    
88
int kvm_on_sigbus_vcpu(CPUState *env, int code, void *addr);
89
int kvm_on_sigbus(int code, void *addr);
90

    
91
/* internal API */
92

    
93
struct KVMState;
94
typedef struct KVMState KVMState;
95
extern KVMState *kvm_state;
96

    
97
int kvm_ioctl(KVMState *s, int type, ...);
98

    
99
int kvm_vm_ioctl(KVMState *s, int type, ...);
100

    
101
int kvm_vcpu_ioctl(CPUState *env, int type, ...);
102

    
103
/* Arch specific hooks */
104

    
105
extern const KVMCapabilityInfo kvm_arch_required_capabilities[];
106

    
107
void kvm_arch_pre_run(CPUState *env, struct kvm_run *run);
108
void kvm_arch_post_run(CPUState *env, struct kvm_run *run);
109

    
110
int kvm_arch_handle_exit(CPUState *env, struct kvm_run *run);
111

    
112
int kvm_arch_process_async_events(CPUState *env);
113

    
114
int kvm_arch_get_registers(CPUState *env);
115

    
116
/* state subset only touched by the VCPU itself during runtime */
117
#define KVM_PUT_RUNTIME_STATE   1
118
/* state subset modified during VCPU reset */
119
#define KVM_PUT_RESET_STATE     2
120
/* full state set, modified during initialization or on vmload */
121
#define KVM_PUT_FULL_STATE      3
122

    
123
int kvm_arch_put_registers(CPUState *env, int level);
124

    
125
int kvm_arch_init(KVMState *s);
126

    
127
int kvm_arch_init_vcpu(CPUState *env);
128

    
129
void kvm_arch_reset_vcpu(CPUState *env);
130

    
131
int kvm_arch_on_sigbus_vcpu(CPUState *env, int code, void *addr);
132
int kvm_arch_on_sigbus(int code, void *addr);
133

    
134
void kvm_arch_init_irq_routing(KVMState *s);
135

    
136
int kvm_irqchip_set_irq(KVMState *s, int irq, int level);
137

    
138
void kvm_irqchip_add_route(KVMState *s, int gsi, int irqchip, int pin);
139
int kvm_irqchip_commit_routes(KVMState *s);
140

    
141
void kvm_put_apic_state(DeviceState *d, struct kvm_lapic_state *kapic);
142
void kvm_get_apic_state(DeviceState *d, struct kvm_lapic_state *kapic);
143

    
144
struct kvm_guest_debug;
145
struct kvm_debug_exit_arch;
146

    
147
struct kvm_sw_breakpoint {
148
    target_ulong pc;
149
    target_ulong saved_insn;
150
    int use_count;
151
    QTAILQ_ENTRY(kvm_sw_breakpoint) entry;
152
};
153

    
154
QTAILQ_HEAD(kvm_sw_breakpoint_head, kvm_sw_breakpoint);
155

    
156
struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *env,
157
                                                 target_ulong pc);
158

    
159
int kvm_sw_breakpoints_active(CPUState *env);
160

    
161
int kvm_arch_insert_sw_breakpoint(CPUState *current_env,
162
                                  struct kvm_sw_breakpoint *bp);
163
int kvm_arch_remove_sw_breakpoint(CPUState *current_env,
164
                                  struct kvm_sw_breakpoint *bp);
165
int kvm_arch_insert_hw_breakpoint(target_ulong addr,
166
                                  target_ulong len, int type);
167
int kvm_arch_remove_hw_breakpoint(target_ulong addr,
168
                                  target_ulong len, int type);
169
void kvm_arch_remove_all_hw_breakpoints(void);
170

    
171
void kvm_arch_update_guest_debug(CPUState *env, struct kvm_guest_debug *dbg);
172

    
173
bool kvm_arch_stop_on_emulation_error(CPUState *env);
174

    
175
int kvm_check_extension(KVMState *s, unsigned int extension);
176

    
177
uint32_t kvm_arch_get_supported_cpuid(KVMState *env, uint32_t function,
178
                                      uint32_t index, int reg);
179
void kvm_cpu_synchronize_state(CPUState *env);
180
void kvm_cpu_synchronize_post_reset(CPUState *env);
181
void kvm_cpu_synchronize_post_init(CPUState *env);
182

    
183
/* generic hooks - to be moved/refactored once there are more users */
184

    
185
static inline void cpu_synchronize_state(CPUState *env)
186
{
187
    if (kvm_enabled()) {
188
        kvm_cpu_synchronize_state(env);
189
    }
190
}
191

    
192
static inline void cpu_synchronize_post_reset(CPUState *env)
193
{
194
    if (kvm_enabled()) {
195
        kvm_cpu_synchronize_post_reset(env);
196
    }
197
}
198

    
199
static inline void cpu_synchronize_post_init(CPUState *env)
200
{
201
    if (kvm_enabled()) {
202
        kvm_cpu_synchronize_post_init(env);
203
    }
204
}
205

    
206

    
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
211

    
212
#endif
213
int kvm_set_ioeventfd_mmio_long(int fd, uint32_t adr, uint32_t val, bool assign);
214

    
215
int kvm_set_ioeventfd_pio_word(int fd, uint16_t adr, uint16_t val, bool assign);
216
#endif