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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-01-30 01:50:05 +08:00
|
|
|
#include "qemu/osdep.h"
|
2010-04-20 02:59:30 +08:00
|
|
|
#include "qemu-common.h"
|
2011-06-20 04:38:22 +08:00
|
|
|
#include "cpu.h"
|
2012-12-18 01:20:04 +08:00
|
|
|
#include "sysemu/kvm.h"
|
2010-04-20 02:59:30 +08:00
|
|
|
|
2013-04-23 16:29:35 +08:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
#include "hw/pci/msi.h"
|
|
|
|
#endif
|
|
|
|
|
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;
|
2014-05-27 20:03:35 +08:00
|
|
|
bool kvm_eventfds_allowed;
|
2012-07-26 22:35:14 +08:00
|
|
|
bool kvm_irqfds_allowed;
|
2015-07-07 02:15:14 +08:00
|
|
|
bool kvm_resamplefds_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;
|
2013-09-03 16:08:25 +08:00
|
|
|
bool kvm_gsi_direct_mapping;
|
2013-04-23 16:29:36 +08:00
|
|
|
bool kvm_allowed;
|
2013-05-29 16:27:25 +08:00
|
|
|
bool kvm_readonly_mem_allowed;
|
2015-11-06 16:02:46 +08:00
|
|
|
bool kvm_ioeventfd_any_length_allowed;
|
2012-05-17 21:32:33 +08:00
|
|
|
|
2016-05-12 11:48:13 +08:00
|
|
|
int kvm_destroy_vcpu(CPUState *cpu)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
2012-12-17 13:38:45 +08:00
|
|
|
int kvm_init_vcpu(CPUState *cpu)
|
2010-04-20 02:59:30 +08:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void kvm_flush_coalesced_mmio_buffer(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-01 19:45:44 +08:00
|
|
|
void kvm_cpu_synchronize_state(CPUState *cpu)
|
2010-04-20 02:59:30 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-04-11 22:51:41 +08:00
|
|
|
void kvm_cpu_synchronize_post_reset(CPUState *cpu)
|
2010-04-20 02:59:30 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-04-11 22:51:41 +08:00
|
|
|
void kvm_cpu_synchronize_post_init(CPUState *cpu)
|
2010-04-20 02:59:30 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-27 05:46:55 +08:00
|
|
|
int kvm_cpu_exec(CPUState *cpu)
|
2010-04-20 02:59:30 +08:00
|
|
|
{
|
2013-05-27 05:46:55 +08:00
|
|
|
abort();
|
2010-04-20 02:59:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int kvm_has_sync_mmu(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-10 19:50:05 +08:00
|
|
|
int kvm_has_many_ioeventfds(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-26 02:50:21 +08:00
|
|
|
int kvm_update_guest_debug(CPUState *cpu, 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
|
|
|
}
|
|
|
|
|
2013-06-27 23:12:06 +08:00
|
|
|
int kvm_insert_breakpoint(CPUState *cpu, target_ulong addr,
|
2010-04-20 02:59:30 +08:00
|
|
|
target_ulong len, int type)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2013-06-27 23:12:06 +08:00
|
|
|
int kvm_remove_breakpoint(CPUState *cpu, target_ulong addr,
|
2010-04-20 02:59:30 +08:00
|
|
|
target_ulong len, int type)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2013-05-27 20:40:48 +08:00
|
|
|
void kvm_remove_all_breakpoints(CPUState *cpu)
|
2010-04-20 02:59:30 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
2013-05-27 05:38:10 +08:00
|
|
|
int kvm_set_signal_mask(CPUState *cpu, const sigset_t *sigset)
|
2010-04-20 02:59:30 +08:00
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-01-17 16:30:27 +08:00
|
|
|
int kvm_on_sigbus_vcpu(CPUState *cpu, 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
|
|
|
|
2013-04-23 16:29:35 +08:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2016-07-14 13:56:30 +08:00
|
|
|
int kvm_irqchip_add_msi_route(KVMState *s, int vector, PCIDevice *dev)
|
2012-05-17 21:32:33 +08:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2012-05-17 21:32:34 +08:00
|
|
|
|
2013-04-16 21:58:13 +08:00
|
|
|
void kvm_init_irq_routing(KVMState *s)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2015-10-15 21:44:52 +08:00
|
|
|
int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg,
|
|
|
|
PCIDevice *dev)
|
2012-12-21 06:47:46 +08:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
2016-07-14 13:56:33 +08:00
|
|
|
void kvm_irqchip_commit_routes(KVMState *s)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-07-15 23:45:03 +08:00
|
|
|
int kvm_irqchip_add_adapter_route(KVMState *s, AdapterInfo *adapter)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
2015-07-07 02:15:13 +08:00
|
|
|
int kvm_irqchip_add_irqfd_notifier_gsi(KVMState *s, EventNotifier *n,
|
|
|
|
EventNotifier *rn, int virq)
|
2012-05-17 21:32:36 +08:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
2015-07-07 02:15:13 +08:00
|
|
|
int kvm_irqchip_remove_irqfd_notifier_gsi(KVMState *s, EventNotifier *n,
|
|
|
|
int virq)
|
2012-07-05 23:16:30 +08:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2014-11-01 00:38:32 +08:00
|
|
|
|
|
|
|
bool kvm_has_free_slot(MachineState *ms)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-23 16:29:35 +08:00
|
|
|
#endif
|