blob: e76f79a45988815cfebb879ddfe29cee1a6311a8 [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>
31#include <asm/uaccess.h>
32#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
63#endif
64
Alexander Grafc01e3f62014-07-11 02:58:58 +020065static bool kvmppc_is_split_real(struct kvm_vcpu *vcpu)
66{
67 ulong msr = kvmppc_get_msr(vcpu);
68 return (msr & (MSR_IR|MSR_DR)) == MSR_DR;
69}
70
71static void kvmppc_fixup_split_real(struct kvm_vcpu *vcpu)
72{
73 ulong msr = kvmppc_get_msr(vcpu);
74 ulong pc = kvmppc_get_pc(vcpu);
75
76 /* We are in DR only split real mode */
77 if ((msr & (MSR_IR|MSR_DR)) != MSR_DR)
78 return;
79
80 /* We have not fixed up the guest already */
81 if (vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK)
82 return;
83
84 /* The code is in fixupable address space */
85 if (pc & SPLIT_HACK_MASK)
86 return;
87
88 vcpu->arch.hflags |= BOOK3S_HFLAG_SPLIT_HACK;
89 kvmppc_set_pc(vcpu, pc | SPLIT_HACK_OFFS);
90}
91
92void kvmppc_unfixup_split_real(struct kvm_vcpu *vcpu);
93
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053094static void kvmppc_core_vcpu_load_pr(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000095{
96#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010097 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
98 memcpy(svcpu->slb, to_book3s(vcpu)->slb_shadow, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +010099 svcpu->slb_max = to_book3s(vcpu)->slb_shadow_max;
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100100 svcpu->in_use = 0;
Alexander Graf468a12c2011-12-09 14:44:13 +0100101 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000102#endif
Alexander Graffb4188b2014-06-09 01:16:32 +0200103
104 /* Disable AIL if supported */
105 if (cpu_has_feature(CPU_FTR_HVMODE) &&
106 cpu_has_feature(CPU_FTR_ARCH_207S))
107 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) & ~LPCR_AIL);
108
Paul Mackerrasa47d72f2012-09-20 19:35:51 +0000109 vcpu->cpu = smp_processor_id();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000110#ifdef CONFIG_PPC_BOOK3S_32
Paul Mackerras3ff95502013-09-20 14:52:49 +1000111 current->thread.kvm_shadow_vcpu = vcpu->arch.shadow_vcpu;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000112#endif
Alexander Grafc01e3f62014-07-11 02:58:58 +0200113
114 if (kvmppc_is_split_real(vcpu))
115 kvmppc_fixup_split_real(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000116}
117
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530118static void kvmppc_core_vcpu_put_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000119{
120#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +0100121 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100122 if (svcpu->in_use) {
123 kvmppc_copy_from_svcpu(vcpu, svcpu);
124 }
Alexander Graf468a12c2011-12-09 14:44:13 +0100125 memcpy(to_book3s(vcpu)->slb_shadow, svcpu->slb, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +0100126 to_book3s(vcpu)->slb_shadow_max = svcpu->slb_max;
127 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000128#endif
129
Alexander Grafc01e3f62014-07-11 02:58:58 +0200130 if (kvmppc_is_split_real(vcpu))
131 kvmppc_unfixup_split_real(vcpu);
132
Paul Mackerras28c483b2012-11-04 18:16:46 +0000133 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
Alexander Grafe14e7a12014-04-22 12:26:58 +0200134 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
Alexander Graffb4188b2014-06-09 01:16:32 +0200135
136 /* Enable AIL if supported */
137 if (cpu_has_feature(CPU_FTR_HVMODE) &&
138 cpu_has_feature(CPU_FTR_ARCH_207S))
139 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) | LPCR_AIL_3);
140
Paul Mackerrasa47d72f2012-09-20 19:35:51 +0000141 vcpu->cpu = -1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000142}
143
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000144/* Copy data needed by real-mode code from vcpu to shadow vcpu */
145void kvmppc_copy_to_svcpu(struct kvmppc_book3s_shadow_vcpu *svcpu,
146 struct kvm_vcpu *vcpu)
147{
148 svcpu->gpr[0] = vcpu->arch.gpr[0];
149 svcpu->gpr[1] = vcpu->arch.gpr[1];
150 svcpu->gpr[2] = vcpu->arch.gpr[2];
151 svcpu->gpr[3] = vcpu->arch.gpr[3];
152 svcpu->gpr[4] = vcpu->arch.gpr[4];
153 svcpu->gpr[5] = vcpu->arch.gpr[5];
154 svcpu->gpr[6] = vcpu->arch.gpr[6];
155 svcpu->gpr[7] = vcpu->arch.gpr[7];
156 svcpu->gpr[8] = vcpu->arch.gpr[8];
157 svcpu->gpr[9] = vcpu->arch.gpr[9];
158 svcpu->gpr[10] = vcpu->arch.gpr[10];
159 svcpu->gpr[11] = vcpu->arch.gpr[11];
160 svcpu->gpr[12] = vcpu->arch.gpr[12];
161 svcpu->gpr[13] = vcpu->arch.gpr[13];
162 svcpu->cr = vcpu->arch.cr;
163 svcpu->xer = vcpu->arch.xer;
164 svcpu->ctr = vcpu->arch.ctr;
165 svcpu->lr = vcpu->arch.lr;
166 svcpu->pc = vcpu->arch.pc;
Alexander Graf616dff82014-04-29 16:48:44 +0200167#ifdef CONFIG_PPC_BOOK3S_64
168 svcpu->shadow_fscr = vcpu->arch.shadow_fscr;
169#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530170 /*
171 * Now also save the current time base value. We use this
172 * to find the guest purr and spurr value.
173 */
174 vcpu->arch.entry_tb = get_tb();
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530175 vcpu->arch.entry_vtb = get_vtb();
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530176 if (cpu_has_feature(CPU_FTR_ARCH_207S))
177 vcpu->arch.entry_ic = mfspr(SPRN_IC);
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100178 svcpu->in_use = true;
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000179}
180
181/* Copy data touched by real-mode code from shadow vcpu back to vcpu */
182void kvmppc_copy_from_svcpu(struct kvm_vcpu *vcpu,
183 struct kvmppc_book3s_shadow_vcpu *svcpu)
184{
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100185 /*
186 * vcpu_put would just call us again because in_use hasn't
187 * been updated yet.
188 */
189 preempt_disable();
190
191 /*
192 * Maybe we were already preempted and synced the svcpu from
193 * our preempt notifiers. Don't bother touching this svcpu then.
194 */
195 if (!svcpu->in_use)
196 goto out;
197
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000198 vcpu->arch.gpr[0] = svcpu->gpr[0];
199 vcpu->arch.gpr[1] = svcpu->gpr[1];
200 vcpu->arch.gpr[2] = svcpu->gpr[2];
201 vcpu->arch.gpr[3] = svcpu->gpr[3];
202 vcpu->arch.gpr[4] = svcpu->gpr[4];
203 vcpu->arch.gpr[5] = svcpu->gpr[5];
204 vcpu->arch.gpr[6] = svcpu->gpr[6];
205 vcpu->arch.gpr[7] = svcpu->gpr[7];
206 vcpu->arch.gpr[8] = svcpu->gpr[8];
207 vcpu->arch.gpr[9] = svcpu->gpr[9];
208 vcpu->arch.gpr[10] = svcpu->gpr[10];
209 vcpu->arch.gpr[11] = svcpu->gpr[11];
210 vcpu->arch.gpr[12] = svcpu->gpr[12];
211 vcpu->arch.gpr[13] = svcpu->gpr[13];
212 vcpu->arch.cr = svcpu->cr;
213 vcpu->arch.xer = svcpu->xer;
214 vcpu->arch.ctr = svcpu->ctr;
215 vcpu->arch.lr = svcpu->lr;
216 vcpu->arch.pc = svcpu->pc;
217 vcpu->arch.shadow_srr1 = svcpu->shadow_srr1;
218 vcpu->arch.fault_dar = svcpu->fault_dar;
219 vcpu->arch.fault_dsisr = svcpu->fault_dsisr;
220 vcpu->arch.last_inst = svcpu->last_inst;
Alexander Graf616dff82014-04-29 16:48:44 +0200221#ifdef CONFIG_PPC_BOOK3S_64
222 vcpu->arch.shadow_fscr = svcpu->shadow_fscr;
223#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530224 /*
225 * Update purr and spurr using time base on exit.
226 */
227 vcpu->arch.purr += get_tb() - vcpu->arch.entry_tb;
228 vcpu->arch.spurr += get_tb() - vcpu->arch.entry_tb;
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530229 vcpu->arch.vtb += get_vtb() - vcpu->arch.entry_vtb;
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530230 if (cpu_has_feature(CPU_FTR_ARCH_207S))
231 vcpu->arch.ic += mfspr(SPRN_IC) - vcpu->arch.entry_ic;
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100232 svcpu->in_use = false;
233
234out:
235 preempt_enable();
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000236}
237
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530238static int kvmppc_core_check_requests_pr(struct kvm_vcpu *vcpu)
Alexander Graf03d25c52012-08-10 12:28:50 +0200239{
Alexander Graf7c973a22012-08-13 12:50:35 +0200240 int r = 1; /* Indicate we want to get back into the guest */
241
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200242 /* We misuse TLB_FLUSH to indicate that we want to clear
243 all shadow cache entries */
244 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
245 kvmppc_mmu_pte_flush(vcpu, 0, 0);
Alexander Graf7c973a22012-08-13 12:50:35 +0200246
247 return r;
Alexander Graf03d25c52012-08-10 12:28:50 +0200248}
249
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200250/************* MMU Notifiers *************/
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000251static void do_kvm_unmap_hva(struct kvm *kvm, unsigned long start,
252 unsigned long end)
253{
254 long i;
255 struct kvm_vcpu *vcpu;
256 struct kvm_memslots *slots;
257 struct kvm_memory_slot *memslot;
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200258
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000259 slots = kvm_memslots(kvm);
260 kvm_for_each_memslot(memslot, slots) {
261 unsigned long hva_start, hva_end;
262 gfn_t gfn, gfn_end;
263
264 hva_start = max(start, memslot->userspace_addr);
265 hva_end = min(end, memslot->userspace_addr +
266 (memslot->npages << PAGE_SHIFT));
267 if (hva_start >= hva_end)
268 continue;
269 /*
270 * {gfn(page) | page intersects with [hva_start, hva_end)} =
271 * {gfn, gfn+1, ..., gfn_end-1}.
272 */
273 gfn = hva_to_gfn_memslot(hva_start, memslot);
274 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
275 kvm_for_each_vcpu(i, vcpu, kvm)
276 kvmppc_mmu_pte_pflush(vcpu, gfn << PAGE_SHIFT,
277 gfn_end << PAGE_SHIFT);
278 }
279}
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200280
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530281static int kvm_unmap_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200282{
283 trace_kvm_unmap_hva(hva);
284
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000285 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200286
287 return 0;
288}
289
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530290static int kvm_unmap_hva_range_pr(struct kvm *kvm, unsigned long start,
291 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200292{
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000293 do_kvm_unmap_hva(kvm, start, end);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200294
295 return 0;
296}
297
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700298static int kvm_age_hva_pr(struct kvm *kvm, unsigned long start,
299 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200300{
301 /* XXX could be more clever ;) */
302 return 0;
303}
304
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530305static int kvm_test_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200306{
307 /* XXX could be more clever ;) */
308 return 0;
309}
310
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530311static void kvm_set_spte_hva_pr(struct kvm *kvm, unsigned long hva, pte_t pte)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200312{
313 /* The page will get remapped properly on its next fault */
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000314 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200315}
316
317/*****************************************/
318
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000319static void kvmppc_recalc_shadow_msr(struct kvm_vcpu *vcpu)
320{
Alexander Graf5deb8e72014-04-24 13:46:24 +0200321 ulong guest_msr = kvmppc_get_msr(vcpu);
322 ulong smsr = guest_msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000323
324 /* Guest MSR values */
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +0530325 smsr &= MSR_FE0 | MSR_FE1 | MSR_SF | MSR_SE | MSR_BE | MSR_LE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000326 /* Process MSR values */
327 smsr |= MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_PR | MSR_EE;
328 /* External providers the guest reserved */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200329 smsr |= (guest_msr & vcpu->arch.guest_owned_ext);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000330 /* 64-bit Process MSR values */
331#ifdef CONFIG_PPC_BOOK3S_64
332 smsr |= MSR_ISF | MSR_HV;
333#endif
334 vcpu->arch.shadow_msr = smsr;
335}
336
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530337static void kvmppc_set_msr_pr(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000338{
Alexander Graf5deb8e72014-04-24 13:46:24 +0200339 ulong old_msr = kvmppc_get_msr(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000340
341#ifdef EXIT_DEBUG
342 printk(KERN_INFO "KVM: Set MSR to 0x%llx\n", msr);
343#endif
344
345 msr &= to_book3s(vcpu)->msr_mask;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200346 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000347 kvmppc_recalc_shadow_msr(vcpu);
348
349 if (msr & MSR_POW) {
350 if (!vcpu->arch.pending_exceptions) {
351 kvm_vcpu_block(vcpu);
Alexander Graf966cd0f2012-03-14 16:55:08 +0100352 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000353 vcpu->stat.halt_wakeup++;
354
355 /* Unset POW bit after we woke up */
356 msr &= ~MSR_POW;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200357 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000358 }
359 }
360
Alexander Grafc01e3f62014-07-11 02:58:58 +0200361 if (kvmppc_is_split_real(vcpu))
362 kvmppc_fixup_split_real(vcpu);
363 else
364 kvmppc_unfixup_split_real(vcpu);
365
Alexander Graf5deb8e72014-04-24 13:46:24 +0200366 if ((kvmppc_get_msr(vcpu) & (MSR_PR|MSR_IR|MSR_DR)) !=
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000367 (old_msr & (MSR_PR|MSR_IR|MSR_DR))) {
368 kvmppc_mmu_flush_segments(vcpu);
369 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
370
371 /* Preload magic page segment when in kernel mode */
372 if (!(msr & MSR_PR) && vcpu->arch.magic_page_pa) {
373 struct kvm_vcpu_arch *a = &vcpu->arch;
374
375 if (msr & MSR_DR)
376 kvmppc_mmu_map_segment(vcpu, a->magic_page_ea);
377 else
378 kvmppc_mmu_map_segment(vcpu, a->magic_page_pa);
379 }
380 }
381
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000382 /*
383 * When switching from 32 to 64-bit, we may have a stale 32-bit
384 * magic page around, we need to flush it. Typically 32-bit magic
385 * page will be instanciated when calling into RTAS. Note: We
386 * assume that such transition only happens while in kernel mode,
387 * ie, we never transition from user 32-bit to kernel 64-bit with
388 * a 32-bit magic page around.
389 */
390 if (vcpu->arch.magic_page_pa &&
391 !(old_msr & MSR_PR) && !(old_msr & MSR_SF) && (msr & MSR_SF)) {
392 /* going from RTAS to normal kernel code */
393 kvmppc_mmu_pte_flush(vcpu, (uint32_t)vcpu->arch.magic_page_pa,
394 ~0xFFFUL);
395 }
396
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000397 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200398 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000399 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
400}
401
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530402void kvmppc_set_pvr_pr(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000403{
404 u32 host_pvr;
405
406 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SLB;
407 vcpu->arch.pvr = pvr;
408#ifdef CONFIG_PPC_BOOK3S_64
409 if ((pvr >= 0x330000) && (pvr < 0x70330000)) {
410 kvmppc_mmu_book3s_64_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200411 if (!to_book3s(vcpu)->hior_explicit)
412 to_book3s(vcpu)->hior = 0xfff00000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000413 to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200414 vcpu->arch.cpu_type = KVM_CPU_3S_64;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000415 } else
416#endif
417 {
418 kvmppc_mmu_book3s_32_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200419 if (!to_book3s(vcpu)->hior_explicit)
420 to_book3s(vcpu)->hior = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000421 to_book3s(vcpu)->msr_mask = 0xffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200422 vcpu->arch.cpu_type = KVM_CPU_3S_32;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000423 }
424
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200425 kvmppc_sanity_check(vcpu);
426
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000427 /* If we are in hypervisor level on 970, we can tell the CPU to
428 * treat DCBZ as 32 bytes store */
429 vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32;
430 if (vcpu->arch.mmu.is_dcbz32(vcpu) && (mfmsr() & MSR_HV) &&
431 !strcmp(cur_cpu_spec->platform, "ppc970"))
432 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
433
434 /* Cell performs badly if MSR_FEx are set. So let's hope nobody
435 really needs them in a VM on Cell and force disable them. */
436 if (!strcmp(cur_cpu_spec->platform, "ppc-cell-be"))
437 to_book3s(vcpu)->msr_mask &= ~(MSR_FE0 | MSR_FE1);
438
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000439 /*
440 * If they're asking for POWER6 or later, set the flag
441 * indicating that we can do multiple large page sizes
442 * and 1TB segments.
443 * Also set the flag that indicates that tlbie has the large
444 * page bit in the RB operand instead of the instruction.
445 */
446 switch (PVR_VER(pvr)) {
447 case PVR_POWER6:
448 case PVR_POWER7:
449 case PVR_POWER7p:
450 case PVR_POWER8:
451 vcpu->arch.hflags |= BOOK3S_HFLAG_MULTI_PGSIZE |
452 BOOK3S_HFLAG_NEW_TLBIE;
453 break;
454 }
455
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000456#ifdef CONFIG_PPC_BOOK3S_32
457 /* 32 bit Book3S always has 32 byte dcbz */
458 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
459#endif
460
461 /* On some CPUs we can execute paired single operations natively */
462 asm ( "mfpvr %0" : "=r"(host_pvr));
463 switch (host_pvr) {
464 case 0x00080200: /* lonestar 2.0 */
465 case 0x00088202: /* lonestar 2.2 */
466 case 0x70000100: /* gekko 1.0 */
467 case 0x00080100: /* gekko 2.0 */
468 case 0x00083203: /* gekko 2.3a */
469 case 0x00083213: /* gekko 2.3b */
470 case 0x00083204: /* gekko 2.4 */
471 case 0x00083214: /* gekko 2.4e (8SE) - retail HW2 */
472 case 0x00087200: /* broadway */
473 vcpu->arch.hflags |= BOOK3S_HFLAG_NATIVE_PS;
474 /* Enable HID2.PSE - in case we need it later */
475 mtspr(SPRN_HID2_GEKKO, mfspr(SPRN_HID2_GEKKO) | (1 << 29));
476 }
477}
478
479/* Book3s_32 CPUs always have 32 bytes cache line size, which Linux assumes. To
480 * make Book3s_32 Linux work on Book3s_64, we have to make sure we trap dcbz to
481 * emulate 32 bytes dcbz length.
482 *
483 * The Book3s_64 inventors also realized this case and implemented a special bit
484 * in the HID5 register, which is a hypervisor ressource. Thus we can't use it.
485 *
486 * My approach here is to patch the dcbz instruction on executing pages.
487 */
488static void kvmppc_patch_dcbz(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte)
489{
490 struct page *hpage;
491 u64 hpage_offset;
492 u32 *page;
493 int i;
494
495 hpage = gfn_to_page(vcpu->kvm, pte->raddr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800496 if (is_error_page(hpage))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000497 return;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000498
499 hpage_offset = pte->raddr & ~PAGE_MASK;
500 hpage_offset &= ~0xFFFULL;
501 hpage_offset /= 4;
502
503 get_page(hpage);
Cong Wang2480b202011-11-25 23:14:16 +0800504 page = kmap_atomic(hpage);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000505
506 /* patch dcbz into reserved instruction, so we trap */
507 for (i=hpage_offset; i < hpage_offset + (HW_PAGE_SIZE / 4); i++)
Alexander Grafcd087ee2014-04-24 13:52:01 +0200508 if ((be32_to_cpu(page[i]) & 0xff0007ff) == INS_DCBZ)
509 page[i] &= cpu_to_be32(0xfffffff7);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000510
Cong Wang2480b202011-11-25 23:14:16 +0800511 kunmap_atomic(page);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000512 put_page(hpage);
513}
514
Yaowei Bai378b4172015-11-16 11:10:24 +0800515static bool kvmppc_visible_gpa(struct kvm_vcpu *vcpu, gpa_t gpa)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000516{
517 ulong mp_pa = vcpu->arch.magic_page_pa;
518
Alexander Graf5deb8e72014-04-24 13:46:24 +0200519 if (!(kvmppc_get_msr(vcpu) & MSR_SF))
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000520 mp_pa = (uint32_t)mp_pa;
521
Alexander Graf89b68c92014-07-13 16:37:12 +0200522 gpa &= ~0xFFFULL;
523 if (unlikely(mp_pa) && unlikely((mp_pa & KVM_PAM) == (gpa & KVM_PAM))) {
Yaowei Bai378b4172015-11-16 11:10:24 +0800524 return true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000525 }
526
Alexander Graf89b68c92014-07-13 16:37:12 +0200527 return kvm_is_visible_gfn(vcpu->kvm, gpa >> PAGE_SHIFT);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000528}
529
530int kvmppc_handle_pagefault(struct kvm_run *run, struct kvm_vcpu *vcpu,
531 ulong eaddr, int vec)
532{
533 bool data = (vec == BOOK3S_INTERRUPT_DATA_STORAGE);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000534 bool iswrite = false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000535 int r = RESUME_GUEST;
536 int relocated;
537 int page_found = 0;
538 struct kvmppc_pte pte;
539 bool is_mmio = false;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200540 bool dr = (kvmppc_get_msr(vcpu) & MSR_DR) ? true : false;
541 bool ir = (kvmppc_get_msr(vcpu) & MSR_IR) ? true : false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000542 u64 vsid;
543
544 relocated = data ? dr : ir;
Paul Mackerras93b159b2013-09-20 14:52:51 +1000545 if (data && (vcpu->arch.fault_dsisr & DSISR_ISSTORE))
546 iswrite = true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000547
548 /* Resolve real address if translation turned on */
549 if (relocated) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000550 page_found = vcpu->arch.mmu.xlate(vcpu, eaddr, &pte, data, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000551 } else {
552 pte.may_execute = true;
553 pte.may_read = true;
554 pte.may_write = true;
555 pte.raddr = eaddr & KVM_PAM;
556 pte.eaddr = eaddr;
557 pte.vpage = eaddr >> 12;
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000558 pte.page_size = MMU_PAGE_64K;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000559 }
560
Alexander Graf5deb8e72014-04-24 13:46:24 +0200561 switch (kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000562 case 0:
563 pte.vpage |= ((u64)VSID_REAL << (SID_SHIFT - 12));
564 break;
565 case MSR_DR:
Alexander Grafc01e3f62014-07-11 02:58:58 +0200566 if (!data &&
567 (vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK) &&
568 ((pte.raddr & SPLIT_HACK_MASK) == SPLIT_HACK_OFFS))
569 pte.raddr &= ~SPLIT_HACK_MASK;
570 /* fall through */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000571 case MSR_IR:
572 vcpu->arch.mmu.esid_to_vsid(vcpu, eaddr >> SID_SHIFT, &vsid);
573
Alexander Graf5deb8e72014-04-24 13:46:24 +0200574 if ((kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) == MSR_DR)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000575 pte.vpage |= ((u64)VSID_REAL_DR << (SID_SHIFT - 12));
576 else
577 pte.vpage |= ((u64)VSID_REAL_IR << (SID_SHIFT - 12));
578 pte.vpage |= vsid;
579
580 if (vsid == -1)
581 page_found = -EINVAL;
582 break;
583 }
584
585 if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
586 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
587 /*
588 * If we do the dcbz hack, we have to NX on every execution,
589 * so we can patch the executing code. This renders our guest
590 * NX-less.
591 */
592 pte.may_execute = !data;
593 }
594
595 if (page_found == -ENOENT) {
596 /* Page not found in guest PTE entries */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200597 u64 ssrr1 = vcpu->arch.shadow_srr1;
598 u64 msr = kvmppc_get_msr(vcpu);
599 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
600 kvmppc_set_dsisr(vcpu, vcpu->arch.fault_dsisr);
601 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000602 kvmppc_book3s_queue_irqprio(vcpu, vec);
603 } else if (page_found == -EPERM) {
604 /* Storage protection */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200605 u32 dsisr = vcpu->arch.fault_dsisr;
606 u64 ssrr1 = vcpu->arch.shadow_srr1;
607 u64 msr = kvmppc_get_msr(vcpu);
608 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
609 dsisr = (dsisr & ~DSISR_NOHPTE) | DSISR_PROTFAULT;
610 kvmppc_set_dsisr(vcpu, dsisr);
611 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000612 kvmppc_book3s_queue_irqprio(vcpu, vec);
613 } else if (page_found == -EINVAL) {
614 /* Page not found in guest SLB */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200615 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000616 kvmppc_book3s_queue_irqprio(vcpu, vec + 0x80);
617 } else if (!is_mmio &&
Alexander Graf89b68c92014-07-13 16:37:12 +0200618 kvmppc_visible_gpa(vcpu, pte.raddr)) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000619 if (data && !(vcpu->arch.fault_dsisr & DSISR_NOHPTE)) {
620 /*
621 * There is already a host HPTE there, presumably
622 * a read-only one for a page the guest thinks
623 * is writable, so get rid of it first.
624 */
625 kvmppc_mmu_unmap_page(vcpu, &pte);
626 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000627 /* The guest's PTE is not mapped yet. Map on the host */
Paul Mackerras93b159b2013-09-20 14:52:51 +1000628 kvmppc_mmu_map_page(vcpu, &pte, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000629 if (data)
630 vcpu->stat.sp_storage++;
631 else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
Paul Mackerras93b159b2013-09-20 14:52:51 +1000632 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32)))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000633 kvmppc_patch_dcbz(vcpu, &pte);
634 } else {
635 /* MMIO */
636 vcpu->stat.mmio_exits++;
637 vcpu->arch.paddr_accessed = pte.raddr;
Alexander Graf6020c0f2012-03-12 02:26:30 +0100638 vcpu->arch.vaddr_accessed = pte.eaddr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000639 r = kvmppc_emulate_mmio(run, vcpu);
640 if ( r == RESUME_HOST_NV )
641 r = RESUME_HOST;
642 }
643
644 return r;
645}
646
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000647/* Give up external provider (FPU, Altivec, VSX) */
648void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr)
649{
650 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000651
Paul Mackerras28c483b2012-11-04 18:16:46 +0000652 /*
653 * VSX instructions can access FP and vector registers, so if
654 * we are giving up VSX, make sure we give up FP and VMX as well.
655 */
656 if (msr & MSR_VSX)
657 msr |= MSR_FP | MSR_VEC;
658
659 msr &= vcpu->arch.guest_owned_ext;
660 if (!msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000661 return;
662
663#ifdef DEBUG_EXT
664 printk(KERN_INFO "Giving up ext 0x%lx\n", msr);
665#endif
666
Paul Mackerras28c483b2012-11-04 18:16:46 +0000667 if (msr & MSR_FP) {
668 /*
669 * Note that on CPUs with VSX, giveup_fpu stores
670 * both the traditional FP registers and the added VSX
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000671 * registers into thread.fp_state.fpr[].
Paul Mackerras28c483b2012-11-04 18:16:46 +0000672 */
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100673 if (t->regs->msr & MSR_FP)
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000674 giveup_fpu(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100675 t->fp_save_area = NULL;
Paul Mackerras28c483b2012-11-04 18:16:46 +0000676 }
677
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000678#ifdef CONFIG_ALTIVEC
Paul Mackerras28c483b2012-11-04 18:16:46 +0000679 if (msr & MSR_VEC) {
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000680 if (current->thread.regs->msr & MSR_VEC)
681 giveup_altivec(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100682 t->vr_save_area = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000683 }
Paul Mackerras28c483b2012-11-04 18:16:46 +0000684#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000685
Paul Mackerras28c483b2012-11-04 18:16:46 +0000686 vcpu->arch.guest_owned_ext &= ~(msr | MSR_VSX);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000687 kvmppc_recalc_shadow_msr(vcpu);
688}
689
Alexander Graf616dff82014-04-29 16:48:44 +0200690/* Give up facility (TAR / EBB / DSCR) */
691static void kvmppc_giveup_fac(struct kvm_vcpu *vcpu, ulong fac)
692{
693#ifdef CONFIG_PPC_BOOK3S_64
694 if (!(vcpu->arch.shadow_fscr & (1ULL << fac))) {
695 /* Facility not available to the guest, ignore giveup request*/
696 return;
697 }
Alexander Grafe14e7a12014-04-22 12:26:58 +0200698
699 switch (fac) {
700 case FSCR_TAR_LG:
701 vcpu->arch.tar = mfspr(SPRN_TAR);
702 mtspr(SPRN_TAR, current->thread.tar);
703 vcpu->arch.shadow_fscr &= ~FSCR_TAR;
704 break;
705 }
Alexander Graf616dff82014-04-29 16:48:44 +0200706#endif
707}
708
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000709/* Handle external providers (FPU, Altivec, VSX) */
710static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
711 ulong msr)
712{
713 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000714
715 /* When we have paired singles, we emulate in software */
716 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE)
717 return RESUME_GUEST;
718
Alexander Graf5deb8e72014-04-24 13:46:24 +0200719 if (!(kvmppc_get_msr(vcpu) & msr)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000720 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
721 return RESUME_GUEST;
722 }
723
Paul Mackerras28c483b2012-11-04 18:16:46 +0000724 if (msr == MSR_VSX) {
725 /* No VSX? Give an illegal instruction interrupt */
726#ifdef CONFIG_VSX
727 if (!cpu_has_feature(CPU_FTR_VSX))
728#endif
729 {
730 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
731 return RESUME_GUEST;
732 }
733
734 /*
735 * We have to load up all the FP and VMX registers before
736 * we can let the guest use VSX instructions.
737 */
738 msr = MSR_FP | MSR_VEC | MSR_VSX;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000739 }
740
Paul Mackerras28c483b2012-11-04 18:16:46 +0000741 /* See if we already own all the ext(s) needed */
742 msr &= ~vcpu->arch.guest_owned_ext;
743 if (!msr)
744 return RESUME_GUEST;
745
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000746#ifdef DEBUG_EXT
747 printk(KERN_INFO "Loading up ext 0x%lx\n", msr);
748#endif
749
Paul Mackerras28c483b2012-11-04 18:16:46 +0000750 if (msr & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530751 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100752 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100753 load_fp_state(&vcpu->arch.fp);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100754 disable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100755 t->fp_save_area = &vcpu->arch.fp;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530756 preempt_enable();
Paul Mackerras28c483b2012-11-04 18:16:46 +0000757 }
758
759 if (msr & MSR_VEC) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000760#ifdef CONFIG_ALTIVEC
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530761 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100762 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100763 load_vr_state(&vcpu->arch.vr);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100764 disable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100765 t->vr_save_area = &vcpu->arch.vr;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530766 preempt_enable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000767#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000768 }
769
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100770 t->regs->msr |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000771 vcpu->arch.guest_owned_ext |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000772 kvmppc_recalc_shadow_msr(vcpu);
773
774 return RESUME_GUEST;
775}
776
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000777/*
778 * Kernel code using FP or VMX could have flushed guest state to
779 * the thread_struct; if so, get it back now.
780 */
781static void kvmppc_handle_lost_ext(struct kvm_vcpu *vcpu)
782{
783 unsigned long lost_ext;
784
785 lost_ext = vcpu->arch.guest_owned_ext & ~current->thread.regs->msr;
786 if (!lost_ext)
787 return;
788
Paul Mackerras09548fd2013-10-15 20:43:01 +1100789 if (lost_ext & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530790 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100791 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100792 load_fp_state(&vcpu->arch.fp);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100793 disable_kernel_fp();
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530794 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100795 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000796#ifdef CONFIG_ALTIVEC
Paul Mackerras09548fd2013-10-15 20:43:01 +1100797 if (lost_ext & MSR_VEC) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530798 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100799 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100800 load_vr_state(&vcpu->arch.vr);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100801 disable_kernel_altivec();
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530802 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100803 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000804#endif
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000805 current->thread.regs->msr |= lost_ext;
806}
807
Alexander Graf616dff82014-04-29 16:48:44 +0200808#ifdef CONFIG_PPC_BOOK3S_64
809
810static void kvmppc_trigger_fac_interrupt(struct kvm_vcpu *vcpu, ulong fac)
811{
812 /* Inject the Interrupt Cause field and trigger a guest interrupt */
813 vcpu->arch.fscr &= ~(0xffULL << 56);
814 vcpu->arch.fscr |= (fac << 56);
815 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_FAC_UNAVAIL);
816}
817
818static void kvmppc_emulate_fac(struct kvm_vcpu *vcpu, ulong fac)
819{
820 enum emulation_result er = EMULATE_FAIL;
821
822 if (!(kvmppc_get_msr(vcpu) & MSR_PR))
823 er = kvmppc_emulate_instruction(vcpu->run, vcpu);
824
825 if ((er != EMULATE_DONE) && (er != EMULATE_AGAIN)) {
826 /* Couldn't emulate, trigger interrupt in guest */
827 kvmppc_trigger_fac_interrupt(vcpu, fac);
828 }
829}
830
831/* Enable facilities (TAR, EBB, DSCR) for the guest */
832static int kvmppc_handle_fac(struct kvm_vcpu *vcpu, ulong fac)
833{
Alexander Graf9916d572014-04-29 17:54:40 +0200834 bool guest_fac_enabled;
Alexander Graf616dff82014-04-29 16:48:44 +0200835 BUG_ON(!cpu_has_feature(CPU_FTR_ARCH_207S));
836
Alexander Graf9916d572014-04-29 17:54:40 +0200837 /*
838 * Not every facility is enabled by FSCR bits, check whether the
839 * guest has this facility enabled at all.
840 */
841 switch (fac) {
842 case FSCR_TAR_LG:
843 case FSCR_EBB_LG:
844 guest_fac_enabled = (vcpu->arch.fscr & (1ULL << fac));
845 break;
846 case FSCR_TM_LG:
847 guest_fac_enabled = kvmppc_get_msr(vcpu) & MSR_TM;
848 break;
849 default:
850 guest_fac_enabled = false;
851 break;
852 }
853
854 if (!guest_fac_enabled) {
Alexander Graf616dff82014-04-29 16:48:44 +0200855 /* Facility not enabled by the guest */
856 kvmppc_trigger_fac_interrupt(vcpu, fac);
857 return RESUME_GUEST;
858 }
859
860 switch (fac) {
Alexander Grafe14e7a12014-04-22 12:26:58 +0200861 case FSCR_TAR_LG:
862 /* TAR switching isn't lazy in Linux yet */
863 current->thread.tar = mfspr(SPRN_TAR);
864 mtspr(SPRN_TAR, vcpu->arch.tar);
865 vcpu->arch.shadow_fscr |= FSCR_TAR;
866 break;
Alexander Graf616dff82014-04-29 16:48:44 +0200867 default:
868 kvmppc_emulate_fac(vcpu, fac);
869 break;
870 }
871
872 return RESUME_GUEST;
873}
Alexander Graf8e6afa32014-07-31 10:21:59 +0200874
875void kvmppc_set_fscr(struct kvm_vcpu *vcpu, u64 fscr)
876{
877 if ((vcpu->arch.fscr & FSCR_TAR) && !(fscr & FSCR_TAR)) {
878 /* TAR got dropped, drop it in shadow too */
879 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
880 }
881 vcpu->arch.fscr = fscr;
882}
Alexander Graf616dff82014-04-29 16:48:44 +0200883#endif
884
Laurent Vivier11dd6ac2016-04-08 18:05:00 +0200885static void kvmppc_setup_debug(struct kvm_vcpu *vcpu)
886{
887 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
888 u64 msr = kvmppc_get_msr(vcpu);
889
890 kvmppc_set_msr(vcpu, msr | MSR_SE);
891 }
892}
893
894static void kvmppc_clear_debug(struct kvm_vcpu *vcpu)
895{
896 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
897 u64 msr = kvmppc_get_msr(vcpu);
898
899 kvmppc_set_msr(vcpu, msr & ~MSR_SE);
900 }
901}
902
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530903int kvmppc_handle_exit_pr(struct kvm_run *run, struct kvm_vcpu *vcpu,
904 unsigned int exit_nr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000905{
906 int r = RESUME_HOST;
Alexander Graf7ee78852012-08-13 12:44:41 +0200907 int s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000908
909 vcpu->stat.sum_exits++;
910
911 run->exit_reason = KVM_EXIT_UNKNOWN;
912 run->ready_for_interrupt_injection = 1;
913
Alexander Grafbd2be682012-08-13 01:04:19 +0200914 /* We get here with MSR.EE=1 */
Alexander Graf3b1d9d72012-04-30 10:56:12 +0200915
Alexander Graf97c95052012-08-02 15:10:00 +0200916 trace_kvm_exit(exit_nr, vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200917 guest_exit();
Alexander Grafc63ddcb2012-08-12 11:27:49 +0200918
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000919 switch (exit_nr) {
920 case BOOK3S_INTERRUPT_INST_STORAGE:
Alexander Graf468a12c2011-12-09 14:44:13 +0100921 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000922 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000923 vcpu->stat.pf_instruc++;
924
Alexander Grafc01e3f62014-07-11 02:58:58 +0200925 if (kvmppc_is_split_real(vcpu))
926 kvmppc_fixup_split_real(vcpu);
927
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000928#ifdef CONFIG_PPC_BOOK3S_32
929 /* We set segments as unused segments when invalidating them. So
930 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000931 {
932 struct kvmppc_book3s_shadow_vcpu *svcpu;
933 u32 sr;
934
935 svcpu = svcpu_get(vcpu);
936 sr = svcpu->sr[kvmppc_get_pc(vcpu) >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +0100937 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000938 if (sr == SR_INVALID) {
939 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
940 r = RESUME_GUEST;
941 break;
942 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000943 }
944#endif
945
946 /* only care about PTEG not found errors, but leave NX alone */
Alexander Graf468a12c2011-12-09 14:44:13 +0100947 if (shadow_srr1 & 0x40000000) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000948 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000949 r = kvmppc_handle_pagefault(run, vcpu, kvmppc_get_pc(vcpu), exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000950 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000951 vcpu->stat.sp_instruc++;
952 } else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
953 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
954 /*
955 * XXX If we do the dcbz hack we use the NX bit to flush&patch the page,
956 * so we can't use the NX bit inside the guest. Let's cross our fingers,
957 * that no guest that needs the dcbz hack does NX.
958 */
959 kvmppc_mmu_pte_flush(vcpu, kvmppc_get_pc(vcpu), ~0xFFFUL);
960 r = RESUME_GUEST;
961 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200962 u64 msr = kvmppc_get_msr(vcpu);
963 msr |= shadow_srr1 & 0x58000000;
964 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000965 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
966 r = RESUME_GUEST;
967 }
968 break;
Alexander Graf468a12c2011-12-09 14:44:13 +0100969 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000970 case BOOK3S_INTERRUPT_DATA_STORAGE:
971 {
972 ulong dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000973 u32 fault_dsisr = vcpu->arch.fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000974 vcpu->stat.pf_storage++;
975
976#ifdef CONFIG_PPC_BOOK3S_32
977 /* We set segments as unused segments when invalidating them. So
978 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000979 {
980 struct kvmppc_book3s_shadow_vcpu *svcpu;
981 u32 sr;
982
983 svcpu = svcpu_get(vcpu);
984 sr = svcpu->sr[dar >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +0100985 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000986 if (sr == SR_INVALID) {
987 kvmppc_mmu_map_segment(vcpu, dar);
988 r = RESUME_GUEST;
989 break;
990 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000991 }
992#endif
993
Paul Mackerras93b159b2013-09-20 14:52:51 +1000994 /*
995 * We need to handle missing shadow PTEs, and
996 * protection faults due to us mapping a page read-only
997 * when the guest thinks it is writable.
998 */
999 if (fault_dsisr & (DSISR_NOHPTE | DSISR_PROTFAULT)) {
1000 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001001 r = kvmppc_handle_pagefault(run, vcpu, dar, exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +10001002 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001003 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001004 kvmppc_set_dar(vcpu, dar);
1005 kvmppc_set_dsisr(vcpu, fault_dsisr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001006 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1007 r = RESUME_GUEST;
1008 }
1009 break;
1010 }
1011 case BOOK3S_INTERRUPT_DATA_SEGMENT:
1012 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_fault_dar(vcpu)) < 0) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001013 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001014 kvmppc_book3s_queue_irqprio(vcpu,
1015 BOOK3S_INTERRUPT_DATA_SEGMENT);
1016 }
1017 r = RESUME_GUEST;
1018 break;
1019 case BOOK3S_INTERRUPT_INST_SEGMENT:
1020 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu)) < 0) {
1021 kvmppc_book3s_queue_irqprio(vcpu,
1022 BOOK3S_INTERRUPT_INST_SEGMENT);
1023 }
1024 r = RESUME_GUEST;
1025 break;
1026 /* We're good on these - the host merely wanted to get our attention */
1027 case BOOK3S_INTERRUPT_DECREMENTER:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001028 case BOOK3S_INTERRUPT_HV_DECREMENTER:
Paul Mackerras40688902014-01-08 21:25:36 +11001029 case BOOK3S_INTERRUPT_DOORBELL:
Alexander Graf568fccc2014-06-16 16:37:38 +02001030 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001031 vcpu->stat.dec_exits++;
1032 r = RESUME_GUEST;
1033 break;
1034 case BOOK3S_INTERRUPT_EXTERNAL:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001035 case BOOK3S_INTERRUPT_EXTERNAL_LEVEL:
1036 case BOOK3S_INTERRUPT_EXTERNAL_HV:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001037 vcpu->stat.ext_intr_exits++;
1038 r = RESUME_GUEST;
1039 break;
1040 case BOOK3S_INTERRUPT_PERFMON:
1041 r = RESUME_GUEST;
1042 break;
1043 case BOOK3S_INTERRUPT_PROGRAM:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001044 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001045 {
1046 enum emulation_result er;
1047 ulong flags;
Mihai Caraman51f04722014-07-23 19:06:21 +03001048 u32 last_inst;
1049 int emul;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001050
1051program_interrupt:
Thomas Huthb69890d2016-05-19 11:33:31 +02001052 /*
1053 * shadow_srr1 only contains valid flags if we came here via
1054 * a program exception. The other exceptions (emulation assist,
1055 * FP unavailable, etc.) do not provide flags in SRR1, so use
1056 * an illegal-instruction exception when injecting a program
1057 * interrupt into the guest.
1058 */
1059 if (exit_nr == BOOK3S_INTERRUPT_PROGRAM)
1060 flags = vcpu->arch.shadow_srr1 & 0x1f0000ull;
1061 else
1062 flags = SRR1_PROGILL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001063
Mihai Caraman51f04722014-07-23 19:06:21 +03001064 emul = kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
1065 if (emul != EMULATE_DONE) {
1066 r = RESUME_GUEST;
1067 break;
1068 }
1069
Alexander Graf5deb8e72014-04-24 13:46:24 +02001070 if (kvmppc_get_msr(vcpu) & MSR_PR) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001071#ifdef EXIT_DEBUG
Mihai Caraman51f04722014-07-23 19:06:21 +03001072 pr_info("Userspace triggered 0x700 exception at\n 0x%lx (0x%x)\n",
1073 kvmppc_get_pc(vcpu), last_inst);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001074#endif
Mihai Caraman51f04722014-07-23 19:06:21 +03001075 if ((last_inst & 0xff0007ff) !=
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001076 (INS_DCBZ & 0xfffffff7)) {
1077 kvmppc_core_queue_program(vcpu, flags);
1078 r = RESUME_GUEST;
1079 break;
1080 }
1081 }
1082
1083 vcpu->stat.emulated_inst_exits++;
1084 er = kvmppc_emulate_instruction(run, vcpu);
1085 switch (er) {
1086 case EMULATE_DONE:
1087 r = RESUME_GUEST_NV;
1088 break;
1089 case EMULATE_AGAIN:
1090 r = RESUME_GUEST;
1091 break;
1092 case EMULATE_FAIL:
1093 printk(KERN_CRIT "%s: emulation at %lx failed (%08x)\n",
Mihai Caraman51f04722014-07-23 19:06:21 +03001094 __func__, kvmppc_get_pc(vcpu), last_inst);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001095 kvmppc_core_queue_program(vcpu, flags);
1096 r = RESUME_GUEST;
1097 break;
1098 case EMULATE_DO_MMIO:
1099 run->exit_reason = KVM_EXIT_MMIO;
1100 r = RESUME_HOST_NV;
1101 break;
Bharat Bhushanc402a3f2013-04-08 00:32:13 +00001102 case EMULATE_EXIT_USER:
Alexander Graf50c7bb82012-12-14 23:42:05 +01001103 r = RESUME_HOST_NV;
1104 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001105 default:
1106 BUG();
1107 }
1108 break;
1109 }
1110 case BOOK3S_INTERRUPT_SYSCALL:
Mihai Caraman51f04722014-07-23 19:06:21 +03001111 {
1112 u32 last_sc;
1113 int emul;
1114
1115 /* Get last sc for papr */
1116 if (vcpu->arch.papr_enabled) {
1117 /* The sc instuction points SRR0 to the next inst */
1118 emul = kvmppc_get_last_inst(vcpu, INST_SC, &last_sc);
1119 if (emul != EMULATE_DONE) {
1120 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) - 4);
1121 r = RESUME_GUEST;
1122 break;
1123 }
1124 }
1125
Alexander Grafa668f2b2011-08-08 17:26:24 +02001126 if (vcpu->arch.papr_enabled &&
Mihai Caraman51f04722014-07-23 19:06:21 +03001127 (last_sc == 0x44000022) &&
Alexander Graf5deb8e72014-04-24 13:46:24 +02001128 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
Alexander Grafa668f2b2011-08-08 17:26:24 +02001129 /* SC 1 papr hypercalls */
1130 ulong cmd = kvmppc_get_gpr(vcpu, 3);
1131 int i;
1132
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301133#ifdef CONFIG_PPC_BOOK3S_64
Alexander Grafa668f2b2011-08-08 17:26:24 +02001134 if (kvmppc_h_pr(vcpu, cmd) == EMULATE_DONE) {
1135 r = RESUME_GUEST;
1136 break;
1137 }
Andreas Schwab96f38d72011-11-08 07:17:39 +00001138#endif
Alexander Grafa668f2b2011-08-08 17:26:24 +02001139
1140 run->papr_hcall.nr = cmd;
1141 for (i = 0; i < 9; ++i) {
1142 ulong gpr = kvmppc_get_gpr(vcpu, 4 + i);
1143 run->papr_hcall.args[i] = gpr;
1144 }
1145 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1146 vcpu->arch.hcall_needed = 1;
1147 r = RESUME_HOST;
1148 } else if (vcpu->arch.osi_enabled &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001149 (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) &&
1150 (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) {
1151 /* MOL hypercalls */
1152 u64 *gprs = run->osi.gprs;
1153 int i;
1154
1155 run->exit_reason = KVM_EXIT_OSI;
1156 for (i = 0; i < 32; i++)
1157 gprs[i] = kvmppc_get_gpr(vcpu, i);
1158 vcpu->arch.osi_needed = 1;
1159 r = RESUME_HOST_NV;
Alexander Graf5deb8e72014-04-24 13:46:24 +02001160 } else if (!(kvmppc_get_msr(vcpu) & MSR_PR) &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001161 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
1162 /* KVM PV hypercalls */
1163 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
1164 r = RESUME_GUEST;
1165 } else {
1166 /* Guest syscalls */
1167 vcpu->stat.syscall_exits++;
1168 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1169 r = RESUME_GUEST;
1170 }
1171 break;
Mihai Caraman51f04722014-07-23 19:06:21 +03001172 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001173 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1174 case BOOK3S_INTERRUPT_ALTIVEC:
1175 case BOOK3S_INTERRUPT_VSX:
1176 {
1177 int ext_msr = 0;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001178 int emul;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001179 u32 last_inst;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001180
Mihai Caraman9a26af62014-07-23 19:06:20 +03001181 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE) {
1182 /* Do paired single instruction emulation */
Mihai Caraman51f04722014-07-23 19:06:21 +03001183 emul = kvmppc_get_last_inst(vcpu, INST_GENERIC,
1184 &last_inst);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001185 if (emul == EMULATE_DONE)
1186 goto program_interrupt;
1187 else
1188 r = RESUME_GUEST;
1189
1190 break;
1191 }
1192
1193 /* Enable external provider */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001194 switch (exit_nr) {
Mihai Caraman9a26af62014-07-23 19:06:20 +03001195 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1196 ext_msr = MSR_FP;
1197 break;
1198
1199 case BOOK3S_INTERRUPT_ALTIVEC:
1200 ext_msr = MSR_VEC;
1201 break;
1202
1203 case BOOK3S_INTERRUPT_VSX:
1204 ext_msr = MSR_VSX;
1205 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001206 }
1207
Mihai Caraman9a26af62014-07-23 19:06:20 +03001208 r = kvmppc_handle_ext(vcpu, exit_nr, ext_msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001209 break;
1210 }
1211 case BOOK3S_INTERRUPT_ALIGNMENT:
Mihai Caraman9a26af62014-07-23 19:06:20 +03001212 {
Mihai Caraman51f04722014-07-23 19:06:21 +03001213 u32 last_inst;
1214 int emul = kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
Mihai Caraman9a26af62014-07-23 19:06:20 +03001215
1216 if (emul == EMULATE_DONE) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001217 u32 dsisr;
1218 u64 dar;
1219
1220 dsisr = kvmppc_alignment_dsisr(vcpu, last_inst);
1221 dar = kvmppc_alignment_dar(vcpu, last_inst);
1222
1223 kvmppc_set_dsisr(vcpu, dsisr);
1224 kvmppc_set_dar(vcpu, dar);
1225
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001226 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1227 }
1228 r = RESUME_GUEST;
1229 break;
Mihai Caraman9a26af62014-07-23 19:06:20 +03001230 }
Alexander Graf616dff82014-04-29 16:48:44 +02001231#ifdef CONFIG_PPC_BOOK3S_64
1232 case BOOK3S_INTERRUPT_FAC_UNAVAIL:
1233 kvmppc_handle_fac(vcpu, vcpu->arch.shadow_fscr >> 56);
1234 r = RESUME_GUEST;
1235 break;
1236#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001237 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001238 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1239 r = RESUME_GUEST;
1240 break;
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001241 case BOOK3S_INTERRUPT_TRACE:
1242 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
1243 run->exit_reason = KVM_EXIT_DEBUG;
1244 r = RESUME_HOST;
1245 } else {
1246 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1247 r = RESUME_GUEST;
1248 }
1249 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001250 default:
Alexander Graf468a12c2011-12-09 14:44:13 +01001251 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001252 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001253 /* Ugh - bork here! What did we get? */
1254 printk(KERN_EMERG "exit_nr=0x%x | pc=0x%lx | msr=0x%lx\n",
Alexander Graf468a12c2011-12-09 14:44:13 +01001255 exit_nr, kvmppc_get_pc(vcpu), shadow_srr1);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001256 r = RESUME_HOST;
1257 BUG();
1258 break;
1259 }
Alexander Graf468a12c2011-12-09 14:44:13 +01001260 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001261
1262 if (!(r & RESUME_HOST)) {
1263 /* To avoid clobbering exit_reason, only check for signals if
1264 * we aren't already exiting to userspace for some other
1265 * reason. */
Alexander Grafe371f712011-12-19 13:36:55 +01001266
1267 /*
1268 * Interrupts could be timers for the guest which we have to
1269 * inject again, so let's postpone them until we're in the guest
1270 * and if we really did time things so badly, then we just exit
1271 * again due to a host external interrupt.
1272 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001273 s = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001274 if (s <= 0)
Alexander Graf7ee78852012-08-13 12:44:41 +02001275 r = s;
Scott Wood6c85f522014-01-09 19:18:40 -06001276 else {
1277 /* interrupts now hard-disabled */
Scott Wood5f1c2482013-07-10 17:47:39 -05001278 kvmppc_fix_ee_before_entry();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001279 }
Scott Wood6c85f522014-01-09 19:18:40 -06001280
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +10001281 kvmppc_handle_lost_ext(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001282 }
1283
1284 trace_kvm_book3s_reenter(r, vcpu);
1285
1286 return r;
1287}
1288
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301289static int kvm_arch_vcpu_ioctl_get_sregs_pr(struct kvm_vcpu *vcpu,
1290 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001291{
1292 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1293 int i;
1294
1295 sregs->pvr = vcpu->arch.pvr;
1296
1297 sregs->u.s.sdr1 = to_book3s(vcpu)->sdr1;
1298 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1299 for (i = 0; i < 64; i++) {
1300 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige | i;
1301 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1302 }
1303 } else {
1304 for (i = 0; i < 16; i++)
Alexander Graf5deb8e72014-04-24 13:46:24 +02001305 sregs->u.s.ppc32.sr[i] = kvmppc_get_sr(vcpu, i);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001306
1307 for (i = 0; i < 8; i++) {
1308 sregs->u.s.ppc32.ibat[i] = vcpu3s->ibat[i].raw;
1309 sregs->u.s.ppc32.dbat[i] = vcpu3s->dbat[i].raw;
1310 }
1311 }
1312
1313 return 0;
1314}
1315
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301316static int kvm_arch_vcpu_ioctl_set_sregs_pr(struct kvm_vcpu *vcpu,
1317 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001318{
1319 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1320 int i;
1321
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301322 kvmppc_set_pvr_pr(vcpu, sregs->pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001323
1324 vcpu3s->sdr1 = sregs->u.s.sdr1;
1325 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1326 for (i = 0; i < 64; i++) {
1327 vcpu->arch.mmu.slbmte(vcpu, sregs->u.s.ppc64.slb[i].slbv,
1328 sregs->u.s.ppc64.slb[i].slbe);
1329 }
1330 } else {
1331 for (i = 0; i < 16; i++) {
1332 vcpu->arch.mmu.mtsrin(vcpu, i, sregs->u.s.ppc32.sr[i]);
1333 }
1334 for (i = 0; i < 8; i++) {
1335 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), false,
1336 (u32)sregs->u.s.ppc32.ibat[i]);
1337 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), true,
1338 (u32)(sregs->u.s.ppc32.ibat[i] >> 32));
1339 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), false,
1340 (u32)sregs->u.s.ppc32.dbat[i]);
1341 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), true,
1342 (u32)(sregs->u.s.ppc32.dbat[i] >> 32));
1343 }
1344 }
1345
1346 /* Flush the MMU after messing with the segments */
1347 kvmppc_mmu_pte_flush(vcpu, 0, 0);
1348
1349 return 0;
1350}
1351
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301352static int kvmppc_get_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1353 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001354{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001355 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001356
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001357 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301358 case KVM_REG_PPC_DEBUG_INST:
1359 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1360 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001361 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001362 *val = get_reg_val(id, to_book3s(vcpu)->hior);
Paul Mackerras31f34382011-12-12 12:26:50 +00001363 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301364 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001365 case KVM_REG_PPC_LPCR_64:
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301366 /*
1367 * We are only interested in the LPCR_ILE bit
1368 */
1369 if (vcpu->arch.intr_msr & MSR_LE)
1370 *val = get_reg_val(id, LPCR_ILE);
1371 else
1372 *val = get_reg_val(id, 0);
1373 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001374 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001375 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001376 break;
1377 }
1378
1379 return r;
1380}
1381
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301382static void kvmppc_set_lpcr_pr(struct kvm_vcpu *vcpu, u64 new_lpcr)
1383{
1384 if (new_lpcr & LPCR_ILE)
1385 vcpu->arch.intr_msr |= MSR_LE;
1386 else
1387 vcpu->arch.intr_msr &= ~MSR_LE;
1388}
1389
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301390static int kvmppc_set_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1391 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001392{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001393 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001394
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001395 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001396 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001397 to_book3s(vcpu)->hior = set_reg_val(id, *val);
1398 to_book3s(vcpu)->hior_explicit = true;
Paul Mackerras31f34382011-12-12 12:26:50 +00001399 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301400 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001401 case KVM_REG_PPC_LPCR_64:
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301402 kvmppc_set_lpcr_pr(vcpu, set_reg_val(id, *val));
1403 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001404 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001405 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001406 break;
1407 }
1408
1409 return r;
1410}
1411
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301412static struct kvm_vcpu *kvmppc_core_vcpu_create_pr(struct kvm *kvm,
1413 unsigned int id)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001414{
1415 struct kvmppc_vcpu_book3s *vcpu_book3s;
1416 struct kvm_vcpu *vcpu;
1417 int err = -ENOMEM;
1418 unsigned long p;
1419
Paul Mackerras3ff95502013-09-20 14:52:49 +10001420 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
1421 if (!vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001422 goto out;
1423
Paul Mackerras3ff95502013-09-20 14:52:49 +10001424 vcpu_book3s = vzalloc(sizeof(struct kvmppc_vcpu_book3s));
1425 if (!vcpu_book3s)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001426 goto free_vcpu;
Paul Mackerras3ff95502013-09-20 14:52:49 +10001427 vcpu->arch.book3s = vcpu_book3s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001428
Alexander Grafab784752014-04-06 23:31:48 +02001429#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001430 vcpu->arch.shadow_vcpu =
1431 kzalloc(sizeof(*vcpu->arch.shadow_vcpu), GFP_KERNEL);
1432 if (!vcpu->arch.shadow_vcpu)
1433 goto free_vcpu3s;
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001434#endif
Paul Mackerras3ff95502013-09-20 14:52:49 +10001435
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001436 err = kvm_vcpu_init(vcpu, kvm, id);
1437 if (err)
1438 goto free_shadow_vcpu;
1439
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001440 err = -ENOMEM;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001441 p = __get_free_page(GFP_KERNEL|__GFP_ZERO);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001442 if (!p)
1443 goto uninit_vcpu;
Alexander Graf89b68c92014-07-13 16:37:12 +02001444 vcpu->arch.shared = (void *)p;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001445#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf5deb8e72014-04-24 13:46:24 +02001446 /* Always start the shared struct in native endian mode */
1447#ifdef __BIG_ENDIAN__
1448 vcpu->arch.shared_big_endian = true;
1449#else
1450 vcpu->arch.shared_big_endian = false;
1451#endif
1452
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001453 /*
1454 * Default to the same as the host if we're on sufficiently
1455 * recent machine that we have 1TB segments;
1456 * otherwise default to PPC970FX.
1457 */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001458 vcpu->arch.pvr = 0x3C0301;
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001459 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1460 vcpu->arch.pvr = mfspr(SPRN_PVR);
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301461 vcpu->arch.intr_msr = MSR_SF;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001462#else
1463 /* default to book3s_32 (750) */
1464 vcpu->arch.pvr = 0x84202;
1465#endif
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301466 kvmppc_set_pvr_pr(vcpu, vcpu->arch.pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001467 vcpu->arch.slb_nr = 64;
1468
Alexander Graf94810ba2014-04-24 13:04:01 +02001469 vcpu->arch.shadow_msr = MSR_USER64 & ~MSR_LE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001470
1471 err = kvmppc_mmu_init(vcpu);
1472 if (err < 0)
1473 goto uninit_vcpu;
1474
1475 return vcpu;
1476
1477uninit_vcpu:
1478 kvm_vcpu_uninit(vcpu);
1479free_shadow_vcpu:
Alexander Grafab784752014-04-06 23:31:48 +02001480#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001481 kfree(vcpu->arch.shadow_vcpu);
1482free_vcpu3s:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001483#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001484 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001485free_vcpu:
1486 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001487out:
1488 return ERR_PTR(err);
1489}
1490
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301491static void kvmppc_core_vcpu_free_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001492{
1493 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
1494
1495 free_page((unsigned long)vcpu->arch.shared & PAGE_MASK);
1496 kvm_vcpu_uninit(vcpu);
Alexander Grafab784752014-04-06 23:31:48 +02001497#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001498 kfree(vcpu->arch.shadow_vcpu);
1499#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001500 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001501 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001502}
1503
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301504static int kvmppc_vcpu_run_pr(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001505{
1506 int ret;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001507#ifdef CONFIG_ALTIVEC
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001508 unsigned long uninitialized_var(vrsave);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001509#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001510
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001511 /* Check if we can run the vcpu at all */
1512 if (!vcpu->arch.sane) {
1513 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
Alexander Graf7d827142011-12-09 15:46:21 +01001514 ret = -EINVAL;
1515 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001516 }
1517
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001518 kvmppc_setup_debug(vcpu);
1519
Alexander Grafe371f712011-12-19 13:36:55 +01001520 /*
1521 * Interrupts could be timers for the guest which we have to inject
1522 * again, so let's postpone them until we're in the guest and if we
1523 * really did time things so badly, then we just exit again due to
1524 * a host external interrupt.
1525 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001526 ret = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001527 if (ret <= 0)
Alexander Graf7d827142011-12-09 15:46:21 +01001528 goto out;
Scott Wood6c85f522014-01-09 19:18:40 -06001529 /* interrupts now hard-disabled */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001530
Anton Blanchardc2085052015-10-29 11:44:08 +11001531 /* Save FPU, Altivec and VSX state */
1532 giveup_all(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001533
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001534 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +02001535 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001536 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
1537
Scott Wood5f1c2482013-07-10 17:47:39 -05001538 kvmppc_fix_ee_before_entry();
Paul Mackerrasdf6909e52011-06-29 00:19:50 +00001539
1540 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
1541
Laurent Vivier11dd6ac2016-04-08 18:05:00 +02001542 kvmppc_clear_debug(vcpu);
1543
Paolo Bonzini6edaa532016-06-15 15:18:26 +02001544 /* No need for guest_exit. It's done in handle_exit.
Alexander Graf24afa372012-08-12 12:42:30 +02001545 We also get here with interrupts enabled. */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001546
Paul Mackerras28c483b2012-11-04 18:16:46 +00001547 /* Make sure we save the guest FPU/Altivec/VSX state */
1548 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
1549
Alexander Grafe14e7a12014-04-22 12:26:58 +02001550 /* Make sure we save the guest TAR/EBB/DSCR state */
1551 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
1552
Alexander Graf7d827142011-12-09 15:46:21 +01001553out:
Alexander Graf0652eaa2012-08-12 11:34:21 +02001554 vcpu->mode = OUTSIDE_GUEST_MODE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001555 return ret;
1556}
1557
Paul Mackerras82ed3612011-12-15 02:03:22 +00001558/*
1559 * Get (and clear) the dirty memory log for a memory slot.
1560 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301561static int kvm_vm_ioctl_get_dirty_log_pr(struct kvm *kvm,
1562 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00001563{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001564 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00001565 struct kvm_memory_slot *memslot;
1566 struct kvm_vcpu *vcpu;
1567 ulong ga, ga_end;
1568 int is_dirty = 0;
1569 int r;
1570 unsigned long n;
1571
1572 mutex_lock(&kvm->slots_lock);
1573
1574 r = kvm_get_dirty_log(kvm, log, &is_dirty);
1575 if (r)
1576 goto out;
1577
1578 /* If nothing is dirty, don't bother messing with page tables. */
1579 if (is_dirty) {
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001580 slots = kvm_memslots(kvm);
1581 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00001582
1583 ga = memslot->base_gfn << PAGE_SHIFT;
1584 ga_end = ga + (memslot->npages << PAGE_SHIFT);
1585
1586 kvm_for_each_vcpu(n, vcpu, kvm)
1587 kvmppc_mmu_pte_pflush(vcpu, ga, ga_end);
1588
1589 n = kvm_dirty_bitmap_bytes(memslot);
1590 memset(memslot->dirty_bitmap, 0, n);
1591 }
1592
1593 r = 0;
1594out:
1595 mutex_unlock(&kvm->slots_lock);
1596 return r;
1597}
1598
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301599static void kvmppc_core_flush_memslot_pr(struct kvm *kvm,
1600 struct kvm_memory_slot *memslot)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001601{
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301602 return;
1603}
1604
1605static int kvmppc_core_prepare_memory_region_pr(struct kvm *kvm,
1606 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001607 const struct kvm_userspace_memory_region *mem)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301608{
1609 return 0;
1610}
1611
1612static void kvmppc_core_commit_memory_region_pr(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001613 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001614 const struct kvm_memory_slot *old,
1615 const struct kvm_memory_slot *new)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301616{
1617 return;
1618}
1619
1620static void kvmppc_core_free_memslot_pr(struct kvm_memory_slot *free,
1621 struct kvm_memory_slot *dont)
1622{
1623 return;
1624}
1625
1626static int kvmppc_core_create_memslot_pr(struct kvm_memory_slot *slot,
1627 unsigned long npages)
1628{
1629 return 0;
1630}
1631
1632
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001633#ifdef CONFIG_PPC64
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301634static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1635 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001636{
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001637 long int i;
1638 struct kvm_vcpu *vcpu;
1639
1640 info->flags = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001641
1642 /* SLB is always 64 entries */
1643 info->slb_size = 64;
1644
1645 /* Standard 4k base page size segment */
1646 info->sps[0].page_shift = 12;
1647 info->sps[0].slb_enc = 0;
1648 info->sps[0].enc[0].page_shift = 12;
1649 info->sps[0].enc[0].pte_enc = 0;
1650
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001651 /*
1652 * 64k large page size.
1653 * We only want to put this in if the CPUs we're emulating
1654 * support it, but unfortunately we don't have a vcpu easily
1655 * to hand here to test. Just pick the first vcpu, and if
1656 * that doesn't exist yet, report the minimum capability,
1657 * i.e., no 64k pages.
1658 * 1T segment support goes along with 64k pages.
1659 */
1660 i = 1;
1661 vcpu = kvm_get_vcpu(kvm, 0);
1662 if (vcpu && (vcpu->arch.hflags & BOOK3S_HFLAG_MULTI_PGSIZE)) {
1663 info->flags = KVM_PPC_1T_SEGMENTS;
1664 info->sps[i].page_shift = 16;
1665 info->sps[i].slb_enc = SLB_VSID_L | SLB_VSID_LP_01;
1666 info->sps[i].enc[0].page_shift = 16;
1667 info->sps[i].enc[0].pte_enc = 1;
1668 ++i;
1669 }
1670
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001671 /* Standard 16M large page size segment */
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001672 info->sps[i].page_shift = 24;
1673 info->sps[i].slb_enc = SLB_VSID_L;
1674 info->sps[i].enc[0].page_shift = 24;
1675 info->sps[i].enc[0].pte_enc = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001676
1677 return 0;
1678}
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301679#else
1680static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1681 struct kvm_ppc_smmu_info *info)
1682{
1683 /* We should not get called */
1684 BUG();
1685}
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001686#endif /* CONFIG_PPC64 */
1687
Ian Munsiea413f472012-12-03 18:36:13 +00001688static unsigned int kvm_global_user_count = 0;
1689static DEFINE_SPINLOCK(kvm_global_user_count_lock);
1690
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301691static int kvmppc_core_init_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001692{
Paul Mackerras9308ab82013-09-20 14:52:48 +10001693 mutex_init(&kvm->arch.hpt_mutex);
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001694
Paul Mackerras699a0ea2014-06-02 11:02:59 +10001695#ifdef CONFIG_PPC_BOOK3S_64
1696 /* Start out with the default set of hcalls enabled */
1697 kvmppc_pr_init_default_hcalls(kvm);
1698#endif
1699
Ian Munsiea413f472012-12-03 18:36:13 +00001700 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1701 spin_lock(&kvm_global_user_count_lock);
1702 if (++kvm_global_user_count == 1)
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +10001703 pseries_disable_reloc_on_exc();
Ian Munsiea413f472012-12-03 18:36:13 +00001704 spin_unlock(&kvm_global_user_count_lock);
1705 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001706 return 0;
1707}
1708
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301709static void kvmppc_core_destroy_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001710{
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001711#ifdef CONFIG_PPC64
1712 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
1713#endif
Ian Munsiea413f472012-12-03 18:36:13 +00001714
1715 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1716 spin_lock(&kvm_global_user_count_lock);
1717 BUG_ON(kvm_global_user_count == 0);
1718 if (--kvm_global_user_count == 0)
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +10001719 pseries_enable_reloc_on_exc();
Ian Munsiea413f472012-12-03 18:36:13 +00001720 spin_unlock(&kvm_global_user_count_lock);
1721 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001722}
1723
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301724static int kvmppc_core_check_processor_compat_pr(void)
1725{
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10001726 /*
1727 * Disable KVM for Power9 untill the required bits merged.
1728 */
1729 if (cpu_has_feature(CPU_FTR_ARCH_300))
1730 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301731 return 0;
1732}
1733
1734static long kvm_arch_vm_ioctl_pr(struct file *filp,
1735 unsigned int ioctl, unsigned long arg)
1736{
1737 return -ENOTTY;
1738}
1739
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301740static struct kvmppc_ops kvm_ops_pr = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301741 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_pr,
1742 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_pr,
1743 .get_one_reg = kvmppc_get_one_reg_pr,
1744 .set_one_reg = kvmppc_set_one_reg_pr,
1745 .vcpu_load = kvmppc_core_vcpu_load_pr,
1746 .vcpu_put = kvmppc_core_vcpu_put_pr,
1747 .set_msr = kvmppc_set_msr_pr,
1748 .vcpu_run = kvmppc_vcpu_run_pr,
1749 .vcpu_create = kvmppc_core_vcpu_create_pr,
1750 .vcpu_free = kvmppc_core_vcpu_free_pr,
1751 .check_requests = kvmppc_core_check_requests_pr,
1752 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_pr,
1753 .flush_memslot = kvmppc_core_flush_memslot_pr,
1754 .prepare_memory_region = kvmppc_core_prepare_memory_region_pr,
1755 .commit_memory_region = kvmppc_core_commit_memory_region_pr,
1756 .unmap_hva = kvm_unmap_hva_pr,
1757 .unmap_hva_range = kvm_unmap_hva_range_pr,
1758 .age_hva = kvm_age_hva_pr,
1759 .test_age_hva = kvm_test_age_hva_pr,
1760 .set_spte_hva = kvm_set_spte_hva_pr,
1761 .mmu_destroy = kvmppc_mmu_destroy_pr,
1762 .free_memslot = kvmppc_core_free_memslot_pr,
1763 .create_memslot = kvmppc_core_create_memslot_pr,
1764 .init_vm = kvmppc_core_init_vm_pr,
1765 .destroy_vm = kvmppc_core_destroy_vm_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301766 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_pr,
1767 .emulate_op = kvmppc_core_emulate_op_pr,
1768 .emulate_mtspr = kvmppc_core_emulate_mtspr_pr,
1769 .emulate_mfspr = kvmppc_core_emulate_mfspr_pr,
1770 .fast_vcpu_kick = kvm_vcpu_kick,
1771 .arch_vm_ioctl = kvm_arch_vm_ioctl_pr,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001772#ifdef CONFIG_PPC_BOOK3S_64
1773 .hcall_implemented = kvmppc_hcall_impl_pr,
1774#endif
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301775};
1776
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301777
1778int kvmppc_book3s_init_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001779{
1780 int r;
1781
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301782 r = kvmppc_core_check_processor_compat_pr();
1783 if (r < 0)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001784 return r;
1785
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301786 kvm_ops_pr.owner = THIS_MODULE;
1787 kvmppc_pr_ops = &kvm_ops_pr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001788
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301789 r = kvmppc_mmu_hpte_sysinit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001790 return r;
1791}
1792
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301793void kvmppc_book3s_exit_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001794{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301795 kvmppc_pr_ops = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001796 kvmppc_mmu_hpte_sysexit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001797}
1798
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301799/*
1800 * We only support separate modules for book3s 64
1801 */
1802#ifdef CONFIG_PPC_BOOK3S_64
1803
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301804module_init(kvmppc_book3s_init_pr);
1805module_exit(kvmppc_book3s_exit_pr);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301806
1807MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01001808MODULE_ALIAS_MISCDEV(KVM_MINOR);
1809MODULE_ALIAS("devname:kvm");
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301810#endif