vscclient: Add required headers to fix build on FreeBSD
[qemu/ar7.git] / target-ppc / kvm_ppc.h
blob412cc7f3c11819360a9963fb1f718aee90b0d8f0
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 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 int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version);
27 void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy);
28 int kvmppc_smt_threads(void);
29 int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits);
30 int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits);
31 int kvmppc_set_tcr(PowerPCCPU *cpu);
32 int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu);
33 #ifndef CONFIG_USER_ONLY
34 off_t kvmppc_alloc_rma(const char *name, MemoryRegion *sysmem);
35 bool kvmppc_spapr_use_multitce(void);
36 void *kvmppc_create_spapr_tce(uint32_t liobn, uint32_t window_size, int *pfd);
37 int kvmppc_remove_spapr_tce(void *table, int pfd, uint32_t window_size);
38 int kvmppc_reset_htab(int shift_hint);
39 uint64_t kvmppc_rma_size(uint64_t current_size, unsigned int hash_shift);
40 #endif /* !CONFIG_USER_ONLY */
41 bool kvmppc_has_cap_epr(void);
42 int kvmppc_define_rtas_kernel_token(uint32_t token, const char *function);
43 bool kvmppc_has_cap_htab_fd(void);
44 int kvmppc_get_htab_fd(bool write);
45 int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize, int64_t max_ns);
46 int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
47 uint16_t n_valid, uint16_t n_invalid);
48 uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu, target_ulong pte_index);
49 void kvmppc_hash64_free_pteg(uint64_t token);
51 void kvmppc_hash64_write_pte(CPUPPCState *env, target_ulong pte_index,
52 target_ulong pte0, target_ulong pte1);
53 bool kvmppc_has_cap_fixup_hcalls(void);
55 #else
57 static inline uint32_t kvmppc_get_tbfreq(void)
59 return 0;
62 static inline uint64_t kvmppc_get_clockfreq(void)
64 return 0;
67 static inline uint32_t kvmppc_get_vmx(void)
69 return 0;
72 static inline uint32_t kvmppc_get_dfp(void)
74 return 0;
77 static inline int kvmppc_get_hasidle(CPUPPCState *env)
79 return 0;
82 static inline int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len)
84 return -1;
87 static inline int kvmppc_read_segment_page_sizes(uint32_t *prop, int maxcells)
89 return -1;
92 static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level)
94 return -1;
97 static inline void kvmppc_set_papr(PowerPCCPU *cpu)
101 static inline int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version)
103 return 0;
106 static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy)
110 static inline int kvmppc_smt_threads(void)
112 return 1;
115 static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
117 return 0;
120 static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
122 return 0;
125 static inline int kvmppc_set_tcr(PowerPCCPU *cpu)
127 return 0;
130 static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu)
132 return -1;
135 #ifndef CONFIG_USER_ONLY
136 static inline off_t kvmppc_alloc_rma(const char *name, MemoryRegion *sysmem)
138 return 0;
141 static inline bool kvmppc_spapr_use_multitce(void)
143 return false;
146 static inline void *kvmppc_create_spapr_tce(uint32_t liobn,
147 uint32_t window_size, int *fd)
149 return NULL;
152 static inline int kvmppc_remove_spapr_tce(void *table, int pfd,
153 uint32_t nb_table)
155 return -1;
158 static inline int kvmppc_reset_htab(int shift_hint)
160 return -1;
163 static inline uint64_t kvmppc_rma_size(uint64_t current_size,
164 unsigned int hash_shift)
166 return ram_size;
169 static inline int kvmppc_update_sdr1(CPUPPCState *env)
171 return 0;
174 #endif /* !CONFIG_USER_ONLY */
176 static inline bool kvmppc_has_cap_epr(void)
178 return false;
181 static inline int kvmppc_define_rtas_kernel_token(uint32_t token,
182 const char *function)
184 return -1;
187 static inline bool kvmppc_has_cap_htab_fd(void)
189 return false;
192 static inline int kvmppc_get_htab_fd(bool write)
194 return -1;
197 static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize,
198 int64_t max_ns)
200 abort();
203 static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
204 uint16_t n_valid, uint16_t n_invalid)
206 abort();
209 static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu,
210 target_ulong pte_index)
212 abort();
215 static inline void kvmppc_hash64_free_pteg(uint64_t token)
217 abort();
220 static inline void kvmppc_hash64_write_pte(CPUPPCState *env,
221 target_ulong pte_index,
222 target_ulong pte0, target_ulong pte1)
224 abort();
227 static inline bool kvmppc_has_cap_fixup_hcalls(void)
229 abort();
232 #endif
234 #ifndef CONFIG_KVM
235 #define kvmppc_eieio() do { } while (0)
236 #else
237 #define kvmppc_eieio() \
238 do { \
239 if (kvm_enabled()) { \
240 asm volatile("eieio" : : : "memory"); \
242 } while (0)
243 #endif
245 #ifndef KVM_INTERRUPT_SET
246 #define KVM_INTERRUPT_SET -1
247 #endif
249 #ifndef KVM_INTERRUPT_UNSET
250 #define KVM_INTERRUPT_UNSET -2
251 #endif
253 #ifndef KVM_INTERRUPT_SET_LEVEL
254 #define KVM_INTERRUPT_SET_LEVEL -3
255 #endif
257 #endif /* __KVM_PPC_H__ */