]> Git Repo - qemu.git/blame - target/ppc/kvm_ppc.h
target/ppc: Use tcg_gen_gvec_dup_imm
[qemu.git] / target / ppc / kvm_ppc.h
CommitLineData
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
2a6a4076
MA
9#ifndef KVM_PPC_H
10#define KVM_PPC_H
d76d1650 11
c9137065 12#define TYPE_HOST_POWERPC_CPU POWERPC_CPU_TYPE_NAME("host")
2985b86b 13
921e28db
AG
14#ifdef CONFIG_KVM
15
dc333cd6 16uint32_t kvmppc_get_tbfreq(void);
eadaada1 17uint64_t kvmppc_get_clockfreq(void);
ef951443
ND
18bool kvmppc_get_host_model(char **buf);
19bool kvmppc_get_host_serial(char **buf);
1a61a9ae 20int kvmppc_get_hasidle(CPUPPCState *env);
1328c2bf 21int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len);
1bc22652 22int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level);
026bfd89 23void kvmppc_enable_logical_ci_hcalls(void);
ef9971dd 24void kvmppc_enable_set_mode_hcall(void);
5145ad4f 25void kvmppc_enable_clear_ref_mod_hcalls(void);
68f9f708 26void kvmppc_enable_h_page_init(void);
1bc22652 27void kvmppc_set_papr(PowerPCCPU *cpu);
d6e166c0 28int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t compat_pvr);
5b95b8b9 29void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy);
ec010c00 30bool kvmppc_get_fwnmi(void);
9d953ce4 31int kvmppc_set_fwnmi(void);
e97c3636 32int kvmppc_smt_threads(void);
0c115681 33void kvmppc_error_append_smt_possible_hint(Error *const *errp);
fa98fbfc 34int kvmppc_set_smt_threads(int smt);
31f2cb8f
BB
35int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits);
36int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits);
37int kvmppc_set_tcr(PowerPCCPU *cpu);
38int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu);
b4db5413
SJS
39target_ulong kvmppc_configure_v3_mmu(PowerPCCPU *cpu,
40 bool radix, bool gtse,
41 uint64_t proc_tbl);
905db916 42void kvmppc_svm_off(Error **errp);
98efaf75 43#ifndef CONFIG_USER_ONLY
da95324e 44bool kvmppc_spapr_use_multitce(void);
3dc410ae 45int kvmppc_spapr_enable_inkernel_multitce(void);
d6ee2a7c
AK
46void *kvmppc_create_spapr_tce(uint32_t liobn, uint32_t page_shift,
47 uint64_t bus_offset, uint32_t nb_table,
48 int *pfd, bool need_vfio);
0f5cb298 49int kvmppc_remove_spapr_tce(void *table, int pfd, uint32_t window_size);
7f763a5d 50int kvmppc_reset_htab(int shift_hint);
6a84737c 51uint64_t kvmppc_vrma_limit(unsigned int hash_shift);
9ded780c 52bool kvmppc_has_cap_spapr_vfio(void);
98efaf75 53#endif /* !CONFIG_USER_ONLY */
3b961124 54bool kvmppc_has_cap_epr(void);
feaa64c4 55int kvmppc_define_rtas_kernel_token(uint32_t token, const char *function);
14b0d748 56int kvmppc_get_htab_fd(bool write, uint64_t index, Error **errp);
e68cb8b4
AK
57int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize, int64_t max_ns);
58int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
59 uint16_t n_valid, uint16_t n_invalid);
1ad9f0a4
DG
60void kvmppc_read_hptes(ppc_hash_pte64_t *hptes, hwaddr ptex, int n);
61void kvmppc_write_hpte(hwaddr ptex, uint64_t pte0, uint64_t pte1);
87a91de6 62bool kvmppc_has_cap_fixup_hcalls(void);
bac3bf28 63bool kvmppc_has_cap_htm(void);
cf1c4cce
SB
64bool kvmppc_has_cap_mmu_radix(void);
65bool kvmppc_has_cap_mmu_hash_v3(void);
38afd772 66bool kvmppc_has_cap_xive(void);
8acc2ae5
SJS
67int kvmppc_get_cap_safe_cache(void);
68int kvmppc_get_cap_safe_bounds_check(void);
69int kvmppc_get_cap_safe_indirect_branch(void);
8ff43ee4 70int kvmppc_get_cap_count_cache_flush_assist(void);
b9a477b7
SJS
71bool kvmppc_has_cap_nested_kvm_hv(void);
72int kvmppc_set_cap_nested_kvm_hv(int enable);
7d050527
SJS
73int kvmppc_get_cap_large_decr(void);
74int kvmppc_enable_cap_large_decr(PowerPCCPU *cpu, int enable);
4d9392be 75int kvmppc_enable_hwrng(void);
e5c0d3ce 76int kvmppc_put_books_sregs(PowerPCCPU *cpu);
52b2519c 77PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void);
30f4b05b 78void kvmppc_check_papr_resize_hpt(Error **errp);
b55d295e
DG
79int kvmppc_resize_hpt_prepare(PowerPCCPU *cpu, target_ulong flags, int shift);
80int kvmppc_resize_hpt_commit(PowerPCCPU *cpu, target_ulong flags, int shift);
c363a37a 81bool kvmppc_pvr_workaround_required(PowerPCCPU *cpu);
c1385933 82
24c6863c 83bool kvmppc_hpt_needs_host_contiguous_pages(void);
e5ca28ec 84void kvm_check_mmu(PowerPCCPU *cpu, Error **errp);
a84f7179 85void kvmppc_set_reg_ppc_online(PowerPCCPU *cpu, unsigned int online);
9723295a 86void kvmppc_set_reg_tb_offset(PowerPCCPU *cpu, int64_t tb_offset);
df587133 87
9ac703ac
AP
88int kvm_handle_nmi(PowerPCCPU *cpu, struct kvm_run *run);
89
921e28db
AG
90#else
91
92static inline uint32_t kvmppc_get_tbfreq(void)
93{
94 return 0;
95}
96
ef951443
ND
97static inline bool kvmppc_get_host_model(char **buf)
98{
99 return false;
100}
101
102static inline bool kvmppc_get_host_serial(char **buf)
103{
104 return false;
105}
106
921e28db
AG
107static inline uint64_t kvmppc_get_clockfreq(void)
108{
109 return 0;
110}
111
6659394f
DG
112static inline uint32_t kvmppc_get_vmx(void)
113{
114 return 0;
115}
116
117static inline uint32_t kvmppc_get_dfp(void)
118{
119 return 0;
120}
121
1a61a9ae
SY
122static inline int kvmppc_get_hasidle(CPUPPCState *env)
123{
124 return 0;
125}
126
c995e942
DG
127static inline int kvmppc_get_hypercall(CPUPPCState *env,
128 uint8_t *buf, int buf_len)
921e28db
AG
129{
130 return -1;
131}
132
1bc22652 133static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level)
921e28db
AG
134{
135 return -1;
136}
137
026bfd89
DG
138static inline void kvmppc_enable_logical_ci_hcalls(void)
139{
140}
141
ef9971dd
AK
142static inline void kvmppc_enable_set_mode_hcall(void)
143{
144}
145
5145ad4f
NW
146static inline void kvmppc_enable_clear_ref_mod_hcalls(void)
147{
148}
149
68f9f708
SJS
150static inline void kvmppc_enable_h_page_init(void)
151{
152}
153
1bc22652 154static inline void kvmppc_set_papr(PowerPCCPU *cpu)
f61b4bed
AG
155{
156}
157
d6e166c0 158static inline int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t compat_pvr)
6db5bb0f
AK
159{
160 return 0;
161}
162
5b95b8b9
AG
163static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy)
164{
165}
166
ec010c00
NP
167static inline bool kvmppc_get_fwnmi(void)
168{
169 return false;
170}
171
9d953ce4
AP
172static inline int kvmppc_set_fwnmi(void)
173{
174 return -1;
175}
176
e97c3636
DG
177static inline int kvmppc_smt_threads(void)
178{
179 return 1;
180}
181
0c115681 182static inline void kvmppc_error_append_smt_possible_hint(Error *const *errp)
fa98fbfc
SB
183{
184 return;
185}
186
187static inline int kvmppc_set_smt_threads(int smt)
188{
189 return 0;
190}
191
31f2cb8f
BB
192static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
193{
194 return 0;
195}
196
197static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
198{
199 return 0;
200}
201
202static inline int kvmppc_set_tcr(PowerPCCPU *cpu)
203{
204 return 0;
205}
206
207static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu)
208{
209 return -1;
210}
211
b4db5413
SJS
212static inline target_ulong kvmppc_configure_v3_mmu(PowerPCCPU *cpu,
213 bool radix, bool gtse,
214 uint64_t proc_tbl)
215{
216 return 0;
217}
218
905db916
BR
219static inline void kvmppc_svm_off(Error **errp)
220{
221 return;
222}
223
a84f7179
ND
224static inline void kvmppc_set_reg_ppc_online(PowerPCCPU *cpu,
225 unsigned int online)
226{
227 return;
228}
229
9723295a
GK
230static inline void kvmppc_set_reg_tb_offset(PowerPCCPU *cpu, int64_t tb_offset)
231{
232}
233
98efaf75 234#ifndef CONFIG_USER_ONLY
da95324e
AK
235static inline bool kvmppc_spapr_use_multitce(void)
236{
237 return false;
238}
239
3dc410ae
AK
240static inline int kvmppc_spapr_enable_inkernel_multitce(void)
241{
242 return -1;
243}
244
d6ee2a7c
AK
245static inline void *kvmppc_create_spapr_tce(uint32_t liobn, uint32_t page_shift,
246 uint64_t bus_offset,
247 uint32_t nb_table,
248 int *pfd, bool need_vfio)
0f5cb298
DG
249{
250 return NULL;
251}
252
253static inline int kvmppc_remove_spapr_tce(void *table, int pfd,
523e7b8a 254 uint32_t nb_table)
0f5cb298
DG
255{
256 return -1;
257}
7f763a5d
DG
258
259static inline int kvmppc_reset_htab(int shift_hint)
260{
a3166f8f 261 return 0;
7f763a5d
DG
262}
263
6a84737c 264static inline uint64_t kvmppc_vrma_limit(unsigned int hash_shift)
7f763a5d 265{
6a84737c 266 g_assert_not_reached();
7f763a5d
DG
267}
268
24c6863c
DG
269static inline bool kvmppc_hpt_needs_host_contiguous_pages(void)
270{
271 return false;
272}
273
e5ca28ec
DG
274static inline void kvm_check_mmu(PowerPCCPU *cpu, Error **errp)
275{
276}
277
9ded780c
AK
278static inline bool kvmppc_has_cap_spapr_vfio(void)
279{
280 return false;
281}
282
98efaf75 283#endif /* !CONFIG_USER_ONLY */
0f5cb298 284
3b961124
SY
285static inline bool kvmppc_has_cap_epr(void)
286{
287 return false;
288}
e68cb8b4 289
feaa64c4
DG
290static inline int kvmppc_define_rtas_kernel_token(uint32_t token,
291 const char *function)
292{
293 return -1;
294}
295
14b0d748 296static inline int kvmppc_get_htab_fd(bool write, uint64_t index, Error **errp)
e68cb8b4
AK
297{
298 return -1;
299}
300
301static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize,
302 int64_t max_ns)
303{
304 abort();
305}
306
307static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
308 uint16_t n_valid, uint16_t n_invalid)
309{
310 abort();
311}
312
1ad9f0a4
DG
313static inline void kvmppc_read_hptes(ppc_hash_pte64_t *hptes,
314 hwaddr ptex, int n)
7c43bca0
AK
315{
316 abort();
317}
318
1ad9f0a4 319static inline void kvmppc_write_hpte(hwaddr ptex, uint64_t pte0, uint64_t pte1)
c1385933
AK
320{
321 abort();
322}
323
87a91de6
AG
324static inline bool kvmppc_has_cap_fixup_hcalls(void)
325{
326 abort();
327}
328
bac3bf28
TH
329static inline bool kvmppc_has_cap_htm(void)
330{
331 return false;
332}
333
cf1c4cce
SB
334static inline bool kvmppc_has_cap_mmu_radix(void)
335{
336 return false;
337}
338
339static inline bool kvmppc_has_cap_mmu_hash_v3(void)
340{
341 return false;
342}
343
38afd772
CLG
344static inline bool kvmppc_has_cap_xive(void)
345{
346 return false;
347}
348
8acc2ae5
SJS
349static inline int kvmppc_get_cap_safe_cache(void)
350{
351 return 0;
352}
353
354static inline int kvmppc_get_cap_safe_bounds_check(void)
355{
356 return 0;
357}
358
359static inline int kvmppc_get_cap_safe_indirect_branch(void)
360{
361 return 0;
362}
363
8ff43ee4
SJS
364static inline int kvmppc_get_cap_count_cache_flush_assist(void)
365{
366 return 0;
367}
368
b9a477b7
SJS
369static inline bool kvmppc_has_cap_nested_kvm_hv(void)
370{
371 return false;
372}
373
374static inline int kvmppc_set_cap_nested_kvm_hv(int enable)
375{
376 return -1;
377}
378
7d050527
SJS
379static inline int kvmppc_get_cap_large_decr(void)
380{
381 return 0;
382}
383
384static inline int kvmppc_enable_cap_large_decr(PowerPCCPU *cpu, int enable)
385{
386 return -1;
387}
388
4d9392be
TH
389static inline int kvmppc_enable_hwrng(void)
390{
391 return -1;
392}
e5c0d3ce
DG
393
394static inline int kvmppc_put_books_sregs(PowerPCCPU *cpu)
395{
396 abort();
397}
52b2519c
TH
398
399static inline PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void)
400{
401 return NULL;
402}
403
30f4b05b
DG
404static inline void kvmppc_check_papr_resize_hpt(Error **errp)
405{
406 return;
407}
b55d295e
DG
408
409static inline int kvmppc_resize_hpt_prepare(PowerPCCPU *cpu,
410 target_ulong flags, int shift)
411{
412 return -ENOSYS;
413}
414
415static inline int kvmppc_resize_hpt_commit(PowerPCCPU *cpu,
416 target_ulong flags, int shift)
417{
418 return -ENOSYS;
419}
420
001d235c
GK
421static inline bool kvmppc_pvr_workaround_required(PowerPCCPU *cpu)
422{
423 return false;
424}
425
921e28db
AG
426#endif
427
b45d63b6 428#ifndef CONFIG_KVM
3240dd9a 429
b45d63b6 430#define kvmppc_eieio() do { } while (0)
3240dd9a
TH
431
432static inline void kvmppc_dcbst_range(PowerPCCPU *cpu, uint8_t *addr, int len)
433{
434}
435
436static inline void kvmppc_icbi_range(PowerPCCPU *cpu, uint8_t *addr, int len)
437{
438}
439
440#else /* CONFIG_KVM */
441
b45d63b6
BH
442#define kvmppc_eieio() \
443 do { \
444 if (kvm_enabled()) { \
445 asm volatile("eieio" : : : "memory"); \
446 } \
447 } while (0)
3240dd9a
TH
448
449/* Store data cache blocks back to memory */
450static inline void kvmppc_dcbst_range(PowerPCCPU *cpu, uint8_t *addr, int len)
451{
452 uint8_t *p;
453
454 for (p = addr; p < addr + len; p += cpu->env.dcache_line_size) {
455 asm volatile("dcbst 0,%0" : : "r"(p) : "memory");
456 }
457}
458
459/* Invalidate instruction cache blocks */
460static inline void kvmppc_icbi_range(PowerPCCPU *cpu, uint8_t *addr, int len)
461{
462 uint8_t *p;
463
464 for (p = addr; p < addr + len; p += cpu->env.icache_line_size) {
465 asm volatile("icbi 0,%0" : : "r"(p));
466 }
467}
468
469#endif /* CONFIG_KVM */
b45d63b6 470
2a6a4076 471#endif /* KVM_PPC_H */
This page took 0.916506 seconds and 4 git commands to generate.