target-ppc: Fix invalid SPR read/write warnings
[qemu/ar7.git] / target-ppc / kvm_ppc.h
blob771cfbe82beadd2eeeb2fc7c628e71922f2b488c
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 void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy);
27 int kvmppc_smt_threads(void);
28 int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits);
29 int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits);
30 int kvmppc_set_tcr(PowerPCCPU *cpu);
31 int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu);
32 #ifndef CONFIG_USER_ONLY
33 off_t kvmppc_alloc_rma(const char *name, MemoryRegion *sysmem);
34 void *kvmppc_create_spapr_tce(uint32_t liobn, uint32_t window_size, int *pfd);
35 int kvmppc_remove_spapr_tce(void *table, int pfd, uint32_t window_size);
36 int kvmppc_reset_htab(int shift_hint);
37 uint64_t kvmppc_rma_size(uint64_t current_size, unsigned int hash_shift);
38 #endif /* !CONFIG_USER_ONLY */
39 int kvmppc_fixup_cpu(PowerPCCPU *cpu);
40 bool kvmppc_has_cap_epr(void);
42 #else
44 static inline uint32_t kvmppc_get_tbfreq(void)
46 return 0;
49 static inline uint64_t kvmppc_get_clockfreq(void)
51 return 0;
54 static inline uint32_t kvmppc_get_vmx(void)
56 return 0;
59 static inline uint32_t kvmppc_get_dfp(void)
61 return 0;
64 static inline int kvmppc_get_hasidle(CPUPPCState *env)
66 return 0;
69 static inline int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len)
71 return -1;
74 static inline int kvmppc_read_segment_page_sizes(uint32_t *prop, int maxcells)
76 return -1;
79 static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level)
81 return -1;
84 static inline void kvmppc_set_papr(PowerPCCPU *cpu)
88 static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy)
92 static inline int kvmppc_smt_threads(void)
94 return 1;
97 static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
99 return 0;
102 static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
104 return 0;
107 static inline int kvmppc_set_tcr(PowerPCCPU *cpu)
109 return 0;
112 static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu)
114 return -1;
117 #ifndef CONFIG_USER_ONLY
118 static inline off_t kvmppc_alloc_rma(const char *name, MemoryRegion *sysmem)
120 return 0;
123 static inline void *kvmppc_create_spapr_tce(uint32_t liobn,
124 uint32_t window_size, int *fd)
126 return NULL;
129 static inline int kvmppc_remove_spapr_tce(void *table, int pfd,
130 uint32_t window_size)
132 return -1;
135 static inline int kvmppc_reset_htab(int shift_hint)
137 return -1;
140 static inline uint64_t kvmppc_rma_size(uint64_t current_size,
141 unsigned int hash_shift)
143 return ram_size;
146 static inline int kvmppc_update_sdr1(CPUPPCState *env)
148 return 0;
151 #endif /* !CONFIG_USER_ONLY */
153 static inline int kvmppc_fixup_cpu(PowerPCCPU *cpu)
155 return -1;
158 static inline bool kvmppc_has_cap_epr(void)
160 return false;
162 #endif
164 #ifndef CONFIG_KVM
165 #define kvmppc_eieio() do { } while (0)
166 #else
167 #define kvmppc_eieio() \
168 do { \
169 if (kvm_enabled()) { \
170 asm volatile("eieio" : : : "memory"); \
172 } while (0)
173 #endif
175 #ifndef KVM_INTERRUPT_SET
176 #define KVM_INTERRUPT_SET -1
177 #endif
179 #ifndef KVM_INTERRUPT_UNSET
180 #define KVM_INTERRUPT_UNSET -2
181 #endif
183 #ifndef KVM_INTERRUPT_SET_LEVEL
184 #define KVM_INTERRUPT_SET_LEVEL -3
185 #endif
187 #endif /* __KVM_PPC_H__ */