]> Git Repo - qemu.git/blame - target-ppc/kvm_ppc.h
ppc/spapr: Fix buffer overflow in spapr_populate_drconf_memory()
[qemu.git] / target-ppc / kvm_ppc.h
CommitLineData
d76d1650
AJ
1/*
2 * Copyright 2008 IBM Corporation.
3 * Authors: Hollis Blanchard <[email protected]>
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
AK
38void *kvmppc_create_spapr_tce(uint32_t liobn, uint32_t window_size, int *pfd,
39 bool vfio_accel);
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);
c1385933 57
921e28db
AG
58#else
59
60static inline uint32_t kvmppc_get_tbfreq(void)
61{
62 return 0;
63}
64
ef951443
ND
65static inline bool kvmppc_get_host_model(char **buf)
66{
67 return false;
68}
69
70static inline bool kvmppc_get_host_serial(char **buf)
71{
72 return false;
73}
74
921e28db
AG
75static inline uint64_t kvmppc_get_clockfreq(void)
76{
77 return 0;
78}
79
6659394f
DG
80static inline uint32_t kvmppc_get_vmx(void)
81{
82 return 0;
83}
84
85static inline uint32_t kvmppc_get_dfp(void)
86{
87 return 0;
88}
89
1a61a9ae
SY
90static inline int kvmppc_get_hasidle(CPUPPCState *env)
91{
92 return 0;
93}
94
1328c2bf 95static inline int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len)
921e28db
AG
96{
97 return -1;
98}
99
4656e1f0
BH
100static inline int kvmppc_read_segment_page_sizes(uint32_t *prop, int maxcells)
101{
102 return -1;
103}
104
1bc22652 105static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level)
921e28db
AG
106{
107 return -1;
108}
109
026bfd89
DG
110static inline void kvmppc_enable_logical_ci_hcalls(void)
111{
112}
113
ef9971dd
AK
114static inline void kvmppc_enable_set_mode_hcall(void)
115{
116}
117
1bc22652 118static inline void kvmppc_set_papr(PowerPCCPU *cpu)
f61b4bed
AG
119{
120}
121
6db5bb0f
AK
122static inline int kvmppc_set_compat(PowerPCCPU *cpu, uint32_t cpu_version)
123{
124 return 0;
125}
126
5b95b8b9
AG
127static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy)
128{
129}
130
e97c3636
DG
131static inline int kvmppc_smt_threads(void)
132{
133 return 1;
134}
135
31f2cb8f
BB
136static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
137{
138 return 0;
139}
140
141static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits)
142{
143 return 0;
144}
145
146static inline int kvmppc_set_tcr(PowerPCCPU *cpu)
147{
148 return 0;
149}
150
151static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu)
152{
153 return -1;
154}
155
98efaf75 156#ifndef CONFIG_USER_ONLY
658fa66b 157static inline off_t kvmppc_alloc_rma(void **rma)
354ac20a
DG
158{
159 return 0;
160}
161
da95324e
AK
162static inline bool kvmppc_spapr_use_multitce(void)
163{
164 return false;
165}
166
0f5cb298 167static inline void *kvmppc_create_spapr_tce(uint32_t liobn,
9bb62a07
AK
168 uint32_t window_size, int *fd,
169 bool vfio_accel)
0f5cb298
DG
170{
171 return NULL;
172}
173
174static inline int kvmppc_remove_spapr_tce(void *table, int pfd,
523e7b8a 175 uint32_t nb_table)
0f5cb298
DG
176{
177 return -1;
178}
7f763a5d
DG
179
180static inline int kvmppc_reset_htab(int shift_hint)
181{
182 return -1;
183}
184
185static inline uint64_t kvmppc_rma_size(uint64_t current_size,
186 unsigned int hash_shift)
187{
188 return ram_size;
189}
190
191static inline int kvmppc_update_sdr1(CPUPPCState *env)
192{
193 return 0;
194}
195
98efaf75 196#endif /* !CONFIG_USER_ONLY */
0f5cb298 197
3b961124
SY
198static inline bool kvmppc_has_cap_epr(void)
199{
200 return false;
201}
e68cb8b4 202
feaa64c4
DG
203static inline int kvmppc_define_rtas_kernel_token(uint32_t token,
204 const char *function)
205{
206 return -1;
207}
208
7c43bca0
AK
209static inline bool kvmppc_has_cap_htab_fd(void)
210{
211 return false;
212}
213
e68cb8b4
AK
214static inline int kvmppc_get_htab_fd(bool write)
215{
216 return -1;
217}
218
219static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize,
220 int64_t max_ns)
221{
222 abort();
223}
224
225static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index,
226 uint16_t n_valid, uint16_t n_invalid)
227{
228 abort();
229}
230
7c43bca0
AK
231static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu,
232 target_ulong pte_index)
233{
234 abort();
235}
236
237static inline void kvmppc_hash64_free_pteg(uint64_t token)
238{
239 abort();
240}
241
c1385933
AK
242static inline void kvmppc_hash64_write_pte(CPUPPCState *env,
243 target_ulong pte_index,
244 target_ulong pte0, target_ulong pte1)
245{
246 abort();
247}
248
87a91de6
AG
249static inline bool kvmppc_has_cap_fixup_hcalls(void)
250{
251 abort();
252}
253
921e28db
AG
254#endif
255
b45d63b6
BH
256#ifndef CONFIG_KVM
257#define kvmppc_eieio() do { } while (0)
258#else
259#define kvmppc_eieio() \
260 do { \
261 if (kvm_enabled()) { \
262 asm volatile("eieio" : : : "memory"); \
263 } \
264 } while (0)
265#endif
266
fc87e185
AG
267#ifndef KVM_INTERRUPT_SET
268#define KVM_INTERRUPT_SET -1
269#endif
270
271#ifndef KVM_INTERRUPT_UNSET
272#define KVM_INTERRUPT_UNSET -2
273#endif
274
275#ifndef KVM_INTERRUPT_SET_LEVEL
276#define KVM_INTERRUPT_SET_LEVEL -3
277#endif
dc333cd6 278
d76d1650 279#endif /* __KVM_PPC_H__ */
This page took 0.699356 seconds and 4 git commands to generate.