]>
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); | |
1a61a9ae | 22 | int kvmppc_get_hasidle(CPUPPCState *env); |
1328c2bf | 23 | int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len); |
1bc22652 AF |
24 | int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level); |
25 | void kvmppc_set_papr(PowerPCCPU *cpu); | |
5b95b8b9 | 26 | void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy); |
e97c3636 | 27 | int kvmppc_smt_threads(void); |
31f2cb8f BB |
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); | |
98efaf75 | 32 | #ifndef CONFIG_USER_ONLY |
354ac20a | 33 | off_t kvmppc_alloc_rma(const char *name, MemoryRegion *sysmem); |
0f5cb298 DG |
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); | |
7f763a5d DG |
36 | int kvmppc_reset_htab(int shift_hint); |
37 | uint64_t kvmppc_rma_size(uint64_t current_size, unsigned int hash_shift); | |
98efaf75 | 38 | #endif /* !CONFIG_USER_ONLY */ |
3b961124 | 39 | bool kvmppc_has_cap_epr(void); |
feaa64c4 | 40 | int kvmppc_define_rtas_kernel_token(uint32_t token, const char *function); |
7c43bca0 | 41 | bool kvmppc_has_cap_htab_fd(void); |
e68cb8b4 AK |
42 | int kvmppc_get_htab_fd(bool write); |
43 | int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize, int64_t max_ns); | |
44 | int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index, | |
45 | uint16_t n_valid, uint16_t n_invalid); | |
7c43bca0 AK |
46 | uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu, target_ulong pte_index); |
47 | void kvmppc_hash64_free_pteg(uint64_t token); | |
fc87e185 | 48 | |
c1385933 AK |
49 | void kvmppc_hash64_write_pte(CPUPPCState *env, target_ulong pte_index, |
50 | target_ulong pte0, target_ulong pte1); | |
51 | ||
921e28db AG |
52 | #else |
53 | ||
54 | static inline uint32_t kvmppc_get_tbfreq(void) | |
55 | { | |
56 | return 0; | |
57 | } | |
58 | ||
59 | static inline uint64_t kvmppc_get_clockfreq(void) | |
60 | { | |
61 | return 0; | |
62 | } | |
63 | ||
6659394f DG |
64 | static inline uint32_t kvmppc_get_vmx(void) |
65 | { | |
66 | return 0; | |
67 | } | |
68 | ||
69 | static inline uint32_t kvmppc_get_dfp(void) | |
70 | { | |
71 | return 0; | |
72 | } | |
73 | ||
1a61a9ae SY |
74 | static inline int kvmppc_get_hasidle(CPUPPCState *env) |
75 | { | |
76 | return 0; | |
77 | } | |
78 | ||
1328c2bf | 79 | static inline int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_len) |
921e28db AG |
80 | { |
81 | return -1; | |
82 | } | |
83 | ||
4656e1f0 BH |
84 | static inline int kvmppc_read_segment_page_sizes(uint32_t *prop, int maxcells) |
85 | { | |
86 | return -1; | |
87 | } | |
88 | ||
1bc22652 | 89 | static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level) |
921e28db AG |
90 | { |
91 | return -1; | |
92 | } | |
93 | ||
1bc22652 | 94 | static inline void kvmppc_set_papr(PowerPCCPU *cpu) |
f61b4bed AG |
95 | { |
96 | } | |
97 | ||
5b95b8b9 AG |
98 | static inline void kvmppc_set_mpic_proxy(PowerPCCPU *cpu, int mpic_proxy) |
99 | { | |
100 | } | |
101 | ||
e97c3636 DG |
102 | static inline int kvmppc_smt_threads(void) |
103 | { | |
104 | return 1; | |
105 | } | |
106 | ||
31f2cb8f BB |
107 | static inline int kvmppc_or_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits) |
108 | { | |
109 | return 0; | |
110 | } | |
111 | ||
112 | static inline int kvmppc_clear_tsr_bits(PowerPCCPU *cpu, uint32_t tsr_bits) | |
113 | { | |
114 | return 0; | |
115 | } | |
116 | ||
117 | static inline int kvmppc_set_tcr(PowerPCCPU *cpu) | |
118 | { | |
119 | return 0; | |
120 | } | |
121 | ||
122 | static inline int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu) | |
123 | { | |
124 | return -1; | |
125 | } | |
126 | ||
98efaf75 | 127 | #ifndef CONFIG_USER_ONLY |
354ac20a DG |
128 | static inline off_t kvmppc_alloc_rma(const char *name, MemoryRegion *sysmem) |
129 | { | |
130 | return 0; | |
131 | } | |
132 | ||
0f5cb298 DG |
133 | static inline void *kvmppc_create_spapr_tce(uint32_t liobn, |
134 | uint32_t window_size, int *fd) | |
135 | { | |
136 | return NULL; | |
137 | } | |
138 | ||
139 | static inline int kvmppc_remove_spapr_tce(void *table, int pfd, | |
140 | uint32_t window_size) | |
141 | { | |
142 | return -1; | |
143 | } | |
7f763a5d DG |
144 | |
145 | static inline int kvmppc_reset_htab(int shift_hint) | |
146 | { | |
147 | return -1; | |
148 | } | |
149 | ||
150 | static inline uint64_t kvmppc_rma_size(uint64_t current_size, | |
151 | unsigned int hash_shift) | |
152 | { | |
153 | return ram_size; | |
154 | } | |
155 | ||
156 | static inline int kvmppc_update_sdr1(CPUPPCState *env) | |
157 | { | |
158 | return 0; | |
159 | } | |
160 | ||
98efaf75 | 161 | #endif /* !CONFIG_USER_ONLY */ |
0f5cb298 | 162 | |
3b961124 SY |
163 | static inline bool kvmppc_has_cap_epr(void) |
164 | { | |
165 | return false; | |
166 | } | |
e68cb8b4 | 167 | |
feaa64c4 DG |
168 | static inline int kvmppc_define_rtas_kernel_token(uint32_t token, |
169 | const char *function) | |
170 | { | |
171 | return -1; | |
172 | } | |
173 | ||
7c43bca0 AK |
174 | static inline bool kvmppc_has_cap_htab_fd(void) |
175 | { | |
176 | return false; | |
177 | } | |
178 | ||
e68cb8b4 AK |
179 | static inline int kvmppc_get_htab_fd(bool write) |
180 | { | |
181 | return -1; | |
182 | } | |
183 | ||
184 | static inline int kvmppc_save_htab(QEMUFile *f, int fd, size_t bufsize, | |
185 | int64_t max_ns) | |
186 | { | |
187 | abort(); | |
188 | } | |
189 | ||
190 | static inline int kvmppc_load_htab_chunk(QEMUFile *f, int fd, uint32_t index, | |
191 | uint16_t n_valid, uint16_t n_invalid) | |
192 | { | |
193 | abort(); | |
194 | } | |
195 | ||
7c43bca0 AK |
196 | static inline uint64_t kvmppc_hash64_read_pteg(PowerPCCPU *cpu, |
197 | target_ulong pte_index) | |
198 | { | |
199 | abort(); | |
200 | } | |
201 | ||
202 | static inline void kvmppc_hash64_free_pteg(uint64_t token) | |
203 | { | |
204 | abort(); | |
205 | } | |
206 | ||
c1385933 AK |
207 | static inline void kvmppc_hash64_write_pte(CPUPPCState *env, |
208 | target_ulong pte_index, | |
209 | target_ulong pte0, target_ulong pte1) | |
210 | { | |
211 | abort(); | |
212 | } | |
213 | ||
921e28db AG |
214 | #endif |
215 | ||
b45d63b6 BH |
216 | #ifndef CONFIG_KVM |
217 | #define kvmppc_eieio() do { } while (0) | |
218 | #else | |
219 | #define kvmppc_eieio() \ | |
220 | do { \ | |
221 | if (kvm_enabled()) { \ | |
222 | asm volatile("eieio" : : : "memory"); \ | |
223 | } \ | |
224 | } while (0) | |
225 | #endif | |
226 | ||
fc87e185 AG |
227 | #ifndef KVM_INTERRUPT_SET |
228 | #define KVM_INTERRUPT_SET -1 | |
229 | #endif | |
230 | ||
231 | #ifndef KVM_INTERRUPT_UNSET | |
232 | #define KVM_INTERRUPT_UNSET -2 | |
233 | #endif | |
234 | ||
235 | #ifndef KVM_INTERRUPT_SET_LEVEL | |
236 | #define KVM_INTERRUPT_SET_LEVEL -3 | |
237 | #endif | |
dc333cd6 | 238 | |
d76d1650 | 239 | #endif /* __KVM_PPC_H__ */ |