]>
Commit | Line | Data |
---|---|---|
d76d1650 AJ |
1 | /* |
2 | * Copyright 2008 IBM Corporation. | |
3 | * Authors: Hollis Blanchard <[email protected]> | |
4 | * | |
5 | * This work is licensed under the GNU GPL license version 2 or later. | |
6 | * | |
7 | */ | |
8 | ||
9 | #ifndef __KVM_PPC_H__ | |
10 | #define __KVM_PPC_H__ | |
11 | ||
2985b86b AF |
12 | #define TYPE_HOST_POWERPC_CPU "host-" TYPE_POWERPC_CPU |
13 | ||
d76d1650 | 14 | void kvmppc_init(void); |
d76d1650 | 15 | |
921e28db AG |
16 | #ifdef CONFIG_KVM |
17 | ||
dc333cd6 | 18 | uint32_t kvmppc_get_tbfreq(void); |
eadaada1 | 19 | uint64_t kvmppc_get_clockfreq(void); |
6659394f DG |
20 | uint32_t kvmppc_get_vmx(void); |
21 | uint32_t kvmppc_get_dfp(void); | |
ef951443 ND |
22 | bool kvmppc_get_host_model(char **buf); |
23 | bool kvmppc_get_host_serial(char **buf); | |
1a61a9ae | 24 | int kvmppc_get_hasidle(CPUPPCState *env); |
1328c2bf | 25 | int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len); |
1bc22652 AF |
26 | int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level); |
27 | void kvmppc_set_papr(PowerPCCPU *cpu); | |
6db5bb0f | 28 | int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version); |
5b95b8b9 | 29 | void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy); |
e97c3636 | 30 | int kvmppc_smt_threads(void); |
31f2cb8f BB |
31 | int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits); |
32 | int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits); | |
33 | int kvmppc_set_tcr(PowerPCCPU *cpu); | |
34 | int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu); | |
98efaf75 | 35 | #ifndef CONFIG_USER_ONLY |
658fa66b | 36 | off_t kvmppc_alloc_rma(void **rma); |
da95324e | 37 | bool kvmppc_spapr_use_multitce(void); |
9bb62a07 AK |
38 | void *kvmppc_create_spapr_tce(uint32_t liobn, uint32_t window_size, int *pfd, |
39 | bool vfio_accel); | |
0f5cb298 | 40 | int kvmppc_remove_spapr_tce(void *table, int pfd, uint32_t window_size); |
7f763a5d DG |
41 | int kvmppc_reset_htab(int shift_hint); |
42 | uint64_t kvmppc_rma_size(uint64_t current_size, unsigned int hash_shift); | |
98efaf75 | 43 | #endif /* !CONFIG_USER_ONLY */ |
3b961124 | 44 | bool kvmppc_has_cap_epr(void); |
feaa64c4 | 45 | int kvmppc_define_rtas_kernel_token(uint32_t token, const char *function); |
7c43bca0 | 46 | bool kvmppc_has_cap_htab_fd(void); |
e68cb8b4 AK |
47 | int kvmppc_get_htab_fd(bool write); |
48 | int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize, int64_t max_ns); | |
49 | int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index, | |
50 | uint16_t n_valid, uint16_t n_invalid); | |
7c43bca0 AK |
51 | uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu, target_ulong pte_index); |
52 | void kvmppc_hash64_free_pteg(uint64_t token); | |
fc87e185 | 53 | |
c1385933 AK |
54 | void kvmppc_hash64_write_pte(CPUPPCState *env, target_ulong pte_index, |
55 | target_ulong pte0, target_ulong pte1); | |
87a91de6 | 56 | bool kvmppc_has_cap_fixup_hcalls(void); |
c1385933 | 57 | |
921e28db AG |
58 | #else |
59 | ||
60 | static inline uint32_t kvmppc_get_tbfreq(void) | |
61 | { | |
62 | return 0; | |
63 | } | |
64 | ||
ef951443 ND |
65 | static inline bool kvmppc_get_host_model(char **buf) |
66 | { | |
67 | return false; | |
68 | } | |
69 | ||
70 | static inline bool kvmppc_get_host_serial(char **buf) | |
71 | { | |
72 | return false; | |
73 | } | |
74 | ||
921e28db AG |
75 | static inline uint64_t kvmppc_get_clockfreq(void) |
76 | { | |
77 | return 0; | |
78 | } | |
79 | ||
6659394f DG |
80 | static inline uint32_t kvmppc_get_vmx(void) |
81 | { | |
82 | return 0; | |
83 | } | |
84 | ||
85 | static inline uint32_t kvmppc_get_dfp(void) | |
86 | { | |
87 | return 0; | |
88 | } | |
89 | ||
1a61a9ae SY |
90 | static inline int kvmppc_get_hasidle(CPUPPCState *env) |
91 | { | |
92 | return 0; | |
93 | } | |
94 | ||
1328c2bf | 95 | static inline int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len) |
921e28db AG |
96 | { |
97 | return -1; | |
98 | } | |
99 | ||
4656e1f0 BH |
100 | static inline int kvmppc_read_segment_page_sizes(uint32_t *prop, int maxcells) |
101 | { | |
102 | return -1; | |
103 | } | |
104 | ||
1bc22652 | 105 | static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level) |
921e28db AG |
106 | { |
107 | return -1; | |
108 | } | |
109 | ||
1bc22652 | 110 | static inline void kvmppc_set_papr(PowerPCCPU *cpu) |
f61b4bed AG |
111 | { |
112 | } | |
113 | ||
6db5bb0f AK |
114 | static inline int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version) |
115 | { | |
116 | return 0; | |
117 | } | |
118 | ||
5b95b8b9 AG |
119 | static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy) |
120 | { | |
121 | } | |
122 | ||
e97c3636 DG |
123 | static inline int kvmppc_smt_threads(void) |
124 | { | |
125 | return 1; | |
126 | } | |
127 | ||
31f2cb8f BB |
128 | static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits) |
129 | { | |
130 | return 0; | |
131 | } | |
132 | ||
133 | static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits) | |
134 | { | |
135 | return 0; | |
136 | } | |
137 | ||
138 | static inline int kvmppc_set_tcr(PowerPCCPU *cpu) | |
139 | { | |
140 | return 0; | |
141 | } | |
142 | ||
143 | static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu) | |
144 | { | |
145 | return -1; | |
146 | } | |
147 | ||
98efaf75 | 148 | #ifndef CONFIG_USER_ONLY |
658fa66b | 149 | static inline off_t kvmppc_alloc_rma(void **rma) |
354ac20a DG |
150 | { |
151 | return 0; | |
152 | } | |
153 | ||
da95324e AK |
154 | static inline bool kvmppc_spapr_use_multitce(void) |
155 | { | |
156 | return false; | |
157 | } | |
158 | ||
0f5cb298 | 159 | static inline void *kvmppc_create_spapr_tce(uint32_t liobn, |
9bb62a07 AK |
160 | uint32_t window_size, int *fd, |
161 | bool vfio_accel) | |
0f5cb298 DG |
162 | { |
163 | return NULL; | |
164 | } | |
165 | ||
166 | static inline int kvmppc_remove_spapr_tce(void *table, int pfd, | |
523e7b8a | 167 | uint32_t nb_table) |
0f5cb298 DG |
168 | { |
169 | return -1; | |
170 | } | |
7f763a5d DG |
171 | |
172 | static inline int kvmppc_reset_htab(int shift_hint) | |
173 | { | |
174 | return -1; | |
175 | } | |
176 | ||
177 | static inline uint64_t kvmppc_rma_size(uint64_t current_size, | |
178 | unsigned int hash_shift) | |
179 | { | |
180 | return ram_size; | |
181 | } | |
182 | ||
183 | static inline int kvmppc_update_sdr1(CPUPPCState *env) | |
184 | { | |
185 | return 0; | |
186 | } | |
187 | ||
98efaf75 | 188 | #endif /* !CONFIG_USER_ONLY */ |
0f5cb298 | 189 | |
3b961124 SY |
190 | static inline bool kvmppc_has_cap_epr(void) |
191 | { | |
192 | return false; | |
193 | } | |
e68cb8b4 | 194 | |
feaa64c4 DG |
195 | static inline int kvmppc_define_rtas_kernel_token(uint32_t token, |
196 | const char *function) | |
197 | { | |
198 | return -1; | |
199 | } | |
200 | ||
7c43bca0 AK |
201 | static inline bool kvmppc_has_cap_htab_fd(void) |
202 | { | |
203 | return false; | |
204 | } | |
205 | ||
e68cb8b4 AK |
206 | static inline int kvmppc_get_htab_fd(bool write) |
207 | { | |
208 | return -1; | |
209 | } | |
210 | ||
211 | static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize, | |
212 | int64_t max_ns) | |
213 | { | |
214 | abort(); | |
215 | } | |
216 | ||
217 | static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index, | |
218 | uint16_t n_valid, uint16_t n_invalid) | |
219 | { | |
220 | abort(); | |
221 | } | |
222 | ||
7c43bca0 AK |
223 | static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu, |
224 | target_ulong pte_index) | |
225 | { | |
226 | abort(); | |
227 | } | |
228 | ||
229 | static inline void kvmppc_hash64_free_pteg(uint64_t token) | |
230 | { | |
231 | abort(); | |
232 | } | |
233 | ||
c1385933 AK |
234 | static inline void kvmppc_hash64_write_pte(CPUPPCState *env, |
235 | target_ulong pte_index, | |
236 | target_ulong pte0, target_ulong pte1) | |
237 | { | |
238 | abort(); | |
239 | } | |
240 | ||
87a91de6 AG |
241 | static inline bool kvmppc_has_cap_fixup_hcalls(void) |
242 | { | |
243 | abort(); | |
244 | } | |
245 | ||
921e28db AG |
246 | #endif |
247 | ||
b45d63b6 BH |
248 | #ifndef CONFIG_KVM |
249 | #define kvmppc_eieio() do { } while (0) | |
250 | #else | |
251 | #define kvmppc_eieio() \ | |
252 | do { \ | |
253 | if (kvm_enabled()) { \ | |
254 | asm volatile("eieio" : : : "memory"); \ | |
255 | } \ | |
256 | } while (0) | |
257 | #endif | |
258 | ||
fc87e185 AG |
259 | #ifndef KVM_INTERRUPT_SET |
260 | #define KVM_INTERRUPT_SET -1 | |
261 | #endif | |
262 | ||
263 | #ifndef KVM_INTERRUPT_UNSET | |
264 | #define KVM_INTERRUPT_UNSET -2 | |
265 | #endif | |
266 | ||
267 | #ifndef KVM_INTERRUPT_SET_LEVEL | |
268 | #define KVM_INTERRUPT_SET_LEVEL -3 | |
269 | #endif | |
dc333cd6 | 270 | |
d76d1650 | 271 | #endif /* __KVM_PPC_H__ */ |