blob: 7deaeeb14b9358d8a4e6f1107cd42bba0605a264 [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>
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000045
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053046#include "book3s.h"
Aneesh Kumar K.V72c12532013-10-07 22:17:57 +053047
48#define CREATE_TRACE_POINTS
49#include "trace_pr.h"
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000050
51/* #define EXIT_DEBUG */
52/* #define DEBUG_EXT */
53
54static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
55 ulong msr);
Alexander Graf616dff82014-04-29 16:48:44 +020056static void kvmppc_giveup_fac(struct kvm_vcpu *vcpu, ulong fac);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000057
58/* Some compatibility defines */
59#ifdef CONFIG_PPC_BOOK3S_32
60#define MSR_USER32 MSR_USER
61#define MSR_USER64 MSR_USER
62#define HW_PAGE_SIZE PAGE_SIZE
Alexey Kardashevskiy6c7d47c2017-11-22 14:42:21 +110063#define HPTE_R_M _PAGE_COHERENT
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000064#endif
65
Alexander Grafc01e3f62014-07-11 02:58:58 +020066static bool kvmppc_is_split_real(struct kvm_vcpu *vcpu)
67{
68 ulong msr = kvmppc_get_msr(vcpu);
69 return (msr & (MSR_IR|MSR_DR)) == MSR_DR;
70}
71
72static void kvmppc_fixup_split_real(struct kvm_vcpu *vcpu)
73{
74 ulong msr = kvmppc_get_msr(vcpu);
75 ulong pc = kvmppc_get_pc(vcpu);
76
77 /* We are in DR only split real mode */
78 if ((msr & (MSR_IR|MSR_DR)) != MSR_DR)
79 return;
80
81 /* We have not fixed up the guest already */
82 if (vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK)
83 return;
84
85 /* The code is in fixupable address space */
86 if (pc & SPLIT_HACK_MASK)
87 return;
88
89 vcpu->arch.hflags |= BOOK3S_HFLAG_SPLIT_HACK;
90 kvmppc_set_pc(vcpu, pc | SPLIT_HACK_OFFS);
91}
92
93void kvmppc_unfixup_split_real(struct kvm_vcpu *vcpu);
94
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053095static void kvmppc_core_vcpu_load_pr(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000096{
97#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010098 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
99 memcpy(svcpu->slb, to_book3s(vcpu)->slb_shadow, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +0100100 svcpu->slb_max = to_book3s(vcpu)->slb_shadow_max;
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100101 svcpu->in_use = 0;
Alexander Graf468a12c2011-12-09 14:44:13 +0100102 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000103#endif
Alexander Graffb4188b2014-06-09 01:16:32 +0200104
105 /* Disable AIL if supported */
106 if (cpu_has_feature(CPU_FTR_HVMODE) &&
107 cpu_has_feature(CPU_FTR_ARCH_207S))
108 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) & ~LPCR_AIL);
109
Paul Mackerrasa47d72f2012-09-20 19:35:51 +0000110 vcpu->cpu = smp_processor_id();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000111#ifdef CONFIG_PPC_BOOK3S_32
Paul Mackerras3ff95502013-09-20 14:52:49 +1000112 current->thread.kvm_shadow_vcpu = vcpu->arch.shadow_vcpu;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000113#endif
Alexander Grafc01e3f62014-07-11 02:58:58 +0200114
115 if (kvmppc_is_split_real(vcpu))
116 kvmppc_fixup_split_real(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000117}
118
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530119static void kvmppc_core_vcpu_put_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000120{
121#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +0100122 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100123 if (svcpu->in_use) {
124 kvmppc_copy_from_svcpu(vcpu, svcpu);
125 }
Alexander Graf468a12c2011-12-09 14:44:13 +0100126 memcpy(to_book3s(vcpu)->slb_shadow, svcpu->slb, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +0100127 to_book3s(vcpu)->slb_shadow_max = svcpu->slb_max;
128 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000129#endif
130
Alexander Grafc01e3f62014-07-11 02:58:58 +0200131 if (kvmppc_is_split_real(vcpu))
132 kvmppc_unfixup_split_real(vcpu);
133
Paul Mackerras28c483b2012-11-04 18:16:46 +0000134 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
Alexander Grafe14e7a12014-04-22 12:26:58 +0200135 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
Alexander Graffb4188b2014-06-09 01:16:32 +0200136
137 /* Enable AIL if supported */
138 if (cpu_has_feature(CPU_FTR_HVMODE) &&
139 cpu_has_feature(CPU_FTR_ARCH_207S))
140 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) | LPCR_AIL_3);
141
Paul Mackerrasa47d72f2012-09-20 19:35:51 +0000142 vcpu->cpu = -1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000143}
144
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000145/* Copy data needed by real-mode code from vcpu to shadow vcpu */
146void kvmppc_copy_to_svcpu(struct kvmppc_book3s_shadow_vcpu *svcpu,
147 struct kvm_vcpu *vcpu)
148{
149 svcpu->gpr[0] = vcpu->arch.gpr[0];
150 svcpu->gpr[1] = vcpu->arch.gpr[1];
151 svcpu->gpr[2] = vcpu->arch.gpr[2];
152 svcpu->gpr[3] = vcpu->arch.gpr[3];
153 svcpu->gpr[4] = vcpu->arch.gpr[4];
154 svcpu->gpr[5] = vcpu->arch.gpr[5];
155 svcpu->gpr[6] = vcpu->arch.gpr[6];
156 svcpu->gpr[7] = vcpu->arch.gpr[7];
157 svcpu->gpr[8] = vcpu->arch.gpr[8];
158 svcpu->gpr[9] = vcpu->arch.gpr[9];
159 svcpu->gpr[10] = vcpu->arch.gpr[10];
160 svcpu->gpr[11] = vcpu->arch.gpr[11];
161 svcpu->gpr[12] = vcpu->arch.gpr[12];
162 svcpu->gpr[13] = vcpu->arch.gpr[13];
163 svcpu->cr = vcpu->arch.cr;
164 svcpu->xer = vcpu->arch.xer;
165 svcpu->ctr = vcpu->arch.ctr;
166 svcpu->lr = vcpu->arch.lr;
167 svcpu->pc = vcpu->arch.pc;
Alexander Graf616dff82014-04-29 16:48:44 +0200168#ifdef CONFIG_PPC_BOOK3S_64
169 svcpu->shadow_fscr = vcpu->arch.shadow_fscr;
170#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530171 /*
172 * Now also save the current time base value. We use this
173 * to find the guest purr and spurr value.
174 */
175 vcpu->arch.entry_tb = get_tb();
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530176 vcpu->arch.entry_vtb = get_vtb();
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530177 if (cpu_has_feature(CPU_FTR_ARCH_207S))
178 vcpu->arch.entry_ic = mfspr(SPRN_IC);
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100179 svcpu->in_use = true;
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000180}
181
182/* Copy data touched by real-mode code from shadow vcpu back to vcpu */
183void kvmppc_copy_from_svcpu(struct kvm_vcpu *vcpu,
184 struct kvmppc_book3s_shadow_vcpu *svcpu)
185{
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100186 /*
187 * vcpu_put would just call us again because in_use hasn't
188 * been updated yet.
189 */
190 preempt_disable();
191
192 /*
193 * Maybe we were already preempted and synced the svcpu from
194 * our preempt notifiers. Don't bother touching this svcpu then.
195 */
196 if (!svcpu->in_use)
197 goto out;
198
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000199 vcpu->arch.gpr[0] = svcpu->gpr[0];
200 vcpu->arch.gpr[1] = svcpu->gpr[1];
201 vcpu->arch.gpr[2] = svcpu->gpr[2];
202 vcpu->arch.gpr[3] = svcpu->gpr[3];
203 vcpu->arch.gpr[4] = svcpu->gpr[4];
204 vcpu->arch.gpr[5] = svcpu->gpr[5];
205 vcpu->arch.gpr[6] = svcpu->gpr[6];
206 vcpu->arch.gpr[7] = svcpu->gpr[7];
207 vcpu->arch.gpr[8] = svcpu->gpr[8];
208 vcpu->arch.gpr[9] = svcpu->gpr[9];
209 vcpu->arch.gpr[10] = svcpu->gpr[10];
210 vcpu->arch.gpr[11] = svcpu->gpr[11];
211 vcpu->arch.gpr[12] = svcpu->gpr[12];
212 vcpu->arch.gpr[13] = svcpu->gpr[13];
213 vcpu->arch.cr = svcpu->cr;
214 vcpu->arch.xer = svcpu->xer;
215 vcpu->arch.ctr = svcpu->ctr;
216 vcpu->arch.lr = svcpu->lr;
217 vcpu->arch.pc = svcpu->pc;
218 vcpu->arch.shadow_srr1 = svcpu->shadow_srr1;
219 vcpu->arch.fault_dar = svcpu->fault_dar;
220 vcpu->arch.fault_dsisr = svcpu->fault_dsisr;
221 vcpu->arch.last_inst = svcpu->last_inst;
Alexander Graf616dff82014-04-29 16:48:44 +0200222#ifdef CONFIG_PPC_BOOK3S_64
223 vcpu->arch.shadow_fscr = svcpu->shadow_fscr;
224#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530225 /*
226 * Update purr and spurr using time base on exit.
227 */
228 vcpu->arch.purr += get_tb() - vcpu->arch.entry_tb;
229 vcpu->arch.spurr += get_tb() - vcpu->arch.entry_tb;
Paul Mackerras88b02cf92016-09-15 13:42:52 +1000230 to_book3s(vcpu)->vtb += get_vtb() - vcpu->arch.entry_vtb;
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530231 if (cpu_has_feature(CPU_FTR_ARCH_207S))
232 vcpu->arch.ic += mfspr(SPRN_IC) - vcpu->arch.entry_ic;
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100233 svcpu->in_use = false;
234
235out:
236 preempt_enable();
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000237}
238
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530239static int kvmppc_core_check_requests_pr(struct kvm_vcpu *vcpu)
Alexander Graf03d25c52012-08-10 12:28:50 +0200240{
Alexander Graf7c973a22012-08-13 12:50:35 +0200241 int r = 1; /* Indicate we want to get back into the guest */
242
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200243 /* We misuse TLB_FLUSH to indicate that we want to clear
244 all shadow cache entries */
245 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
246 kvmppc_mmu_pte_flush(vcpu, 0, 0);
Alexander Graf7c973a22012-08-13 12:50:35 +0200247
248 return r;
Alexander Graf03d25c52012-08-10 12:28:50 +0200249}
250
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200251/************* MMU Notifiers *************/
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000252static void do_kvm_unmap_hva(struct kvm *kvm, unsigned long start,
253 unsigned long end)
254{
255 long i;
256 struct kvm_vcpu *vcpu;
257 struct kvm_memslots *slots;
258 struct kvm_memory_slot *memslot;
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200259
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000260 slots = kvm_memslots(kvm);
261 kvm_for_each_memslot(memslot, slots) {
262 unsigned long hva_start, hva_end;
263 gfn_t gfn, gfn_end;
264
265 hva_start = max(start, memslot->userspace_addr);
266 hva_end = min(end, memslot->userspace_addr +
267 (memslot->npages << PAGE_SHIFT));
268 if (hva_start >= hva_end)
269 continue;
270 /*
271 * {gfn(page) | page intersects with [hva_start, hva_end)} =
272 * {gfn, gfn+1, ..., gfn_end-1}.
273 */
274 gfn = hva_to_gfn_memslot(hva_start, memslot);
275 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
276 kvm_for_each_vcpu(i, vcpu, kvm)
277 kvmppc_mmu_pte_pflush(vcpu, gfn << PAGE_SHIFT,
278 gfn_end << PAGE_SHIFT);
279 }
280}
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200281
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530282static int kvm_unmap_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200283{
284 trace_kvm_unmap_hva(hva);
285
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000286 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200287
288 return 0;
289}
290
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530291static int kvm_unmap_hva_range_pr(struct kvm *kvm, unsigned long start,
292 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200293{
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000294 do_kvm_unmap_hva(kvm, start, end);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200295
296 return 0;
297}
298
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700299static int kvm_age_hva_pr(struct kvm *kvm, unsigned long start,
300 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200301{
302 /* XXX could be more clever ;) */
303 return 0;
304}
305
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530306static int kvm_test_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200307{
308 /* XXX could be more clever ;) */
309 return 0;
310}
311
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530312static void kvm_set_spte_hva_pr(struct kvm *kvm, unsigned long hva, pte_t pte)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200313{
314 /* The page will get remapped properly on its next fault */
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000315 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200316}
317
318/*****************************************/
319
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000320static void kvmppc_recalc_shadow_msr(struct kvm_vcpu *vcpu)
321{
Alexander Graf5deb8e72014-04-24 13:46:24 +0200322 ulong guest_msr = kvmppc_get_msr(vcpu);
323 ulong smsr = guest_msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000324
325 /* Guest MSR values */
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +0530326 smsr &= MSR_FE0 | MSR_FE1 | MSR_SF | MSR_SE | MSR_BE | MSR_LE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000327 /* Process MSR values */
328 smsr |= MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_PR | MSR_EE;
329 /* External providers the guest reserved */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200330 smsr |= (guest_msr & vcpu->arch.guest_owned_ext);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000331 /* 64-bit Process MSR values */
332#ifdef CONFIG_PPC_BOOK3S_64
333 smsr |= MSR_ISF | MSR_HV;
334#endif
335 vcpu->arch.shadow_msr = smsr;
336}
337
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530338static void kvmppc_set_msr_pr(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000339{
Alexander Graf5deb8e72014-04-24 13:46:24 +0200340 ulong old_msr = kvmppc_get_msr(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000341
342#ifdef EXIT_DEBUG
343 printk(KERN_INFO "KVM: Set MSR to 0x%llx\n", msr);
344#endif
345
346 msr &= to_book3s(vcpu)->msr_mask;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200347 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000348 kvmppc_recalc_shadow_msr(vcpu);
349
350 if (msr & MSR_POW) {
351 if (!vcpu->arch.pending_exceptions) {
352 kvm_vcpu_block(vcpu);
Radim Krčmář72875d82017-04-26 22:32:19 +0200353 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000354 vcpu->stat.halt_wakeup++;
355
356 /* Unset POW bit after we woke up */
357 msr &= ~MSR_POW;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200358 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000359 }
360 }
361
Alexander Grafc01e3f62014-07-11 02:58:58 +0200362 if (kvmppc_is_split_real(vcpu))
363 kvmppc_fixup_split_real(vcpu);
364 else
365 kvmppc_unfixup_split_real(vcpu);
366
Alexander Graf5deb8e72014-04-24 13:46:24 +0200367 if ((kvmppc_get_msr(vcpu) & (MSR_PR|MSR_IR|MSR_DR)) !=
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000368 (old_msr & (MSR_PR|MSR_IR|MSR_DR))) {
369 kvmppc_mmu_flush_segments(vcpu);
370 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
371
372 /* Preload magic page segment when in kernel mode */
373 if (!(msr & MSR_PR) && vcpu->arch.magic_page_pa) {
374 struct kvm_vcpu_arch *a = &vcpu->arch;
375
376 if (msr & MSR_DR)
377 kvmppc_mmu_map_segment(vcpu, a->magic_page_ea);
378 else
379 kvmppc_mmu_map_segment(vcpu, a->magic_page_pa);
380 }
381 }
382
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000383 /*
384 * When switching from 32 to 64-bit, we may have a stale 32-bit
385 * magic page around, we need to flush it. Typically 32-bit magic
386 * page will be instanciated when calling into RTAS. Note: We
387 * assume that such transition only happens while in kernel mode,
388 * ie, we never transition from user 32-bit to kernel 64-bit with
389 * a 32-bit magic page around.
390 */
391 if (vcpu->arch.magic_page_pa &&
392 !(old_msr & MSR_PR) && !(old_msr & MSR_SF) && (msr & MSR_SF)) {
393 /* going from RTAS to normal kernel code */
394 kvmppc_mmu_pte_flush(vcpu, (uint32_t)vcpu->arch.magic_page_pa,
395 ~0xFFFUL);
396 }
397
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000398 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200399 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000400 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
401}
402
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530403void kvmppc_set_pvr_pr(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000404{
405 u32 host_pvr;
406
407 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SLB;
408 vcpu->arch.pvr = pvr;
409#ifdef CONFIG_PPC_BOOK3S_64
410 if ((pvr >= 0x330000) && (pvr < 0x70330000)) {
411 kvmppc_mmu_book3s_64_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200412 if (!to_book3s(vcpu)->hior_explicit)
413 to_book3s(vcpu)->hior = 0xfff00000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000414 to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200415 vcpu->arch.cpu_type = KVM_CPU_3S_64;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000416 } else
417#endif
418 {
419 kvmppc_mmu_book3s_32_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200420 if (!to_book3s(vcpu)->hior_explicit)
421 to_book3s(vcpu)->hior = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000422 to_book3s(vcpu)->msr_mask = 0xffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200423 vcpu->arch.cpu_type = KVM_CPU_3S_32;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000424 }
425
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200426 kvmppc_sanity_check(vcpu);
427
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000428 /* If we are in hypervisor level on 970, we can tell the CPU to
429 * treat DCBZ as 32 bytes store */
430 vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32;
431 if (vcpu->arch.mmu.is_dcbz32(vcpu) && (mfmsr() & MSR_HV) &&
432 !strcmp(cur_cpu_spec->platform, "ppc970"))
433 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
434
435 /* Cell performs badly if MSR_FEx are set. So let's hope nobody
436 really needs them in a VM on Cell and force disable them. */
437 if (!strcmp(cur_cpu_spec->platform, "ppc-cell-be"))
438 to_book3s(vcpu)->msr_mask &= ~(MSR_FE0 | MSR_FE1);
439
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000440 /*
441 * If they're asking for POWER6 or later, set the flag
442 * indicating that we can do multiple large page sizes
443 * and 1TB segments.
444 * Also set the flag that indicates that tlbie has the large
445 * page bit in the RB operand instead of the instruction.
446 */
447 switch (PVR_VER(pvr)) {
448 case PVR_POWER6:
449 case PVR_POWER7:
450 case PVR_POWER7p:
451 case PVR_POWER8:
Thomas Huth2365f6b2016-09-21 13:53:46 +0200452 case PVR_POWER8E:
453 case PVR_POWER8NVL:
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000454 vcpu->arch.hflags |= BOOK3S_HFLAG_MULTI_PGSIZE |
455 BOOK3S_HFLAG_NEW_TLBIE;
456 break;
457 }
458
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000459#ifdef CONFIG_PPC_BOOK3S_32
460 /* 32 bit Book3S always has 32 byte dcbz */
461 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
462#endif
463
464 /* On some CPUs we can execute paired single operations natively */
465 asm ( "mfpvr %0" : "=r"(host_pvr));
466 switch (host_pvr) {
467 case 0x00080200: /* lonestar 2.0 */
468 case 0x00088202: /* lonestar 2.2 */
469 case 0x70000100: /* gekko 1.0 */
470 case 0x00080100: /* gekko 2.0 */
471 case 0x00083203: /* gekko 2.3a */
472 case 0x00083213: /* gekko 2.3b */
473 case 0x00083204: /* gekko 2.4 */
474 case 0x00083214: /* gekko 2.4e (8SE) - retail HW2 */
475 case 0x00087200: /* broadway */
476 vcpu->arch.hflags |= BOOK3S_HFLAG_NATIVE_PS;
477 /* Enable HID2.PSE - in case we need it later */
478 mtspr(SPRN_HID2_GEKKO, mfspr(SPRN_HID2_GEKKO) | (1 << 29));
479 }
480}
481
482/* Book3s_32 CPUs always have 32 bytes cache line size, which Linux assumes. To
483 * make Book3s_32 Linux work on Book3s_64, we have to make sure we trap dcbz to
484 * emulate 32 bytes dcbz length.
485 *
486 * The Book3s_64 inventors also realized this case and implemented a special bit
487 * in the HID5 register, which is a hypervisor ressource. Thus we can't use it.
488 *
489 * My approach here is to patch the dcbz instruction on executing pages.
490 */
491static void kvmppc_patch_dcbz(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte)
492{
493 struct page *hpage;
494 u64 hpage_offset;
495 u32 *page;
496 int i;
497
498 hpage = gfn_to_page(vcpu->kvm, pte->raddr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800499 if (is_error_page(hpage))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000500 return;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000501
502 hpage_offset = pte->raddr & ~PAGE_MASK;
503 hpage_offset &= ~0xFFFULL;
504 hpage_offset /= 4;
505
506 get_page(hpage);
Cong Wang2480b202011-11-25 23:14:16 +0800507 page = kmap_atomic(hpage);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000508
509 /* patch dcbz into reserved instruction, so we trap */
510 for (i=hpage_offset; i < hpage_offset + (HW_PAGE_SIZE / 4); i++)
Alexander Grafcd087ee2014-04-24 13:52:01 +0200511 if ((be32_to_cpu(page[i]) & 0xff0007ff) == INS_DCBZ)
512 page[i] &= cpu_to_be32(0xfffffff7);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000513
Cong Wang2480b202011-11-25 23:14:16 +0800514 kunmap_atomic(page);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000515 put_page(hpage);
516}
517
Yaowei Bai378b4172015-11-16 11:10:24 +0800518static bool kvmppc_visible_gpa(struct kvm_vcpu *vcpu, gpa_t gpa)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000519{
520 ulong mp_pa = vcpu->arch.magic_page_pa;
521
Alexander Graf5deb8e72014-04-24 13:46:24 +0200522 if (!(kvmppc_get_msr(vcpu) & MSR_SF))
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000523 mp_pa = (uint32_t)mp_pa;
524
Alexander Graf89b68c92014-07-13 16:37:12 +0200525 gpa &= ~0xFFFULL;
526 if (unlikely(mp_pa) && unlikely((mp_pa & KVM_PAM) == (gpa & KVM_PAM))) {
Yaowei Bai378b4172015-11-16 11:10:24 +0800527 return true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000528 }
529
Alexander Graf89b68c92014-07-13 16:37:12 +0200530 return kvm_is_visible_gfn(vcpu->kvm, gpa >> PAGE_SHIFT);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000531}
532
533int kvmppc_handle_pagefault(struct kvm_run *run, struct kvm_vcpu *vcpu,
534 ulong eaddr, int vec)
535{
536 bool data = (vec == BOOK3S_INTERRUPT_DATA_STORAGE);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000537 bool iswrite = false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000538 int r = RESUME_GUEST;
539 int relocated;
540 int page_found = 0;
Alexey Kardashevskiy96df2262017-03-24 17:49:22 +1100541 struct kvmppc_pte pte = { 0 };
Alexander Graf5deb8e72014-04-24 13:46:24 +0200542 bool dr = (kvmppc_get_msr(vcpu) & MSR_DR) ? true : false;
543 bool ir = (kvmppc_get_msr(vcpu) & MSR_IR) ? true : false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000544 u64 vsid;
545
546 relocated = data ? dr : ir;
Paul Mackerras93b159b2013-09-20 14:52:51 +1000547 if (data && (vcpu->arch.fault_dsisr & DSISR_ISSTORE))
548 iswrite = true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000549
550 /* Resolve real address if translation turned on */
551 if (relocated) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000552 page_found = vcpu->arch.mmu.xlate(vcpu, eaddr, &pte, data, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000553 } else {
554 pte.may_execute = true;
555 pte.may_read = true;
556 pte.may_write = true;
557 pte.raddr = eaddr & KVM_PAM;
558 pte.eaddr = eaddr;
559 pte.vpage = eaddr >> 12;
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000560 pte.page_size = MMU_PAGE_64K;
Alexey Kardashevskiy6c7d47c2017-11-22 14:42:21 +1100561 pte.wimg = HPTE_R_M;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000562 }
563
Alexander Graf5deb8e72014-04-24 13:46:24 +0200564 switch (kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000565 case 0:
566 pte.vpage |= ((u64)VSID_REAL << (SID_SHIFT - 12));
567 break;
568 case MSR_DR:
Alexander Grafc01e3f62014-07-11 02:58:58 +0200569 if (!data &&
570 (vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK) &&
571 ((pte.raddr & SPLIT_HACK_MASK) == SPLIT_HACK_OFFS))
572 pte.raddr &= ~SPLIT_HACK_MASK;
573 /* fall through */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000574 case MSR_IR:
575 vcpu->arch.mmu.esid_to_vsid(vcpu, eaddr >> SID_SHIFT, &vsid);
576
Alexander Graf5deb8e72014-04-24 13:46:24 +0200577 if ((kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) == MSR_DR)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000578 pte.vpage |= ((u64)VSID_REAL_DR << (SID_SHIFT - 12));
579 else
580 pte.vpage |= ((u64)VSID_REAL_IR << (SID_SHIFT - 12));
581 pte.vpage |= vsid;
582
583 if (vsid == -1)
584 page_found = -EINVAL;
585 break;
586 }
587
588 if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
589 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
590 /*
591 * If we do the dcbz hack, we have to NX on every execution,
592 * so we can patch the executing code. This renders our guest
593 * NX-less.
594 */
595 pte.may_execute = !data;
596 }
597
598 if (page_found == -ENOENT) {
599 /* Page not found in guest PTE entries */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200600 u64 ssrr1 = vcpu->arch.shadow_srr1;
601 u64 msr = kvmppc_get_msr(vcpu);
602 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
603 kvmppc_set_dsisr(vcpu, vcpu->arch.fault_dsisr);
604 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000605 kvmppc_book3s_queue_irqprio(vcpu, vec);
606 } else if (page_found == -EPERM) {
607 /* Storage protection */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200608 u32 dsisr = vcpu->arch.fault_dsisr;
609 u64 ssrr1 = vcpu->arch.shadow_srr1;
610 u64 msr = kvmppc_get_msr(vcpu);
611 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
612 dsisr = (dsisr & ~DSISR_NOHPTE) | DSISR_PROTFAULT;
613 kvmppc_set_dsisr(vcpu, dsisr);
614 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000615 kvmppc_book3s_queue_irqprio(vcpu, vec);
616 } else if (page_found == -EINVAL) {
617 /* Page not found in guest SLB */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200618 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000619 kvmppc_book3s_queue_irqprio(vcpu, vec + 0x80);
Alexey Kardashevskiy9eecec12017-03-24 17:47:13 +1100620 } else if (kvmppc_visible_gpa(vcpu, pte.raddr)) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000621 if (data && !(vcpu->arch.fault_dsisr & DSISR_NOHPTE)) {
622 /*
623 * There is already a host HPTE there, presumably
624 * a read-only one for a page the guest thinks
625 * is writable, so get rid of it first.
626 */
627 kvmppc_mmu_unmap_page(vcpu, &pte);
628 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000629 /* The guest's PTE is not mapped yet. Map on the host */
Alexey Kardashevskiybd9166f2017-03-24 17:48:10 +1100630 if (kvmppc_mmu_map_page(vcpu, &pte, iswrite) == -EIO) {
631 /* Exit KVM if mapping failed */
632 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
633 return RESUME_HOST;
634 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000635 if (data)
636 vcpu->stat.sp_storage++;
637 else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
Paul Mackerras93b159b2013-09-20 14:52:51 +1000638 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32)))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000639 kvmppc_patch_dcbz(vcpu, &pte);
640 } else {
641 /* MMIO */
642 vcpu->stat.mmio_exits++;
643 vcpu->arch.paddr_accessed = pte.raddr;
Alexander Graf6020c0f2012-03-12 02:26:30 +0100644 vcpu->arch.vaddr_accessed = pte.eaddr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000645 r = kvmppc_emulate_mmio(run, vcpu);
646 if ( r == RESUME_HOST_NV )
647 r = RESUME_HOST;
648 }
649
650 return r;
651}
652
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000653/* Give up external provider (FPU, Altivec, VSX) */
654void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr)
655{
656 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000657
Paul Mackerras28c483b2012-11-04 18:16:46 +0000658 /*
659 * VSX instructions can access FP and vector registers, so if
660 * we are giving up VSX, make sure we give up FP and VMX as well.
661 */
662 if (msr & MSR_VSX)
663 msr |= MSR_FP | MSR_VEC;
664
665 msr &= vcpu->arch.guest_owned_ext;
666 if (!msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000667 return;
668
669#ifdef DEBUG_EXT
670 printk(KERN_INFO "Giving up ext 0x%lx\n", msr);
671#endif
672
Paul Mackerras28c483b2012-11-04 18:16:46 +0000673 if (msr & MSR_FP) {
674 /*
675 * Note that on CPUs with VSX, giveup_fpu stores
676 * both the traditional FP registers and the added VSX
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000677 * registers into thread.fp_state.fpr[].
Paul Mackerras28c483b2012-11-04 18:16:46 +0000678 */
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100679 if (t->regs->msr & MSR_FP)
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000680 giveup_fpu(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100681 t->fp_save_area = NULL;
Paul Mackerras28c483b2012-11-04 18:16:46 +0000682 }
683
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000684#ifdef CONFIG_ALTIVEC
Paul Mackerras28c483b2012-11-04 18:16:46 +0000685 if (msr & MSR_VEC) {
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000686 if (current->thread.regs->msr & MSR_VEC)
687 giveup_altivec(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100688 t->vr_save_area = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000689 }
Paul Mackerras28c483b2012-11-04 18:16:46 +0000690#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000691
Paul Mackerras28c483b2012-11-04 18:16:46 +0000692 vcpu->arch.guest_owned_ext &= ~(msr | MSR_VSX);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000693 kvmppc_recalc_shadow_msr(vcpu);
694}
695
Alexander Graf616dff82014-04-29 16:48:44 +0200696/* Give up facility (TAR / EBB / DSCR) */
697static void kvmppc_giveup_fac(struct kvm_vcpu *vcpu, ulong fac)
698{
699#ifdef CONFIG_PPC_BOOK3S_64
700 if (!(vcpu->arch.shadow_fscr & (1ULL << fac))) {
701 /* Facility not available to the guest, ignore giveup request*/
702 return;
703 }
Alexander Grafe14e7a12014-04-22 12:26:58 +0200704
705 switch (fac) {
706 case FSCR_TAR_LG:
707 vcpu->arch.tar = mfspr(SPRN_TAR);
708 mtspr(SPRN_TAR, current->thread.tar);
709 vcpu->arch.shadow_fscr &= ~FSCR_TAR;
710 break;
711 }
Alexander Graf616dff82014-04-29 16:48:44 +0200712#endif
713}
714
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000715/* Handle external providers (FPU, Altivec, VSX) */
716static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
717 ulong msr)
718{
719 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000720
721 /* When we have paired singles, we emulate in software */
722 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE)
723 return RESUME_GUEST;
724
Alexander Graf5deb8e72014-04-24 13:46:24 +0200725 if (!(kvmppc_get_msr(vcpu) & msr)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000726 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
727 return RESUME_GUEST;
728 }
729
Paul Mackerras28c483b2012-11-04 18:16:46 +0000730 if (msr == MSR_VSX) {
731 /* No VSX? Give an illegal instruction interrupt */
732#ifdef CONFIG_VSX
733 if (!cpu_has_feature(CPU_FTR_VSX))
734#endif
735 {
736 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
737 return RESUME_GUEST;
738 }
739
740 /*
741 * We have to load up all the FP and VMX registers before
742 * we can let the guest use VSX instructions.
743 */
744 msr = MSR_FP | MSR_VEC | MSR_VSX;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000745 }
746
Paul Mackerras28c483b2012-11-04 18:16:46 +0000747 /* See if we already own all the ext(s) needed */
748 msr &= ~vcpu->arch.guest_owned_ext;
749 if (!msr)
750 return RESUME_GUEST;
751
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000752#ifdef DEBUG_EXT
753 printk(KERN_INFO "Loading up ext 0x%lx\n", msr);
754#endif
755
Paul Mackerras28c483b2012-11-04 18:16:46 +0000756 if (msr & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530757 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100758 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100759 load_fp_state(&vcpu->arch.fp);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100760 disable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100761 t->fp_save_area = &vcpu->arch.fp;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530762 preempt_enable();
Paul Mackerras28c483b2012-11-04 18:16:46 +0000763 }
764
765 if (msr & MSR_VEC) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000766#ifdef CONFIG_ALTIVEC
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530767 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100768 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100769 load_vr_state(&vcpu->arch.vr);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100770 disable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100771 t->vr_save_area = &vcpu->arch.vr;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530772 preempt_enable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000773#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000774 }
775
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100776 t->regs->msr |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000777 vcpu->arch.guest_owned_ext |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000778 kvmppc_recalc_shadow_msr(vcpu);
779
780 return RESUME_GUEST;
781}
782
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000783/*
784 * Kernel code using FP or VMX could have flushed guest state to
785 * the thread_struct; if so, get it back now.
786 */
787static void kvmppc_handle_lost_ext(struct kvm_vcpu *vcpu)
788{
789 unsigned long lost_ext;
790
791 lost_ext = vcpu->arch.guest_owned_ext & ~current->thread.regs->msr;
792 if (!lost_ext)
793 return;
794
Paul Mackerras09548fd2013-10-15 20:43:01 +1100795 if (lost_ext & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530796 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100797 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100798 load_fp_state(&vcpu->arch.fp);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100799 disable_kernel_fp();
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530800 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100801 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000802#ifdef CONFIG_ALTIVEC
Paul Mackerras09548fd2013-10-15 20:43:01 +1100803 if (lost_ext & MSR_VEC) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530804 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100805 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100806 load_vr_state(&vcpu->arch.vr);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100807 disable_kernel_altivec();
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530808 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100809 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000810#endif
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000811 current->thread.regs->msr |= lost_ext;
812}
813
Alexander Graf616dff82014-04-29 16:48:44 +0200814#ifdef CONFIG_PPC_BOOK3S_64
815
816static void kvmppc_trigger_fac_interrupt(struct kvm_vcpu *vcpu, ulong fac)
817{
818 /* Inject the Interrupt Cause field and trigger a guest interrupt */
819 vcpu->arch.fscr &= ~(0xffULL << 56);
820 vcpu->arch.fscr |= (fac << 56);
821 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_FAC_UNAVAIL);
822}
823
824static void kvmppc_emulate_fac(struct kvm_vcpu *vcpu, ulong fac)
825{
826 enum emulation_result er = EMULATE_FAIL;
827
828 if (!(kvmppc_get_msr(vcpu) & MSR_PR))
829 er = kvmppc_emulate_instruction(vcpu->run, vcpu);
830
831 if ((er != EMULATE_DONE) && (er != EMULATE_AGAIN)) {
832 /* Couldn't emulate, trigger interrupt in guest */
833 kvmppc_trigger_fac_interrupt(vcpu, fac);
834 }
835}
836
837/* Enable facilities (TAR, EBB, DSCR) for the guest */
838static int kvmppc_handle_fac(struct kvm_vcpu *vcpu, ulong fac)
839{
Alexander Graf9916d572014-04-29 17:54:40 +0200840 bool guest_fac_enabled;
Alexander Graf616dff82014-04-29 16:48:44 +0200841 BUG_ON(!cpu_has_feature(CPU_FTR_ARCH_207S));
842
Alexander Graf9916d572014-04-29 17:54:40 +0200843 /*
844 * Not every facility is enabled by FSCR bits, check whether the
845 * guest has this facility enabled at all.
846 */
847 switch (fac) {
848 case FSCR_TAR_LG:
849 case FSCR_EBB_LG:
850 guest_fac_enabled = (vcpu->arch.fscr & (1ULL << fac));
851 break;
852 case FSCR_TM_LG:
853 guest_fac_enabled = kvmppc_get_msr(vcpu) & MSR_TM;
854 break;
855 default:
856 guest_fac_enabled = false;
857 break;
858 }
859
860 if (!guest_fac_enabled) {
Alexander Graf616dff82014-04-29 16:48:44 +0200861 /* Facility not enabled by the guest */
862 kvmppc_trigger_fac_interrupt(vcpu, fac);
863 return RESUME_GUEST;
864 }
865
866 switch (fac) {
Alexander Grafe14e7a12014-04-22 12:26:58 +0200867 case FSCR_TAR_LG:
868 /* TAR switching isn't lazy in Linux yet */
869 current->thread.tar = mfspr(SPRN_TAR);
870 mtspr(SPRN_TAR, vcpu->arch.tar);
871 vcpu->arch.shadow_fscr |= FSCR_TAR;
872 break;
Alexander Graf616dff82014-04-29 16:48:44 +0200873 default:
874 kvmppc_emulate_fac(vcpu, fac);
875 break;
876 }
877
878 return RESUME_GUEST;
879}
Alexander Graf8e6afa32014-07-31 10:21:59 +0200880
881void kvmppc_set_fscr(struct kvm_vcpu *vcpu, u64 fscr)
882{
883 if ((vcpu->arch.fscr & FSCR_TAR) && !(fscr & FSCR_TAR)) {
884 /* TAR got dropped, drop it in shadow too */
885 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
886 }
887 vcpu->arch.fscr = fscr;
888}
Alexander Graf616dff82014-04-29 16:48:44 +0200889#endif
890
Laurent Vivier11dd6ac2016-04-08 18:05:00 +0200891static void kvmppc_setup_debug(struct kvm_vcpu *vcpu)
892{
893 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
894 u64 msr = kvmppc_get_msr(vcpu);
895
896 kvmppc_set_msr(vcpu, msr | MSR_SE);
897 }
898}
899
900static void kvmppc_clear_debug(struct kvm_vcpu *vcpu)
901{
902 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
903 u64 msr = kvmppc_get_msr(vcpu);
904
905 kvmppc_set_msr(vcpu, msr & ~MSR_SE);
906 }
907}
908
Thomas Huthfcd4f3c2017-01-25 13:27:22 +0100909static int kvmppc_exit_pr_progint(struct kvm_run *run, struct kvm_vcpu *vcpu,
910 unsigned int exit_nr)
911{
912 enum emulation_result er;
913 ulong flags;
914 u32 last_inst;
915 int emul, r;
916
917 /*
918 * shadow_srr1 only contains valid flags if we came here via a program
919 * exception. The other exceptions (emulation assist, FP unavailable,
920 * etc.) do not provide flags in SRR1, so use an illegal-instruction
921 * exception when injecting a program interrupt into the guest.
922 */
923 if (exit_nr == BOOK3S_INTERRUPT_PROGRAM)
924 flags = vcpu->arch.shadow_srr1 & 0x1f0000ull;
925 else
926 flags = SRR1_PROGILL;
927
928 emul = kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
929 if (emul != EMULATE_DONE)
930 return RESUME_GUEST;
931
932 if (kvmppc_get_msr(vcpu) & MSR_PR) {
933#ifdef EXIT_DEBUG
934 pr_info("Userspace triggered 0x700 exception at\n 0x%lx (0x%x)\n",
935 kvmppc_get_pc(vcpu), last_inst);
936#endif
937 if ((last_inst & 0xff0007ff) != (INS_DCBZ & 0xfffffff7)) {
938 kvmppc_core_queue_program(vcpu, flags);
939 return RESUME_GUEST;
940 }
941 }
942
943 vcpu->stat.emulated_inst_exits++;
944 er = kvmppc_emulate_instruction(run, vcpu);
945 switch (er) {
946 case EMULATE_DONE:
947 r = RESUME_GUEST_NV;
948 break;
949 case EMULATE_AGAIN:
950 r = RESUME_GUEST;
951 break;
952 case EMULATE_FAIL:
953 pr_crit("%s: emulation at %lx failed (%08x)\n",
954 __func__, kvmppc_get_pc(vcpu), last_inst);
955 kvmppc_core_queue_program(vcpu, flags);
956 r = RESUME_GUEST;
957 break;
958 case EMULATE_DO_MMIO:
959 run->exit_reason = KVM_EXIT_MMIO;
960 r = RESUME_HOST_NV;
961 break;
962 case EMULATE_EXIT_USER:
963 r = RESUME_HOST_NV;
964 break;
965 default:
966 BUG();
967 }
968
969 return r;
970}
971
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530972int kvmppc_handle_exit_pr(struct kvm_run *run, struct kvm_vcpu *vcpu,
973 unsigned int exit_nr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000974{
975 int r = RESUME_HOST;
Alexander Graf7ee78852012-08-13 12:44:41 +0200976 int s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000977
978 vcpu->stat.sum_exits++;
979
980 run->exit_reason = KVM_EXIT_UNKNOWN;
981 run->ready_for_interrupt_injection = 1;
982
Alexander Grafbd2be682012-08-13 01:04:19 +0200983 /* We get here with MSR.EE=1 */
Alexander Graf3b1d9d72012-04-30 10:56:12 +0200984
Alexander Graf97c95052012-08-02 15:10:00 +0200985 trace_kvm_exit(exit_nr, vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200986 guest_exit();
Alexander Grafc63ddcb2012-08-12 11:27:49 +0200987
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000988 switch (exit_nr) {
989 case BOOK3S_INTERRUPT_INST_STORAGE:
Alexander Graf468a12c2011-12-09 14:44:13 +0100990 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000991 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000992 vcpu->stat.pf_instruc++;
993
Alexander Grafc01e3f62014-07-11 02:58:58 +0200994 if (kvmppc_is_split_real(vcpu))
995 kvmppc_fixup_split_real(vcpu);
996
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000997#ifdef CONFIG_PPC_BOOK3S_32
998 /* We set segments as unused segments when invalidating them. So
999 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001000 {
1001 struct kvmppc_book3s_shadow_vcpu *svcpu;
1002 u32 sr;
1003
1004 svcpu = svcpu_get(vcpu);
1005 sr = svcpu->sr[kvmppc_get_pc(vcpu) >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +01001006 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001007 if (sr == SR_INVALID) {
1008 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
1009 r = RESUME_GUEST;
1010 break;
1011 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001012 }
1013#endif
1014
1015 /* only care about PTEG not found errors, but leave NX alone */
Alexander Graf468a12c2011-12-09 14:44:13 +01001016 if (shadow_srr1 & 0x40000000) {
Paul Mackerras93b159b2013-09-20 14:52:51 +10001017 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001018 r = kvmppc_handle_pagefault(run, vcpu, kvmppc_get_pc(vcpu), exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +10001019 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001020 vcpu->stat.sp_instruc++;
1021 } else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
1022 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
1023 /*
1024 * XXX If we do the dcbz hack we use the NX bit to flush&patch the page,
1025 * so we can't use the NX bit inside the guest. Let's cross our fingers,
1026 * that no guest that needs the dcbz hack does NX.
1027 */
1028 kvmppc_mmu_pte_flush(vcpu, kvmppc_get_pc(vcpu), ~0xFFFUL);
1029 r = RESUME_GUEST;
1030 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001031 u64 msr = kvmppc_get_msr(vcpu);
1032 msr |= shadow_srr1 & 0x58000000;
1033 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001034 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1035 r = RESUME_GUEST;
1036 }
1037 break;
Alexander Graf468a12c2011-12-09 14:44:13 +01001038 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001039 case BOOK3S_INTERRUPT_DATA_STORAGE:
1040 {
1041 ulong dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001042 u32 fault_dsisr = vcpu->arch.fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001043 vcpu->stat.pf_storage++;
1044
1045#ifdef CONFIG_PPC_BOOK3S_32
1046 /* We set segments as unused segments when invalidating them. So
1047 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001048 {
1049 struct kvmppc_book3s_shadow_vcpu *svcpu;
1050 u32 sr;
1051
1052 svcpu = svcpu_get(vcpu);
1053 sr = svcpu->sr[dar >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +01001054 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001055 if (sr == SR_INVALID) {
1056 kvmppc_mmu_map_segment(vcpu, dar);
1057 r = RESUME_GUEST;
1058 break;
1059 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001060 }
1061#endif
1062
Paul Mackerras93b159b2013-09-20 14:52:51 +10001063 /*
1064 * We need to handle missing shadow PTEs, and
1065 * protection faults due to us mapping a page read-only
1066 * when the guest thinks it is writable.
1067 */
1068 if (fault_dsisr & (DSISR_NOHPTE | DSISR_PROTFAULT)) {
1069 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001070 r = kvmppc_handle_pagefault(run, vcpu, dar, exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +10001071 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001072 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001073 kvmppc_set_dar(vcpu, dar);
1074 kvmppc_set_dsisr(vcpu, fault_dsisr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001075 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1076 r = RESUME_GUEST;
1077 }
1078 break;
1079 }
1080 case BOOK3S_INTERRUPT_DATA_SEGMENT:
1081 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_fault_dar(vcpu)) < 0) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001082 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001083 kvmppc_book3s_queue_irqprio(vcpu,
1084 BOOK3S_INTERRUPT_DATA_SEGMENT);
1085 }
1086 r = RESUME_GUEST;
1087 break;
1088 case BOOK3S_INTERRUPT_INST_SEGMENT:
1089 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu)) < 0) {
1090 kvmppc_book3s_queue_irqprio(vcpu,
1091 BOOK3S_INTERRUPT_INST_SEGMENT);
1092 }
1093 r = RESUME_GUEST;
1094 break;
1095 /* We're good on these - the host merely wanted to get our attention */
1096 case BOOK3S_INTERRUPT_DECREMENTER:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001097 case BOOK3S_INTERRUPT_HV_DECREMENTER:
Paul Mackerras40688902014-01-08 21:25:36 +11001098 case BOOK3S_INTERRUPT_DOORBELL:
Alexander Graf568fccc2014-06-16 16:37:38 +02001099 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001100 vcpu->stat.dec_exits++;
1101 r = RESUME_GUEST;
1102 break;
1103 case BOOK3S_INTERRUPT_EXTERNAL:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001104 case BOOK3S_INTERRUPT_EXTERNAL_LEVEL:
1105 case BOOK3S_INTERRUPT_EXTERNAL_HV:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001106 vcpu->stat.ext_intr_exits++;
1107 r = RESUME_GUEST;
1108 break;
1109 case BOOK3S_INTERRUPT_PERFMON:
1110 r = RESUME_GUEST;
1111 break;
1112 case BOOK3S_INTERRUPT_PROGRAM:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001113 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Thomas Huthfcd4f3c2017-01-25 13:27:22 +01001114 r = kvmppc_exit_pr_progint(run, vcpu, exit_nr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001115 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001116 case BOOK3S_INTERRUPT_SYSCALL:
Mihai Caraman51f04722014-07-23 19:06:21 +03001117 {
1118 u32 last_sc;
1119 int emul;
1120
1121 /* Get last sc for papr */
1122 if (vcpu->arch.papr_enabled) {
1123 /* The sc instuction points SRR0 to the next inst */
1124 emul = kvmppc_get_last_inst(vcpu, INST_SC, &last_sc);
1125 if (emul != EMULATE_DONE) {
1126 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) - 4);
1127 r = RESUME_GUEST;
1128 break;
1129 }
1130 }
1131
Alexander Grafa668f2b2011-08-08 17:26:24 +02001132 if (vcpu->arch.papr_enabled &&
Mihai Caraman51f04722014-07-23 19:06:21 +03001133 (last_sc == 0x44000022) &&
Alexander Graf5deb8e72014-04-24 13:46:24 +02001134 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
Alexander Grafa668f2b2011-08-08 17:26:24 +02001135 /* SC 1 papr hypercalls */
1136 ulong cmd = kvmppc_get_gpr(vcpu, 3);
1137 int i;
1138
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301139#ifdef CONFIG_PPC_BOOK3S_64
Alexander Grafa668f2b2011-08-08 17:26:24 +02001140 if (kvmppc_h_pr(vcpu, cmd) == EMULATE_DONE) {
1141 r = RESUME_GUEST;
1142 break;
1143 }
Andreas Schwab96f38d72011-11-08 07:17:39 +00001144#endif
Alexander Grafa668f2b2011-08-08 17:26:24 +02001145
1146 run->papr_hcall.nr = cmd;
1147 for (i = 0; i < 9; ++i) {
1148 ulong gpr = kvmppc_get_gpr(vcpu, 4 + i);
1149 run->papr_hcall.args[i] = gpr;
1150 }
1151 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1152 vcpu->arch.hcall_needed = 1;
1153 r = RESUME_HOST;
1154 } else if (vcpu->arch.osi_enabled &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001155 (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) &&
1156 (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) {
1157 /* MOL hypercalls */
1158 u64 *gprs = run->osi.gprs;
1159 int i;
1160
1161 run->exit_reason = KVM_EXIT_OSI;
1162 for (i = 0; i < 32; i++)
1163 gprs[i] = kvmppc_get_gpr(vcpu, i);
1164 vcpu->arch.osi_needed = 1;
1165 r = RESUME_HOST_NV;
Alexander Graf5deb8e72014-04-24 13:46:24 +02001166 } else if (!(kvmppc_get_msr(vcpu) & MSR_PR) &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001167 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
1168 /* KVM PV hypercalls */
1169 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
1170 r = RESUME_GUEST;
1171 } else {
1172 /* Guest syscalls */
1173 vcpu->stat.syscall_exits++;
1174 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1175 r = RESUME_GUEST;
1176 }
1177 break;
Mihai Caraman51f04722014-07-23 19:06:21 +03001178 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001179 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1180 case BOOK3S_INTERRUPT_ALTIVEC:
1181 case BOOK3S_INTERRUPT_VSX:
1182 {
1183 int ext_msr = 0;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001184 int emul;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001185 u32 last_inst;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001186
Mihai Caraman9a26af62014-07-23 19:06:20 +03001187 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE) {
1188 /* Do paired single instruction emulation */
Mihai Caraman51f04722014-07-23 19:06:21 +03001189 emul = kvmppc_get_last_inst(vcpu, INST_GENERIC,
1190 &last_inst);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001191 if (emul == EMULATE_DONE)
Thomas Huthfcd4f3c2017-01-25 13:27:22 +01001192 r = kvmppc_exit_pr_progint(run, vcpu, exit_nr);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001193 else
1194 r = RESUME_GUEST;
1195
1196 break;
1197 }
1198
1199 /* Enable external provider */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001200 switch (exit_nr) {
Mihai Caraman9a26af62014-07-23 19:06:20 +03001201 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1202 ext_msr = MSR_FP;
1203 break;
1204
1205 case BOOK3S_INTERRUPT_ALTIVEC:
1206 ext_msr = MSR_VEC;
1207 break;
1208
1209 case BOOK3S_INTERRUPT_VSX:
1210 ext_msr = MSR_VSX;
1211 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001212 }
1213
Mihai Caraman9a26af62014-07-23 19:06:20 +03001214 r = kvmppc_handle_ext(vcpu, exit_nr, ext_msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001215 break;
1216 }
1217 case BOOK3S_INTERRUPT_ALIGNMENT:
Mihai Caraman9a26af62014-07-23 19:06:20 +03001218 {
Mihai Caraman51f04722014-07-23 19:06:21 +03001219 u32 last_inst;
1220 int emul = kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001221
1222 if (emul == EMULATE_DONE) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001223 u32 dsisr;
1224 u64 dar;
1225
1226 dsisr = kvmppc_alignment_dsisr(vcpu, last_inst);
1227 dar = kvmppc_alignment_dar(vcpu, last_inst);
1228
1229 kvmppc_set_dsisr(vcpu, dsisr);
1230 kvmppc_set_dar(vcpu, dar);
1231
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001232 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1233 }
1234 r = RESUME_GUEST;
1235 break;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001236 }
Alexander Graf616dff82014-04-29 16:48:44 +02001237#ifdef CONFIG_PPC_BOOK3S_64
1238 case BOOK3S_INTERRUPT_FAC_UNAVAIL:
1239 kvmppc_handle_fac(vcpu, vcpu->arch.shadow_fscr >> 56);
1240 r = RESUME_GUEST;
1241 break;
1242#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001243 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001244 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1245 r = RESUME_GUEST;
1246 break;
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001247 case BOOK3S_INTERRUPT_TRACE:
1248 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
1249 run->exit_reason = KVM_EXIT_DEBUG;
1250 r = RESUME_HOST;
1251 } else {
1252 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1253 r = RESUME_GUEST;
1254 }
1255 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001256 default:
Alexander Graf468a12c2011-12-09 14:44:13 +01001257 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001258 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001259 /* Ugh - bork here! What did we get? */
1260 printk(KERN_EMERG "exit_nr=0x%x | pc=0x%lx | msr=0x%lx\n",
Alexander Graf468a12c2011-12-09 14:44:13 +01001261 exit_nr, kvmppc_get_pc(vcpu), shadow_srr1);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001262 r = RESUME_HOST;
1263 BUG();
1264 break;
1265 }
Alexander Graf468a12c2011-12-09 14:44:13 +01001266 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001267
1268 if (!(r & RESUME_HOST)) {
1269 /* To avoid clobbering exit_reason, only check for signals if
1270 * we aren't already exiting to userspace for some other
1271 * reason. */
Alexander Grafe371f712011-12-19 13:36:55 +01001272
1273 /*
1274 * Interrupts could be timers for the guest which we have to
1275 * inject again, so let's postpone them until we're in the guest
1276 * and if we really did time things so badly, then we just exit
1277 * again due to a host external interrupt.
1278 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001279 s = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001280 if (s <= 0)
Alexander Graf7ee78852012-08-13 12:44:41 +02001281 r = s;
Scott Wood6c85f522014-01-09 19:18:40 -06001282 else {
1283 /* interrupts now hard-disabled */
Scott Wood5f1c2482013-07-10 17:47:39 -05001284 kvmppc_fix_ee_before_entry();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001285 }
Scott Wood6c85f522014-01-09 19:18:40 -06001286
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +10001287 kvmppc_handle_lost_ext(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001288 }
1289
1290 trace_kvm_book3s_reenter(r, vcpu);
1291
1292 return r;
1293}
1294
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301295static int kvm_arch_vcpu_ioctl_get_sregs_pr(struct kvm_vcpu *vcpu,
1296 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001297{
1298 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1299 int i;
1300
1301 sregs->pvr = vcpu->arch.pvr;
1302
1303 sregs->u.s.sdr1 = to_book3s(vcpu)->sdr1;
1304 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1305 for (i = 0; i < 64; i++) {
1306 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige | i;
1307 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1308 }
1309 } else {
1310 for (i = 0; i < 16; i++)
Alexander Graf5deb8e72014-04-24 13:46:24 +02001311 sregs->u.s.ppc32.sr[i] = kvmppc_get_sr(vcpu, i);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001312
1313 for (i = 0; i < 8; i++) {
1314 sregs->u.s.ppc32.ibat[i] = vcpu3s->ibat[i].raw;
1315 sregs->u.s.ppc32.dbat[i] = vcpu3s->dbat[i].raw;
1316 }
1317 }
1318
1319 return 0;
1320}
1321
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301322static int kvm_arch_vcpu_ioctl_set_sregs_pr(struct kvm_vcpu *vcpu,
1323 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001324{
1325 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1326 int i;
1327
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301328 kvmppc_set_pvr_pr(vcpu, sregs->pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001329
1330 vcpu3s->sdr1 = sregs->u.s.sdr1;
Greg Kurzf4093ee2017-10-16 12:29:44 +02001331#ifdef CONFIG_PPC_BOOK3S_64
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001332 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
Greg Kurzf4093ee2017-10-16 12:29:44 +02001333 /* Flush all SLB entries */
1334 vcpu->arch.mmu.slbmte(vcpu, 0, 0);
1335 vcpu->arch.mmu.slbia(vcpu);
1336
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001337 for (i = 0; i < 64; i++) {
Greg Kurzf4093ee2017-10-16 12:29:44 +02001338 u64 rb = sregs->u.s.ppc64.slb[i].slbe;
1339 u64 rs = sregs->u.s.ppc64.slb[i].slbv;
1340
1341 if (rb & SLB_ESID_V)
1342 vcpu->arch.mmu.slbmte(vcpu, rs, rb);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001343 }
Greg Kurzf4093ee2017-10-16 12:29:44 +02001344 } else
1345#endif
1346 {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001347 for (i = 0; i < 16; i++) {
1348 vcpu->arch.mmu.mtsrin(vcpu, i, sregs->u.s.ppc32.sr[i]);
1349 }
1350 for (i = 0; i < 8; i++) {
1351 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), false,
1352 (u32)sregs->u.s.ppc32.ibat[i]);
1353 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), true,
1354 (u32)(sregs->u.s.ppc32.ibat[i] >> 32));
1355 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), false,
1356 (u32)sregs->u.s.ppc32.dbat[i]);
1357 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), true,
1358 (u32)(sregs->u.s.ppc32.dbat[i] >> 32));
1359 }
1360 }
1361
1362 /* Flush the MMU after messing with the segments */
1363 kvmppc_mmu_pte_flush(vcpu, 0, 0);
1364
1365 return 0;
1366}
1367
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301368static int kvmppc_get_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1369 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001370{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001371 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001372
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001373 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301374 case KVM_REG_PPC_DEBUG_INST:
1375 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1376 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001377 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001378 *val = get_reg_val(id, to_book3s(vcpu)->hior);
Paul Mackerras31f34382011-12-12 12:26:50 +00001379 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001380 case KVM_REG_PPC_VTB:
1381 *val = get_reg_val(id, to_book3s(vcpu)->vtb);
1382 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301383 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001384 case KVM_REG_PPC_LPCR_64:
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301385 /*
1386 * We are only interested in the LPCR_ILE bit
1387 */
1388 if (vcpu->arch.intr_msr & MSR_LE)
1389 *val = get_reg_val(id, LPCR_ILE);
1390 else
1391 *val = get_reg_val(id, 0);
1392 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001393 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001394 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001395 break;
1396 }
1397
1398 return r;
1399}
1400
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301401static void kvmppc_set_lpcr_pr(struct kvm_vcpu *vcpu, u64 new_lpcr)
1402{
1403 if (new_lpcr & LPCR_ILE)
1404 vcpu->arch.intr_msr |= MSR_LE;
1405 else
1406 vcpu->arch.intr_msr &= ~MSR_LE;
1407}
1408
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301409static int kvmppc_set_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1410 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001411{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001412 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001413
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001414 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001415 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001416 to_book3s(vcpu)->hior = set_reg_val(id, *val);
1417 to_book3s(vcpu)->hior_explicit = true;
Paul Mackerras31f34382011-12-12 12:26:50 +00001418 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001419 case KVM_REG_PPC_VTB:
1420 to_book3s(vcpu)->vtb = set_reg_val(id, *val);
1421 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301422 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001423 case KVM_REG_PPC_LPCR_64:
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301424 kvmppc_set_lpcr_pr(vcpu, set_reg_val(id, *val));
1425 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001426 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001427 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001428 break;
1429 }
1430
1431 return r;
1432}
1433
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301434static struct kvm_vcpu *kvmppc_core_vcpu_create_pr(struct kvm *kvm,
1435 unsigned int id)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001436{
1437 struct kvmppc_vcpu_book3s *vcpu_book3s;
1438 struct kvm_vcpu *vcpu;
1439 int err = -ENOMEM;
1440 unsigned long p;
1441
Paul Mackerras3ff95502013-09-20 14:52:49 +10001442 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
1443 if (!vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001444 goto out;
1445
Paul Mackerras3ff95502013-09-20 14:52:49 +10001446 vcpu_book3s = vzalloc(sizeof(struct kvmppc_vcpu_book3s));
1447 if (!vcpu_book3s)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001448 goto free_vcpu;
Paul Mackerras3ff95502013-09-20 14:52:49 +10001449 vcpu->arch.book3s = vcpu_book3s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001450
Alexander Grafab784752014-04-06 23:31:48 +02001451#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001452 vcpu->arch.shadow_vcpu =
1453 kzalloc(sizeof(*vcpu->arch.shadow_vcpu), GFP_KERNEL);
1454 if (!vcpu->arch.shadow_vcpu)
1455 goto free_vcpu3s;
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001456#endif
Paul Mackerras3ff95502013-09-20 14:52:49 +10001457
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001458 err = kvm_vcpu_init(vcpu, kvm, id);
1459 if (err)
1460 goto free_shadow_vcpu;
1461
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001462 err = -ENOMEM;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001463 p = __get_free_page(GFP_KERNEL|__GFP_ZERO);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001464 if (!p)
1465 goto uninit_vcpu;
Alexander Graf89b68c92014-07-13 16:37:12 +02001466 vcpu->arch.shared = (void *)p;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001467#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf5deb8e72014-04-24 13:46:24 +02001468 /* Always start the shared struct in native endian mode */
1469#ifdef __BIG_ENDIAN__
1470 vcpu->arch.shared_big_endian = true;
1471#else
1472 vcpu->arch.shared_big_endian = false;
1473#endif
1474
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001475 /*
1476 * Default to the same as the host if we're on sufficiently
1477 * recent machine that we have 1TB segments;
1478 * otherwise default to PPC970FX.
1479 */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001480 vcpu->arch.pvr = 0x3C0301;
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001481 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1482 vcpu->arch.pvr = mfspr(SPRN_PVR);
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301483 vcpu->arch.intr_msr = MSR_SF;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001484#else
1485 /* default to book3s_32 (750) */
1486 vcpu->arch.pvr = 0x84202;
1487#endif
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301488 kvmppc_set_pvr_pr(vcpu, vcpu->arch.pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001489 vcpu->arch.slb_nr = 64;
1490
Alexander Graf94810ba2014-04-24 13:04:01 +02001491 vcpu->arch.shadow_msr = MSR_USER64 & ~MSR_LE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001492
1493 err = kvmppc_mmu_init(vcpu);
1494 if (err < 0)
1495 goto uninit_vcpu;
1496
1497 return vcpu;
1498
1499uninit_vcpu:
1500 kvm_vcpu_uninit(vcpu);
1501free_shadow_vcpu:
Alexander Grafab784752014-04-06 23:31:48 +02001502#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001503 kfree(vcpu->arch.shadow_vcpu);
1504free_vcpu3s:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001505#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001506 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001507free_vcpu:
1508 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001509out:
1510 return ERR_PTR(err);
1511}
1512
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301513static void kvmppc_core_vcpu_free_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001514{
1515 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
1516
1517 free_page((unsigned long)vcpu->arch.shared & PAGE_MASK);
1518 kvm_vcpu_uninit(vcpu);
Alexander Grafab784752014-04-06 23:31:48 +02001519#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001520 kfree(vcpu->arch.shadow_vcpu);
1521#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001522 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001523 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001524}
1525
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301526static int kvmppc_vcpu_run_pr(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001527{
1528 int ret;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001529#ifdef CONFIG_ALTIVEC
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001530 unsigned long uninitialized_var(vrsave);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001531#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001532
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001533 /* Check if we can run the vcpu at all */
1534 if (!vcpu->arch.sane) {
1535 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
Alexander Graf7d827142011-12-09 15:46:21 +01001536 ret = -EINVAL;
1537 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001538 }
1539
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001540 kvmppc_setup_debug(vcpu);
1541
Alexander Grafe371f712011-12-19 13:36:55 +01001542 /*
1543 * Interrupts could be timers for the guest which we have to inject
1544 * again, so let's postpone them until we're in the guest and if we
1545 * really did time things so badly, then we just exit again due to
1546 * a host external interrupt.
1547 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001548 ret = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001549 if (ret <= 0)
Alexander Graf7d827142011-12-09 15:46:21 +01001550 goto out;
Scott Wood6c85f522014-01-09 19:18:40 -06001551 /* interrupts now hard-disabled */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001552
Anton Blanchardc2085052015-10-29 11:44:08 +11001553 /* Save FPU, Altivec and VSX state */
1554 giveup_all(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001555
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001556 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +02001557 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001558 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
1559
Scott Wood5f1c2482013-07-10 17:47:39 -05001560 kvmppc_fix_ee_before_entry();
Paul Mackerrasdf6909e52011-06-29 00:19:50 +00001561
1562 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
1563
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001564 kvmppc_clear_debug(vcpu);
1565
Paolo Bonzini6edaa532016-06-15 15:18:26 +02001566 /* No need for guest_exit. It's done in handle_exit.
Alexander Graf24afa372012-08-12 12:42:30 +02001567 We also get here with interrupts enabled. */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001568
Paul Mackerras28c483b2012-11-04 18:16:46 +00001569 /* Make sure we save the guest FPU/Altivec/VSX state */
1570 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
1571
Alexander Grafe14e7a12014-04-22 12:26:58 +02001572 /* Make sure we save the guest TAR/EBB/DSCR state */
1573 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
1574
Alexander Graf7d827142011-12-09 15:46:21 +01001575out:
Alexander Graf0652eaa2012-08-12 11:34:21 +02001576 vcpu->mode = OUTSIDE_GUEST_MODE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001577 return ret;
1578}
1579
Paul Mackerras82ed3612011-12-15 02:03:22 +00001580/*
1581 * Get (and clear) the dirty memory log for a memory slot.
1582 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301583static int kvm_vm_ioctl_get_dirty_log_pr(struct kvm *kvm,
1584 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00001585{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001586 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00001587 struct kvm_memory_slot *memslot;
1588 struct kvm_vcpu *vcpu;
1589 ulong ga, ga_end;
1590 int is_dirty = 0;
1591 int r;
1592 unsigned long n;
1593
1594 mutex_lock(&kvm->slots_lock);
1595
1596 r = kvm_get_dirty_log(kvm, log, &is_dirty);
1597 if (r)
1598 goto out;
1599
1600 /* If nothing is dirty, don't bother messing with page tables. */
1601 if (is_dirty) {
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001602 slots = kvm_memslots(kvm);
1603 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00001604
1605 ga = memslot->base_gfn << PAGE_SHIFT;
1606 ga_end = ga + (memslot->npages << PAGE_SHIFT);
1607
1608 kvm_for_each_vcpu(n, vcpu, kvm)
1609 kvmppc_mmu_pte_pflush(vcpu, ga, ga_end);
1610
1611 n = kvm_dirty_bitmap_bytes(memslot);
1612 memset(memslot->dirty_bitmap, 0, n);
1613 }
1614
1615 r = 0;
1616out:
1617 mutex_unlock(&kvm->slots_lock);
1618 return r;
1619}
1620
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301621static void kvmppc_core_flush_memslot_pr(struct kvm *kvm,
1622 struct kvm_memory_slot *memslot)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001623{
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301624 return;
1625}
1626
1627static int kvmppc_core_prepare_memory_region_pr(struct kvm *kvm,
1628 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001629 const struct kvm_userspace_memory_region *mem)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301630{
1631 return 0;
1632}
1633
1634static void kvmppc_core_commit_memory_region_pr(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001635 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001636 const struct kvm_memory_slot *old,
1637 const struct kvm_memory_slot *new)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301638{
1639 return;
1640}
1641
1642static void kvmppc_core_free_memslot_pr(struct kvm_memory_slot *free,
1643 struct kvm_memory_slot *dont)
1644{
1645 return;
1646}
1647
1648static int kvmppc_core_create_memslot_pr(struct kvm_memory_slot *slot,
1649 unsigned long npages)
1650{
1651 return 0;
1652}
1653
1654
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001655#ifdef CONFIG_PPC64
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301656static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1657 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001658{
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001659 long int i;
1660 struct kvm_vcpu *vcpu;
1661
1662 info->flags = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001663
1664 /* SLB is always 64 entries */
1665 info->slb_size = 64;
1666
1667 /* Standard 4k base page size segment */
1668 info->sps[0].page_shift = 12;
1669 info->sps[0].slb_enc = 0;
1670 info->sps[0].enc[0].page_shift = 12;
1671 info->sps[0].enc[0].pte_enc = 0;
1672
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001673 /*
1674 * 64k large page size.
1675 * We only want to put this in if the CPUs we're emulating
1676 * support it, but unfortunately we don't have a vcpu easily
1677 * to hand here to test. Just pick the first vcpu, and if
1678 * that doesn't exist yet, report the minimum capability,
1679 * i.e., no 64k pages.
1680 * 1T segment support goes along with 64k pages.
1681 */
1682 i = 1;
1683 vcpu = kvm_get_vcpu(kvm, 0);
1684 if (vcpu && (vcpu->arch.hflags & BOOK3S_HFLAG_MULTI_PGSIZE)) {
1685 info->flags = KVM_PPC_1T_SEGMENTS;
1686 info->sps[i].page_shift = 16;
1687 info->sps[i].slb_enc = SLB_VSID_L | SLB_VSID_LP_01;
1688 info->sps[i].enc[0].page_shift = 16;
1689 info->sps[i].enc[0].pte_enc = 1;
1690 ++i;
1691 }
1692
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001693 /* Standard 16M large page size segment */
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001694 info->sps[i].page_shift = 24;
1695 info->sps[i].slb_enc = SLB_VSID_L;
1696 info->sps[i].enc[0].page_shift = 24;
1697 info->sps[i].enc[0].pte_enc = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001698
1699 return 0;
1700}
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301701#else
1702static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1703 struct kvm_ppc_smmu_info *info)
1704{
1705 /* We should not get called */
1706 BUG();
1707}
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001708#endif /* CONFIG_PPC64 */
1709
Ian Munsiea413f472012-12-03 18:36:13 +00001710static unsigned int kvm_global_user_count = 0;
1711static DEFINE_SPINLOCK(kvm_global_user_count_lock);
1712
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301713static int kvmppc_core_init_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001714{
Paul Mackerras9308ab82013-09-20 14:52:48 +10001715 mutex_init(&kvm->arch.hpt_mutex);
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001716
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001717#ifdef CONFIG_PPC_BOOK3S_64
1718 /* Start out with the default set of hcalls enabled */
1719 kvmppc_pr_init_default_hcalls(kvm);
1720#endif
1721
Ian Munsiea413f472012-12-03 18:36:13 +00001722 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1723 spin_lock(&kvm_global_user_count_lock);
1724 if (++kvm_global_user_count == 1)
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +10001725 pseries_disable_reloc_on_exc();
Ian Munsiea413f472012-12-03 18:36:13 +00001726 spin_unlock(&kvm_global_user_count_lock);
1727 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001728 return 0;
1729}
1730
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301731static void kvmppc_core_destroy_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001732{
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001733#ifdef CONFIG_PPC64
1734 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
1735#endif
Ian Munsiea413f472012-12-03 18:36:13 +00001736
1737 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1738 spin_lock(&kvm_global_user_count_lock);
1739 BUG_ON(kvm_global_user_count == 0);
1740 if (--kvm_global_user_count == 0)
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +10001741 pseries_enable_reloc_on_exc();
Ian Munsiea413f472012-12-03 18:36:13 +00001742 spin_unlock(&kvm_global_user_count_lock);
1743 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001744}
1745
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301746static int kvmppc_core_check_processor_compat_pr(void)
1747{
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10001748 /*
1749 * Disable KVM for Power9 untill the required bits merged.
1750 */
1751 if (cpu_has_feature(CPU_FTR_ARCH_300))
1752 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301753 return 0;
1754}
1755
1756static long kvm_arch_vm_ioctl_pr(struct file *filp,
1757 unsigned int ioctl, unsigned long arg)
1758{
1759 return -ENOTTY;
1760}
1761
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301762static struct kvmppc_ops kvm_ops_pr = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301763 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_pr,
1764 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_pr,
1765 .get_one_reg = kvmppc_get_one_reg_pr,
1766 .set_one_reg = kvmppc_set_one_reg_pr,
1767 .vcpu_load = kvmppc_core_vcpu_load_pr,
1768 .vcpu_put = kvmppc_core_vcpu_put_pr,
1769 .set_msr = kvmppc_set_msr_pr,
1770 .vcpu_run = kvmppc_vcpu_run_pr,
1771 .vcpu_create = kvmppc_core_vcpu_create_pr,
1772 .vcpu_free = kvmppc_core_vcpu_free_pr,
1773 .check_requests = kvmppc_core_check_requests_pr,
1774 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_pr,
1775 .flush_memslot = kvmppc_core_flush_memslot_pr,
1776 .prepare_memory_region = kvmppc_core_prepare_memory_region_pr,
1777 .commit_memory_region = kvmppc_core_commit_memory_region_pr,
1778 .unmap_hva = kvm_unmap_hva_pr,
1779 .unmap_hva_range = kvm_unmap_hva_range_pr,
1780 .age_hva = kvm_age_hva_pr,
1781 .test_age_hva = kvm_test_age_hva_pr,
1782 .set_spte_hva = kvm_set_spte_hva_pr,
1783 .mmu_destroy = kvmppc_mmu_destroy_pr,
1784 .free_memslot = kvmppc_core_free_memslot_pr,
1785 .create_memslot = kvmppc_core_create_memslot_pr,
1786 .init_vm = kvmppc_core_init_vm_pr,
1787 .destroy_vm = kvmppc_core_destroy_vm_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301788 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_pr,
1789 .emulate_op = kvmppc_core_emulate_op_pr,
1790 .emulate_mtspr = kvmppc_core_emulate_mtspr_pr,
1791 .emulate_mfspr = kvmppc_core_emulate_mfspr_pr,
1792 .fast_vcpu_kick = kvm_vcpu_kick,
1793 .arch_vm_ioctl = kvm_arch_vm_ioctl_pr,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001794#ifdef CONFIG_PPC_BOOK3S_64
1795 .hcall_implemented = kvmppc_hcall_impl_pr,
1796#endif
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301797};
1798
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301799
1800int kvmppc_book3s_init_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001801{
1802 int r;
1803
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301804 r = kvmppc_core_check_processor_compat_pr();
1805 if (r < 0)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001806 return r;
1807
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301808 kvm_ops_pr.owner = THIS_MODULE;
1809 kvmppc_pr_ops = &kvm_ops_pr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001810
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301811 r = kvmppc_mmu_hpte_sysinit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001812 return r;
1813}
1814
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301815void kvmppc_book3s_exit_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001816{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301817 kvmppc_pr_ops = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001818 kvmppc_mmu_hpte_sysexit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001819}
1820
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301821/*
1822 * We only support separate modules for book3s 64
1823 */
1824#ifdef CONFIG_PPC_BOOK3S_64
1825
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301826module_init(kvmppc_book3s_init_pr);
1827module_exit(kvmppc_book3s_exit_pr);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301828
1829MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01001830MODULE_ALIAS_MISCDEV(KVM_MINOR);
1831MODULE_ALIAS("devname:kvm");
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301832#endif