blob: a14721f034fbe5dcbd8eff25c274f895fdd8d024 [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>
Simon Guo8d2e2fc2018-05-23 15:01:58 +080046#include <asm/tm.h>
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000047
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053048#include "book3s.h"
Aneesh Kumar K.V72c12532013-10-07 22:17:57 +053049
50#define CREATE_TRACE_POINTS
51#include "trace_pr.h"
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000052
53/* #define EXIT_DEBUG */
54/* #define DEBUG_EXT */
55
56static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
57 ulong msr);
Alexander Graf616dff82014-04-29 16:48:44 +020058static void kvmppc_giveup_fac(struct kvm_vcpu *vcpu, ulong fac);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000059
60/* Some compatibility defines */
61#ifdef CONFIG_PPC_BOOK3S_32
62#define MSR_USER32 MSR_USER
63#define MSR_USER64 MSR_USER
64#define HW_PAGE_SIZE PAGE_SIZE
Alexey Kardashevskiy6c7d47c2017-11-22 14:42:21 +110065#define HPTE_R_M _PAGE_COHERENT
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000066#endif
67
Alexander Grafc01e3f62014-07-11 02:58:58 +020068static bool kvmppc_is_split_real(struct kvm_vcpu *vcpu)
69{
70 ulong msr = kvmppc_get_msr(vcpu);
71 return (msr & (MSR_IR|MSR_DR)) == MSR_DR;
72}
73
74static void kvmppc_fixup_split_real(struct kvm_vcpu *vcpu)
75{
76 ulong msr = kvmppc_get_msr(vcpu);
77 ulong pc = kvmppc_get_pc(vcpu);
78
79 /* We are in DR only split real mode */
80 if ((msr & (MSR_IR|MSR_DR)) != MSR_DR)
81 return;
82
83 /* We have not fixed up the guest already */
84 if (vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK)
85 return;
86
87 /* The code is in fixupable address space */
88 if (pc & SPLIT_HACK_MASK)
89 return;
90
91 vcpu->arch.hflags |= BOOK3S_HFLAG_SPLIT_HACK;
92 kvmppc_set_pc(vcpu, pc | SPLIT_HACK_OFFS);
93}
94
95void kvmppc_unfixup_split_real(struct kvm_vcpu *vcpu);
96
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053097static void kvmppc_core_vcpu_load_pr(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000098{
99#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +0100100 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
101 memcpy(svcpu->slb, to_book3s(vcpu)->slb_shadow, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +0100102 svcpu->slb_max = to_book3s(vcpu)->slb_shadow_max;
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100103 svcpu->in_use = 0;
Alexander Graf468a12c2011-12-09 14:44:13 +0100104 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000105#endif
Alexander Graffb4188b2014-06-09 01:16:32 +0200106
107 /* Disable AIL if supported */
108 if (cpu_has_feature(CPU_FTR_HVMODE) &&
109 cpu_has_feature(CPU_FTR_ARCH_207S))
110 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) & ~LPCR_AIL);
111
Paul Mackerrasa47d72f2012-09-20 19:35:51 +0000112 vcpu->cpu = smp_processor_id();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000113#ifdef CONFIG_PPC_BOOK3S_32
Paul Mackerras3ff95502013-09-20 14:52:49 +1000114 current->thread.kvm_shadow_vcpu = vcpu->arch.shadow_vcpu;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000115#endif
Alexander Grafc01e3f62014-07-11 02:58:58 +0200116
117 if (kvmppc_is_split_real(vcpu))
118 kvmppc_fixup_split_real(vcpu);
Simon Guo8d2e2fc2018-05-23 15:01:58 +0800119
120 kvmppc_restore_tm_pr(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000121}
122
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530123static void kvmppc_core_vcpu_put_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000124{
125#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +0100126 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100127 if (svcpu->in_use) {
Alexander Graf07ae5382018-01-31 22:24:58 +0100128 kvmppc_copy_from_svcpu(vcpu);
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100129 }
Alexander Graf468a12c2011-12-09 14:44:13 +0100130 memcpy(to_book3s(vcpu)->slb_shadow, svcpu->slb, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +0100131 to_book3s(vcpu)->slb_shadow_max = svcpu->slb_max;
132 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000133#endif
134
Alexander Grafc01e3f62014-07-11 02:58:58 +0200135 if (kvmppc_is_split_real(vcpu))
136 kvmppc_unfixup_split_real(vcpu);
137
Paul Mackerras28c483b2012-11-04 18:16:46 +0000138 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
Alexander Grafe14e7a12014-04-22 12:26:58 +0200139 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
Simon Guo8d2e2fc2018-05-23 15:01:58 +0800140 kvmppc_save_tm_pr(vcpu);
Alexander Graffb4188b2014-06-09 01:16:32 +0200141
142 /* Enable AIL if supported */
143 if (cpu_has_feature(CPU_FTR_HVMODE) &&
144 cpu_has_feature(CPU_FTR_ARCH_207S))
145 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) | LPCR_AIL_3);
146
Paul Mackerrasa47d72f2012-09-20 19:35:51 +0000147 vcpu->cpu = -1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000148}
149
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000150/* Copy data needed by real-mode code from vcpu to shadow vcpu */
Alexander Graf07ae5382018-01-31 22:24:58 +0100151void kvmppc_copy_to_svcpu(struct kvm_vcpu *vcpu)
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000152{
Alexander Graf07ae5382018-01-31 22:24:58 +0100153 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
154
Simon Guo1143a702018-05-07 14:20:07 +0800155 svcpu->gpr[0] = vcpu->arch.regs.gpr[0];
156 svcpu->gpr[1] = vcpu->arch.regs.gpr[1];
157 svcpu->gpr[2] = vcpu->arch.regs.gpr[2];
158 svcpu->gpr[3] = vcpu->arch.regs.gpr[3];
159 svcpu->gpr[4] = vcpu->arch.regs.gpr[4];
160 svcpu->gpr[5] = vcpu->arch.regs.gpr[5];
161 svcpu->gpr[6] = vcpu->arch.regs.gpr[6];
162 svcpu->gpr[7] = vcpu->arch.regs.gpr[7];
163 svcpu->gpr[8] = vcpu->arch.regs.gpr[8];
164 svcpu->gpr[9] = vcpu->arch.regs.gpr[9];
165 svcpu->gpr[10] = vcpu->arch.regs.gpr[10];
166 svcpu->gpr[11] = vcpu->arch.regs.gpr[11];
167 svcpu->gpr[12] = vcpu->arch.regs.gpr[12];
168 svcpu->gpr[13] = vcpu->arch.regs.gpr[13];
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000169 svcpu->cr = vcpu->arch.cr;
Simon Guo173c5202018-05-07 14:20:08 +0800170 svcpu->xer = vcpu->arch.regs.xer;
171 svcpu->ctr = vcpu->arch.regs.ctr;
172 svcpu->lr = vcpu->arch.regs.link;
173 svcpu->pc = vcpu->arch.regs.nip;
Alexander Graf616dff82014-04-29 16:48:44 +0200174#ifdef CONFIG_PPC_BOOK3S_64
175 svcpu->shadow_fscr = vcpu->arch.shadow_fscr;
176#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530177 /*
178 * Now also save the current time base value. We use this
179 * to find the guest purr and spurr value.
180 */
181 vcpu->arch.entry_tb = get_tb();
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530182 vcpu->arch.entry_vtb = get_vtb();
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530183 if (cpu_has_feature(CPU_FTR_ARCH_207S))
184 vcpu->arch.entry_ic = mfspr(SPRN_IC);
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100185 svcpu->in_use = true;
Alexander Graf07ae5382018-01-31 22:24:58 +0100186
187 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000188}
189
Simon Guo95757bf2018-05-23 15:01:53 +0800190static void kvmppc_recalc_shadow_msr(struct kvm_vcpu *vcpu)
191{
192 ulong guest_msr = kvmppc_get_msr(vcpu);
193 ulong smsr = guest_msr;
194
195 /* Guest MSR values */
196#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
197 smsr &= MSR_FE0 | MSR_FE1 | MSR_SF | MSR_SE | MSR_BE | MSR_LE |
198 MSR_TM | MSR_TS_MASK;
199#else
200 smsr &= MSR_FE0 | MSR_FE1 | MSR_SF | MSR_SE | MSR_BE | MSR_LE;
201#endif
202 /* Process MSR values */
203 smsr |= MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_PR | MSR_EE;
204 /* External providers the guest reserved */
205 smsr |= (guest_msr & vcpu->arch.guest_owned_ext);
206 /* 64-bit Process MSR values */
207#ifdef CONFIG_PPC_BOOK3S_64
208 smsr |= MSR_ISF | MSR_HV;
209#endif
210 vcpu->arch.shadow_msr = smsr;
211}
212
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000213/* Copy data touched by real-mode code from shadow vcpu back to vcpu */
Alexander Graf07ae5382018-01-31 22:24:58 +0100214void kvmppc_copy_from_svcpu(struct kvm_vcpu *vcpu)
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000215{
Alexander Graf07ae5382018-01-31 22:24:58 +0100216 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Simon Guo95757bf2018-05-23 15:01:53 +0800217#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
218 ulong old_msr;
219#endif
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100220
221 /*
222 * Maybe we were already preempted and synced the svcpu from
223 * our preempt notifiers. Don't bother touching this svcpu then.
224 */
225 if (!svcpu->in_use)
226 goto out;
227
Simon Guo1143a702018-05-07 14:20:07 +0800228 vcpu->arch.regs.gpr[0] = svcpu->gpr[0];
229 vcpu->arch.regs.gpr[1] = svcpu->gpr[1];
230 vcpu->arch.regs.gpr[2] = svcpu->gpr[2];
231 vcpu->arch.regs.gpr[3] = svcpu->gpr[3];
232 vcpu->arch.regs.gpr[4] = svcpu->gpr[4];
233 vcpu->arch.regs.gpr[5] = svcpu->gpr[5];
234 vcpu->arch.regs.gpr[6] = svcpu->gpr[6];
235 vcpu->arch.regs.gpr[7] = svcpu->gpr[7];
236 vcpu->arch.regs.gpr[8] = svcpu->gpr[8];
237 vcpu->arch.regs.gpr[9] = svcpu->gpr[9];
238 vcpu->arch.regs.gpr[10] = svcpu->gpr[10];
239 vcpu->arch.regs.gpr[11] = svcpu->gpr[11];
240 vcpu->arch.regs.gpr[12] = svcpu->gpr[12];
241 vcpu->arch.regs.gpr[13] = svcpu->gpr[13];
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000242 vcpu->arch.cr = svcpu->cr;
Simon Guo173c5202018-05-07 14:20:08 +0800243 vcpu->arch.regs.xer = svcpu->xer;
244 vcpu->arch.regs.ctr = svcpu->ctr;
245 vcpu->arch.regs.link = svcpu->lr;
246 vcpu->arch.regs.nip = svcpu->pc;
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000247 vcpu->arch.shadow_srr1 = svcpu->shadow_srr1;
248 vcpu->arch.fault_dar = svcpu->fault_dar;
249 vcpu->arch.fault_dsisr = svcpu->fault_dsisr;
250 vcpu->arch.last_inst = svcpu->last_inst;
Alexander Graf616dff82014-04-29 16:48:44 +0200251#ifdef CONFIG_PPC_BOOK3S_64
252 vcpu->arch.shadow_fscr = svcpu->shadow_fscr;
253#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530254 /*
255 * Update purr and spurr using time base on exit.
256 */
257 vcpu->arch.purr += get_tb() - vcpu->arch.entry_tb;
258 vcpu->arch.spurr += get_tb() - vcpu->arch.entry_tb;
Paul Mackerras88b02cf92016-09-15 13:42:52 +1000259 to_book3s(vcpu)->vtb += get_vtb() - vcpu->arch.entry_vtb;
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530260 if (cpu_has_feature(CPU_FTR_ARCH_207S))
261 vcpu->arch.ic += mfspr(SPRN_IC) - vcpu->arch.entry_ic;
Simon Guo95757bf2018-05-23 15:01:53 +0800262
263#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
264 /*
265 * Unlike other MSR bits, MSR[TS]bits can be changed at guest without
266 * notifying host:
267 * modified by unprivileged instructions like "tbegin"/"tend"/
268 * "tresume"/"tsuspend" in PR KVM guest.
269 *
270 * It is necessary to sync here to calculate a correct shadow_msr.
271 *
272 * privileged guest's tbegin will be failed at present. So we
273 * only take care of problem state guest.
274 */
275 old_msr = kvmppc_get_msr(vcpu);
276 if (unlikely((old_msr & MSR_PR) &&
277 (vcpu->arch.shadow_srr1 & (MSR_TS_MASK)) !=
278 (old_msr & (MSR_TS_MASK)))) {
279 old_msr &= ~(MSR_TS_MASK);
280 old_msr |= (vcpu->arch.shadow_srr1 & (MSR_TS_MASK));
281 kvmppc_set_msr_fast(vcpu, old_msr);
282 kvmppc_recalc_shadow_msr(vcpu);
283 }
284#endif
285
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100286 svcpu->in_use = false;
287
288out:
Alexander Graf07ae5382018-01-31 22:24:58 +0100289 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000290}
291
Simon Guo66c33e72018-05-23 15:01:57 +0800292#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
293static inline void kvmppc_save_tm_sprs(struct kvm_vcpu *vcpu)
294{
295 tm_enable();
296 vcpu->arch.tfhar = mfspr(SPRN_TFHAR);
297 vcpu->arch.texasr = mfspr(SPRN_TEXASR);
298 vcpu->arch.tfiar = mfspr(SPRN_TFIAR);
299 tm_disable();
300}
301
302static inline void kvmppc_restore_tm_sprs(struct kvm_vcpu *vcpu)
303{
304 tm_enable();
305 mtspr(SPRN_TFHAR, vcpu->arch.tfhar);
306 mtspr(SPRN_TEXASR, vcpu->arch.texasr);
307 mtspr(SPRN_TFIAR, vcpu->arch.tfiar);
308 tm_disable();
309}
310
Simon Guo8d2e2fc2018-05-23 15:01:58 +0800311void kvmppc_save_tm_pr(struct kvm_vcpu *vcpu)
312{
313 if (!(MSR_TM_ACTIVE(kvmppc_get_msr(vcpu)))) {
314 kvmppc_save_tm_sprs(vcpu);
315 return;
316 }
317
318 preempt_disable();
319 _kvmppc_save_tm_pr(vcpu, mfmsr());
320 preempt_enable();
321}
322
323void kvmppc_restore_tm_pr(struct kvm_vcpu *vcpu)
324{
325 if (!MSR_TM_ACTIVE(kvmppc_get_msr(vcpu))) {
326 kvmppc_restore_tm_sprs(vcpu);
327 return;
328 }
329
330 preempt_disable();
331 _kvmppc_restore_tm_pr(vcpu, kvmppc_get_msr(vcpu));
332 preempt_enable();
333}
Simon Guo66c33e72018-05-23 15:01:57 +0800334#endif
335
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530336static int kvmppc_core_check_requests_pr(struct kvm_vcpu *vcpu)
Alexander Graf03d25c52012-08-10 12:28:50 +0200337{
Alexander Graf7c973a22012-08-13 12:50:35 +0200338 int r = 1; /* Indicate we want to get back into the guest */
339
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200340 /* We misuse TLB_FLUSH to indicate that we want to clear
341 all shadow cache entries */
342 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
343 kvmppc_mmu_pte_flush(vcpu, 0, 0);
Alexander Graf7c973a22012-08-13 12:50:35 +0200344
345 return r;
Alexander Graf03d25c52012-08-10 12:28:50 +0200346}
347
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200348/************* MMU Notifiers *************/
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000349static void do_kvm_unmap_hva(struct kvm *kvm, unsigned long start,
350 unsigned long end)
351{
352 long i;
353 struct kvm_vcpu *vcpu;
354 struct kvm_memslots *slots;
355 struct kvm_memory_slot *memslot;
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200356
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000357 slots = kvm_memslots(kvm);
358 kvm_for_each_memslot(memslot, slots) {
359 unsigned long hva_start, hva_end;
360 gfn_t gfn, gfn_end;
361
362 hva_start = max(start, memslot->userspace_addr);
363 hva_end = min(end, memslot->userspace_addr +
364 (memslot->npages << PAGE_SHIFT));
365 if (hva_start >= hva_end)
366 continue;
367 /*
368 * {gfn(page) | page intersects with [hva_start, hva_end)} =
369 * {gfn, gfn+1, ..., gfn_end-1}.
370 */
371 gfn = hva_to_gfn_memslot(hva_start, memslot);
372 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
373 kvm_for_each_vcpu(i, vcpu, kvm)
374 kvmppc_mmu_pte_pflush(vcpu, gfn << PAGE_SHIFT,
375 gfn_end << PAGE_SHIFT);
376 }
377}
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200378
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530379static int kvm_unmap_hva_range_pr(struct kvm *kvm, unsigned long start,
380 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200381{
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000382 do_kvm_unmap_hva(kvm, start, end);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200383
384 return 0;
385}
386
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700387static int kvm_age_hva_pr(struct kvm *kvm, unsigned long start,
388 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200389{
390 /* XXX could be more clever ;) */
391 return 0;
392}
393
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530394static int kvm_test_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200395{
396 /* XXX could be more clever ;) */
397 return 0;
398}
399
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530400static void kvm_set_spte_hva_pr(struct kvm *kvm, unsigned long hva, pte_t pte)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200401{
402 /* The page will get remapped properly on its next fault */
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000403 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200404}
405
406/*****************************************/
407
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530408static void kvmppc_set_msr_pr(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000409{
Alexander Graf5deb8e72014-04-24 13:46:24 +0200410 ulong old_msr = kvmppc_get_msr(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000411
412#ifdef EXIT_DEBUG
413 printk(KERN_INFO "KVM: Set MSR to 0x%llx\n", msr);
414#endif
415
416 msr &= to_book3s(vcpu)->msr_mask;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200417 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000418 kvmppc_recalc_shadow_msr(vcpu);
419
420 if (msr & MSR_POW) {
421 if (!vcpu->arch.pending_exceptions) {
422 kvm_vcpu_block(vcpu);
Radim Krčmář72875d82017-04-26 22:32:19 +0200423 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000424 vcpu->stat.halt_wakeup++;
425
426 /* Unset POW bit after we woke up */
427 msr &= ~MSR_POW;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200428 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000429 }
430 }
431
Alexander Grafc01e3f62014-07-11 02:58:58 +0200432 if (kvmppc_is_split_real(vcpu))
433 kvmppc_fixup_split_real(vcpu);
434 else
435 kvmppc_unfixup_split_real(vcpu);
436
Alexander Graf5deb8e72014-04-24 13:46:24 +0200437 if ((kvmppc_get_msr(vcpu) & (MSR_PR|MSR_IR|MSR_DR)) !=
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000438 (old_msr & (MSR_PR|MSR_IR|MSR_DR))) {
439 kvmppc_mmu_flush_segments(vcpu);
440 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
441
442 /* Preload magic page segment when in kernel mode */
443 if (!(msr & MSR_PR) && vcpu->arch.magic_page_pa) {
444 struct kvm_vcpu_arch *a = &vcpu->arch;
445
446 if (msr & MSR_DR)
447 kvmppc_mmu_map_segment(vcpu, a->magic_page_ea);
448 else
449 kvmppc_mmu_map_segment(vcpu, a->magic_page_pa);
450 }
451 }
452
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000453 /*
454 * When switching from 32 to 64-bit, we may have a stale 32-bit
455 * magic page around, we need to flush it. Typically 32-bit magic
456 * page will be instanciated when calling into RTAS. Note: We
457 * assume that such transition only happens while in kernel mode,
458 * ie, we never transition from user 32-bit to kernel 64-bit with
459 * a 32-bit magic page around.
460 */
461 if (vcpu->arch.magic_page_pa &&
462 !(old_msr & MSR_PR) && !(old_msr & MSR_SF) && (msr & MSR_SF)) {
463 /* going from RTAS to normal kernel code */
464 kvmppc_mmu_pte_flush(vcpu, (uint32_t)vcpu->arch.magic_page_pa,
465 ~0xFFFUL);
466 }
467
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000468 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200469 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000470 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
471}
472
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530473void kvmppc_set_pvr_pr(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000474{
475 u32 host_pvr;
476
477 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SLB;
478 vcpu->arch.pvr = pvr;
479#ifdef CONFIG_PPC_BOOK3S_64
480 if ((pvr >= 0x330000) && (pvr < 0x70330000)) {
481 kvmppc_mmu_book3s_64_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200482 if (!to_book3s(vcpu)->hior_explicit)
483 to_book3s(vcpu)->hior = 0xfff00000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000484 to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200485 vcpu->arch.cpu_type = KVM_CPU_3S_64;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000486 } else
487#endif
488 {
489 kvmppc_mmu_book3s_32_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200490 if (!to_book3s(vcpu)->hior_explicit)
491 to_book3s(vcpu)->hior = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000492 to_book3s(vcpu)->msr_mask = 0xffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200493 vcpu->arch.cpu_type = KVM_CPU_3S_32;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000494 }
495
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200496 kvmppc_sanity_check(vcpu);
497
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000498 /* If we are in hypervisor level on 970, we can tell the CPU to
499 * treat DCBZ as 32 bytes store */
500 vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32;
501 if (vcpu->arch.mmu.is_dcbz32(vcpu) && (mfmsr() & MSR_HV) &&
502 !strcmp(cur_cpu_spec->platform, "ppc970"))
503 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
504
505 /* Cell performs badly if MSR_FEx are set. So let's hope nobody
506 really needs them in a VM on Cell and force disable them. */
507 if (!strcmp(cur_cpu_spec->platform, "ppc-cell-be"))
508 to_book3s(vcpu)->msr_mask &= ~(MSR_FE0 | MSR_FE1);
509
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000510 /*
511 * If they're asking for POWER6 or later, set the flag
512 * indicating that we can do multiple large page sizes
513 * and 1TB segments.
514 * Also set the flag that indicates that tlbie has the large
515 * page bit in the RB operand instead of the instruction.
516 */
517 switch (PVR_VER(pvr)) {
518 case PVR_POWER6:
519 case PVR_POWER7:
520 case PVR_POWER7p:
521 case PVR_POWER8:
Thomas Huth2365f6b2016-09-21 13:53:46 +0200522 case PVR_POWER8E:
523 case PVR_POWER8NVL:
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000524 vcpu->arch.hflags |= BOOK3S_HFLAG_MULTI_PGSIZE |
525 BOOK3S_HFLAG_NEW_TLBIE;
526 break;
527 }
528
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000529#ifdef CONFIG_PPC_BOOK3S_32
530 /* 32 bit Book3S always has 32 byte dcbz */
531 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
532#endif
533
534 /* On some CPUs we can execute paired single operations natively */
535 asm ( "mfpvr %0" : "=r"(host_pvr));
536 switch (host_pvr) {
537 case 0x00080200: /* lonestar 2.0 */
538 case 0x00088202: /* lonestar 2.2 */
539 case 0x70000100: /* gekko 1.0 */
540 case 0x00080100: /* gekko 2.0 */
541 case 0x00083203: /* gekko 2.3a */
542 case 0x00083213: /* gekko 2.3b */
543 case 0x00083204: /* gekko 2.4 */
544 case 0x00083214: /* gekko 2.4e (8SE) - retail HW2 */
545 case 0x00087200: /* broadway */
546 vcpu->arch.hflags |= BOOK3S_HFLAG_NATIVE_PS;
547 /* Enable HID2.PSE - in case we need it later */
548 mtspr(SPRN_HID2_GEKKO, mfspr(SPRN_HID2_GEKKO) | (1 << 29));
549 }
550}
551
552/* Book3s_32 CPUs always have 32 bytes cache line size, which Linux assumes. To
553 * make Book3s_32 Linux work on Book3s_64, we have to make sure we trap dcbz to
554 * emulate 32 bytes dcbz length.
555 *
556 * The Book3s_64 inventors also realized this case and implemented a special bit
557 * in the HID5 register, which is a hypervisor ressource. Thus we can't use it.
558 *
559 * My approach here is to patch the dcbz instruction on executing pages.
560 */
561static void kvmppc_patch_dcbz(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte)
562{
563 struct page *hpage;
564 u64 hpage_offset;
565 u32 *page;
566 int i;
567
568 hpage = gfn_to_page(vcpu->kvm, pte->raddr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800569 if (is_error_page(hpage))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000570 return;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000571
572 hpage_offset = pte->raddr & ~PAGE_MASK;
573 hpage_offset &= ~0xFFFULL;
574 hpage_offset /= 4;
575
576 get_page(hpage);
Cong Wang2480b202011-11-25 23:14:16 +0800577 page = kmap_atomic(hpage);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000578
579 /* patch dcbz into reserved instruction, so we trap */
580 for (i=hpage_offset; i < hpage_offset + (HW_PAGE_SIZE / 4); i++)
Alexander Grafcd087ee2014-04-24 13:52:01 +0200581 if ((be32_to_cpu(page[i]) & 0xff0007ff) == INS_DCBZ)
582 page[i] &= cpu_to_be32(0xfffffff7);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000583
Cong Wang2480b202011-11-25 23:14:16 +0800584 kunmap_atomic(page);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000585 put_page(hpage);
586}
587
Yaowei Bai378b4172015-11-16 11:10:24 +0800588static bool kvmppc_visible_gpa(struct kvm_vcpu *vcpu, gpa_t gpa)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000589{
590 ulong mp_pa = vcpu->arch.magic_page_pa;
591
Alexander Graf5deb8e72014-04-24 13:46:24 +0200592 if (!(kvmppc_get_msr(vcpu) & MSR_SF))
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000593 mp_pa = (uint32_t)mp_pa;
594
Alexander Graf89b68c92014-07-13 16:37:12 +0200595 gpa &= ~0xFFFULL;
596 if (unlikely(mp_pa) && unlikely((mp_pa & KVM_PAM) == (gpa & KVM_PAM))) {
Yaowei Bai378b4172015-11-16 11:10:24 +0800597 return true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000598 }
599
Alexander Graf89b68c92014-07-13 16:37:12 +0200600 return kvm_is_visible_gfn(vcpu->kvm, gpa >> PAGE_SHIFT);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000601}
602
603int kvmppc_handle_pagefault(struct kvm_run *run, struct kvm_vcpu *vcpu,
604 ulong eaddr, int vec)
605{
606 bool data = (vec == BOOK3S_INTERRUPT_DATA_STORAGE);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000607 bool iswrite = false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000608 int r = RESUME_GUEST;
609 int relocated;
610 int page_found = 0;
Alexey Kardashevskiy96df2262017-03-24 17:49:22 +1100611 struct kvmppc_pte pte = { 0 };
Alexander Graf5deb8e72014-04-24 13:46:24 +0200612 bool dr = (kvmppc_get_msr(vcpu) & MSR_DR) ? true : false;
613 bool ir = (kvmppc_get_msr(vcpu) & MSR_IR) ? true : false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000614 u64 vsid;
615
616 relocated = data ? dr : ir;
Paul Mackerras93b159b2013-09-20 14:52:51 +1000617 if (data && (vcpu->arch.fault_dsisr & DSISR_ISSTORE))
618 iswrite = true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000619
620 /* Resolve real address if translation turned on */
621 if (relocated) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000622 page_found = vcpu->arch.mmu.xlate(vcpu, eaddr, &pte, data, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000623 } else {
624 pte.may_execute = true;
625 pte.may_read = true;
626 pte.may_write = true;
627 pte.raddr = eaddr & KVM_PAM;
628 pte.eaddr = eaddr;
629 pte.vpage = eaddr >> 12;
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000630 pte.page_size = MMU_PAGE_64K;
Alexey Kardashevskiy6c7d47c2017-11-22 14:42:21 +1100631 pte.wimg = HPTE_R_M;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000632 }
633
Alexander Graf5deb8e72014-04-24 13:46:24 +0200634 switch (kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000635 case 0:
636 pte.vpage |= ((u64)VSID_REAL << (SID_SHIFT - 12));
637 break;
638 case MSR_DR:
Alexander Grafc01e3f62014-07-11 02:58:58 +0200639 if (!data &&
640 (vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK) &&
641 ((pte.raddr & SPLIT_HACK_MASK) == SPLIT_HACK_OFFS))
642 pte.raddr &= ~SPLIT_HACK_MASK;
643 /* fall through */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000644 case MSR_IR:
645 vcpu->arch.mmu.esid_to_vsid(vcpu, eaddr >> SID_SHIFT, &vsid);
646
Alexander Graf5deb8e72014-04-24 13:46:24 +0200647 if ((kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) == MSR_DR)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000648 pte.vpage |= ((u64)VSID_REAL_DR << (SID_SHIFT - 12));
649 else
650 pte.vpage |= ((u64)VSID_REAL_IR << (SID_SHIFT - 12));
651 pte.vpage |= vsid;
652
653 if (vsid == -1)
654 page_found = -EINVAL;
655 break;
656 }
657
658 if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
659 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
660 /*
661 * If we do the dcbz hack, we have to NX on every execution,
662 * so we can patch the executing code. This renders our guest
663 * NX-less.
664 */
665 pte.may_execute = !data;
666 }
667
668 if (page_found == -ENOENT) {
669 /* Page not found in guest PTE entries */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200670 u64 ssrr1 = vcpu->arch.shadow_srr1;
671 u64 msr = kvmppc_get_msr(vcpu);
672 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
673 kvmppc_set_dsisr(vcpu, vcpu->arch.fault_dsisr);
674 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000675 kvmppc_book3s_queue_irqprio(vcpu, vec);
676 } else if (page_found == -EPERM) {
677 /* Storage protection */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200678 u32 dsisr = vcpu->arch.fault_dsisr;
679 u64 ssrr1 = vcpu->arch.shadow_srr1;
680 u64 msr = kvmppc_get_msr(vcpu);
681 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
682 dsisr = (dsisr & ~DSISR_NOHPTE) | DSISR_PROTFAULT;
683 kvmppc_set_dsisr(vcpu, dsisr);
684 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000685 kvmppc_book3s_queue_irqprio(vcpu, vec);
686 } else if (page_found == -EINVAL) {
687 /* Page not found in guest SLB */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200688 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000689 kvmppc_book3s_queue_irqprio(vcpu, vec + 0x80);
Alexey Kardashevskiy9eecec12017-03-24 17:47:13 +1100690 } else if (kvmppc_visible_gpa(vcpu, pte.raddr)) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000691 if (data && !(vcpu->arch.fault_dsisr & DSISR_NOHPTE)) {
692 /*
693 * There is already a host HPTE there, presumably
694 * a read-only one for a page the guest thinks
695 * is writable, so get rid of it first.
696 */
697 kvmppc_mmu_unmap_page(vcpu, &pte);
698 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000699 /* The guest's PTE is not mapped yet. Map on the host */
Alexey Kardashevskiybd9166f2017-03-24 17:48:10 +1100700 if (kvmppc_mmu_map_page(vcpu, &pte, iswrite) == -EIO) {
701 /* Exit KVM if mapping failed */
702 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
703 return RESUME_HOST;
704 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000705 if (data)
706 vcpu->stat.sp_storage++;
707 else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
Paul Mackerras93b159b2013-09-20 14:52:51 +1000708 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32)))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000709 kvmppc_patch_dcbz(vcpu, &pte);
710 } else {
711 /* MMIO */
712 vcpu->stat.mmio_exits++;
713 vcpu->arch.paddr_accessed = pte.raddr;
Alexander Graf6020c0f2012-03-12 02:26:30 +0100714 vcpu->arch.vaddr_accessed = pte.eaddr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000715 r = kvmppc_emulate_mmio(run, vcpu);
716 if ( r == RESUME_HOST_NV )
717 r = RESUME_HOST;
718 }
719
720 return r;
721}
722
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000723/* Give up external provider (FPU, Altivec, VSX) */
724void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr)
725{
726 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000727
Paul Mackerras28c483b2012-11-04 18:16:46 +0000728 /*
729 * VSX instructions can access FP and vector registers, so if
730 * we are giving up VSX, make sure we give up FP and VMX as well.
731 */
732 if (msr & MSR_VSX)
733 msr |= MSR_FP | MSR_VEC;
734
735 msr &= vcpu->arch.guest_owned_ext;
736 if (!msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000737 return;
738
739#ifdef DEBUG_EXT
740 printk(KERN_INFO "Giving up ext 0x%lx\n", msr);
741#endif
742
Paul Mackerras28c483b2012-11-04 18:16:46 +0000743 if (msr & MSR_FP) {
744 /*
745 * Note that on CPUs with VSX, giveup_fpu stores
746 * both the traditional FP registers and the added VSX
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000747 * registers into thread.fp_state.fpr[].
Paul Mackerras28c483b2012-11-04 18:16:46 +0000748 */
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100749 if (t->regs->msr & MSR_FP)
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000750 giveup_fpu(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100751 t->fp_save_area = NULL;
Paul Mackerras28c483b2012-11-04 18:16:46 +0000752 }
753
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000754#ifdef CONFIG_ALTIVEC
Paul Mackerras28c483b2012-11-04 18:16:46 +0000755 if (msr & MSR_VEC) {
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000756 if (current->thread.regs->msr & MSR_VEC)
757 giveup_altivec(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100758 t->vr_save_area = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000759 }
Paul Mackerras28c483b2012-11-04 18:16:46 +0000760#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000761
Paul Mackerras28c483b2012-11-04 18:16:46 +0000762 vcpu->arch.guest_owned_ext &= ~(msr | MSR_VSX);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000763 kvmppc_recalc_shadow_msr(vcpu);
764}
765
Alexander Graf616dff82014-04-29 16:48:44 +0200766/* Give up facility (TAR / EBB / DSCR) */
767static void kvmppc_giveup_fac(struct kvm_vcpu *vcpu, ulong fac)
768{
769#ifdef CONFIG_PPC_BOOK3S_64
770 if (!(vcpu->arch.shadow_fscr & (1ULL << fac))) {
771 /* Facility not available to the guest, ignore giveup request*/
772 return;
773 }
Alexander Grafe14e7a12014-04-22 12:26:58 +0200774
775 switch (fac) {
776 case FSCR_TAR_LG:
777 vcpu->arch.tar = mfspr(SPRN_TAR);
778 mtspr(SPRN_TAR, current->thread.tar);
779 vcpu->arch.shadow_fscr &= ~FSCR_TAR;
780 break;
781 }
Alexander Graf616dff82014-04-29 16:48:44 +0200782#endif
783}
784
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000785/* Handle external providers (FPU, Altivec, VSX) */
786static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
787 ulong msr)
788{
789 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000790
791 /* When we have paired singles, we emulate in software */
792 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE)
793 return RESUME_GUEST;
794
Alexander Graf5deb8e72014-04-24 13:46:24 +0200795 if (!(kvmppc_get_msr(vcpu) & msr)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000796 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
797 return RESUME_GUEST;
798 }
799
Paul Mackerras28c483b2012-11-04 18:16:46 +0000800 if (msr == MSR_VSX) {
801 /* No VSX? Give an illegal instruction interrupt */
802#ifdef CONFIG_VSX
803 if (!cpu_has_feature(CPU_FTR_VSX))
804#endif
805 {
806 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
807 return RESUME_GUEST;
808 }
809
810 /*
811 * We have to load up all the FP and VMX registers before
812 * we can let the guest use VSX instructions.
813 */
814 msr = MSR_FP | MSR_VEC | MSR_VSX;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000815 }
816
Paul Mackerras28c483b2012-11-04 18:16:46 +0000817 /* See if we already own all the ext(s) needed */
818 msr &= ~vcpu->arch.guest_owned_ext;
819 if (!msr)
820 return RESUME_GUEST;
821
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000822#ifdef DEBUG_EXT
823 printk(KERN_INFO "Loading up ext 0x%lx\n", msr);
824#endif
825
Paul Mackerras28c483b2012-11-04 18:16:46 +0000826 if (msr & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530827 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100828 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100829 load_fp_state(&vcpu->arch.fp);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100830 disable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100831 t->fp_save_area = &vcpu->arch.fp;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530832 preempt_enable();
Paul Mackerras28c483b2012-11-04 18:16:46 +0000833 }
834
835 if (msr & MSR_VEC) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000836#ifdef CONFIG_ALTIVEC
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530837 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100838 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100839 load_vr_state(&vcpu->arch.vr);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100840 disable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100841 t->vr_save_area = &vcpu->arch.vr;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530842 preempt_enable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000843#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000844 }
845
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100846 t->regs->msr |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000847 vcpu->arch.guest_owned_ext |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000848 kvmppc_recalc_shadow_msr(vcpu);
849
850 return RESUME_GUEST;
851}
852
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000853/*
854 * Kernel code using FP or VMX could have flushed guest state to
855 * the thread_struct; if so, get it back now.
856 */
857static void kvmppc_handle_lost_ext(struct kvm_vcpu *vcpu)
858{
859 unsigned long lost_ext;
860
861 lost_ext = vcpu->arch.guest_owned_ext & ~current->thread.regs->msr;
862 if (!lost_ext)
863 return;
864
Paul Mackerras09548fd2013-10-15 20:43:01 +1100865 if (lost_ext & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530866 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100867 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100868 load_fp_state(&vcpu->arch.fp);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100869 disable_kernel_fp();
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530870 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100871 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000872#ifdef CONFIG_ALTIVEC
Paul Mackerras09548fd2013-10-15 20:43:01 +1100873 if (lost_ext & MSR_VEC) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530874 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100875 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100876 load_vr_state(&vcpu->arch.vr);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100877 disable_kernel_altivec();
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530878 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100879 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000880#endif
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000881 current->thread.regs->msr |= lost_ext;
882}
883
Alexander Graf616dff82014-04-29 16:48:44 +0200884#ifdef CONFIG_PPC_BOOK3S_64
885
886static void kvmppc_trigger_fac_interrupt(struct kvm_vcpu *vcpu, ulong fac)
887{
888 /* Inject the Interrupt Cause field and trigger a guest interrupt */
889 vcpu->arch.fscr &= ~(0xffULL << 56);
890 vcpu->arch.fscr |= (fac << 56);
891 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_FAC_UNAVAIL);
892}
893
894static void kvmppc_emulate_fac(struct kvm_vcpu *vcpu, ulong fac)
895{
896 enum emulation_result er = EMULATE_FAIL;
897
898 if (!(kvmppc_get_msr(vcpu) & MSR_PR))
899 er = kvmppc_emulate_instruction(vcpu->run, vcpu);
900
901 if ((er != EMULATE_DONE) && (er != EMULATE_AGAIN)) {
902 /* Couldn't emulate, trigger interrupt in guest */
903 kvmppc_trigger_fac_interrupt(vcpu, fac);
904 }
905}
906
907/* Enable facilities (TAR, EBB, DSCR) for the guest */
908static int kvmppc_handle_fac(struct kvm_vcpu *vcpu, ulong fac)
909{
Alexander Graf9916d572014-04-29 17:54:40 +0200910 bool guest_fac_enabled;
Alexander Graf616dff82014-04-29 16:48:44 +0200911 BUG_ON(!cpu_has_feature(CPU_FTR_ARCH_207S));
912
Alexander Graf9916d572014-04-29 17:54:40 +0200913 /*
914 * Not every facility is enabled by FSCR bits, check whether the
915 * guest has this facility enabled at all.
916 */
917 switch (fac) {
918 case FSCR_TAR_LG:
919 case FSCR_EBB_LG:
920 guest_fac_enabled = (vcpu->arch.fscr & (1ULL << fac));
921 break;
922 case FSCR_TM_LG:
923 guest_fac_enabled = kvmppc_get_msr(vcpu) & MSR_TM;
924 break;
925 default:
926 guest_fac_enabled = false;
927 break;
928 }
929
930 if (!guest_fac_enabled) {
Alexander Graf616dff82014-04-29 16:48:44 +0200931 /* Facility not enabled by the guest */
932 kvmppc_trigger_fac_interrupt(vcpu, fac);
933 return RESUME_GUEST;
934 }
935
936 switch (fac) {
Alexander Grafe14e7a12014-04-22 12:26:58 +0200937 case FSCR_TAR_LG:
938 /* TAR switching isn't lazy in Linux yet */
939 current->thread.tar = mfspr(SPRN_TAR);
940 mtspr(SPRN_TAR, vcpu->arch.tar);
941 vcpu->arch.shadow_fscr |= FSCR_TAR;
942 break;
Alexander Graf616dff82014-04-29 16:48:44 +0200943 default:
944 kvmppc_emulate_fac(vcpu, fac);
945 break;
946 }
947
948 return RESUME_GUEST;
949}
Alexander Graf8e6afa32014-07-31 10:21:59 +0200950
951void kvmppc_set_fscr(struct kvm_vcpu *vcpu, u64 fscr)
952{
953 if ((vcpu->arch.fscr & FSCR_TAR) && !(fscr & FSCR_TAR)) {
954 /* TAR got dropped, drop it in shadow too */
955 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
956 }
957 vcpu->arch.fscr = fscr;
958}
Alexander Graf616dff82014-04-29 16:48:44 +0200959#endif
960
Laurent Vivier11dd6ac2016-04-08 18:05:00 +0200961static void kvmppc_setup_debug(struct kvm_vcpu *vcpu)
962{
963 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
964 u64 msr = kvmppc_get_msr(vcpu);
965
966 kvmppc_set_msr(vcpu, msr | MSR_SE);
967 }
968}
969
970static void kvmppc_clear_debug(struct kvm_vcpu *vcpu)
971{
972 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
973 u64 msr = kvmppc_get_msr(vcpu);
974
975 kvmppc_set_msr(vcpu, msr & ~MSR_SE);
976 }
977}
978
Thomas Huthfcd4f3c2017-01-25 13:27:22 +0100979static int kvmppc_exit_pr_progint(struct kvm_run *run, struct kvm_vcpu *vcpu,
980 unsigned int exit_nr)
981{
982 enum emulation_result er;
983 ulong flags;
984 u32 last_inst;
985 int emul, r;
986
987 /*
988 * shadow_srr1 only contains valid flags if we came here via a program
989 * exception. The other exceptions (emulation assist, FP unavailable,
990 * etc.) do not provide flags in SRR1, so use an illegal-instruction
991 * exception when injecting a program interrupt into the guest.
992 */
993 if (exit_nr == BOOK3S_INTERRUPT_PROGRAM)
994 flags = vcpu->arch.shadow_srr1 & 0x1f0000ull;
995 else
996 flags = SRR1_PROGILL;
997
998 emul = kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
999 if (emul != EMULATE_DONE)
1000 return RESUME_GUEST;
1001
1002 if (kvmppc_get_msr(vcpu) & MSR_PR) {
1003#ifdef EXIT_DEBUG
1004 pr_info("Userspace triggered 0x700 exception at\n 0x%lx (0x%x)\n",
1005 kvmppc_get_pc(vcpu), last_inst);
1006#endif
1007 if ((last_inst & 0xff0007ff) != (INS_DCBZ & 0xfffffff7)) {
1008 kvmppc_core_queue_program(vcpu, flags);
1009 return RESUME_GUEST;
1010 }
1011 }
1012
1013 vcpu->stat.emulated_inst_exits++;
1014 er = kvmppc_emulate_instruction(run, vcpu);
1015 switch (er) {
1016 case EMULATE_DONE:
1017 r = RESUME_GUEST_NV;
1018 break;
1019 case EMULATE_AGAIN:
1020 r = RESUME_GUEST;
1021 break;
1022 case EMULATE_FAIL:
1023 pr_crit("%s: emulation at %lx failed (%08x)\n",
1024 __func__, kvmppc_get_pc(vcpu), last_inst);
1025 kvmppc_core_queue_program(vcpu, flags);
1026 r = RESUME_GUEST;
1027 break;
1028 case EMULATE_DO_MMIO:
1029 run->exit_reason = KVM_EXIT_MMIO;
1030 r = RESUME_HOST_NV;
1031 break;
1032 case EMULATE_EXIT_USER:
1033 r = RESUME_HOST_NV;
1034 break;
1035 default:
1036 BUG();
1037 }
1038
1039 return r;
1040}
1041
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301042int kvmppc_handle_exit_pr(struct kvm_run *run, struct kvm_vcpu *vcpu,
1043 unsigned int exit_nr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001044{
1045 int r = RESUME_HOST;
Alexander Graf7ee78852012-08-13 12:44:41 +02001046 int s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001047
1048 vcpu->stat.sum_exits++;
1049
1050 run->exit_reason = KVM_EXIT_UNKNOWN;
1051 run->ready_for_interrupt_injection = 1;
1052
Alexander Grafbd2be682012-08-13 01:04:19 +02001053 /* We get here with MSR.EE=1 */
Alexander Graf3b1d9d72012-04-30 10:56:12 +02001054
Alexander Graf97c95052012-08-02 15:10:00 +02001055 trace_kvm_exit(exit_nr, vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02001056 guest_exit();
Alexander Grafc63ddcb2012-08-12 11:27:49 +02001057
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001058 switch (exit_nr) {
1059 case BOOK3S_INTERRUPT_INST_STORAGE:
Alexander Graf468a12c2011-12-09 14:44:13 +01001060 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001061 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001062 vcpu->stat.pf_instruc++;
1063
Alexander Grafc01e3f62014-07-11 02:58:58 +02001064 if (kvmppc_is_split_real(vcpu))
1065 kvmppc_fixup_split_real(vcpu);
1066
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001067#ifdef CONFIG_PPC_BOOK3S_32
1068 /* We set segments as unused segments when invalidating them. So
1069 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001070 {
1071 struct kvmppc_book3s_shadow_vcpu *svcpu;
1072 u32 sr;
1073
1074 svcpu = svcpu_get(vcpu);
1075 sr = svcpu->sr[kvmppc_get_pc(vcpu) >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +01001076 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001077 if (sr == SR_INVALID) {
1078 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
1079 r = RESUME_GUEST;
1080 break;
1081 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001082 }
1083#endif
1084
1085 /* only care about PTEG not found errors, but leave NX alone */
Alexander Graf468a12c2011-12-09 14:44:13 +01001086 if (shadow_srr1 & 0x40000000) {
Paul Mackerras93b159b2013-09-20 14:52:51 +10001087 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001088 r = kvmppc_handle_pagefault(run, vcpu, kvmppc_get_pc(vcpu), exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +10001089 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001090 vcpu->stat.sp_instruc++;
1091 } else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
1092 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
1093 /*
1094 * XXX If we do the dcbz hack we use the NX bit to flush&patch the page,
1095 * so we can't use the NX bit inside the guest. Let's cross our fingers,
1096 * that no guest that needs the dcbz hack does NX.
1097 */
1098 kvmppc_mmu_pte_flush(vcpu, kvmppc_get_pc(vcpu), ~0xFFFUL);
1099 r = RESUME_GUEST;
1100 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001101 u64 msr = kvmppc_get_msr(vcpu);
1102 msr |= shadow_srr1 & 0x58000000;
1103 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001104 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1105 r = RESUME_GUEST;
1106 }
1107 break;
Alexander Graf468a12c2011-12-09 14:44:13 +01001108 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001109 case BOOK3S_INTERRUPT_DATA_STORAGE:
1110 {
1111 ulong dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001112 u32 fault_dsisr = vcpu->arch.fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001113 vcpu->stat.pf_storage++;
1114
1115#ifdef CONFIG_PPC_BOOK3S_32
1116 /* We set segments as unused segments when invalidating them. So
1117 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001118 {
1119 struct kvmppc_book3s_shadow_vcpu *svcpu;
1120 u32 sr;
1121
1122 svcpu = svcpu_get(vcpu);
1123 sr = svcpu->sr[dar >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +01001124 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001125 if (sr == SR_INVALID) {
1126 kvmppc_mmu_map_segment(vcpu, dar);
1127 r = RESUME_GUEST;
1128 break;
1129 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001130 }
1131#endif
1132
Paul Mackerras93b159b2013-09-20 14:52:51 +10001133 /*
1134 * We need to handle missing shadow PTEs, and
1135 * protection faults due to us mapping a page read-only
1136 * when the guest thinks it is writable.
1137 */
1138 if (fault_dsisr & (DSISR_NOHPTE | DSISR_PROTFAULT)) {
1139 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001140 r = kvmppc_handle_pagefault(run, vcpu, dar, exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +10001141 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001142 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001143 kvmppc_set_dar(vcpu, dar);
1144 kvmppc_set_dsisr(vcpu, fault_dsisr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001145 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1146 r = RESUME_GUEST;
1147 }
1148 break;
1149 }
1150 case BOOK3S_INTERRUPT_DATA_SEGMENT:
1151 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_fault_dar(vcpu)) < 0) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001152 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001153 kvmppc_book3s_queue_irqprio(vcpu,
1154 BOOK3S_INTERRUPT_DATA_SEGMENT);
1155 }
1156 r = RESUME_GUEST;
1157 break;
1158 case BOOK3S_INTERRUPT_INST_SEGMENT:
1159 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu)) < 0) {
1160 kvmppc_book3s_queue_irqprio(vcpu,
1161 BOOK3S_INTERRUPT_INST_SEGMENT);
1162 }
1163 r = RESUME_GUEST;
1164 break;
1165 /* We're good on these - the host merely wanted to get our attention */
1166 case BOOK3S_INTERRUPT_DECREMENTER:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001167 case BOOK3S_INTERRUPT_HV_DECREMENTER:
Paul Mackerras40688902014-01-08 21:25:36 +11001168 case BOOK3S_INTERRUPT_DOORBELL:
Alexander Graf568fccc2014-06-16 16:37:38 +02001169 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001170 vcpu->stat.dec_exits++;
1171 r = RESUME_GUEST;
1172 break;
1173 case BOOK3S_INTERRUPT_EXTERNAL:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001174 case BOOK3S_INTERRUPT_EXTERNAL_LEVEL:
1175 case BOOK3S_INTERRUPT_EXTERNAL_HV:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001176 vcpu->stat.ext_intr_exits++;
1177 r = RESUME_GUEST;
1178 break;
1179 case BOOK3S_INTERRUPT_PERFMON:
1180 r = RESUME_GUEST;
1181 break;
1182 case BOOK3S_INTERRUPT_PROGRAM:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001183 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Thomas Huthfcd4f3c2017-01-25 13:27:22 +01001184 r = kvmppc_exit_pr_progint(run, vcpu, exit_nr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001185 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001186 case BOOK3S_INTERRUPT_SYSCALL:
Mihai Caraman51f04722014-07-23 19:06:21 +03001187 {
1188 u32 last_sc;
1189 int emul;
1190
1191 /* Get last sc for papr */
1192 if (vcpu->arch.papr_enabled) {
1193 /* The sc instuction points SRR0 to the next inst */
1194 emul = kvmppc_get_last_inst(vcpu, INST_SC, &last_sc);
1195 if (emul != EMULATE_DONE) {
1196 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) - 4);
1197 r = RESUME_GUEST;
1198 break;
1199 }
1200 }
1201
Alexander Grafa668f2b2011-08-08 17:26:24 +02001202 if (vcpu->arch.papr_enabled &&
Mihai Caraman51f04722014-07-23 19:06:21 +03001203 (last_sc == 0x44000022) &&
Alexander Graf5deb8e72014-04-24 13:46:24 +02001204 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
Alexander Grafa668f2b2011-08-08 17:26:24 +02001205 /* SC 1 papr hypercalls */
1206 ulong cmd = kvmppc_get_gpr(vcpu, 3);
1207 int i;
1208
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301209#ifdef CONFIG_PPC_BOOK3S_64
Alexander Grafa668f2b2011-08-08 17:26:24 +02001210 if (kvmppc_h_pr(vcpu, cmd) == EMULATE_DONE) {
1211 r = RESUME_GUEST;
1212 break;
1213 }
Andreas Schwab96f38d72011-11-08 07:17:39 +00001214#endif
Alexander Grafa668f2b2011-08-08 17:26:24 +02001215
1216 run->papr_hcall.nr = cmd;
1217 for (i = 0; i < 9; ++i) {
1218 ulong gpr = kvmppc_get_gpr(vcpu, 4 + i);
1219 run->papr_hcall.args[i] = gpr;
1220 }
1221 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1222 vcpu->arch.hcall_needed = 1;
1223 r = RESUME_HOST;
1224 } else if (vcpu->arch.osi_enabled &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001225 (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) &&
1226 (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) {
1227 /* MOL hypercalls */
1228 u64 *gprs = run->osi.gprs;
1229 int i;
1230
1231 run->exit_reason = KVM_EXIT_OSI;
1232 for (i = 0; i < 32; i++)
1233 gprs[i] = kvmppc_get_gpr(vcpu, i);
1234 vcpu->arch.osi_needed = 1;
1235 r = RESUME_HOST_NV;
Alexander Graf5deb8e72014-04-24 13:46:24 +02001236 } else if (!(kvmppc_get_msr(vcpu) & MSR_PR) &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001237 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
1238 /* KVM PV hypercalls */
1239 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
1240 r = RESUME_GUEST;
1241 } else {
1242 /* Guest syscalls */
1243 vcpu->stat.syscall_exits++;
1244 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1245 r = RESUME_GUEST;
1246 }
1247 break;
Mihai Caraman51f04722014-07-23 19:06:21 +03001248 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001249 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1250 case BOOK3S_INTERRUPT_ALTIVEC:
1251 case BOOK3S_INTERRUPT_VSX:
1252 {
1253 int ext_msr = 0;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001254 int emul;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001255 u32 last_inst;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001256
Mihai Caraman9a26af62014-07-23 19:06:20 +03001257 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE) {
1258 /* Do paired single instruction emulation */
Mihai Caraman51f04722014-07-23 19:06:21 +03001259 emul = kvmppc_get_last_inst(vcpu, INST_GENERIC,
1260 &last_inst);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001261 if (emul == EMULATE_DONE)
Thomas Huthfcd4f3c2017-01-25 13:27:22 +01001262 r = kvmppc_exit_pr_progint(run, vcpu, exit_nr);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001263 else
1264 r = RESUME_GUEST;
1265
1266 break;
1267 }
1268
1269 /* Enable external provider */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001270 switch (exit_nr) {
Mihai Caraman9a26af62014-07-23 19:06:20 +03001271 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1272 ext_msr = MSR_FP;
1273 break;
1274
1275 case BOOK3S_INTERRUPT_ALTIVEC:
1276 ext_msr = MSR_VEC;
1277 break;
1278
1279 case BOOK3S_INTERRUPT_VSX:
1280 ext_msr = MSR_VSX;
1281 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001282 }
1283
Mihai Caraman9a26af62014-07-23 19:06:20 +03001284 r = kvmppc_handle_ext(vcpu, exit_nr, ext_msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001285 break;
1286 }
1287 case BOOK3S_INTERRUPT_ALIGNMENT:
Mihai Caraman9a26af62014-07-23 19:06:20 +03001288 {
Mihai Caraman51f04722014-07-23 19:06:21 +03001289 u32 last_inst;
1290 int emul = kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001291
1292 if (emul == EMULATE_DONE) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001293 u32 dsisr;
1294 u64 dar;
1295
1296 dsisr = kvmppc_alignment_dsisr(vcpu, last_inst);
1297 dar = kvmppc_alignment_dar(vcpu, last_inst);
1298
1299 kvmppc_set_dsisr(vcpu, dsisr);
1300 kvmppc_set_dar(vcpu, dar);
1301
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001302 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1303 }
1304 r = RESUME_GUEST;
1305 break;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001306 }
Alexander Graf616dff82014-04-29 16:48:44 +02001307#ifdef CONFIG_PPC_BOOK3S_64
1308 case BOOK3S_INTERRUPT_FAC_UNAVAIL:
1309 kvmppc_handle_fac(vcpu, vcpu->arch.shadow_fscr >> 56);
1310 r = RESUME_GUEST;
1311 break;
1312#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001313 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001314 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1315 r = RESUME_GUEST;
1316 break;
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001317 case BOOK3S_INTERRUPT_TRACE:
1318 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
1319 run->exit_reason = KVM_EXIT_DEBUG;
1320 r = RESUME_HOST;
1321 } else {
1322 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1323 r = RESUME_GUEST;
1324 }
1325 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001326 default:
Alexander Graf468a12c2011-12-09 14:44:13 +01001327 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001328 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001329 /* Ugh - bork here! What did we get? */
1330 printk(KERN_EMERG "exit_nr=0x%x | pc=0x%lx | msr=0x%lx\n",
Alexander Graf468a12c2011-12-09 14:44:13 +01001331 exit_nr, kvmppc_get_pc(vcpu), shadow_srr1);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001332 r = RESUME_HOST;
1333 BUG();
1334 break;
1335 }
Alexander Graf468a12c2011-12-09 14:44:13 +01001336 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001337
1338 if (!(r & RESUME_HOST)) {
1339 /* To avoid clobbering exit_reason, only check for signals if
1340 * we aren't already exiting to userspace for some other
1341 * reason. */
Alexander Grafe371f712011-12-19 13:36:55 +01001342
1343 /*
1344 * Interrupts could be timers for the guest which we have to
1345 * inject again, so let's postpone them until we're in the guest
1346 * and if we really did time things so badly, then we just exit
1347 * again due to a host external interrupt.
1348 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001349 s = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001350 if (s <= 0)
Alexander Graf7ee78852012-08-13 12:44:41 +02001351 r = s;
Scott Wood6c85f522014-01-09 19:18:40 -06001352 else {
1353 /* interrupts now hard-disabled */
Scott Wood5f1c2482013-07-10 17:47:39 -05001354 kvmppc_fix_ee_before_entry();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001355 }
Scott Wood6c85f522014-01-09 19:18:40 -06001356
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +10001357 kvmppc_handle_lost_ext(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001358 }
1359
1360 trace_kvm_book3s_reenter(r, vcpu);
1361
1362 return r;
1363}
1364
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301365static int kvm_arch_vcpu_ioctl_get_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
1371 sregs->pvr = vcpu->arch.pvr;
1372
1373 sregs->u.s.sdr1 = to_book3s(vcpu)->sdr1;
1374 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1375 for (i = 0; i < 64; i++) {
1376 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige | i;
1377 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1378 }
1379 } else {
1380 for (i = 0; i < 16; i++)
Alexander Graf5deb8e72014-04-24 13:46:24 +02001381 sregs->u.s.ppc32.sr[i] = kvmppc_get_sr(vcpu, i);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001382
1383 for (i = 0; i < 8; i++) {
1384 sregs->u.s.ppc32.ibat[i] = vcpu3s->ibat[i].raw;
1385 sregs->u.s.ppc32.dbat[i] = vcpu3s->dbat[i].raw;
1386 }
1387 }
1388
1389 return 0;
1390}
1391
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301392static int kvm_arch_vcpu_ioctl_set_sregs_pr(struct kvm_vcpu *vcpu,
1393 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001394{
1395 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1396 int i;
1397
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301398 kvmppc_set_pvr_pr(vcpu, sregs->pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001399
1400 vcpu3s->sdr1 = sregs->u.s.sdr1;
Greg Kurzf4093ee2017-10-16 12:29:44 +02001401#ifdef CONFIG_PPC_BOOK3S_64
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001402 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
Greg Kurzf4093ee2017-10-16 12:29:44 +02001403 /* Flush all SLB entries */
1404 vcpu->arch.mmu.slbmte(vcpu, 0, 0);
1405 vcpu->arch.mmu.slbia(vcpu);
1406
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001407 for (i = 0; i < 64; i++) {
Greg Kurzf4093ee2017-10-16 12:29:44 +02001408 u64 rb = sregs->u.s.ppc64.slb[i].slbe;
1409 u64 rs = sregs->u.s.ppc64.slb[i].slbv;
1410
1411 if (rb & SLB_ESID_V)
1412 vcpu->arch.mmu.slbmte(vcpu, rs, rb);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001413 }
Greg Kurzf4093ee2017-10-16 12:29:44 +02001414 } else
1415#endif
1416 {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001417 for (i = 0; i < 16; i++) {
1418 vcpu->arch.mmu.mtsrin(vcpu, i, sregs->u.s.ppc32.sr[i]);
1419 }
1420 for (i = 0; i < 8; i++) {
1421 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), false,
1422 (u32)sregs->u.s.ppc32.ibat[i]);
1423 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), true,
1424 (u32)(sregs->u.s.ppc32.ibat[i] >> 32));
1425 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), false,
1426 (u32)sregs->u.s.ppc32.dbat[i]);
1427 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), true,
1428 (u32)(sregs->u.s.ppc32.dbat[i] >> 32));
1429 }
1430 }
1431
1432 /* Flush the MMU after messing with the segments */
1433 kvmppc_mmu_pte_flush(vcpu, 0, 0);
1434
1435 return 0;
1436}
1437
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301438static int kvmppc_get_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1439 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001440{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001441 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001442
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001443 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301444 case KVM_REG_PPC_DEBUG_INST:
1445 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1446 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001447 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001448 *val = get_reg_val(id, to_book3s(vcpu)->hior);
Paul Mackerras31f34382011-12-12 12:26:50 +00001449 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001450 case KVM_REG_PPC_VTB:
1451 *val = get_reg_val(id, to_book3s(vcpu)->vtb);
1452 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301453 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001454 case KVM_REG_PPC_LPCR_64:
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301455 /*
1456 * We are only interested in the LPCR_ILE bit
1457 */
1458 if (vcpu->arch.intr_msr & MSR_LE)
1459 *val = get_reg_val(id, LPCR_ILE);
1460 else
1461 *val = get_reg_val(id, 0);
1462 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001463 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001464 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001465 break;
1466 }
1467
1468 return r;
1469}
1470
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301471static void kvmppc_set_lpcr_pr(struct kvm_vcpu *vcpu, u64 new_lpcr)
1472{
1473 if (new_lpcr & LPCR_ILE)
1474 vcpu->arch.intr_msr |= MSR_LE;
1475 else
1476 vcpu->arch.intr_msr &= ~MSR_LE;
1477}
1478
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301479static int kvmppc_set_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1480 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001481{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001482 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001483
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001484 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001485 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001486 to_book3s(vcpu)->hior = set_reg_val(id, *val);
1487 to_book3s(vcpu)->hior_explicit = true;
Paul Mackerras31f34382011-12-12 12:26:50 +00001488 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001489 case KVM_REG_PPC_VTB:
1490 to_book3s(vcpu)->vtb = set_reg_val(id, *val);
1491 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301492 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001493 case KVM_REG_PPC_LPCR_64:
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301494 kvmppc_set_lpcr_pr(vcpu, set_reg_val(id, *val));
1495 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001496 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001497 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001498 break;
1499 }
1500
1501 return r;
1502}
1503
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301504static struct kvm_vcpu *kvmppc_core_vcpu_create_pr(struct kvm *kvm,
1505 unsigned int id)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001506{
1507 struct kvmppc_vcpu_book3s *vcpu_book3s;
1508 struct kvm_vcpu *vcpu;
1509 int err = -ENOMEM;
1510 unsigned long p;
1511
Paul Mackerras3ff95502013-09-20 14:52:49 +10001512 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
1513 if (!vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001514 goto out;
1515
Paul Mackerras3ff95502013-09-20 14:52:49 +10001516 vcpu_book3s = vzalloc(sizeof(struct kvmppc_vcpu_book3s));
1517 if (!vcpu_book3s)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001518 goto free_vcpu;
Paul Mackerras3ff95502013-09-20 14:52:49 +10001519 vcpu->arch.book3s = vcpu_book3s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001520
Alexander Grafab784752014-04-06 23:31:48 +02001521#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001522 vcpu->arch.shadow_vcpu =
1523 kzalloc(sizeof(*vcpu->arch.shadow_vcpu), GFP_KERNEL);
1524 if (!vcpu->arch.shadow_vcpu)
1525 goto free_vcpu3s;
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001526#endif
Paul Mackerras3ff95502013-09-20 14:52:49 +10001527
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001528 err = kvm_vcpu_init(vcpu, kvm, id);
1529 if (err)
1530 goto free_shadow_vcpu;
1531
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001532 err = -ENOMEM;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001533 p = __get_free_page(GFP_KERNEL|__GFP_ZERO);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001534 if (!p)
1535 goto uninit_vcpu;
Alexander Graf89b68c92014-07-13 16:37:12 +02001536 vcpu->arch.shared = (void *)p;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001537#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf5deb8e72014-04-24 13:46:24 +02001538 /* Always start the shared struct in native endian mode */
1539#ifdef __BIG_ENDIAN__
1540 vcpu->arch.shared_big_endian = true;
1541#else
1542 vcpu->arch.shared_big_endian = false;
1543#endif
1544
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001545 /*
1546 * Default to the same as the host if we're on sufficiently
1547 * recent machine that we have 1TB segments;
1548 * otherwise default to PPC970FX.
1549 */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001550 vcpu->arch.pvr = 0x3C0301;
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001551 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1552 vcpu->arch.pvr = mfspr(SPRN_PVR);
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301553 vcpu->arch.intr_msr = MSR_SF;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001554#else
1555 /* default to book3s_32 (750) */
1556 vcpu->arch.pvr = 0x84202;
1557#endif
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301558 kvmppc_set_pvr_pr(vcpu, vcpu->arch.pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001559 vcpu->arch.slb_nr = 64;
1560
Alexander Graf94810ba2014-04-24 13:04:01 +02001561 vcpu->arch.shadow_msr = MSR_USER64 & ~MSR_LE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001562
1563 err = kvmppc_mmu_init(vcpu);
1564 if (err < 0)
1565 goto uninit_vcpu;
1566
1567 return vcpu;
1568
1569uninit_vcpu:
1570 kvm_vcpu_uninit(vcpu);
1571free_shadow_vcpu:
Alexander Grafab784752014-04-06 23:31:48 +02001572#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001573 kfree(vcpu->arch.shadow_vcpu);
1574free_vcpu3s:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001575#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001576 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001577free_vcpu:
1578 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001579out:
1580 return ERR_PTR(err);
1581}
1582
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301583static void kvmppc_core_vcpu_free_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001584{
1585 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
1586
1587 free_page((unsigned long)vcpu->arch.shared & PAGE_MASK);
1588 kvm_vcpu_uninit(vcpu);
Alexander Grafab784752014-04-06 23:31:48 +02001589#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001590 kfree(vcpu->arch.shadow_vcpu);
1591#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001592 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001593 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001594}
1595
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301596static int kvmppc_vcpu_run_pr(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001597{
1598 int ret;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001599#ifdef CONFIG_ALTIVEC
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001600 unsigned long uninitialized_var(vrsave);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001601#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001602
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001603 /* Check if we can run the vcpu at all */
1604 if (!vcpu->arch.sane) {
1605 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
Alexander Graf7d827142011-12-09 15:46:21 +01001606 ret = -EINVAL;
1607 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001608 }
1609
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001610 kvmppc_setup_debug(vcpu);
1611
Alexander Grafe371f712011-12-19 13:36:55 +01001612 /*
1613 * Interrupts could be timers for the guest which we have to inject
1614 * again, so let's postpone them until we're in the guest and if we
1615 * really did time things so badly, then we just exit again due to
1616 * a host external interrupt.
1617 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001618 ret = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001619 if (ret <= 0)
Alexander Graf7d827142011-12-09 15:46:21 +01001620 goto out;
Scott Wood6c85f522014-01-09 19:18:40 -06001621 /* interrupts now hard-disabled */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001622
Anton Blanchardc2085052015-10-29 11:44:08 +11001623 /* Save FPU, Altivec and VSX state */
1624 giveup_all(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001625
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001626 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +02001627 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001628 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
1629
Scott Wood5f1c2482013-07-10 17:47:39 -05001630 kvmppc_fix_ee_before_entry();
Paul Mackerrasdf6909e52011-06-29 00:19:50 +00001631
1632 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
1633
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001634 kvmppc_clear_debug(vcpu);
1635
Paolo Bonzini6edaa532016-06-15 15:18:26 +02001636 /* No need for guest_exit. It's done in handle_exit.
Alexander Graf24afa372012-08-12 12:42:30 +02001637 We also get here with interrupts enabled. */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001638
Paul Mackerras28c483b2012-11-04 18:16:46 +00001639 /* Make sure we save the guest FPU/Altivec/VSX state */
1640 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
1641
Alexander Grafe14e7a12014-04-22 12:26:58 +02001642 /* Make sure we save the guest TAR/EBB/DSCR state */
1643 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
1644
Alexander Graf7d827142011-12-09 15:46:21 +01001645out:
Alexander Graf0652eaa2012-08-12 11:34:21 +02001646 vcpu->mode = OUTSIDE_GUEST_MODE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001647 return ret;
1648}
1649
Paul Mackerras82ed3612011-12-15 02:03:22 +00001650/*
1651 * Get (and clear) the dirty memory log for a memory slot.
1652 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301653static int kvm_vm_ioctl_get_dirty_log_pr(struct kvm *kvm,
1654 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00001655{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001656 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00001657 struct kvm_memory_slot *memslot;
1658 struct kvm_vcpu *vcpu;
1659 ulong ga, ga_end;
1660 int is_dirty = 0;
1661 int r;
1662 unsigned long n;
1663
1664 mutex_lock(&kvm->slots_lock);
1665
1666 r = kvm_get_dirty_log(kvm, log, &is_dirty);
1667 if (r)
1668 goto out;
1669
1670 /* If nothing is dirty, don't bother messing with page tables. */
1671 if (is_dirty) {
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001672 slots = kvm_memslots(kvm);
1673 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00001674
1675 ga = memslot->base_gfn << PAGE_SHIFT;
1676 ga_end = ga + (memslot->npages << PAGE_SHIFT);
1677
1678 kvm_for_each_vcpu(n, vcpu, kvm)
1679 kvmppc_mmu_pte_pflush(vcpu, ga, ga_end);
1680
1681 n = kvm_dirty_bitmap_bytes(memslot);
1682 memset(memslot->dirty_bitmap, 0, n);
1683 }
1684
1685 r = 0;
1686out:
1687 mutex_unlock(&kvm->slots_lock);
1688 return r;
1689}
1690
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301691static void kvmppc_core_flush_memslot_pr(struct kvm *kvm,
1692 struct kvm_memory_slot *memslot)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001693{
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301694 return;
1695}
1696
1697static int kvmppc_core_prepare_memory_region_pr(struct kvm *kvm,
1698 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001699 const struct kvm_userspace_memory_region *mem)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301700{
1701 return 0;
1702}
1703
1704static void kvmppc_core_commit_memory_region_pr(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001705 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001706 const struct kvm_memory_slot *old,
1707 const struct kvm_memory_slot *new)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301708{
1709 return;
1710}
1711
1712static void kvmppc_core_free_memslot_pr(struct kvm_memory_slot *free,
1713 struct kvm_memory_slot *dont)
1714{
1715 return;
1716}
1717
1718static int kvmppc_core_create_memslot_pr(struct kvm_memory_slot *slot,
1719 unsigned long npages)
1720{
1721 return 0;
1722}
1723
1724
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001725#ifdef CONFIG_PPC64
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301726static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1727 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001728{
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001729 long int i;
1730 struct kvm_vcpu *vcpu;
1731
1732 info->flags = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001733
1734 /* SLB is always 64 entries */
1735 info->slb_size = 64;
1736
1737 /* Standard 4k base page size segment */
1738 info->sps[0].page_shift = 12;
1739 info->sps[0].slb_enc = 0;
1740 info->sps[0].enc[0].page_shift = 12;
1741 info->sps[0].enc[0].pte_enc = 0;
1742
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001743 /*
1744 * 64k large page size.
1745 * We only want to put this in if the CPUs we're emulating
1746 * support it, but unfortunately we don't have a vcpu easily
1747 * to hand here to test. Just pick the first vcpu, and if
1748 * that doesn't exist yet, report the minimum capability,
1749 * i.e., no 64k pages.
1750 * 1T segment support goes along with 64k pages.
1751 */
1752 i = 1;
1753 vcpu = kvm_get_vcpu(kvm, 0);
1754 if (vcpu && (vcpu->arch.hflags & BOOK3S_HFLAG_MULTI_PGSIZE)) {
1755 info->flags = KVM_PPC_1T_SEGMENTS;
1756 info->sps[i].page_shift = 16;
1757 info->sps[i].slb_enc = SLB_VSID_L | SLB_VSID_LP_01;
1758 info->sps[i].enc[0].page_shift = 16;
1759 info->sps[i].enc[0].pte_enc = 1;
1760 ++i;
1761 }
1762
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001763 /* Standard 16M large page size segment */
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001764 info->sps[i].page_shift = 24;
1765 info->sps[i].slb_enc = SLB_VSID_L;
1766 info->sps[i].enc[0].page_shift = 24;
1767 info->sps[i].enc[0].pte_enc = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001768
1769 return 0;
1770}
Paul Mackerras9617a0b2018-05-30 15:47:17 +10001771
1772static int kvm_configure_mmu_pr(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
1773{
1774 if (!cpu_has_feature(CPU_FTR_ARCH_300))
1775 return -ENODEV;
1776 /* Require flags and process table base and size to all be zero. */
1777 if (cfg->flags || cfg->process_table)
1778 return -EINVAL;
1779 return 0;
1780}
1781
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301782#else
1783static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1784 struct kvm_ppc_smmu_info *info)
1785{
1786 /* We should not get called */
1787 BUG();
1788}
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001789#endif /* CONFIG_PPC64 */
1790
Ian Munsiea413f472012-12-03 18:36:13 +00001791static unsigned int kvm_global_user_count = 0;
1792static DEFINE_SPINLOCK(kvm_global_user_count_lock);
1793
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301794static int kvmppc_core_init_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001795{
Paul Mackerras9308ab82013-09-20 14:52:48 +10001796 mutex_init(&kvm->arch.hpt_mutex);
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001797
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001798#ifdef CONFIG_PPC_BOOK3S_64
1799 /* Start out with the default set of hcalls enabled */
1800 kvmppc_pr_init_default_hcalls(kvm);
1801#endif
1802
Ian Munsiea413f472012-12-03 18:36:13 +00001803 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1804 spin_lock(&kvm_global_user_count_lock);
1805 if (++kvm_global_user_count == 1)
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +10001806 pseries_disable_reloc_on_exc();
Ian Munsiea413f472012-12-03 18:36:13 +00001807 spin_unlock(&kvm_global_user_count_lock);
1808 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001809 return 0;
1810}
1811
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301812static void kvmppc_core_destroy_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001813{
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001814#ifdef CONFIG_PPC64
1815 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
1816#endif
Ian Munsiea413f472012-12-03 18:36:13 +00001817
1818 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1819 spin_lock(&kvm_global_user_count_lock);
1820 BUG_ON(kvm_global_user_count == 0);
1821 if (--kvm_global_user_count == 0)
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +10001822 pseries_enable_reloc_on_exc();
Ian Munsiea413f472012-12-03 18:36:13 +00001823 spin_unlock(&kvm_global_user_count_lock);
1824 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001825}
1826
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301827static int kvmppc_core_check_processor_compat_pr(void)
1828{
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10001829 /*
Paul Mackerrasec531d02018-05-18 21:49:28 +10001830 * PR KVM can work on POWER9 inside a guest partition
1831 * running in HPT mode. It can't work if we are using
1832 * radix translation (because radix provides no way for
1833 * a process to have unique translations in quadrant 3)
1834 * or in a bare-metal HPT-mode host (because POWER9
1835 * uses a modified HPTE format which the PR KVM code
1836 * has not been adapted to use).
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10001837 */
Paul Mackerrasec531d02018-05-18 21:49:28 +10001838 if (cpu_has_feature(CPU_FTR_ARCH_300) &&
1839 (radix_enabled() || cpu_has_feature(CPU_FTR_HVMODE)))
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10001840 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301841 return 0;
1842}
1843
1844static long kvm_arch_vm_ioctl_pr(struct file *filp,
1845 unsigned int ioctl, unsigned long arg)
1846{
1847 return -ENOTTY;
1848}
1849
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301850static struct kvmppc_ops kvm_ops_pr = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301851 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_pr,
1852 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_pr,
1853 .get_one_reg = kvmppc_get_one_reg_pr,
1854 .set_one_reg = kvmppc_set_one_reg_pr,
1855 .vcpu_load = kvmppc_core_vcpu_load_pr,
1856 .vcpu_put = kvmppc_core_vcpu_put_pr,
1857 .set_msr = kvmppc_set_msr_pr,
1858 .vcpu_run = kvmppc_vcpu_run_pr,
1859 .vcpu_create = kvmppc_core_vcpu_create_pr,
1860 .vcpu_free = kvmppc_core_vcpu_free_pr,
1861 .check_requests = kvmppc_core_check_requests_pr,
1862 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_pr,
1863 .flush_memslot = kvmppc_core_flush_memslot_pr,
1864 .prepare_memory_region = kvmppc_core_prepare_memory_region_pr,
1865 .commit_memory_region = kvmppc_core_commit_memory_region_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301866 .unmap_hva_range = kvm_unmap_hva_range_pr,
1867 .age_hva = kvm_age_hva_pr,
1868 .test_age_hva = kvm_test_age_hva_pr,
1869 .set_spte_hva = kvm_set_spte_hva_pr,
1870 .mmu_destroy = kvmppc_mmu_destroy_pr,
1871 .free_memslot = kvmppc_core_free_memslot_pr,
1872 .create_memslot = kvmppc_core_create_memslot_pr,
1873 .init_vm = kvmppc_core_init_vm_pr,
1874 .destroy_vm = kvmppc_core_destroy_vm_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301875 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_pr,
1876 .emulate_op = kvmppc_core_emulate_op_pr,
1877 .emulate_mtspr = kvmppc_core_emulate_mtspr_pr,
1878 .emulate_mfspr = kvmppc_core_emulate_mfspr_pr,
1879 .fast_vcpu_kick = kvm_vcpu_kick,
1880 .arch_vm_ioctl = kvm_arch_vm_ioctl_pr,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001881#ifdef CONFIG_PPC_BOOK3S_64
1882 .hcall_implemented = kvmppc_hcall_impl_pr,
Paul Mackerras9617a0b2018-05-30 15:47:17 +10001883 .configure_mmu = kvm_configure_mmu_pr,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001884#endif
Simon Guo2e6baa42018-05-21 13:24:22 +08001885 .giveup_ext = kvmppc_giveup_ext,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301886};
1887
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301888
1889int kvmppc_book3s_init_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001890{
1891 int r;
1892
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301893 r = kvmppc_core_check_processor_compat_pr();
1894 if (r < 0)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001895 return r;
1896
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301897 kvm_ops_pr.owner = THIS_MODULE;
1898 kvmppc_pr_ops = &kvm_ops_pr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001899
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301900 r = kvmppc_mmu_hpte_sysinit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001901 return r;
1902}
1903
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301904void kvmppc_book3s_exit_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001905{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301906 kvmppc_pr_ops = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001907 kvmppc_mmu_hpte_sysexit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001908}
1909
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301910/*
1911 * We only support separate modules for book3s 64
1912 */
1913#ifdef CONFIG_PPC_BOOK3S_64
1914
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301915module_init(kvmppc_book3s_init_pr);
1916module_exit(kvmppc_book3s_exit_pr);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301917
1918MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01001919MODULE_ALIAS_MISCDEV(KVM_MINOR);
1920MODULE_ALIAS("devname:kvm");
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301921#endif