pci core: function pci_bus_init() cleanup
[qemu/ar7.git] / target-ppc / kvm_ppc.h
blobaaa828c055b3798725554331b97582248e659961
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_set_interrupt(PowerPCCPU *cpu, int irq, int level)
103 return -1;
106 static inline void kvmppc_enable_logical_ci_hcalls(void)
110 static inline void kvmppc_enable_set_mode_hcall(void)
114 static inline void kvmppc_set_papr(PowerPCCPU *cpu)
118 static inline int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version)
120 return 0;
123 static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy)
127 static inline int kvmppc_smt_threads(void)
129 return 1;
132 static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
134 return 0;
137 static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
139 return 0;
142 static inline int kvmppc_set_tcr(PowerPCCPU *cpu)
144 return 0;
147 static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu)
149 return -1;
152 #ifndef CONFIG_USER_ONLY
153 static inline off_t kvmppc_alloc_rma(void **rma)
155 return 0;
158 static inline bool kvmppc_spapr_use_multitce(void)
160 return false;
163 static inline void *kvmppc_create_spapr_tce(uint32_t liobn,
164 uint32_t window_size, int *fd,
165 bool vfio_accel)
167 return NULL;
170 static inline int kvmppc_remove_spapr_tce(void *table, int pfd,
171 uint32_t nb_table)
173 return -1;
176 static inline int kvmppc_reset_htab(int shift_hint)
178 return 0;
181 static inline uint64_t kvmppc_rma_size(uint64_t current_size,
182 unsigned int hash_shift)
184 return ram_size;
187 #endif /* !CONFIG_USER_ONLY */
189 static inline bool kvmppc_has_cap_epr(void)
191 return false;
194 static inline int kvmppc_define_rtas_kernel_token(uint32_t token,
195 const char *function)
197 return -1;
200 static inline bool kvmppc_has_cap_htab_fd(void)
202 return false;
205 static inline int kvmppc_get_htab_fd(bool write)
207 return -1;
210 static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize,
211 int64_t max_ns)
213 abort();
216 static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
217 uint16_t n_valid, uint16_t n_invalid)
219 abort();
222 static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu,
223 target_ulong pte_index)
225 abort();
228 static inline void kvmppc_hash64_free_pteg(uint64_t token)
230 abort();
233 static inline void kvmppc_hash64_write_pte(CPUPPCState *env,
234 target_ulong pte_index,
235 target_ulong pte0, target_ulong pte1)
237 abort();
240 static inline bool kvmppc_has_cap_fixup_hcalls(void)
242 abort();
245 static inline int kvmppc_enable_hwrng(void)
247 return -1;
249 #endif
251 #ifndef CONFIG_KVM
252 #define kvmppc_eieio() do { } while (0)
253 #else
254 #define kvmppc_eieio() \
255 do { \
256 if (kvm_enabled()) { \
257 asm volatile("eieio" : : : "memory"); \
259 } while (0)
260 #endif
262 #ifndef KVM_INTERRUPT_SET
263 #define KVM_INTERRUPT_SET -1
264 #endif
266 #ifndef KVM_INTERRUPT_UNSET
267 #define KVM_INTERRUPT_UNSET -2
268 #endif
270 #ifndef KVM_INTERRUPT_SET_LEVEL
271 #define KVM_INTERRUPT_SET_LEVEL -3
272 #endif
274 #endif /* __KVM_PPC_H__ */