kvm-stub.c 2.4 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 "hw/msi.h"
16
#include "cpu.h"
17 18 19
#include "gdbstub.h"
#include "kvm.h"

20
KVMState *kvm_state;
21
bool kvm_kernel_irqchip;
22
bool kvm_async_interrupts_allowed;
23
bool kvm_irqfds_allowed;
24
bool kvm_msi_via_irqfd_allowed;
25
bool kvm_gsi_routing_allowed;
26

27
int kvm_init_vcpu(CPUArchState *env)
28 29 30 31
{
    return -ENOSYS;
}

32
int kvm_init(void)
33 34 35 36 37 38 39 40
{
    return -ENOSYS;
}

void kvm_flush_coalesced_mmio_buffer(void)
{
}

41
void kvm_cpu_synchronize_state(CPUArchState *env)
42 43 44
{
}

45
void kvm_cpu_synchronize_post_reset(CPUArchState *env)
46 47 48
{
}

49
void kvm_cpu_synchronize_post_init(CPUArchState *env)
50 51 52
{
}

53
int kvm_cpu_exec(CPUArchState *env)
54 55 56 57 58 59 60 61 62
{
    abort ();
}

int kvm_has_sync_mmu(void)
{
    return 0;
}

63 64 65 66 67
int kvm_has_many_ioeventfds(void)
{
    return 0;
}

J
Jan Kiszka 已提交
68 69 70 71 72
int kvm_has_pit_state2(void)
{
    return 0;
}

73 74 75 76
void kvm_setup_guest_memory(void *start, size_t size)
{
}

77
int kvm_update_guest_debug(CPUArchState *env, unsigned long reinject_trap)
78
{
J
Jan Kiszka 已提交
79
    return -ENOSYS;
80 81
}

82
int kvm_insert_breakpoint(CPUArchState *current_env, target_ulong addr,
83 84 85 86 87
                          target_ulong len, int type)
{
    return -EINVAL;
}

88
int kvm_remove_breakpoint(CPUArchState *current_env, target_ulong addr,
89 90 91 92 93
                          target_ulong len, int type)
{
    return -EINVAL;
}

94
void kvm_remove_all_breakpoints(CPUArchState *current_env)
95 96 97 98
{
}

#ifndef _WIN32
99
int kvm_set_signal_mask(CPUArchState *env, const sigset_t *sigset)
100 101 102 103 104 105 106 107 108
{
    abort();
}
#endif

int kvm_set_ioeventfd_pio_word(int fd, uint16_t addr, uint16_t val, bool assign)
{
    return -ENOSYS;
}
109

110
int kvm_set_ioeventfd_mmio(int fd, uint32_t adr, uint32_t val, bool assign, uint32_t len)
111 112 113
{
    return -ENOSYS;
}
M
Marcelo Tosatti 已提交
114

115
int kvm_on_sigbus_vcpu(CPUArchState *env, int code, void *addr)
116 117 118 119
{
    return 1;
}

M
Marcelo Tosatti 已提交
120 121 122 123
int kvm_on_sigbus(int code, void *addr)
{
    return 1;
}
124 125 126 127 128

int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg)
{
    return -ENOSYS;
}
129 130 131 132

void kvm_irqchip_release_virq(KVMState *s, int virq)
{
}
133

J
Jan Kiszka 已提交
134
int kvm_irqchip_add_irqfd_notifier(KVMState *s, EventNotifier *n, int virq)
135 136 137 138
{
    return -ENOSYS;
}

J
Jan Kiszka 已提交
139
int kvm_irqchip_remove_irqfd_notifier(KVMState *s, EventNotifier *n, int virq)
140 141 142
{
    return -ENOSYS;
}