xref: /qemu/target/ppc/kvm_ppc.h (revision 019fbfa4bcd2d3a835c241295e22ab2b5b56129b)
1 /*
2  * Copyright 2008 IBM Corporation.
3  * Authors: Hollis Blanchard <hollisb@us.ibm.com>
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 
12 #include "system/kvm.h"
13 #include "exec/hwaddr.h"
14 #include "cpu.h"
15 
16 #ifdef CONFIG_USER_ONLY
17 #error Cannot include kvm_ppc.h from user emulation
18 #endif
19 
20 #ifdef CONFIG_KVM
21 
22 uint32_t kvmppc_get_tbfreq(void);
23 uint64_t kvmppc_get_clockfreq(void);
24 bool kvmppc_get_host_model(char **buf);
25 bool kvmppc_get_host_serial(char **buf);
26 int kvmppc_get_hasidle(CPUPPCState *env);
27 int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len);
28 int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level);
29 void kvmppc_enable_logical_ci_hcalls(void);
30 void kvmppc_enable_set_mode_hcall(void);
31 void kvmppc_enable_clear_ref_mod_hcalls(void);
32 void kvmppc_enable_h_page_init(void);
33 void kvmppc_enable_h_rpt_invalidate(void);
34 void kvmppc_set_papr(PowerPCCPU *cpu);
35 int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t compat_pvr);
36 void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy);
37 bool kvmppc_get_fwnmi(void);
38 int kvmppc_set_fwnmi(PowerPCCPU *cpu);
39 int kvmppc_smt_threads(void);
40 void kvmppc_error_append_smt_possible_hint(Error *const *errp);
41 int kvmppc_set_smt_threads(int smt);
42 int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits);
43 int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits);
44 int kvmppc_set_tcr(PowerPCCPU *cpu);
45 int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu);
46 target_ulong kvmppc_configure_v3_mmu(PowerPCCPU *cpu,
47                                      bool radix, bool gtse,
48                                      uint64_t proc_tbl);
49 bool kvmppc_spapr_use_multitce(void);
50 int kvmppc_spapr_enable_inkernel_multitce(void);
51 void *kvmppc_create_spapr_tce(uint32_t liobn, uint32_t page_shift,
52                               uint64_t bus_offset, uint32_t nb_table,
53                               int *pfd, bool need_vfio);
54 int kvmppc_remove_spapr_tce(void *table, int pfd, uint32_t window_size);
55 int kvmppc_reset_htab(int shift_hint);
56 uint64_t kvmppc_vrma_limit(unsigned int hash_shift);
57 bool kvmppc_has_cap_spapr_vfio(void);
58 bool kvmppc_has_cap_epr(void);
59 int kvmppc_define_rtas_kernel_token(uint32_t token, const char *function);
60 int kvmppc_get_htab_fd(bool write, uint64_t index, Error **errp);
61 int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize, int64_t max_ns);
62 int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
63                            uint16_t n_valid, uint16_t n_invalid, Error **errp);
64 void kvmppc_read_hptes(ppc_hash_pte64_t *hptes, hwaddr ptex, int n);
65 void kvmppc_write_hpte(hwaddr ptex, uint64_t pte0, uint64_t pte1);
66 bool kvmppc_has_cap_fixup_hcalls(void);
67 bool kvmppc_has_cap_htm(void);
68 bool kvmppc_has_cap_mmu_radix(void);
69 bool kvmppc_has_cap_mmu_hash_v3(void);
70 bool kvmppc_has_cap_xive(void);
71 bool kvmppc_has_cap_dawr1(void);
72 int kvmppc_set_cap_dawr1(int enable);
73 int kvmppc_get_cap_safe_cache(void);
74 int kvmppc_get_cap_safe_bounds_check(void);
75 int kvmppc_get_cap_safe_indirect_branch(void);
76 int kvmppc_get_cap_count_cache_flush_assist(void);
77 bool kvmppc_has_cap_nested_kvm_hv(void);
78 int kvmppc_set_cap_nested_kvm_hv(int enable);
79 int kvmppc_get_cap_large_decr(void);
80 int kvmppc_enable_cap_large_decr(PowerPCCPU *cpu, int enable);
81 int kvmppc_has_cap_rpt_invalidate(void);
82 bool kvmppc_supports_ail_3(void);
83 int kvmppc_enable_hwrng(void);
84 int kvmppc_put_books_sregs(PowerPCCPU *cpu);
85 PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void);
86 void kvmppc_check_papr_resize_hpt(Error **errp);
87 int kvmppc_resize_hpt_prepare(PowerPCCPU *cpu, target_ulong flags, int shift);
88 int kvmppc_resize_hpt_commit(PowerPCCPU *cpu, target_ulong flags, int shift);
89 bool kvmppc_pvr_workaround_required(PowerPCCPU *cpu);
90 
91 bool kvmppc_hpt_needs_host_contiguous_pages(void);
92 void kvm_check_mmu(PowerPCCPU *cpu, Error **errp);
93 void kvmppc_set_reg_ppc_online(PowerPCCPU *cpu, unsigned int online);
94 void kvmppc_set_reg_tb_offset(PowerPCCPU *cpu, int64_t tb_offset);
95 
96 int kvm_handle_nmi(PowerPCCPU *cpu, struct kvm_run *run);
97 
98 #define kvmppc_eieio() \
99     do {                                          \
100         if (kvm_enabled()) {                          \
101             asm volatile("eieio" : : : "memory"); \
102         } \
103     } while (0)
104 
105 /* Store data cache blocks back to memory */
kvmppc_dcbst_range(PowerPCCPU * cpu,uint8_t * addr,int len)106 static inline void kvmppc_dcbst_range(PowerPCCPU *cpu, uint8_t *addr, int len)
107 {
108     uint8_t *p;
109 
110     for (p = addr; p < addr + len; p += cpu->env.dcache_line_size) {
111         asm volatile("dcbst 0,%0" : : "r"(p) : "memory");
112     }
113 }
114 
115 /* Invalidate instruction cache blocks */
kvmppc_icbi_range(PowerPCCPU * cpu,uint8_t * addr,int len)116 static inline void kvmppc_icbi_range(PowerPCCPU *cpu, uint8_t *addr, int len)
117 {
118     uint8_t *p;
119 
120     for (p = addr; p < addr + len; p += cpu->env.icache_line_size) {
121         asm volatile("icbi 0,%0" : : "r"(p));
122     }
123 }
124 
125 #else /* !CONFIG_KVM */
126 
kvmppc_get_tbfreq(void)127 static inline uint32_t kvmppc_get_tbfreq(void)
128 {
129     return 0;
130 }
131 
kvmppc_get_host_model(char ** buf)132 static inline bool kvmppc_get_host_model(char **buf)
133 {
134     return false;
135 }
136 
kvmppc_get_host_serial(char ** buf)137 static inline bool kvmppc_get_host_serial(char **buf)
138 {
139     return false;
140 }
141 
kvmppc_get_clockfreq(void)142 static inline uint64_t kvmppc_get_clockfreq(void)
143 {
144     return 0;
145 }
146 
kvmppc_get_vmx(void)147 static inline uint32_t kvmppc_get_vmx(void)
148 {
149     return 0;
150 }
151 
kvmppc_get_dfp(void)152 static inline uint32_t kvmppc_get_dfp(void)
153 {
154     return 0;
155 }
156 
kvmppc_get_hasidle(CPUPPCState * env)157 static inline int kvmppc_get_hasidle(CPUPPCState *env)
158 {
159     return 0;
160 }
161 
kvmppc_get_hypercall(CPUPPCState * env,uint8_t * buf,int buf_len)162 static inline int kvmppc_get_hypercall(CPUPPCState *env,
163                                        uint8_t *buf, int buf_len)
164 {
165     return -1;
166 }
167 
kvmppc_set_interrupt(PowerPCCPU * cpu,int irq,int level)168 static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level)
169 {
170     return -1;
171 }
172 
kvmppc_enable_logical_ci_hcalls(void)173 static inline void kvmppc_enable_logical_ci_hcalls(void)
174 {
175 }
176 
kvmppc_enable_set_mode_hcall(void)177 static inline void kvmppc_enable_set_mode_hcall(void)
178 {
179 }
180 
kvmppc_enable_clear_ref_mod_hcalls(void)181 static inline void kvmppc_enable_clear_ref_mod_hcalls(void)
182 {
183 }
184 
kvmppc_enable_h_page_init(void)185 static inline void kvmppc_enable_h_page_init(void)
186 {
187 }
188 
kvmppc_enable_h_rpt_invalidate(void)189 static inline void kvmppc_enable_h_rpt_invalidate(void)
190 {
191     g_assert_not_reached();
192 }
193 
kvmppc_set_papr(PowerPCCPU * cpu)194 static inline void kvmppc_set_papr(PowerPCCPU *cpu)
195 {
196 }
197 
kvmppc_set_compat(PowerPCCPU * cpu,uint32_t compat_pvr)198 static inline int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t compat_pvr)
199 {
200     return 0;
201 }
202 
kvmppc_set_mpic_proxy(PowerPCCPU * cpu,int mpic_proxy)203 static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy)
204 {
205 }
206 
kvmppc_get_fwnmi(void)207 static inline bool kvmppc_get_fwnmi(void)
208 {
209     return false;
210 }
211 
kvmppc_set_fwnmi(PowerPCCPU * cpu)212 static inline int kvmppc_set_fwnmi(PowerPCCPU *cpu)
213 {
214     return -1;
215 }
216 
kvmppc_smt_threads(void)217 static inline int kvmppc_smt_threads(void)
218 {
219     return 1;
220 }
221 
kvmppc_error_append_smt_possible_hint(Error * const * errp)222 static inline void kvmppc_error_append_smt_possible_hint(Error *const *errp)
223 {
224 }
225 
kvmppc_set_smt_threads(int smt)226 static inline int kvmppc_set_smt_threads(int smt)
227 {
228     return 0;
229 }
230 
kvmppc_or_tsr_bits(PowerPCCPU * cpu,uint32_t tsr_bits)231 static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
232 {
233     return 0;
234 }
235 
kvmppc_clear_tsr_bits(PowerPCCPU * cpu,uint32_t tsr_bits)236 static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
237 {
238     return 0;
239 }
240 
kvmppc_set_tcr(PowerPCCPU * cpu)241 static inline int kvmppc_set_tcr(PowerPCCPU *cpu)
242 {
243     return 0;
244 }
245 
kvmppc_booke_watchdog_enable(PowerPCCPU * cpu)246 static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu)
247 {
248     return -1;
249 }
250 
kvmppc_configure_v3_mmu(PowerPCCPU * cpu,bool radix,bool gtse,uint64_t proc_tbl)251 static inline target_ulong kvmppc_configure_v3_mmu(PowerPCCPU *cpu,
252                                      bool radix, bool gtse,
253                                      uint64_t proc_tbl)
254 {
255     return 0;
256 }
257 
kvmppc_set_reg_ppc_online(PowerPCCPU * cpu,unsigned int online)258 static inline void kvmppc_set_reg_ppc_online(PowerPCCPU *cpu,
259                                              unsigned int online)
260 {
261 }
262 
kvmppc_set_reg_tb_offset(PowerPCCPU * cpu,int64_t tb_offset)263 static inline void kvmppc_set_reg_tb_offset(PowerPCCPU *cpu, int64_t tb_offset)
264 {
265 }
266 
kvmppc_spapr_use_multitce(void)267 static inline bool kvmppc_spapr_use_multitce(void)
268 {
269     return false;
270 }
271 
kvmppc_spapr_enable_inkernel_multitce(void)272 static inline int kvmppc_spapr_enable_inkernel_multitce(void)
273 {
274     return -1;
275 }
276 
kvmppc_create_spapr_tce(uint32_t liobn,uint32_t page_shift,uint64_t bus_offset,uint32_t nb_table,int * pfd,bool need_vfio)277 static inline void *kvmppc_create_spapr_tce(uint32_t liobn, uint32_t page_shift,
278                                             uint64_t bus_offset,
279                                             uint32_t nb_table,
280                                             int *pfd, bool need_vfio)
281 {
282     return NULL;
283 }
284 
kvmppc_remove_spapr_tce(void * table,int pfd,uint32_t nb_table)285 static inline int kvmppc_remove_spapr_tce(void *table, int pfd,
286                                           uint32_t nb_table)
287 {
288     return -1;
289 }
290 
kvmppc_reset_htab(int shift_hint)291 static inline int kvmppc_reset_htab(int shift_hint)
292 {
293     return 0;
294 }
295 
kvmppc_vrma_limit(unsigned int hash_shift)296 static inline uint64_t kvmppc_vrma_limit(unsigned int hash_shift)
297 {
298     g_assert_not_reached();
299 }
300 
kvmppc_hpt_needs_host_contiguous_pages(void)301 static inline bool kvmppc_hpt_needs_host_contiguous_pages(void)
302 {
303     return false;
304 }
305 
kvm_check_mmu(PowerPCCPU * cpu,Error ** errp)306 static inline void kvm_check_mmu(PowerPCCPU *cpu, Error **errp)
307 {
308 }
309 
kvmppc_has_cap_spapr_vfio(void)310 static inline bool kvmppc_has_cap_spapr_vfio(void)
311 {
312     return false;
313 }
314 
kvmppc_read_hptes(ppc_hash_pte64_t * hptes,hwaddr ptex,int n)315 static inline void kvmppc_read_hptes(ppc_hash_pte64_t *hptes,
316                                      hwaddr ptex, int n)
317 {
318     abort();
319 }
320 
kvmppc_write_hpte(hwaddr ptex,uint64_t pte0,uint64_t pte1)321 static inline void kvmppc_write_hpte(hwaddr ptex, uint64_t pte0, uint64_t pte1)
322 {
323     abort();
324 }
325 
kvmppc_has_cap_epr(void)326 static inline bool kvmppc_has_cap_epr(void)
327 {
328     return false;
329 }
330 
kvmppc_define_rtas_kernel_token(uint32_t token,const char * function)331 static inline int kvmppc_define_rtas_kernel_token(uint32_t token,
332                                                   const char *function)
333 {
334     return -1;
335 }
336 
kvmppc_get_htab_fd(bool write,uint64_t index,Error ** errp)337 static inline int kvmppc_get_htab_fd(bool write, uint64_t index, Error **errp)
338 {
339     return -1;
340 }
341 
kvmppc_save_htab(QEMUFile * f,int fd,size_t bufsize,int64_t max_ns)342 static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize,
343                                    int64_t max_ns)
344 {
345     abort();
346 }
347 
kvmppc_load_htab_chunk(QEMUFile * f,int fd,uint32_t index,uint16_t n_valid,uint16_t n_invalid,Error ** errp)348 static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
349                                          uint16_t n_valid, uint16_t n_invalid,
350                                          Error **errp)
351 {
352     abort();
353 }
354 
kvmppc_has_cap_fixup_hcalls(void)355 static inline bool kvmppc_has_cap_fixup_hcalls(void)
356 {
357     abort();
358 }
359 
kvmppc_has_cap_htm(void)360 static inline bool kvmppc_has_cap_htm(void)
361 {
362     return false;
363 }
364 
kvmppc_has_cap_mmu_radix(void)365 static inline bool kvmppc_has_cap_mmu_radix(void)
366 {
367     return false;
368 }
369 
kvmppc_has_cap_mmu_hash_v3(void)370 static inline bool kvmppc_has_cap_mmu_hash_v3(void)
371 {
372     return false;
373 }
374 
kvmppc_has_cap_xive(void)375 static inline bool kvmppc_has_cap_xive(void)
376 {
377     return false;
378 }
379 
kvmppc_has_cap_dawr1(void)380 static inline bool kvmppc_has_cap_dawr1(void)
381 {
382     return false;
383 }
384 
kvmppc_set_cap_dawr1(int enable)385 static inline int kvmppc_set_cap_dawr1(int enable)
386 {
387     abort();
388 }
389 
kvmppc_get_cap_safe_cache(void)390 static inline int kvmppc_get_cap_safe_cache(void)
391 {
392     return 0;
393 }
394 
kvmppc_get_cap_safe_bounds_check(void)395 static inline int kvmppc_get_cap_safe_bounds_check(void)
396 {
397     return 0;
398 }
399 
kvmppc_get_cap_safe_indirect_branch(void)400 static inline int kvmppc_get_cap_safe_indirect_branch(void)
401 {
402     return 0;
403 }
404 
kvmppc_get_cap_count_cache_flush_assist(void)405 static inline int kvmppc_get_cap_count_cache_flush_assist(void)
406 {
407     return 0;
408 }
409 
kvmppc_has_cap_nested_kvm_hv(void)410 static inline bool kvmppc_has_cap_nested_kvm_hv(void)
411 {
412     return false;
413 }
414 
kvmppc_set_cap_nested_kvm_hv(int enable)415 static inline int kvmppc_set_cap_nested_kvm_hv(int enable)
416 {
417     return -1;
418 }
419 
kvmppc_get_cap_large_decr(void)420 static inline int kvmppc_get_cap_large_decr(void)
421 {
422     return 0;
423 }
424 
kvmppc_enable_cap_large_decr(PowerPCCPU * cpu,int enable)425 static inline int kvmppc_enable_cap_large_decr(PowerPCCPU *cpu, int enable)
426 {
427     return -1;
428 }
429 
kvmppc_has_cap_rpt_invalidate(void)430 static inline int kvmppc_has_cap_rpt_invalidate(void)
431 {
432     return false;
433 }
434 
kvmppc_supports_ail_3(void)435 static inline bool kvmppc_supports_ail_3(void)
436 {
437     return false;
438 }
439 
kvmppc_enable_hwrng(void)440 static inline int kvmppc_enable_hwrng(void)
441 {
442     return -1;
443 }
444 
kvmppc_put_books_sregs(PowerPCCPU * cpu)445 static inline int kvmppc_put_books_sregs(PowerPCCPU *cpu)
446 {
447     abort();
448 }
449 
kvm_ppc_get_host_cpu_class(void)450 static inline PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void)
451 {
452     return NULL;
453 }
454 
kvmppc_check_papr_resize_hpt(Error ** errp)455 static inline void kvmppc_check_papr_resize_hpt(Error **errp)
456 {
457 }
458 
kvmppc_resize_hpt_prepare(PowerPCCPU * cpu,target_ulong flags,int shift)459 static inline int kvmppc_resize_hpt_prepare(PowerPCCPU *cpu,
460                                             target_ulong flags, int shift)
461 {
462     return -ENOSYS;
463 }
464 
kvmppc_resize_hpt_commit(PowerPCCPU * cpu,target_ulong flags,int shift)465 static inline int kvmppc_resize_hpt_commit(PowerPCCPU *cpu,
466                                            target_ulong flags, int shift)
467 {
468     return -ENOSYS;
469 }
470 
kvmppc_pvr_workaround_required(PowerPCCPU * cpu)471 static inline bool kvmppc_pvr_workaround_required(PowerPCCPU *cpu)
472 {
473     return false;
474 }
475 
476 #define kvmppc_eieio() do { } while (0)
477 
kvmppc_dcbst_range(PowerPCCPU * cpu,uint8_t * addr,int len)478 static inline void kvmppc_dcbst_range(PowerPCCPU *cpu, uint8_t *addr, int len)
479 {
480 }
481 
kvmppc_icbi_range(PowerPCCPU * cpu,uint8_t * addr,int len)482 static inline void kvmppc_icbi_range(PowerPCCPU *cpu, uint8_t *addr, int len)
483 {
484 }
485 
486 #endif  /* CONFIG_KVM */
487 
488 #endif /* KVM_PPC_H */
489