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