m68k: is_mem is useless
[qemu.git] / target-ppc / kvm_ppc.h
blob4d30e2795177d2150ef1eeba435ef597d922d2de
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 void kvmppc_init(void);
16 #ifdef CONFIG_KVM
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 bool kvmppc_get_host_model(char **buf);
23 bool kvmppc_get_host_serial(char **buf);
24 int kvmppc_get_hasidle(CPUPPCState *env);
25 int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len);
26 int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level);
27 void kvmppc_enable_logical_ci_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,
40 bool vfio_accel);
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);
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_set_papr(PowerPCCPU *cpu)
119 static inline int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version)
121 return 0;
124 static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy)
128 static inline int kvmppc_smt_threads(void)
130 return 1;
133 static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
135 return 0;
138 static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
140 return 0;
143 static inline int kvmppc_set_tcr(PowerPCCPU *cpu)
145 return 0;
148 static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu)
150 return -1;
153 #ifndef CONFIG_USER_ONLY
154 static inline off_t kvmppc_alloc_rma(void **rma)
156 return 0;
159 static inline bool kvmppc_spapr_use_multitce(void)
161 return false;
164 static inline void *kvmppc_create_spapr_tce(uint32_t liobn,
165 uint32_t window_size, int *fd,
166 bool vfio_accel)
168 return NULL;
171 static inline int kvmppc_remove_spapr_tce(void *table, int pfd,
172 uint32_t nb_table)
174 return -1;
177 static inline int kvmppc_reset_htab(int shift_hint)
179 return -1;
182 static inline uint64_t kvmppc_rma_size(uint64_t current_size,
183 unsigned int hash_shift)
185 return ram_size;
188 static inline int kvmppc_update_sdr1(CPUPPCState *env)
190 return 0;
193 #endif /* !CONFIG_USER_ONLY */
195 static inline bool kvmppc_has_cap_epr(void)
197 return false;
200 static inline int kvmppc_define_rtas_kernel_token(uint32_t token,
201 const char *function)
203 return -1;
206 static inline bool kvmppc_has_cap_htab_fd(void)
208 return false;
211 static inline int kvmppc_get_htab_fd(bool write)
213 return -1;
216 static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize,
217 int64_t max_ns)
219 abort();
222 static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
223 uint16_t n_valid, uint16_t n_invalid)
225 abort();
228 static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu,
229 target_ulong pte_index)
231 abort();
234 static inline void kvmppc_hash64_free_pteg(uint64_t token)
236 abort();
239 static inline void kvmppc_hash64_write_pte(CPUPPCState *env,
240 target_ulong pte_index,
241 target_ulong pte0, target_ulong pte1)
243 abort();
246 static inline bool kvmppc_has_cap_fixup_hcalls(void)
248 abort();
251 #endif
253 #ifndef CONFIG_KVM
254 #define kvmppc_eieio() do { } while (0)
255 #else
256 #define kvmppc_eieio() \
257 do { \
258 if (kvm_enabled()) { \
259 asm volatile("eieio" : : : "memory"); \
261 } while (0)
262 #endif
264 #ifndef KVM_INTERRUPT_SET
265 #define KVM_INTERRUPT_SET -1
266 #endif
268 #ifndef KVM_INTERRUPT_UNSET
269 #define KVM_INTERRUPT_UNSET -2
270 #endif
272 #ifndef KVM_INTERRUPT_SET_LEVEL
273 #define KVM_INTERRUPT_SET_LEVEL -3
274 #endif
276 #endif /* __KVM_PPC_H__ */