net: pcnet: fix source formatting and indentation
[qemu/ar7.git] / target-ppc / kvm_ppc.h
blobbd1d78bfbe33b4892bd8cb6685d7d586ee4fb84d
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_enable_clear_ref_mod_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 need_vfio);
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);
58 bool kvmppc_has_cap_htm(void);
59 int kvmppc_enable_hwrng(void);
60 int kvmppc_put_books_sregs(PowerPCCPU *cpu);
61 PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void);
63 #else
65 static inline uint32_t kvmppc_get_tbfreq(void)
67 return 0;
70 static inline bool kvmppc_get_host_model(char **buf)
72 return false;
75 static inline bool kvmppc_get_host_serial(char **buf)
77 return false;
80 static inline uint64_t kvmppc_get_clockfreq(void)
82 return 0;
85 static inline uint32_t kvmppc_get_vmx(void)
87 return 0;
90 static inline uint32_t kvmppc_get_dfp(void)
92 return 0;
95 static inline int kvmppc_get_hasidle(CPUPPCState *env)
97 return 0;
100 static inline int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len)
102 return -1;
105 static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level)
107 return -1;
110 static inline void kvmppc_enable_logical_ci_hcalls(void)
114 static inline void kvmppc_enable_set_mode_hcall(void)
118 static inline void kvmppc_enable_clear_ref_mod_hcalls(void)
122 static inline void kvmppc_set_papr(PowerPCCPU *cpu)
126 static inline int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version)
128 return 0;
131 static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy)
135 static inline int kvmppc_smt_threads(void)
137 return 1;
140 static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
142 return 0;
145 static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
147 return 0;
150 static inline int kvmppc_set_tcr(PowerPCCPU *cpu)
152 return 0;
155 static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu)
157 return -1;
160 #ifndef CONFIG_USER_ONLY
161 static inline off_t kvmppc_alloc_rma(void **rma)
163 return 0;
166 static inline bool kvmppc_spapr_use_multitce(void)
168 return false;
171 static inline void *kvmppc_create_spapr_tce(uint32_t liobn,
172 uint32_t window_size, int *fd,
173 bool need_vfio)
175 return NULL;
178 static inline int kvmppc_remove_spapr_tce(void *table, int pfd,
179 uint32_t nb_table)
181 return -1;
184 static inline int kvmppc_reset_htab(int shift_hint)
186 return 0;
189 static inline uint64_t kvmppc_rma_size(uint64_t current_size,
190 unsigned int hash_shift)
192 return ram_size;
195 #endif /* !CONFIG_USER_ONLY */
197 static inline bool kvmppc_has_cap_epr(void)
199 return false;
202 static inline int kvmppc_define_rtas_kernel_token(uint32_t token,
203 const char *function)
205 return -1;
208 static inline bool kvmppc_has_cap_htab_fd(void)
210 return false;
213 static inline int kvmppc_get_htab_fd(bool write)
215 return -1;
218 static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize,
219 int64_t max_ns)
221 abort();
224 static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
225 uint16_t n_valid, uint16_t n_invalid)
227 abort();
230 static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu,
231 target_ulong pte_index)
233 abort();
236 static inline void kvmppc_hash64_free_pteg(uint64_t token)
238 abort();
241 static inline void kvmppc_hash64_write_pte(CPUPPCState *env,
242 target_ulong pte_index,
243 target_ulong pte0, target_ulong pte1)
245 abort();
248 static inline bool kvmppc_has_cap_fixup_hcalls(void)
250 abort();
253 static inline bool kvmppc_has_cap_htm(void)
255 return false;
258 static inline int kvmppc_enable_hwrng(void)
260 return -1;
263 static inline int kvmppc_put_books_sregs(PowerPCCPU *cpu)
265 abort();
268 static inline PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void)
270 return NULL;
273 #endif
275 #ifndef CONFIG_KVM
277 #define kvmppc_eieio() do { } while (0)
279 static inline void kvmppc_dcbst_range(PowerPCCPU *cpu, uint8_t *addr, int len)
283 static inline void kvmppc_icbi_range(PowerPCCPU *cpu, uint8_t *addr, int len)
287 #else /* CONFIG_KVM */
289 #define kvmppc_eieio() \
290 do { \
291 if (kvm_enabled()) { \
292 asm volatile("eieio" : : : "memory"); \
294 } while (0)
296 /* Store data cache blocks back to memory */
297 static inline void kvmppc_dcbst_range(PowerPCCPU *cpu, uint8_t *addr, int len)
299 uint8_t *p;
301 for (p = addr; p < addr + len; p += cpu->env.dcache_line_size) {
302 asm volatile("dcbst 0,%0" : : "r"(p) : "memory");
306 /* Invalidate instruction cache blocks */
307 static inline void kvmppc_icbi_range(PowerPCCPU *cpu, uint8_t *addr, int len)
309 uint8_t *p;
311 for (p = addr; p < addr + len; p += cpu->env.icache_line_size) {
312 asm volatile("icbi 0,%0" : : "r"(p));
316 #endif /* CONFIG_KVM */
318 #ifndef KVM_INTERRUPT_SET
319 #define KVM_INTERRUPT_SET -1
320 #endif
322 #ifndef KVM_INTERRUPT_UNSET
323 #define KVM_INTERRUPT_UNSET -2
324 #endif
326 #ifndef KVM_INTERRUPT_SET_LEVEL
327 #define KVM_INTERRUPT_SET_LEVEL -3
328 #endif
330 #endif /* KVM_PPC_H */