]> git.proxmox.com Git - qemu.git/blame - kvm-stub.c
configure: Remove unneeded redirections of stderr (pkg-config --exists)
[qemu.git] / 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
13#include "qemu-common.h"
98c8573e 14#include "hw/hw.h"
2b41f10e 15#include "cpu.h"
9c17d615 16#include "sysemu/kvm.h"
98c8573e 17
c4cfef5e
IM
18#ifndef CONFIG_USER_ONLY
19#include "hw/pci/msi.h"
20#endif
21
92b4e489 22KVMState *kvm_state;
bbf3b804 23bool kvm_kernel_irqchip;
7ae26bd4 24bool kvm_async_interrupts_allowed;
cc7e0ddf 25bool kvm_irqfds_allowed;
614e41bc 26bool kvm_msi_via_irqfd_allowed;
f3e1bed8 27bool kvm_gsi_routing_allowed;
13eed94e 28bool kvm_allowed;
df9c8b75 29bool kvm_readonly_mem_allowed;
92b4e489 30
504134d2 31int kvm_init_vcpu(CPUState *cpu)
98c8573e
PB
32{
33 return -ENOSYS;
34}
35
cad1e282 36int kvm_init(void)
98c8573e
PB
37{
38 return -ENOSYS;
39}
40
41void kvm_flush_coalesced_mmio_buffer(void)
42{
43}
44
dd1750d7 45void kvm_cpu_synchronize_state(CPUState *cpu)
98c8573e
PB
46{
47}
48
3f24a58f 49void kvm_cpu_synchronize_post_reset(CPUState *cpu)
98c8573e
PB
50{
51}
52
3f24a58f 53void kvm_cpu_synchronize_post_init(CPUState *cpu)
98c8573e
PB
54{
55}
56
1458c363 57int kvm_cpu_exec(CPUState *cpu)
98c8573e 58{
1458c363 59 abort();
98c8573e
PB
60}
61
62int kvm_has_sync_mmu(void)
63{
64 return 0;
65}
66
d2f2b8a7
SH
67int kvm_has_many_ioeventfds(void)
68{
69 return 0;
70}
71
8a7c7393
JK
72int kvm_has_pit_state2(void)
73{
74 return 0;
75}
76
98c8573e
PB
77void kvm_setup_guest_memory(void *start, size_t size)
78{
79}
80
38e478ec 81int kvm_update_guest_debug(CPUState *cpu, unsigned long reinject_trap)
98c8573e 82{
4bef75b5 83 return -ENOSYS;
98c8573e
PB
84}
85
62278814 86int kvm_insert_breakpoint(CPUState *cpu, target_ulong addr,
98c8573e
PB
87 target_ulong len, int type)
88{
89 return -EINVAL;
90}
91
62278814 92int kvm_remove_breakpoint(CPUState *cpu, target_ulong addr,
98c8573e
PB
93 target_ulong len, int type)
94{
95 return -EINVAL;
96}
97
1d5791f4 98void kvm_remove_all_breakpoints(CPUState *cpu)
98c8573e
PB
99{
100}
101
102#ifndef _WIN32
491d6e80 103int kvm_set_signal_mask(CPUState *cpu, const sigset_t *sigset)
98c8573e
PB
104{
105 abort();
106}
107#endif
108
290adf38 109int kvm_on_sigbus_vcpu(CPUState *cpu, int code, void *addr)
a1b87fe0
JK
110{
111 return 1;
112}
113
c0532a76
MT
114int kvm_on_sigbus(int code, void *addr)
115{
116 return 1;
117}
92b4e489 118
c4cfef5e 119#ifndef CONFIG_USER_ONLY
92b4e489
JK
120int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg)
121{
122 return -ENOSYS;
123}
1e2aa8be 124
7b774593
AG
125void kvm_init_irq_routing(KVMState *s)
126{
127}
128
1e2aa8be
JK
129void kvm_irqchip_release_virq(KVMState *s, int virq)
130{
131}
39853bbc 132
078bbb50
MT
133int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg)
134{
135 return -ENOSYS;
136}
137
821c808b
PB
138int kvm_irqchip_add_irqfd_notifier(KVMState *s, EventNotifier *n,
139 EventNotifier *rn, int virq)
39853bbc
JK
140{
141 return -ENOSYS;
142}
143
b131c74a 144int kvm_irqchip_remove_irqfd_notifier(KVMState *s, EventNotifier *n, int virq)
15b2bd18
PB
145{
146 return -ENOSYS;
147}
c4cfef5e 148#endif