]> git.proxmox.com Git - mirror_qemu.git/blame - target-ppc/kvm_ppc.h
spapr_pci: Use correct DMA LIOBN when composing the device tree
[mirror_qemu.git] / target-ppc / kvm_ppc.h
CommitLineData
d76d1650
AJ
1/*
2 * Copyright 2008 IBM Corporation.
3 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
4 *
5 * This work is licensed under the GNU GPL license version 2 or later.
6 *
7 */
8
9#ifndef __KVM_PPC_H__
10#define __KVM_PPC_H__
11
2985b86b
AF
12#define TYPE_HOST_POWERPC_CPU "host-" TYPE_POWERPC_CPU
13
921e28db
AG
14#ifdef CONFIG_KVM
15
dc333cd6 16uint32_t kvmppc_get_tbfreq(void);
eadaada1 17uint64_t kvmppc_get_clockfreq(void);
6659394f
DG
18uint32_t kvmppc_get_vmx(void);
19uint32_t kvmppc_get_dfp(void);
ef951443
ND
20bool kvmppc_get_host_model(char **buf);
21bool kvmppc_get_host_serial(char **buf);
1a61a9ae 22int kvmppc_get_hasidle(CPUPPCState *env);
1328c2bf 23int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len);
1bc22652 24int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level);
026bfd89 25void kvmppc_enable_logical_ci_hcalls(void);
ef9971dd 26void kvmppc_enable_set_mode_hcall(void);
1bc22652 27void kvmppc_set_papr(PowerPCCPU *cpu);
6db5bb0f 28int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version);
5b95b8b9 29void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy);
e97c3636 30int kvmppc_smt_threads(void);
31f2cb8f
BB
31int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits);
32int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits);
33int kvmppc_set_tcr(PowerPCCPU *cpu);
34int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu);
98efaf75 35#ifndef CONFIG_USER_ONLY
658fa66b 36off_t kvmppc_alloc_rma(void **rma);
da95324e 37bool kvmppc_spapr_use_multitce(void);
9bb62a07 38void *kvmppc_create_spapr_tce(uint32_t liobn, uint32_t window_size, int *pfd,
6a81dd17 39 bool need_vfio);
0f5cb298 40int kvmppc_remove_spapr_tce(void *table, int pfd, uint32_t window_size);
7f763a5d
DG
41int kvmppc_reset_htab(int shift_hint);
42uint64_t kvmppc_rma_size(uint64_t current_size, unsigned int hash_shift);
98efaf75 43#endif /* !CONFIG_USER_ONLY */
3b961124 44bool kvmppc_has_cap_epr(void);
feaa64c4 45int kvmppc_define_rtas_kernel_token(uint32_t token, const char *function);
7c43bca0 46bool kvmppc_has_cap_htab_fd(void);
e68cb8b4
AK
47int kvmppc_get_htab_fd(bool write);
48int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize, int64_t max_ns);
49int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
50 uint16_t n_valid, uint16_t n_invalid);
7c43bca0
AK
51uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu, target_ulong pte_index);
52void kvmppc_hash64_free_pteg(uint64_t token);
fc87e185 53
c1385933
AK
54void kvmppc_hash64_write_pte(CPUPPCState *env, target_ulong pte_index,
55 target_ulong pte0, target_ulong pte1);
87a91de6 56bool kvmppc_has_cap_fixup_hcalls(void);
4d9392be 57int kvmppc_enable_hwrng(void);
e5c0d3ce 58int kvmppc_put_books_sregs(PowerPCCPU *cpu);
c1385933 59
921e28db
AG
60#else
61
62static inline uint32_t kvmppc_get_tbfreq(void)
63{
64 return 0;
65}
66
ef951443
ND
67static inline bool kvmppc_get_host_model(char **buf)
68{
69 return false;
70}
71
72static inline bool kvmppc_get_host_serial(char **buf)
73{
74 return false;
75}
76
921e28db
AG
77static inline uint64_t kvmppc_get_clockfreq(void)
78{
79 return 0;
80}
81
6659394f
DG
82static inline uint32_t kvmppc_get_vmx(void)
83{
84 return 0;
85}
86
87static inline uint32_t kvmppc_get_dfp(void)
88{
89 return 0;
90}
91
1a61a9ae
SY
92static inline int kvmppc_get_hasidle(CPUPPCState *env)
93{
94 return 0;
95}
96
1328c2bf 97static inline int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len)
921e28db
AG
98{
99 return -1;
100}
101
1bc22652 102static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level)
921e28db
AG
103{
104 return -1;
105}
106
026bfd89
DG
107static inline void kvmppc_enable_logical_ci_hcalls(void)
108{
109}
110
ef9971dd
AK
111static inline void kvmppc_enable_set_mode_hcall(void)
112{
113}
114
1bc22652 115static inline void kvmppc_set_papr(PowerPCCPU *cpu)
f61b4bed
AG
116{
117}
118
6db5bb0f
AK
119static inline int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version)
120{
121 return 0;
122}
123
5b95b8b9
AG
124static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy)
125{
126}
127
e97c3636
DG
128static inline int kvmppc_smt_threads(void)
129{
130 return 1;
131}
132
31f2cb8f
BB
133static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
134{
135 return 0;
136}
137
138static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
139{
140 return 0;
141}
142
143static inline int kvmppc_set_tcr(PowerPCCPU *cpu)
144{
145 return 0;
146}
147
148static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu)
149{
150 return -1;
151}
152
98efaf75 153#ifndef CONFIG_USER_ONLY
658fa66b 154static inline off_t kvmppc_alloc_rma(void **rma)
354ac20a
DG
155{
156 return 0;
157}
158
da95324e
AK
159static inline bool kvmppc_spapr_use_multitce(void)
160{
161 return false;
162}
163
0f5cb298 164static inline void *kvmppc_create_spapr_tce(uint32_t liobn,
9bb62a07
AK
165 uint32_t window_size, int *fd,
166 bool vfio_accel)
0f5cb298
DG
167{
168 return NULL;
169}
170
171static inline int kvmppc_remove_spapr_tce(void *table, int pfd,
523e7b8a 172 uint32_t nb_table)
0f5cb298
DG
173{
174 return -1;
175}
7f763a5d
DG
176
177static inline int kvmppc_reset_htab(int shift_hint)
178{
a3166f8f 179 return 0;
7f763a5d
DG
180}
181
182static inline uint64_t kvmppc_rma_size(uint64_t current_size,
183 unsigned int hash_shift)
184{
185 return ram_size;
186}
187
98efaf75 188#endif /* !CONFIG_USER_ONLY */
0f5cb298 189
3b961124
SY
190static inline bool kvmppc_has_cap_epr(void)
191{
192 return false;
193}
e68cb8b4 194
feaa64c4
DG
195static inline int kvmppc_define_rtas_kernel_token(uint32_t token,
196 const char *function)
197{
198 return -1;
199}
200
7c43bca0
AK
201static inline bool kvmppc_has_cap_htab_fd(void)
202{
203 return false;
204}
205
e68cb8b4
AK
206static inline int kvmppc_get_htab_fd(bool write)
207{
208 return -1;
209}
210
211static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize,
212 int64_t max_ns)
213{
214 abort();
215}
216
217static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
218 uint16_t n_valid, uint16_t n_invalid)
219{
220 abort();
221}
222
7c43bca0
AK
223static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu,
224 target_ulong pte_index)
225{
226 abort();
227}
228
229static inline void kvmppc_hash64_free_pteg(uint64_t token)
230{
231 abort();
232}
233
c1385933
AK
234static inline void kvmppc_hash64_write_pte(CPUPPCState *env,
235 target_ulong pte_index,
236 target_ulong pte0, target_ulong pte1)
237{
238 abort();
239}
240
87a91de6
AG
241static inline bool kvmppc_has_cap_fixup_hcalls(void)
242{
243 abort();
244}
245
4d9392be
TH
246static inline int kvmppc_enable_hwrng(void)
247{
248 return -1;
249}
e5c0d3ce
DG
250
251static inline int kvmppc_put_books_sregs(PowerPCCPU *cpu)
252{
253 abort();
254}
921e28db
AG
255#endif
256
b45d63b6 257#ifndef CONFIG_KVM
3240dd9a 258
b45d63b6 259#define kvmppc_eieio() do { } while (0)
3240dd9a
TH
260
261static inline void kvmppc_dcbst_range(PowerPCCPU *cpu, uint8_t *addr, int len)
262{
263}
264
265static inline void kvmppc_icbi_range(PowerPCCPU *cpu, uint8_t *addr, int len)
266{
267}
268
269#else /* CONFIG_KVM */
270
b45d63b6
BH
271#define kvmppc_eieio() \
272 do { \
273 if (kvm_enabled()) { \
274 asm volatile("eieio" : : : "memory"); \
275 } \
276 } while (0)
3240dd9a
TH
277
278/* Store data cache blocks back to memory */
279static inline void kvmppc_dcbst_range(PowerPCCPU *cpu, uint8_t *addr, int len)
280{
281 uint8_t *p;
282
283 for (p = addr; p < addr + len; p += cpu->env.dcache_line_size) {
284 asm volatile("dcbst 0,%0" : : "r"(p) : "memory");
285 }
286}
287
288/* Invalidate instruction cache blocks */
289static inline void kvmppc_icbi_range(PowerPCCPU *cpu, uint8_t *addr, int len)
290{
291 uint8_t *p;
292
293 for (p = addr; p < addr + len; p += cpu->env.icache_line_size) {
294 asm volatile("icbi 0,%0" : : "r"(p));
295 }
296}
297
298#endif /* CONFIG_KVM */
b45d63b6 299
fc87e185
AG
300#ifndef KVM_INTERRUPT_SET
301#define KVM_INTERRUPT_SET -1
302#endif
303
304#ifndef KVM_INTERRUPT_UNSET
305#define KVM_INTERRUPT_UNSET -2
306#endif
307
308#ifndef KVM_INTERRUPT_SET_LEVEL
309#define KVM_INTERRUPT_SET_LEVEL -3
310#endif
dc333cd6 311
d76d1650 312#endif /* __KVM_PPC_H__ */