blob: fa19e2f1a874b3878d0cd556bc5c39417ff1a08d [file] [log] [blame]
Alexander Graf4e3420252009-10-30 05:47:05 +00001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
14 *
15 * Copyright SUSE Linux Products GmbH 2009
16 *
17 * Authors: Alexander Graf <agraf@suse.de>
18 */
19
20#ifndef __ASM_KVM_BOOK3S_H__
21#define __ASM_KVM_BOOK3S_H__
22
23#include <linux/types.h>
24#include <linux/kvm_host.h>
Alexander Graf2191d652010-04-16 00:11:32 +020025#include <asm/kvm_book3s_asm.h>
Alexander Graf4e3420252009-10-30 05:47:05 +000026
Alexander Graf4e3420252009-10-30 05:47:05 +000027struct kvmppc_bat {
Alexander Grafe15a1132009-11-30 03:02:02 +000028 u64 raw;
Alexander Graf4e3420252009-10-30 05:47:05 +000029 u32 bepi;
30 u32 bepi_mask;
Alexander Graf4e3420252009-10-30 05:47:05 +000031 u32 brpn;
32 u8 wimg;
33 u8 pp;
Alexander Graf3ed9c6d2010-03-24 21:48:36 +010034 bool vs : 1;
35 bool vp : 1;
Alexander Graf4e3420252009-10-30 05:47:05 +000036};
37
38struct kvmppc_sid_map {
39 u64 guest_vsid;
40 u64 guest_esid;
41 u64 host_vsid;
Alexander Graf3ed9c6d2010-03-24 21:48:36 +010042 bool valid : 1;
Alexander Graf4e3420252009-10-30 05:47:05 +000043};
44
45#define SID_MAP_BITS 9
46#define SID_MAP_NUM (1 << SID_MAP_BITS)
47#define SID_MAP_MASK (SID_MAP_NUM - 1)
48
Alexander Graf8b6db3b2010-08-15 08:04:24 +020049#ifdef CONFIG_PPC_BOOK3S_64
50#define SID_CONTEXTS 1
51#else
52#define SID_CONTEXTS 128
53#define VSID_POOL_SIZE (SID_CONTEXTS * 16)
54#endif
55
Paul Mackerrasc4befc52011-06-29 00:17:33 +000056struct hpte_cache {
57 struct hlist_node list_pte;
58 struct hlist_node list_pte_long;
59 struct hlist_node list_vpte;
60 struct hlist_node list_vpte_long;
61 struct rcu_head rcu_head;
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +000062 u64 host_vpn;
Paul Mackerrasc4befc52011-06-29 00:17:33 +000063 u64 pfn;
64 ulong slot;
65 struct kvmppc_pte pte;
66};
67
Alexander Graf4e3420252009-10-30 05:47:05 +000068struct kvmppc_vcpu_book3s {
69 struct kvm_vcpu vcpu;
Alexander Grafc7f38f42010-04-16 00:11:40 +020070 struct kvmppc_book3s_shadow_vcpu *shadow_vcpu;
Alexander Graf4e3420252009-10-30 05:47:05 +000071 struct kvmppc_sid_map sid_map[SID_MAP_NUM];
Alexander Graf4e3420252009-10-30 05:47:05 +000072 struct {
73 u64 esid;
74 u64 vsid;
75 } slb_shadow[64];
76 u8 slb_shadow_max;
Alexander Graf4e3420252009-10-30 05:47:05 +000077 struct kvmppc_bat ibat[8];
78 struct kvmppc_bat dbat[8];
79 u64 hid[6];
Alexander Grafd6d549b2010-02-19 11:00:33 +010080 u64 gqr[8];
Alexander Graf4e3420252009-10-30 05:47:05 +000081 u64 sdr1;
Alexander Graf4e3420252009-10-30 05:47:05 +000082 u64 hior;
83 u64 msr_mask;
Paul Mackerrasb0a94d42012-11-04 18:15:43 +000084 u64 purr_offset;
85 u64 spurr_offset;
Alexander Graf8b6db3b2010-08-15 08:04:24 +020086#ifdef CONFIG_PPC_BOOK3S_32
87 u32 vsid_pool[VSID_POOL_SIZE];
Benjamin Herrenschmidtffe36492012-03-23 11:21:14 +110088 u32 vsid_next;
Alexander Graf8b6db3b2010-08-15 08:04:24 +020089#else
Benjamin Herrenschmidtffe36492012-03-23 11:21:14 +110090 u64 proto_vsid_first;
91 u64 proto_vsid_max;
92 u64 proto_vsid_next;
Alexander Graf8b6db3b2010-08-15 08:04:24 +020093#endif
94 int context_id[SID_CONTEXTS];
Paul Mackerrasc4befc52011-06-29 00:17:33 +000095
Alexander Graf1022fc32011-09-14 21:45:23 +020096 bool hior_explicit; /* HIOR is set by ioctl, not PVR */
97
Paul Mackerrasc4befc52011-06-29 00:17:33 +000098 struct hlist_head hpte_hash_pte[HPTEG_HASH_NUM_PTE];
99 struct hlist_head hpte_hash_pte_long[HPTEG_HASH_NUM_PTE_LONG];
100 struct hlist_head hpte_hash_vpte[HPTEG_HASH_NUM_VPTE];
101 struct hlist_head hpte_hash_vpte_long[HPTEG_HASH_NUM_VPTE_LONG];
102 int hpte_cache_count;
103 spinlock_t mmu_lock;
Alexander Graf4e3420252009-10-30 05:47:05 +0000104};
105
106#define CONTEXT_HOST 0
107#define CONTEXT_GUEST 1
108#define CONTEXT_GUEST_END 2
109
Paul Mackerras0f296822013-06-22 17:16:32 +1000110#define VSID_REAL 0x0fffffffffc00000ULL
111#define VSID_BAT 0x0fffffffffb00000ULL
112#define VSID_1T 0x1000000000000000ULL
Alexander Graff7bc74e2010-04-20 02:49:48 +0200113#define VSID_REAL_DR 0x2000000000000000ULL
114#define VSID_REAL_IR 0x4000000000000000ULL
Alexander Graf5a1b4192010-03-24 21:48:35 +0100115#define VSID_PR 0x8000000000000000ULL
Alexander Graf4e3420252009-10-30 05:47:05 +0000116
Alexander Grafaf7b4d12010-04-20 02:49:46 +0200117extern void kvmppc_mmu_pte_flush(struct kvm_vcpu *vcpu, ulong ea, ulong ea_mask);
Alexander Graf4e3420252009-10-30 05:47:05 +0000118extern void kvmppc_mmu_pte_vflush(struct kvm_vcpu *vcpu, u64 vp, u64 vp_mask);
Alexander Grafaf7b4d12010-04-20 02:49:46 +0200119extern void kvmppc_mmu_pte_pflush(struct kvm_vcpu *vcpu, ulong pa_start, ulong pa_end);
Alexander Graf4e3420252009-10-30 05:47:05 +0000120extern void kvmppc_set_msr(struct kvm_vcpu *vcpu, u64 new_msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000121extern void kvmppc_set_pvr(struct kvm_vcpu *vcpu, u32 pvr);
Alexander Graf4e3420252009-10-30 05:47:05 +0000122extern void kvmppc_mmu_book3s_64_init(struct kvm_vcpu *vcpu);
123extern void kvmppc_mmu_book3s_32_init(struct kvm_vcpu *vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000124extern void kvmppc_mmu_book3s_hv_init(struct kvm_vcpu *vcpu);
Alexander Graf4e3420252009-10-30 05:47:05 +0000125extern int kvmppc_mmu_map_page(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte);
126extern int kvmppc_mmu_map_segment(struct kvm_vcpu *vcpu, ulong eaddr);
Paul Mackerras0f296822013-06-22 17:16:32 +1000127extern void kvmppc_mmu_flush_segment(struct kvm_vcpu *vcpu, ulong eaddr, ulong seg_size);
Alexander Graf4e3420252009-10-30 05:47:05 +0000128extern void kvmppc_mmu_flush_segments(struct kvm_vcpu *vcpu);
Paul Mackerras697d3892011-12-12 12:36:37 +0000129extern int kvmppc_book3s_hv_page_fault(struct kvm_run *run,
130 struct kvm_vcpu *vcpu, unsigned long addr,
131 unsigned long status);
132extern long kvmppc_hv_find_lock_hpte(struct kvm *kvm, gva_t eaddr,
133 unsigned long slb_v, unsigned long valid);
Alexander Graffef093be2010-06-30 15:18:46 +0200134
135extern void kvmppc_mmu_hpte_cache_map(struct kvm_vcpu *vcpu, struct hpte_cache *pte);
136extern struct hpte_cache *kvmppc_mmu_hpte_cache_next(struct kvm_vcpu *vcpu);
137extern void kvmppc_mmu_hpte_destroy(struct kvm_vcpu *vcpu);
138extern int kvmppc_mmu_hpte_init(struct kvm_vcpu *vcpu);
139extern void kvmppc_mmu_invalidate_pte(struct kvm_vcpu *vcpu, struct hpte_cache *pte);
140extern int kvmppc_mmu_hpte_sysinit(void);
141extern void kvmppc_mmu_hpte_sysexit(void);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000142extern int kvmppc_mmu_hv_init(void);
Alexander Graffef093be2010-06-30 15:18:46 +0200143
Alexander Graf5467a972010-02-19 11:00:38 +0100144extern int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr, bool data);
145extern int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr, bool data);
Alexander Graf4e3420252009-10-30 05:47:05 +0000146extern void kvmppc_book3s_queue_irqprio(struct kvm_vcpu *vcpu, unsigned int vec);
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000147extern void kvmppc_book3s_dequeue_irqprio(struct kvm_vcpu *vcpu,
148 unsigned int vec);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000149extern void kvmppc_inject_interrupt(struct kvm_vcpu *vcpu, int vec, u64 flags);
Alexander Grafe15a1132009-11-30 03:02:02 +0000150extern void kvmppc_set_bat(struct kvm_vcpu *vcpu, struct kvmppc_bat *bat,
151 bool upper, u32 val);
Alexander Grafaba3bd72010-02-19 11:00:39 +0100152extern void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr);
Alexander Graf831317b2010-02-19 11:00:44 +0100153extern int kvmppc_emulate_paired_single(struct kvm_run *run, struct kvm_vcpu *vcpu);
Alexander Grafe8508942010-07-29 14:47:54 +0200154extern pfn_t kvmppc_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn);
Paul Mackerras342d3db2011-12-12 12:38:05 +0000155extern void kvmppc_add_revmap_chain(struct kvm *kvm, struct revmap_entry *rev,
156 unsigned long *rmap, long pte_index, int realmode);
157extern void kvmppc_invalidate_hpte(struct kvm *kvm, unsigned long *hptep,
158 unsigned long pte_index);
Paul Mackerras55514892011-12-15 02:02:47 +0000159void kvmppc_clear_ref_hpte(struct kvm *kvm, unsigned long *hptep,
160 unsigned long pte_index);
Paul Mackerras93e60242011-12-12 12:28:55 +0000161extern void *kvmppc_pin_guest_page(struct kvm *kvm, unsigned long addr,
162 unsigned long *nb_ret);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000163extern void kvmppc_unpin_guest_page(struct kvm *kvm, void *addr,
164 unsigned long gpa, bool dirty);
Paul Mackerrasc77162d2011-12-12 12:31:00 +0000165extern long kvmppc_virtmode_h_enter(struct kvm_vcpu *vcpu, unsigned long flags,
166 long pte_index, unsigned long pteh, unsigned long ptel);
Paul Mackerras7ed661b2012-11-13 18:31:32 +0000167extern long kvmppc_do_h_enter(struct kvm *kvm, unsigned long flags,
168 long pte_index, unsigned long pteh, unsigned long ptel,
169 pgd_t *pgdir, bool realmode, unsigned long *idx_ret);
Paul Mackerras6b445ad2012-11-19 22:55:44 +0000170extern long kvmppc_do_h_remove(struct kvm *kvm, unsigned long flags,
171 unsigned long pte_index, unsigned long avpn,
172 unsigned long *hpret);
Paul Mackerras82ed3612011-12-15 02:03:22 +0000173extern long kvmppc_hv_get_dirty_log(struct kvm *kvm,
Paul Mackerrasdfe49db2012-09-11 13:28:18 +0000174 struct kvm_memory_slot *memslot, unsigned long *map);
Alexander Graf4e3420252009-10-30 05:47:05 +0000175
Paul Mackerras02143942011-07-23 17:41:44 +1000176extern void kvmppc_entry_trampoline(void);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000177extern void kvmppc_hv_entry_trampoline(void);
Alexander Grafd5e52812010-01-15 14:49:10 +0100178extern void kvmppc_load_up_fpu(void);
179extern void kvmppc_load_up_altivec(void);
180extern void kvmppc_load_up_vsx(void);
Alexander Grafca7f4202010-03-24 21:48:28 +0100181extern u32 kvmppc_alignment_dsisr(struct kvm_vcpu *vcpu, unsigned int inst);
182extern ulong kvmppc_alignment_dar(struct kvm_vcpu *vcpu, unsigned int inst);
Alexander Graf0254f0742011-08-08 17:21:15 +0200183extern int kvmppc_h_pr(struct kvm_vcpu *vcpu, unsigned long cmd);
Alexander Graf4e3420252009-10-30 05:47:05 +0000184
185static inline struct kvmppc_vcpu_book3s *to_book3s(struct kvm_vcpu *vcpu)
186{
187 return container_of(vcpu, struct kvmppc_vcpu_book3s, vcpu);
188}
189
Paul Mackerrasde56a942011-06-29 00:21:34 +0000190extern void kvm_return_point(void);
191
192/* Also add subarch specific defines */
193
194#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
195#include <asm/kvm_book3s_32.h>
196#endif
197#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
198#include <asm/kvm_book3s_64.h>
199#endif
200
201#ifdef CONFIG_KVM_BOOK3S_PR
202
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000203static inline unsigned long kvmppc_interrupt_offset(struct kvm_vcpu *vcpu)
204{
205 return to_book3s(vcpu)->hior;
206}
207
208static inline void kvmppc_update_int_pending(struct kvm_vcpu *vcpu,
209 unsigned long pending_now, unsigned long old_pending)
210{
211 if (pending_now)
212 vcpu->arch.shared->int_pending = 1;
213 else if (old_pending)
214 vcpu->arch.shared->int_pending = 0;
215}
216
Alexander Grafc7f38f42010-04-16 00:11:40 +0200217static inline void kvmppc_set_gpr(struct kvm_vcpu *vcpu, int num, ulong val)
218{
219 if ( num < 14 ) {
Alexander Graf468a12c2011-12-09 14:44:13 +0100220 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
221 svcpu->gpr[num] = val;
222 svcpu_put(svcpu);
Alexander Grafc7f38f42010-04-16 00:11:40 +0200223 to_book3s(vcpu)->shadow_vcpu->gpr[num] = val;
224 } else
225 vcpu->arch.gpr[num] = val;
226}
227
228static inline ulong kvmppc_get_gpr(struct kvm_vcpu *vcpu, int num)
229{
Alexander Graf468a12c2011-12-09 14:44:13 +0100230 if ( num < 14 ) {
231 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
232 ulong r = svcpu->gpr[num];
233 svcpu_put(svcpu);
234 return r;
235 } else
Alexander Grafc7f38f42010-04-16 00:11:40 +0200236 return vcpu->arch.gpr[num];
237}
238
239static inline void kvmppc_set_cr(struct kvm_vcpu *vcpu, u32 val)
240{
Alexander Graf468a12c2011-12-09 14:44:13 +0100241 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
242 svcpu->cr = val;
243 svcpu_put(svcpu);
Alexander Grafc7f38f42010-04-16 00:11:40 +0200244 to_book3s(vcpu)->shadow_vcpu->cr = val;
245}
246
247static inline u32 kvmppc_get_cr(struct kvm_vcpu *vcpu)
248{
Alexander Graf468a12c2011-12-09 14:44:13 +0100249 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
250 u32 r;
251 r = svcpu->cr;
252 svcpu_put(svcpu);
253 return r;
Alexander Grafc7f38f42010-04-16 00:11:40 +0200254}
255
256static inline void kvmppc_set_xer(struct kvm_vcpu *vcpu, u32 val)
257{
Alexander Graf468a12c2011-12-09 14:44:13 +0100258 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
259 svcpu->xer = val;
Alexander Grafc7f38f42010-04-16 00:11:40 +0200260 to_book3s(vcpu)->shadow_vcpu->xer = val;
Alexander Graf468a12c2011-12-09 14:44:13 +0100261 svcpu_put(svcpu);
Alexander Grafc7f38f42010-04-16 00:11:40 +0200262}
263
264static inline u32 kvmppc_get_xer(struct kvm_vcpu *vcpu)
265{
Alexander Graf468a12c2011-12-09 14:44:13 +0100266 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
267 u32 r;
268 r = svcpu->xer;
269 svcpu_put(svcpu);
270 return r;
Alexander Grafc7f38f42010-04-16 00:11:40 +0200271}
272
273static inline void kvmppc_set_ctr(struct kvm_vcpu *vcpu, ulong val)
274{
Alexander Graf468a12c2011-12-09 14:44:13 +0100275 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
276 svcpu->ctr = val;
277 svcpu_put(svcpu);
Alexander Grafc7f38f42010-04-16 00:11:40 +0200278}
279
280static inline ulong kvmppc_get_ctr(struct kvm_vcpu *vcpu)
281{
Alexander Graf468a12c2011-12-09 14:44:13 +0100282 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
283 ulong r;
284 r = svcpu->ctr;
285 svcpu_put(svcpu);
286 return r;
Alexander Grafc7f38f42010-04-16 00:11:40 +0200287}
288
289static inline void kvmppc_set_lr(struct kvm_vcpu *vcpu, ulong val)
290{
Alexander Graf468a12c2011-12-09 14:44:13 +0100291 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
292 svcpu->lr = val;
293 svcpu_put(svcpu);
Alexander Grafc7f38f42010-04-16 00:11:40 +0200294}
295
296static inline ulong kvmppc_get_lr(struct kvm_vcpu *vcpu)
297{
Alexander Graf468a12c2011-12-09 14:44:13 +0100298 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
299 ulong r;
300 r = svcpu->lr;
301 svcpu_put(svcpu);
302 return r;
Alexander Grafc7f38f42010-04-16 00:11:40 +0200303}
304
305static inline void kvmppc_set_pc(struct kvm_vcpu *vcpu, ulong val)
306{
Alexander Graf468a12c2011-12-09 14:44:13 +0100307 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
308 svcpu->pc = val;
309 svcpu_put(svcpu);
Alexander Grafc7f38f42010-04-16 00:11:40 +0200310}
311
312static inline ulong kvmppc_get_pc(struct kvm_vcpu *vcpu)
313{
Alexander Graf468a12c2011-12-09 14:44:13 +0100314 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
315 ulong r;
316 r = svcpu->pc;
317 svcpu_put(svcpu);
318 return r;
Alexander Grafc7f38f42010-04-16 00:11:40 +0200319}
320
321static inline u32 kvmppc_get_last_inst(struct kvm_vcpu *vcpu)
322{
323 ulong pc = kvmppc_get_pc(vcpu);
Alexander Graf468a12c2011-12-09 14:44:13 +0100324 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
325 u32 r;
Alexander Grafc7f38f42010-04-16 00:11:40 +0200326
327 /* Load the instruction manually if it failed to do so in the
328 * exit path */
329 if (svcpu->last_inst == KVM_INST_FETCH_FAILED)
330 kvmppc_ld(vcpu, &pc, sizeof(u32), &svcpu->last_inst, false);
331
Alexander Graf468a12c2011-12-09 14:44:13 +0100332 r = svcpu->last_inst;
333 svcpu_put(svcpu);
334 return r;
Alexander Grafc7f38f42010-04-16 00:11:40 +0200335}
336
Paul Mackerras8b23de22013-08-06 14:15:19 +1000337/*
338 * Like kvmppc_get_last_inst(), but for fetching a sc instruction.
339 * Because the sc instruction sets SRR0 to point to the following
340 * instruction, we have to fetch from pc - 4.
341 */
342static inline u32 kvmppc_get_last_sc(struct kvm_vcpu *vcpu)
343{
344 ulong pc = kvmppc_get_pc(vcpu) - 4;
345 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
346 u32 r;
347
348 /* Load the instruction manually if it failed to do so in the
349 * exit path */
350 if (svcpu->last_inst == KVM_INST_FETCH_FAILED)
351 kvmppc_ld(vcpu, &pc, sizeof(u32), &svcpu->last_inst, false);
352
353 r = svcpu->last_inst;
354 svcpu_put(svcpu);
355 return r;
356}
357
Alexander Grafc7f38f42010-04-16 00:11:40 +0200358static inline ulong kvmppc_get_fault_dar(struct kvm_vcpu *vcpu)
359{
Alexander Graf468a12c2011-12-09 14:44:13 +0100360 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
361 ulong r;
362 r = svcpu->fault_dar;
363 svcpu_put(svcpu);
364 return r;
Alexander Grafc7f38f42010-04-16 00:11:40 +0200365}
Alexander Graf4e3420252009-10-30 05:47:05 +0000366
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000367static inline bool kvmppc_critical_section(struct kvm_vcpu *vcpu)
368{
369 ulong crit_raw = vcpu->arch.shared->critical;
370 ulong crit_r1 = kvmppc_get_gpr(vcpu, 1);
371 bool crit;
372
373 /* Truncate crit indicators in 32 bit mode */
374 if (!(vcpu->arch.shared->msr & MSR_SF)) {
375 crit_raw &= 0xffffffff;
376 crit_r1 &= 0xffffffff;
377 }
378
379 /* Critical section when crit == r1 */
380 crit = (crit_raw == crit_r1);
381 /* ... and we're in supervisor mode */
382 crit = crit && !(vcpu->arch.shared->msr & MSR_PR);
383
384 return crit;
385}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000386#else /* CONFIG_KVM_BOOK3S_PR */
387
388static inline unsigned long kvmppc_interrupt_offset(struct kvm_vcpu *vcpu)
389{
390 return 0;
391}
392
393static inline void kvmppc_update_int_pending(struct kvm_vcpu *vcpu,
394 unsigned long pending_now, unsigned long old_pending)
395{
Paul Mackerrasde56a942011-06-29 00:21:34 +0000396}
397
398static inline void kvmppc_set_gpr(struct kvm_vcpu *vcpu, int num, ulong val)
399{
400 vcpu->arch.gpr[num] = val;
401}
402
403static inline ulong kvmppc_get_gpr(struct kvm_vcpu *vcpu, int num)
404{
405 return vcpu->arch.gpr[num];
406}
407
408static inline void kvmppc_set_cr(struct kvm_vcpu *vcpu, u32 val)
409{
410 vcpu->arch.cr = val;
411}
412
413static inline u32 kvmppc_get_cr(struct kvm_vcpu *vcpu)
414{
415 return vcpu->arch.cr;
416}
417
418static inline void kvmppc_set_xer(struct kvm_vcpu *vcpu, u32 val)
419{
420 vcpu->arch.xer = val;
421}
422
423static inline u32 kvmppc_get_xer(struct kvm_vcpu *vcpu)
424{
425 return vcpu->arch.xer;
426}
427
428static inline void kvmppc_set_ctr(struct kvm_vcpu *vcpu, ulong val)
429{
430 vcpu->arch.ctr = val;
431}
432
433static inline ulong kvmppc_get_ctr(struct kvm_vcpu *vcpu)
434{
435 return vcpu->arch.ctr;
436}
437
438static inline void kvmppc_set_lr(struct kvm_vcpu *vcpu, ulong val)
439{
440 vcpu->arch.lr = val;
441}
442
443static inline ulong kvmppc_get_lr(struct kvm_vcpu *vcpu)
444{
445 return vcpu->arch.lr;
446}
447
448static inline void kvmppc_set_pc(struct kvm_vcpu *vcpu, ulong val)
449{
450 vcpu->arch.pc = val;
451}
452
453static inline ulong kvmppc_get_pc(struct kvm_vcpu *vcpu)
454{
455 return vcpu->arch.pc;
456}
457
458static inline u32 kvmppc_get_last_inst(struct kvm_vcpu *vcpu)
459{
460 ulong pc = kvmppc_get_pc(vcpu);
461
462 /* Load the instruction manually if it failed to do so in the
463 * exit path */
464 if (vcpu->arch.last_inst == KVM_INST_FETCH_FAILED)
465 kvmppc_ld(vcpu, &pc, sizeof(u32), &vcpu->arch.last_inst, false);
466
467 return vcpu->arch.last_inst;
468}
469
Paul Mackerras8b23de22013-08-06 14:15:19 +1000470/*
471 * Like kvmppc_get_last_inst(), but for fetching a sc instruction.
472 * Because the sc instruction sets SRR0 to point to the following
473 * instruction, we have to fetch from pc - 4.
474 */
475static inline u32 kvmppc_get_last_sc(struct kvm_vcpu *vcpu)
476{
477 ulong pc = kvmppc_get_pc(vcpu) - 4;
478
479 /* Load the instruction manually if it failed to do so in the
480 * exit path */
481 if (vcpu->arch.last_inst == KVM_INST_FETCH_FAILED)
482 kvmppc_ld(vcpu, &pc, sizeof(u32), &vcpu->arch.last_inst, false);
483
484 return vcpu->arch.last_inst;
485}
486
Paul Mackerrasde56a942011-06-29 00:21:34 +0000487static inline ulong kvmppc_get_fault_dar(struct kvm_vcpu *vcpu)
488{
489 return vcpu->arch.fault_dar;
490}
491
492static inline bool kvmppc_critical_section(struct kvm_vcpu *vcpu)
493{
494 return false;
495}
496#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000497
Alexander Grafad0a0482010-03-24 21:48:30 +0100498/* Magic register values loaded into r3 and r4 before the 'sc' assembly
499 * instruction for the OSI hypercalls */
500#define OSI_SC_MAGIC_R3 0x113724FA
501#define OSI_SC_MAGIC_R4 0x77810F9B
502
Alexander Graf4e3420252009-10-30 05:47:05 +0000503#define INS_DCBZ 0x7c0007ec
Bharat Bhushan8c32a2e2013-03-20 20:24:58 +0000504/* TO = 31 for unconditional trap */
505#define INS_TW 0x7fe00008
Alexander Graf4e3420252009-10-30 05:47:05 +0000506
Scott Wood043cc4d2011-12-20 15:34:20 +0000507/* LPIDs we support with this build -- runtime limit may be lower */
508#define KVMPPC_NR_LPIDS (LPID_RSVD + 1)
509
Alexander Graf4e3420252009-10-30 05:47:05 +0000510#endif /* __ASM_KVM_BOOK3S_H__ */