blob: f63a0d2c81ba0f68065bc4bbdc508378d29e44b4 [file] [log] [blame]
Paolo Bonzini98c85732010-04-19 18:59:30 +00001/*
2 * QEMU KVM stub
3 *
4 * Copyright Red Hat, Inc. 2010
5 *
6 * Author: Paolo Bonzini <pbonzini@redhat.com>
7 *
8 * This work is licensed under the terms of the GNU GPL, version 2 or later.
9 * See the COPYING file in the top-level directory.
10 *
11 */
12
13#include "qemu-common.h"
Paolo Bonzini98c85732010-04-19 18:59:30 +000014#include "hw/hw.h"
Blue Swirl2b41f102011-06-19 20:38:22 +000015#include "cpu.h"
Paolo Bonzini98c85732010-04-19 18:59:30 +000016#include "gdbstub.h"
17#include "kvm.h"
18
Paolo Bonzini98c85732010-04-19 18:59:30 +000019int kvm_pit_in_kernel(void)
20{
21 return 0;
22}
23
24
25int kvm_init_vcpu(CPUState *env)
26{
27 return -ENOSYS;
28}
29
Paolo Bonzini98c85732010-04-19 18:59:30 +000030int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size)
31{
32 return -ENOSYS;
33}
34
35int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size)
36{
37 return -ENOSYS;
38}
39
Jan Kiszkacad1e282011-01-21 21:48:16 +010040int kvm_init(void)
Paolo Bonzini98c85732010-04-19 18:59:30 +000041{
42 return -ENOSYS;
43}
44
45void kvm_flush_coalesced_mmio_buffer(void)
46{
47}
48
49void kvm_cpu_synchronize_state(CPUState *env)
50{
51}
52
53void kvm_cpu_synchronize_post_reset(CPUState *env)
54{
55}
56
57void kvm_cpu_synchronize_post_init(CPUState *env)
58{
59}
60
61int kvm_cpu_exec(CPUState *env)
62{
63 abort ();
64}
65
66int kvm_has_sync_mmu(void)
67{
68 return 0;
69}
70
Stefan Hajnoczid2f2b8a2011-01-10 13:50:05 +020071int kvm_has_many_ioeventfds(void)
72{
73 return 0;
74}
75
Jan Kiszka9b5b76d2011-10-15 14:08:26 +020076int kvm_allows_irq0_override(void)
77{
78 return 1;
79}
80
Paolo Bonzini98c85732010-04-19 18:59:30 +000081void kvm_setup_guest_memory(void *start, size_t size)
82{
83}
84
85int kvm_update_guest_debug(CPUState *env, unsigned long reinject_trap)
86{
Jan Kiszka4bef75b2011-06-08 16:11:04 +020087 return -ENOSYS;
Paolo Bonzini98c85732010-04-19 18:59:30 +000088}
89
90int kvm_insert_breakpoint(CPUState *current_env, target_ulong addr,
91 target_ulong len, int type)
92{
93 return -EINVAL;
94}
95
96int kvm_remove_breakpoint(CPUState *current_env, target_ulong addr,
97 target_ulong len, int type)
98{
99 return -EINVAL;
100}
101
102void kvm_remove_all_breakpoints(CPUState *current_env)
103{
104}
105
106#ifndef _WIN32
107int kvm_set_signal_mask(CPUState *env, const sigset_t *sigset)
108{
109 abort();
110}
111#endif
112
113int kvm_set_ioeventfd_pio_word(int fd, uint16_t addr, uint16_t val, bool assign)
114{
115 return -ENOSYS;
116}
Cam Macdonell1fd74012010-08-14 17:47:30 -0600117
118int kvm_set_ioeventfd_mmio_long(int fd, uint32_t adr, uint32_t val, bool assign)
119{
120 return -ENOSYS;
121}
Marcelo Tosattic0532a72010-10-11 15:31:21 -0300122
Jan Kiszkaa1b87fe2011-02-01 22:15:51 +0100123int kvm_on_sigbus_vcpu(CPUState *env, int code, void *addr)
124{
125 return 1;
126}
127
Marcelo Tosattic0532a72010-10-11 15:31:21 -0300128int kvm_on_sigbus(int code, void *addr)
129{
130 return 1;
131}