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
14 void kvmppc_init(void);
18 uint32_t kvmppc_get_tbfreq(void);
19 uint64_t kvmppc_get_clockfreq(void);
20 uint32_t kvmppc_get_vmx(void);
21 uint32_t kvmppc_get_dfp(void);
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_set_papr(PowerPCCPU
*cpu
);
26 void kvmppc_set_mpic_proxy(PowerPCCPU
*cpu
, int mpic_proxy
);
27 int kvmppc_smt_threads(void);
28 int kvmppc_clear_tsr_bits(PowerPCCPU
*cpu
, uint32_t tsr_bits
);
29 int kvmppc_or_tsr_bits(PowerPCCPU
*cpu
, uint32_t tsr_bits
);
30 int kvmppc_set_tcr(PowerPCCPU
*cpu
);
31 int kvmppc_booke_watchdog_enable(PowerPCCPU
*cpu
);
32 #ifndef CONFIG_USER_ONLY
33 off_t
kvmppc_alloc_rma(const char *name
, MemoryRegion
*sysmem
);
34 void *kvmppc_create_spapr_tce(uint32_t liobn
, uint32_t window_size
, int *pfd
);
35 int kvmppc_remove_spapr_tce(void *table
, int pfd
, uint32_t window_size
);
36 int kvmppc_reset_htab(int shift_hint
);
37 uint64_t kvmppc_rma_size(uint64_t current_size
, unsigned int hash_shift
);
38 #endif /* !CONFIG_USER_ONLY */
39 bool kvmppc_has_cap_epr(void);
40 int kvmppc_define_rtas_kernel_token(uint32_t token
, const char *function
);
41 bool kvmppc_has_cap_htab_fd(void);
42 int kvmppc_get_htab_fd(bool write
);
43 int kvmppc_save_htab(QEMUFile
*f
, int fd
, size_t bufsize
, int64_t max_ns
);
44 int kvmppc_load_htab_chunk(QEMUFile
*f
, int fd
, uint32_t index
,
45 uint16_t n_valid
, uint16_t n_invalid
);
46 uint64_t kvmppc_hash64_read_pteg(PowerPCCPU
*cpu
, target_ulong pte_index
);
47 void kvmppc_hash64_free_pteg(uint64_t token
);
49 void kvmppc_hash64_write_pte(CPUPPCState
*env
, target_ulong pte_index
,
50 target_ulong pte0
, target_ulong pte1
);
54 static inline uint32_t kvmppc_get_tbfreq(void)
59 static inline uint64_t kvmppc_get_clockfreq(void)
64 static inline uint32_t kvmppc_get_vmx(void)
69 static inline uint32_t kvmppc_get_dfp(void)
74 static inline int kvmppc_get_hasidle(CPUPPCState
*env
)
79 static inline int kvmppc_get_hypercall(CPUPPCState
*env
, uint8_t *buf
, int buf_len
)
84 static inline int kvmppc_read_segment_page_sizes(uint32_t *prop
, int maxcells
)
89 static inline int kvmppc_set_interrupt(PowerPCCPU
*cpu
, int irq
, int level
)
94 static inline void kvmppc_set_papr(PowerPCCPU
*cpu
)
98 static inline void kvmppc_set_mpic_proxy(PowerPCCPU
*cpu
, int mpic_proxy
)
102 static inline int kvmppc_smt_threads(void)
107 static inline int kvmppc_or_tsr_bits(PowerPCCPU
*cpu
, uint32_t tsr_bits
)
112 static inline int kvmppc_clear_tsr_bits(PowerPCCPU
*cpu
, uint32_t tsr_bits
)
117 static inline int kvmppc_set_tcr(PowerPCCPU
*cpu
)
122 static inline int kvmppc_booke_watchdog_enable(PowerPCCPU
*cpu
)
127 #ifndef CONFIG_USER_ONLY
128 static inline off_t
kvmppc_alloc_rma(const char *name
, MemoryRegion
*sysmem
)
133 static inline void *kvmppc_create_spapr_tce(uint32_t liobn
,
134 uint32_t window_size
, int *fd
)
139 static inline int kvmppc_remove_spapr_tce(void *table
, int pfd
,
140 uint32_t window_size
)
145 static inline int kvmppc_reset_htab(int shift_hint
)
150 static inline uint64_t kvmppc_rma_size(uint64_t current_size
,
151 unsigned int hash_shift
)
156 static inline int kvmppc_update_sdr1(CPUPPCState
*env
)
161 #endif /* !CONFIG_USER_ONLY */
163 static inline bool kvmppc_has_cap_epr(void)
168 static inline int kvmppc_define_rtas_kernel_token(uint32_t token
,
169 const char *function
)
174 static inline bool kvmppc_has_cap_htab_fd(void)
179 static inline int kvmppc_get_htab_fd(bool write
)
184 static inline int kvmppc_save_htab(QEMUFile
*f
, int fd
, size_t bufsize
,
190 static inline int kvmppc_load_htab_chunk(QEMUFile
*f
, int fd
, uint32_t index
,
191 uint16_t n_valid
, uint16_t n_invalid
)
196 static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU
*cpu
,
197 target_ulong pte_index
)
202 static inline void kvmppc_hash64_free_pteg(uint64_t token
)
207 static inline void kvmppc_hash64_write_pte(CPUPPCState
*env
,
208 target_ulong pte_index
,
209 target_ulong pte0
, target_ulong pte1
)
217 #define kvmppc_eieio() do { } while (0)
219 #define kvmppc_eieio() \
221 if (kvm_enabled()) { \
222 asm volatile("eieio" : : : "memory"); \
227 #ifndef KVM_INTERRUPT_SET
228 #define KVM_INTERRUPT_SET -1
231 #ifndef KVM_INTERRUPT_UNSET
232 #define KVM_INTERRUPT_UNSET -2
235 #ifndef KVM_INTERRUPT_SET_LEVEL
236 #define KVM_INTERRUPT_SET_LEVEL -3
239 #endif /* __KVM_PPC_H__ */