blob: 8ea7da4b56498398a9bde192a884ab9a51830e7f [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>
Paul Mackerrasdeb26c22013-02-04 18:11:44 +000038#include <asm/hvcall.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
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053065static void kvmppc_core_vcpu_load_pr(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000066{
67#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010068 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
69 memcpy(svcpu->slb, to_book3s(vcpu)->slb_shadow, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +010070 svcpu->slb_max = to_book3s(vcpu)->slb_shadow_max;
Alexander Graf40fdd8c2013-11-29 02:29:00 +010071 svcpu->in_use = 0;
Alexander Graf468a12c2011-12-09 14:44:13 +010072 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000073#endif
Alexander Graffb4188b2014-06-09 01:16:32 +020074
75 /* Disable AIL if supported */
76 if (cpu_has_feature(CPU_FTR_HVMODE) &&
77 cpu_has_feature(CPU_FTR_ARCH_207S))
78 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) & ~LPCR_AIL);
79
Paul Mackerrasa47d72f2012-09-20 19:35:51 +000080 vcpu->cpu = smp_processor_id();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000081#ifdef CONFIG_PPC_BOOK3S_32
Paul Mackerras3ff95502013-09-20 14:52:49 +100082 current->thread.kvm_shadow_vcpu = vcpu->arch.shadow_vcpu;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000083#endif
84}
85
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053086static void kvmppc_core_vcpu_put_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000087{
88#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010089 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Alexander Graf40fdd8c2013-11-29 02:29:00 +010090 if (svcpu->in_use) {
91 kvmppc_copy_from_svcpu(vcpu, svcpu);
92 }
Alexander Graf468a12c2011-12-09 14:44:13 +010093 memcpy(to_book3s(vcpu)->slb_shadow, svcpu->slb, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +010094 to_book3s(vcpu)->slb_shadow_max = svcpu->slb_max;
95 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000096#endif
97
Paul Mackerras28c483b2012-11-04 18:16:46 +000098 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
Alexander Grafe14e7a12014-04-22 12:26:58 +020099 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
Alexander Graffb4188b2014-06-09 01:16:32 +0200100
101 /* Enable AIL if supported */
102 if (cpu_has_feature(CPU_FTR_HVMODE) &&
103 cpu_has_feature(CPU_FTR_ARCH_207S))
104 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) | LPCR_AIL_3);
105
Paul Mackerrasa47d72f2012-09-20 19:35:51 +0000106 vcpu->cpu = -1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000107}
108
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000109/* Copy data needed by real-mode code from vcpu to shadow vcpu */
110void kvmppc_copy_to_svcpu(struct kvmppc_book3s_shadow_vcpu *svcpu,
111 struct kvm_vcpu *vcpu)
112{
113 svcpu->gpr[0] = vcpu->arch.gpr[0];
114 svcpu->gpr[1] = vcpu->arch.gpr[1];
115 svcpu->gpr[2] = vcpu->arch.gpr[2];
116 svcpu->gpr[3] = vcpu->arch.gpr[3];
117 svcpu->gpr[4] = vcpu->arch.gpr[4];
118 svcpu->gpr[5] = vcpu->arch.gpr[5];
119 svcpu->gpr[6] = vcpu->arch.gpr[6];
120 svcpu->gpr[7] = vcpu->arch.gpr[7];
121 svcpu->gpr[8] = vcpu->arch.gpr[8];
122 svcpu->gpr[9] = vcpu->arch.gpr[9];
123 svcpu->gpr[10] = vcpu->arch.gpr[10];
124 svcpu->gpr[11] = vcpu->arch.gpr[11];
125 svcpu->gpr[12] = vcpu->arch.gpr[12];
126 svcpu->gpr[13] = vcpu->arch.gpr[13];
127 svcpu->cr = vcpu->arch.cr;
128 svcpu->xer = vcpu->arch.xer;
129 svcpu->ctr = vcpu->arch.ctr;
130 svcpu->lr = vcpu->arch.lr;
131 svcpu->pc = vcpu->arch.pc;
Alexander Graf616dff82014-04-29 16:48:44 +0200132#ifdef CONFIG_PPC_BOOK3S_64
133 svcpu->shadow_fscr = vcpu->arch.shadow_fscr;
134#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530135 /*
136 * Now also save the current time base value. We use this
137 * to find the guest purr and spurr value.
138 */
139 vcpu->arch.entry_tb = get_tb();
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530140 vcpu->arch.entry_vtb = get_vtb();
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530141 if (cpu_has_feature(CPU_FTR_ARCH_207S))
142 vcpu->arch.entry_ic = mfspr(SPRN_IC);
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100143 svcpu->in_use = true;
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000144}
145
146/* Copy data touched by real-mode code from shadow vcpu back to vcpu */
147void kvmppc_copy_from_svcpu(struct kvm_vcpu *vcpu,
148 struct kvmppc_book3s_shadow_vcpu *svcpu)
149{
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100150 /*
151 * vcpu_put would just call us again because in_use hasn't
152 * been updated yet.
153 */
154 preempt_disable();
155
156 /*
157 * Maybe we were already preempted and synced the svcpu from
158 * our preempt notifiers. Don't bother touching this svcpu then.
159 */
160 if (!svcpu->in_use)
161 goto out;
162
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000163 vcpu->arch.gpr[0] = svcpu->gpr[0];
164 vcpu->arch.gpr[1] = svcpu->gpr[1];
165 vcpu->arch.gpr[2] = svcpu->gpr[2];
166 vcpu->arch.gpr[3] = svcpu->gpr[3];
167 vcpu->arch.gpr[4] = svcpu->gpr[4];
168 vcpu->arch.gpr[5] = svcpu->gpr[5];
169 vcpu->arch.gpr[6] = svcpu->gpr[6];
170 vcpu->arch.gpr[7] = svcpu->gpr[7];
171 vcpu->arch.gpr[8] = svcpu->gpr[8];
172 vcpu->arch.gpr[9] = svcpu->gpr[9];
173 vcpu->arch.gpr[10] = svcpu->gpr[10];
174 vcpu->arch.gpr[11] = svcpu->gpr[11];
175 vcpu->arch.gpr[12] = svcpu->gpr[12];
176 vcpu->arch.gpr[13] = svcpu->gpr[13];
177 vcpu->arch.cr = svcpu->cr;
178 vcpu->arch.xer = svcpu->xer;
179 vcpu->arch.ctr = svcpu->ctr;
180 vcpu->arch.lr = svcpu->lr;
181 vcpu->arch.pc = svcpu->pc;
182 vcpu->arch.shadow_srr1 = svcpu->shadow_srr1;
183 vcpu->arch.fault_dar = svcpu->fault_dar;
184 vcpu->arch.fault_dsisr = svcpu->fault_dsisr;
185 vcpu->arch.last_inst = svcpu->last_inst;
Alexander Graf616dff82014-04-29 16:48:44 +0200186#ifdef CONFIG_PPC_BOOK3S_64
187 vcpu->arch.shadow_fscr = svcpu->shadow_fscr;
188#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530189 /*
190 * Update purr and spurr using time base on exit.
191 */
192 vcpu->arch.purr += get_tb() - vcpu->arch.entry_tb;
193 vcpu->arch.spurr += get_tb() - vcpu->arch.entry_tb;
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530194 vcpu->arch.vtb += get_vtb() - vcpu->arch.entry_vtb;
Aneesh Kumar K.V06da28e2014-06-05 17:38:05 +0530195 if (cpu_has_feature(CPU_FTR_ARCH_207S))
196 vcpu->arch.ic += mfspr(SPRN_IC) - vcpu->arch.entry_ic;
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100197 svcpu->in_use = false;
198
199out:
200 preempt_enable();
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000201}
202
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530203static int kvmppc_core_check_requests_pr(struct kvm_vcpu *vcpu)
Alexander Graf03d25c52012-08-10 12:28:50 +0200204{
Alexander Graf7c973a22012-08-13 12:50:35 +0200205 int r = 1; /* Indicate we want to get back into the guest */
206
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200207 /* We misuse TLB_FLUSH to indicate that we want to clear
208 all shadow cache entries */
209 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
210 kvmppc_mmu_pte_flush(vcpu, 0, 0);
Alexander Graf7c973a22012-08-13 12:50:35 +0200211
212 return r;
Alexander Graf03d25c52012-08-10 12:28:50 +0200213}
214
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200215/************* MMU Notifiers *************/
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000216static void do_kvm_unmap_hva(struct kvm *kvm, unsigned long start,
217 unsigned long end)
218{
219 long i;
220 struct kvm_vcpu *vcpu;
221 struct kvm_memslots *slots;
222 struct kvm_memory_slot *memslot;
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200223
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000224 slots = kvm_memslots(kvm);
225 kvm_for_each_memslot(memslot, slots) {
226 unsigned long hva_start, hva_end;
227 gfn_t gfn, gfn_end;
228
229 hva_start = max(start, memslot->userspace_addr);
230 hva_end = min(end, memslot->userspace_addr +
231 (memslot->npages << PAGE_SHIFT));
232 if (hva_start >= hva_end)
233 continue;
234 /*
235 * {gfn(page) | page intersects with [hva_start, hva_end)} =
236 * {gfn, gfn+1, ..., gfn_end-1}.
237 */
238 gfn = hva_to_gfn_memslot(hva_start, memslot);
239 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
240 kvm_for_each_vcpu(i, vcpu, kvm)
241 kvmppc_mmu_pte_pflush(vcpu, gfn << PAGE_SHIFT,
242 gfn_end << PAGE_SHIFT);
243 }
244}
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200245
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530246static int kvm_unmap_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200247{
248 trace_kvm_unmap_hva(hva);
249
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000250 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200251
252 return 0;
253}
254
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530255static int kvm_unmap_hva_range_pr(struct kvm *kvm, unsigned long start,
256 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200257{
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000258 do_kvm_unmap_hva(kvm, start, end);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200259
260 return 0;
261}
262
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530263static int kvm_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200264{
265 /* XXX could be more clever ;) */
266 return 0;
267}
268
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530269static int kvm_test_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200270{
271 /* XXX could be more clever ;) */
272 return 0;
273}
274
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530275static void kvm_set_spte_hva_pr(struct kvm *kvm, unsigned long hva, pte_t pte)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200276{
277 /* The page will get remapped properly on its next fault */
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000278 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200279}
280
281/*****************************************/
282
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000283static void kvmppc_recalc_shadow_msr(struct kvm_vcpu *vcpu)
284{
Alexander Graf5deb8e72014-04-24 13:46:24 +0200285 ulong guest_msr = kvmppc_get_msr(vcpu);
286 ulong smsr = guest_msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000287
288 /* Guest MSR values */
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +0530289 smsr &= MSR_FE0 | MSR_FE1 | MSR_SF | MSR_SE | MSR_BE | MSR_LE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000290 /* Process MSR values */
291 smsr |= MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_PR | MSR_EE;
292 /* External providers the guest reserved */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200293 smsr |= (guest_msr & vcpu->arch.guest_owned_ext);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000294 /* 64-bit Process MSR values */
295#ifdef CONFIG_PPC_BOOK3S_64
296 smsr |= MSR_ISF | MSR_HV;
297#endif
298 vcpu->arch.shadow_msr = smsr;
299}
300
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530301static void kvmppc_set_msr_pr(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000302{
Alexander Graf5deb8e72014-04-24 13:46:24 +0200303 ulong old_msr = kvmppc_get_msr(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000304
305#ifdef EXIT_DEBUG
306 printk(KERN_INFO "KVM: Set MSR to 0x%llx\n", msr);
307#endif
308
309 msr &= to_book3s(vcpu)->msr_mask;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200310 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000311 kvmppc_recalc_shadow_msr(vcpu);
312
313 if (msr & MSR_POW) {
314 if (!vcpu->arch.pending_exceptions) {
315 kvm_vcpu_block(vcpu);
Alexander Graf966cd0f2012-03-14 16:55:08 +0100316 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000317 vcpu->stat.halt_wakeup++;
318
319 /* Unset POW bit after we woke up */
320 msr &= ~MSR_POW;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200321 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000322 }
323 }
324
Alexander Graf5deb8e72014-04-24 13:46:24 +0200325 if ((kvmppc_get_msr(vcpu) & (MSR_PR|MSR_IR|MSR_DR)) !=
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000326 (old_msr & (MSR_PR|MSR_IR|MSR_DR))) {
327 kvmppc_mmu_flush_segments(vcpu);
328 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
329
330 /* Preload magic page segment when in kernel mode */
331 if (!(msr & MSR_PR) && vcpu->arch.magic_page_pa) {
332 struct kvm_vcpu_arch *a = &vcpu->arch;
333
334 if (msr & MSR_DR)
335 kvmppc_mmu_map_segment(vcpu, a->magic_page_ea);
336 else
337 kvmppc_mmu_map_segment(vcpu, a->magic_page_pa);
338 }
339 }
340
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000341 /*
342 * When switching from 32 to 64-bit, we may have a stale 32-bit
343 * magic page around, we need to flush it. Typically 32-bit magic
344 * page will be instanciated when calling into RTAS. Note: We
345 * assume that such transition only happens while in kernel mode,
346 * ie, we never transition from user 32-bit to kernel 64-bit with
347 * a 32-bit magic page around.
348 */
349 if (vcpu->arch.magic_page_pa &&
350 !(old_msr & MSR_PR) && !(old_msr & MSR_SF) && (msr & MSR_SF)) {
351 /* going from RTAS to normal kernel code */
352 kvmppc_mmu_pte_flush(vcpu, (uint32_t)vcpu->arch.magic_page_pa,
353 ~0xFFFUL);
354 }
355
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000356 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200357 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000358 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
359}
360
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530361void kvmppc_set_pvr_pr(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000362{
363 u32 host_pvr;
364
365 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SLB;
366 vcpu->arch.pvr = pvr;
367#ifdef CONFIG_PPC_BOOK3S_64
368 if ((pvr >= 0x330000) && (pvr < 0x70330000)) {
369 kvmppc_mmu_book3s_64_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200370 if (!to_book3s(vcpu)->hior_explicit)
371 to_book3s(vcpu)->hior = 0xfff00000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000372 to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200373 vcpu->arch.cpu_type = KVM_CPU_3S_64;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000374 } else
375#endif
376 {
377 kvmppc_mmu_book3s_32_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200378 if (!to_book3s(vcpu)->hior_explicit)
379 to_book3s(vcpu)->hior = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000380 to_book3s(vcpu)->msr_mask = 0xffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200381 vcpu->arch.cpu_type = KVM_CPU_3S_32;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000382 }
383
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200384 kvmppc_sanity_check(vcpu);
385
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000386 /* If we are in hypervisor level on 970, we can tell the CPU to
387 * treat DCBZ as 32 bytes store */
388 vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32;
389 if (vcpu->arch.mmu.is_dcbz32(vcpu) && (mfmsr() & MSR_HV) &&
390 !strcmp(cur_cpu_spec->platform, "ppc970"))
391 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
392
393 /* Cell performs badly if MSR_FEx are set. So let's hope nobody
394 really needs them in a VM on Cell and force disable them. */
395 if (!strcmp(cur_cpu_spec->platform, "ppc-cell-be"))
396 to_book3s(vcpu)->msr_mask &= ~(MSR_FE0 | MSR_FE1);
397
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000398 /*
399 * If they're asking for POWER6 or later, set the flag
400 * indicating that we can do multiple large page sizes
401 * and 1TB segments.
402 * Also set the flag that indicates that tlbie has the large
403 * page bit in the RB operand instead of the instruction.
404 */
405 switch (PVR_VER(pvr)) {
406 case PVR_POWER6:
407 case PVR_POWER7:
408 case PVR_POWER7p:
409 case PVR_POWER8:
410 vcpu->arch.hflags |= BOOK3S_HFLAG_MULTI_PGSIZE |
411 BOOK3S_HFLAG_NEW_TLBIE;
412 break;
413 }
414
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000415#ifdef CONFIG_PPC_BOOK3S_32
416 /* 32 bit Book3S always has 32 byte dcbz */
417 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
418#endif
419
420 /* On some CPUs we can execute paired single operations natively */
421 asm ( "mfpvr %0" : "=r"(host_pvr));
422 switch (host_pvr) {
423 case 0x00080200: /* lonestar 2.0 */
424 case 0x00088202: /* lonestar 2.2 */
425 case 0x70000100: /* gekko 1.0 */
426 case 0x00080100: /* gekko 2.0 */
427 case 0x00083203: /* gekko 2.3a */
428 case 0x00083213: /* gekko 2.3b */
429 case 0x00083204: /* gekko 2.4 */
430 case 0x00083214: /* gekko 2.4e (8SE) - retail HW2 */
431 case 0x00087200: /* broadway */
432 vcpu->arch.hflags |= BOOK3S_HFLAG_NATIVE_PS;
433 /* Enable HID2.PSE - in case we need it later */
434 mtspr(SPRN_HID2_GEKKO, mfspr(SPRN_HID2_GEKKO) | (1 << 29));
435 }
436}
437
438/* Book3s_32 CPUs always have 32 bytes cache line size, which Linux assumes. To
439 * make Book3s_32 Linux work on Book3s_64, we have to make sure we trap dcbz to
440 * emulate 32 bytes dcbz length.
441 *
442 * The Book3s_64 inventors also realized this case and implemented a special bit
443 * in the HID5 register, which is a hypervisor ressource. Thus we can't use it.
444 *
445 * My approach here is to patch the dcbz instruction on executing pages.
446 */
447static void kvmppc_patch_dcbz(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte)
448{
449 struct page *hpage;
450 u64 hpage_offset;
451 u32 *page;
452 int i;
453
454 hpage = gfn_to_page(vcpu->kvm, pte->raddr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800455 if (is_error_page(hpage))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000456 return;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000457
458 hpage_offset = pte->raddr & ~PAGE_MASK;
459 hpage_offset &= ~0xFFFULL;
460 hpage_offset /= 4;
461
462 get_page(hpage);
Cong Wang2480b202011-11-25 23:14:16 +0800463 page = kmap_atomic(hpage);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000464
465 /* patch dcbz into reserved instruction, so we trap */
466 for (i=hpage_offset; i < hpage_offset + (HW_PAGE_SIZE / 4); i++)
Alexander Grafcd087ee2014-04-24 13:52:01 +0200467 if ((be32_to_cpu(page[i]) & 0xff0007ff) == INS_DCBZ)
468 page[i] &= cpu_to_be32(0xfffffff7);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000469
Cong Wang2480b202011-11-25 23:14:16 +0800470 kunmap_atomic(page);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000471 put_page(hpage);
472}
473
474static int kvmppc_visible_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
475{
476 ulong mp_pa = vcpu->arch.magic_page_pa;
477
Alexander Graf5deb8e72014-04-24 13:46:24 +0200478 if (!(kvmppc_get_msr(vcpu) & MSR_SF))
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000479 mp_pa = (uint32_t)mp_pa;
480
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000481 if (unlikely(mp_pa) &&
482 unlikely((mp_pa & KVM_PAM) >> PAGE_SHIFT == gfn)) {
483 return 1;
484 }
485
486 return kvm_is_visible_gfn(vcpu->kvm, gfn);
487}
488
489int kvmppc_handle_pagefault(struct kvm_run *run, struct kvm_vcpu *vcpu,
490 ulong eaddr, int vec)
491{
492 bool data = (vec == BOOK3S_INTERRUPT_DATA_STORAGE);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000493 bool iswrite = false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000494 int r = RESUME_GUEST;
495 int relocated;
496 int page_found = 0;
497 struct kvmppc_pte pte;
498 bool is_mmio = false;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200499 bool dr = (kvmppc_get_msr(vcpu) & MSR_DR) ? true : false;
500 bool ir = (kvmppc_get_msr(vcpu) & MSR_IR) ? true : false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000501 u64 vsid;
502
503 relocated = data ? dr : ir;
Paul Mackerras93b159b2013-09-20 14:52:51 +1000504 if (data && (vcpu->arch.fault_dsisr & DSISR_ISSTORE))
505 iswrite = true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000506
507 /* Resolve real address if translation turned on */
508 if (relocated) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000509 page_found = vcpu->arch.mmu.xlate(vcpu, eaddr, &pte, data, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000510 } else {
511 pte.may_execute = true;
512 pte.may_read = true;
513 pte.may_write = true;
514 pte.raddr = eaddr & KVM_PAM;
515 pte.eaddr = eaddr;
516 pte.vpage = eaddr >> 12;
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000517 pte.page_size = MMU_PAGE_64K;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000518 }
519
Alexander Graf5deb8e72014-04-24 13:46:24 +0200520 switch (kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000521 case 0:
522 pte.vpage |= ((u64)VSID_REAL << (SID_SHIFT - 12));
523 break;
524 case MSR_DR:
525 case MSR_IR:
526 vcpu->arch.mmu.esid_to_vsid(vcpu, eaddr >> SID_SHIFT, &vsid);
527
Alexander Graf5deb8e72014-04-24 13:46:24 +0200528 if ((kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) == MSR_DR)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000529 pte.vpage |= ((u64)VSID_REAL_DR << (SID_SHIFT - 12));
530 else
531 pte.vpage |= ((u64)VSID_REAL_IR << (SID_SHIFT - 12));
532 pte.vpage |= vsid;
533
534 if (vsid == -1)
535 page_found = -EINVAL;
536 break;
537 }
538
539 if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
540 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
541 /*
542 * If we do the dcbz hack, we have to NX on every execution,
543 * so we can patch the executing code. This renders our guest
544 * NX-less.
545 */
546 pte.may_execute = !data;
547 }
548
549 if (page_found == -ENOENT) {
550 /* Page not found in guest PTE entries */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200551 u64 ssrr1 = vcpu->arch.shadow_srr1;
552 u64 msr = kvmppc_get_msr(vcpu);
553 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
554 kvmppc_set_dsisr(vcpu, vcpu->arch.fault_dsisr);
555 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000556 kvmppc_book3s_queue_irqprio(vcpu, vec);
557 } else if (page_found == -EPERM) {
558 /* Storage protection */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200559 u32 dsisr = vcpu->arch.fault_dsisr;
560 u64 ssrr1 = vcpu->arch.shadow_srr1;
561 u64 msr = kvmppc_get_msr(vcpu);
562 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
563 dsisr = (dsisr & ~DSISR_NOHPTE) | DSISR_PROTFAULT;
564 kvmppc_set_dsisr(vcpu, dsisr);
565 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000566 kvmppc_book3s_queue_irqprio(vcpu, vec);
567 } else if (page_found == -EINVAL) {
568 /* Page not found in guest SLB */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200569 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000570 kvmppc_book3s_queue_irqprio(vcpu, vec + 0x80);
571 } else if (!is_mmio &&
572 kvmppc_visible_gfn(vcpu, pte.raddr >> PAGE_SHIFT)) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000573 if (data && !(vcpu->arch.fault_dsisr & DSISR_NOHPTE)) {
574 /*
575 * There is already a host HPTE there, presumably
576 * a read-only one for a page the guest thinks
577 * is writable, so get rid of it first.
578 */
579 kvmppc_mmu_unmap_page(vcpu, &pte);
580 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000581 /* The guest's PTE is not mapped yet. Map on the host */
Paul Mackerras93b159b2013-09-20 14:52:51 +1000582 kvmppc_mmu_map_page(vcpu, &pte, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000583 if (data)
584 vcpu->stat.sp_storage++;
585 else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
Paul Mackerras93b159b2013-09-20 14:52:51 +1000586 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32)))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000587 kvmppc_patch_dcbz(vcpu, &pte);
588 } else {
589 /* MMIO */
590 vcpu->stat.mmio_exits++;
591 vcpu->arch.paddr_accessed = pte.raddr;
Alexander Graf6020c0f2012-03-12 02:26:30 +0100592 vcpu->arch.vaddr_accessed = pte.eaddr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000593 r = kvmppc_emulate_mmio(run, vcpu);
594 if ( r == RESUME_HOST_NV )
595 r = RESUME_HOST;
596 }
597
598 return r;
599}
600
601static inline int get_fpr_index(int i)
602{
Paul Mackerras28c483b2012-11-04 18:16:46 +0000603 return i * TS_FPRWIDTH;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000604}
605
606/* Give up external provider (FPU, Altivec, VSX) */
607void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr)
608{
609 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000610
Paul Mackerras28c483b2012-11-04 18:16:46 +0000611 /*
612 * VSX instructions can access FP and vector registers, so if
613 * we are giving up VSX, make sure we give up FP and VMX as well.
614 */
615 if (msr & MSR_VSX)
616 msr |= MSR_FP | MSR_VEC;
617
618 msr &= vcpu->arch.guest_owned_ext;
619 if (!msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000620 return;
621
622#ifdef DEBUG_EXT
623 printk(KERN_INFO "Giving up ext 0x%lx\n", msr);
624#endif
625
Paul Mackerras28c483b2012-11-04 18:16:46 +0000626 if (msr & MSR_FP) {
627 /*
628 * Note that on CPUs with VSX, giveup_fpu stores
629 * both the traditional FP registers and the added VSX
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000630 * registers into thread.fp_state.fpr[].
Paul Mackerras28c483b2012-11-04 18:16:46 +0000631 */
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100632 if (t->regs->msr & MSR_FP)
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000633 giveup_fpu(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100634 t->fp_save_area = NULL;
Paul Mackerras28c483b2012-11-04 18:16:46 +0000635 }
636
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000637#ifdef CONFIG_ALTIVEC
Paul Mackerras28c483b2012-11-04 18:16:46 +0000638 if (msr & MSR_VEC) {
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000639 if (current->thread.regs->msr & MSR_VEC)
640 giveup_altivec(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100641 t->vr_save_area = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000642 }
Paul Mackerras28c483b2012-11-04 18:16:46 +0000643#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000644
Paul Mackerras28c483b2012-11-04 18:16:46 +0000645 vcpu->arch.guest_owned_ext &= ~(msr | MSR_VSX);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000646 kvmppc_recalc_shadow_msr(vcpu);
647}
648
Alexander Graf616dff82014-04-29 16:48:44 +0200649/* Give up facility (TAR / EBB / DSCR) */
650static void kvmppc_giveup_fac(struct kvm_vcpu *vcpu, ulong fac)
651{
652#ifdef CONFIG_PPC_BOOK3S_64
653 if (!(vcpu->arch.shadow_fscr & (1ULL << fac))) {
654 /* Facility not available to the guest, ignore giveup request*/
655 return;
656 }
Alexander Grafe14e7a12014-04-22 12:26:58 +0200657
658 switch (fac) {
659 case FSCR_TAR_LG:
660 vcpu->arch.tar = mfspr(SPRN_TAR);
661 mtspr(SPRN_TAR, current->thread.tar);
662 vcpu->arch.shadow_fscr &= ~FSCR_TAR;
663 break;
664 }
Alexander Graf616dff82014-04-29 16:48:44 +0200665#endif
666}
667
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000668static int kvmppc_read_inst(struct kvm_vcpu *vcpu)
669{
670 ulong srr0 = kvmppc_get_pc(vcpu);
671 u32 last_inst = kvmppc_get_last_inst(vcpu);
672 int ret;
673
674 ret = kvmppc_ld(vcpu, &srr0, sizeof(u32), &last_inst, false);
675 if (ret == -ENOENT) {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200676 ulong msr = kvmppc_get_msr(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000677
678 msr = kvmppc_set_field(msr, 33, 33, 1);
679 msr = kvmppc_set_field(msr, 34, 36, 0);
Alexander Graf5deb8e72014-04-24 13:46:24 +0200680 msr = kvmppc_set_field(msr, 42, 47, 0);
681 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000682 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_INST_STORAGE);
683 return EMULATE_AGAIN;
684 }
685
686 return EMULATE_DONE;
687}
688
689static int kvmppc_check_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr)
690{
691
692 /* Need to do paired single emulation? */
693 if (!(vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE))
694 return EMULATE_DONE;
695
696 /* Read out the instruction */
697 if (kvmppc_read_inst(vcpu) == EMULATE_DONE)
698 /* Need to emulate */
699 return EMULATE_FAIL;
700
701 return EMULATE_AGAIN;
702}
703
704/* Handle external providers (FPU, Altivec, VSX) */
705static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
706 ulong msr)
707{
708 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000709
710 /* When we have paired singles, we emulate in software */
711 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE)
712 return RESUME_GUEST;
713
Alexander Graf5deb8e72014-04-24 13:46:24 +0200714 if (!(kvmppc_get_msr(vcpu) & msr)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000715 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
716 return RESUME_GUEST;
717 }
718
Paul Mackerras28c483b2012-11-04 18:16:46 +0000719 if (msr == MSR_VSX) {
720 /* No VSX? Give an illegal instruction interrupt */
721#ifdef CONFIG_VSX
722 if (!cpu_has_feature(CPU_FTR_VSX))
723#endif
724 {
725 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
726 return RESUME_GUEST;
727 }
728
729 /*
730 * We have to load up all the FP and VMX registers before
731 * we can let the guest use VSX instructions.
732 */
733 msr = MSR_FP | MSR_VEC | MSR_VSX;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000734 }
735
Paul Mackerras28c483b2012-11-04 18:16:46 +0000736 /* See if we already own all the ext(s) needed */
737 msr &= ~vcpu->arch.guest_owned_ext;
738 if (!msr)
739 return RESUME_GUEST;
740
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000741#ifdef DEBUG_EXT
742 printk(KERN_INFO "Loading up ext 0x%lx\n", msr);
743#endif
744
Paul Mackerras28c483b2012-11-04 18:16:46 +0000745 if (msr & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530746 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100747 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100748 load_fp_state(&vcpu->arch.fp);
749 t->fp_save_area = &vcpu->arch.fp;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530750 preempt_enable();
Paul Mackerras28c483b2012-11-04 18:16:46 +0000751 }
752
753 if (msr & MSR_VEC) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000754#ifdef CONFIG_ALTIVEC
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530755 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100756 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100757 load_vr_state(&vcpu->arch.vr);
758 t->vr_save_area = &vcpu->arch.vr;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530759 preempt_enable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000760#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000761 }
762
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100763 t->regs->msr |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000764 vcpu->arch.guest_owned_ext |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000765 kvmppc_recalc_shadow_msr(vcpu);
766
767 return RESUME_GUEST;
768}
769
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000770/*
771 * Kernel code using FP or VMX could have flushed guest state to
772 * the thread_struct; if so, get it back now.
773 */
774static void kvmppc_handle_lost_ext(struct kvm_vcpu *vcpu)
775{
776 unsigned long lost_ext;
777
778 lost_ext = vcpu->arch.guest_owned_ext & ~current->thread.regs->msr;
779 if (!lost_ext)
780 return;
781
Paul Mackerras09548fd2013-10-15 20:43:01 +1100782 if (lost_ext & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530783 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100784 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100785 load_fp_state(&vcpu->arch.fp);
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530786 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100787 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000788#ifdef CONFIG_ALTIVEC
Paul Mackerras09548fd2013-10-15 20:43:01 +1100789 if (lost_ext & MSR_VEC) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530790 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100791 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100792 load_vr_state(&vcpu->arch.vr);
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530793 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100794 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000795#endif
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000796 current->thread.regs->msr |= lost_ext;
797}
798
Alexander Graf616dff82014-04-29 16:48:44 +0200799#ifdef CONFIG_PPC_BOOK3S_64
800
801static void kvmppc_trigger_fac_interrupt(struct kvm_vcpu *vcpu, ulong fac)
802{
803 /* Inject the Interrupt Cause field and trigger a guest interrupt */
804 vcpu->arch.fscr &= ~(0xffULL << 56);
805 vcpu->arch.fscr |= (fac << 56);
806 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_FAC_UNAVAIL);
807}
808
809static void kvmppc_emulate_fac(struct kvm_vcpu *vcpu, ulong fac)
810{
811 enum emulation_result er = EMULATE_FAIL;
812
813 if (!(kvmppc_get_msr(vcpu) & MSR_PR))
814 er = kvmppc_emulate_instruction(vcpu->run, vcpu);
815
816 if ((er != EMULATE_DONE) && (er != EMULATE_AGAIN)) {
817 /* Couldn't emulate, trigger interrupt in guest */
818 kvmppc_trigger_fac_interrupt(vcpu, fac);
819 }
820}
821
822/* Enable facilities (TAR, EBB, DSCR) for the guest */
823static int kvmppc_handle_fac(struct kvm_vcpu *vcpu, ulong fac)
824{
Alexander Graf9916d572014-04-29 17:54:40 +0200825 bool guest_fac_enabled;
Alexander Graf616dff82014-04-29 16:48:44 +0200826 BUG_ON(!cpu_has_feature(CPU_FTR_ARCH_207S));
827
Alexander Graf9916d572014-04-29 17:54:40 +0200828 /*
829 * Not every facility is enabled by FSCR bits, check whether the
830 * guest has this facility enabled at all.
831 */
832 switch (fac) {
833 case FSCR_TAR_LG:
834 case FSCR_EBB_LG:
835 guest_fac_enabled = (vcpu->arch.fscr & (1ULL << fac));
836 break;
837 case FSCR_TM_LG:
838 guest_fac_enabled = kvmppc_get_msr(vcpu) & MSR_TM;
839 break;
840 default:
841 guest_fac_enabled = false;
842 break;
843 }
844
845 if (!guest_fac_enabled) {
Alexander Graf616dff82014-04-29 16:48:44 +0200846 /* Facility not enabled by the guest */
847 kvmppc_trigger_fac_interrupt(vcpu, fac);
848 return RESUME_GUEST;
849 }
850
851 switch (fac) {
Alexander Grafe14e7a12014-04-22 12:26:58 +0200852 case FSCR_TAR_LG:
853 /* TAR switching isn't lazy in Linux yet */
854 current->thread.tar = mfspr(SPRN_TAR);
855 mtspr(SPRN_TAR, vcpu->arch.tar);
856 vcpu->arch.shadow_fscr |= FSCR_TAR;
857 break;
Alexander Graf616dff82014-04-29 16:48:44 +0200858 default:
859 kvmppc_emulate_fac(vcpu, fac);
860 break;
861 }
862
863 return RESUME_GUEST;
864}
865#endif
866
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530867int kvmppc_handle_exit_pr(struct kvm_run *run, struct kvm_vcpu *vcpu,
868 unsigned int exit_nr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000869{
870 int r = RESUME_HOST;
Alexander Graf7ee78852012-08-13 12:44:41 +0200871 int s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000872
873 vcpu->stat.sum_exits++;
874
875 run->exit_reason = KVM_EXIT_UNKNOWN;
876 run->ready_for_interrupt_injection = 1;
877
Alexander Grafbd2be682012-08-13 01:04:19 +0200878 /* We get here with MSR.EE=1 */
Alexander Graf3b1d9d72012-04-30 10:56:12 +0200879
Alexander Graf97c95052012-08-02 15:10:00 +0200880 trace_kvm_exit(exit_nr, vcpu);
Alexander Graf706fb732012-08-12 11:29:09 +0200881 kvm_guest_exit();
Alexander Grafc63ddcb2012-08-12 11:27:49 +0200882
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000883 switch (exit_nr) {
884 case BOOK3S_INTERRUPT_INST_STORAGE:
Alexander Graf468a12c2011-12-09 14:44:13 +0100885 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000886 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000887 vcpu->stat.pf_instruc++;
888
889#ifdef CONFIG_PPC_BOOK3S_32
890 /* We set segments as unused segments when invalidating them. So
891 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000892 {
893 struct kvmppc_book3s_shadow_vcpu *svcpu;
894 u32 sr;
895
896 svcpu = svcpu_get(vcpu);
897 sr = svcpu->sr[kvmppc_get_pc(vcpu) >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +0100898 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000899 if (sr == SR_INVALID) {
900 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
901 r = RESUME_GUEST;
902 break;
903 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000904 }
905#endif
906
907 /* only care about PTEG not found errors, but leave NX alone */
Alexander Graf468a12c2011-12-09 14:44:13 +0100908 if (shadow_srr1 & 0x40000000) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000909 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000910 r = kvmppc_handle_pagefault(run, vcpu, kvmppc_get_pc(vcpu), exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000911 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000912 vcpu->stat.sp_instruc++;
913 } else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
914 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
915 /*
916 * XXX If we do the dcbz hack we use the NX bit to flush&patch the page,
917 * so we can't use the NX bit inside the guest. Let's cross our fingers,
918 * that no guest that needs the dcbz hack does NX.
919 */
920 kvmppc_mmu_pte_flush(vcpu, kvmppc_get_pc(vcpu), ~0xFFFUL);
921 r = RESUME_GUEST;
922 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200923 u64 msr = kvmppc_get_msr(vcpu);
924 msr |= shadow_srr1 & 0x58000000;
925 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000926 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
927 r = RESUME_GUEST;
928 }
929 break;
Alexander Graf468a12c2011-12-09 14:44:13 +0100930 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000931 case BOOK3S_INTERRUPT_DATA_STORAGE:
932 {
933 ulong dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000934 u32 fault_dsisr = vcpu->arch.fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000935 vcpu->stat.pf_storage++;
936
937#ifdef CONFIG_PPC_BOOK3S_32
938 /* We set segments as unused segments when invalidating them. So
939 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000940 {
941 struct kvmppc_book3s_shadow_vcpu *svcpu;
942 u32 sr;
943
944 svcpu = svcpu_get(vcpu);
945 sr = svcpu->sr[dar >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +0100946 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000947 if (sr == SR_INVALID) {
948 kvmppc_mmu_map_segment(vcpu, dar);
949 r = RESUME_GUEST;
950 break;
951 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000952 }
953#endif
954
Paul Mackerras93b159b2013-09-20 14:52:51 +1000955 /*
956 * We need to handle missing shadow PTEs, and
957 * protection faults due to us mapping a page read-only
958 * when the guest thinks it is writable.
959 */
960 if (fault_dsisr & (DSISR_NOHPTE | DSISR_PROTFAULT)) {
961 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000962 r = kvmppc_handle_pagefault(run, vcpu, dar, exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000963 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000964 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200965 kvmppc_set_dar(vcpu, dar);
966 kvmppc_set_dsisr(vcpu, fault_dsisr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000967 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
968 r = RESUME_GUEST;
969 }
970 break;
971 }
972 case BOOK3S_INTERRUPT_DATA_SEGMENT:
973 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_fault_dar(vcpu)) < 0) {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200974 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000975 kvmppc_book3s_queue_irqprio(vcpu,
976 BOOK3S_INTERRUPT_DATA_SEGMENT);
977 }
978 r = RESUME_GUEST;
979 break;
980 case BOOK3S_INTERRUPT_INST_SEGMENT:
981 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu)) < 0) {
982 kvmppc_book3s_queue_irqprio(vcpu,
983 BOOK3S_INTERRUPT_INST_SEGMENT);
984 }
985 r = RESUME_GUEST;
986 break;
987 /* We're good on these - the host merely wanted to get our attention */
988 case BOOK3S_INTERRUPT_DECREMENTER:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100989 case BOOK3S_INTERRUPT_HV_DECREMENTER:
Paul Mackerras40688902014-01-08 21:25:36 +1100990 case BOOK3S_INTERRUPT_DOORBELL:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000991 vcpu->stat.dec_exits++;
992 r = RESUME_GUEST;
993 break;
994 case BOOK3S_INTERRUPT_EXTERNAL:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100995 case BOOK3S_INTERRUPT_EXTERNAL_LEVEL:
996 case BOOK3S_INTERRUPT_EXTERNAL_HV:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000997 vcpu->stat.ext_intr_exits++;
998 r = RESUME_GUEST;
999 break;
1000 case BOOK3S_INTERRUPT_PERFMON:
1001 r = RESUME_GUEST;
1002 break;
1003 case BOOK3S_INTERRUPT_PROGRAM:
Alexander Graf4f225ae2012-03-13 23:05:16 +01001004 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001005 {
1006 enum emulation_result er;
1007 ulong flags;
1008
1009program_interrupt:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001010 flags = vcpu->arch.shadow_srr1 & 0x1f0000ull;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001011
Alexander Graf5deb8e72014-04-24 13:46:24 +02001012 if (kvmppc_get_msr(vcpu) & MSR_PR) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001013#ifdef EXIT_DEBUG
1014 printk(KERN_INFO "Userspace triggered 0x700 exception at 0x%lx (0x%x)\n", kvmppc_get_pc(vcpu), kvmppc_get_last_inst(vcpu));
1015#endif
1016 if ((kvmppc_get_last_inst(vcpu) & 0xff0007ff) !=
1017 (INS_DCBZ & 0xfffffff7)) {
1018 kvmppc_core_queue_program(vcpu, flags);
1019 r = RESUME_GUEST;
1020 break;
1021 }
1022 }
1023
1024 vcpu->stat.emulated_inst_exits++;
1025 er = kvmppc_emulate_instruction(run, vcpu);
1026 switch (er) {
1027 case EMULATE_DONE:
1028 r = RESUME_GUEST_NV;
1029 break;
1030 case EMULATE_AGAIN:
1031 r = RESUME_GUEST;
1032 break;
1033 case EMULATE_FAIL:
1034 printk(KERN_CRIT "%s: emulation at %lx failed (%08x)\n",
1035 __func__, kvmppc_get_pc(vcpu), kvmppc_get_last_inst(vcpu));
1036 kvmppc_core_queue_program(vcpu, flags);
1037 r = RESUME_GUEST;
1038 break;
1039 case EMULATE_DO_MMIO:
1040 run->exit_reason = KVM_EXIT_MMIO;
1041 r = RESUME_HOST_NV;
1042 break;
Bharat Bhushanc402a3f2013-04-08 00:32:13 +00001043 case EMULATE_EXIT_USER:
Alexander Graf50c7bb82012-12-14 23:42:05 +01001044 r = RESUME_HOST_NV;
1045 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001046 default:
1047 BUG();
1048 }
1049 break;
1050 }
1051 case BOOK3S_INTERRUPT_SYSCALL:
Alexander Grafa668f2b2011-08-08 17:26:24 +02001052 if (vcpu->arch.papr_enabled &&
Paul Mackerras8b23de22013-08-06 14:15:19 +10001053 (kvmppc_get_last_sc(vcpu) == 0x44000022) &&
Alexander Graf5deb8e72014-04-24 13:46:24 +02001054 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
Alexander Grafa668f2b2011-08-08 17:26:24 +02001055 /* SC 1 papr hypercalls */
1056 ulong cmd = kvmppc_get_gpr(vcpu, 3);
1057 int i;
1058
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301059#ifdef CONFIG_PPC_BOOK3S_64
Alexander Grafa668f2b2011-08-08 17:26:24 +02001060 if (kvmppc_h_pr(vcpu, cmd) == EMULATE_DONE) {
1061 r = RESUME_GUEST;
1062 break;
1063 }
Andreas Schwab96f38d72011-11-08 07:17:39 +00001064#endif
Alexander Grafa668f2b2011-08-08 17:26:24 +02001065
1066 run->papr_hcall.nr = cmd;
1067 for (i = 0; i < 9; ++i) {
1068 ulong gpr = kvmppc_get_gpr(vcpu, 4 + i);
1069 run->papr_hcall.args[i] = gpr;
1070 }
1071 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1072 vcpu->arch.hcall_needed = 1;
1073 r = RESUME_HOST;
1074 } else if (vcpu->arch.osi_enabled &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001075 (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) &&
1076 (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) {
1077 /* MOL hypercalls */
1078 u64 *gprs = run->osi.gprs;
1079 int i;
1080
1081 run->exit_reason = KVM_EXIT_OSI;
1082 for (i = 0; i < 32; i++)
1083 gprs[i] = kvmppc_get_gpr(vcpu, i);
1084 vcpu->arch.osi_needed = 1;
1085 r = RESUME_HOST_NV;
Alexander Graf5deb8e72014-04-24 13:46:24 +02001086 } else if (!(kvmppc_get_msr(vcpu) & MSR_PR) &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001087 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
1088 /* KVM PV hypercalls */
1089 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
1090 r = RESUME_GUEST;
1091 } else {
1092 /* Guest syscalls */
1093 vcpu->stat.syscall_exits++;
1094 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1095 r = RESUME_GUEST;
1096 }
1097 break;
1098 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1099 case BOOK3S_INTERRUPT_ALTIVEC:
1100 case BOOK3S_INTERRUPT_VSX:
1101 {
1102 int ext_msr = 0;
1103
1104 switch (exit_nr) {
1105 case BOOK3S_INTERRUPT_FP_UNAVAIL: ext_msr = MSR_FP; break;
1106 case BOOK3S_INTERRUPT_ALTIVEC: ext_msr = MSR_VEC; break;
1107 case BOOK3S_INTERRUPT_VSX: ext_msr = MSR_VSX; break;
1108 }
1109
1110 switch (kvmppc_check_ext(vcpu, exit_nr)) {
1111 case EMULATE_DONE:
1112 /* everything ok - let's enable the ext */
1113 r = kvmppc_handle_ext(vcpu, exit_nr, ext_msr);
1114 break;
1115 case EMULATE_FAIL:
1116 /* we need to emulate this instruction */
1117 goto program_interrupt;
1118 break;
1119 default:
1120 /* nothing to worry about - go again */
1121 break;
1122 }
1123 break;
1124 }
1125 case BOOK3S_INTERRUPT_ALIGNMENT:
1126 if (kvmppc_read_inst(vcpu) == EMULATE_DONE) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001127 u32 last_inst = kvmppc_get_last_inst(vcpu);
1128 u32 dsisr;
1129 u64 dar;
1130
1131 dsisr = kvmppc_alignment_dsisr(vcpu, last_inst);
1132 dar = kvmppc_alignment_dar(vcpu, last_inst);
1133
1134 kvmppc_set_dsisr(vcpu, dsisr);
1135 kvmppc_set_dar(vcpu, dar);
1136
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001137 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1138 }
1139 r = RESUME_GUEST;
1140 break;
Alexander Graf616dff82014-04-29 16:48:44 +02001141#ifdef CONFIG_PPC_BOOK3S_64
1142 case BOOK3S_INTERRUPT_FAC_UNAVAIL:
1143 kvmppc_handle_fac(vcpu, vcpu->arch.shadow_fscr >> 56);
1144 r = RESUME_GUEST;
1145 break;
1146#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001147 case BOOK3S_INTERRUPT_MACHINE_CHECK:
1148 case BOOK3S_INTERRUPT_TRACE:
1149 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1150 r = RESUME_GUEST;
1151 break;
1152 default:
Alexander Graf468a12c2011-12-09 14:44:13 +01001153 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001154 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001155 /* Ugh - bork here! What did we get? */
1156 printk(KERN_EMERG "exit_nr=0x%x | pc=0x%lx | msr=0x%lx\n",
Alexander Graf468a12c2011-12-09 14:44:13 +01001157 exit_nr, kvmppc_get_pc(vcpu), shadow_srr1);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001158 r = RESUME_HOST;
1159 BUG();
1160 break;
1161 }
Alexander Graf468a12c2011-12-09 14:44:13 +01001162 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001163
1164 if (!(r & RESUME_HOST)) {
1165 /* To avoid clobbering exit_reason, only check for signals if
1166 * we aren't already exiting to userspace for some other
1167 * reason. */
Alexander Grafe371f712011-12-19 13:36:55 +01001168
1169 /*
1170 * Interrupts could be timers for the guest which we have to
1171 * inject again, so let's postpone them until we're in the guest
1172 * and if we really did time things so badly, then we just exit
1173 * again due to a host external interrupt.
1174 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001175 s = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001176 if (s <= 0)
Alexander Graf7ee78852012-08-13 12:44:41 +02001177 r = s;
Scott Wood6c85f522014-01-09 19:18:40 -06001178 else {
1179 /* interrupts now hard-disabled */
Scott Wood5f1c2482013-07-10 17:47:39 -05001180 kvmppc_fix_ee_before_entry();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001181 }
Scott Wood6c85f522014-01-09 19:18:40 -06001182
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +10001183 kvmppc_handle_lost_ext(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001184 }
1185
1186 trace_kvm_book3s_reenter(r, vcpu);
1187
1188 return r;
1189}
1190
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301191static int kvm_arch_vcpu_ioctl_get_sregs_pr(struct kvm_vcpu *vcpu,
1192 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001193{
1194 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1195 int i;
1196
1197 sregs->pvr = vcpu->arch.pvr;
1198
1199 sregs->u.s.sdr1 = to_book3s(vcpu)->sdr1;
1200 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1201 for (i = 0; i < 64; i++) {
1202 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige | i;
1203 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1204 }
1205 } else {
1206 for (i = 0; i < 16; i++)
Alexander Graf5deb8e72014-04-24 13:46:24 +02001207 sregs->u.s.ppc32.sr[i] = kvmppc_get_sr(vcpu, i);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001208
1209 for (i = 0; i < 8; i++) {
1210 sregs->u.s.ppc32.ibat[i] = vcpu3s->ibat[i].raw;
1211 sregs->u.s.ppc32.dbat[i] = vcpu3s->dbat[i].raw;
1212 }
1213 }
1214
1215 return 0;
1216}
1217
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301218static int kvm_arch_vcpu_ioctl_set_sregs_pr(struct kvm_vcpu *vcpu,
1219 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001220{
1221 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1222 int i;
1223
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301224 kvmppc_set_pvr_pr(vcpu, sregs->pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001225
1226 vcpu3s->sdr1 = sregs->u.s.sdr1;
1227 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1228 for (i = 0; i < 64; i++) {
1229 vcpu->arch.mmu.slbmte(vcpu, sregs->u.s.ppc64.slb[i].slbv,
1230 sregs->u.s.ppc64.slb[i].slbe);
1231 }
1232 } else {
1233 for (i = 0; i < 16; i++) {
1234 vcpu->arch.mmu.mtsrin(vcpu, i, sregs->u.s.ppc32.sr[i]);
1235 }
1236 for (i = 0; i < 8; i++) {
1237 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), false,
1238 (u32)sregs->u.s.ppc32.ibat[i]);
1239 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), true,
1240 (u32)(sregs->u.s.ppc32.ibat[i] >> 32));
1241 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), false,
1242 (u32)sregs->u.s.ppc32.dbat[i]);
1243 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), true,
1244 (u32)(sregs->u.s.ppc32.dbat[i] >> 32));
1245 }
1246 }
1247
1248 /* Flush the MMU after messing with the segments */
1249 kvmppc_mmu_pte_flush(vcpu, 0, 0);
1250
1251 return 0;
1252}
1253
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301254static int kvmppc_get_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1255 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001256{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001257 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001258
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001259 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001260 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001261 *val = get_reg_val(id, to_book3s(vcpu)->hior);
Paul Mackerras31f34382011-12-12 12:26:50 +00001262 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301263 case KVM_REG_PPC_LPCR:
1264 /*
1265 * We are only interested in the LPCR_ILE bit
1266 */
1267 if (vcpu->arch.intr_msr & MSR_LE)
1268 *val = get_reg_val(id, LPCR_ILE);
1269 else
1270 *val = get_reg_val(id, 0);
1271 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001272 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001273 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001274 break;
1275 }
1276
1277 return r;
1278}
1279
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301280static void kvmppc_set_lpcr_pr(struct kvm_vcpu *vcpu, u64 new_lpcr)
1281{
1282 if (new_lpcr & LPCR_ILE)
1283 vcpu->arch.intr_msr |= MSR_LE;
1284 else
1285 vcpu->arch.intr_msr &= ~MSR_LE;
1286}
1287
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301288static int kvmppc_set_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1289 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001290{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001291 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001292
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001293 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001294 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001295 to_book3s(vcpu)->hior = set_reg_val(id, *val);
1296 to_book3s(vcpu)->hior_explicit = true;
Paul Mackerras31f34382011-12-12 12:26:50 +00001297 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301298 case KVM_REG_PPC_LPCR:
1299 kvmppc_set_lpcr_pr(vcpu, set_reg_val(id, *val));
1300 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001301 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001302 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001303 break;
1304 }
1305
1306 return r;
1307}
1308
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301309static struct kvm_vcpu *kvmppc_core_vcpu_create_pr(struct kvm *kvm,
1310 unsigned int id)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001311{
1312 struct kvmppc_vcpu_book3s *vcpu_book3s;
1313 struct kvm_vcpu *vcpu;
1314 int err = -ENOMEM;
1315 unsigned long p;
1316
Paul Mackerras3ff95502013-09-20 14:52:49 +10001317 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
1318 if (!vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001319 goto out;
1320
Paul Mackerras3ff95502013-09-20 14:52:49 +10001321 vcpu_book3s = vzalloc(sizeof(struct kvmppc_vcpu_book3s));
1322 if (!vcpu_book3s)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001323 goto free_vcpu;
Paul Mackerras3ff95502013-09-20 14:52:49 +10001324 vcpu->arch.book3s = vcpu_book3s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001325
Alexander Grafab784752014-04-06 23:31:48 +02001326#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001327 vcpu->arch.shadow_vcpu =
1328 kzalloc(sizeof(*vcpu->arch.shadow_vcpu), GFP_KERNEL);
1329 if (!vcpu->arch.shadow_vcpu)
1330 goto free_vcpu3s;
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001331#endif
Paul Mackerras3ff95502013-09-20 14:52:49 +10001332
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001333 err = kvm_vcpu_init(vcpu, kvm, id);
1334 if (err)
1335 goto free_shadow_vcpu;
1336
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001337 err = -ENOMEM;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001338 p = __get_free_page(GFP_KERNEL|__GFP_ZERO);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001339 if (!p)
1340 goto uninit_vcpu;
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001341 /* the real shared page fills the last 4k of our page */
1342 vcpu->arch.shared = (void *)(p + PAGE_SIZE - 4096);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001343#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf5deb8e72014-04-24 13:46:24 +02001344 /* Always start the shared struct in native endian mode */
1345#ifdef __BIG_ENDIAN__
1346 vcpu->arch.shared_big_endian = true;
1347#else
1348 vcpu->arch.shared_big_endian = false;
1349#endif
1350
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001351 /*
1352 * Default to the same as the host if we're on sufficiently
1353 * recent machine that we have 1TB segments;
1354 * otherwise default to PPC970FX.
1355 */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001356 vcpu->arch.pvr = 0x3C0301;
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001357 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1358 vcpu->arch.pvr = mfspr(SPRN_PVR);
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301359 vcpu->arch.intr_msr = MSR_SF;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001360#else
1361 /* default to book3s_32 (750) */
1362 vcpu->arch.pvr = 0x84202;
1363#endif
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301364 kvmppc_set_pvr_pr(vcpu, vcpu->arch.pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001365 vcpu->arch.slb_nr = 64;
1366
Alexander Graf94810ba2014-04-24 13:04:01 +02001367 vcpu->arch.shadow_msr = MSR_USER64 & ~MSR_LE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001368
1369 err = kvmppc_mmu_init(vcpu);
1370 if (err < 0)
1371 goto uninit_vcpu;
1372
1373 return vcpu;
1374
1375uninit_vcpu:
1376 kvm_vcpu_uninit(vcpu);
1377free_shadow_vcpu:
Alexander Grafab784752014-04-06 23:31:48 +02001378#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001379 kfree(vcpu->arch.shadow_vcpu);
1380free_vcpu3s:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001381#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001382 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001383free_vcpu:
1384 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001385out:
1386 return ERR_PTR(err);
1387}
1388
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301389static void kvmppc_core_vcpu_free_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001390{
1391 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
1392
1393 free_page((unsigned long)vcpu->arch.shared & PAGE_MASK);
1394 kvm_vcpu_uninit(vcpu);
Alexander Grafab784752014-04-06 23:31:48 +02001395#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001396 kfree(vcpu->arch.shadow_vcpu);
1397#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001398 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001399 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001400}
1401
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301402static int kvmppc_vcpu_run_pr(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001403{
1404 int ret;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001405#ifdef CONFIG_ALTIVEC
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001406 unsigned long uninitialized_var(vrsave);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001407#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001408
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001409 /* Check if we can run the vcpu at all */
1410 if (!vcpu->arch.sane) {
1411 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
Alexander Graf7d827142011-12-09 15:46:21 +01001412 ret = -EINVAL;
1413 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001414 }
1415
Alexander Grafe371f712011-12-19 13:36:55 +01001416 /*
1417 * Interrupts could be timers for the guest which we have to inject
1418 * again, so let's postpone them until we're in the guest and if we
1419 * really did time things so badly, then we just exit again due to
1420 * a host external interrupt.
1421 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001422 ret = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001423 if (ret <= 0)
Alexander Graf7d827142011-12-09 15:46:21 +01001424 goto out;
Scott Wood6c85f522014-01-09 19:18:40 -06001425 /* interrupts now hard-disabled */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001426
Paul Mackerras99dae3b2013-10-15 20:43:03 +11001427 /* Save FPU state in thread_struct */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001428 if (current->thread.regs->msr & MSR_FP)
1429 giveup_fpu(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001430
1431#ifdef CONFIG_ALTIVEC
Paul Mackerras99dae3b2013-10-15 20:43:03 +11001432 /* Save Altivec state in thread_struct */
1433 if (current->thread.regs->msr & MSR_VEC)
1434 giveup_altivec(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001435#endif
1436
1437#ifdef CONFIG_VSX
Paul Mackerras99dae3b2013-10-15 20:43:03 +11001438 /* Save VSX state in thread_struct */
1439 if (current->thread.regs->msr & MSR_VSX)
Paul Mackerras28c483b2012-11-04 18:16:46 +00001440 __giveup_vsx(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001441#endif
1442
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001443 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +02001444 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001445 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
1446
Scott Wood5f1c2482013-07-10 17:47:39 -05001447 kvmppc_fix_ee_before_entry();
Paul Mackerrasdf6909e52011-06-29 00:19:50 +00001448
1449 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
1450
Alexander Graf24afa372012-08-12 12:42:30 +02001451 /* No need for kvm_guest_exit. It's done in handle_exit.
1452 We also get here with interrupts enabled. */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001453
Paul Mackerras28c483b2012-11-04 18:16:46 +00001454 /* Make sure we save the guest FPU/Altivec/VSX state */
1455 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
1456
Alexander Grafe14e7a12014-04-22 12:26:58 +02001457 /* Make sure we save the guest TAR/EBB/DSCR state */
1458 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
1459
Alexander Graf7d827142011-12-09 15:46:21 +01001460out:
Alexander Graf0652eaa2012-08-12 11:34:21 +02001461 vcpu->mode = OUTSIDE_GUEST_MODE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001462 return ret;
1463}
1464
Paul Mackerras82ed3612011-12-15 02:03:22 +00001465/*
1466 * Get (and clear) the dirty memory log for a memory slot.
1467 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301468static int kvm_vm_ioctl_get_dirty_log_pr(struct kvm *kvm,
1469 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00001470{
1471 struct kvm_memory_slot *memslot;
1472 struct kvm_vcpu *vcpu;
1473 ulong ga, ga_end;
1474 int is_dirty = 0;
1475 int r;
1476 unsigned long n;
1477
1478 mutex_lock(&kvm->slots_lock);
1479
1480 r = kvm_get_dirty_log(kvm, log, &is_dirty);
1481 if (r)
1482 goto out;
1483
1484 /* If nothing is dirty, don't bother messing with page tables. */
1485 if (is_dirty) {
1486 memslot = id_to_memslot(kvm->memslots, log->slot);
1487
1488 ga = memslot->base_gfn << PAGE_SHIFT;
1489 ga_end = ga + (memslot->npages << PAGE_SHIFT);
1490
1491 kvm_for_each_vcpu(n, vcpu, kvm)
1492 kvmppc_mmu_pte_pflush(vcpu, ga, ga_end);
1493
1494 n = kvm_dirty_bitmap_bytes(memslot);
1495 memset(memslot->dirty_bitmap, 0, n);
1496 }
1497
1498 r = 0;
1499out:
1500 mutex_unlock(&kvm->slots_lock);
1501 return r;
1502}
1503
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301504static void kvmppc_core_flush_memslot_pr(struct kvm *kvm,
1505 struct kvm_memory_slot *memslot)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001506{
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301507 return;
1508}
1509
1510static int kvmppc_core_prepare_memory_region_pr(struct kvm *kvm,
1511 struct kvm_memory_slot *memslot,
1512 struct kvm_userspace_memory_region *mem)
1513{
1514 return 0;
1515}
1516
1517static void kvmppc_core_commit_memory_region_pr(struct kvm *kvm,
1518 struct kvm_userspace_memory_region *mem,
1519 const struct kvm_memory_slot *old)
1520{
1521 return;
1522}
1523
1524static void kvmppc_core_free_memslot_pr(struct kvm_memory_slot *free,
1525 struct kvm_memory_slot *dont)
1526{
1527 return;
1528}
1529
1530static int kvmppc_core_create_memslot_pr(struct kvm_memory_slot *slot,
1531 unsigned long npages)
1532{
1533 return 0;
1534}
1535
1536
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001537#ifdef CONFIG_PPC64
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301538static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1539 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001540{
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001541 long int i;
1542 struct kvm_vcpu *vcpu;
1543
1544 info->flags = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001545
1546 /* SLB is always 64 entries */
1547 info->slb_size = 64;
1548
1549 /* Standard 4k base page size segment */
1550 info->sps[0].page_shift = 12;
1551 info->sps[0].slb_enc = 0;
1552 info->sps[0].enc[0].page_shift = 12;
1553 info->sps[0].enc[0].pte_enc = 0;
1554
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001555 /*
1556 * 64k large page size.
1557 * We only want to put this in if the CPUs we're emulating
1558 * support it, but unfortunately we don't have a vcpu easily
1559 * to hand here to test. Just pick the first vcpu, and if
1560 * that doesn't exist yet, report the minimum capability,
1561 * i.e., no 64k pages.
1562 * 1T segment support goes along with 64k pages.
1563 */
1564 i = 1;
1565 vcpu = kvm_get_vcpu(kvm, 0);
1566 if (vcpu && (vcpu->arch.hflags & BOOK3S_HFLAG_MULTI_PGSIZE)) {
1567 info->flags = KVM_PPC_1T_SEGMENTS;
1568 info->sps[i].page_shift = 16;
1569 info->sps[i].slb_enc = SLB_VSID_L | SLB_VSID_LP_01;
1570 info->sps[i].enc[0].page_shift = 16;
1571 info->sps[i].enc[0].pte_enc = 1;
1572 ++i;
1573 }
1574
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001575 /* Standard 16M large page size segment */
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001576 info->sps[i].page_shift = 24;
1577 info->sps[i].slb_enc = SLB_VSID_L;
1578 info->sps[i].enc[0].page_shift = 24;
1579 info->sps[i].enc[0].pte_enc = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001580
1581 return 0;
1582}
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301583#else
1584static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1585 struct kvm_ppc_smmu_info *info)
1586{
1587 /* We should not get called */
1588 BUG();
1589}
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001590#endif /* CONFIG_PPC64 */
1591
Ian Munsiea413f472012-12-03 18:36:13 +00001592static unsigned int kvm_global_user_count = 0;
1593static DEFINE_SPINLOCK(kvm_global_user_count_lock);
1594
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301595static int kvmppc_core_init_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001596{
Paul Mackerras9308ab82013-09-20 14:52:48 +10001597 mutex_init(&kvm->arch.hpt_mutex);
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001598
Ian Munsiea413f472012-12-03 18:36:13 +00001599 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1600 spin_lock(&kvm_global_user_count_lock);
1601 if (++kvm_global_user_count == 1)
1602 pSeries_disable_reloc_on_exc();
1603 spin_unlock(&kvm_global_user_count_lock);
1604 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001605 return 0;
1606}
1607
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301608static void kvmppc_core_destroy_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001609{
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001610#ifdef CONFIG_PPC64
1611 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
1612#endif
Ian Munsiea413f472012-12-03 18:36:13 +00001613
1614 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1615 spin_lock(&kvm_global_user_count_lock);
1616 BUG_ON(kvm_global_user_count == 0);
1617 if (--kvm_global_user_count == 0)
1618 pSeries_enable_reloc_on_exc();
1619 spin_unlock(&kvm_global_user_count_lock);
1620 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001621}
1622
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301623static int kvmppc_core_check_processor_compat_pr(void)
1624{
1625 /* we are always compatible */
1626 return 0;
1627}
1628
1629static long kvm_arch_vm_ioctl_pr(struct file *filp,
1630 unsigned int ioctl, unsigned long arg)
1631{
1632 return -ENOTTY;
1633}
1634
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301635static struct kvmppc_ops kvm_ops_pr = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301636 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_pr,
1637 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_pr,
1638 .get_one_reg = kvmppc_get_one_reg_pr,
1639 .set_one_reg = kvmppc_set_one_reg_pr,
1640 .vcpu_load = kvmppc_core_vcpu_load_pr,
1641 .vcpu_put = kvmppc_core_vcpu_put_pr,
1642 .set_msr = kvmppc_set_msr_pr,
1643 .vcpu_run = kvmppc_vcpu_run_pr,
1644 .vcpu_create = kvmppc_core_vcpu_create_pr,
1645 .vcpu_free = kvmppc_core_vcpu_free_pr,
1646 .check_requests = kvmppc_core_check_requests_pr,
1647 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_pr,
1648 .flush_memslot = kvmppc_core_flush_memslot_pr,
1649 .prepare_memory_region = kvmppc_core_prepare_memory_region_pr,
1650 .commit_memory_region = kvmppc_core_commit_memory_region_pr,
1651 .unmap_hva = kvm_unmap_hva_pr,
1652 .unmap_hva_range = kvm_unmap_hva_range_pr,
1653 .age_hva = kvm_age_hva_pr,
1654 .test_age_hva = kvm_test_age_hva_pr,
1655 .set_spte_hva = kvm_set_spte_hva_pr,
1656 .mmu_destroy = kvmppc_mmu_destroy_pr,
1657 .free_memslot = kvmppc_core_free_memslot_pr,
1658 .create_memslot = kvmppc_core_create_memslot_pr,
1659 .init_vm = kvmppc_core_init_vm_pr,
1660 .destroy_vm = kvmppc_core_destroy_vm_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301661 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_pr,
1662 .emulate_op = kvmppc_core_emulate_op_pr,
1663 .emulate_mtspr = kvmppc_core_emulate_mtspr_pr,
1664 .emulate_mfspr = kvmppc_core_emulate_mfspr_pr,
1665 .fast_vcpu_kick = kvm_vcpu_kick,
1666 .arch_vm_ioctl = kvm_arch_vm_ioctl_pr,
1667};
1668
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301669
1670int kvmppc_book3s_init_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001671{
1672 int r;
1673
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301674 r = kvmppc_core_check_processor_compat_pr();
1675 if (r < 0)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001676 return r;
1677
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301678 kvm_ops_pr.owner = THIS_MODULE;
1679 kvmppc_pr_ops = &kvm_ops_pr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001680
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301681 r = kvmppc_mmu_hpte_sysinit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001682 return r;
1683}
1684
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301685void kvmppc_book3s_exit_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001686{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301687 kvmppc_pr_ops = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001688 kvmppc_mmu_hpte_sysexit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001689}
1690
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301691/*
1692 * We only support separate modules for book3s 64
1693 */
1694#ifdef CONFIG_PPC_BOOK3S_64
1695
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301696module_init(kvmppc_book3s_init_pr);
1697module_exit(kvmppc_book3s_exit_pr);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301698
1699MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01001700MODULE_ALIAS_MISCDEV(KVM_MINOR);
1701MODULE_ALIAS("devname:kvm");
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301702#endif