kvm-stub.c 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * QEMU KVM stub
 *
 * Copyright Red Hat, Inc. 2010
 *
 * Author: Paolo Bonzini     <pbonzini@redhat.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 *
 */

#include "qemu-common.h"
#include "hw/hw.h"
15
#include "cpu.h"
16
#include "sysemu/kvm.h"
17

18 19 20 21
#ifndef CONFIG_USER_ONLY
#include "hw/pci/msi.h"
#endif

22
KVMState *kvm_state;
23
bool kvm_kernel_irqchip;
24
bool kvm_async_interrupts_allowed;
25
bool kvm_eventfds_allowed;
26
bool kvm_irqfds_allowed;
27
bool kvm_resamplefds_allowed;
28
bool kvm_msi_via_irqfd_allowed;
29
bool kvm_gsi_routing_allowed;
30
bool kvm_gsi_direct_mapping;
31
bool kvm_allowed;
32
bool kvm_readonly_mem_allowed;
33
bool kvm_ioeventfd_any_length_allowed;
34

35
int kvm_init_vcpu(CPUState *cpu)
36 37 38 39 40 41 42 43
{
    return -ENOSYS;
}

void kvm_flush_coalesced_mmio_buffer(void)
{
}

44
void kvm_cpu_synchronize_state(CPUState *cpu)
45 46 47
{
}

48
void kvm_cpu_synchronize_post_reset(CPUState *cpu)
49 50 51
{
}

52
void kvm_cpu_synchronize_post_init(CPUState *cpu)
53 54 55
{
}

56
int kvm_cpu_exec(CPUState *cpu)
57
{
58
    abort();
59 60 61 62 63 64 65
}

int kvm_has_sync_mmu(void)
{
    return 0;
}

66 67 68 69 70
int kvm_has_many_ioeventfds(void)
{
    return 0;
}

71 72 73 74
void kvm_setup_guest_memory(void *start, size_t size)
{
}

75
int kvm_update_guest_debug(CPUState *cpu, unsigned long reinject_trap)
76
{
J
Jan Kiszka 已提交
77
    return -ENOSYS;
78 79
}

80
int kvm_insert_breakpoint(CPUState *cpu, target_ulong addr,
81 82 83 84 85
                          target_ulong len, int type)
{
    return -EINVAL;
}

86
int kvm_remove_breakpoint(CPUState *cpu, target_ulong addr,
87 88 89 90 91
                          target_ulong len, int type)
{
    return -EINVAL;
}

92
void kvm_remove_all_breakpoints(CPUState *cpu)
93 94 95 96
{
}

#ifndef _WIN32
97
int kvm_set_signal_mask(CPUState *cpu, const sigset_t *sigset)
98 99 100 101 102
{
    abort();
}
#endif

103
int kvm_on_sigbus_vcpu(CPUState *cpu, int code, void *addr)
104 105 106 107
{
    return 1;
}

M
Marcelo Tosatti 已提交
108 109 110 111
int kvm_on_sigbus(int code, void *addr)
{
    return 1;
}
112

113
#ifndef CONFIG_USER_ONLY
114
int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg, PCIDevice *dev)
115 116 117
{
    return -ENOSYS;
}
118

119 120 121 122
void kvm_init_irq_routing(KVMState *s)
{
}

123 124 125
void kvm_irqchip_release_virq(KVMState *s, int virq)
{
}
126

127 128
int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg,
                                 PCIDevice *dev)
129 130 131 132
{
    return -ENOSYS;
}

133 134 135 136 137
int kvm_irqchip_add_adapter_route(KVMState *s, AdapterInfo *adapter)
{
    return -ENOSYS;
}

138 139
int kvm_irqchip_add_irqfd_notifier_gsi(KVMState *s, EventNotifier *n,
                                       EventNotifier *rn, int virq)
140 141 142 143
{
    return -ENOSYS;
}

144 145
int kvm_irqchip_remove_irqfd_notifier_gsi(KVMState *s, EventNotifier *n,
                                          int virq)
146 147 148
{
    return -ENOSYS;
}
149 150 151 152 153

bool kvm_has_free_slot(MachineState *ms)
{
    return false;
}
154
#endif