]>
Commit | Line | Data |
---|---|---|
05330448 AL |
1 | /* |
2 | * QEMU KVM support | |
3 | * | |
4 | * Copyright IBM, Corp. 2008 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
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" | |
18 | ||
19 | #ifdef CONFIG_KVM | |
20 | extern int kvm_allowed; | |
21 | ||
22 | #define kvm_enabled() (kvm_allowed) | |
23 | #else | |
24 | #define kvm_enabled() (0) | |
25 | #endif | |
26 | ||
27 | struct kvm_run; | |
28 | ||
29 | /* external API */ | |
30 | ||
31 | int kvm_init(int smp_cpus); | |
32 | ||
33 | int kvm_init_vcpu(CPUState *env); | |
34 | ||
35 | int kvm_cpu_exec(CPUState *env); | |
36 | ||
37 | void kvm_set_phys_mem(target_phys_addr_t start_addr, | |
38 | ram_addr_t size, | |
39 | ram_addr_t phys_offset); | |
40 | ||
41 | /* internal API */ | |
42 | ||
43 | struct KVMState; | |
44 | typedef struct KVMState KVMState; | |
45 | ||
46 | int kvm_ioctl(KVMState *s, int type, void *data); | |
47 | ||
48 | int kvm_vm_ioctl(KVMState *s, int type, void *data); | |
49 | ||
50 | int kvm_vcpu_ioctl(CPUState *env, int type, void *data); | |
51 | ||
52 | /* Arch specific hooks */ | |
53 | ||
54 | int kvm_arch_post_run(CPUState *env, struct kvm_run *run); | |
55 | ||
56 | int kvm_arch_handle_exit(CPUState *env, struct kvm_run *run); | |
57 | ||
58 | int kvm_arch_pre_run(CPUState *env, struct kvm_run *run); | |
59 | ||
60 | int kvm_arch_get_registers(CPUState *env); | |
61 | ||
62 | int kvm_arch_put_registers(CPUState *env); | |
63 | ||
64 | int kvm_arch_init(KVMState *s, int smp_cpus); | |
65 | ||
66 | int kvm_arch_init_vcpu(CPUState *env); | |
67 | ||
68 | #endif |