blob: a275f8b3a4a09ed018bf88f6df437078d7ca8b68 [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
Simon Guo57063402018-05-23 15:02:01 +0800210#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
211 /*
212 * in guest privileged state, we want to fail all TM transactions.
213 * So disable MSR TM bit so that all tbegin. will be able to be
214 * trapped into host.
215 */
216 if (!(guest_msr & MSR_PR))
217 smsr &= ~MSR_TM;
218#endif
Simon Guo95757bf2018-05-23 15:01:53 +0800219 vcpu->arch.shadow_msr = smsr;
220}
221
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000222/* Copy data touched by real-mode code from shadow vcpu back to vcpu */
Alexander Graf07ae5382018-01-31 22:24:58 +0100223void kvmppc_copy_from_svcpu(struct kvm_vcpu *vcpu)
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000224{
Alexander Graf07ae5382018-01-31 22:24:58 +0100225 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Simon Guo95757bf2018-05-23 15:01:53 +0800226#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
227 ulong old_msr;
228#endif
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100229
230 /*
231 * Maybe we were already preempted and synced the svcpu from
232 * our preempt notifiers. Don't bother touching this svcpu then.
233 */
234 if (!svcpu->in_use)
235 goto out;
236
Simon Guo1143a702018-05-07 14:20:07 +0800237 vcpu->arch.regs.gpr[0] = svcpu->gpr[0];
238 vcpu->arch.regs.gpr[1] = svcpu->gpr[1];
239 vcpu->arch.regs.gpr[2] = svcpu->gpr[2];
240 vcpu->arch.regs.gpr[3] = svcpu->gpr[3];
241 vcpu->arch.regs.gpr[4] = svcpu->gpr[4];
242 vcpu->arch.regs.gpr[5] = svcpu->gpr[5];
243 vcpu->arch.regs.gpr[6] = svcpu->gpr[6];
244 vcpu->arch.regs.gpr[7] = svcpu->gpr[7];
245 vcpu->arch.regs.gpr[8] = svcpu->gpr[8];
246 vcpu->arch.regs.gpr[9] = svcpu->gpr[9];
247 vcpu->arch.regs.gpr[10] = svcpu->gpr[10];
248 vcpu->arch.regs.gpr[11] = svcpu->gpr[11];
249 vcpu->arch.regs.gpr[12] = svcpu->gpr[12];
250 vcpu->arch.regs.gpr[13] = svcpu->gpr[13];
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000251 vcpu->arch.cr = svcpu->cr;
Simon Guo173c5202018-05-07 14:20:08 +0800252 vcpu->arch.regs.xer = svcpu->xer;
253 vcpu->arch.regs.ctr = svcpu->ctr;
254 vcpu->arch.regs.link = svcpu->lr;
255 vcpu->arch.regs.nip = svcpu->pc;
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000256 vcpu->arch.shadow_srr1 = svcpu->shadow_srr1;
257 vcpu->arch.fault_dar = svcpu->fault_dar;
258 vcpu->arch.fault_dsisr = svcpu->fault_dsisr;
259 vcpu->arch.last_inst = svcpu->last_inst;
Alexander Graf616dff82014-04-29 16:48:44 +0200260#ifdef CONFIG_PPC_BOOK3S_64
261 vcpu->arch.shadow_fscr = svcpu->shadow_fscr;
262#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530263 /*
264 * Update purr and spurr using time base on exit.
265 */
266 vcpu->arch.purr += get_tb() - vcpu->arch.entry_tb;
267 vcpu->arch.spurr += get_tb() - vcpu->arch.entry_tb;
Paul Mackerras88b02cf92016-09-15 13:42:52 +1000268 to_book3s(vcpu)->vtb += get_vtb() - vcpu->arch.entry_vtb;
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530269 if (cpu_has_feature(CPU_FTR_ARCH_207S))
270 vcpu->arch.ic += mfspr(SPRN_IC) - vcpu->arch.entry_ic;
Simon Guo95757bf2018-05-23 15:01:53 +0800271
272#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
273 /*
274 * Unlike other MSR bits, MSR[TS]bits can be changed at guest without
275 * notifying host:
276 * modified by unprivileged instructions like "tbegin"/"tend"/
277 * "tresume"/"tsuspend" in PR KVM guest.
278 *
279 * It is necessary to sync here to calculate a correct shadow_msr.
280 *
281 * privileged guest's tbegin will be failed at present. So we
282 * only take care of problem state guest.
283 */
284 old_msr = kvmppc_get_msr(vcpu);
285 if (unlikely((old_msr & MSR_PR) &&
286 (vcpu->arch.shadow_srr1 & (MSR_TS_MASK)) !=
287 (old_msr & (MSR_TS_MASK)))) {
288 old_msr &= ~(MSR_TS_MASK);
289 old_msr |= (vcpu->arch.shadow_srr1 & (MSR_TS_MASK));
290 kvmppc_set_msr_fast(vcpu, old_msr);
291 kvmppc_recalc_shadow_msr(vcpu);
292 }
293#endif
294
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100295 svcpu->in_use = false;
296
297out:
Alexander Graf07ae5382018-01-31 22:24:58 +0100298 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000299}
300
Simon Guo66c33e72018-05-23 15:01:57 +0800301#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Simon Guoe32c53d2018-05-23 15:02:04 +0800302void kvmppc_save_tm_sprs(struct kvm_vcpu *vcpu)
Simon Guo66c33e72018-05-23 15:01:57 +0800303{
304 tm_enable();
305 vcpu->arch.tfhar = mfspr(SPRN_TFHAR);
306 vcpu->arch.texasr = mfspr(SPRN_TEXASR);
307 vcpu->arch.tfiar = mfspr(SPRN_TFIAR);
308 tm_disable();
309}
310
Simon Guo57063402018-05-23 15:02:01 +0800311void kvmppc_restore_tm_sprs(struct kvm_vcpu *vcpu)
Simon Guo66c33e72018-05-23 15:01:57 +0800312{
313 tm_enable();
314 mtspr(SPRN_TFHAR, vcpu->arch.tfhar);
315 mtspr(SPRN_TEXASR, vcpu->arch.texasr);
316 mtspr(SPRN_TFIAR, vcpu->arch.tfiar);
317 tm_disable();
318}
319
Simon Guo13989b62018-05-23 15:01:59 +0800320/* loadup math bits which is enabled at kvmppc_get_msr() but not enabled at
321 * hardware.
322 */
323static void kvmppc_handle_lost_math_exts(struct kvm_vcpu *vcpu)
324{
325 ulong exit_nr;
326 ulong ext_diff = (kvmppc_get_msr(vcpu) & ~vcpu->arch.guest_owned_ext) &
327 (MSR_FP | MSR_VEC | MSR_VSX);
328
329 if (!ext_diff)
330 return;
331
332 if (ext_diff == MSR_FP)
333 exit_nr = BOOK3S_INTERRUPT_FP_UNAVAIL;
334 else if (ext_diff == MSR_VEC)
335 exit_nr = BOOK3S_INTERRUPT_ALTIVEC;
336 else
337 exit_nr = BOOK3S_INTERRUPT_VSX;
338
339 kvmppc_handle_ext(vcpu, exit_nr, ext_diff);
340}
341
Simon Guo8d2e2fc2018-05-23 15:01:58 +0800342void kvmppc_save_tm_pr(struct kvm_vcpu *vcpu)
343{
344 if (!(MSR_TM_ACTIVE(kvmppc_get_msr(vcpu)))) {
345 kvmppc_save_tm_sprs(vcpu);
346 return;
347 }
348
Simon Guo13989b62018-05-23 15:01:59 +0800349 kvmppc_giveup_ext(vcpu, MSR_VSX);
350
Simon Guo8d2e2fc2018-05-23 15:01:58 +0800351 preempt_disable();
352 _kvmppc_save_tm_pr(vcpu, mfmsr());
353 preempt_enable();
354}
355
356void kvmppc_restore_tm_pr(struct kvm_vcpu *vcpu)
357{
358 if (!MSR_TM_ACTIVE(kvmppc_get_msr(vcpu))) {
359 kvmppc_restore_tm_sprs(vcpu);
Simon Guo13989b62018-05-23 15:01:59 +0800360 if (kvmppc_get_msr(vcpu) & MSR_TM)
361 kvmppc_handle_lost_math_exts(vcpu);
Simon Guo8d2e2fc2018-05-23 15:01:58 +0800362 return;
363 }
364
365 preempt_disable();
366 _kvmppc_restore_tm_pr(vcpu, kvmppc_get_msr(vcpu));
367 preempt_enable();
Simon Guo13989b62018-05-23 15:01:59 +0800368
369 if (kvmppc_get_msr(vcpu) & MSR_TM)
370 kvmppc_handle_lost_math_exts(vcpu);
371
Simon Guo8d2e2fc2018-05-23 15:01:58 +0800372}
Simon Guo66c33e72018-05-23 15:01:57 +0800373#endif
374
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530375static int kvmppc_core_check_requests_pr(struct kvm_vcpu *vcpu)
Alexander Graf03d25c52012-08-10 12:28:50 +0200376{
Alexander Graf7c973a22012-08-13 12:50:35 +0200377 int r = 1; /* Indicate we want to get back into the guest */
378
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200379 /* We misuse TLB_FLUSH to indicate that we want to clear
380 all shadow cache entries */
381 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
382 kvmppc_mmu_pte_flush(vcpu, 0, 0);
Alexander Graf7c973a22012-08-13 12:50:35 +0200383
384 return r;
Alexander Graf03d25c52012-08-10 12:28:50 +0200385}
386
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200387/************* MMU Notifiers *************/
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000388static void do_kvm_unmap_hva(struct kvm *kvm, unsigned long start,
389 unsigned long end)
390{
391 long i;
392 struct kvm_vcpu *vcpu;
393 struct kvm_memslots *slots;
394 struct kvm_memory_slot *memslot;
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200395
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000396 slots = kvm_memslots(kvm);
397 kvm_for_each_memslot(memslot, slots) {
398 unsigned long hva_start, hva_end;
399 gfn_t gfn, gfn_end;
400
401 hva_start = max(start, memslot->userspace_addr);
402 hva_end = min(end, memslot->userspace_addr +
403 (memslot->npages << PAGE_SHIFT));
404 if (hva_start >= hva_end)
405 continue;
406 /*
407 * {gfn(page) | page intersects with [hva_start, hva_end)} =
408 * {gfn, gfn+1, ..., gfn_end-1}.
409 */
410 gfn = hva_to_gfn_memslot(hva_start, memslot);
411 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
412 kvm_for_each_vcpu(i, vcpu, kvm)
413 kvmppc_mmu_pte_pflush(vcpu, gfn << PAGE_SHIFT,
414 gfn_end << PAGE_SHIFT);
415 }
416}
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200417
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530418static int kvm_unmap_hva_range_pr(struct kvm *kvm, unsigned long start,
419 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200420{
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000421 do_kvm_unmap_hva(kvm, start, end);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200422
423 return 0;
424}
425
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700426static int kvm_age_hva_pr(struct kvm *kvm, unsigned long start,
427 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200428{
429 /* XXX could be more clever ;) */
430 return 0;
431}
432
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530433static int kvm_test_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200434{
435 /* XXX could be more clever ;) */
436 return 0;
437}
438
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530439static void kvm_set_spte_hva_pr(struct kvm *kvm, unsigned long hva, pte_t pte)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200440{
441 /* The page will get remapped properly on its next fault */
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000442 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200443}
444
445/*****************************************/
446
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530447static void kvmppc_set_msr_pr(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000448{
Alexander Graf5deb8e72014-04-24 13:46:24 +0200449 ulong old_msr = kvmppc_get_msr(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000450
451#ifdef EXIT_DEBUG
452 printk(KERN_INFO "KVM: Set MSR to 0x%llx\n", msr);
453#endif
454
455 msr &= to_book3s(vcpu)->msr_mask;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200456 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000457 kvmppc_recalc_shadow_msr(vcpu);
458
459 if (msr & MSR_POW) {
460 if (!vcpu->arch.pending_exceptions) {
461 kvm_vcpu_block(vcpu);
Radim Krčmář72875d82017-04-26 22:32:19 +0200462 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000463 vcpu->stat.halt_wakeup++;
464
465 /* Unset POW bit after we woke up */
466 msr &= ~MSR_POW;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200467 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000468 }
469 }
470
Alexander Grafc01e3f62014-07-11 02:58:58 +0200471 if (kvmppc_is_split_real(vcpu))
472 kvmppc_fixup_split_real(vcpu);
473 else
474 kvmppc_unfixup_split_real(vcpu);
475
Alexander Graf5deb8e72014-04-24 13:46:24 +0200476 if ((kvmppc_get_msr(vcpu) & (MSR_PR|MSR_IR|MSR_DR)) !=
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000477 (old_msr & (MSR_PR|MSR_IR|MSR_DR))) {
478 kvmppc_mmu_flush_segments(vcpu);
479 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
480
481 /* Preload magic page segment when in kernel mode */
482 if (!(msr & MSR_PR) && vcpu->arch.magic_page_pa) {
483 struct kvm_vcpu_arch *a = &vcpu->arch;
484
485 if (msr & MSR_DR)
486 kvmppc_mmu_map_segment(vcpu, a->magic_page_ea);
487 else
488 kvmppc_mmu_map_segment(vcpu, a->magic_page_pa);
489 }
490 }
491
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000492 /*
493 * When switching from 32 to 64-bit, we may have a stale 32-bit
494 * magic page around, we need to flush it. Typically 32-bit magic
495 * page will be instanciated when calling into RTAS. Note: We
496 * assume that such transition only happens while in kernel mode,
497 * ie, we never transition from user 32-bit to kernel 64-bit with
498 * a 32-bit magic page around.
499 */
500 if (vcpu->arch.magic_page_pa &&
501 !(old_msr & MSR_PR) && !(old_msr & MSR_SF) && (msr & MSR_SF)) {
502 /* going from RTAS to normal kernel code */
503 kvmppc_mmu_pte_flush(vcpu, (uint32_t)vcpu->arch.magic_page_pa,
504 ~0xFFFUL);
505 }
506
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000507 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200508 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000509 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
Simon Guo13989b62018-05-23 15:01:59 +0800510
511#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
512 if (kvmppc_get_msr(vcpu) & MSR_TM)
513 kvmppc_handle_lost_math_exts(vcpu);
514#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000515}
516
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530517void kvmppc_set_pvr_pr(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000518{
519 u32 host_pvr;
520
521 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SLB;
522 vcpu->arch.pvr = pvr;
523#ifdef CONFIG_PPC_BOOK3S_64
524 if ((pvr >= 0x330000) && (pvr < 0x70330000)) {
525 kvmppc_mmu_book3s_64_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200526 if (!to_book3s(vcpu)->hior_explicit)
527 to_book3s(vcpu)->hior = 0xfff00000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000528 to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200529 vcpu->arch.cpu_type = KVM_CPU_3S_64;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000530 } else
531#endif
532 {
533 kvmppc_mmu_book3s_32_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200534 if (!to_book3s(vcpu)->hior_explicit)
535 to_book3s(vcpu)->hior = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000536 to_book3s(vcpu)->msr_mask = 0xffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200537 vcpu->arch.cpu_type = KVM_CPU_3S_32;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000538 }
539
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200540 kvmppc_sanity_check(vcpu);
541
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000542 /* If we are in hypervisor level on 970, we can tell the CPU to
543 * treat DCBZ as 32 bytes store */
544 vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32;
545 if (vcpu->arch.mmu.is_dcbz32(vcpu) && (mfmsr() & MSR_HV) &&
546 !strcmp(cur_cpu_spec->platform, "ppc970"))
547 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
548
549 /* Cell performs badly if MSR_FEx are set. So let's hope nobody
550 really needs them in a VM on Cell and force disable them. */
551 if (!strcmp(cur_cpu_spec->platform, "ppc-cell-be"))
552 to_book3s(vcpu)->msr_mask &= ~(MSR_FE0 | MSR_FE1);
553
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000554 /*
555 * If they're asking for POWER6 or later, set the flag
556 * indicating that we can do multiple large page sizes
557 * and 1TB segments.
558 * Also set the flag that indicates that tlbie has the large
559 * page bit in the RB operand instead of the instruction.
560 */
561 switch (PVR_VER(pvr)) {
562 case PVR_POWER6:
563 case PVR_POWER7:
564 case PVR_POWER7p:
565 case PVR_POWER8:
Thomas Huth2365f6b2016-09-21 13:53:46 +0200566 case PVR_POWER8E:
567 case PVR_POWER8NVL:
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000568 vcpu->arch.hflags |= BOOK3S_HFLAG_MULTI_PGSIZE |
569 BOOK3S_HFLAG_NEW_TLBIE;
570 break;
571 }
572
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000573#ifdef CONFIG_PPC_BOOK3S_32
574 /* 32 bit Book3S always has 32 byte dcbz */
575 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
576#endif
577
578 /* On some CPUs we can execute paired single operations natively */
579 asm ( "mfpvr %0" : "=r"(host_pvr));
580 switch (host_pvr) {
581 case 0x00080200: /* lonestar 2.0 */
582 case 0x00088202: /* lonestar 2.2 */
583 case 0x70000100: /* gekko 1.0 */
584 case 0x00080100: /* gekko 2.0 */
585 case 0x00083203: /* gekko 2.3a */
586 case 0x00083213: /* gekko 2.3b */
587 case 0x00083204: /* gekko 2.4 */
588 case 0x00083214: /* gekko 2.4e (8SE) - retail HW2 */
589 case 0x00087200: /* broadway */
590 vcpu->arch.hflags |= BOOK3S_HFLAG_NATIVE_PS;
591 /* Enable HID2.PSE - in case we need it later */
592 mtspr(SPRN_HID2_GEKKO, mfspr(SPRN_HID2_GEKKO) | (1 << 29));
593 }
594}
595
596/* Book3s_32 CPUs always have 32 bytes cache line size, which Linux assumes. To
597 * make Book3s_32 Linux work on Book3s_64, we have to make sure we trap dcbz to
598 * emulate 32 bytes dcbz length.
599 *
600 * The Book3s_64 inventors also realized this case and implemented a special bit
601 * in the HID5 register, which is a hypervisor ressource. Thus we can't use it.
602 *
603 * My approach here is to patch the dcbz instruction on executing pages.
604 */
605static void kvmppc_patch_dcbz(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte)
606{
607 struct page *hpage;
608 u64 hpage_offset;
609 u32 *page;
610 int i;
611
612 hpage = gfn_to_page(vcpu->kvm, pte->raddr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800613 if (is_error_page(hpage))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000614 return;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000615
616 hpage_offset = pte->raddr & ~PAGE_MASK;
617 hpage_offset &= ~0xFFFULL;
618 hpage_offset /= 4;
619
620 get_page(hpage);
Cong Wang2480b202011-11-25 23:14:16 +0800621 page = kmap_atomic(hpage);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000622
623 /* patch dcbz into reserved instruction, so we trap */
624 for (i=hpage_offset; i < hpage_offset + (HW_PAGE_SIZE / 4); i++)
Alexander Grafcd087ee2014-04-24 13:52:01 +0200625 if ((be32_to_cpu(page[i]) & 0xff0007ff) == INS_DCBZ)
626 page[i] &= cpu_to_be32(0xfffffff7);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000627
Cong Wang2480b202011-11-25 23:14:16 +0800628 kunmap_atomic(page);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000629 put_page(hpage);
630}
631
Yaowei Bai378b4172015-11-16 11:10:24 +0800632static bool kvmppc_visible_gpa(struct kvm_vcpu *vcpu, gpa_t gpa)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000633{
634 ulong mp_pa = vcpu->arch.magic_page_pa;
635
Alexander Graf5deb8e72014-04-24 13:46:24 +0200636 if (!(kvmppc_get_msr(vcpu) & MSR_SF))
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000637 mp_pa = (uint32_t)mp_pa;
638
Alexander Graf89b68c92014-07-13 16:37:12 +0200639 gpa &= ~0xFFFULL;
640 if (unlikely(mp_pa) && unlikely((mp_pa & KVM_PAM) == (gpa & KVM_PAM))) {
Yaowei Bai378b4172015-11-16 11:10:24 +0800641 return true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000642 }
643
Alexander Graf89b68c92014-07-13 16:37:12 +0200644 return kvm_is_visible_gfn(vcpu->kvm, gpa >> PAGE_SHIFT);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000645}
646
647int kvmppc_handle_pagefault(struct kvm_run *run, struct kvm_vcpu *vcpu,
648 ulong eaddr, int vec)
649{
650 bool data = (vec == BOOK3S_INTERRUPT_DATA_STORAGE);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000651 bool iswrite = false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000652 int r = RESUME_GUEST;
653 int relocated;
654 int page_found = 0;
Alexey Kardashevskiy96df2262017-03-24 17:49:22 +1100655 struct kvmppc_pte pte = { 0 };
Alexander Graf5deb8e72014-04-24 13:46:24 +0200656 bool dr = (kvmppc_get_msr(vcpu) & MSR_DR) ? true : false;
657 bool ir = (kvmppc_get_msr(vcpu) & MSR_IR) ? true : false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000658 u64 vsid;
659
660 relocated = data ? dr : ir;
Paul Mackerras93b159b2013-09-20 14:52:51 +1000661 if (data && (vcpu->arch.fault_dsisr & DSISR_ISSTORE))
662 iswrite = true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000663
664 /* Resolve real address if translation turned on */
665 if (relocated) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000666 page_found = vcpu->arch.mmu.xlate(vcpu, eaddr, &pte, data, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000667 } else {
668 pte.may_execute = true;
669 pte.may_read = true;
670 pte.may_write = true;
671 pte.raddr = eaddr & KVM_PAM;
672 pte.eaddr = eaddr;
673 pte.vpage = eaddr >> 12;
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000674 pte.page_size = MMU_PAGE_64K;
Alexey Kardashevskiy6c7d47c2017-11-22 14:42:21 +1100675 pte.wimg = HPTE_R_M;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000676 }
677
Alexander Graf5deb8e72014-04-24 13:46:24 +0200678 switch (kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000679 case 0:
680 pte.vpage |= ((u64)VSID_REAL << (SID_SHIFT - 12));
681 break;
682 case MSR_DR:
Alexander Grafc01e3f62014-07-11 02:58:58 +0200683 if (!data &&
684 (vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK) &&
685 ((pte.raddr & SPLIT_HACK_MASK) == SPLIT_HACK_OFFS))
686 pte.raddr &= ~SPLIT_HACK_MASK;
687 /* fall through */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000688 case MSR_IR:
689 vcpu->arch.mmu.esid_to_vsid(vcpu, eaddr >> SID_SHIFT, &vsid);
690
Alexander Graf5deb8e72014-04-24 13:46:24 +0200691 if ((kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) == MSR_DR)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000692 pte.vpage |= ((u64)VSID_REAL_DR << (SID_SHIFT - 12));
693 else
694 pte.vpage |= ((u64)VSID_REAL_IR << (SID_SHIFT - 12));
695 pte.vpage |= vsid;
696
697 if (vsid == -1)
698 page_found = -EINVAL;
699 break;
700 }
701
702 if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
703 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
704 /*
705 * If we do the dcbz hack, we have to NX on every execution,
706 * so we can patch the executing code. This renders our guest
707 * NX-less.
708 */
709 pte.may_execute = !data;
710 }
711
712 if (page_found == -ENOENT) {
713 /* Page not found in guest PTE entries */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200714 u64 ssrr1 = vcpu->arch.shadow_srr1;
715 u64 msr = kvmppc_get_msr(vcpu);
716 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
717 kvmppc_set_dsisr(vcpu, vcpu->arch.fault_dsisr);
718 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000719 kvmppc_book3s_queue_irqprio(vcpu, vec);
720 } else if (page_found == -EPERM) {
721 /* Storage protection */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200722 u32 dsisr = vcpu->arch.fault_dsisr;
723 u64 ssrr1 = vcpu->arch.shadow_srr1;
724 u64 msr = kvmppc_get_msr(vcpu);
725 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
726 dsisr = (dsisr & ~DSISR_NOHPTE) | DSISR_PROTFAULT;
727 kvmppc_set_dsisr(vcpu, dsisr);
728 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000729 kvmppc_book3s_queue_irqprio(vcpu, vec);
730 } else if (page_found == -EINVAL) {
731 /* Page not found in guest SLB */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200732 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000733 kvmppc_book3s_queue_irqprio(vcpu, vec + 0x80);
Alexey Kardashevskiy9eecec12017-03-24 17:47:13 +1100734 } else if (kvmppc_visible_gpa(vcpu, pte.raddr)) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000735 if (data && !(vcpu->arch.fault_dsisr & DSISR_NOHPTE)) {
736 /*
737 * There is already a host HPTE there, presumably
738 * a read-only one for a page the guest thinks
739 * is writable, so get rid of it first.
740 */
741 kvmppc_mmu_unmap_page(vcpu, &pte);
742 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000743 /* The guest's PTE is not mapped yet. Map on the host */
Alexey Kardashevskiybd9166f2017-03-24 17:48:10 +1100744 if (kvmppc_mmu_map_page(vcpu, &pte, iswrite) == -EIO) {
745 /* Exit KVM if mapping failed */
746 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
747 return RESUME_HOST;
748 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000749 if (data)
750 vcpu->stat.sp_storage++;
751 else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
Paul Mackerras93b159b2013-09-20 14:52:51 +1000752 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32)))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000753 kvmppc_patch_dcbz(vcpu, &pte);
754 } else {
755 /* MMIO */
756 vcpu->stat.mmio_exits++;
757 vcpu->arch.paddr_accessed = pte.raddr;
Alexander Graf6020c0f2012-03-12 02:26:30 +0100758 vcpu->arch.vaddr_accessed = pte.eaddr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000759 r = kvmppc_emulate_mmio(run, vcpu);
760 if ( r == RESUME_HOST_NV )
761 r = RESUME_HOST;
762 }
763
764 return r;
765}
766
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000767/* Give up external provider (FPU, Altivec, VSX) */
768void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr)
769{
770 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000771
Paul Mackerras28c483b2012-11-04 18:16:46 +0000772 /*
773 * VSX instructions can access FP and vector registers, so if
774 * we are giving up VSX, make sure we give up FP and VMX as well.
775 */
776 if (msr & MSR_VSX)
777 msr |= MSR_FP | MSR_VEC;
778
779 msr &= vcpu->arch.guest_owned_ext;
780 if (!msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000781 return;
782
783#ifdef DEBUG_EXT
784 printk(KERN_INFO "Giving up ext 0x%lx\n", msr);
785#endif
786
Paul Mackerras28c483b2012-11-04 18:16:46 +0000787 if (msr & MSR_FP) {
788 /*
789 * Note that on CPUs with VSX, giveup_fpu stores
790 * both the traditional FP registers and the added VSX
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000791 * registers into thread.fp_state.fpr[].
Paul Mackerras28c483b2012-11-04 18:16:46 +0000792 */
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100793 if (t->regs->msr & MSR_FP)
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000794 giveup_fpu(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100795 t->fp_save_area = NULL;
Paul Mackerras28c483b2012-11-04 18:16:46 +0000796 }
797
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000798#ifdef CONFIG_ALTIVEC
Paul Mackerras28c483b2012-11-04 18:16:46 +0000799 if (msr & MSR_VEC) {
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000800 if (current->thread.regs->msr & MSR_VEC)
801 giveup_altivec(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100802 t->vr_save_area = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000803 }
Paul Mackerras28c483b2012-11-04 18:16:46 +0000804#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000805
Paul Mackerras28c483b2012-11-04 18:16:46 +0000806 vcpu->arch.guest_owned_ext &= ~(msr | MSR_VSX);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000807 kvmppc_recalc_shadow_msr(vcpu);
808}
809
Alexander Graf616dff82014-04-29 16:48:44 +0200810/* Give up facility (TAR / EBB / DSCR) */
811static void kvmppc_giveup_fac(struct kvm_vcpu *vcpu, ulong fac)
812{
813#ifdef CONFIG_PPC_BOOK3S_64
814 if (!(vcpu->arch.shadow_fscr & (1ULL << fac))) {
815 /* Facility not available to the guest, ignore giveup request*/
816 return;
817 }
Alexander Grafe14e7a12014-04-22 12:26:58 +0200818
819 switch (fac) {
820 case FSCR_TAR_LG:
821 vcpu->arch.tar = mfspr(SPRN_TAR);
822 mtspr(SPRN_TAR, current->thread.tar);
823 vcpu->arch.shadow_fscr &= ~FSCR_TAR;
824 break;
825 }
Alexander Graf616dff82014-04-29 16:48:44 +0200826#endif
827}
828
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000829/* Handle external providers (FPU, Altivec, VSX) */
830static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
831 ulong msr)
832{
833 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000834
835 /* When we have paired singles, we emulate in software */
836 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE)
837 return RESUME_GUEST;
838
Alexander Graf5deb8e72014-04-24 13:46:24 +0200839 if (!(kvmppc_get_msr(vcpu) & msr)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000840 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
841 return RESUME_GUEST;
842 }
843
Paul Mackerras28c483b2012-11-04 18:16:46 +0000844 if (msr == MSR_VSX) {
845 /* No VSX? Give an illegal instruction interrupt */
846#ifdef CONFIG_VSX
847 if (!cpu_has_feature(CPU_FTR_VSX))
848#endif
849 {
850 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
851 return RESUME_GUEST;
852 }
853
854 /*
855 * We have to load up all the FP and VMX registers before
856 * we can let the guest use VSX instructions.
857 */
858 msr = MSR_FP | MSR_VEC | MSR_VSX;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000859 }
860
Paul Mackerras28c483b2012-11-04 18:16:46 +0000861 /* See if we already own all the ext(s) needed */
862 msr &= ~vcpu->arch.guest_owned_ext;
863 if (!msr)
864 return RESUME_GUEST;
865
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000866#ifdef DEBUG_EXT
867 printk(KERN_INFO "Loading up ext 0x%lx\n", msr);
868#endif
869
Paul Mackerras28c483b2012-11-04 18:16:46 +0000870 if (msr & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530871 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100872 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100873 load_fp_state(&vcpu->arch.fp);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100874 disable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100875 t->fp_save_area = &vcpu->arch.fp;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530876 preempt_enable();
Paul Mackerras28c483b2012-11-04 18:16:46 +0000877 }
878
879 if (msr & MSR_VEC) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000880#ifdef CONFIG_ALTIVEC
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530881 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100882 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100883 load_vr_state(&vcpu->arch.vr);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100884 disable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100885 t->vr_save_area = &vcpu->arch.vr;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530886 preempt_enable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000887#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000888 }
889
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100890 t->regs->msr |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000891 vcpu->arch.guest_owned_ext |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000892 kvmppc_recalc_shadow_msr(vcpu);
893
894 return RESUME_GUEST;
895}
896
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000897/*
898 * Kernel code using FP or VMX could have flushed guest state to
899 * the thread_struct; if so, get it back now.
900 */
901static void kvmppc_handle_lost_ext(struct kvm_vcpu *vcpu)
902{
903 unsigned long lost_ext;
904
905 lost_ext = vcpu->arch.guest_owned_ext & ~current->thread.regs->msr;
906 if (!lost_ext)
907 return;
908
Paul Mackerras09548fd2013-10-15 20:43:01 +1100909 if (lost_ext & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530910 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100911 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100912 load_fp_state(&vcpu->arch.fp);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100913 disable_kernel_fp();
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530914 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100915 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000916#ifdef CONFIG_ALTIVEC
Paul Mackerras09548fd2013-10-15 20:43:01 +1100917 if (lost_ext & MSR_VEC) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530918 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100919 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100920 load_vr_state(&vcpu->arch.vr);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100921 disable_kernel_altivec();
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530922 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100923 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000924#endif
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000925 current->thread.regs->msr |= lost_ext;
926}
927
Alexander Graf616dff82014-04-29 16:48:44 +0200928#ifdef CONFIG_PPC_BOOK3S_64
929
Simon Guo533082a2018-05-23 15:02:00 +0800930void kvmppc_trigger_fac_interrupt(struct kvm_vcpu *vcpu, ulong fac)
Alexander Graf616dff82014-04-29 16:48:44 +0200931{
932 /* Inject the Interrupt Cause field and trigger a guest interrupt */
933 vcpu->arch.fscr &= ~(0xffULL << 56);
934 vcpu->arch.fscr |= (fac << 56);
935 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_FAC_UNAVAIL);
936}
937
938static void kvmppc_emulate_fac(struct kvm_vcpu *vcpu, ulong fac)
939{
940 enum emulation_result er = EMULATE_FAIL;
941
942 if (!(kvmppc_get_msr(vcpu) & MSR_PR))
943 er = kvmppc_emulate_instruction(vcpu->run, vcpu);
944
945 if ((er != EMULATE_DONE) && (er != EMULATE_AGAIN)) {
946 /* Couldn't emulate, trigger interrupt in guest */
947 kvmppc_trigger_fac_interrupt(vcpu, fac);
948 }
949}
950
951/* Enable facilities (TAR, EBB, DSCR) for the guest */
952static int kvmppc_handle_fac(struct kvm_vcpu *vcpu, ulong fac)
953{
Alexander Graf9916d572014-04-29 17:54:40 +0200954 bool guest_fac_enabled;
Alexander Graf616dff82014-04-29 16:48:44 +0200955 BUG_ON(!cpu_has_feature(CPU_FTR_ARCH_207S));
956
Alexander Graf9916d572014-04-29 17:54:40 +0200957 /*
958 * Not every facility is enabled by FSCR bits, check whether the
959 * guest has this facility enabled at all.
960 */
961 switch (fac) {
962 case FSCR_TAR_LG:
963 case FSCR_EBB_LG:
964 guest_fac_enabled = (vcpu->arch.fscr & (1ULL << fac));
965 break;
966 case FSCR_TM_LG:
967 guest_fac_enabled = kvmppc_get_msr(vcpu) & MSR_TM;
968 break;
969 default:
970 guest_fac_enabled = false;
971 break;
972 }
973
974 if (!guest_fac_enabled) {
Alexander Graf616dff82014-04-29 16:48:44 +0200975 /* Facility not enabled by the guest */
976 kvmppc_trigger_fac_interrupt(vcpu, fac);
977 return RESUME_GUEST;
978 }
979
980 switch (fac) {
Alexander Grafe14e7a12014-04-22 12:26:58 +0200981 case FSCR_TAR_LG:
982 /* TAR switching isn't lazy in Linux yet */
983 current->thread.tar = mfspr(SPRN_TAR);
984 mtspr(SPRN_TAR, vcpu->arch.tar);
985 vcpu->arch.shadow_fscr |= FSCR_TAR;
986 break;
Alexander Graf616dff82014-04-29 16:48:44 +0200987 default:
988 kvmppc_emulate_fac(vcpu, fac);
989 break;
990 }
991
Simon Guo19c585e2018-05-23 15:02:02 +0800992#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
993 /* Since we disabled MSR_TM at privilege state, the mfspr instruction
994 * for TM spr can trigger TM fac unavailable. In this case, the
995 * emulation is handled by kvmppc_emulate_fac(), which invokes
996 * kvmppc_emulate_mfspr() finally. But note the mfspr can include
997 * RT for NV registers. So it need to restore those NV reg to reflect
998 * the update.
999 */
1000 if ((fac == FSCR_TM_LG) && !(kvmppc_get_msr(vcpu) & MSR_PR))
1001 return RESUME_GUEST_NV;
1002#endif
1003
Alexander Graf616dff82014-04-29 16:48:44 +02001004 return RESUME_GUEST;
1005}
Alexander Graf8e6afa32014-07-31 10:21:59 +02001006
1007void kvmppc_set_fscr(struct kvm_vcpu *vcpu, u64 fscr)
1008{
1009 if ((vcpu->arch.fscr & FSCR_TAR) && !(fscr & FSCR_TAR)) {
1010 /* TAR got dropped, drop it in shadow too */
1011 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
1012 }
1013 vcpu->arch.fscr = fscr;
1014}
Alexander Graf616dff82014-04-29 16:48:44 +02001015#endif
1016
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001017static void kvmppc_setup_debug(struct kvm_vcpu *vcpu)
1018{
1019 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
1020 u64 msr = kvmppc_get_msr(vcpu);
1021
1022 kvmppc_set_msr(vcpu, msr | MSR_SE);
1023 }
1024}
1025
1026static void kvmppc_clear_debug(struct kvm_vcpu *vcpu)
1027{
1028 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
1029 u64 msr = kvmppc_get_msr(vcpu);
1030
1031 kvmppc_set_msr(vcpu, msr & ~MSR_SE);
1032 }
1033}
1034
Thomas Huthfcd4f3c2017-01-25 13:27:22 +01001035static int kvmppc_exit_pr_progint(struct kvm_run *run, struct kvm_vcpu *vcpu,
1036 unsigned int exit_nr)
1037{
1038 enum emulation_result er;
1039 ulong flags;
1040 u32 last_inst;
1041 int emul, r;
1042
1043 /*
1044 * shadow_srr1 only contains valid flags if we came here via a program
1045 * exception. The other exceptions (emulation assist, FP unavailable,
1046 * etc.) do not provide flags in SRR1, so use an illegal-instruction
1047 * exception when injecting a program interrupt into the guest.
1048 */
1049 if (exit_nr == BOOK3S_INTERRUPT_PROGRAM)
1050 flags = vcpu->arch.shadow_srr1 & 0x1f0000ull;
1051 else
1052 flags = SRR1_PROGILL;
1053
1054 emul = kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
1055 if (emul != EMULATE_DONE)
1056 return RESUME_GUEST;
1057
1058 if (kvmppc_get_msr(vcpu) & MSR_PR) {
1059#ifdef EXIT_DEBUG
1060 pr_info("Userspace triggered 0x700 exception at\n 0x%lx (0x%x)\n",
1061 kvmppc_get_pc(vcpu), last_inst);
1062#endif
1063 if ((last_inst & 0xff0007ff) != (INS_DCBZ & 0xfffffff7)) {
1064 kvmppc_core_queue_program(vcpu, flags);
1065 return RESUME_GUEST;
1066 }
1067 }
1068
1069 vcpu->stat.emulated_inst_exits++;
1070 er = kvmppc_emulate_instruction(run, vcpu);
1071 switch (er) {
1072 case EMULATE_DONE:
1073 r = RESUME_GUEST_NV;
1074 break;
1075 case EMULATE_AGAIN:
1076 r = RESUME_GUEST;
1077 break;
1078 case EMULATE_FAIL:
1079 pr_crit("%s: emulation at %lx failed (%08x)\n",
1080 __func__, kvmppc_get_pc(vcpu), last_inst);
1081 kvmppc_core_queue_program(vcpu, flags);
1082 r = RESUME_GUEST;
1083 break;
1084 case EMULATE_DO_MMIO:
1085 run->exit_reason = KVM_EXIT_MMIO;
1086 r = RESUME_HOST_NV;
1087 break;
1088 case EMULATE_EXIT_USER:
1089 r = RESUME_HOST_NV;
1090 break;
1091 default:
1092 BUG();
1093 }
1094
1095 return r;
1096}
1097
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301098int kvmppc_handle_exit_pr(struct kvm_run *run, struct kvm_vcpu *vcpu,
1099 unsigned int exit_nr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001100{
1101 int r = RESUME_HOST;
Alexander Graf7ee78852012-08-13 12:44:41 +02001102 int s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001103
1104 vcpu->stat.sum_exits++;
1105
1106 run->exit_reason = KVM_EXIT_UNKNOWN;
1107 run->ready_for_interrupt_injection = 1;
1108
Alexander Grafbd2be682012-08-13 01:04:19 +02001109 /* We get here with MSR.EE=1 */
Alexander Graf3b1d9d72012-04-30 10:56:12 +02001110
Alexander Graf97c95052012-08-02 15:10:00 +02001111 trace_kvm_exit(exit_nr, vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02001112 guest_exit();
Alexander Grafc63ddcb2012-08-12 11:27:49 +02001113
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001114 switch (exit_nr) {
1115 case BOOK3S_INTERRUPT_INST_STORAGE:
Alexander Graf468a12c2011-12-09 14:44:13 +01001116 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001117 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001118 vcpu->stat.pf_instruc++;
1119
Alexander Grafc01e3f62014-07-11 02:58:58 +02001120 if (kvmppc_is_split_real(vcpu))
1121 kvmppc_fixup_split_real(vcpu);
1122
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001123#ifdef CONFIG_PPC_BOOK3S_32
1124 /* We set segments as unused segments when invalidating them. So
1125 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001126 {
1127 struct kvmppc_book3s_shadow_vcpu *svcpu;
1128 u32 sr;
1129
1130 svcpu = svcpu_get(vcpu);
1131 sr = svcpu->sr[kvmppc_get_pc(vcpu) >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +01001132 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001133 if (sr == SR_INVALID) {
1134 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
1135 r = RESUME_GUEST;
1136 break;
1137 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001138 }
1139#endif
1140
1141 /* only care about PTEG not found errors, but leave NX alone */
Alexander Graf468a12c2011-12-09 14:44:13 +01001142 if (shadow_srr1 & 0x40000000) {
Paul Mackerras93b159b2013-09-20 14:52:51 +10001143 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001144 r = kvmppc_handle_pagefault(run, vcpu, kvmppc_get_pc(vcpu), exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +10001145 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001146 vcpu->stat.sp_instruc++;
1147 } else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
1148 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
1149 /*
1150 * XXX If we do the dcbz hack we use the NX bit to flush&patch the page,
1151 * so we can't use the NX bit inside the guest. Let's cross our fingers,
1152 * that no guest that needs the dcbz hack does NX.
1153 */
1154 kvmppc_mmu_pte_flush(vcpu, kvmppc_get_pc(vcpu), ~0xFFFUL);
1155 r = RESUME_GUEST;
1156 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001157 u64 msr = kvmppc_get_msr(vcpu);
1158 msr |= shadow_srr1 & 0x58000000;
1159 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001160 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1161 r = RESUME_GUEST;
1162 }
1163 break;
Alexander Graf468a12c2011-12-09 14:44:13 +01001164 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001165 case BOOK3S_INTERRUPT_DATA_STORAGE:
1166 {
1167 ulong dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001168 u32 fault_dsisr = vcpu->arch.fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001169 vcpu->stat.pf_storage++;
1170
1171#ifdef CONFIG_PPC_BOOK3S_32
1172 /* We set segments as unused segments when invalidating them. So
1173 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001174 {
1175 struct kvmppc_book3s_shadow_vcpu *svcpu;
1176 u32 sr;
1177
1178 svcpu = svcpu_get(vcpu);
1179 sr = svcpu->sr[dar >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +01001180 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001181 if (sr == SR_INVALID) {
1182 kvmppc_mmu_map_segment(vcpu, dar);
1183 r = RESUME_GUEST;
1184 break;
1185 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001186 }
1187#endif
1188
Paul Mackerras93b159b2013-09-20 14:52:51 +10001189 /*
1190 * We need to handle missing shadow PTEs, and
1191 * protection faults due to us mapping a page read-only
1192 * when the guest thinks it is writable.
1193 */
1194 if (fault_dsisr & (DSISR_NOHPTE | DSISR_PROTFAULT)) {
1195 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001196 r = kvmppc_handle_pagefault(run, vcpu, dar, exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +10001197 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001198 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001199 kvmppc_set_dar(vcpu, dar);
1200 kvmppc_set_dsisr(vcpu, fault_dsisr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001201 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1202 r = RESUME_GUEST;
1203 }
1204 break;
1205 }
1206 case BOOK3S_INTERRUPT_DATA_SEGMENT:
1207 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_fault_dar(vcpu)) < 0) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001208 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001209 kvmppc_book3s_queue_irqprio(vcpu,
1210 BOOK3S_INTERRUPT_DATA_SEGMENT);
1211 }
1212 r = RESUME_GUEST;
1213 break;
1214 case BOOK3S_INTERRUPT_INST_SEGMENT:
1215 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu)) < 0) {
1216 kvmppc_book3s_queue_irqprio(vcpu,
1217 BOOK3S_INTERRUPT_INST_SEGMENT);
1218 }
1219 r = RESUME_GUEST;
1220 break;
1221 /* We're good on these - the host merely wanted to get our attention */
1222 case BOOK3S_INTERRUPT_DECREMENTER:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001223 case BOOK3S_INTERRUPT_HV_DECREMENTER:
Paul Mackerras40688902014-01-08 21:25:36 +11001224 case BOOK3S_INTERRUPT_DOORBELL:
Alexander Graf568fccc2014-06-16 16:37:38 +02001225 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001226 vcpu->stat.dec_exits++;
1227 r = RESUME_GUEST;
1228 break;
1229 case BOOK3S_INTERRUPT_EXTERNAL:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001230 case BOOK3S_INTERRUPT_EXTERNAL_LEVEL:
1231 case BOOK3S_INTERRUPT_EXTERNAL_HV:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001232 vcpu->stat.ext_intr_exits++;
1233 r = RESUME_GUEST;
1234 break;
1235 case BOOK3S_INTERRUPT_PERFMON:
1236 r = RESUME_GUEST;
1237 break;
1238 case BOOK3S_INTERRUPT_PROGRAM:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001239 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Thomas Huthfcd4f3c2017-01-25 13:27:22 +01001240 r = kvmppc_exit_pr_progint(run, vcpu, exit_nr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001241 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001242 case BOOK3S_INTERRUPT_SYSCALL:
Mihai Caraman51f04722014-07-23 19:06:21 +03001243 {
1244 u32 last_sc;
1245 int emul;
1246
1247 /* Get last sc for papr */
1248 if (vcpu->arch.papr_enabled) {
1249 /* The sc instuction points SRR0 to the next inst */
1250 emul = kvmppc_get_last_inst(vcpu, INST_SC, &last_sc);
1251 if (emul != EMULATE_DONE) {
1252 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) - 4);
1253 r = RESUME_GUEST;
1254 break;
1255 }
1256 }
1257
Alexander Grafa668f2b2011-08-08 17:26:24 +02001258 if (vcpu->arch.papr_enabled &&
Mihai Caraman51f04722014-07-23 19:06:21 +03001259 (last_sc == 0x44000022) &&
Alexander Graf5deb8e72014-04-24 13:46:24 +02001260 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
Alexander Grafa668f2b2011-08-08 17:26:24 +02001261 /* SC 1 papr hypercalls */
1262 ulong cmd = kvmppc_get_gpr(vcpu, 3);
1263 int i;
1264
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301265#ifdef CONFIG_PPC_BOOK3S_64
Alexander Grafa668f2b2011-08-08 17:26:24 +02001266 if (kvmppc_h_pr(vcpu, cmd) == EMULATE_DONE) {
1267 r = RESUME_GUEST;
1268 break;
1269 }
Andreas Schwab96f38d72011-11-08 07:17:39 +00001270#endif
Alexander Grafa668f2b2011-08-08 17:26:24 +02001271
1272 run->papr_hcall.nr = cmd;
1273 for (i = 0; i < 9; ++i) {
1274 ulong gpr = kvmppc_get_gpr(vcpu, 4 + i);
1275 run->papr_hcall.args[i] = gpr;
1276 }
1277 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1278 vcpu->arch.hcall_needed = 1;
1279 r = RESUME_HOST;
1280 } else if (vcpu->arch.osi_enabled &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001281 (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) &&
1282 (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) {
1283 /* MOL hypercalls */
1284 u64 *gprs = run->osi.gprs;
1285 int i;
1286
1287 run->exit_reason = KVM_EXIT_OSI;
1288 for (i = 0; i < 32; i++)
1289 gprs[i] = kvmppc_get_gpr(vcpu, i);
1290 vcpu->arch.osi_needed = 1;
1291 r = RESUME_HOST_NV;
Alexander Graf5deb8e72014-04-24 13:46:24 +02001292 } else if (!(kvmppc_get_msr(vcpu) & MSR_PR) &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001293 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
1294 /* KVM PV hypercalls */
1295 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
1296 r = RESUME_GUEST;
1297 } else {
1298 /* Guest syscalls */
1299 vcpu->stat.syscall_exits++;
1300 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1301 r = RESUME_GUEST;
1302 }
1303 break;
Mihai Caraman51f04722014-07-23 19:06:21 +03001304 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001305 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1306 case BOOK3S_INTERRUPT_ALTIVEC:
1307 case BOOK3S_INTERRUPT_VSX:
1308 {
1309 int ext_msr = 0;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001310 int emul;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001311 u32 last_inst;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001312
Mihai Caraman9a26af62014-07-23 19:06:20 +03001313 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE) {
1314 /* Do paired single instruction emulation */
Mihai Caraman51f04722014-07-23 19:06:21 +03001315 emul = kvmppc_get_last_inst(vcpu, INST_GENERIC,
1316 &last_inst);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001317 if (emul == EMULATE_DONE)
Thomas Huthfcd4f3c2017-01-25 13:27:22 +01001318 r = kvmppc_exit_pr_progint(run, vcpu, exit_nr);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001319 else
1320 r = RESUME_GUEST;
1321
1322 break;
1323 }
1324
1325 /* Enable external provider */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001326 switch (exit_nr) {
Mihai Caraman9a26af62014-07-23 19:06:20 +03001327 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1328 ext_msr = MSR_FP;
1329 break;
1330
1331 case BOOK3S_INTERRUPT_ALTIVEC:
1332 ext_msr = MSR_VEC;
1333 break;
1334
1335 case BOOK3S_INTERRUPT_VSX:
1336 ext_msr = MSR_VSX;
1337 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001338 }
1339
Mihai Caraman9a26af62014-07-23 19:06:20 +03001340 r = kvmppc_handle_ext(vcpu, exit_nr, ext_msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001341 break;
1342 }
1343 case BOOK3S_INTERRUPT_ALIGNMENT:
Mihai Caraman9a26af62014-07-23 19:06:20 +03001344 {
Mihai Caraman51f04722014-07-23 19:06:21 +03001345 u32 last_inst;
1346 int emul = kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001347
1348 if (emul == EMULATE_DONE) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001349 u32 dsisr;
1350 u64 dar;
1351
1352 dsisr = kvmppc_alignment_dsisr(vcpu, last_inst);
1353 dar = kvmppc_alignment_dar(vcpu, last_inst);
1354
1355 kvmppc_set_dsisr(vcpu, dsisr);
1356 kvmppc_set_dar(vcpu, dar);
1357
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001358 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1359 }
1360 r = RESUME_GUEST;
1361 break;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001362 }
Alexander Graf616dff82014-04-29 16:48:44 +02001363#ifdef CONFIG_PPC_BOOK3S_64
1364 case BOOK3S_INTERRUPT_FAC_UNAVAIL:
Simon Guo19c585e2018-05-23 15:02:02 +08001365 r = kvmppc_handle_fac(vcpu, vcpu->arch.shadow_fscr >> 56);
Alexander Graf616dff82014-04-29 16:48:44 +02001366 break;
1367#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001368 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001369 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1370 r = RESUME_GUEST;
1371 break;
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001372 case BOOK3S_INTERRUPT_TRACE:
1373 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
1374 run->exit_reason = KVM_EXIT_DEBUG;
1375 r = RESUME_HOST;
1376 } else {
1377 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1378 r = RESUME_GUEST;
1379 }
1380 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001381 default:
Alexander Graf468a12c2011-12-09 14:44:13 +01001382 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001383 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001384 /* Ugh - bork here! What did we get? */
1385 printk(KERN_EMERG "exit_nr=0x%x | pc=0x%lx | msr=0x%lx\n",
Alexander Graf468a12c2011-12-09 14:44:13 +01001386 exit_nr, kvmppc_get_pc(vcpu), shadow_srr1);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001387 r = RESUME_HOST;
1388 BUG();
1389 break;
1390 }
Alexander Graf468a12c2011-12-09 14:44:13 +01001391 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001392
1393 if (!(r & RESUME_HOST)) {
1394 /* To avoid clobbering exit_reason, only check for signals if
1395 * we aren't already exiting to userspace for some other
1396 * reason. */
Alexander Grafe371f712011-12-19 13:36:55 +01001397
1398 /*
1399 * Interrupts could be timers for the guest which we have to
1400 * inject again, so let's postpone them until we're in the guest
1401 * and if we really did time things so badly, then we just exit
1402 * again due to a host external interrupt.
1403 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001404 s = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001405 if (s <= 0)
Alexander Graf7ee78852012-08-13 12:44:41 +02001406 r = s;
Scott Wood6c85f522014-01-09 19:18:40 -06001407 else {
1408 /* interrupts now hard-disabled */
Scott Wood5f1c2482013-07-10 17:47:39 -05001409 kvmppc_fix_ee_before_entry();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001410 }
Scott Wood6c85f522014-01-09 19:18:40 -06001411
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +10001412 kvmppc_handle_lost_ext(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001413 }
1414
1415 trace_kvm_book3s_reenter(r, vcpu);
1416
1417 return r;
1418}
1419
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301420static int kvm_arch_vcpu_ioctl_get_sregs_pr(struct kvm_vcpu *vcpu,
1421 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001422{
1423 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1424 int i;
1425
1426 sregs->pvr = vcpu->arch.pvr;
1427
1428 sregs->u.s.sdr1 = to_book3s(vcpu)->sdr1;
1429 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1430 for (i = 0; i < 64; i++) {
1431 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige | i;
1432 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1433 }
1434 } else {
1435 for (i = 0; i < 16; i++)
Alexander Graf5deb8e72014-04-24 13:46:24 +02001436 sregs->u.s.ppc32.sr[i] = kvmppc_get_sr(vcpu, i);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001437
1438 for (i = 0; i < 8; i++) {
1439 sregs->u.s.ppc32.ibat[i] = vcpu3s->ibat[i].raw;
1440 sregs->u.s.ppc32.dbat[i] = vcpu3s->dbat[i].raw;
1441 }
1442 }
1443
1444 return 0;
1445}
1446
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301447static int kvm_arch_vcpu_ioctl_set_sregs_pr(struct kvm_vcpu *vcpu,
1448 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001449{
1450 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1451 int i;
1452
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301453 kvmppc_set_pvr_pr(vcpu, sregs->pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001454
1455 vcpu3s->sdr1 = sregs->u.s.sdr1;
Greg Kurzf4093ee2017-10-16 12:29:44 +02001456#ifdef CONFIG_PPC_BOOK3S_64
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001457 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
Greg Kurzf4093ee2017-10-16 12:29:44 +02001458 /* Flush all SLB entries */
1459 vcpu->arch.mmu.slbmte(vcpu, 0, 0);
1460 vcpu->arch.mmu.slbia(vcpu);
1461
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001462 for (i = 0; i < 64; i++) {
Greg Kurzf4093ee2017-10-16 12:29:44 +02001463 u64 rb = sregs->u.s.ppc64.slb[i].slbe;
1464 u64 rs = sregs->u.s.ppc64.slb[i].slbv;
1465
1466 if (rb & SLB_ESID_V)
1467 vcpu->arch.mmu.slbmte(vcpu, rs, rb);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001468 }
Greg Kurzf4093ee2017-10-16 12:29:44 +02001469 } else
1470#endif
1471 {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001472 for (i = 0; i < 16; i++) {
1473 vcpu->arch.mmu.mtsrin(vcpu, i, sregs->u.s.ppc32.sr[i]);
1474 }
1475 for (i = 0; i < 8; i++) {
1476 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), false,
1477 (u32)sregs->u.s.ppc32.ibat[i]);
1478 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), true,
1479 (u32)(sregs->u.s.ppc32.ibat[i] >> 32));
1480 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), false,
1481 (u32)sregs->u.s.ppc32.dbat[i]);
1482 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), true,
1483 (u32)(sregs->u.s.ppc32.dbat[i] >> 32));
1484 }
1485 }
1486
1487 /* Flush the MMU after messing with the segments */
1488 kvmppc_mmu_pte_flush(vcpu, 0, 0);
1489
1490 return 0;
1491}
1492
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301493static int kvmppc_get_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1494 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001495{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001496 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001497
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001498 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301499 case KVM_REG_PPC_DEBUG_INST:
1500 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1501 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001502 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001503 *val = get_reg_val(id, to_book3s(vcpu)->hior);
Paul Mackerras31f34382011-12-12 12:26:50 +00001504 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001505 case KVM_REG_PPC_VTB:
1506 *val = get_reg_val(id, to_book3s(vcpu)->vtb);
1507 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301508 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001509 case KVM_REG_PPC_LPCR_64:
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301510 /*
1511 * We are only interested in the LPCR_ILE bit
1512 */
1513 if (vcpu->arch.intr_msr & MSR_LE)
1514 *val = get_reg_val(id, LPCR_ILE);
1515 else
1516 *val = get_reg_val(id, 0);
1517 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001518 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001519 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001520 break;
1521 }
1522
1523 return r;
1524}
1525
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301526static void kvmppc_set_lpcr_pr(struct kvm_vcpu *vcpu, u64 new_lpcr)
1527{
1528 if (new_lpcr & LPCR_ILE)
1529 vcpu->arch.intr_msr |= MSR_LE;
1530 else
1531 vcpu->arch.intr_msr &= ~MSR_LE;
1532}
1533
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301534static int kvmppc_set_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1535 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001536{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001537 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001538
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001539 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001540 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001541 to_book3s(vcpu)->hior = set_reg_val(id, *val);
1542 to_book3s(vcpu)->hior_explicit = true;
Paul Mackerras31f34382011-12-12 12:26:50 +00001543 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001544 case KVM_REG_PPC_VTB:
1545 to_book3s(vcpu)->vtb = set_reg_val(id, *val);
1546 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301547 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001548 case KVM_REG_PPC_LPCR_64:
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301549 kvmppc_set_lpcr_pr(vcpu, set_reg_val(id, *val));
1550 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001551 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001552 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001553 break;
1554 }
1555
1556 return r;
1557}
1558
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301559static struct kvm_vcpu *kvmppc_core_vcpu_create_pr(struct kvm *kvm,
1560 unsigned int id)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001561{
1562 struct kvmppc_vcpu_book3s *vcpu_book3s;
1563 struct kvm_vcpu *vcpu;
1564 int err = -ENOMEM;
1565 unsigned long p;
1566
Paul Mackerras3ff95502013-09-20 14:52:49 +10001567 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
1568 if (!vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001569 goto out;
1570
Paul Mackerras3ff95502013-09-20 14:52:49 +10001571 vcpu_book3s = vzalloc(sizeof(struct kvmppc_vcpu_book3s));
1572 if (!vcpu_book3s)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001573 goto free_vcpu;
Paul Mackerras3ff95502013-09-20 14:52:49 +10001574 vcpu->arch.book3s = vcpu_book3s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001575
Alexander Grafab784752014-04-06 23:31:48 +02001576#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001577 vcpu->arch.shadow_vcpu =
1578 kzalloc(sizeof(*vcpu->arch.shadow_vcpu), GFP_KERNEL);
1579 if (!vcpu->arch.shadow_vcpu)
1580 goto free_vcpu3s;
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001581#endif
Paul Mackerras3ff95502013-09-20 14:52:49 +10001582
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001583 err = kvm_vcpu_init(vcpu, kvm, id);
1584 if (err)
1585 goto free_shadow_vcpu;
1586
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001587 err = -ENOMEM;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001588 p = __get_free_page(GFP_KERNEL|__GFP_ZERO);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001589 if (!p)
1590 goto uninit_vcpu;
Alexander Graf89b68c92014-07-13 16:37:12 +02001591 vcpu->arch.shared = (void *)p;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001592#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf5deb8e72014-04-24 13:46:24 +02001593 /* Always start the shared struct in native endian mode */
1594#ifdef __BIG_ENDIAN__
1595 vcpu->arch.shared_big_endian = true;
1596#else
1597 vcpu->arch.shared_big_endian = false;
1598#endif
1599
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001600 /*
1601 * Default to the same as the host if we're on sufficiently
1602 * recent machine that we have 1TB segments;
1603 * otherwise default to PPC970FX.
1604 */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001605 vcpu->arch.pvr = 0x3C0301;
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001606 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1607 vcpu->arch.pvr = mfspr(SPRN_PVR);
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301608 vcpu->arch.intr_msr = MSR_SF;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001609#else
1610 /* default to book3s_32 (750) */
1611 vcpu->arch.pvr = 0x84202;
1612#endif
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301613 kvmppc_set_pvr_pr(vcpu, vcpu->arch.pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001614 vcpu->arch.slb_nr = 64;
1615
Alexander Graf94810ba2014-04-24 13:04:01 +02001616 vcpu->arch.shadow_msr = MSR_USER64 & ~MSR_LE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001617
1618 err = kvmppc_mmu_init(vcpu);
1619 if (err < 0)
1620 goto uninit_vcpu;
1621
1622 return vcpu;
1623
1624uninit_vcpu:
1625 kvm_vcpu_uninit(vcpu);
1626free_shadow_vcpu:
Alexander Grafab784752014-04-06 23:31:48 +02001627#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001628 kfree(vcpu->arch.shadow_vcpu);
1629free_vcpu3s:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001630#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001631 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001632free_vcpu:
1633 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001634out:
1635 return ERR_PTR(err);
1636}
1637
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301638static void kvmppc_core_vcpu_free_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001639{
1640 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
1641
1642 free_page((unsigned long)vcpu->arch.shared & PAGE_MASK);
1643 kvm_vcpu_uninit(vcpu);
Alexander Grafab784752014-04-06 23:31:48 +02001644#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001645 kfree(vcpu->arch.shadow_vcpu);
1646#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001647 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001648 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001649}
1650
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301651static int kvmppc_vcpu_run_pr(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001652{
1653 int ret;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001654#ifdef CONFIG_ALTIVEC
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001655 unsigned long uninitialized_var(vrsave);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001656#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001657
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001658 /* Check if we can run the vcpu at all */
1659 if (!vcpu->arch.sane) {
1660 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
Alexander Graf7d827142011-12-09 15:46:21 +01001661 ret = -EINVAL;
1662 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001663 }
1664
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001665 kvmppc_setup_debug(vcpu);
1666
Alexander Grafe371f712011-12-19 13:36:55 +01001667 /*
1668 * Interrupts could be timers for the guest which we have to inject
1669 * again, so let's postpone them until we're in the guest and if we
1670 * really did time things so badly, then we just exit again due to
1671 * a host external interrupt.
1672 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001673 ret = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001674 if (ret <= 0)
Alexander Graf7d827142011-12-09 15:46:21 +01001675 goto out;
Scott Wood6c85f522014-01-09 19:18:40 -06001676 /* interrupts now hard-disabled */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001677
Anton Blanchardc2085052015-10-29 11:44:08 +11001678 /* Save FPU, Altivec and VSX state */
1679 giveup_all(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001680
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001681 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +02001682 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001683 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
1684
Scott Wood5f1c2482013-07-10 17:47:39 -05001685 kvmppc_fix_ee_before_entry();
Paul Mackerrasdf6909e52011-06-29 00:19:50 +00001686
1687 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
1688
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001689 kvmppc_clear_debug(vcpu);
1690
Paolo Bonzini6edaa532016-06-15 15:18:26 +02001691 /* No need for guest_exit. It's done in handle_exit.
Alexander Graf24afa372012-08-12 12:42:30 +02001692 We also get here with interrupts enabled. */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001693
Paul Mackerras28c483b2012-11-04 18:16:46 +00001694 /* Make sure we save the guest FPU/Altivec/VSX state */
1695 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
1696
Alexander Grafe14e7a12014-04-22 12:26:58 +02001697 /* Make sure we save the guest TAR/EBB/DSCR state */
1698 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
1699
Alexander Graf7d827142011-12-09 15:46:21 +01001700out:
Alexander Graf0652eaa2012-08-12 11:34:21 +02001701 vcpu->mode = OUTSIDE_GUEST_MODE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001702 return ret;
1703}
1704
Paul Mackerras82ed3612011-12-15 02:03:22 +00001705/*
1706 * Get (and clear) the dirty memory log for a memory slot.
1707 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301708static int kvm_vm_ioctl_get_dirty_log_pr(struct kvm *kvm,
1709 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00001710{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001711 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00001712 struct kvm_memory_slot *memslot;
1713 struct kvm_vcpu *vcpu;
1714 ulong ga, ga_end;
1715 int is_dirty = 0;
1716 int r;
1717 unsigned long n;
1718
1719 mutex_lock(&kvm->slots_lock);
1720
1721 r = kvm_get_dirty_log(kvm, log, &is_dirty);
1722 if (r)
1723 goto out;
1724
1725 /* If nothing is dirty, don't bother messing with page tables. */
1726 if (is_dirty) {
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001727 slots = kvm_memslots(kvm);
1728 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00001729
1730 ga = memslot->base_gfn << PAGE_SHIFT;
1731 ga_end = ga + (memslot->npages << PAGE_SHIFT);
1732
1733 kvm_for_each_vcpu(n, vcpu, kvm)
1734 kvmppc_mmu_pte_pflush(vcpu, ga, ga_end);
1735
1736 n = kvm_dirty_bitmap_bytes(memslot);
1737 memset(memslot->dirty_bitmap, 0, n);
1738 }
1739
1740 r = 0;
1741out:
1742 mutex_unlock(&kvm->slots_lock);
1743 return r;
1744}
1745
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301746static void kvmppc_core_flush_memslot_pr(struct kvm *kvm,
1747 struct kvm_memory_slot *memslot)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001748{
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301749 return;
1750}
1751
1752static int kvmppc_core_prepare_memory_region_pr(struct kvm *kvm,
1753 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001754 const struct kvm_userspace_memory_region *mem)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301755{
1756 return 0;
1757}
1758
1759static void kvmppc_core_commit_memory_region_pr(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001760 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001761 const struct kvm_memory_slot *old,
1762 const struct kvm_memory_slot *new)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301763{
1764 return;
1765}
1766
1767static void kvmppc_core_free_memslot_pr(struct kvm_memory_slot *free,
1768 struct kvm_memory_slot *dont)
1769{
1770 return;
1771}
1772
1773static int kvmppc_core_create_memslot_pr(struct kvm_memory_slot *slot,
1774 unsigned long npages)
1775{
1776 return 0;
1777}
1778
1779
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001780#ifdef CONFIG_PPC64
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301781static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1782 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001783{
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001784 long int i;
1785 struct kvm_vcpu *vcpu;
1786
1787 info->flags = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001788
1789 /* SLB is always 64 entries */
1790 info->slb_size = 64;
1791
1792 /* Standard 4k base page size segment */
1793 info->sps[0].page_shift = 12;
1794 info->sps[0].slb_enc = 0;
1795 info->sps[0].enc[0].page_shift = 12;
1796 info->sps[0].enc[0].pte_enc = 0;
1797
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001798 /*
1799 * 64k large page size.
1800 * We only want to put this in if the CPUs we're emulating
1801 * support it, but unfortunately we don't have a vcpu easily
1802 * to hand here to test. Just pick the first vcpu, and if
1803 * that doesn't exist yet, report the minimum capability,
1804 * i.e., no 64k pages.
1805 * 1T segment support goes along with 64k pages.
1806 */
1807 i = 1;
1808 vcpu = kvm_get_vcpu(kvm, 0);
1809 if (vcpu && (vcpu->arch.hflags & BOOK3S_HFLAG_MULTI_PGSIZE)) {
1810 info->flags = KVM_PPC_1T_SEGMENTS;
1811 info->sps[i].page_shift = 16;
1812 info->sps[i].slb_enc = SLB_VSID_L | SLB_VSID_LP_01;
1813 info->sps[i].enc[0].page_shift = 16;
1814 info->sps[i].enc[0].pte_enc = 1;
1815 ++i;
1816 }
1817
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001818 /* Standard 16M large page size segment */
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001819 info->sps[i].page_shift = 24;
1820 info->sps[i].slb_enc = SLB_VSID_L;
1821 info->sps[i].enc[0].page_shift = 24;
1822 info->sps[i].enc[0].pte_enc = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001823
1824 return 0;
1825}
Paul Mackerras9617a0b2018-05-30 15:47:17 +10001826
1827static int kvm_configure_mmu_pr(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
1828{
1829 if (!cpu_has_feature(CPU_FTR_ARCH_300))
1830 return -ENODEV;
1831 /* Require flags and process table base and size to all be zero. */
1832 if (cfg->flags || cfg->process_table)
1833 return -EINVAL;
1834 return 0;
1835}
1836
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301837#else
1838static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1839 struct kvm_ppc_smmu_info *info)
1840{
1841 /* We should not get called */
1842 BUG();
1843}
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001844#endif /* CONFIG_PPC64 */
1845
Ian Munsiea413f472012-12-03 18:36:13 +00001846static unsigned int kvm_global_user_count = 0;
1847static DEFINE_SPINLOCK(kvm_global_user_count_lock);
1848
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301849static int kvmppc_core_init_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001850{
Paul Mackerras9308ab82013-09-20 14:52:48 +10001851 mutex_init(&kvm->arch.hpt_mutex);
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001852
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001853#ifdef CONFIG_PPC_BOOK3S_64
1854 /* Start out with the default set of hcalls enabled */
1855 kvmppc_pr_init_default_hcalls(kvm);
1856#endif
1857
Ian Munsiea413f472012-12-03 18:36:13 +00001858 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1859 spin_lock(&kvm_global_user_count_lock);
1860 if (++kvm_global_user_count == 1)
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +10001861 pseries_disable_reloc_on_exc();
Ian Munsiea413f472012-12-03 18:36:13 +00001862 spin_unlock(&kvm_global_user_count_lock);
1863 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001864 return 0;
1865}
1866
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301867static void kvmppc_core_destroy_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001868{
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001869#ifdef CONFIG_PPC64
1870 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
1871#endif
Ian Munsiea413f472012-12-03 18:36:13 +00001872
1873 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1874 spin_lock(&kvm_global_user_count_lock);
1875 BUG_ON(kvm_global_user_count == 0);
1876 if (--kvm_global_user_count == 0)
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +10001877 pseries_enable_reloc_on_exc();
Ian Munsiea413f472012-12-03 18:36:13 +00001878 spin_unlock(&kvm_global_user_count_lock);
1879 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001880}
1881
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301882static int kvmppc_core_check_processor_compat_pr(void)
1883{
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10001884 /*
Paul Mackerrasec531d02018-05-18 21:49:28 +10001885 * PR KVM can work on POWER9 inside a guest partition
1886 * running in HPT mode. It can't work if we are using
1887 * radix translation (because radix provides no way for
1888 * a process to have unique translations in quadrant 3)
1889 * or in a bare-metal HPT-mode host (because POWER9
1890 * uses a modified HPTE format which the PR KVM code
1891 * has not been adapted to use).
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10001892 */
Paul Mackerrasec531d02018-05-18 21:49:28 +10001893 if (cpu_has_feature(CPU_FTR_ARCH_300) &&
1894 (radix_enabled() || cpu_has_feature(CPU_FTR_HVMODE)))
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10001895 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301896 return 0;
1897}
1898
1899static long kvm_arch_vm_ioctl_pr(struct file *filp,
1900 unsigned int ioctl, unsigned long arg)
1901{
1902 return -ENOTTY;
1903}
1904
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301905static struct kvmppc_ops kvm_ops_pr = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301906 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_pr,
1907 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_pr,
1908 .get_one_reg = kvmppc_get_one_reg_pr,
1909 .set_one_reg = kvmppc_set_one_reg_pr,
1910 .vcpu_load = kvmppc_core_vcpu_load_pr,
1911 .vcpu_put = kvmppc_core_vcpu_put_pr,
1912 .set_msr = kvmppc_set_msr_pr,
1913 .vcpu_run = kvmppc_vcpu_run_pr,
1914 .vcpu_create = kvmppc_core_vcpu_create_pr,
1915 .vcpu_free = kvmppc_core_vcpu_free_pr,
1916 .check_requests = kvmppc_core_check_requests_pr,
1917 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_pr,
1918 .flush_memslot = kvmppc_core_flush_memslot_pr,
1919 .prepare_memory_region = kvmppc_core_prepare_memory_region_pr,
1920 .commit_memory_region = kvmppc_core_commit_memory_region_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301921 .unmap_hva_range = kvm_unmap_hva_range_pr,
1922 .age_hva = kvm_age_hva_pr,
1923 .test_age_hva = kvm_test_age_hva_pr,
1924 .set_spte_hva = kvm_set_spte_hva_pr,
1925 .mmu_destroy = kvmppc_mmu_destroy_pr,
1926 .free_memslot = kvmppc_core_free_memslot_pr,
1927 .create_memslot = kvmppc_core_create_memslot_pr,
1928 .init_vm = kvmppc_core_init_vm_pr,
1929 .destroy_vm = kvmppc_core_destroy_vm_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301930 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_pr,
1931 .emulate_op = kvmppc_core_emulate_op_pr,
1932 .emulate_mtspr = kvmppc_core_emulate_mtspr_pr,
1933 .emulate_mfspr = kvmppc_core_emulate_mfspr_pr,
1934 .fast_vcpu_kick = kvm_vcpu_kick,
1935 .arch_vm_ioctl = kvm_arch_vm_ioctl_pr,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001936#ifdef CONFIG_PPC_BOOK3S_64
1937 .hcall_implemented = kvmppc_hcall_impl_pr,
Paul Mackerras9617a0b2018-05-30 15:47:17 +10001938 .configure_mmu = kvm_configure_mmu_pr,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001939#endif
Simon Guo2e6baa42018-05-21 13:24:22 +08001940 .giveup_ext = kvmppc_giveup_ext,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301941};
1942
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301943
1944int kvmppc_book3s_init_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001945{
1946 int r;
1947
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301948 r = kvmppc_core_check_processor_compat_pr();
1949 if (r < 0)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001950 return r;
1951
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301952 kvm_ops_pr.owner = THIS_MODULE;
1953 kvmppc_pr_ops = &kvm_ops_pr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001954
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301955 r = kvmppc_mmu_hpte_sysinit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001956 return r;
1957}
1958
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301959void kvmppc_book3s_exit_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001960{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301961 kvmppc_pr_ops = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001962 kvmppc_mmu_hpte_sysexit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001963}
1964
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301965/*
1966 * We only support separate modules for book3s 64
1967 */
1968#ifdef CONFIG_PPC_BOOK3S_64
1969
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301970module_init(kvmppc_book3s_init_pr);
1971module_exit(kvmppc_book3s_exit_pr);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301972
1973MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01001974MODULE_ALIAS_MISCDEV(KVM_MINOR);
1975MODULE_ALIAS("devname:kvm");
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301976#endif