2 * Copyright 2008 IBM Corporation.
3 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
5 * This work is licensed under the GNU GPL license version 2 or later.
12 #define TYPE_HOST_POWERPC_CPU "host-" TYPE_POWERPC_CPU
16 uint32_t kvmppc_get_tbfreq(void);
17 uint64_t kvmppc_get_clockfreq(void);
18 uint32_t kvmppc_get_vmx(void);
19 uint32_t kvmppc_get_dfp(void);
20 bool kvmppc_get_host_model(char **buf
);
21 bool kvmppc_get_host_serial(char **buf
);
22 int kvmppc_get_hasidle(CPUPPCState
*env
);
23 int kvmppc_get_hypercall(CPUPPCState
*env
, uint8_t *buf
, int buf_len
);
24 int kvmppc_set_interrupt(PowerPCCPU
*cpu
, int irq
, int level
);
25 void kvmppc_enable_logical_ci_hcalls(void);
26 void kvmppc_enable_set_mode_hcall(void);
27 void kvmppc_enable_clear_ref_mod_hcalls(void);
28 void kvmppc_set_papr(PowerPCCPU
*cpu
);
29 int kvmppc_set_compat(PowerPCCPU
*cpu
, uint32_t cpu_version
);
30 void kvmppc_set_mpic_proxy(PowerPCCPU
*cpu
, int mpic_proxy
);
31 int kvmppc_smt_threads(void);
32 int kvmppc_clear_tsr_bits(PowerPCCPU
*cpu
, uint32_t tsr_bits
);
33 int kvmppc_or_tsr_bits(PowerPCCPU
*cpu
, uint32_t tsr_bits
);
34 int kvmppc_set_tcr(PowerPCCPU
*cpu
);
35 int kvmppc_booke_watchdog_enable(PowerPCCPU
*cpu
);
36 #ifndef CONFIG_USER_ONLY
37 off_t
kvmppc_alloc_rma(void **rma
);
38 bool kvmppc_spapr_use_multitce(void);
39 void *kvmppc_create_spapr_tce(uint32_t liobn
, uint32_t window_size
, int *pfd
,
41 int kvmppc_remove_spapr_tce(void *table
, int pfd
, uint32_t window_size
);
42 int kvmppc_reset_htab(int shift_hint
);
43 uint64_t kvmppc_rma_size(uint64_t current_size
, unsigned int hash_shift
);
44 #endif /* !CONFIG_USER_ONLY */
45 bool kvmppc_has_cap_epr(void);
46 int kvmppc_define_rtas_kernel_token(uint32_t token
, const char *function
);
47 bool kvmppc_has_cap_htab_fd(void);
48 int kvmppc_get_htab_fd(bool write
);
49 int kvmppc_save_htab(QEMUFile
*f
, int fd
, size_t bufsize
, int64_t max_ns
);
50 int kvmppc_load_htab_chunk(QEMUFile
*f
, int fd
, uint32_t index
,
51 uint16_t n_valid
, uint16_t n_invalid
);
52 uint64_t kvmppc_hash64_read_pteg(PowerPCCPU
*cpu
, target_ulong pte_index
);
53 void kvmppc_hash64_free_pteg(uint64_t token
);
55 void kvmppc_hash64_write_pte(CPUPPCState
*env
, target_ulong pte_index
,
56 target_ulong pte0
, target_ulong pte1
);
57 bool kvmppc_has_cap_fixup_hcalls(void);
58 bool kvmppc_has_cap_htm(void);
59 int kvmppc_enable_hwrng(void);
60 int kvmppc_put_books_sregs(PowerPCCPU
*cpu
);
61 PowerPCCPUClass
*kvm_ppc_get_host_cpu_class(void);
65 static inline uint32_t kvmppc_get_tbfreq(void)
70 static inline bool kvmppc_get_host_model(char **buf
)
75 static inline bool kvmppc_get_host_serial(char **buf
)
80 static inline uint64_t kvmppc_get_clockfreq(void)
85 static inline uint32_t kvmppc_get_vmx(void)
90 static inline uint32_t kvmppc_get_dfp(void)
95 static inline int kvmppc_get_hasidle(CPUPPCState
*env
)
100 static inline int kvmppc_get_hypercall(CPUPPCState
*env
, uint8_t *buf
, int buf_len
)
105 static inline int kvmppc_set_interrupt(PowerPCCPU
*cpu
, int irq
, int level
)
110 static inline void kvmppc_enable_logical_ci_hcalls(void)
114 static inline void kvmppc_enable_set_mode_hcall(void)
118 static inline void kvmppc_enable_clear_ref_mod_hcalls(void)
122 static inline void kvmppc_set_papr(PowerPCCPU
*cpu
)
126 static inline int kvmppc_set_compat(PowerPCCPU
*cpu
, uint32_t cpu_version
)
131 static inline void kvmppc_set_mpic_proxy(PowerPCCPU
*cpu
, int mpic_proxy
)
135 static inline int kvmppc_smt_threads(void)
140 static inline int kvmppc_or_tsr_bits(PowerPCCPU
*cpu
, uint32_t tsr_bits
)
145 static inline int kvmppc_clear_tsr_bits(PowerPCCPU
*cpu
, uint32_t tsr_bits
)
150 static inline int kvmppc_set_tcr(PowerPCCPU
*cpu
)
155 static inline int kvmppc_booke_watchdog_enable(PowerPCCPU
*cpu
)
160 #ifndef CONFIG_USER_ONLY
161 static inline off_t
kvmppc_alloc_rma(void **rma
)
166 static inline bool kvmppc_spapr_use_multitce(void)
171 static inline void *kvmppc_create_spapr_tce(uint32_t liobn
,
172 uint32_t window_size
, int *fd
,
178 static inline int kvmppc_remove_spapr_tce(void *table
, int pfd
,
184 static inline int kvmppc_reset_htab(int shift_hint
)
189 static inline uint64_t kvmppc_rma_size(uint64_t current_size
,
190 unsigned int hash_shift
)
195 #endif /* !CONFIG_USER_ONLY */
197 static inline bool kvmppc_has_cap_epr(void)
202 static inline int kvmppc_define_rtas_kernel_token(uint32_t token
,
203 const char *function
)
208 static inline bool kvmppc_has_cap_htab_fd(void)
213 static inline int kvmppc_get_htab_fd(bool write
)
218 static inline int kvmppc_save_htab(QEMUFile
*f
, int fd
, size_t bufsize
,
224 static inline int kvmppc_load_htab_chunk(QEMUFile
*f
, int fd
, uint32_t index
,
225 uint16_t n_valid
, uint16_t n_invalid
)
230 static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU
*cpu
,
231 target_ulong pte_index
)
236 static inline void kvmppc_hash64_free_pteg(uint64_t token
)
241 static inline void kvmppc_hash64_write_pte(CPUPPCState
*env
,
242 target_ulong pte_index
,
243 target_ulong pte0
, target_ulong pte1
)
248 static inline bool kvmppc_has_cap_fixup_hcalls(void)
253 static inline bool kvmppc_has_cap_htm(void)
258 static inline int kvmppc_enable_hwrng(void)
263 static inline int kvmppc_put_books_sregs(PowerPCCPU
*cpu
)
268 static inline PowerPCCPUClass
*kvm_ppc_get_host_cpu_class(void)
277 #define kvmppc_eieio() do { } while (0)
279 static inline void kvmppc_dcbst_range(PowerPCCPU
*cpu
, uint8_t *addr
, int len
)
283 static inline void kvmppc_icbi_range(PowerPCCPU
*cpu
, uint8_t *addr
, int len
)
287 #else /* CONFIG_KVM */
289 #define kvmppc_eieio() \
291 if (kvm_enabled()) { \
292 asm volatile("eieio" : : : "memory"); \
296 /* Store data cache blocks back to memory */
297 static inline void kvmppc_dcbst_range(PowerPCCPU
*cpu
, uint8_t *addr
, int len
)
301 for (p
= addr
; p
< addr
+ len
; p
+= cpu
->env
.dcache_line_size
) {
302 asm volatile("dcbst 0,%0" : : "r"(p
) : "memory");
306 /* Invalidate instruction cache blocks */
307 static inline void kvmppc_icbi_range(PowerPCCPU
*cpu
, uint8_t *addr
, int len
)
311 for (p
= addr
; p
< addr
+ len
; p
+= cpu
->env
.icache_line_size
) {
312 asm volatile("icbi 0,%0" : : "r"(p
));
316 #endif /* CONFIG_KVM */
318 #ifndef KVM_INTERRUPT_SET
319 #define KVM_INTERRUPT_SET -1
322 #ifndef KVM_INTERRUPT_UNSET
323 #define KVM_INTERRUPT_UNSET -2
326 #ifndef KVM_INTERRUPT_SET_LEVEL
327 #define KVM_INTERRUPT_SET_LEVEL -3
330 #endif /* KVM_PPC_H */