2010-04-19 18:59:30 +00:00
|
|
|
/*
|
|
|
|
* 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"
|
2012-05-17 13:32:33 +00:00
|
|
|
#include "hw/msi.h"
|
2011-06-19 20:38:22 +00:00
|
|
|
#include "cpu.h"
|
2010-04-19 18:59:30 +00:00
|
|
|
#include "gdbstub.h"
|
|
|
|
#include "kvm.h"
|
|
|
|
|
2012-05-17 13:32:33 +00:00
|
|
|
KVMState *kvm_state;
|
2012-05-17 13:32:37 +00:00
|
|
|
bool kvm_kernel_irqchip;
|
2012-07-26 14:35:11 +00:00
|
|
|
bool kvm_async_interrupts_allowed;
|
2012-07-26 14:35:14 +00:00
|
|
|
bool kvm_irqfds_allowed;
|
2012-07-26 14:35:15 +00:00
|
|
|
bool kvm_msi_via_irqfd_allowed;
|
2012-07-26 14:35:16 +00:00
|
|
|
bool kvm_gsi_routing_allowed;
|
2012-05-17 13:32:33 +00:00
|
|
|
|
2012-03-14 00:38:32 +00:00
|
|
|
int kvm_init_vcpu(CPUArchState *env)
|
2010-04-19 18:59:30 +00:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
2011-01-21 20:48:16 +00:00
|
|
|
int kvm_init(void)
|
2010-04-19 18:59:30 +00:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void kvm_flush_coalesced_mmio_buffer(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:32 +00:00
|
|
|
void kvm_cpu_synchronize_state(CPUArchState *env)
|
2010-04-19 18:59:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:32 +00:00
|
|
|
void kvm_cpu_synchronize_post_reset(CPUArchState *env)
|
2010-04-19 18:59:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:32 +00:00
|
|
|
void kvm_cpu_synchronize_post_init(CPUArchState *env)
|
2010-04-19 18:59:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:32 +00:00
|
|
|
int kvm_cpu_exec(CPUArchState *env)
|
2010-04-19 18:59:30 +00:00
|
|
|
{
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
int kvm_has_sync_mmu(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-10 11:50:05 +00:00
|
|
|
int kvm_has_many_ioeventfds(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-02 19:28:48 +00:00
|
|
|
int kvm_has_pit_state2(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-04-19 18:59:30 +00:00
|
|
|
void kvm_setup_guest_memory(void *start, size_t size)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:32 +00:00
|
|
|
int kvm_update_guest_debug(CPUArchState *env, unsigned long reinject_trap)
|
2010-04-19 18:59:30 +00:00
|
|
|
{
|
2011-06-08 14:11:04 +00:00
|
|
|
return -ENOSYS;
|
2010-04-19 18:59:30 +00:00
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:32 +00:00
|
|
|
int kvm_insert_breakpoint(CPUArchState *current_env, target_ulong addr,
|
2010-04-19 18:59:30 +00:00
|
|
|
target_ulong len, int type)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:32 +00:00
|
|
|
int kvm_remove_breakpoint(CPUArchState *current_env, target_ulong addr,
|
2010-04-19 18:59:30 +00:00
|
|
|
target_ulong len, int type)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:32 +00:00
|
|
|
void kvm_remove_all_breakpoints(CPUArchState *current_env)
|
2010-04-19 18:59:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
2012-03-14 00:38:32 +00:00
|
|
|
int kvm_set_signal_mask(CPUArchState *env, const sigset_t *sigset)
|
2010-04-19 18:59:30 +00:00
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int kvm_set_ioeventfd_pio_word(int fd, uint16_t addr, uint16_t val, bool assign)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2010-08-14 23:47:30 +00:00
|
|
|
|
2012-03-20 12:31:38 +00:00
|
|
|
int kvm_set_ioeventfd_mmio(int fd, uint32_t adr, uint32_t val, bool assign, uint32_t len)
|
2010-08-14 23:47:30 +00:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2010-10-11 18:31:21 +00:00
|
|
|
|
2012-03-14 00:38:32 +00:00
|
|
|
int kvm_on_sigbus_vcpu(CPUArchState *env, int code, void *addr)
|
2011-02-01 21:15:51 +00:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-10-11 18:31:21 +00:00
|
|
|
int kvm_on_sigbus(int code, void *addr)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2012-05-17 13:32:33 +00:00
|
|
|
|
|
|
|
int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2012-05-17 13:32:34 +00:00
|
|
|
|
|
|
|
void kvm_irqchip_release_virq(KVMState *s, int virq)
|
|
|
|
{
|
|
|
|
}
|
2012-05-17 13:32:36 +00:00
|
|
|
|
2012-08-20 08:55:56 +00:00
|
|
|
int kvm_irqchip_add_irqfd_notifier(KVMState *s, EventNotifier *n, int virq)
|
2012-05-17 13:32:36 +00:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
2012-08-20 08:55:56 +00:00
|
|
|
int kvm_irqchip_remove_irqfd_notifier(KVMState *s, EventNotifier *n, int virq)
|
2012-07-05 15:16:30 +00:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|