]> git.proxmox.com Git - mirror_qemu.git/blame - accel/stubs/kvm-stub.c
Include qemu-common.h exactly where needed
[mirror_qemu.git] / accel / stubs / kvm-stub.c
CommitLineData
98c8573e
PB
1/*
2 * QEMU KVM stub
3 *
4 * Copyright Red Hat, Inc. 2010
5 *
6 * Author: Paolo Bonzini <pbonzini@redhat.com>
7 *
8 * This work is licensed under the terms of the GNU GPL, version 2 or later.
9 * See the COPYING file in the top-level directory.
10 *
11 */
12
d38ea87a 13#include "qemu/osdep.h"
2b41f10e 14#include "cpu.h"
9c17d615 15#include "sysemu/kvm.h"
98c8573e 16
c4cfef5e
IM
17#ifndef CONFIG_USER_ONLY
18#include "hw/pci/msi.h"
19#endif
20
92b4e489 21KVMState *kvm_state;
bbf3b804 22bool kvm_kernel_irqchip;
7ae26bd4 23bool kvm_async_interrupts_allowed;
69e03ae6 24bool kvm_eventfds_allowed;
cc7e0ddf 25bool kvm_irqfds_allowed;
879904e8 26bool kvm_resamplefds_allowed;
614e41bc 27bool kvm_msi_via_irqfd_allowed;
f3e1bed8 28bool kvm_gsi_routing_allowed;
76fe21de 29bool kvm_gsi_direct_mapping;
13eed94e 30bool kvm_allowed;
df9c8b75 31bool kvm_readonly_mem_allowed;
35108223 32bool kvm_ioeventfd_any_length_allowed;
767a554a 33bool kvm_msi_use_devid;
92b4e489 34
4c055ab5
GZ
35int kvm_destroy_vcpu(CPUState *cpu)
36{
37 return -ENOSYS;
38}
39
504134d2 40int kvm_init_vcpu(CPUState *cpu)
98c8573e
PB
41{
42 return -ENOSYS;
43}
44
98c8573e
PB
45void kvm_flush_coalesced_mmio_buffer(void)
46{
47}
48
dd1750d7 49void kvm_cpu_synchronize_state(CPUState *cpu)
98c8573e
PB
50{
51}
52
3f24a58f 53void kvm_cpu_synchronize_post_reset(CPUState *cpu)
98c8573e
PB
54{
55}
56
3f24a58f 57void kvm_cpu_synchronize_post_init(CPUState *cpu)
98c8573e
PB
58{
59}
60
1458c363 61int kvm_cpu_exec(CPUState *cpu)
98c8573e 62{
1458c363 63 abort();
98c8573e
PB
64}
65
62dd4eda 66bool kvm_has_sync_mmu(void)
98c8573e 67{
62dd4eda 68 return false;
98c8573e
PB
69}
70
d2f2b8a7
SH
71int kvm_has_many_ioeventfds(void)
72{
73 return 0;
74}
75
38e478ec 76int kvm_update_guest_debug(CPUState *cpu, unsigned long reinject_trap)
98c8573e 77{
4bef75b5 78 return -ENOSYS;
98c8573e
PB
79}
80
62278814 81int kvm_insert_breakpoint(CPUState *cpu, target_ulong addr,
98c8573e
PB
82 target_ulong len, int type)
83{
84 return -EINVAL;
85}
86
62278814 87int kvm_remove_breakpoint(CPUState *cpu, target_ulong addr,
98c8573e
PB
88 target_ulong len, int type)
89{
90 return -EINVAL;
91}
92
1d5791f4 93void kvm_remove_all_breakpoints(CPUState *cpu)
98c8573e
PB
94{
95}
96
290adf38 97int kvm_on_sigbus_vcpu(CPUState *cpu, int code, void *addr)
a1b87fe0
JK
98{
99 return 1;
100}
101
c0532a76
MT
102int kvm_on_sigbus(int code, void *addr)
103{
104 return 1;
105}
92b4e489 106
b20e3780
BS
107bool kvm_memcrypt_enabled(void)
108{
109 return false;
110}
111
54e89539
BS
112int kvm_memcrypt_encrypt_data(uint8_t *ptr, uint64_t len)
113{
114 return 1;
115}
116
c4cfef5e 117#ifndef CONFIG_USER_ONLY
d1f6af6a 118int kvm_irqchip_add_msi_route(KVMState *s, int vector, PCIDevice *dev)
92b4e489
JK
119{
120 return -ENOSYS;
121}
1e2aa8be 122
7b774593
AG
123void kvm_init_irq_routing(KVMState *s)
124{
125}
126
1e2aa8be
JK
127void kvm_irqchip_release_virq(KVMState *s, int virq)
128{
129}
39853bbc 130
dc9f06ca
PF
131int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg,
132 PCIDevice *dev)
078bbb50
MT
133{
134 return -ENOSYS;
135}
136
3f1fea0f
PX
137void kvm_irqchip_commit_routes(KVMState *s)
138{
139}
140
d426d9fb
CH
141int kvm_irqchip_add_adapter_route(KVMState *s, AdapterInfo *adapter)
142{
143 return -ENOSYS;
144}
145
1c9b71a7
EA
146int kvm_irqchip_add_irqfd_notifier_gsi(KVMState *s, EventNotifier *n,
147 EventNotifier *rn, int virq)
39853bbc
JK
148{
149 return -ENOSYS;
150}
151
1c9b71a7
EA
152int kvm_irqchip_remove_irqfd_notifier_gsi(KVMState *s, EventNotifier *n,
153 int virq)
15b2bd18
PB
154{
155 return -ENOSYS;
156}
b8865591
IM
157
158bool kvm_has_free_slot(MachineState *ms)
159{
160 return false;
161}
18268b60
PB
162
163void kvm_init_cpu_signals(CPUState *cpu)
164{
165 abort();
166}
5d721b78
AG
167
168bool kvm_arm_supports_user_irq(void)
169{
170 return false;
171}
c4cfef5e 172#endif