blob: 92e467ebadf045fe3f3c81b895674ccbab02f77a [file] [log] [blame]
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001/*
2 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
3 *
4 * Authors:
5 * Alexander Graf <agraf@suse.de>
6 * Kevin Wolf <mail@kevin-wolf.de>
7 * Paul Mackerras <paulus@samba.org>
8 *
9 * Description:
10 * Functions relating to running KVM on Book 3S processors where
11 * we don't have access to hypervisor mode, and we run the guest
12 * in problem state (user mode).
13 *
14 * This file is derived from arch/powerpc/kvm/44x.c,
15 * by Hollis Blanchard <hollisb@us.ibm.com>.
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License, version 2, as
19 * published by the Free Software Foundation.
20 */
21
22#include <linux/kvm_host.h>
Paul Gortmaker93087942011-07-29 16:19:31 +100023#include <linux/export.h>
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000024#include <linux/err.h>
25#include <linux/slab.h>
26
27#include <asm/reg.h>
28#include <asm/cputable.h>
29#include <asm/cacheflush.h>
30#include <asm/tlbflush.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080031#include <linux/uaccess.h>
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000032#include <asm/io.h>
33#include <asm/kvm_ppc.h>
34#include <asm/kvm_book3s.h>
35#include <asm/mmu_context.h>
Benjamin Herrenschmidt95327d02012-04-01 17:35:53 +000036#include <asm/switch_to.h>
Ian Munsiea413f472012-12-03 18:36:13 +000037#include <asm/firmware.h>
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +100038#include <asm/setup.h>
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000039#include <linux/gfp.h>
40#include <linux/sched.h>
41#include <linux/vmalloc.h>
42#include <linux/highmem.h>
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +053043#include <linux/module.h>
Alexander Graf398a76c2013-12-09 13:53:42 +010044#include <linux/miscdevice.h>
Simon Guo66c33e72018-05-23 15:01:57 +080045#include <asm/asm-prototypes.h>
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000046
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053047#include "book3s.h"
Aneesh Kumar K.V72c12532013-10-07 22:17:57 +053048
49#define CREATE_TRACE_POINTS
50#include "trace_pr.h"
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000051
52/* #define EXIT_DEBUG */
53/* #define DEBUG_EXT */
54
55static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
56 ulong msr);
Alexander Graf616dff82014-04-29 16:48:44 +020057static void kvmppc_giveup_fac(struct kvm_vcpu *vcpu, ulong fac);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000058
59/* Some compatibility defines */
60#ifdef CONFIG_PPC_BOOK3S_32
61#define MSR_USER32 MSR_USER
62#define MSR_USER64 MSR_USER
63#define HW_PAGE_SIZE PAGE_SIZE
Alexey Kardashevskiy6c7d47c2017-11-22 14:42:21 +110064#define HPTE_R_M _PAGE_COHERENT
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000065#endif
66
Alexander Grafc01e3f62014-07-11 02:58:58 +020067static bool kvmppc_is_split_real(struct kvm_vcpu *vcpu)
68{
69 ulong msr = kvmppc_get_msr(vcpu);
70 return (msr & (MSR_IR|MSR_DR)) == MSR_DR;
71}
72
73static void kvmppc_fixup_split_real(struct kvm_vcpu *vcpu)
74{
75 ulong msr = kvmppc_get_msr(vcpu);
76 ulong pc = kvmppc_get_pc(vcpu);
77
78 /* We are in DR only split real mode */
79 if ((msr & (MSR_IR|MSR_DR)) != MSR_DR)
80 return;
81
82 /* We have not fixed up the guest already */
83 if (vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK)
84 return;
85
86 /* The code is in fixupable address space */
87 if (pc & SPLIT_HACK_MASK)
88 return;
89
90 vcpu->arch.hflags |= BOOK3S_HFLAG_SPLIT_HACK;
91 kvmppc_set_pc(vcpu, pc | SPLIT_HACK_OFFS);
92}
93
94void kvmppc_unfixup_split_real(struct kvm_vcpu *vcpu);
95
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053096static void kvmppc_core_vcpu_load_pr(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000097{
98#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010099 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
100 memcpy(svcpu->slb, to_book3s(vcpu)->slb_shadow, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +0100101 svcpu->slb_max = to_book3s(vcpu)->slb_shadow_max;
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100102 svcpu->in_use = 0;
Alexander Graf468a12c2011-12-09 14:44:13 +0100103 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000104#endif
Alexander Graffb4188b2014-06-09 01:16:32 +0200105
106 /* Disable AIL if supported */
107 if (cpu_has_feature(CPU_FTR_HVMODE) &&
108 cpu_has_feature(CPU_FTR_ARCH_207S))
109 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) & ~LPCR_AIL);
110
Paul Mackerrasa47d72f2012-09-20 19:35:51 +0000111 vcpu->cpu = smp_processor_id();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000112#ifdef CONFIG_PPC_BOOK3S_32
Paul Mackerras3ff95502013-09-20 14:52:49 +1000113 current->thread.kvm_shadow_vcpu = vcpu->arch.shadow_vcpu;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000114#endif
Alexander Grafc01e3f62014-07-11 02:58:58 +0200115
116 if (kvmppc_is_split_real(vcpu))
117 kvmppc_fixup_split_real(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000118}
119
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530120static void kvmppc_core_vcpu_put_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000121{
122#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +0100123 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100124 if (svcpu->in_use) {
Alexander Graf07ae5382018-01-31 22:24:58 +0100125 kvmppc_copy_from_svcpu(vcpu);
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100126 }
Alexander Graf468a12c2011-12-09 14:44:13 +0100127 memcpy(to_book3s(vcpu)->slb_shadow, svcpu->slb, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +0100128 to_book3s(vcpu)->slb_shadow_max = svcpu->slb_max;
129 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000130#endif
131
Alexander Grafc01e3f62014-07-11 02:58:58 +0200132 if (kvmppc_is_split_real(vcpu))
133 kvmppc_unfixup_split_real(vcpu);
134
Paul Mackerras28c483b2012-11-04 18:16:46 +0000135 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
Alexander Grafe14e7a12014-04-22 12:26:58 +0200136 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
Alexander Graffb4188b2014-06-09 01:16:32 +0200137
138 /* Enable AIL if supported */
139 if (cpu_has_feature(CPU_FTR_HVMODE) &&
140 cpu_has_feature(CPU_FTR_ARCH_207S))
141 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) | LPCR_AIL_3);
142
Paul Mackerrasa47d72f2012-09-20 19:35:51 +0000143 vcpu->cpu = -1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000144}
145
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000146/* Copy data needed by real-mode code from vcpu to shadow vcpu */
Alexander Graf07ae5382018-01-31 22:24:58 +0100147void kvmppc_copy_to_svcpu(struct kvm_vcpu *vcpu)
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000148{
Alexander Graf07ae5382018-01-31 22:24:58 +0100149 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
150
Simon Guo1143a702018-05-07 14:20:07 +0800151 svcpu->gpr[0] = vcpu->arch.regs.gpr[0];
152 svcpu->gpr[1] = vcpu->arch.regs.gpr[1];
153 svcpu->gpr[2] = vcpu->arch.regs.gpr[2];
154 svcpu->gpr[3] = vcpu->arch.regs.gpr[3];
155 svcpu->gpr[4] = vcpu->arch.regs.gpr[4];
156 svcpu->gpr[5] = vcpu->arch.regs.gpr[5];
157 svcpu->gpr[6] = vcpu->arch.regs.gpr[6];
158 svcpu->gpr[7] = vcpu->arch.regs.gpr[7];
159 svcpu->gpr[8] = vcpu->arch.regs.gpr[8];
160 svcpu->gpr[9] = vcpu->arch.regs.gpr[9];
161 svcpu->gpr[10] = vcpu->arch.regs.gpr[10];
162 svcpu->gpr[11] = vcpu->arch.regs.gpr[11];
163 svcpu->gpr[12] = vcpu->arch.regs.gpr[12];
164 svcpu->gpr[13] = vcpu->arch.regs.gpr[13];
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000165 svcpu->cr = vcpu->arch.cr;
Simon Guo173c5202018-05-07 14:20:08 +0800166 svcpu->xer = vcpu->arch.regs.xer;
167 svcpu->ctr = vcpu->arch.regs.ctr;
168 svcpu->lr = vcpu->arch.regs.link;
169 svcpu->pc = vcpu->arch.regs.nip;
Alexander Graf616dff82014-04-29 16:48:44 +0200170#ifdef CONFIG_PPC_BOOK3S_64
171 svcpu->shadow_fscr = vcpu->arch.shadow_fscr;
172#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530173 /*
174 * Now also save the current time base value. We use this
175 * to find the guest purr and spurr value.
176 */
177 vcpu->arch.entry_tb = get_tb();
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530178 vcpu->arch.entry_vtb = get_vtb();
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530179 if (cpu_has_feature(CPU_FTR_ARCH_207S))
180 vcpu->arch.entry_ic = mfspr(SPRN_IC);
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100181 svcpu->in_use = true;
Alexander Graf07ae5382018-01-31 22:24:58 +0100182
183 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000184}
185
Simon Guo95757bf2018-05-23 15:01:53 +0800186static void kvmppc_recalc_shadow_msr(struct kvm_vcpu *vcpu)
187{
188 ulong guest_msr = kvmppc_get_msr(vcpu);
189 ulong smsr = guest_msr;
190
191 /* Guest MSR values */
192#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
193 smsr &= MSR_FE0 | MSR_FE1 | MSR_SF | MSR_SE | MSR_BE | MSR_LE |
194 MSR_TM | MSR_TS_MASK;
195#else
196 smsr &= MSR_FE0 | MSR_FE1 | MSR_SF | MSR_SE | MSR_BE | MSR_LE;
197#endif
198 /* Process MSR values */
199 smsr |= MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_PR | MSR_EE;
200 /* External providers the guest reserved */
201 smsr |= (guest_msr & vcpu->arch.guest_owned_ext);
202 /* 64-bit Process MSR values */
203#ifdef CONFIG_PPC_BOOK3S_64
204 smsr |= MSR_ISF | MSR_HV;
205#endif
206 vcpu->arch.shadow_msr = smsr;
207}
208
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000209/* Copy data touched by real-mode code from shadow vcpu back to vcpu */
Alexander Graf07ae5382018-01-31 22:24:58 +0100210void kvmppc_copy_from_svcpu(struct kvm_vcpu *vcpu)
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000211{
Alexander Graf07ae5382018-01-31 22:24:58 +0100212 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Simon Guo95757bf2018-05-23 15:01:53 +0800213#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
214 ulong old_msr;
215#endif
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100216
217 /*
218 * Maybe we were already preempted and synced the svcpu from
219 * our preempt notifiers. Don't bother touching this svcpu then.
220 */
221 if (!svcpu->in_use)
222 goto out;
223
Simon Guo1143a702018-05-07 14:20:07 +0800224 vcpu->arch.regs.gpr[0] = svcpu->gpr[0];
225 vcpu->arch.regs.gpr[1] = svcpu->gpr[1];
226 vcpu->arch.regs.gpr[2] = svcpu->gpr[2];
227 vcpu->arch.regs.gpr[3] = svcpu->gpr[3];
228 vcpu->arch.regs.gpr[4] = svcpu->gpr[4];
229 vcpu->arch.regs.gpr[5] = svcpu->gpr[5];
230 vcpu->arch.regs.gpr[6] = svcpu->gpr[6];
231 vcpu->arch.regs.gpr[7] = svcpu->gpr[7];
232 vcpu->arch.regs.gpr[8] = svcpu->gpr[8];
233 vcpu->arch.regs.gpr[9] = svcpu->gpr[9];
234 vcpu->arch.regs.gpr[10] = svcpu->gpr[10];
235 vcpu->arch.regs.gpr[11] = svcpu->gpr[11];
236 vcpu->arch.regs.gpr[12] = svcpu->gpr[12];
237 vcpu->arch.regs.gpr[13] = svcpu->gpr[13];
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000238 vcpu->arch.cr = svcpu->cr;
Simon Guo173c5202018-05-07 14:20:08 +0800239 vcpu->arch.regs.xer = svcpu->xer;
240 vcpu->arch.regs.ctr = svcpu->ctr;
241 vcpu->arch.regs.link = svcpu->lr;
242 vcpu->arch.regs.nip = svcpu->pc;
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000243 vcpu->arch.shadow_srr1 = svcpu->shadow_srr1;
244 vcpu->arch.fault_dar = svcpu->fault_dar;
245 vcpu->arch.fault_dsisr = svcpu->fault_dsisr;
246 vcpu->arch.last_inst = svcpu->last_inst;
Alexander Graf616dff82014-04-29 16:48:44 +0200247#ifdef CONFIG_PPC_BOOK3S_64
248 vcpu->arch.shadow_fscr = svcpu->shadow_fscr;
249#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530250 /*
251 * Update purr and spurr using time base on exit.
252 */
253 vcpu->arch.purr += get_tb() - vcpu->arch.entry_tb;
254 vcpu->arch.spurr += get_tb() - vcpu->arch.entry_tb;
Paul Mackerras88b02cf92016-09-15 13:42:52 +1000255 to_book3s(vcpu)->vtb += get_vtb() - vcpu->arch.entry_vtb;
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530256 if (cpu_has_feature(CPU_FTR_ARCH_207S))
257 vcpu->arch.ic += mfspr(SPRN_IC) - vcpu->arch.entry_ic;
Simon Guo95757bf2018-05-23 15:01:53 +0800258
259#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
260 /*
261 * Unlike other MSR bits, MSR[TS]bits can be changed at guest without
262 * notifying host:
263 * modified by unprivileged instructions like "tbegin"/"tend"/
264 * "tresume"/"tsuspend" in PR KVM guest.
265 *
266 * It is necessary to sync here to calculate a correct shadow_msr.
267 *
268 * privileged guest's tbegin will be failed at present. So we
269 * only take care of problem state guest.
270 */
271 old_msr = kvmppc_get_msr(vcpu);
272 if (unlikely((old_msr & MSR_PR) &&
273 (vcpu->arch.shadow_srr1 & (MSR_TS_MASK)) !=
274 (old_msr & (MSR_TS_MASK)))) {
275 old_msr &= ~(MSR_TS_MASK);
276 old_msr |= (vcpu->arch.shadow_srr1 & (MSR_TS_MASK));
277 kvmppc_set_msr_fast(vcpu, old_msr);
278 kvmppc_recalc_shadow_msr(vcpu);
279 }
280#endif
281
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100282 svcpu->in_use = false;
283
284out:
Alexander Graf07ae5382018-01-31 22:24:58 +0100285 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000286}
287
Simon Guo66c33e72018-05-23 15:01:57 +0800288#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
289static inline void kvmppc_save_tm_sprs(struct kvm_vcpu *vcpu)
290{
291 tm_enable();
292 vcpu->arch.tfhar = mfspr(SPRN_TFHAR);
293 vcpu->arch.texasr = mfspr(SPRN_TEXASR);
294 vcpu->arch.tfiar = mfspr(SPRN_TFIAR);
295 tm_disable();
296}
297
298static inline void kvmppc_restore_tm_sprs(struct kvm_vcpu *vcpu)
299{
300 tm_enable();
301 mtspr(SPRN_TFHAR, vcpu->arch.tfhar);
302 mtspr(SPRN_TEXASR, vcpu->arch.texasr);
303 mtspr(SPRN_TFIAR, vcpu->arch.tfiar);
304 tm_disable();
305}
306
307#endif
308
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530309static int kvmppc_core_check_requests_pr(struct kvm_vcpu *vcpu)
Alexander Graf03d25c52012-08-10 12:28:50 +0200310{
Alexander Graf7c973a22012-08-13 12:50:35 +0200311 int r = 1; /* Indicate we want to get back into the guest */
312
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200313 /* We misuse TLB_FLUSH to indicate that we want to clear
314 all shadow cache entries */
315 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
316 kvmppc_mmu_pte_flush(vcpu, 0, 0);
Alexander Graf7c973a22012-08-13 12:50:35 +0200317
318 return r;
Alexander Graf03d25c52012-08-10 12:28:50 +0200319}
320
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200321/************* MMU Notifiers *************/
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000322static void do_kvm_unmap_hva(struct kvm *kvm, unsigned long start,
323 unsigned long end)
324{
325 long i;
326 struct kvm_vcpu *vcpu;
327 struct kvm_memslots *slots;
328 struct kvm_memory_slot *memslot;
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200329
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000330 slots = kvm_memslots(kvm);
331 kvm_for_each_memslot(memslot, slots) {
332 unsigned long hva_start, hva_end;
333 gfn_t gfn, gfn_end;
334
335 hva_start = max(start, memslot->userspace_addr);
336 hva_end = min(end, memslot->userspace_addr +
337 (memslot->npages << PAGE_SHIFT));
338 if (hva_start >= hva_end)
339 continue;
340 /*
341 * {gfn(page) | page intersects with [hva_start, hva_end)} =
342 * {gfn, gfn+1, ..., gfn_end-1}.
343 */
344 gfn = hva_to_gfn_memslot(hva_start, memslot);
345 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
346 kvm_for_each_vcpu(i, vcpu, kvm)
347 kvmppc_mmu_pte_pflush(vcpu, gfn << PAGE_SHIFT,
348 gfn_end << PAGE_SHIFT);
349 }
350}
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200351
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530352static int kvm_unmap_hva_range_pr(struct kvm *kvm, unsigned long start,
353 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200354{
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000355 do_kvm_unmap_hva(kvm, start, end);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200356
357 return 0;
358}
359
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700360static int kvm_age_hva_pr(struct kvm *kvm, unsigned long start,
361 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200362{
363 /* XXX could be more clever ;) */
364 return 0;
365}
366
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530367static int kvm_test_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200368{
369 /* XXX could be more clever ;) */
370 return 0;
371}
372
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530373static void kvm_set_spte_hva_pr(struct kvm *kvm, unsigned long hva, pte_t pte)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200374{
375 /* The page will get remapped properly on its next fault */
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000376 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200377}
378
379/*****************************************/
380
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530381static void kvmppc_set_msr_pr(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000382{
Alexander Graf5deb8e72014-04-24 13:46:24 +0200383 ulong old_msr = kvmppc_get_msr(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000384
385#ifdef EXIT_DEBUG
386 printk(KERN_INFO "KVM: Set MSR to 0x%llx\n", msr);
387#endif
388
389 msr &= to_book3s(vcpu)->msr_mask;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200390 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000391 kvmppc_recalc_shadow_msr(vcpu);
392
393 if (msr & MSR_POW) {
394 if (!vcpu->arch.pending_exceptions) {
395 kvm_vcpu_block(vcpu);
Radim Krčmář72875d82017-04-26 22:32:19 +0200396 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000397 vcpu->stat.halt_wakeup++;
398
399 /* Unset POW bit after we woke up */
400 msr &= ~MSR_POW;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200401 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000402 }
403 }
404
Alexander Grafc01e3f62014-07-11 02:58:58 +0200405 if (kvmppc_is_split_real(vcpu))
406 kvmppc_fixup_split_real(vcpu);
407 else
408 kvmppc_unfixup_split_real(vcpu);
409
Alexander Graf5deb8e72014-04-24 13:46:24 +0200410 if ((kvmppc_get_msr(vcpu) & (MSR_PR|MSR_IR|MSR_DR)) !=
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000411 (old_msr & (MSR_PR|MSR_IR|MSR_DR))) {
412 kvmppc_mmu_flush_segments(vcpu);
413 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
414
415 /* Preload magic page segment when in kernel mode */
416 if (!(msr & MSR_PR) && vcpu->arch.magic_page_pa) {
417 struct kvm_vcpu_arch *a = &vcpu->arch;
418
419 if (msr & MSR_DR)
420 kvmppc_mmu_map_segment(vcpu, a->magic_page_ea);
421 else
422 kvmppc_mmu_map_segment(vcpu, a->magic_page_pa);
423 }
424 }
425
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000426 /*
427 * When switching from 32 to 64-bit, we may have a stale 32-bit
428 * magic page around, we need to flush it. Typically 32-bit magic
429 * page will be instanciated when calling into RTAS. Note: We
430 * assume that such transition only happens while in kernel mode,
431 * ie, we never transition from user 32-bit to kernel 64-bit with
432 * a 32-bit magic page around.
433 */
434 if (vcpu->arch.magic_page_pa &&
435 !(old_msr & MSR_PR) && !(old_msr & MSR_SF) && (msr & MSR_SF)) {
436 /* going from RTAS to normal kernel code */
437 kvmppc_mmu_pte_flush(vcpu, (uint32_t)vcpu->arch.magic_page_pa,
438 ~0xFFFUL);
439 }
440
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000441 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200442 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000443 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
444}
445
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530446void kvmppc_set_pvr_pr(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000447{
448 u32 host_pvr;
449
450 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SLB;
451 vcpu->arch.pvr = pvr;
452#ifdef CONFIG_PPC_BOOK3S_64
453 if ((pvr >= 0x330000) && (pvr < 0x70330000)) {
454 kvmppc_mmu_book3s_64_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200455 if (!to_book3s(vcpu)->hior_explicit)
456 to_book3s(vcpu)->hior = 0xfff00000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000457 to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200458 vcpu->arch.cpu_type = KVM_CPU_3S_64;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000459 } else
460#endif
461 {
462 kvmppc_mmu_book3s_32_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200463 if (!to_book3s(vcpu)->hior_explicit)
464 to_book3s(vcpu)->hior = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000465 to_book3s(vcpu)->msr_mask = 0xffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200466 vcpu->arch.cpu_type = KVM_CPU_3S_32;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000467 }
468
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200469 kvmppc_sanity_check(vcpu);
470
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000471 /* If we are in hypervisor level on 970, we can tell the CPU to
472 * treat DCBZ as 32 bytes store */
473 vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32;
474 if (vcpu->arch.mmu.is_dcbz32(vcpu) && (mfmsr() & MSR_HV) &&
475 !strcmp(cur_cpu_spec->platform, "ppc970"))
476 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
477
478 /* Cell performs badly if MSR_FEx are set. So let's hope nobody
479 really needs them in a VM on Cell and force disable them. */
480 if (!strcmp(cur_cpu_spec->platform, "ppc-cell-be"))
481 to_book3s(vcpu)->msr_mask &= ~(MSR_FE0 | MSR_FE1);
482
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000483 /*
484 * If they're asking for POWER6 or later, set the flag
485 * indicating that we can do multiple large page sizes
486 * and 1TB segments.
487 * Also set the flag that indicates that tlbie has the large
488 * page bit in the RB operand instead of the instruction.
489 */
490 switch (PVR_VER(pvr)) {
491 case PVR_POWER6:
492 case PVR_POWER7:
493 case PVR_POWER7p:
494 case PVR_POWER8:
Thomas Huth2365f6b2016-09-21 13:53:46 +0200495 case PVR_POWER8E:
496 case PVR_POWER8NVL:
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000497 vcpu->arch.hflags |= BOOK3S_HFLAG_MULTI_PGSIZE |
498 BOOK3S_HFLAG_NEW_TLBIE;
499 break;
500 }
501
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000502#ifdef CONFIG_PPC_BOOK3S_32
503 /* 32 bit Book3S always has 32 byte dcbz */
504 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
505#endif
506
507 /* On some CPUs we can execute paired single operations natively */
508 asm ( "mfpvr %0" : "=r"(host_pvr));
509 switch (host_pvr) {
510 case 0x00080200: /* lonestar 2.0 */
511 case 0x00088202: /* lonestar 2.2 */
512 case 0x70000100: /* gekko 1.0 */
513 case 0x00080100: /* gekko 2.0 */
514 case 0x00083203: /* gekko 2.3a */
515 case 0x00083213: /* gekko 2.3b */
516 case 0x00083204: /* gekko 2.4 */
517 case 0x00083214: /* gekko 2.4e (8SE) - retail HW2 */
518 case 0x00087200: /* broadway */
519 vcpu->arch.hflags |= BOOK3S_HFLAG_NATIVE_PS;
520 /* Enable HID2.PSE - in case we need it later */
521 mtspr(SPRN_HID2_GEKKO, mfspr(SPRN_HID2_GEKKO) | (1 << 29));
522 }
523}
524
525/* Book3s_32 CPUs always have 32 bytes cache line size, which Linux assumes. To
526 * make Book3s_32 Linux work on Book3s_64, we have to make sure we trap dcbz to
527 * emulate 32 bytes dcbz length.
528 *
529 * The Book3s_64 inventors also realized this case and implemented a special bit
530 * in the HID5 register, which is a hypervisor ressource. Thus we can't use it.
531 *
532 * My approach here is to patch the dcbz instruction on executing pages.
533 */
534static void kvmppc_patch_dcbz(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte)
535{
536 struct page *hpage;
537 u64 hpage_offset;
538 u32 *page;
539 int i;
540
541 hpage = gfn_to_page(vcpu->kvm, pte->raddr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800542 if (is_error_page(hpage))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000543 return;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000544
545 hpage_offset = pte->raddr & ~PAGE_MASK;
546 hpage_offset &= ~0xFFFULL;
547 hpage_offset /= 4;
548
549 get_page(hpage);
Cong Wang2480b202011-11-25 23:14:16 +0800550 page = kmap_atomic(hpage);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000551
552 /* patch dcbz into reserved instruction, so we trap */
553 for (i=hpage_offset; i < hpage_offset + (HW_PAGE_SIZE / 4); i++)
Alexander Grafcd087ee2014-04-24 13:52:01 +0200554 if ((be32_to_cpu(page[i]) & 0xff0007ff) == INS_DCBZ)
555 page[i] &= cpu_to_be32(0xfffffff7);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000556
Cong Wang2480b202011-11-25 23:14:16 +0800557 kunmap_atomic(page);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000558 put_page(hpage);
559}
560
Yaowei Bai378b4172015-11-16 11:10:24 +0800561static bool kvmppc_visible_gpa(struct kvm_vcpu *vcpu, gpa_t gpa)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000562{
563 ulong mp_pa = vcpu->arch.magic_page_pa;
564
Alexander Graf5deb8e72014-04-24 13:46:24 +0200565 if (!(kvmppc_get_msr(vcpu) & MSR_SF))
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000566 mp_pa = (uint32_t)mp_pa;
567
Alexander Graf89b68c92014-07-13 16:37:12 +0200568 gpa &= ~0xFFFULL;
569 if (unlikely(mp_pa) && unlikely((mp_pa & KVM_PAM) == (gpa & KVM_PAM))) {
Yaowei Bai378b4172015-11-16 11:10:24 +0800570 return true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000571 }
572
Alexander Graf89b68c92014-07-13 16:37:12 +0200573 return kvm_is_visible_gfn(vcpu->kvm, gpa >> PAGE_SHIFT);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000574}
575
576int kvmppc_handle_pagefault(struct kvm_run *run, struct kvm_vcpu *vcpu,
577 ulong eaddr, int vec)
578{
579 bool data = (vec == BOOK3S_INTERRUPT_DATA_STORAGE);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000580 bool iswrite = false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000581 int r = RESUME_GUEST;
582 int relocated;
583 int page_found = 0;
Alexey Kardashevskiy96df2262017-03-24 17:49:22 +1100584 struct kvmppc_pte pte = { 0 };
Alexander Graf5deb8e72014-04-24 13:46:24 +0200585 bool dr = (kvmppc_get_msr(vcpu) & MSR_DR) ? true : false;
586 bool ir = (kvmppc_get_msr(vcpu) & MSR_IR) ? true : false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000587 u64 vsid;
588
589 relocated = data ? dr : ir;
Paul Mackerras93b159b2013-09-20 14:52:51 +1000590 if (data && (vcpu->arch.fault_dsisr & DSISR_ISSTORE))
591 iswrite = true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000592
593 /* Resolve real address if translation turned on */
594 if (relocated) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000595 page_found = vcpu->arch.mmu.xlate(vcpu, eaddr, &pte, data, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000596 } else {
597 pte.may_execute = true;
598 pte.may_read = true;
599 pte.may_write = true;
600 pte.raddr = eaddr & KVM_PAM;
601 pte.eaddr = eaddr;
602 pte.vpage = eaddr >> 12;
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000603 pte.page_size = MMU_PAGE_64K;
Alexey Kardashevskiy6c7d47c2017-11-22 14:42:21 +1100604 pte.wimg = HPTE_R_M;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000605 }
606
Alexander Graf5deb8e72014-04-24 13:46:24 +0200607 switch (kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000608 case 0:
609 pte.vpage |= ((u64)VSID_REAL << (SID_SHIFT - 12));
610 break;
611 case MSR_DR:
Alexander Grafc01e3f62014-07-11 02:58:58 +0200612 if (!data &&
613 (vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK) &&
614 ((pte.raddr & SPLIT_HACK_MASK) == SPLIT_HACK_OFFS))
615 pte.raddr &= ~SPLIT_HACK_MASK;
616 /* fall through */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000617 case MSR_IR:
618 vcpu->arch.mmu.esid_to_vsid(vcpu, eaddr >> SID_SHIFT, &vsid);
619
Alexander Graf5deb8e72014-04-24 13:46:24 +0200620 if ((kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) == MSR_DR)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000621 pte.vpage |= ((u64)VSID_REAL_DR << (SID_SHIFT - 12));
622 else
623 pte.vpage |= ((u64)VSID_REAL_IR << (SID_SHIFT - 12));
624 pte.vpage |= vsid;
625
626 if (vsid == -1)
627 page_found = -EINVAL;
628 break;
629 }
630
631 if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
632 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
633 /*
634 * If we do the dcbz hack, we have to NX on every execution,
635 * so we can patch the executing code. This renders our guest
636 * NX-less.
637 */
638 pte.may_execute = !data;
639 }
640
641 if (page_found == -ENOENT) {
642 /* Page not found in guest PTE entries */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200643 u64 ssrr1 = vcpu->arch.shadow_srr1;
644 u64 msr = kvmppc_get_msr(vcpu);
645 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
646 kvmppc_set_dsisr(vcpu, vcpu->arch.fault_dsisr);
647 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000648 kvmppc_book3s_queue_irqprio(vcpu, vec);
649 } else if (page_found == -EPERM) {
650 /* Storage protection */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200651 u32 dsisr = vcpu->arch.fault_dsisr;
652 u64 ssrr1 = vcpu->arch.shadow_srr1;
653 u64 msr = kvmppc_get_msr(vcpu);
654 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
655 dsisr = (dsisr & ~DSISR_NOHPTE) | DSISR_PROTFAULT;
656 kvmppc_set_dsisr(vcpu, dsisr);
657 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000658 kvmppc_book3s_queue_irqprio(vcpu, vec);
659 } else if (page_found == -EINVAL) {
660 /* Page not found in guest SLB */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200661 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000662 kvmppc_book3s_queue_irqprio(vcpu, vec + 0x80);
Alexey Kardashevskiy9eecec12017-03-24 17:47:13 +1100663 } else if (kvmppc_visible_gpa(vcpu, pte.raddr)) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000664 if (data && !(vcpu->arch.fault_dsisr & DSISR_NOHPTE)) {
665 /*
666 * There is already a host HPTE there, presumably
667 * a read-only one for a page the guest thinks
668 * is writable, so get rid of it first.
669 */
670 kvmppc_mmu_unmap_page(vcpu, &pte);
671 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000672 /* The guest's PTE is not mapped yet. Map on the host */
Alexey Kardashevskiybd9166f2017-03-24 17:48:10 +1100673 if (kvmppc_mmu_map_page(vcpu, &pte, iswrite) == -EIO) {
674 /* Exit KVM if mapping failed */
675 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
676 return RESUME_HOST;
677 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000678 if (data)
679 vcpu->stat.sp_storage++;
680 else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
Paul Mackerras93b159b2013-09-20 14:52:51 +1000681 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32)))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000682 kvmppc_patch_dcbz(vcpu, &pte);
683 } else {
684 /* MMIO */
685 vcpu->stat.mmio_exits++;
686 vcpu->arch.paddr_accessed = pte.raddr;
Alexander Graf6020c0f2012-03-12 02:26:30 +0100687 vcpu->arch.vaddr_accessed = pte.eaddr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000688 r = kvmppc_emulate_mmio(run, vcpu);
689 if ( r == RESUME_HOST_NV )
690 r = RESUME_HOST;
691 }
692
693 return r;
694}
695
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000696/* Give up external provider (FPU, Altivec, VSX) */
697void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr)
698{
699 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000700
Paul Mackerras28c483b2012-11-04 18:16:46 +0000701 /*
702 * VSX instructions can access FP and vector registers, so if
703 * we are giving up VSX, make sure we give up FP and VMX as well.
704 */
705 if (msr & MSR_VSX)
706 msr |= MSR_FP | MSR_VEC;
707
708 msr &= vcpu->arch.guest_owned_ext;
709 if (!msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000710 return;
711
712#ifdef DEBUG_EXT
713 printk(KERN_INFO "Giving up ext 0x%lx\n", msr);
714#endif
715
Paul Mackerras28c483b2012-11-04 18:16:46 +0000716 if (msr & MSR_FP) {
717 /*
718 * Note that on CPUs with VSX, giveup_fpu stores
719 * both the traditional FP registers and the added VSX
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000720 * registers into thread.fp_state.fpr[].
Paul Mackerras28c483b2012-11-04 18:16:46 +0000721 */
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100722 if (t->regs->msr & MSR_FP)
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000723 giveup_fpu(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100724 t->fp_save_area = NULL;
Paul Mackerras28c483b2012-11-04 18:16:46 +0000725 }
726
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000727#ifdef CONFIG_ALTIVEC
Paul Mackerras28c483b2012-11-04 18:16:46 +0000728 if (msr & MSR_VEC) {
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000729 if (current->thread.regs->msr & MSR_VEC)
730 giveup_altivec(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100731 t->vr_save_area = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000732 }
Paul Mackerras28c483b2012-11-04 18:16:46 +0000733#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000734
Paul Mackerras28c483b2012-11-04 18:16:46 +0000735 vcpu->arch.guest_owned_ext &= ~(msr | MSR_VSX);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000736 kvmppc_recalc_shadow_msr(vcpu);
737}
738
Alexander Graf616dff82014-04-29 16:48:44 +0200739/* Give up facility (TAR / EBB / DSCR) */
740static void kvmppc_giveup_fac(struct kvm_vcpu *vcpu, ulong fac)
741{
742#ifdef CONFIG_PPC_BOOK3S_64
743 if (!(vcpu->arch.shadow_fscr & (1ULL << fac))) {
744 /* Facility not available to the guest, ignore giveup request*/
745 return;
746 }
Alexander Grafe14e7a12014-04-22 12:26:58 +0200747
748 switch (fac) {
749 case FSCR_TAR_LG:
750 vcpu->arch.tar = mfspr(SPRN_TAR);
751 mtspr(SPRN_TAR, current->thread.tar);
752 vcpu->arch.shadow_fscr &= ~FSCR_TAR;
753 break;
754 }
Alexander Graf616dff82014-04-29 16:48:44 +0200755#endif
756}
757
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000758/* Handle external providers (FPU, Altivec, VSX) */
759static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
760 ulong msr)
761{
762 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000763
764 /* When we have paired singles, we emulate in software */
765 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE)
766 return RESUME_GUEST;
767
Alexander Graf5deb8e72014-04-24 13:46:24 +0200768 if (!(kvmppc_get_msr(vcpu) & msr)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000769 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
770 return RESUME_GUEST;
771 }
772
Paul Mackerras28c483b2012-11-04 18:16:46 +0000773 if (msr == MSR_VSX) {
774 /* No VSX? Give an illegal instruction interrupt */
775#ifdef CONFIG_VSX
776 if (!cpu_has_feature(CPU_FTR_VSX))
777#endif
778 {
779 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
780 return RESUME_GUEST;
781 }
782
783 /*
784 * We have to load up all the FP and VMX registers before
785 * we can let the guest use VSX instructions.
786 */
787 msr = MSR_FP | MSR_VEC | MSR_VSX;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000788 }
789
Paul Mackerras28c483b2012-11-04 18:16:46 +0000790 /* See if we already own all the ext(s) needed */
791 msr &= ~vcpu->arch.guest_owned_ext;
792 if (!msr)
793 return RESUME_GUEST;
794
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000795#ifdef DEBUG_EXT
796 printk(KERN_INFO "Loading up ext 0x%lx\n", msr);
797#endif
798
Paul Mackerras28c483b2012-11-04 18:16:46 +0000799 if (msr & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530800 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100801 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100802 load_fp_state(&vcpu->arch.fp);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100803 disable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100804 t->fp_save_area = &vcpu->arch.fp;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530805 preempt_enable();
Paul Mackerras28c483b2012-11-04 18:16:46 +0000806 }
807
808 if (msr & MSR_VEC) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000809#ifdef CONFIG_ALTIVEC
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530810 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100811 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100812 load_vr_state(&vcpu->arch.vr);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100813 disable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100814 t->vr_save_area = &vcpu->arch.vr;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530815 preempt_enable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000816#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000817 }
818
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100819 t->regs->msr |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000820 vcpu->arch.guest_owned_ext |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000821 kvmppc_recalc_shadow_msr(vcpu);
822
823 return RESUME_GUEST;
824}
825
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000826/*
827 * Kernel code using FP or VMX could have flushed guest state to
828 * the thread_struct; if so, get it back now.
829 */
830static void kvmppc_handle_lost_ext(struct kvm_vcpu *vcpu)
831{
832 unsigned long lost_ext;
833
834 lost_ext = vcpu->arch.guest_owned_ext & ~current->thread.regs->msr;
835 if (!lost_ext)
836 return;
837
Paul Mackerras09548fd2013-10-15 20:43:01 +1100838 if (lost_ext & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530839 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100840 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100841 load_fp_state(&vcpu->arch.fp);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100842 disable_kernel_fp();
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530843 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100844 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000845#ifdef CONFIG_ALTIVEC
Paul Mackerras09548fd2013-10-15 20:43:01 +1100846 if (lost_ext & MSR_VEC) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530847 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100848 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100849 load_vr_state(&vcpu->arch.vr);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100850 disable_kernel_altivec();
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530851 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100852 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000853#endif
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000854 current->thread.regs->msr |= lost_ext;
855}
856
Alexander Graf616dff82014-04-29 16:48:44 +0200857#ifdef CONFIG_PPC_BOOK3S_64
858
859static void kvmppc_trigger_fac_interrupt(struct kvm_vcpu *vcpu, ulong fac)
860{
861 /* Inject the Interrupt Cause field and trigger a guest interrupt */
862 vcpu->arch.fscr &= ~(0xffULL << 56);
863 vcpu->arch.fscr |= (fac << 56);
864 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_FAC_UNAVAIL);
865}
866
867static void kvmppc_emulate_fac(struct kvm_vcpu *vcpu, ulong fac)
868{
869 enum emulation_result er = EMULATE_FAIL;
870
871 if (!(kvmppc_get_msr(vcpu) & MSR_PR))
872 er = kvmppc_emulate_instruction(vcpu->run, vcpu);
873
874 if ((er != EMULATE_DONE) && (er != EMULATE_AGAIN)) {
875 /* Couldn't emulate, trigger interrupt in guest */
876 kvmppc_trigger_fac_interrupt(vcpu, fac);
877 }
878}
879
880/* Enable facilities (TAR, EBB, DSCR) for the guest */
881static int kvmppc_handle_fac(struct kvm_vcpu *vcpu, ulong fac)
882{
Alexander Graf9916d572014-04-29 17:54:40 +0200883 bool guest_fac_enabled;
Alexander Graf616dff82014-04-29 16:48:44 +0200884 BUG_ON(!cpu_has_feature(CPU_FTR_ARCH_207S));
885
Alexander Graf9916d572014-04-29 17:54:40 +0200886 /*
887 * Not every facility is enabled by FSCR bits, check whether the
888 * guest has this facility enabled at all.
889 */
890 switch (fac) {
891 case FSCR_TAR_LG:
892 case FSCR_EBB_LG:
893 guest_fac_enabled = (vcpu->arch.fscr & (1ULL << fac));
894 break;
895 case FSCR_TM_LG:
896 guest_fac_enabled = kvmppc_get_msr(vcpu) & MSR_TM;
897 break;
898 default:
899 guest_fac_enabled = false;
900 break;
901 }
902
903 if (!guest_fac_enabled) {
Alexander Graf616dff82014-04-29 16:48:44 +0200904 /* Facility not enabled by the guest */
905 kvmppc_trigger_fac_interrupt(vcpu, fac);
906 return RESUME_GUEST;
907 }
908
909 switch (fac) {
Alexander Grafe14e7a12014-04-22 12:26:58 +0200910 case FSCR_TAR_LG:
911 /* TAR switching isn't lazy in Linux yet */
912 current->thread.tar = mfspr(SPRN_TAR);
913 mtspr(SPRN_TAR, vcpu->arch.tar);
914 vcpu->arch.shadow_fscr |= FSCR_TAR;
915 break;
Alexander Graf616dff82014-04-29 16:48:44 +0200916 default:
917 kvmppc_emulate_fac(vcpu, fac);
918 break;
919 }
920
921 return RESUME_GUEST;
922}
Alexander Graf8e6afa32014-07-31 10:21:59 +0200923
924void kvmppc_set_fscr(struct kvm_vcpu *vcpu, u64 fscr)
925{
926 if ((vcpu->arch.fscr & FSCR_TAR) && !(fscr & FSCR_TAR)) {
927 /* TAR got dropped, drop it in shadow too */
928 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
929 }
930 vcpu->arch.fscr = fscr;
931}
Alexander Graf616dff82014-04-29 16:48:44 +0200932#endif
933
Laurent Vivier11dd6ac2016-04-08 18:05:00 +0200934static void kvmppc_setup_debug(struct kvm_vcpu *vcpu)
935{
936 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
937 u64 msr = kvmppc_get_msr(vcpu);
938
939 kvmppc_set_msr(vcpu, msr | MSR_SE);
940 }
941}
942
943static void kvmppc_clear_debug(struct kvm_vcpu *vcpu)
944{
945 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
946 u64 msr = kvmppc_get_msr(vcpu);
947
948 kvmppc_set_msr(vcpu, msr & ~MSR_SE);
949 }
950}
951
Thomas Huthfcd4f3c2017-01-25 13:27:22 +0100952static int kvmppc_exit_pr_progint(struct kvm_run *run, struct kvm_vcpu *vcpu,
953 unsigned int exit_nr)
954{
955 enum emulation_result er;
956 ulong flags;
957 u32 last_inst;
958 int emul, r;
959
960 /*
961 * shadow_srr1 only contains valid flags if we came here via a program
962 * exception. The other exceptions (emulation assist, FP unavailable,
963 * etc.) do not provide flags in SRR1, so use an illegal-instruction
964 * exception when injecting a program interrupt into the guest.
965 */
966 if (exit_nr == BOOK3S_INTERRUPT_PROGRAM)
967 flags = vcpu->arch.shadow_srr1 & 0x1f0000ull;
968 else
969 flags = SRR1_PROGILL;
970
971 emul = kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
972 if (emul != EMULATE_DONE)
973 return RESUME_GUEST;
974
975 if (kvmppc_get_msr(vcpu) & MSR_PR) {
976#ifdef EXIT_DEBUG
977 pr_info("Userspace triggered 0x700 exception at\n 0x%lx (0x%x)\n",
978 kvmppc_get_pc(vcpu), last_inst);
979#endif
980 if ((last_inst & 0xff0007ff) != (INS_DCBZ & 0xfffffff7)) {
981 kvmppc_core_queue_program(vcpu, flags);
982 return RESUME_GUEST;
983 }
984 }
985
986 vcpu->stat.emulated_inst_exits++;
987 er = kvmppc_emulate_instruction(run, vcpu);
988 switch (er) {
989 case EMULATE_DONE:
990 r = RESUME_GUEST_NV;
991 break;
992 case EMULATE_AGAIN:
993 r = RESUME_GUEST;
994 break;
995 case EMULATE_FAIL:
996 pr_crit("%s: emulation at %lx failed (%08x)\n",
997 __func__, kvmppc_get_pc(vcpu), last_inst);
998 kvmppc_core_queue_program(vcpu, flags);
999 r = RESUME_GUEST;
1000 break;
1001 case EMULATE_DO_MMIO:
1002 run->exit_reason = KVM_EXIT_MMIO;
1003 r = RESUME_HOST_NV;
1004 break;
1005 case EMULATE_EXIT_USER:
1006 r = RESUME_HOST_NV;
1007 break;
1008 default:
1009 BUG();
1010 }
1011
1012 return r;
1013}
1014
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301015int kvmppc_handle_exit_pr(struct kvm_run *run, struct kvm_vcpu *vcpu,
1016 unsigned int exit_nr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001017{
1018 int r = RESUME_HOST;
Alexander Graf7ee78852012-08-13 12:44:41 +02001019 int s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001020
1021 vcpu->stat.sum_exits++;
1022
1023 run->exit_reason = KVM_EXIT_UNKNOWN;
1024 run->ready_for_interrupt_injection = 1;
1025
Alexander Grafbd2be682012-08-13 01:04:19 +02001026 /* We get here with MSR.EE=1 */
Alexander Graf3b1d9d72012-04-30 10:56:12 +02001027
Alexander Graf97c95052012-08-02 15:10:00 +02001028 trace_kvm_exit(exit_nr, vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02001029 guest_exit();
Alexander Grafc63ddcb2012-08-12 11:27:49 +02001030
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001031 switch (exit_nr) {
1032 case BOOK3S_INTERRUPT_INST_STORAGE:
Alexander Graf468a12c2011-12-09 14:44:13 +01001033 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001034 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001035 vcpu->stat.pf_instruc++;
1036
Alexander Grafc01e3f62014-07-11 02:58:58 +02001037 if (kvmppc_is_split_real(vcpu))
1038 kvmppc_fixup_split_real(vcpu);
1039
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001040#ifdef CONFIG_PPC_BOOK3S_32
1041 /* We set segments as unused segments when invalidating them. So
1042 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001043 {
1044 struct kvmppc_book3s_shadow_vcpu *svcpu;
1045 u32 sr;
1046
1047 svcpu = svcpu_get(vcpu);
1048 sr = svcpu->sr[kvmppc_get_pc(vcpu) >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +01001049 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001050 if (sr == SR_INVALID) {
1051 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
1052 r = RESUME_GUEST;
1053 break;
1054 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001055 }
1056#endif
1057
1058 /* only care about PTEG not found errors, but leave NX alone */
Alexander Graf468a12c2011-12-09 14:44:13 +01001059 if (shadow_srr1 & 0x40000000) {
Paul Mackerras93b159b2013-09-20 14:52:51 +10001060 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001061 r = kvmppc_handle_pagefault(run, vcpu, kvmppc_get_pc(vcpu), exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +10001062 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001063 vcpu->stat.sp_instruc++;
1064 } else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
1065 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
1066 /*
1067 * XXX If we do the dcbz hack we use the NX bit to flush&patch the page,
1068 * so we can't use the NX bit inside the guest. Let's cross our fingers,
1069 * that no guest that needs the dcbz hack does NX.
1070 */
1071 kvmppc_mmu_pte_flush(vcpu, kvmppc_get_pc(vcpu), ~0xFFFUL);
1072 r = RESUME_GUEST;
1073 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001074 u64 msr = kvmppc_get_msr(vcpu);
1075 msr |= shadow_srr1 & 0x58000000;
1076 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001077 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1078 r = RESUME_GUEST;
1079 }
1080 break;
Alexander Graf468a12c2011-12-09 14:44:13 +01001081 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001082 case BOOK3S_INTERRUPT_DATA_STORAGE:
1083 {
1084 ulong dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001085 u32 fault_dsisr = vcpu->arch.fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001086 vcpu->stat.pf_storage++;
1087
1088#ifdef CONFIG_PPC_BOOK3S_32
1089 /* We set segments as unused segments when invalidating them. So
1090 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001091 {
1092 struct kvmppc_book3s_shadow_vcpu *svcpu;
1093 u32 sr;
1094
1095 svcpu = svcpu_get(vcpu);
1096 sr = svcpu->sr[dar >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +01001097 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001098 if (sr == SR_INVALID) {
1099 kvmppc_mmu_map_segment(vcpu, dar);
1100 r = RESUME_GUEST;
1101 break;
1102 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001103 }
1104#endif
1105
Paul Mackerras93b159b2013-09-20 14:52:51 +10001106 /*
1107 * We need to handle missing shadow PTEs, and
1108 * protection faults due to us mapping a page read-only
1109 * when the guest thinks it is writable.
1110 */
1111 if (fault_dsisr & (DSISR_NOHPTE | DSISR_PROTFAULT)) {
1112 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001113 r = kvmppc_handle_pagefault(run, vcpu, dar, exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +10001114 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001115 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001116 kvmppc_set_dar(vcpu, dar);
1117 kvmppc_set_dsisr(vcpu, fault_dsisr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001118 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1119 r = RESUME_GUEST;
1120 }
1121 break;
1122 }
1123 case BOOK3S_INTERRUPT_DATA_SEGMENT:
1124 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_fault_dar(vcpu)) < 0) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001125 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001126 kvmppc_book3s_queue_irqprio(vcpu,
1127 BOOK3S_INTERRUPT_DATA_SEGMENT);
1128 }
1129 r = RESUME_GUEST;
1130 break;
1131 case BOOK3S_INTERRUPT_INST_SEGMENT:
1132 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu)) < 0) {
1133 kvmppc_book3s_queue_irqprio(vcpu,
1134 BOOK3S_INTERRUPT_INST_SEGMENT);
1135 }
1136 r = RESUME_GUEST;
1137 break;
1138 /* We're good on these - the host merely wanted to get our attention */
1139 case BOOK3S_INTERRUPT_DECREMENTER:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001140 case BOOK3S_INTERRUPT_HV_DECREMENTER:
Paul Mackerras40688902014-01-08 21:25:36 +11001141 case BOOK3S_INTERRUPT_DOORBELL:
Alexander Graf568fccc2014-06-16 16:37:38 +02001142 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001143 vcpu->stat.dec_exits++;
1144 r = RESUME_GUEST;
1145 break;
1146 case BOOK3S_INTERRUPT_EXTERNAL:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001147 case BOOK3S_INTERRUPT_EXTERNAL_LEVEL:
1148 case BOOK3S_INTERRUPT_EXTERNAL_HV:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001149 vcpu->stat.ext_intr_exits++;
1150 r = RESUME_GUEST;
1151 break;
1152 case BOOK3S_INTERRUPT_PERFMON:
1153 r = RESUME_GUEST;
1154 break;
1155 case BOOK3S_INTERRUPT_PROGRAM:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001156 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Thomas Huthfcd4f3c2017-01-25 13:27:22 +01001157 r = kvmppc_exit_pr_progint(run, vcpu, exit_nr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001158 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001159 case BOOK3S_INTERRUPT_SYSCALL:
Mihai Caraman51f04722014-07-23 19:06:21 +03001160 {
1161 u32 last_sc;
1162 int emul;
1163
1164 /* Get last sc for papr */
1165 if (vcpu->arch.papr_enabled) {
1166 /* The sc instuction points SRR0 to the next inst */
1167 emul = kvmppc_get_last_inst(vcpu, INST_SC, &last_sc);
1168 if (emul != EMULATE_DONE) {
1169 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) - 4);
1170 r = RESUME_GUEST;
1171 break;
1172 }
1173 }
1174
Alexander Grafa668f2b2011-08-08 17:26:24 +02001175 if (vcpu->arch.papr_enabled &&
Mihai Caraman51f04722014-07-23 19:06:21 +03001176 (last_sc == 0x44000022) &&
Alexander Graf5deb8e72014-04-24 13:46:24 +02001177 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
Alexander Grafa668f2b2011-08-08 17:26:24 +02001178 /* SC 1 papr hypercalls */
1179 ulong cmd = kvmppc_get_gpr(vcpu, 3);
1180 int i;
1181
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301182#ifdef CONFIG_PPC_BOOK3S_64
Alexander Grafa668f2b2011-08-08 17:26:24 +02001183 if (kvmppc_h_pr(vcpu, cmd) == EMULATE_DONE) {
1184 r = RESUME_GUEST;
1185 break;
1186 }
Andreas Schwab96f38d72011-11-08 07:17:39 +00001187#endif
Alexander Grafa668f2b2011-08-08 17:26:24 +02001188
1189 run->papr_hcall.nr = cmd;
1190 for (i = 0; i < 9; ++i) {
1191 ulong gpr = kvmppc_get_gpr(vcpu, 4 + i);
1192 run->papr_hcall.args[i] = gpr;
1193 }
1194 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1195 vcpu->arch.hcall_needed = 1;
1196 r = RESUME_HOST;
1197 } else if (vcpu->arch.osi_enabled &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001198 (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) &&
1199 (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) {
1200 /* MOL hypercalls */
1201 u64 *gprs = run->osi.gprs;
1202 int i;
1203
1204 run->exit_reason = KVM_EXIT_OSI;
1205 for (i = 0; i < 32; i++)
1206 gprs[i] = kvmppc_get_gpr(vcpu, i);
1207 vcpu->arch.osi_needed = 1;
1208 r = RESUME_HOST_NV;
Alexander Graf5deb8e72014-04-24 13:46:24 +02001209 } else if (!(kvmppc_get_msr(vcpu) & MSR_PR) &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001210 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
1211 /* KVM PV hypercalls */
1212 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
1213 r = RESUME_GUEST;
1214 } else {
1215 /* Guest syscalls */
1216 vcpu->stat.syscall_exits++;
1217 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1218 r = RESUME_GUEST;
1219 }
1220 break;
Mihai Caraman51f04722014-07-23 19:06:21 +03001221 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001222 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1223 case BOOK3S_INTERRUPT_ALTIVEC:
1224 case BOOK3S_INTERRUPT_VSX:
1225 {
1226 int ext_msr = 0;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001227 int emul;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001228 u32 last_inst;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001229
Mihai Caraman9a26af62014-07-23 19:06:20 +03001230 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE) {
1231 /* Do paired single instruction emulation */
Mihai Caraman51f04722014-07-23 19:06:21 +03001232 emul = kvmppc_get_last_inst(vcpu, INST_GENERIC,
1233 &last_inst);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001234 if (emul == EMULATE_DONE)
Thomas Huthfcd4f3c2017-01-25 13:27:22 +01001235 r = kvmppc_exit_pr_progint(run, vcpu, exit_nr);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001236 else
1237 r = RESUME_GUEST;
1238
1239 break;
1240 }
1241
1242 /* Enable external provider */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001243 switch (exit_nr) {
Mihai Caraman9a26af62014-07-23 19:06:20 +03001244 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1245 ext_msr = MSR_FP;
1246 break;
1247
1248 case BOOK3S_INTERRUPT_ALTIVEC:
1249 ext_msr = MSR_VEC;
1250 break;
1251
1252 case BOOK3S_INTERRUPT_VSX:
1253 ext_msr = MSR_VSX;
1254 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001255 }
1256
Mihai Caraman9a26af62014-07-23 19:06:20 +03001257 r = kvmppc_handle_ext(vcpu, exit_nr, ext_msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001258 break;
1259 }
1260 case BOOK3S_INTERRUPT_ALIGNMENT:
Mihai Caraman9a26af62014-07-23 19:06:20 +03001261 {
Mihai Caraman51f04722014-07-23 19:06:21 +03001262 u32 last_inst;
1263 int emul = kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001264
1265 if (emul == EMULATE_DONE) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001266 u32 dsisr;
1267 u64 dar;
1268
1269 dsisr = kvmppc_alignment_dsisr(vcpu, last_inst);
1270 dar = kvmppc_alignment_dar(vcpu, last_inst);
1271
1272 kvmppc_set_dsisr(vcpu, dsisr);
1273 kvmppc_set_dar(vcpu, dar);
1274
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001275 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1276 }
1277 r = RESUME_GUEST;
1278 break;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001279 }
Alexander Graf616dff82014-04-29 16:48:44 +02001280#ifdef CONFIG_PPC_BOOK3S_64
1281 case BOOK3S_INTERRUPT_FAC_UNAVAIL:
1282 kvmppc_handle_fac(vcpu, vcpu->arch.shadow_fscr >> 56);
1283 r = RESUME_GUEST;
1284 break;
1285#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001286 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001287 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1288 r = RESUME_GUEST;
1289 break;
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001290 case BOOK3S_INTERRUPT_TRACE:
1291 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
1292 run->exit_reason = KVM_EXIT_DEBUG;
1293 r = RESUME_HOST;
1294 } else {
1295 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1296 r = RESUME_GUEST;
1297 }
1298 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001299 default:
Alexander Graf468a12c2011-12-09 14:44:13 +01001300 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001301 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001302 /* Ugh - bork here! What did we get? */
1303 printk(KERN_EMERG "exit_nr=0x%x | pc=0x%lx | msr=0x%lx\n",
Alexander Graf468a12c2011-12-09 14:44:13 +01001304 exit_nr, kvmppc_get_pc(vcpu), shadow_srr1);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001305 r = RESUME_HOST;
1306 BUG();
1307 break;
1308 }
Alexander Graf468a12c2011-12-09 14:44:13 +01001309 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001310
1311 if (!(r & RESUME_HOST)) {
1312 /* To avoid clobbering exit_reason, only check for signals if
1313 * we aren't already exiting to userspace for some other
1314 * reason. */
Alexander Grafe371f712011-12-19 13:36:55 +01001315
1316 /*
1317 * Interrupts could be timers for the guest which we have to
1318 * inject again, so let's postpone them until we're in the guest
1319 * and if we really did time things so badly, then we just exit
1320 * again due to a host external interrupt.
1321 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001322 s = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001323 if (s <= 0)
Alexander Graf7ee78852012-08-13 12:44:41 +02001324 r = s;
Scott Wood6c85f522014-01-09 19:18:40 -06001325 else {
1326 /* interrupts now hard-disabled */
Scott Wood5f1c2482013-07-10 17:47:39 -05001327 kvmppc_fix_ee_before_entry();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001328 }
Scott Wood6c85f522014-01-09 19:18:40 -06001329
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +10001330 kvmppc_handle_lost_ext(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001331 }
1332
1333 trace_kvm_book3s_reenter(r, vcpu);
1334
1335 return r;
1336}
1337
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301338static int kvm_arch_vcpu_ioctl_get_sregs_pr(struct kvm_vcpu *vcpu,
1339 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001340{
1341 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1342 int i;
1343
1344 sregs->pvr = vcpu->arch.pvr;
1345
1346 sregs->u.s.sdr1 = to_book3s(vcpu)->sdr1;
1347 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1348 for (i = 0; i < 64; i++) {
1349 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige | i;
1350 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1351 }
1352 } else {
1353 for (i = 0; i < 16; i++)
Alexander Graf5deb8e72014-04-24 13:46:24 +02001354 sregs->u.s.ppc32.sr[i] = kvmppc_get_sr(vcpu, i);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001355
1356 for (i = 0; i < 8; i++) {
1357 sregs->u.s.ppc32.ibat[i] = vcpu3s->ibat[i].raw;
1358 sregs->u.s.ppc32.dbat[i] = vcpu3s->dbat[i].raw;
1359 }
1360 }
1361
1362 return 0;
1363}
1364
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301365static int kvm_arch_vcpu_ioctl_set_sregs_pr(struct kvm_vcpu *vcpu,
1366 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001367{
1368 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1369 int i;
1370
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301371 kvmppc_set_pvr_pr(vcpu, sregs->pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001372
1373 vcpu3s->sdr1 = sregs->u.s.sdr1;
Greg Kurzf4093ee2017-10-16 12:29:44 +02001374#ifdef CONFIG_PPC_BOOK3S_64
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001375 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
Greg Kurzf4093ee2017-10-16 12:29:44 +02001376 /* Flush all SLB entries */
1377 vcpu->arch.mmu.slbmte(vcpu, 0, 0);
1378 vcpu->arch.mmu.slbia(vcpu);
1379
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001380 for (i = 0; i < 64; i++) {
Greg Kurzf4093ee2017-10-16 12:29:44 +02001381 u64 rb = sregs->u.s.ppc64.slb[i].slbe;
1382 u64 rs = sregs->u.s.ppc64.slb[i].slbv;
1383
1384 if (rb & SLB_ESID_V)
1385 vcpu->arch.mmu.slbmte(vcpu, rs, rb);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001386 }
Greg Kurzf4093ee2017-10-16 12:29:44 +02001387 } else
1388#endif
1389 {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001390 for (i = 0; i < 16; i++) {
1391 vcpu->arch.mmu.mtsrin(vcpu, i, sregs->u.s.ppc32.sr[i]);
1392 }
1393 for (i = 0; i < 8; i++) {
1394 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), false,
1395 (u32)sregs->u.s.ppc32.ibat[i]);
1396 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), true,
1397 (u32)(sregs->u.s.ppc32.ibat[i] >> 32));
1398 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), false,
1399 (u32)sregs->u.s.ppc32.dbat[i]);
1400 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), true,
1401 (u32)(sregs->u.s.ppc32.dbat[i] >> 32));
1402 }
1403 }
1404
1405 /* Flush the MMU after messing with the segments */
1406 kvmppc_mmu_pte_flush(vcpu, 0, 0);
1407
1408 return 0;
1409}
1410
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301411static int kvmppc_get_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1412 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001413{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001414 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001415
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001416 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301417 case KVM_REG_PPC_DEBUG_INST:
1418 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1419 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001420 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001421 *val = get_reg_val(id, to_book3s(vcpu)->hior);
Paul Mackerras31f34382011-12-12 12:26:50 +00001422 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001423 case KVM_REG_PPC_VTB:
1424 *val = get_reg_val(id, to_book3s(vcpu)->vtb);
1425 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301426 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001427 case KVM_REG_PPC_LPCR_64:
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301428 /*
1429 * We are only interested in the LPCR_ILE bit
1430 */
1431 if (vcpu->arch.intr_msr & MSR_LE)
1432 *val = get_reg_val(id, LPCR_ILE);
1433 else
1434 *val = get_reg_val(id, 0);
1435 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001436 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001437 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001438 break;
1439 }
1440
1441 return r;
1442}
1443
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301444static void kvmppc_set_lpcr_pr(struct kvm_vcpu *vcpu, u64 new_lpcr)
1445{
1446 if (new_lpcr & LPCR_ILE)
1447 vcpu->arch.intr_msr |= MSR_LE;
1448 else
1449 vcpu->arch.intr_msr &= ~MSR_LE;
1450}
1451
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301452static int kvmppc_set_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1453 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001454{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001455 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001456
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001457 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001458 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001459 to_book3s(vcpu)->hior = set_reg_val(id, *val);
1460 to_book3s(vcpu)->hior_explicit = true;
Paul Mackerras31f34382011-12-12 12:26:50 +00001461 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001462 case KVM_REG_PPC_VTB:
1463 to_book3s(vcpu)->vtb = set_reg_val(id, *val);
1464 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301465 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001466 case KVM_REG_PPC_LPCR_64:
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301467 kvmppc_set_lpcr_pr(vcpu, set_reg_val(id, *val));
1468 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001469 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001470 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001471 break;
1472 }
1473
1474 return r;
1475}
1476
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301477static struct kvm_vcpu *kvmppc_core_vcpu_create_pr(struct kvm *kvm,
1478 unsigned int id)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001479{
1480 struct kvmppc_vcpu_book3s *vcpu_book3s;
1481 struct kvm_vcpu *vcpu;
1482 int err = -ENOMEM;
1483 unsigned long p;
1484
Paul Mackerras3ff95502013-09-20 14:52:49 +10001485 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
1486 if (!vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001487 goto out;
1488
Paul Mackerras3ff95502013-09-20 14:52:49 +10001489 vcpu_book3s = vzalloc(sizeof(struct kvmppc_vcpu_book3s));
1490 if (!vcpu_book3s)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001491 goto free_vcpu;
Paul Mackerras3ff95502013-09-20 14:52:49 +10001492 vcpu->arch.book3s = vcpu_book3s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001493
Alexander Grafab784752014-04-06 23:31:48 +02001494#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001495 vcpu->arch.shadow_vcpu =
1496 kzalloc(sizeof(*vcpu->arch.shadow_vcpu), GFP_KERNEL);
1497 if (!vcpu->arch.shadow_vcpu)
1498 goto free_vcpu3s;
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001499#endif
Paul Mackerras3ff95502013-09-20 14:52:49 +10001500
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001501 err = kvm_vcpu_init(vcpu, kvm, id);
1502 if (err)
1503 goto free_shadow_vcpu;
1504
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001505 err = -ENOMEM;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001506 p = __get_free_page(GFP_KERNEL|__GFP_ZERO);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001507 if (!p)
1508 goto uninit_vcpu;
Alexander Graf89b68c92014-07-13 16:37:12 +02001509 vcpu->arch.shared = (void *)p;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001510#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf5deb8e72014-04-24 13:46:24 +02001511 /* Always start the shared struct in native endian mode */
1512#ifdef __BIG_ENDIAN__
1513 vcpu->arch.shared_big_endian = true;
1514#else
1515 vcpu->arch.shared_big_endian = false;
1516#endif
1517
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001518 /*
1519 * Default to the same as the host if we're on sufficiently
1520 * recent machine that we have 1TB segments;
1521 * otherwise default to PPC970FX.
1522 */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001523 vcpu->arch.pvr = 0x3C0301;
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001524 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1525 vcpu->arch.pvr = mfspr(SPRN_PVR);
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301526 vcpu->arch.intr_msr = MSR_SF;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001527#else
1528 /* default to book3s_32 (750) */
1529 vcpu->arch.pvr = 0x84202;
1530#endif
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301531 kvmppc_set_pvr_pr(vcpu, vcpu->arch.pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001532 vcpu->arch.slb_nr = 64;
1533
Alexander Graf94810ba2014-04-24 13:04:01 +02001534 vcpu->arch.shadow_msr = MSR_USER64 & ~MSR_LE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001535
1536 err = kvmppc_mmu_init(vcpu);
1537 if (err < 0)
1538 goto uninit_vcpu;
1539
1540 return vcpu;
1541
1542uninit_vcpu:
1543 kvm_vcpu_uninit(vcpu);
1544free_shadow_vcpu:
Alexander Grafab784752014-04-06 23:31:48 +02001545#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001546 kfree(vcpu->arch.shadow_vcpu);
1547free_vcpu3s:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001548#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001549 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001550free_vcpu:
1551 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001552out:
1553 return ERR_PTR(err);
1554}
1555
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301556static void kvmppc_core_vcpu_free_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001557{
1558 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
1559
1560 free_page((unsigned long)vcpu->arch.shared & PAGE_MASK);
1561 kvm_vcpu_uninit(vcpu);
Alexander Grafab784752014-04-06 23:31:48 +02001562#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001563 kfree(vcpu->arch.shadow_vcpu);
1564#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001565 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001566 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001567}
1568
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301569static int kvmppc_vcpu_run_pr(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001570{
1571 int ret;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001572#ifdef CONFIG_ALTIVEC
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001573 unsigned long uninitialized_var(vrsave);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001574#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001575
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001576 /* Check if we can run the vcpu at all */
1577 if (!vcpu->arch.sane) {
1578 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
Alexander Graf7d827142011-12-09 15:46:21 +01001579 ret = -EINVAL;
1580 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001581 }
1582
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001583 kvmppc_setup_debug(vcpu);
1584
Alexander Grafe371f712011-12-19 13:36:55 +01001585 /*
1586 * Interrupts could be timers for the guest which we have to inject
1587 * again, so let's postpone them until we're in the guest and if we
1588 * really did time things so badly, then we just exit again due to
1589 * a host external interrupt.
1590 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001591 ret = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001592 if (ret <= 0)
Alexander Graf7d827142011-12-09 15:46:21 +01001593 goto out;
Scott Wood6c85f522014-01-09 19:18:40 -06001594 /* interrupts now hard-disabled */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001595
Anton Blanchardc2085052015-10-29 11:44:08 +11001596 /* Save FPU, Altivec and VSX state */
1597 giveup_all(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001598
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001599 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +02001600 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001601 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
1602
Scott Wood5f1c2482013-07-10 17:47:39 -05001603 kvmppc_fix_ee_before_entry();
Paul Mackerrasdf6909e52011-06-29 00:19:50 +00001604
1605 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
1606
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001607 kvmppc_clear_debug(vcpu);
1608
Paolo Bonzini6edaa532016-06-15 15:18:26 +02001609 /* No need for guest_exit. It's done in handle_exit.
Alexander Graf24afa372012-08-12 12:42:30 +02001610 We also get here with interrupts enabled. */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001611
Paul Mackerras28c483b2012-11-04 18:16:46 +00001612 /* Make sure we save the guest FPU/Altivec/VSX state */
1613 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
1614
Alexander Grafe14e7a12014-04-22 12:26:58 +02001615 /* Make sure we save the guest TAR/EBB/DSCR state */
1616 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
1617
Alexander Graf7d827142011-12-09 15:46:21 +01001618out:
Alexander Graf0652eaa2012-08-12 11:34:21 +02001619 vcpu->mode = OUTSIDE_GUEST_MODE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001620 return ret;
1621}
1622
Paul Mackerras82ed3612011-12-15 02:03:22 +00001623/*
1624 * Get (and clear) the dirty memory log for a memory slot.
1625 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301626static int kvm_vm_ioctl_get_dirty_log_pr(struct kvm *kvm,
1627 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00001628{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001629 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00001630 struct kvm_memory_slot *memslot;
1631 struct kvm_vcpu *vcpu;
1632 ulong ga, ga_end;
1633 int is_dirty = 0;
1634 int r;
1635 unsigned long n;
1636
1637 mutex_lock(&kvm->slots_lock);
1638
1639 r = kvm_get_dirty_log(kvm, log, &is_dirty);
1640 if (r)
1641 goto out;
1642
1643 /* If nothing is dirty, don't bother messing with page tables. */
1644 if (is_dirty) {
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001645 slots = kvm_memslots(kvm);
1646 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00001647
1648 ga = memslot->base_gfn << PAGE_SHIFT;
1649 ga_end = ga + (memslot->npages << PAGE_SHIFT);
1650
1651 kvm_for_each_vcpu(n, vcpu, kvm)
1652 kvmppc_mmu_pte_pflush(vcpu, ga, ga_end);
1653
1654 n = kvm_dirty_bitmap_bytes(memslot);
1655 memset(memslot->dirty_bitmap, 0, n);
1656 }
1657
1658 r = 0;
1659out:
1660 mutex_unlock(&kvm->slots_lock);
1661 return r;
1662}
1663
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301664static void kvmppc_core_flush_memslot_pr(struct kvm *kvm,
1665 struct kvm_memory_slot *memslot)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001666{
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301667 return;
1668}
1669
1670static int kvmppc_core_prepare_memory_region_pr(struct kvm *kvm,
1671 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001672 const struct kvm_userspace_memory_region *mem)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301673{
1674 return 0;
1675}
1676
1677static void kvmppc_core_commit_memory_region_pr(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001678 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001679 const struct kvm_memory_slot *old,
1680 const struct kvm_memory_slot *new)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301681{
1682 return;
1683}
1684
1685static void kvmppc_core_free_memslot_pr(struct kvm_memory_slot *free,
1686 struct kvm_memory_slot *dont)
1687{
1688 return;
1689}
1690
1691static int kvmppc_core_create_memslot_pr(struct kvm_memory_slot *slot,
1692 unsigned long npages)
1693{
1694 return 0;
1695}
1696
1697
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001698#ifdef CONFIG_PPC64
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301699static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1700 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001701{
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001702 long int i;
1703 struct kvm_vcpu *vcpu;
1704
1705 info->flags = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001706
1707 /* SLB is always 64 entries */
1708 info->slb_size = 64;
1709
1710 /* Standard 4k base page size segment */
1711 info->sps[0].page_shift = 12;
1712 info->sps[0].slb_enc = 0;
1713 info->sps[0].enc[0].page_shift = 12;
1714 info->sps[0].enc[0].pte_enc = 0;
1715
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001716 /*
1717 * 64k large page size.
1718 * We only want to put this in if the CPUs we're emulating
1719 * support it, but unfortunately we don't have a vcpu easily
1720 * to hand here to test. Just pick the first vcpu, and if
1721 * that doesn't exist yet, report the minimum capability,
1722 * i.e., no 64k pages.
1723 * 1T segment support goes along with 64k pages.
1724 */
1725 i = 1;
1726 vcpu = kvm_get_vcpu(kvm, 0);
1727 if (vcpu && (vcpu->arch.hflags & BOOK3S_HFLAG_MULTI_PGSIZE)) {
1728 info->flags = KVM_PPC_1T_SEGMENTS;
1729 info->sps[i].page_shift = 16;
1730 info->sps[i].slb_enc = SLB_VSID_L | SLB_VSID_LP_01;
1731 info->sps[i].enc[0].page_shift = 16;
1732 info->sps[i].enc[0].pte_enc = 1;
1733 ++i;
1734 }
1735
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001736 /* Standard 16M large page size segment */
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001737 info->sps[i].page_shift = 24;
1738 info->sps[i].slb_enc = SLB_VSID_L;
1739 info->sps[i].enc[0].page_shift = 24;
1740 info->sps[i].enc[0].pte_enc = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001741
1742 return 0;
1743}
Paul Mackerras9617a0b2018-05-30 15:47:17 +10001744
1745static int kvm_configure_mmu_pr(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
1746{
1747 if (!cpu_has_feature(CPU_FTR_ARCH_300))
1748 return -ENODEV;
1749 /* Require flags and process table base and size to all be zero. */
1750 if (cfg->flags || cfg->process_table)
1751 return -EINVAL;
1752 return 0;
1753}
1754
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301755#else
1756static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1757 struct kvm_ppc_smmu_info *info)
1758{
1759 /* We should not get called */
1760 BUG();
1761}
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001762#endif /* CONFIG_PPC64 */
1763
Ian Munsiea413f472012-12-03 18:36:13 +00001764static unsigned int kvm_global_user_count = 0;
1765static DEFINE_SPINLOCK(kvm_global_user_count_lock);
1766
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301767static int kvmppc_core_init_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001768{
Paul Mackerras9308ab82013-09-20 14:52:48 +10001769 mutex_init(&kvm->arch.hpt_mutex);
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001770
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001771#ifdef CONFIG_PPC_BOOK3S_64
1772 /* Start out with the default set of hcalls enabled */
1773 kvmppc_pr_init_default_hcalls(kvm);
1774#endif
1775
Ian Munsiea413f472012-12-03 18:36:13 +00001776 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1777 spin_lock(&kvm_global_user_count_lock);
1778 if (++kvm_global_user_count == 1)
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +10001779 pseries_disable_reloc_on_exc();
Ian Munsiea413f472012-12-03 18:36:13 +00001780 spin_unlock(&kvm_global_user_count_lock);
1781 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001782 return 0;
1783}
1784
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301785static void kvmppc_core_destroy_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001786{
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001787#ifdef CONFIG_PPC64
1788 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
1789#endif
Ian Munsiea413f472012-12-03 18:36:13 +00001790
1791 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1792 spin_lock(&kvm_global_user_count_lock);
1793 BUG_ON(kvm_global_user_count == 0);
1794 if (--kvm_global_user_count == 0)
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +10001795 pseries_enable_reloc_on_exc();
Ian Munsiea413f472012-12-03 18:36:13 +00001796 spin_unlock(&kvm_global_user_count_lock);
1797 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001798}
1799
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301800static int kvmppc_core_check_processor_compat_pr(void)
1801{
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10001802 /*
Paul Mackerrasec531d02018-05-18 21:49:28 +10001803 * PR KVM can work on POWER9 inside a guest partition
1804 * running in HPT mode. It can't work if we are using
1805 * radix translation (because radix provides no way for
1806 * a process to have unique translations in quadrant 3)
1807 * or in a bare-metal HPT-mode host (because POWER9
1808 * uses a modified HPTE format which the PR KVM code
1809 * has not been adapted to use).
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10001810 */
Paul Mackerrasec531d02018-05-18 21:49:28 +10001811 if (cpu_has_feature(CPU_FTR_ARCH_300) &&
1812 (radix_enabled() || cpu_has_feature(CPU_FTR_HVMODE)))
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10001813 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301814 return 0;
1815}
1816
1817static long kvm_arch_vm_ioctl_pr(struct file *filp,
1818 unsigned int ioctl, unsigned long arg)
1819{
1820 return -ENOTTY;
1821}
1822
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301823static struct kvmppc_ops kvm_ops_pr = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301824 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_pr,
1825 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_pr,
1826 .get_one_reg = kvmppc_get_one_reg_pr,
1827 .set_one_reg = kvmppc_set_one_reg_pr,
1828 .vcpu_load = kvmppc_core_vcpu_load_pr,
1829 .vcpu_put = kvmppc_core_vcpu_put_pr,
1830 .set_msr = kvmppc_set_msr_pr,
1831 .vcpu_run = kvmppc_vcpu_run_pr,
1832 .vcpu_create = kvmppc_core_vcpu_create_pr,
1833 .vcpu_free = kvmppc_core_vcpu_free_pr,
1834 .check_requests = kvmppc_core_check_requests_pr,
1835 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_pr,
1836 .flush_memslot = kvmppc_core_flush_memslot_pr,
1837 .prepare_memory_region = kvmppc_core_prepare_memory_region_pr,
1838 .commit_memory_region = kvmppc_core_commit_memory_region_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301839 .unmap_hva_range = kvm_unmap_hva_range_pr,
1840 .age_hva = kvm_age_hva_pr,
1841 .test_age_hva = kvm_test_age_hva_pr,
1842 .set_spte_hva = kvm_set_spte_hva_pr,
1843 .mmu_destroy = kvmppc_mmu_destroy_pr,
1844 .free_memslot = kvmppc_core_free_memslot_pr,
1845 .create_memslot = kvmppc_core_create_memslot_pr,
1846 .init_vm = kvmppc_core_init_vm_pr,
1847 .destroy_vm = kvmppc_core_destroy_vm_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301848 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_pr,
1849 .emulate_op = kvmppc_core_emulate_op_pr,
1850 .emulate_mtspr = kvmppc_core_emulate_mtspr_pr,
1851 .emulate_mfspr = kvmppc_core_emulate_mfspr_pr,
1852 .fast_vcpu_kick = kvm_vcpu_kick,
1853 .arch_vm_ioctl = kvm_arch_vm_ioctl_pr,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001854#ifdef CONFIG_PPC_BOOK3S_64
1855 .hcall_implemented = kvmppc_hcall_impl_pr,
Paul Mackerras9617a0b2018-05-30 15:47:17 +10001856 .configure_mmu = kvm_configure_mmu_pr,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001857#endif
Simon Guo2e6baa42018-05-21 13:24:22 +08001858 .giveup_ext = kvmppc_giveup_ext,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301859};
1860
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301861
1862int kvmppc_book3s_init_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001863{
1864 int r;
1865
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301866 r = kvmppc_core_check_processor_compat_pr();
1867 if (r < 0)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001868 return r;
1869
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301870 kvm_ops_pr.owner = THIS_MODULE;
1871 kvmppc_pr_ops = &kvm_ops_pr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001872
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301873 r = kvmppc_mmu_hpte_sysinit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001874 return r;
1875}
1876
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301877void kvmppc_book3s_exit_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001878{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301879 kvmppc_pr_ops = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001880 kvmppc_mmu_hpte_sysexit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001881}
1882
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301883/*
1884 * We only support separate modules for book3s 64
1885 */
1886#ifdef CONFIG_PPC_BOOK3S_64
1887
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301888module_init(kvmppc_book3s_init_pr);
1889module_exit(kvmppc_book3s_exit_pr);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301890
1891MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01001892MODULE_ALIAS_MISCDEV(KVM_MINOR);
1893MODULE_ALIAS("devname:kvm");
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301894#endif