]>
Commit | Line | Data |
---|---|---|
98c8573e PB |
1 | /* |
2 | * QEMU KVM stub | |
3 | * | |
4 | * Copyright Red Hat, Inc. 2010 | |
5 | * | |
6 | * Author: Paolo Bonzini <[email protected]> | |
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" | |
98c8573e | 14 | #include "hw/hw.h" |
2b41f10e | 15 | #include "cpu.h" |
98c8573e PB |
16 | #include "gdbstub.h" |
17 | #include "kvm.h" | |
18 | ||
9349b4f9 | 19 | int kvm_init_vcpu(CPUArchState *env) |
98c8573e PB |
20 | { |
21 | return -ENOSYS; | |
22 | } | |
23 | ||
98c8573e PB |
24 | int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size) |
25 | { | |
26 | return -ENOSYS; | |
27 | } | |
28 | ||
29 | int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size) | |
30 | { | |
31 | return -ENOSYS; | |
32 | } | |
33 | ||
cad1e282 | 34 | int kvm_init(void) |
98c8573e PB |
35 | { |
36 | return -ENOSYS; | |
37 | } | |
38 | ||
39 | void kvm_flush_coalesced_mmio_buffer(void) | |
40 | { | |
41 | } | |
42 | ||
9349b4f9 | 43 | void kvm_cpu_synchronize_state(CPUArchState *env) |
98c8573e PB |
44 | { |
45 | } | |
46 | ||
9349b4f9 | 47 | void kvm_cpu_synchronize_post_reset(CPUArchState *env) |
98c8573e PB |
48 | { |
49 | } | |
50 | ||
9349b4f9 | 51 | void kvm_cpu_synchronize_post_init(CPUArchState *env) |
98c8573e PB |
52 | { |
53 | } | |
54 | ||
9349b4f9 | 55 | int kvm_cpu_exec(CPUArchState *env) |
98c8573e PB |
56 | { |
57 | abort (); | |
58 | } | |
59 | ||
60 | int kvm_has_sync_mmu(void) | |
61 | { | |
62 | return 0; | |
63 | } | |
64 | ||
d2f2b8a7 SH |
65 | int kvm_has_many_ioeventfds(void) |
66 | { | |
67 | return 0; | |
68 | } | |
69 | ||
9b5b76d4 JK |
70 | int kvm_allows_irq0_override(void) |
71 | { | |
72 | return 1; | |
73 | } | |
74 | ||
8a7c7393 JK |
75 | int kvm_has_pit_state2(void) |
76 | { | |
77 | return 0; | |
78 | } | |
79 | ||
98c8573e PB |
80 | void kvm_setup_guest_memory(void *start, size_t size) |
81 | { | |
82 | } | |
83 | ||
9349b4f9 | 84 | int kvm_update_guest_debug(CPUArchState *env, unsigned long reinject_trap) |
98c8573e | 85 | { |
4bef75b5 | 86 | return -ENOSYS; |
98c8573e PB |
87 | } |
88 | ||
9349b4f9 | 89 | int kvm_insert_breakpoint(CPUArchState *current_env, target_ulong addr, |
98c8573e PB |
90 | target_ulong len, int type) |
91 | { | |
92 | return -EINVAL; | |
93 | } | |
94 | ||
9349b4f9 | 95 | int kvm_remove_breakpoint(CPUArchState *current_env, target_ulong addr, |
98c8573e PB |
96 | target_ulong len, int type) |
97 | { | |
98 | return -EINVAL; | |
99 | } | |
100 | ||
9349b4f9 | 101 | void kvm_remove_all_breakpoints(CPUArchState *current_env) |
98c8573e PB |
102 | { |
103 | } | |
104 | ||
105 | #ifndef _WIN32 | |
9349b4f9 | 106 | int kvm_set_signal_mask(CPUArchState *env, const sigset_t *sigset) |
98c8573e PB |
107 | { |
108 | abort(); | |
109 | } | |
110 | #endif | |
111 | ||
112 | int kvm_set_ioeventfd_pio_word(int fd, uint16_t addr, uint16_t val, bool assign) | |
113 | { | |
114 | return -ENOSYS; | |
115 | } | |
1fd74012 | 116 | |
4b8f1c88 | 117 | int kvm_set_ioeventfd_mmio(int fd, uint32_t adr, uint32_t val, bool assign, uint32_t len) |
1fd74012 CM |
118 | { |
119 | return -ENOSYS; | |
120 | } | |
c0532a76 | 121 | |
9349b4f9 | 122 | int kvm_on_sigbus_vcpu(CPUArchState *env, int code, void *addr) |
a1b87fe0 JK |
123 | { |
124 | return 1; | |
125 | } | |
126 | ||
c0532a76 MT |
127 | int kvm_on_sigbus(int code, void *addr) |
128 | { | |
129 | return 1; | |
130 | } |