blob: aedba681bb94d1dfd2df0b7f93c91eb3a37079d6 [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);
56
57/* Some compatibility defines */
58#ifdef CONFIG_PPC_BOOK3S_32
59#define MSR_USER32 MSR_USER
60#define MSR_USER64 MSR_USER
61#define HW_PAGE_SIZE PAGE_SIZE
62#endif
63
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053064static void kvmppc_core_vcpu_load_pr(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000065{
66#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010067 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
68 memcpy(svcpu->slb, to_book3s(vcpu)->slb_shadow, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +010069 svcpu->slb_max = to_book3s(vcpu)->slb_shadow_max;
70 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000071#endif
Paul Mackerrasa47d72f2012-09-20 19:35:51 +000072 vcpu->cpu = smp_processor_id();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000073#ifdef CONFIG_PPC_BOOK3S_32
Paul Mackerras3ff95502013-09-20 14:52:49 +100074 current->thread.kvm_shadow_vcpu = vcpu->arch.shadow_vcpu;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000075#endif
76}
77
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053078static void kvmppc_core_vcpu_put_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000079{
80#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010081 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
82 memcpy(to_book3s(vcpu)->slb_shadow, svcpu->slb, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +010083 to_book3s(vcpu)->slb_shadow_max = svcpu->slb_max;
84 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000085#endif
86
Paul Mackerras28c483b2012-11-04 18:16:46 +000087 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
Paul Mackerrasa47d72f2012-09-20 19:35:51 +000088 vcpu->cpu = -1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000089}
90
Paul Mackerrasa2d56022013-09-20 14:52:43 +100091/* Copy data needed by real-mode code from vcpu to shadow vcpu */
92void kvmppc_copy_to_svcpu(struct kvmppc_book3s_shadow_vcpu *svcpu,
93 struct kvm_vcpu *vcpu)
94{
95 svcpu->gpr[0] = vcpu->arch.gpr[0];
96 svcpu->gpr[1] = vcpu->arch.gpr[1];
97 svcpu->gpr[2] = vcpu->arch.gpr[2];
98 svcpu->gpr[3] = vcpu->arch.gpr[3];
99 svcpu->gpr[4] = vcpu->arch.gpr[4];
100 svcpu->gpr[5] = vcpu->arch.gpr[5];
101 svcpu->gpr[6] = vcpu->arch.gpr[6];
102 svcpu->gpr[7] = vcpu->arch.gpr[7];
103 svcpu->gpr[8] = vcpu->arch.gpr[8];
104 svcpu->gpr[9] = vcpu->arch.gpr[9];
105 svcpu->gpr[10] = vcpu->arch.gpr[10];
106 svcpu->gpr[11] = vcpu->arch.gpr[11];
107 svcpu->gpr[12] = vcpu->arch.gpr[12];
108 svcpu->gpr[13] = vcpu->arch.gpr[13];
109 svcpu->cr = vcpu->arch.cr;
110 svcpu->xer = vcpu->arch.xer;
111 svcpu->ctr = vcpu->arch.ctr;
112 svcpu->lr = vcpu->arch.lr;
113 svcpu->pc = vcpu->arch.pc;
114}
115
116/* Copy data touched by real-mode code from shadow vcpu back to vcpu */
117void kvmppc_copy_from_svcpu(struct kvm_vcpu *vcpu,
118 struct kvmppc_book3s_shadow_vcpu *svcpu)
119{
120 vcpu->arch.gpr[0] = svcpu->gpr[0];
121 vcpu->arch.gpr[1] = svcpu->gpr[1];
122 vcpu->arch.gpr[2] = svcpu->gpr[2];
123 vcpu->arch.gpr[3] = svcpu->gpr[3];
124 vcpu->arch.gpr[4] = svcpu->gpr[4];
125 vcpu->arch.gpr[5] = svcpu->gpr[5];
126 vcpu->arch.gpr[6] = svcpu->gpr[6];
127 vcpu->arch.gpr[7] = svcpu->gpr[7];
128 vcpu->arch.gpr[8] = svcpu->gpr[8];
129 vcpu->arch.gpr[9] = svcpu->gpr[9];
130 vcpu->arch.gpr[10] = svcpu->gpr[10];
131 vcpu->arch.gpr[11] = svcpu->gpr[11];
132 vcpu->arch.gpr[12] = svcpu->gpr[12];
133 vcpu->arch.gpr[13] = svcpu->gpr[13];
134 vcpu->arch.cr = svcpu->cr;
135 vcpu->arch.xer = svcpu->xer;
136 vcpu->arch.ctr = svcpu->ctr;
137 vcpu->arch.lr = svcpu->lr;
138 vcpu->arch.pc = svcpu->pc;
139 vcpu->arch.shadow_srr1 = svcpu->shadow_srr1;
140 vcpu->arch.fault_dar = svcpu->fault_dar;
141 vcpu->arch.fault_dsisr = svcpu->fault_dsisr;
142 vcpu->arch.last_inst = svcpu->last_inst;
143}
144
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530145static int kvmppc_core_check_requests_pr(struct kvm_vcpu *vcpu)
Alexander Graf03d25c52012-08-10 12:28:50 +0200146{
Alexander Graf7c973a22012-08-13 12:50:35 +0200147 int r = 1; /* Indicate we want to get back into the guest */
148
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200149 /* We misuse TLB_FLUSH to indicate that we want to clear
150 all shadow cache entries */
151 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
152 kvmppc_mmu_pte_flush(vcpu, 0, 0);
Alexander Graf7c973a22012-08-13 12:50:35 +0200153
154 return r;
Alexander Graf03d25c52012-08-10 12:28:50 +0200155}
156
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200157/************* MMU Notifiers *************/
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000158static void do_kvm_unmap_hva(struct kvm *kvm, unsigned long start,
159 unsigned long end)
160{
161 long i;
162 struct kvm_vcpu *vcpu;
163 struct kvm_memslots *slots;
164 struct kvm_memory_slot *memslot;
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200165
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000166 slots = kvm_memslots(kvm);
167 kvm_for_each_memslot(memslot, slots) {
168 unsigned long hva_start, hva_end;
169 gfn_t gfn, gfn_end;
170
171 hva_start = max(start, memslot->userspace_addr);
172 hva_end = min(end, memslot->userspace_addr +
173 (memslot->npages << PAGE_SHIFT));
174 if (hva_start >= hva_end)
175 continue;
176 /*
177 * {gfn(page) | page intersects with [hva_start, hva_end)} =
178 * {gfn, gfn+1, ..., gfn_end-1}.
179 */
180 gfn = hva_to_gfn_memslot(hva_start, memslot);
181 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
182 kvm_for_each_vcpu(i, vcpu, kvm)
183 kvmppc_mmu_pte_pflush(vcpu, gfn << PAGE_SHIFT,
184 gfn_end << PAGE_SHIFT);
185 }
186}
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200187
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530188static int kvm_unmap_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200189{
190 trace_kvm_unmap_hva(hva);
191
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000192 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200193
194 return 0;
195}
196
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530197static int kvm_unmap_hva_range_pr(struct kvm *kvm, unsigned long start,
198 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200199{
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000200 do_kvm_unmap_hva(kvm, start, end);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200201
202 return 0;
203}
204
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530205static int kvm_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200206{
207 /* XXX could be more clever ;) */
208 return 0;
209}
210
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530211static int kvm_test_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200212{
213 /* XXX could be more clever ;) */
214 return 0;
215}
216
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530217static void kvm_set_spte_hva_pr(struct kvm *kvm, unsigned long hva, pte_t pte)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200218{
219 /* The page will get remapped properly on its next fault */
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000220 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200221}
222
223/*****************************************/
224
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000225static void kvmppc_recalc_shadow_msr(struct kvm_vcpu *vcpu)
226{
227 ulong smsr = vcpu->arch.shared->msr;
228
229 /* Guest MSR values */
Paul Mackerras3a2e7b02012-11-04 18:17:28 +0000230 smsr &= MSR_FE0 | MSR_FE1 | MSR_SF | MSR_SE | MSR_BE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000231 /* Process MSR values */
232 smsr |= MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_PR | MSR_EE;
233 /* External providers the guest reserved */
234 smsr |= (vcpu->arch.shared->msr & vcpu->arch.guest_owned_ext);
235 /* 64-bit Process MSR values */
236#ifdef CONFIG_PPC_BOOK3S_64
237 smsr |= MSR_ISF | MSR_HV;
238#endif
239 vcpu->arch.shadow_msr = smsr;
240}
241
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530242static void kvmppc_set_msr_pr(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000243{
244 ulong old_msr = vcpu->arch.shared->msr;
245
246#ifdef EXIT_DEBUG
247 printk(KERN_INFO "KVM: Set MSR to 0x%llx\n", msr);
248#endif
249
250 msr &= to_book3s(vcpu)->msr_mask;
251 vcpu->arch.shared->msr = msr;
252 kvmppc_recalc_shadow_msr(vcpu);
253
254 if (msr & MSR_POW) {
255 if (!vcpu->arch.pending_exceptions) {
256 kvm_vcpu_block(vcpu);
Alexander Graf966cd0f2012-03-14 16:55:08 +0100257 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000258 vcpu->stat.halt_wakeup++;
259
260 /* Unset POW bit after we woke up */
261 msr &= ~MSR_POW;
262 vcpu->arch.shared->msr = msr;
263 }
264 }
265
266 if ((vcpu->arch.shared->msr & (MSR_PR|MSR_IR|MSR_DR)) !=
267 (old_msr & (MSR_PR|MSR_IR|MSR_DR))) {
268 kvmppc_mmu_flush_segments(vcpu);
269 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
270
271 /* Preload magic page segment when in kernel mode */
272 if (!(msr & MSR_PR) && vcpu->arch.magic_page_pa) {
273 struct kvm_vcpu_arch *a = &vcpu->arch;
274
275 if (msr & MSR_DR)
276 kvmppc_mmu_map_segment(vcpu, a->magic_page_ea);
277 else
278 kvmppc_mmu_map_segment(vcpu, a->magic_page_pa);
279 }
280 }
281
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000282 /*
283 * When switching from 32 to 64-bit, we may have a stale 32-bit
284 * magic page around, we need to flush it. Typically 32-bit magic
285 * page will be instanciated when calling into RTAS. Note: We
286 * assume that such transition only happens while in kernel mode,
287 * ie, we never transition from user 32-bit to kernel 64-bit with
288 * a 32-bit magic page around.
289 */
290 if (vcpu->arch.magic_page_pa &&
291 !(old_msr & MSR_PR) && !(old_msr & MSR_SF) && (msr & MSR_SF)) {
292 /* going from RTAS to normal kernel code */
293 kvmppc_mmu_pte_flush(vcpu, (uint32_t)vcpu->arch.magic_page_pa,
294 ~0xFFFUL);
295 }
296
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000297 /* Preload FPU if it's enabled */
298 if (vcpu->arch.shared->msr & MSR_FP)
299 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
300}
301
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530302void kvmppc_set_pvr_pr(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000303{
304 u32 host_pvr;
305
306 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SLB;
307 vcpu->arch.pvr = pvr;
308#ifdef CONFIG_PPC_BOOK3S_64
309 if ((pvr >= 0x330000) && (pvr < 0x70330000)) {
310 kvmppc_mmu_book3s_64_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200311 if (!to_book3s(vcpu)->hior_explicit)
312 to_book3s(vcpu)->hior = 0xfff00000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000313 to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200314 vcpu->arch.cpu_type = KVM_CPU_3S_64;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000315 } else
316#endif
317 {
318 kvmppc_mmu_book3s_32_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200319 if (!to_book3s(vcpu)->hior_explicit)
320 to_book3s(vcpu)->hior = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000321 to_book3s(vcpu)->msr_mask = 0xffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200322 vcpu->arch.cpu_type = KVM_CPU_3S_32;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000323 }
324
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200325 kvmppc_sanity_check(vcpu);
326
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000327 /* If we are in hypervisor level on 970, we can tell the CPU to
328 * treat DCBZ as 32 bytes store */
329 vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32;
330 if (vcpu->arch.mmu.is_dcbz32(vcpu) && (mfmsr() & MSR_HV) &&
331 !strcmp(cur_cpu_spec->platform, "ppc970"))
332 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
333
334 /* Cell performs badly if MSR_FEx are set. So let's hope nobody
335 really needs them in a VM on Cell and force disable them. */
336 if (!strcmp(cur_cpu_spec->platform, "ppc-cell-be"))
337 to_book3s(vcpu)->msr_mask &= ~(MSR_FE0 | MSR_FE1);
338
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000339 /*
340 * If they're asking for POWER6 or later, set the flag
341 * indicating that we can do multiple large page sizes
342 * and 1TB segments.
343 * Also set the flag that indicates that tlbie has the large
344 * page bit in the RB operand instead of the instruction.
345 */
346 switch (PVR_VER(pvr)) {
347 case PVR_POWER6:
348 case PVR_POWER7:
349 case PVR_POWER7p:
350 case PVR_POWER8:
351 vcpu->arch.hflags |= BOOK3S_HFLAG_MULTI_PGSIZE |
352 BOOK3S_HFLAG_NEW_TLBIE;
353 break;
354 }
355
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000356#ifdef CONFIG_PPC_BOOK3S_32
357 /* 32 bit Book3S always has 32 byte dcbz */
358 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
359#endif
360
361 /* On some CPUs we can execute paired single operations natively */
362 asm ( "mfpvr %0" : "=r"(host_pvr));
363 switch (host_pvr) {
364 case 0x00080200: /* lonestar 2.0 */
365 case 0x00088202: /* lonestar 2.2 */
366 case 0x70000100: /* gekko 1.0 */
367 case 0x00080100: /* gekko 2.0 */
368 case 0x00083203: /* gekko 2.3a */
369 case 0x00083213: /* gekko 2.3b */
370 case 0x00083204: /* gekko 2.4 */
371 case 0x00083214: /* gekko 2.4e (8SE) - retail HW2 */
372 case 0x00087200: /* broadway */
373 vcpu->arch.hflags |= BOOK3S_HFLAG_NATIVE_PS;
374 /* Enable HID2.PSE - in case we need it later */
375 mtspr(SPRN_HID2_GEKKO, mfspr(SPRN_HID2_GEKKO) | (1 << 29));
376 }
377}
378
379/* Book3s_32 CPUs always have 32 bytes cache line size, which Linux assumes. To
380 * make Book3s_32 Linux work on Book3s_64, we have to make sure we trap dcbz to
381 * emulate 32 bytes dcbz length.
382 *
383 * The Book3s_64 inventors also realized this case and implemented a special bit
384 * in the HID5 register, which is a hypervisor ressource. Thus we can't use it.
385 *
386 * My approach here is to patch the dcbz instruction on executing pages.
387 */
388static void kvmppc_patch_dcbz(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte)
389{
390 struct page *hpage;
391 u64 hpage_offset;
392 u32 *page;
393 int i;
394
395 hpage = gfn_to_page(vcpu->kvm, pte->raddr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800396 if (is_error_page(hpage))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000397 return;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000398
399 hpage_offset = pte->raddr & ~PAGE_MASK;
400 hpage_offset &= ~0xFFFULL;
401 hpage_offset /= 4;
402
403 get_page(hpage);
Cong Wang2480b202011-11-25 23:14:16 +0800404 page = kmap_atomic(hpage);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000405
406 /* patch dcbz into reserved instruction, so we trap */
407 for (i=hpage_offset; i < hpage_offset + (HW_PAGE_SIZE / 4); i++)
408 if ((page[i] & 0xff0007ff) == INS_DCBZ)
409 page[i] &= 0xfffffff7;
410
Cong Wang2480b202011-11-25 23:14:16 +0800411 kunmap_atomic(page);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000412 put_page(hpage);
413}
414
415static int kvmppc_visible_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
416{
417 ulong mp_pa = vcpu->arch.magic_page_pa;
418
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000419 if (!(vcpu->arch.shared->msr & MSR_SF))
420 mp_pa = (uint32_t)mp_pa;
421
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000422 if (unlikely(mp_pa) &&
423 unlikely((mp_pa & KVM_PAM) >> PAGE_SHIFT == gfn)) {
424 return 1;
425 }
426
427 return kvm_is_visible_gfn(vcpu->kvm, gfn);
428}
429
430int kvmppc_handle_pagefault(struct kvm_run *run, struct kvm_vcpu *vcpu,
431 ulong eaddr, int vec)
432{
433 bool data = (vec == BOOK3S_INTERRUPT_DATA_STORAGE);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000434 bool iswrite = false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000435 int r = RESUME_GUEST;
436 int relocated;
437 int page_found = 0;
438 struct kvmppc_pte pte;
439 bool is_mmio = false;
440 bool dr = (vcpu->arch.shared->msr & MSR_DR) ? true : false;
441 bool ir = (vcpu->arch.shared->msr & MSR_IR) ? true : false;
442 u64 vsid;
443
444 relocated = data ? dr : ir;
Paul Mackerras93b159b2013-09-20 14:52:51 +1000445 if (data && (vcpu->arch.fault_dsisr & DSISR_ISSTORE))
446 iswrite = true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000447
448 /* Resolve real address if translation turned on */
449 if (relocated) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000450 page_found = vcpu->arch.mmu.xlate(vcpu, eaddr, &pte, data, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000451 } else {
452 pte.may_execute = true;
453 pte.may_read = true;
454 pte.may_write = true;
455 pte.raddr = eaddr & KVM_PAM;
456 pte.eaddr = eaddr;
457 pte.vpage = eaddr >> 12;
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000458 pte.page_size = MMU_PAGE_64K;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000459 }
460
461 switch (vcpu->arch.shared->msr & (MSR_DR|MSR_IR)) {
462 case 0:
463 pte.vpage |= ((u64)VSID_REAL << (SID_SHIFT - 12));
464 break;
465 case MSR_DR:
466 case MSR_IR:
467 vcpu->arch.mmu.esid_to_vsid(vcpu, eaddr >> SID_SHIFT, &vsid);
468
469 if ((vcpu->arch.shared->msr & (MSR_DR|MSR_IR)) == MSR_DR)
470 pte.vpage |= ((u64)VSID_REAL_DR << (SID_SHIFT - 12));
471 else
472 pte.vpage |= ((u64)VSID_REAL_IR << (SID_SHIFT - 12));
473 pte.vpage |= vsid;
474
475 if (vsid == -1)
476 page_found = -EINVAL;
477 break;
478 }
479
480 if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
481 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
482 /*
483 * If we do the dcbz hack, we have to NX on every execution,
484 * so we can patch the executing code. This renders our guest
485 * NX-less.
486 */
487 pte.may_execute = !data;
488 }
489
490 if (page_found == -ENOENT) {
491 /* Page not found in guest PTE entries */
492 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000493 vcpu->arch.shared->dsisr = vcpu->arch.fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000494 vcpu->arch.shared->msr |=
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000495 vcpu->arch.shadow_srr1 & 0x00000000f8000000ULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000496 kvmppc_book3s_queue_irqprio(vcpu, vec);
497 } else if (page_found == -EPERM) {
498 /* Storage protection */
499 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000500 vcpu->arch.shared->dsisr = vcpu->arch.fault_dsisr & ~DSISR_NOHPTE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000501 vcpu->arch.shared->dsisr |= DSISR_PROTFAULT;
502 vcpu->arch.shared->msr |=
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000503 vcpu->arch.shadow_srr1 & 0x00000000f8000000ULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000504 kvmppc_book3s_queue_irqprio(vcpu, vec);
505 } else if (page_found == -EINVAL) {
506 /* Page not found in guest SLB */
507 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
508 kvmppc_book3s_queue_irqprio(vcpu, vec + 0x80);
509 } else if (!is_mmio &&
510 kvmppc_visible_gfn(vcpu, pte.raddr >> PAGE_SHIFT)) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000511 if (data && !(vcpu->arch.fault_dsisr & DSISR_NOHPTE)) {
512 /*
513 * There is already a host HPTE there, presumably
514 * a read-only one for a page the guest thinks
515 * is writable, so get rid of it first.
516 */
517 kvmppc_mmu_unmap_page(vcpu, &pte);
518 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000519 /* The guest's PTE is not mapped yet. Map on the host */
Paul Mackerras93b159b2013-09-20 14:52:51 +1000520 kvmppc_mmu_map_page(vcpu, &pte, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000521 if (data)
522 vcpu->stat.sp_storage++;
523 else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
Paul Mackerras93b159b2013-09-20 14:52:51 +1000524 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32)))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000525 kvmppc_patch_dcbz(vcpu, &pte);
526 } else {
527 /* MMIO */
528 vcpu->stat.mmio_exits++;
529 vcpu->arch.paddr_accessed = pte.raddr;
Alexander Graf6020c0f2012-03-12 02:26:30 +0100530 vcpu->arch.vaddr_accessed = pte.eaddr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000531 r = kvmppc_emulate_mmio(run, vcpu);
532 if ( r == RESUME_HOST_NV )
533 r = RESUME_HOST;
534 }
535
536 return r;
537}
538
539static inline int get_fpr_index(int i)
540{
Paul Mackerras28c483b2012-11-04 18:16:46 +0000541 return i * TS_FPRWIDTH;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000542}
543
544/* Give up external provider (FPU, Altivec, VSX) */
545void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr)
546{
547 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000548
Paul Mackerras28c483b2012-11-04 18:16:46 +0000549 /*
550 * VSX instructions can access FP and vector registers, so if
551 * we are giving up VSX, make sure we give up FP and VMX as well.
552 */
553 if (msr & MSR_VSX)
554 msr |= MSR_FP | MSR_VEC;
555
556 msr &= vcpu->arch.guest_owned_ext;
557 if (!msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000558 return;
559
560#ifdef DEBUG_EXT
561 printk(KERN_INFO "Giving up ext 0x%lx\n", msr);
562#endif
563
Paul Mackerras28c483b2012-11-04 18:16:46 +0000564 if (msr & MSR_FP) {
565 /*
566 * Note that on CPUs with VSX, giveup_fpu stores
567 * both the traditional FP registers and the added VSX
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000568 * registers into thread.fp_state.fpr[].
Paul Mackerras28c483b2012-11-04 18:16:46 +0000569 */
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100570 if (t->regs->msr & MSR_FP)
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000571 giveup_fpu(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100572 t->fp_save_area = NULL;
Paul Mackerras28c483b2012-11-04 18:16:46 +0000573 }
574
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000575#ifdef CONFIG_ALTIVEC
Paul Mackerras28c483b2012-11-04 18:16:46 +0000576 if (msr & MSR_VEC) {
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000577 if (current->thread.regs->msr & MSR_VEC)
578 giveup_altivec(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100579 t->vr_save_area = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000580 }
Paul Mackerras28c483b2012-11-04 18:16:46 +0000581#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000582
Paul Mackerras28c483b2012-11-04 18:16:46 +0000583 vcpu->arch.guest_owned_ext &= ~(msr | MSR_VSX);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000584 kvmppc_recalc_shadow_msr(vcpu);
585}
586
587static int kvmppc_read_inst(struct kvm_vcpu *vcpu)
588{
589 ulong srr0 = kvmppc_get_pc(vcpu);
590 u32 last_inst = kvmppc_get_last_inst(vcpu);
591 int ret;
592
593 ret = kvmppc_ld(vcpu, &srr0, sizeof(u32), &last_inst, false);
594 if (ret == -ENOENT) {
595 ulong msr = vcpu->arch.shared->msr;
596
597 msr = kvmppc_set_field(msr, 33, 33, 1);
598 msr = kvmppc_set_field(msr, 34, 36, 0);
599 vcpu->arch.shared->msr = kvmppc_set_field(msr, 42, 47, 0);
600 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_INST_STORAGE);
601 return EMULATE_AGAIN;
602 }
603
604 return EMULATE_DONE;
605}
606
607static int kvmppc_check_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr)
608{
609
610 /* Need to do paired single emulation? */
611 if (!(vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE))
612 return EMULATE_DONE;
613
614 /* Read out the instruction */
615 if (kvmppc_read_inst(vcpu) == EMULATE_DONE)
616 /* Need to emulate */
617 return EMULATE_FAIL;
618
619 return EMULATE_AGAIN;
620}
621
622/* Handle external providers (FPU, Altivec, VSX) */
623static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
624 ulong msr)
625{
626 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000627
628 /* When we have paired singles, we emulate in software */
629 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE)
630 return RESUME_GUEST;
631
632 if (!(vcpu->arch.shared->msr & msr)) {
633 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
634 return RESUME_GUEST;
635 }
636
Paul Mackerras28c483b2012-11-04 18:16:46 +0000637 if (msr == MSR_VSX) {
638 /* No VSX? Give an illegal instruction interrupt */
639#ifdef CONFIG_VSX
640 if (!cpu_has_feature(CPU_FTR_VSX))
641#endif
642 {
643 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
644 return RESUME_GUEST;
645 }
646
647 /*
648 * We have to load up all the FP and VMX registers before
649 * we can let the guest use VSX instructions.
650 */
651 msr = MSR_FP | MSR_VEC | MSR_VSX;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000652 }
653
Paul Mackerras28c483b2012-11-04 18:16:46 +0000654 /* See if we already own all the ext(s) needed */
655 msr &= ~vcpu->arch.guest_owned_ext;
656 if (!msr)
657 return RESUME_GUEST;
658
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000659#ifdef DEBUG_EXT
660 printk(KERN_INFO "Loading up ext 0x%lx\n", msr);
661#endif
662
Paul Mackerras28c483b2012-11-04 18:16:46 +0000663 if (msr & MSR_FP) {
Paul Mackerras09548fd2013-10-15 20:43:01 +1100664 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100665 load_fp_state(&vcpu->arch.fp);
666 t->fp_save_area = &vcpu->arch.fp;
Paul Mackerras28c483b2012-11-04 18:16:46 +0000667 }
668
669 if (msr & MSR_VEC) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000670#ifdef CONFIG_ALTIVEC
Paul Mackerras09548fd2013-10-15 20:43:01 +1100671 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100672 load_vr_state(&vcpu->arch.vr);
673 t->vr_save_area = &vcpu->arch.vr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000674#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000675 }
676
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100677 t->regs->msr |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000678 vcpu->arch.guest_owned_ext |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000679 kvmppc_recalc_shadow_msr(vcpu);
680
681 return RESUME_GUEST;
682}
683
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000684/*
685 * Kernel code using FP or VMX could have flushed guest state to
686 * the thread_struct; if so, get it back now.
687 */
688static void kvmppc_handle_lost_ext(struct kvm_vcpu *vcpu)
689{
690 unsigned long lost_ext;
691
692 lost_ext = vcpu->arch.guest_owned_ext & ~current->thread.regs->msr;
693 if (!lost_ext)
694 return;
695
Paul Mackerras09548fd2013-10-15 20:43:01 +1100696 if (lost_ext & MSR_FP) {
697 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100698 load_fp_state(&vcpu->arch.fp);
Paul Mackerras09548fd2013-10-15 20:43:01 +1100699 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000700#ifdef CONFIG_ALTIVEC
Paul Mackerras09548fd2013-10-15 20:43:01 +1100701 if (lost_ext & MSR_VEC) {
702 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100703 load_vr_state(&vcpu->arch.vr);
Paul Mackerras09548fd2013-10-15 20:43:01 +1100704 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000705#endif
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000706 current->thread.regs->msr |= lost_ext;
707}
708
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530709int kvmppc_handle_exit_pr(struct kvm_run *run, struct kvm_vcpu *vcpu,
710 unsigned int exit_nr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000711{
712 int r = RESUME_HOST;
Alexander Graf7ee78852012-08-13 12:44:41 +0200713 int s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000714
715 vcpu->stat.sum_exits++;
716
717 run->exit_reason = KVM_EXIT_UNKNOWN;
718 run->ready_for_interrupt_injection = 1;
719
Alexander Grafbd2be682012-08-13 01:04:19 +0200720 /* We get here with MSR.EE=1 */
Alexander Graf3b1d9d72012-04-30 10:56:12 +0200721
Alexander Graf97c95052012-08-02 15:10:00 +0200722 trace_kvm_exit(exit_nr, vcpu);
Alexander Graf706fb732012-08-12 11:29:09 +0200723 kvm_guest_exit();
Alexander Grafc63ddcb2012-08-12 11:27:49 +0200724
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000725 switch (exit_nr) {
726 case BOOK3S_INTERRUPT_INST_STORAGE:
Alexander Graf468a12c2011-12-09 14:44:13 +0100727 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000728 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000729 vcpu->stat.pf_instruc++;
730
731#ifdef CONFIG_PPC_BOOK3S_32
732 /* We set segments as unused segments when invalidating them. So
733 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000734 {
735 struct kvmppc_book3s_shadow_vcpu *svcpu;
736 u32 sr;
737
738 svcpu = svcpu_get(vcpu);
739 sr = svcpu->sr[kvmppc_get_pc(vcpu) >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +0100740 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000741 if (sr == SR_INVALID) {
742 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
743 r = RESUME_GUEST;
744 break;
745 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000746 }
747#endif
748
749 /* only care about PTEG not found errors, but leave NX alone */
Alexander Graf468a12c2011-12-09 14:44:13 +0100750 if (shadow_srr1 & 0x40000000) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000751 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000752 r = kvmppc_handle_pagefault(run, vcpu, kvmppc_get_pc(vcpu), exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000753 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000754 vcpu->stat.sp_instruc++;
755 } else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
756 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
757 /*
758 * XXX If we do the dcbz hack we use the NX bit to flush&patch the page,
759 * so we can't use the NX bit inside the guest. Let's cross our fingers,
760 * that no guest that needs the dcbz hack does NX.
761 */
762 kvmppc_mmu_pte_flush(vcpu, kvmppc_get_pc(vcpu), ~0xFFFUL);
763 r = RESUME_GUEST;
764 } else {
Alexander Graf468a12c2011-12-09 14:44:13 +0100765 vcpu->arch.shared->msr |= shadow_srr1 & 0x58000000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000766 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
767 r = RESUME_GUEST;
768 }
769 break;
Alexander Graf468a12c2011-12-09 14:44:13 +0100770 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000771 case BOOK3S_INTERRUPT_DATA_STORAGE:
772 {
773 ulong dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000774 u32 fault_dsisr = vcpu->arch.fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000775 vcpu->stat.pf_storage++;
776
777#ifdef CONFIG_PPC_BOOK3S_32
778 /* We set segments as unused segments when invalidating them. So
779 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000780 {
781 struct kvmppc_book3s_shadow_vcpu *svcpu;
782 u32 sr;
783
784 svcpu = svcpu_get(vcpu);
785 sr = svcpu->sr[dar >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +0100786 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000787 if (sr == SR_INVALID) {
788 kvmppc_mmu_map_segment(vcpu, dar);
789 r = RESUME_GUEST;
790 break;
791 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000792 }
793#endif
794
Paul Mackerras93b159b2013-09-20 14:52:51 +1000795 /*
796 * We need to handle missing shadow PTEs, and
797 * protection faults due to us mapping a page read-only
798 * when the guest thinks it is writable.
799 */
800 if (fault_dsisr & (DSISR_NOHPTE | DSISR_PROTFAULT)) {
801 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000802 r = kvmppc_handle_pagefault(run, vcpu, dar, exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000803 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000804 } else {
805 vcpu->arch.shared->dar = dar;
Alexander Graf468a12c2011-12-09 14:44:13 +0100806 vcpu->arch.shared->dsisr = fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000807 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
808 r = RESUME_GUEST;
809 }
810 break;
811 }
812 case BOOK3S_INTERRUPT_DATA_SEGMENT:
813 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_fault_dar(vcpu)) < 0) {
814 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
815 kvmppc_book3s_queue_irqprio(vcpu,
816 BOOK3S_INTERRUPT_DATA_SEGMENT);
817 }
818 r = RESUME_GUEST;
819 break;
820 case BOOK3S_INTERRUPT_INST_SEGMENT:
821 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu)) < 0) {
822 kvmppc_book3s_queue_irqprio(vcpu,
823 BOOK3S_INTERRUPT_INST_SEGMENT);
824 }
825 r = RESUME_GUEST;
826 break;
827 /* We're good on these - the host merely wanted to get our attention */
828 case BOOK3S_INTERRUPT_DECREMENTER:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100829 case BOOK3S_INTERRUPT_HV_DECREMENTER:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000830 vcpu->stat.dec_exits++;
831 r = RESUME_GUEST;
832 break;
833 case BOOK3S_INTERRUPT_EXTERNAL:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100834 case BOOK3S_INTERRUPT_EXTERNAL_LEVEL:
835 case BOOK3S_INTERRUPT_EXTERNAL_HV:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000836 vcpu->stat.ext_intr_exits++;
837 r = RESUME_GUEST;
838 break;
839 case BOOK3S_INTERRUPT_PERFMON:
840 r = RESUME_GUEST;
841 break;
842 case BOOK3S_INTERRUPT_PROGRAM:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100843 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000844 {
845 enum emulation_result er;
846 ulong flags;
847
848program_interrupt:
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000849 flags = vcpu->arch.shadow_srr1 & 0x1f0000ull;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000850
851 if (vcpu->arch.shared->msr & MSR_PR) {
852#ifdef EXIT_DEBUG
853 printk(KERN_INFO "Userspace triggered 0x700 exception at 0x%lx (0x%x)\n", kvmppc_get_pc(vcpu), kvmppc_get_last_inst(vcpu));
854#endif
855 if ((kvmppc_get_last_inst(vcpu) & 0xff0007ff) !=
856 (INS_DCBZ & 0xfffffff7)) {
857 kvmppc_core_queue_program(vcpu, flags);
858 r = RESUME_GUEST;
859 break;
860 }
861 }
862
863 vcpu->stat.emulated_inst_exits++;
864 er = kvmppc_emulate_instruction(run, vcpu);
865 switch (er) {
866 case EMULATE_DONE:
867 r = RESUME_GUEST_NV;
868 break;
869 case EMULATE_AGAIN:
870 r = RESUME_GUEST;
871 break;
872 case EMULATE_FAIL:
873 printk(KERN_CRIT "%s: emulation at %lx failed (%08x)\n",
874 __func__, kvmppc_get_pc(vcpu), kvmppc_get_last_inst(vcpu));
875 kvmppc_core_queue_program(vcpu, flags);
876 r = RESUME_GUEST;
877 break;
878 case EMULATE_DO_MMIO:
879 run->exit_reason = KVM_EXIT_MMIO;
880 r = RESUME_HOST_NV;
881 break;
Bharat Bhushanc402a3f2013-04-08 00:32:13 +0000882 case EMULATE_EXIT_USER:
Alexander Graf50c7bb82012-12-14 23:42:05 +0100883 r = RESUME_HOST_NV;
884 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000885 default:
886 BUG();
887 }
888 break;
889 }
890 case BOOK3S_INTERRUPT_SYSCALL:
Alexander Grafa668f2b2011-08-08 17:26:24 +0200891 if (vcpu->arch.papr_enabled &&
Paul Mackerras8b23de22013-08-06 14:15:19 +1000892 (kvmppc_get_last_sc(vcpu) == 0x44000022) &&
Alexander Grafa668f2b2011-08-08 17:26:24 +0200893 !(vcpu->arch.shared->msr & MSR_PR)) {
894 /* SC 1 papr hypercalls */
895 ulong cmd = kvmppc_get_gpr(vcpu, 3);
896 int i;
897
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530898#ifdef CONFIG_PPC_BOOK3S_64
Alexander Grafa668f2b2011-08-08 17:26:24 +0200899 if (kvmppc_h_pr(vcpu, cmd) == EMULATE_DONE) {
900 r = RESUME_GUEST;
901 break;
902 }
Andreas Schwab96f38d72011-11-08 07:17:39 +0000903#endif
Alexander Grafa668f2b2011-08-08 17:26:24 +0200904
905 run->papr_hcall.nr = cmd;
906 for (i = 0; i < 9; ++i) {
907 ulong gpr = kvmppc_get_gpr(vcpu, 4 + i);
908 run->papr_hcall.args[i] = gpr;
909 }
910 run->exit_reason = KVM_EXIT_PAPR_HCALL;
911 vcpu->arch.hcall_needed = 1;
912 r = RESUME_HOST;
913 } else if (vcpu->arch.osi_enabled &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000914 (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) &&
915 (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) {
916 /* MOL hypercalls */
917 u64 *gprs = run->osi.gprs;
918 int i;
919
920 run->exit_reason = KVM_EXIT_OSI;
921 for (i = 0; i < 32; i++)
922 gprs[i] = kvmppc_get_gpr(vcpu, i);
923 vcpu->arch.osi_needed = 1;
924 r = RESUME_HOST_NV;
925 } else if (!(vcpu->arch.shared->msr & MSR_PR) &&
926 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
927 /* KVM PV hypercalls */
928 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
929 r = RESUME_GUEST;
930 } else {
931 /* Guest syscalls */
932 vcpu->stat.syscall_exits++;
933 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
934 r = RESUME_GUEST;
935 }
936 break;
937 case BOOK3S_INTERRUPT_FP_UNAVAIL:
938 case BOOK3S_INTERRUPT_ALTIVEC:
939 case BOOK3S_INTERRUPT_VSX:
940 {
941 int ext_msr = 0;
942
943 switch (exit_nr) {
944 case BOOK3S_INTERRUPT_FP_UNAVAIL: ext_msr = MSR_FP; break;
945 case BOOK3S_INTERRUPT_ALTIVEC: ext_msr = MSR_VEC; break;
946 case BOOK3S_INTERRUPT_VSX: ext_msr = MSR_VSX; break;
947 }
948
949 switch (kvmppc_check_ext(vcpu, exit_nr)) {
950 case EMULATE_DONE:
951 /* everything ok - let's enable the ext */
952 r = kvmppc_handle_ext(vcpu, exit_nr, ext_msr);
953 break;
954 case EMULATE_FAIL:
955 /* we need to emulate this instruction */
956 goto program_interrupt;
957 break;
958 default:
959 /* nothing to worry about - go again */
960 break;
961 }
962 break;
963 }
964 case BOOK3S_INTERRUPT_ALIGNMENT:
965 if (kvmppc_read_inst(vcpu) == EMULATE_DONE) {
966 vcpu->arch.shared->dsisr = kvmppc_alignment_dsisr(vcpu,
967 kvmppc_get_last_inst(vcpu));
968 vcpu->arch.shared->dar = kvmppc_alignment_dar(vcpu,
969 kvmppc_get_last_inst(vcpu));
970 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
971 }
972 r = RESUME_GUEST;
973 break;
974 case BOOK3S_INTERRUPT_MACHINE_CHECK:
975 case BOOK3S_INTERRUPT_TRACE:
976 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
977 r = RESUME_GUEST;
978 break;
979 default:
Alexander Graf468a12c2011-12-09 14:44:13 +0100980 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000981 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000982 /* Ugh - bork here! What did we get? */
983 printk(KERN_EMERG "exit_nr=0x%x | pc=0x%lx | msr=0x%lx\n",
Alexander Graf468a12c2011-12-09 14:44:13 +0100984 exit_nr, kvmppc_get_pc(vcpu), shadow_srr1);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000985 r = RESUME_HOST;
986 BUG();
987 break;
988 }
Alexander Graf468a12c2011-12-09 14:44:13 +0100989 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000990
991 if (!(r & RESUME_HOST)) {
992 /* To avoid clobbering exit_reason, only check for signals if
993 * we aren't already exiting to userspace for some other
994 * reason. */
Alexander Grafe371f712011-12-19 13:36:55 +0100995
996 /*
997 * Interrupts could be timers for the guest which we have to
998 * inject again, so let's postpone them until we're in the guest
999 * and if we really did time things so badly, then we just exit
1000 * again due to a host external interrupt.
1001 */
Alexander Grafbd2be682012-08-13 01:04:19 +02001002 local_irq_disable();
Alexander Graf7ee78852012-08-13 12:44:41 +02001003 s = kvmppc_prepare_to_enter(vcpu);
1004 if (s <= 0) {
Alexander Grafbd2be682012-08-13 01:04:19 +02001005 local_irq_enable();
Alexander Graf7ee78852012-08-13 12:44:41 +02001006 r = s;
Alexander Graf24afa372012-08-12 12:42:30 +02001007 } else {
Scott Wood5f1c2482013-07-10 17:47:39 -05001008 kvmppc_fix_ee_before_entry();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001009 }
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +10001010 kvmppc_handle_lost_ext(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001011 }
1012
1013 trace_kvm_book3s_reenter(r, vcpu);
1014
1015 return r;
1016}
1017
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301018static int kvm_arch_vcpu_ioctl_get_sregs_pr(struct kvm_vcpu *vcpu,
1019 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001020{
1021 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1022 int i;
1023
1024 sregs->pvr = vcpu->arch.pvr;
1025
1026 sregs->u.s.sdr1 = to_book3s(vcpu)->sdr1;
1027 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1028 for (i = 0; i < 64; i++) {
1029 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige | i;
1030 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1031 }
1032 } else {
1033 for (i = 0; i < 16; i++)
1034 sregs->u.s.ppc32.sr[i] = vcpu->arch.shared->sr[i];
1035
1036 for (i = 0; i < 8; i++) {
1037 sregs->u.s.ppc32.ibat[i] = vcpu3s->ibat[i].raw;
1038 sregs->u.s.ppc32.dbat[i] = vcpu3s->dbat[i].raw;
1039 }
1040 }
1041
1042 return 0;
1043}
1044
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301045static int kvm_arch_vcpu_ioctl_set_sregs_pr(struct kvm_vcpu *vcpu,
1046 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001047{
1048 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1049 int i;
1050
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301051 kvmppc_set_pvr_pr(vcpu, sregs->pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001052
1053 vcpu3s->sdr1 = sregs->u.s.sdr1;
1054 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1055 for (i = 0; i < 64; i++) {
1056 vcpu->arch.mmu.slbmte(vcpu, sregs->u.s.ppc64.slb[i].slbv,
1057 sregs->u.s.ppc64.slb[i].slbe);
1058 }
1059 } else {
1060 for (i = 0; i < 16; i++) {
1061 vcpu->arch.mmu.mtsrin(vcpu, i, sregs->u.s.ppc32.sr[i]);
1062 }
1063 for (i = 0; i < 8; i++) {
1064 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), false,
1065 (u32)sregs->u.s.ppc32.ibat[i]);
1066 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), true,
1067 (u32)(sregs->u.s.ppc32.ibat[i] >> 32));
1068 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), false,
1069 (u32)sregs->u.s.ppc32.dbat[i]);
1070 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), true,
1071 (u32)(sregs->u.s.ppc32.dbat[i] >> 32));
1072 }
1073 }
1074
1075 /* Flush the MMU after messing with the segments */
1076 kvmppc_mmu_pte_flush(vcpu, 0, 0);
1077
1078 return 0;
1079}
1080
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301081static int kvmppc_get_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1082 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001083{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001084 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001085
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001086 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001087 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001088 *val = get_reg_val(id, to_book3s(vcpu)->hior);
Paul Mackerras31f34382011-12-12 12:26:50 +00001089 break;
1090 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001091 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001092 break;
1093 }
1094
1095 return r;
1096}
1097
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301098static int kvmppc_set_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1099 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001100{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001101 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001102
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001103 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001104 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001105 to_book3s(vcpu)->hior = set_reg_val(id, *val);
1106 to_book3s(vcpu)->hior_explicit = true;
Paul Mackerras31f34382011-12-12 12:26:50 +00001107 break;
1108 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001109 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001110 break;
1111 }
1112
1113 return r;
1114}
1115
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301116static struct kvm_vcpu *kvmppc_core_vcpu_create_pr(struct kvm *kvm,
1117 unsigned int id)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001118{
1119 struct kvmppc_vcpu_book3s *vcpu_book3s;
1120 struct kvm_vcpu *vcpu;
1121 int err = -ENOMEM;
1122 unsigned long p;
1123
Paul Mackerras3ff95502013-09-20 14:52:49 +10001124 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
1125 if (!vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001126 goto out;
1127
Paul Mackerras3ff95502013-09-20 14:52:49 +10001128 vcpu_book3s = vzalloc(sizeof(struct kvmppc_vcpu_book3s));
1129 if (!vcpu_book3s)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001130 goto free_vcpu;
Paul Mackerras3ff95502013-09-20 14:52:49 +10001131 vcpu->arch.book3s = vcpu_book3s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001132
Paul Mackerras3ff95502013-09-20 14:52:49 +10001133#ifdef CONFIG_KVM_BOOK3S_32
1134 vcpu->arch.shadow_vcpu =
1135 kzalloc(sizeof(*vcpu->arch.shadow_vcpu), GFP_KERNEL);
1136 if (!vcpu->arch.shadow_vcpu)
1137 goto free_vcpu3s;
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001138#endif
Paul Mackerras3ff95502013-09-20 14:52:49 +10001139
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001140 err = kvm_vcpu_init(vcpu, kvm, id);
1141 if (err)
1142 goto free_shadow_vcpu;
1143
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001144 err = -ENOMEM;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001145 p = __get_free_page(GFP_KERNEL|__GFP_ZERO);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001146 if (!p)
1147 goto uninit_vcpu;
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001148 /* the real shared page fills the last 4k of our page */
1149 vcpu->arch.shared = (void *)(p + PAGE_SIZE - 4096);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001150
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001151#ifdef CONFIG_PPC_BOOK3S_64
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001152 /*
1153 * Default to the same as the host if we're on sufficiently
1154 * recent machine that we have 1TB segments;
1155 * otherwise default to PPC970FX.
1156 */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001157 vcpu->arch.pvr = 0x3C0301;
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001158 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1159 vcpu->arch.pvr = mfspr(SPRN_PVR);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001160#else
1161 /* default to book3s_32 (750) */
1162 vcpu->arch.pvr = 0x84202;
1163#endif
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301164 kvmppc_set_pvr_pr(vcpu, vcpu->arch.pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001165 vcpu->arch.slb_nr = 64;
1166
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001167 vcpu->arch.shadow_msr = MSR_USER64;
1168
1169 err = kvmppc_mmu_init(vcpu);
1170 if (err < 0)
1171 goto uninit_vcpu;
1172
1173 return vcpu;
1174
1175uninit_vcpu:
1176 kvm_vcpu_uninit(vcpu);
1177free_shadow_vcpu:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001178#ifdef CONFIG_KVM_BOOK3S_32
Paul Mackerras3ff95502013-09-20 14:52:49 +10001179 kfree(vcpu->arch.shadow_vcpu);
1180free_vcpu3s:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001181#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001182 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001183free_vcpu:
1184 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001185out:
1186 return ERR_PTR(err);
1187}
1188
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301189static void kvmppc_core_vcpu_free_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001190{
1191 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
1192
1193 free_page((unsigned long)vcpu->arch.shared & PAGE_MASK);
1194 kvm_vcpu_uninit(vcpu);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001195#ifdef CONFIG_KVM_BOOK3S_32
1196 kfree(vcpu->arch.shadow_vcpu);
1197#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001198 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001199 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001200}
1201
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301202static int kvmppc_vcpu_run_pr(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001203{
1204 int ret;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001205#ifdef CONFIG_ALTIVEC
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001206 unsigned long uninitialized_var(vrsave);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001207#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001208
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001209 /* Check if we can run the vcpu at all */
1210 if (!vcpu->arch.sane) {
1211 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
Alexander Graf7d827142011-12-09 15:46:21 +01001212 ret = -EINVAL;
1213 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001214 }
1215
Alexander Grafe371f712011-12-19 13:36:55 +01001216 /*
1217 * Interrupts could be timers for the guest which we have to inject
1218 * again, so let's postpone them until we're in the guest and if we
1219 * really did time things so badly, then we just exit again due to
1220 * a host external interrupt.
1221 */
Alexander Grafbd2be682012-08-13 01:04:19 +02001222 local_irq_disable();
Alexander Graf7ee78852012-08-13 12:44:41 +02001223 ret = kvmppc_prepare_to_enter(vcpu);
1224 if (ret <= 0) {
Alexander Grafbd2be682012-08-13 01:04:19 +02001225 local_irq_enable();
Alexander Graf7d827142011-12-09 15:46:21 +01001226 goto out;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001227 }
1228
Paul Mackerras99dae3b2013-10-15 20:43:03 +11001229 /* Save FPU state in thread_struct */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001230 if (current->thread.regs->msr & MSR_FP)
1231 giveup_fpu(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001232
1233#ifdef CONFIG_ALTIVEC
Paul Mackerras99dae3b2013-10-15 20:43:03 +11001234 /* Save Altivec state in thread_struct */
1235 if (current->thread.regs->msr & MSR_VEC)
1236 giveup_altivec(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001237#endif
1238
1239#ifdef CONFIG_VSX
Paul Mackerras99dae3b2013-10-15 20:43:03 +11001240 /* Save VSX state in thread_struct */
1241 if (current->thread.regs->msr & MSR_VSX)
Paul Mackerras28c483b2012-11-04 18:16:46 +00001242 __giveup_vsx(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001243#endif
1244
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001245 /* Preload FPU if it's enabled */
1246 if (vcpu->arch.shared->msr & MSR_FP)
1247 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
1248
Scott Wood5f1c2482013-07-10 17:47:39 -05001249 kvmppc_fix_ee_before_entry();
Paul Mackerrasdf6909e52011-06-29 00:19:50 +00001250
1251 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
1252
Alexander Graf24afa372012-08-12 12:42:30 +02001253 /* No need for kvm_guest_exit. It's done in handle_exit.
1254 We also get here with interrupts enabled. */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001255
Paul Mackerras28c483b2012-11-04 18:16:46 +00001256 /* Make sure we save the guest FPU/Altivec/VSX state */
1257 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
1258
Alexander Graf7d827142011-12-09 15:46:21 +01001259out:
Alexander Graf0652eaa2012-08-12 11:34:21 +02001260 vcpu->mode = OUTSIDE_GUEST_MODE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001261 return ret;
1262}
1263
Paul Mackerras82ed3612011-12-15 02:03:22 +00001264/*
1265 * Get (and clear) the dirty memory log for a memory slot.
1266 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301267static int kvm_vm_ioctl_get_dirty_log_pr(struct kvm *kvm,
1268 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00001269{
1270 struct kvm_memory_slot *memslot;
1271 struct kvm_vcpu *vcpu;
1272 ulong ga, ga_end;
1273 int is_dirty = 0;
1274 int r;
1275 unsigned long n;
1276
1277 mutex_lock(&kvm->slots_lock);
1278
1279 r = kvm_get_dirty_log(kvm, log, &is_dirty);
1280 if (r)
1281 goto out;
1282
1283 /* If nothing is dirty, don't bother messing with page tables. */
1284 if (is_dirty) {
1285 memslot = id_to_memslot(kvm->memslots, log->slot);
1286
1287 ga = memslot->base_gfn << PAGE_SHIFT;
1288 ga_end = ga + (memslot->npages << PAGE_SHIFT);
1289
1290 kvm_for_each_vcpu(n, vcpu, kvm)
1291 kvmppc_mmu_pte_pflush(vcpu, ga, ga_end);
1292
1293 n = kvm_dirty_bitmap_bytes(memslot);
1294 memset(memslot->dirty_bitmap, 0, n);
1295 }
1296
1297 r = 0;
1298out:
1299 mutex_unlock(&kvm->slots_lock);
1300 return r;
1301}
1302
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301303static void kvmppc_core_flush_memslot_pr(struct kvm *kvm,
1304 struct kvm_memory_slot *memslot)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001305{
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301306 return;
1307}
1308
1309static int kvmppc_core_prepare_memory_region_pr(struct kvm *kvm,
1310 struct kvm_memory_slot *memslot,
1311 struct kvm_userspace_memory_region *mem)
1312{
1313 return 0;
1314}
1315
1316static void kvmppc_core_commit_memory_region_pr(struct kvm *kvm,
1317 struct kvm_userspace_memory_region *mem,
1318 const struct kvm_memory_slot *old)
1319{
1320 return;
1321}
1322
1323static void kvmppc_core_free_memslot_pr(struct kvm_memory_slot *free,
1324 struct kvm_memory_slot *dont)
1325{
1326 return;
1327}
1328
1329static int kvmppc_core_create_memslot_pr(struct kvm_memory_slot *slot,
1330 unsigned long npages)
1331{
1332 return 0;
1333}
1334
1335
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001336#ifdef CONFIG_PPC64
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301337static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1338 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001339{
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001340 long int i;
1341 struct kvm_vcpu *vcpu;
1342
1343 info->flags = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001344
1345 /* SLB is always 64 entries */
1346 info->slb_size = 64;
1347
1348 /* Standard 4k base page size segment */
1349 info->sps[0].page_shift = 12;
1350 info->sps[0].slb_enc = 0;
1351 info->sps[0].enc[0].page_shift = 12;
1352 info->sps[0].enc[0].pte_enc = 0;
1353
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001354 /*
1355 * 64k large page size.
1356 * We only want to put this in if the CPUs we're emulating
1357 * support it, but unfortunately we don't have a vcpu easily
1358 * to hand here to test. Just pick the first vcpu, and if
1359 * that doesn't exist yet, report the minimum capability,
1360 * i.e., no 64k pages.
1361 * 1T segment support goes along with 64k pages.
1362 */
1363 i = 1;
1364 vcpu = kvm_get_vcpu(kvm, 0);
1365 if (vcpu && (vcpu->arch.hflags & BOOK3S_HFLAG_MULTI_PGSIZE)) {
1366 info->flags = KVM_PPC_1T_SEGMENTS;
1367 info->sps[i].page_shift = 16;
1368 info->sps[i].slb_enc = SLB_VSID_L | SLB_VSID_LP_01;
1369 info->sps[i].enc[0].page_shift = 16;
1370 info->sps[i].enc[0].pte_enc = 1;
1371 ++i;
1372 }
1373
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001374 /* Standard 16M large page size segment */
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001375 info->sps[i].page_shift = 24;
1376 info->sps[i].slb_enc = SLB_VSID_L;
1377 info->sps[i].enc[0].page_shift = 24;
1378 info->sps[i].enc[0].pte_enc = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001379
1380 return 0;
1381}
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301382#else
1383static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1384 struct kvm_ppc_smmu_info *info)
1385{
1386 /* We should not get called */
1387 BUG();
1388}
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001389#endif /* CONFIG_PPC64 */
1390
Ian Munsiea413f472012-12-03 18:36:13 +00001391static unsigned int kvm_global_user_count = 0;
1392static DEFINE_SPINLOCK(kvm_global_user_count_lock);
1393
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301394static int kvmppc_core_init_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001395{
Paul Mackerras9308ab82013-09-20 14:52:48 +10001396 mutex_init(&kvm->arch.hpt_mutex);
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001397
Ian Munsiea413f472012-12-03 18:36:13 +00001398 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1399 spin_lock(&kvm_global_user_count_lock);
1400 if (++kvm_global_user_count == 1)
1401 pSeries_disable_reloc_on_exc();
1402 spin_unlock(&kvm_global_user_count_lock);
1403 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001404 return 0;
1405}
1406
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301407static void kvmppc_core_destroy_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001408{
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001409#ifdef CONFIG_PPC64
1410 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
1411#endif
Ian Munsiea413f472012-12-03 18:36:13 +00001412
1413 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1414 spin_lock(&kvm_global_user_count_lock);
1415 BUG_ON(kvm_global_user_count == 0);
1416 if (--kvm_global_user_count == 0)
1417 pSeries_enable_reloc_on_exc();
1418 spin_unlock(&kvm_global_user_count_lock);
1419 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001420}
1421
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301422static int kvmppc_core_check_processor_compat_pr(void)
1423{
1424 /* we are always compatible */
1425 return 0;
1426}
1427
1428static long kvm_arch_vm_ioctl_pr(struct file *filp,
1429 unsigned int ioctl, unsigned long arg)
1430{
1431 return -ENOTTY;
1432}
1433
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301434static struct kvmppc_ops kvm_ops_pr = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301435 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_pr,
1436 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_pr,
1437 .get_one_reg = kvmppc_get_one_reg_pr,
1438 .set_one_reg = kvmppc_set_one_reg_pr,
1439 .vcpu_load = kvmppc_core_vcpu_load_pr,
1440 .vcpu_put = kvmppc_core_vcpu_put_pr,
1441 .set_msr = kvmppc_set_msr_pr,
1442 .vcpu_run = kvmppc_vcpu_run_pr,
1443 .vcpu_create = kvmppc_core_vcpu_create_pr,
1444 .vcpu_free = kvmppc_core_vcpu_free_pr,
1445 .check_requests = kvmppc_core_check_requests_pr,
1446 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_pr,
1447 .flush_memslot = kvmppc_core_flush_memslot_pr,
1448 .prepare_memory_region = kvmppc_core_prepare_memory_region_pr,
1449 .commit_memory_region = kvmppc_core_commit_memory_region_pr,
1450 .unmap_hva = kvm_unmap_hva_pr,
1451 .unmap_hva_range = kvm_unmap_hva_range_pr,
1452 .age_hva = kvm_age_hva_pr,
1453 .test_age_hva = kvm_test_age_hva_pr,
1454 .set_spte_hva = kvm_set_spte_hva_pr,
1455 .mmu_destroy = kvmppc_mmu_destroy_pr,
1456 .free_memslot = kvmppc_core_free_memslot_pr,
1457 .create_memslot = kvmppc_core_create_memslot_pr,
1458 .init_vm = kvmppc_core_init_vm_pr,
1459 .destroy_vm = kvmppc_core_destroy_vm_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301460 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_pr,
1461 .emulate_op = kvmppc_core_emulate_op_pr,
1462 .emulate_mtspr = kvmppc_core_emulate_mtspr_pr,
1463 .emulate_mfspr = kvmppc_core_emulate_mfspr_pr,
1464 .fast_vcpu_kick = kvm_vcpu_kick,
1465 .arch_vm_ioctl = kvm_arch_vm_ioctl_pr,
1466};
1467
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301468
1469int kvmppc_book3s_init_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001470{
1471 int r;
1472
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301473 r = kvmppc_core_check_processor_compat_pr();
1474 if (r < 0)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001475 return r;
1476
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301477 kvm_ops_pr.owner = THIS_MODULE;
1478 kvmppc_pr_ops = &kvm_ops_pr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001479
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301480 r = kvmppc_mmu_hpte_sysinit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001481 return r;
1482}
1483
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301484void kvmppc_book3s_exit_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001485{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301486 kvmppc_pr_ops = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001487 kvmppc_mmu_hpte_sysexit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001488}
1489
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301490/*
1491 * We only support separate modules for book3s 64
1492 */
1493#ifdef CONFIG_PPC_BOOK3S_64
1494
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301495module_init(kvmppc_book3s_init_pr);
1496module_exit(kvmppc_book3s_exit_pr);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301497
1498MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01001499MODULE_ALIAS_MISCDEV(KVM_MINOR);
1500MODULE_ALIAS("devname:kvm");
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301501#endif