qdev: ignore GlobalProperty.errp for hotplugged devices
[qemu.git] / target-ppc / kvm_ppc.h
blob5461d1082c1a7ca6f81f9d274dd18bf10362b117
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);
58 int kvmppc_put_books_sregs(PowerPCCPU *cpu);
59 PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void);
61 #else
63 static inline uint32_t kvmppc_get_tbfreq(void)
65 return 0;
68 static inline bool kvmppc_get_host_model(char **buf)
70 return false;
73 static inline bool kvmppc_get_host_serial(char **buf)
75 return false;
78 static inline uint64_t kvmppc_get_clockfreq(void)
80 return 0;
83 static inline uint32_t kvmppc_get_vmx(void)
85 return 0;
88 static inline uint32_t kvmppc_get_dfp(void)
90 return 0;
93 static inline int kvmppc_get_hasidle(CPUPPCState *env)
95 return 0;
98 static inline int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len)
100 return -1;
103 static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level)
105 return -1;
108 static inline void kvmppc_enable_logical_ci_hcalls(void)
112 static inline void kvmppc_enable_set_mode_hcall(void)
116 static inline void kvmppc_set_papr(PowerPCCPU *cpu)
120 static inline int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version)
122 return 0;
125 static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy)
129 static inline int kvmppc_smt_threads(void)
131 return 1;
134 static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
136 return 0;
139 static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
141 return 0;
144 static inline int kvmppc_set_tcr(PowerPCCPU *cpu)
146 return 0;
149 static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu)
151 return -1;
154 #ifndef CONFIG_USER_ONLY
155 static inline off_t kvmppc_alloc_rma(void **rma)
157 return 0;
160 static inline bool kvmppc_spapr_use_multitce(void)
162 return false;
165 static inline void *kvmppc_create_spapr_tce(uint32_t liobn,
166 uint32_t window_size, int *fd,
167 bool need_vfio)
169 return NULL;
172 static inline int kvmppc_remove_spapr_tce(void *table, int pfd,
173 uint32_t nb_table)
175 return -1;
178 static inline int kvmppc_reset_htab(int shift_hint)
180 return 0;
183 static inline uint64_t kvmppc_rma_size(uint64_t current_size,
184 unsigned int hash_shift)
186 return ram_size;
189 #endif /* !CONFIG_USER_ONLY */
191 static inline bool kvmppc_has_cap_epr(void)
193 return false;
196 static inline int kvmppc_define_rtas_kernel_token(uint32_t token,
197 const char *function)
199 return -1;
202 static inline bool kvmppc_has_cap_htab_fd(void)
204 return false;
207 static inline int kvmppc_get_htab_fd(bool write)
209 return -1;
212 static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize,
213 int64_t max_ns)
215 abort();
218 static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
219 uint16_t n_valid, uint16_t n_invalid)
221 abort();
224 static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu,
225 target_ulong pte_index)
227 abort();
230 static inline void kvmppc_hash64_free_pteg(uint64_t token)
232 abort();
235 static inline void kvmppc_hash64_write_pte(CPUPPCState *env,
236 target_ulong pte_index,
237 target_ulong pte0, target_ulong pte1)
239 abort();
242 static inline bool kvmppc_has_cap_fixup_hcalls(void)
244 abort();
247 static inline int kvmppc_enable_hwrng(void)
249 return -1;
252 static inline int kvmppc_put_books_sregs(PowerPCCPU *cpu)
254 abort();
257 static inline PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void)
259 return NULL;
262 #endif
264 #ifndef CONFIG_KVM
266 #define kvmppc_eieio() do { } while (0)
268 static inline void kvmppc_dcbst_range(PowerPCCPU *cpu, uint8_t *addr, int len)
272 static inline void kvmppc_icbi_range(PowerPCCPU *cpu, uint8_t *addr, int len)
276 #else /* CONFIG_KVM */
278 #define kvmppc_eieio() \
279 do { \
280 if (kvm_enabled()) { \
281 asm volatile("eieio" : : : "memory"); \
283 } while (0)
285 /* Store data cache blocks back to memory */
286 static inline void kvmppc_dcbst_range(PowerPCCPU *cpu, uint8_t *addr, int len)
288 uint8_t *p;
290 for (p = addr; p < addr + len; p += cpu->env.dcache_line_size) {
291 asm volatile("dcbst 0,%0" : : "r"(p) : "memory");
295 /* Invalidate instruction cache blocks */
296 static inline void kvmppc_icbi_range(PowerPCCPU *cpu, uint8_t *addr, int len)
298 uint8_t *p;
300 for (p = addr; p < addr + len; p += cpu->env.icache_line_size) {
301 asm volatile("icbi 0,%0" : : "r"(p));
305 #endif /* CONFIG_KVM */
307 #ifndef KVM_INTERRUPT_SET
308 #define KVM_INTERRUPT_SET -1
309 #endif
311 #ifndef KVM_INTERRUPT_UNSET
312 #define KVM_INTERRUPT_UNSET -2
313 #endif
315 #ifndef KVM_INTERRUPT_SET_LEVEL
316 #define KVM_INTERRUPT_SET_LEVEL -3
317 #endif
319 #endif /* KVM_PPC_H */