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