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