hw/misc/edu: Convert to realize()
[qemu/ar7.git] / target-ppc / kvm_ppc.h
blob5e1333d9954b375c4e34a150f1131c5dca11add6
1 /*
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.
7 */
9 #ifndef __KVM_PPC_H__
10 #define __KVM_PPC_H__
12 #define TYPE_HOST_POWERPC_CPU "host-" TYPE_POWERPC_CPU
14 #ifdef CONFIG_KVM
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_set_papr(PowerPCCPU *cpu);
28 int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version);
29 void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy);
30 int kvmppc_smt_threads(void);
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);
35 #ifndef CONFIG_USER_ONLY
36 off_t kvmppc_alloc_rma(void **rma);
37 bool kvmppc_spapr_use_multitce(void);
38 void *kvmppc_create_spapr_tce(uint32_t liobn, uint32_t window_size, int *pfd,
39 bool need_vfio);
40 int kvmppc_remove_spapr_tce(void *table, int pfd, uint32_t window_size);
41 int kvmppc_reset_htab(int shift_hint);
42 uint64_t kvmppc_rma_size(uint64_t current_size, unsigned int hash_shift);
43 #endif /* !CONFIG_USER_ONLY */
44 bool kvmppc_has_cap_epr(void);
45 int kvmppc_define_rtas_kernel_token(uint32_t token, const char *function);
46 bool kvmppc_has_cap_htab_fd(void);
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);
51 uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu, target_ulong pte_index);
52 void kvmppc_hash64_free_pteg(uint64_t token);
54 void kvmppc_hash64_write_pte(CPUPPCState *env, target_ulong pte_index,
55 target_ulong pte0, target_ulong pte1);
56 bool kvmppc_has_cap_fixup_hcalls(void);
57 int kvmppc_enable_hwrng(void);
59 #else
61 static inline uint32_t kvmppc_get_tbfreq(void)
63 return 0;
66 static inline bool kvmppc_get_host_model(char **buf)
68 return false;
71 static inline bool kvmppc_get_host_serial(char **buf)
73 return false;
76 static inline uint64_t kvmppc_get_clockfreq(void)
78 return 0;
81 static inline uint32_t kvmppc_get_vmx(void)
83 return 0;
86 static inline uint32_t kvmppc_get_dfp(void)
88 return 0;
91 static inline int kvmppc_get_hasidle(CPUPPCState *env)
93 return 0;
96 static inline int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len)
98 return -1;
101 static inline int kvmppc_read_segment_page_sizes(uint32_t *prop, int maxcells)
103 return -1;
106 static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level)
108 return -1;
111 static inline void kvmppc_enable_logical_ci_hcalls(void)
115 static inline void kvmppc_enable_set_mode_hcall(void)
119 static inline void kvmppc_set_papr(PowerPCCPU *cpu)
123 static inline int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version)
125 return 0;
128 static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy)
132 static inline int kvmppc_smt_threads(void)
134 return 1;
137 static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
139 return 0;
142 static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
144 return 0;
147 static inline int kvmppc_set_tcr(PowerPCCPU *cpu)
149 return 0;
152 static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu)
154 return -1;
157 #ifndef CONFIG_USER_ONLY
158 static inline off_t kvmppc_alloc_rma(void **rma)
160 return 0;
163 static inline bool kvmppc_spapr_use_multitce(void)
165 return false;
168 static inline void *kvmppc_create_spapr_tce(uint32_t liobn,
169 uint32_t window_size, int *fd,
170 bool vfio_accel)
172 return NULL;
175 static inline int kvmppc_remove_spapr_tce(void *table, int pfd,
176 uint32_t nb_table)
178 return -1;
181 static inline int kvmppc_reset_htab(int shift_hint)
183 return 0;
186 static inline uint64_t kvmppc_rma_size(uint64_t current_size,
187 unsigned int hash_shift)
189 return ram_size;
192 static inline int kvmppc_update_sdr1(CPUPPCState *env)
194 return 0;
197 #endif /* !CONFIG_USER_ONLY */
199 static inline bool kvmppc_has_cap_epr(void)
201 return false;
204 static inline int kvmppc_define_rtas_kernel_token(uint32_t token,
205 const char *function)
207 return -1;
210 static inline bool kvmppc_has_cap_htab_fd(void)
212 return false;
215 static inline int kvmppc_get_htab_fd(bool write)
217 return -1;
220 static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize,
221 int64_t max_ns)
223 abort();
226 static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
227 uint16_t n_valid, uint16_t n_invalid)
229 abort();
232 static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu,
233 target_ulong pte_index)
235 abort();
238 static inline void kvmppc_hash64_free_pteg(uint64_t token)
240 abort();
243 static inline void kvmppc_hash64_write_pte(CPUPPCState *env,
244 target_ulong pte_index,
245 target_ulong pte0, target_ulong pte1)
247 abort();
250 static inline bool kvmppc_has_cap_fixup_hcalls(void)
252 abort();
255 static inline int kvmppc_enable_hwrng(void)
257 return -1;
259 #endif
261 #ifndef CONFIG_KVM
262 #define kvmppc_eieio() do { } while (0)
263 #else
264 #define kvmppc_eieio() \
265 do { \
266 if (kvm_enabled()) { \
267 asm volatile("eieio" : : : "memory"); \
269 } while (0)
270 #endif
272 #ifndef KVM_INTERRUPT_SET
273 #define KVM_INTERRUPT_SET -1
274 #endif
276 #ifndef KVM_INTERRUPT_UNSET
277 #define KVM_INTERRUPT_UNSET -2
278 #endif
280 #ifndef KVM_INTERRUPT_SET_LEVEL
281 #define KVM_INTERRUPT_SET_LEVEL -3
282 #endif
284 #endif /* __KVM_PPC_H__ */