blob: fe14ca3dd171cd60b3c07191fa3bdd78a141e2a6 [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>
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000044
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053045#include "book3s.h"
Aneesh Kumar K.V72c12532013-10-07 22:17:57 +053046
47#define CREATE_TRACE_POINTS
48#include "trace_pr.h"
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000049
50/* #define EXIT_DEBUG */
51/* #define DEBUG_EXT */
52
53static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
54 ulong msr);
55
56/* Some compatibility defines */
57#ifdef CONFIG_PPC_BOOK3S_32
58#define MSR_USER32 MSR_USER
59#define MSR_USER64 MSR_USER
60#define HW_PAGE_SIZE PAGE_SIZE
61#endif
62
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053063static void kvmppc_core_vcpu_load_pr(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000064{
65#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010066 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
67 memcpy(svcpu->slb, to_book3s(vcpu)->slb_shadow, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +010068 svcpu->slb_max = to_book3s(vcpu)->slb_shadow_max;
69 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000070#endif
Paul Mackerrasa47d72f2012-09-20 19:35:51 +000071 vcpu->cpu = smp_processor_id();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000072#ifdef CONFIG_PPC_BOOK3S_32
Paul Mackerras3ff95502013-09-20 14:52:49 +100073 current->thread.kvm_shadow_vcpu = vcpu->arch.shadow_vcpu;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000074#endif
75}
76
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053077static void kvmppc_core_vcpu_put_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000078{
79#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010080 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
81 memcpy(to_book3s(vcpu)->slb_shadow, svcpu->slb, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +010082 to_book3s(vcpu)->slb_shadow_max = svcpu->slb_max;
83 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000084#endif
85
Paul Mackerras28c483b2012-11-04 18:16:46 +000086 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
Paul Mackerrasa47d72f2012-09-20 19:35:51 +000087 vcpu->cpu = -1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000088}
89
Paul Mackerrasa2d56022013-09-20 14:52:43 +100090/* Copy data needed by real-mode code from vcpu to shadow vcpu */
91void kvmppc_copy_to_svcpu(struct kvmppc_book3s_shadow_vcpu *svcpu,
92 struct kvm_vcpu *vcpu)
93{
94 svcpu->gpr[0] = vcpu->arch.gpr[0];
95 svcpu->gpr[1] = vcpu->arch.gpr[1];
96 svcpu->gpr[2] = vcpu->arch.gpr[2];
97 svcpu->gpr[3] = vcpu->arch.gpr[3];
98 svcpu->gpr[4] = vcpu->arch.gpr[4];
99 svcpu->gpr[5] = vcpu->arch.gpr[5];
100 svcpu->gpr[6] = vcpu->arch.gpr[6];
101 svcpu->gpr[7] = vcpu->arch.gpr[7];
102 svcpu->gpr[8] = vcpu->arch.gpr[8];
103 svcpu->gpr[9] = vcpu->arch.gpr[9];
104 svcpu->gpr[10] = vcpu->arch.gpr[10];
105 svcpu->gpr[11] = vcpu->arch.gpr[11];
106 svcpu->gpr[12] = vcpu->arch.gpr[12];
107 svcpu->gpr[13] = vcpu->arch.gpr[13];
108 svcpu->cr = vcpu->arch.cr;
109 svcpu->xer = vcpu->arch.xer;
110 svcpu->ctr = vcpu->arch.ctr;
111 svcpu->lr = vcpu->arch.lr;
112 svcpu->pc = vcpu->arch.pc;
113}
114
115/* Copy data touched by real-mode code from shadow vcpu back to vcpu */
116void kvmppc_copy_from_svcpu(struct kvm_vcpu *vcpu,
117 struct kvmppc_book3s_shadow_vcpu *svcpu)
118{
119 vcpu->arch.gpr[0] = svcpu->gpr[0];
120 vcpu->arch.gpr[1] = svcpu->gpr[1];
121 vcpu->arch.gpr[2] = svcpu->gpr[2];
122 vcpu->arch.gpr[3] = svcpu->gpr[3];
123 vcpu->arch.gpr[4] = svcpu->gpr[4];
124 vcpu->arch.gpr[5] = svcpu->gpr[5];
125 vcpu->arch.gpr[6] = svcpu->gpr[6];
126 vcpu->arch.gpr[7] = svcpu->gpr[7];
127 vcpu->arch.gpr[8] = svcpu->gpr[8];
128 vcpu->arch.gpr[9] = svcpu->gpr[9];
129 vcpu->arch.gpr[10] = svcpu->gpr[10];
130 vcpu->arch.gpr[11] = svcpu->gpr[11];
131 vcpu->arch.gpr[12] = svcpu->gpr[12];
132 vcpu->arch.gpr[13] = svcpu->gpr[13];
133 vcpu->arch.cr = svcpu->cr;
134 vcpu->arch.xer = svcpu->xer;
135 vcpu->arch.ctr = svcpu->ctr;
136 vcpu->arch.lr = svcpu->lr;
137 vcpu->arch.pc = svcpu->pc;
138 vcpu->arch.shadow_srr1 = svcpu->shadow_srr1;
139 vcpu->arch.fault_dar = svcpu->fault_dar;
140 vcpu->arch.fault_dsisr = svcpu->fault_dsisr;
141 vcpu->arch.last_inst = svcpu->last_inst;
142}
143
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530144static int kvmppc_core_check_requests_pr(struct kvm_vcpu *vcpu)
Alexander Graf03d25c52012-08-10 12:28:50 +0200145{
Alexander Graf7c973a22012-08-13 12:50:35 +0200146 int r = 1; /* Indicate we want to get back into the guest */
147
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200148 /* We misuse TLB_FLUSH to indicate that we want to clear
149 all shadow cache entries */
150 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
151 kvmppc_mmu_pte_flush(vcpu, 0, 0);
Alexander Graf7c973a22012-08-13 12:50:35 +0200152
153 return r;
Alexander Graf03d25c52012-08-10 12:28:50 +0200154}
155
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200156/************* MMU Notifiers *************/
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000157static void do_kvm_unmap_hva(struct kvm *kvm, unsigned long start,
158 unsigned long end)
159{
160 long i;
161 struct kvm_vcpu *vcpu;
162 struct kvm_memslots *slots;
163 struct kvm_memory_slot *memslot;
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200164
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000165 slots = kvm_memslots(kvm);
166 kvm_for_each_memslot(memslot, slots) {
167 unsigned long hva_start, hva_end;
168 gfn_t gfn, gfn_end;
169
170 hva_start = max(start, memslot->userspace_addr);
171 hva_end = min(end, memslot->userspace_addr +
172 (memslot->npages << PAGE_SHIFT));
173 if (hva_start >= hva_end)
174 continue;
175 /*
176 * {gfn(page) | page intersects with [hva_start, hva_end)} =
177 * {gfn, gfn+1, ..., gfn_end-1}.
178 */
179 gfn = hva_to_gfn_memslot(hva_start, memslot);
180 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
181 kvm_for_each_vcpu(i, vcpu, kvm)
182 kvmppc_mmu_pte_pflush(vcpu, gfn << PAGE_SHIFT,
183 gfn_end << PAGE_SHIFT);
184 }
185}
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200186
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530187static int kvm_unmap_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200188{
189 trace_kvm_unmap_hva(hva);
190
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000191 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200192
193 return 0;
194}
195
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530196static int kvm_unmap_hva_range_pr(struct kvm *kvm, unsigned long start,
197 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200198{
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000199 do_kvm_unmap_hva(kvm, start, end);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200200
201 return 0;
202}
203
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530204static int kvm_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200205{
206 /* XXX could be more clever ;) */
207 return 0;
208}
209
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530210static int kvm_test_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200211{
212 /* XXX could be more clever ;) */
213 return 0;
214}
215
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530216static void kvm_set_spte_hva_pr(struct kvm *kvm, unsigned long hva, pte_t pte)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200217{
218 /* The page will get remapped properly on its next fault */
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000219 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200220}
221
222/*****************************************/
223
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000224static void kvmppc_recalc_shadow_msr(struct kvm_vcpu *vcpu)
225{
226 ulong smsr = vcpu->arch.shared->msr;
227
228 /* Guest MSR values */
Paul Mackerras3a2e7b02012-11-04 18:17:28 +0000229 smsr &= MSR_FE0 | MSR_FE1 | MSR_SF | MSR_SE | MSR_BE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000230 /* Process MSR values */
231 smsr |= MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_PR | MSR_EE;
232 /* External providers the guest reserved */
233 smsr |= (vcpu->arch.shared->msr & vcpu->arch.guest_owned_ext);
234 /* 64-bit Process MSR values */
235#ifdef CONFIG_PPC_BOOK3S_64
236 smsr |= MSR_ISF | MSR_HV;
237#endif
238 vcpu->arch.shadow_msr = smsr;
239}
240
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530241static void kvmppc_set_msr_pr(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000242{
243 ulong old_msr = vcpu->arch.shared->msr;
244
245#ifdef EXIT_DEBUG
246 printk(KERN_INFO "KVM: Set MSR to 0x%llx\n", msr);
247#endif
248
249 msr &= to_book3s(vcpu)->msr_mask;
250 vcpu->arch.shared->msr = msr;
251 kvmppc_recalc_shadow_msr(vcpu);
252
253 if (msr & MSR_POW) {
254 if (!vcpu->arch.pending_exceptions) {
255 kvm_vcpu_block(vcpu);
Alexander Graf966cd0f2012-03-14 16:55:08 +0100256 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000257 vcpu->stat.halt_wakeup++;
258
259 /* Unset POW bit after we woke up */
260 msr &= ~MSR_POW;
261 vcpu->arch.shared->msr = msr;
262 }
263 }
264
265 if ((vcpu->arch.shared->msr & (MSR_PR|MSR_IR|MSR_DR)) !=
266 (old_msr & (MSR_PR|MSR_IR|MSR_DR))) {
267 kvmppc_mmu_flush_segments(vcpu);
268 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
269
270 /* Preload magic page segment when in kernel mode */
271 if (!(msr & MSR_PR) && vcpu->arch.magic_page_pa) {
272 struct kvm_vcpu_arch *a = &vcpu->arch;
273
274 if (msr & MSR_DR)
275 kvmppc_mmu_map_segment(vcpu, a->magic_page_ea);
276 else
277 kvmppc_mmu_map_segment(vcpu, a->magic_page_pa);
278 }
279 }
280
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000281 /*
282 * When switching from 32 to 64-bit, we may have a stale 32-bit
283 * magic page around, we need to flush it. Typically 32-bit magic
284 * page will be instanciated when calling into RTAS. Note: We
285 * assume that such transition only happens while in kernel mode,
286 * ie, we never transition from user 32-bit to kernel 64-bit with
287 * a 32-bit magic page around.
288 */
289 if (vcpu->arch.magic_page_pa &&
290 !(old_msr & MSR_PR) && !(old_msr & MSR_SF) && (msr & MSR_SF)) {
291 /* going from RTAS to normal kernel code */
292 kvmppc_mmu_pte_flush(vcpu, (uint32_t)vcpu->arch.magic_page_pa,
293 ~0xFFFUL);
294 }
295
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000296 /* Preload FPU if it's enabled */
297 if (vcpu->arch.shared->msr & MSR_FP)
298 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
299}
300
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530301void kvmppc_set_pvr_pr(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000302{
303 u32 host_pvr;
304
305 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SLB;
306 vcpu->arch.pvr = pvr;
307#ifdef CONFIG_PPC_BOOK3S_64
308 if ((pvr >= 0x330000) && (pvr < 0x70330000)) {
309 kvmppc_mmu_book3s_64_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200310 if (!to_book3s(vcpu)->hior_explicit)
311 to_book3s(vcpu)->hior = 0xfff00000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000312 to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200313 vcpu->arch.cpu_type = KVM_CPU_3S_64;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000314 } else
315#endif
316 {
317 kvmppc_mmu_book3s_32_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200318 if (!to_book3s(vcpu)->hior_explicit)
319 to_book3s(vcpu)->hior = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000320 to_book3s(vcpu)->msr_mask = 0xffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200321 vcpu->arch.cpu_type = KVM_CPU_3S_32;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000322 }
323
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200324 kvmppc_sanity_check(vcpu);
325
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000326 /* If we are in hypervisor level on 970, we can tell the CPU to
327 * treat DCBZ as 32 bytes store */
328 vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32;
329 if (vcpu->arch.mmu.is_dcbz32(vcpu) && (mfmsr() & MSR_HV) &&
330 !strcmp(cur_cpu_spec->platform, "ppc970"))
331 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
332
333 /* Cell performs badly if MSR_FEx are set. So let's hope nobody
334 really needs them in a VM on Cell and force disable them. */
335 if (!strcmp(cur_cpu_spec->platform, "ppc-cell-be"))
336 to_book3s(vcpu)->msr_mask &= ~(MSR_FE0 | MSR_FE1);
337
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000338 /*
339 * If they're asking for POWER6 or later, set the flag
340 * indicating that we can do multiple large page sizes
341 * and 1TB segments.
342 * Also set the flag that indicates that tlbie has the large
343 * page bit in the RB operand instead of the instruction.
344 */
345 switch (PVR_VER(pvr)) {
346 case PVR_POWER6:
347 case PVR_POWER7:
348 case PVR_POWER7p:
349 case PVR_POWER8:
350 vcpu->arch.hflags |= BOOK3S_HFLAG_MULTI_PGSIZE |
351 BOOK3S_HFLAG_NEW_TLBIE;
352 break;
353 }
354
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000355#ifdef CONFIG_PPC_BOOK3S_32
356 /* 32 bit Book3S always has 32 byte dcbz */
357 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
358#endif
359
360 /* On some CPUs we can execute paired single operations natively */
361 asm ( "mfpvr %0" : "=r"(host_pvr));
362 switch (host_pvr) {
363 case 0x00080200: /* lonestar 2.0 */
364 case 0x00088202: /* lonestar 2.2 */
365 case 0x70000100: /* gekko 1.0 */
366 case 0x00080100: /* gekko 2.0 */
367 case 0x00083203: /* gekko 2.3a */
368 case 0x00083213: /* gekko 2.3b */
369 case 0x00083204: /* gekko 2.4 */
370 case 0x00083214: /* gekko 2.4e (8SE) - retail HW2 */
371 case 0x00087200: /* broadway */
372 vcpu->arch.hflags |= BOOK3S_HFLAG_NATIVE_PS;
373 /* Enable HID2.PSE - in case we need it later */
374 mtspr(SPRN_HID2_GEKKO, mfspr(SPRN_HID2_GEKKO) | (1 << 29));
375 }
376}
377
378/* Book3s_32 CPUs always have 32 bytes cache line size, which Linux assumes. To
379 * make Book3s_32 Linux work on Book3s_64, we have to make sure we trap dcbz to
380 * emulate 32 bytes dcbz length.
381 *
382 * The Book3s_64 inventors also realized this case and implemented a special bit
383 * in the HID5 register, which is a hypervisor ressource. Thus we can't use it.
384 *
385 * My approach here is to patch the dcbz instruction on executing pages.
386 */
387static void kvmppc_patch_dcbz(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte)
388{
389 struct page *hpage;
390 u64 hpage_offset;
391 u32 *page;
392 int i;
393
394 hpage = gfn_to_page(vcpu->kvm, pte->raddr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800395 if (is_error_page(hpage))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000396 return;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000397
398 hpage_offset = pte->raddr & ~PAGE_MASK;
399 hpage_offset &= ~0xFFFULL;
400 hpage_offset /= 4;
401
402 get_page(hpage);
Cong Wang2480b202011-11-25 23:14:16 +0800403 page = kmap_atomic(hpage);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000404
405 /* patch dcbz into reserved instruction, so we trap */
406 for (i=hpage_offset; i < hpage_offset + (HW_PAGE_SIZE / 4); i++)
407 if ((page[i] & 0xff0007ff) == INS_DCBZ)
408 page[i] &= 0xfffffff7;
409
Cong Wang2480b202011-11-25 23:14:16 +0800410 kunmap_atomic(page);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000411 put_page(hpage);
412}
413
414static int kvmppc_visible_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
415{
416 ulong mp_pa = vcpu->arch.magic_page_pa;
417
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000418 if (!(vcpu->arch.shared->msr & MSR_SF))
419 mp_pa = (uint32_t)mp_pa;
420
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000421 if (unlikely(mp_pa) &&
422 unlikely((mp_pa & KVM_PAM) >> PAGE_SHIFT == gfn)) {
423 return 1;
424 }
425
426 return kvm_is_visible_gfn(vcpu->kvm, gfn);
427}
428
429int kvmppc_handle_pagefault(struct kvm_run *run, struct kvm_vcpu *vcpu,
430 ulong eaddr, int vec)
431{
432 bool data = (vec == BOOK3S_INTERRUPT_DATA_STORAGE);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000433 bool iswrite = false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000434 int r = RESUME_GUEST;
435 int relocated;
436 int page_found = 0;
437 struct kvmppc_pte pte;
438 bool is_mmio = false;
439 bool dr = (vcpu->arch.shared->msr & MSR_DR) ? true : false;
440 bool ir = (vcpu->arch.shared->msr & MSR_IR) ? true : false;
441 u64 vsid;
442
443 relocated = data ? dr : ir;
Paul Mackerras93b159b2013-09-20 14:52:51 +1000444 if (data && (vcpu->arch.fault_dsisr & DSISR_ISSTORE))
445 iswrite = true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000446
447 /* Resolve real address if translation turned on */
448 if (relocated) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000449 page_found = vcpu->arch.mmu.xlate(vcpu, eaddr, &pte, data, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000450 } else {
451 pte.may_execute = true;
452 pte.may_read = true;
453 pte.may_write = true;
454 pte.raddr = eaddr & KVM_PAM;
455 pte.eaddr = eaddr;
456 pte.vpage = eaddr >> 12;
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000457 pte.page_size = MMU_PAGE_64K;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000458 }
459
460 switch (vcpu->arch.shared->msr & (MSR_DR|MSR_IR)) {
461 case 0:
462 pte.vpage |= ((u64)VSID_REAL << (SID_SHIFT - 12));
463 break;
464 case MSR_DR:
465 case MSR_IR:
466 vcpu->arch.mmu.esid_to_vsid(vcpu, eaddr >> SID_SHIFT, &vsid);
467
468 if ((vcpu->arch.shared->msr & (MSR_DR|MSR_IR)) == MSR_DR)
469 pte.vpage |= ((u64)VSID_REAL_DR << (SID_SHIFT - 12));
470 else
471 pte.vpage |= ((u64)VSID_REAL_IR << (SID_SHIFT - 12));
472 pte.vpage |= vsid;
473
474 if (vsid == -1)
475 page_found = -EINVAL;
476 break;
477 }
478
479 if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
480 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
481 /*
482 * If we do the dcbz hack, we have to NX on every execution,
483 * so we can patch the executing code. This renders our guest
484 * NX-less.
485 */
486 pte.may_execute = !data;
487 }
488
489 if (page_found == -ENOENT) {
490 /* Page not found in guest PTE entries */
491 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000492 vcpu->arch.shared->dsisr = vcpu->arch.fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000493 vcpu->arch.shared->msr |=
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000494 vcpu->arch.shadow_srr1 & 0x00000000f8000000ULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000495 kvmppc_book3s_queue_irqprio(vcpu, vec);
496 } else if (page_found == -EPERM) {
497 /* Storage protection */
498 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000499 vcpu->arch.shared->dsisr = vcpu->arch.fault_dsisr & ~DSISR_NOHPTE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000500 vcpu->arch.shared->dsisr |= DSISR_PROTFAULT;
501 vcpu->arch.shared->msr |=
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000502 vcpu->arch.shadow_srr1 & 0x00000000f8000000ULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000503 kvmppc_book3s_queue_irqprio(vcpu, vec);
504 } else if (page_found == -EINVAL) {
505 /* Page not found in guest SLB */
506 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
507 kvmppc_book3s_queue_irqprio(vcpu, vec + 0x80);
508 } else if (!is_mmio &&
509 kvmppc_visible_gfn(vcpu, pte.raddr >> PAGE_SHIFT)) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000510 if (data && !(vcpu->arch.fault_dsisr & DSISR_NOHPTE)) {
511 /*
512 * There is already a host HPTE there, presumably
513 * a read-only one for a page the guest thinks
514 * is writable, so get rid of it first.
515 */
516 kvmppc_mmu_unmap_page(vcpu, &pte);
517 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000518 /* The guest's PTE is not mapped yet. Map on the host */
Paul Mackerras93b159b2013-09-20 14:52:51 +1000519 kvmppc_mmu_map_page(vcpu, &pte, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000520 if (data)
521 vcpu->stat.sp_storage++;
522 else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
Paul Mackerras93b159b2013-09-20 14:52:51 +1000523 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32)))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000524 kvmppc_patch_dcbz(vcpu, &pte);
525 } else {
526 /* MMIO */
527 vcpu->stat.mmio_exits++;
528 vcpu->arch.paddr_accessed = pte.raddr;
Alexander Graf6020c0f2012-03-12 02:26:30 +0100529 vcpu->arch.vaddr_accessed = pte.eaddr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000530 r = kvmppc_emulate_mmio(run, vcpu);
531 if ( r == RESUME_HOST_NV )
532 r = RESUME_HOST;
533 }
534
535 return r;
536}
537
538static inline int get_fpr_index(int i)
539{
Paul Mackerras28c483b2012-11-04 18:16:46 +0000540 return i * TS_FPRWIDTH;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000541}
542
543/* Give up external provider (FPU, Altivec, VSX) */
544void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr)
545{
546 struct thread_struct *t = &current->thread;
547 u64 *vcpu_fpr = vcpu->arch.fpr;
548#ifdef CONFIG_VSX
549 u64 *vcpu_vsx = vcpu->arch.vsr;
550#endif
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000551 u64 *thread_fpr = &t->fp_state.fpr[0][0];
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000552 int i;
553
Paul Mackerras28c483b2012-11-04 18:16:46 +0000554 /*
555 * VSX instructions can access FP and vector registers, so if
556 * we are giving up VSX, make sure we give up FP and VMX as well.
557 */
558 if (msr & MSR_VSX)
559 msr |= MSR_FP | MSR_VEC;
560
561 msr &= vcpu->arch.guest_owned_ext;
562 if (!msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000563 return;
564
565#ifdef DEBUG_EXT
566 printk(KERN_INFO "Giving up ext 0x%lx\n", msr);
567#endif
568
Paul Mackerras28c483b2012-11-04 18:16:46 +0000569 if (msr & MSR_FP) {
570 /*
571 * Note that on CPUs with VSX, giveup_fpu stores
572 * both the traditional FP registers and the added VSX
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000573 * registers into thread.fp_state.fpr[].
Paul Mackerras28c483b2012-11-04 18:16:46 +0000574 */
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000575 if (current->thread.regs->msr & MSR_FP)
576 giveup_fpu(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000577 for (i = 0; i < ARRAY_SIZE(vcpu->arch.fpr); i++)
578 vcpu_fpr[i] = thread_fpr[get_fpr_index(i)];
579
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000580 vcpu->arch.fpscr = t->fp_state.fpscr;
Paul Mackerras28c483b2012-11-04 18:16:46 +0000581
582#ifdef CONFIG_VSX
583 if (cpu_has_feature(CPU_FTR_VSX))
584 for (i = 0; i < ARRAY_SIZE(vcpu->arch.vsr) / 2; i++)
585 vcpu_vsx[i] = thread_fpr[get_fpr_index(i) + 1];
586#endif
587 }
588
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000589#ifdef CONFIG_ALTIVEC
Paul Mackerras28c483b2012-11-04 18:16:46 +0000590 if (msr & MSR_VEC) {
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000591 if (current->thread.regs->msr & MSR_VEC)
592 giveup_altivec(current);
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000593 memcpy(vcpu->arch.vr, t->vr_state.vr, sizeof(vcpu->arch.vr));
594 vcpu->arch.vscr = t->vr_state.vscr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000595 }
Paul Mackerras28c483b2012-11-04 18:16:46 +0000596#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000597
Paul Mackerras28c483b2012-11-04 18:16:46 +0000598 vcpu->arch.guest_owned_ext &= ~(msr | MSR_VSX);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000599 kvmppc_recalc_shadow_msr(vcpu);
600}
601
602static int kvmppc_read_inst(struct kvm_vcpu *vcpu)
603{
604 ulong srr0 = kvmppc_get_pc(vcpu);
605 u32 last_inst = kvmppc_get_last_inst(vcpu);
606 int ret;
607
608 ret = kvmppc_ld(vcpu, &srr0, sizeof(u32), &last_inst, false);
609 if (ret == -ENOENT) {
610 ulong msr = vcpu->arch.shared->msr;
611
612 msr = kvmppc_set_field(msr, 33, 33, 1);
613 msr = kvmppc_set_field(msr, 34, 36, 0);
614 vcpu->arch.shared->msr = kvmppc_set_field(msr, 42, 47, 0);
615 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_INST_STORAGE);
616 return EMULATE_AGAIN;
617 }
618
619 return EMULATE_DONE;
620}
621
622static int kvmppc_check_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr)
623{
624
625 /* Need to do paired single emulation? */
626 if (!(vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE))
627 return EMULATE_DONE;
628
629 /* Read out the instruction */
630 if (kvmppc_read_inst(vcpu) == EMULATE_DONE)
631 /* Need to emulate */
632 return EMULATE_FAIL;
633
634 return EMULATE_AGAIN;
635}
636
637/* Handle external providers (FPU, Altivec, VSX) */
638static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
639 ulong msr)
640{
641 struct thread_struct *t = &current->thread;
642 u64 *vcpu_fpr = vcpu->arch.fpr;
643#ifdef CONFIG_VSX
644 u64 *vcpu_vsx = vcpu->arch.vsr;
645#endif
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000646 u64 *thread_fpr = &t->fp_state.fpr[0][0];
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000647 int i;
648
649 /* When we have paired singles, we emulate in software */
650 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE)
651 return RESUME_GUEST;
652
653 if (!(vcpu->arch.shared->msr & msr)) {
654 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
655 return RESUME_GUEST;
656 }
657
Paul Mackerras28c483b2012-11-04 18:16:46 +0000658 if (msr == MSR_VSX) {
659 /* No VSX? Give an illegal instruction interrupt */
660#ifdef CONFIG_VSX
661 if (!cpu_has_feature(CPU_FTR_VSX))
662#endif
663 {
664 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
665 return RESUME_GUEST;
666 }
667
668 /*
669 * We have to load up all the FP and VMX registers before
670 * we can let the guest use VSX instructions.
671 */
672 msr = MSR_FP | MSR_VEC | MSR_VSX;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000673 }
674
Paul Mackerras28c483b2012-11-04 18:16:46 +0000675 /* See if we already own all the ext(s) needed */
676 msr &= ~vcpu->arch.guest_owned_ext;
677 if (!msr)
678 return RESUME_GUEST;
679
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000680#ifdef DEBUG_EXT
681 printk(KERN_INFO "Loading up ext 0x%lx\n", msr);
682#endif
683
Paul Mackerras28c483b2012-11-04 18:16:46 +0000684 if (msr & MSR_FP) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000685 for (i = 0; i < ARRAY_SIZE(vcpu->arch.fpr); i++)
686 thread_fpr[get_fpr_index(i)] = vcpu_fpr[i];
Paul Mackerras28c483b2012-11-04 18:16:46 +0000687#ifdef CONFIG_VSX
688 for (i = 0; i < ARRAY_SIZE(vcpu->arch.vsr) / 2; i++)
689 thread_fpr[get_fpr_index(i) + 1] = vcpu_vsx[i];
690#endif
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000691 t->fp_state.fpscr = vcpu->arch.fpscr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000692 t->fpexc_mode = 0;
693 kvmppc_load_up_fpu();
Paul Mackerras28c483b2012-11-04 18:16:46 +0000694 }
695
696 if (msr & MSR_VEC) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000697#ifdef CONFIG_ALTIVEC
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000698 memcpy(t->vr_state.vr, vcpu->arch.vr, sizeof(vcpu->arch.vr));
699 t->vr_state.vscr = vcpu->arch.vscr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000700 t->vrsave = -1;
701 kvmppc_load_up_altivec();
702#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000703 }
704
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000705 current->thread.regs->msr |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000706 vcpu->arch.guest_owned_ext |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000707 kvmppc_recalc_shadow_msr(vcpu);
708
709 return RESUME_GUEST;
710}
711
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000712/*
713 * Kernel code using FP or VMX could have flushed guest state to
714 * the thread_struct; if so, get it back now.
715 */
716static void kvmppc_handle_lost_ext(struct kvm_vcpu *vcpu)
717{
718 unsigned long lost_ext;
719
720 lost_ext = vcpu->arch.guest_owned_ext & ~current->thread.regs->msr;
721 if (!lost_ext)
722 return;
723
724 if (lost_ext & MSR_FP)
725 kvmppc_load_up_fpu();
Paul Mackerrasf2481772013-09-20 14:52:42 +1000726#ifdef CONFIG_ALTIVEC
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000727 if (lost_ext & MSR_VEC)
728 kvmppc_load_up_altivec();
Paul Mackerrasf2481772013-09-20 14:52:42 +1000729#endif
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000730 current->thread.regs->msr |= lost_ext;
731}
732
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530733int kvmppc_handle_exit_pr(struct kvm_run *run, struct kvm_vcpu *vcpu,
734 unsigned int exit_nr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000735{
736 int r = RESUME_HOST;
Alexander Graf7ee78852012-08-13 12:44:41 +0200737 int s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000738
739 vcpu->stat.sum_exits++;
740
741 run->exit_reason = KVM_EXIT_UNKNOWN;
742 run->ready_for_interrupt_injection = 1;
743
Alexander Grafbd2be682012-08-13 01:04:19 +0200744 /* We get here with MSR.EE=1 */
Alexander Graf3b1d9d72012-04-30 10:56:12 +0200745
Alexander Graf97c95052012-08-02 15:10:00 +0200746 trace_kvm_exit(exit_nr, vcpu);
Alexander Graf706fb732012-08-12 11:29:09 +0200747 kvm_guest_exit();
Alexander Grafc63ddcb2012-08-12 11:27:49 +0200748
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000749 switch (exit_nr) {
750 case BOOK3S_INTERRUPT_INST_STORAGE:
Alexander Graf468a12c2011-12-09 14:44:13 +0100751 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000752 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000753 vcpu->stat.pf_instruc++;
754
755#ifdef CONFIG_PPC_BOOK3S_32
756 /* We set segments as unused segments when invalidating them. So
757 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000758 {
759 struct kvmppc_book3s_shadow_vcpu *svcpu;
760 u32 sr;
761
762 svcpu = svcpu_get(vcpu);
763 sr = svcpu->sr[kvmppc_get_pc(vcpu) >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +0100764 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000765 if (sr == SR_INVALID) {
766 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
767 r = RESUME_GUEST;
768 break;
769 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000770 }
771#endif
772
773 /* only care about PTEG not found errors, but leave NX alone */
Alexander Graf468a12c2011-12-09 14:44:13 +0100774 if (shadow_srr1 & 0x40000000) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000775 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000776 r = kvmppc_handle_pagefault(run, vcpu, kvmppc_get_pc(vcpu), exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000777 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000778 vcpu->stat.sp_instruc++;
779 } else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
780 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
781 /*
782 * XXX If we do the dcbz hack we use the NX bit to flush&patch the page,
783 * so we can't use the NX bit inside the guest. Let's cross our fingers,
784 * that no guest that needs the dcbz hack does NX.
785 */
786 kvmppc_mmu_pte_flush(vcpu, kvmppc_get_pc(vcpu), ~0xFFFUL);
787 r = RESUME_GUEST;
788 } else {
Alexander Graf468a12c2011-12-09 14:44:13 +0100789 vcpu->arch.shared->msr |= shadow_srr1 & 0x58000000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000790 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
791 r = RESUME_GUEST;
792 }
793 break;
Alexander Graf468a12c2011-12-09 14:44:13 +0100794 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000795 case BOOK3S_INTERRUPT_DATA_STORAGE:
796 {
797 ulong dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000798 u32 fault_dsisr = vcpu->arch.fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000799 vcpu->stat.pf_storage++;
800
801#ifdef CONFIG_PPC_BOOK3S_32
802 /* We set segments as unused segments when invalidating them. So
803 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000804 {
805 struct kvmppc_book3s_shadow_vcpu *svcpu;
806 u32 sr;
807
808 svcpu = svcpu_get(vcpu);
809 sr = svcpu->sr[dar >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +0100810 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000811 if (sr == SR_INVALID) {
812 kvmppc_mmu_map_segment(vcpu, dar);
813 r = RESUME_GUEST;
814 break;
815 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000816 }
817#endif
818
Paul Mackerras93b159b2013-09-20 14:52:51 +1000819 /*
820 * We need to handle missing shadow PTEs, and
821 * protection faults due to us mapping a page read-only
822 * when the guest thinks it is writable.
823 */
824 if (fault_dsisr & (DSISR_NOHPTE | DSISR_PROTFAULT)) {
825 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000826 r = kvmppc_handle_pagefault(run, vcpu, dar, exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000827 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000828 } else {
829 vcpu->arch.shared->dar = dar;
Alexander Graf468a12c2011-12-09 14:44:13 +0100830 vcpu->arch.shared->dsisr = fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000831 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
832 r = RESUME_GUEST;
833 }
834 break;
835 }
836 case BOOK3S_INTERRUPT_DATA_SEGMENT:
837 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_fault_dar(vcpu)) < 0) {
838 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
839 kvmppc_book3s_queue_irqprio(vcpu,
840 BOOK3S_INTERRUPT_DATA_SEGMENT);
841 }
842 r = RESUME_GUEST;
843 break;
844 case BOOK3S_INTERRUPT_INST_SEGMENT:
845 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu)) < 0) {
846 kvmppc_book3s_queue_irqprio(vcpu,
847 BOOK3S_INTERRUPT_INST_SEGMENT);
848 }
849 r = RESUME_GUEST;
850 break;
851 /* We're good on these - the host merely wanted to get our attention */
852 case BOOK3S_INTERRUPT_DECREMENTER:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100853 case BOOK3S_INTERRUPT_HV_DECREMENTER:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000854 vcpu->stat.dec_exits++;
855 r = RESUME_GUEST;
856 break;
857 case BOOK3S_INTERRUPT_EXTERNAL:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100858 case BOOK3S_INTERRUPT_EXTERNAL_LEVEL:
859 case BOOK3S_INTERRUPT_EXTERNAL_HV:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000860 vcpu->stat.ext_intr_exits++;
861 r = RESUME_GUEST;
862 break;
863 case BOOK3S_INTERRUPT_PERFMON:
864 r = RESUME_GUEST;
865 break;
866 case BOOK3S_INTERRUPT_PROGRAM:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100867 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000868 {
869 enum emulation_result er;
870 ulong flags;
871
872program_interrupt:
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000873 flags = vcpu->arch.shadow_srr1 & 0x1f0000ull;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000874
875 if (vcpu->arch.shared->msr & MSR_PR) {
876#ifdef EXIT_DEBUG
877 printk(KERN_INFO "Userspace triggered 0x700 exception at 0x%lx (0x%x)\n", kvmppc_get_pc(vcpu), kvmppc_get_last_inst(vcpu));
878#endif
879 if ((kvmppc_get_last_inst(vcpu) & 0xff0007ff) !=
880 (INS_DCBZ & 0xfffffff7)) {
881 kvmppc_core_queue_program(vcpu, flags);
882 r = RESUME_GUEST;
883 break;
884 }
885 }
886
887 vcpu->stat.emulated_inst_exits++;
888 er = kvmppc_emulate_instruction(run, vcpu);
889 switch (er) {
890 case EMULATE_DONE:
891 r = RESUME_GUEST_NV;
892 break;
893 case EMULATE_AGAIN:
894 r = RESUME_GUEST;
895 break;
896 case EMULATE_FAIL:
897 printk(KERN_CRIT "%s: emulation at %lx failed (%08x)\n",
898 __func__, kvmppc_get_pc(vcpu), kvmppc_get_last_inst(vcpu));
899 kvmppc_core_queue_program(vcpu, flags);
900 r = RESUME_GUEST;
901 break;
902 case EMULATE_DO_MMIO:
903 run->exit_reason = KVM_EXIT_MMIO;
904 r = RESUME_HOST_NV;
905 break;
Bharat Bhushanc402a3f2013-04-08 00:32:13 +0000906 case EMULATE_EXIT_USER:
Alexander Graf50c7bb82012-12-14 23:42:05 +0100907 r = RESUME_HOST_NV;
908 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000909 default:
910 BUG();
911 }
912 break;
913 }
914 case BOOK3S_INTERRUPT_SYSCALL:
Alexander Grafa668f2b2011-08-08 17:26:24 +0200915 if (vcpu->arch.papr_enabled &&
Paul Mackerras8b23de22013-08-06 14:15:19 +1000916 (kvmppc_get_last_sc(vcpu) == 0x44000022) &&
Alexander Grafa668f2b2011-08-08 17:26:24 +0200917 !(vcpu->arch.shared->msr & MSR_PR)) {
918 /* SC 1 papr hypercalls */
919 ulong cmd = kvmppc_get_gpr(vcpu, 3);
920 int i;
921
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530922#ifdef CONFIG_PPC_BOOK3S_64
Alexander Grafa668f2b2011-08-08 17:26:24 +0200923 if (kvmppc_h_pr(vcpu, cmd) == EMULATE_DONE) {
924 r = RESUME_GUEST;
925 break;
926 }
Andreas Schwab96f38d72011-11-08 07:17:39 +0000927#endif
Alexander Grafa668f2b2011-08-08 17:26:24 +0200928
929 run->papr_hcall.nr = cmd;
930 for (i = 0; i < 9; ++i) {
931 ulong gpr = kvmppc_get_gpr(vcpu, 4 + i);
932 run->papr_hcall.args[i] = gpr;
933 }
934 run->exit_reason = KVM_EXIT_PAPR_HCALL;
935 vcpu->arch.hcall_needed = 1;
936 r = RESUME_HOST;
937 } else if (vcpu->arch.osi_enabled &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000938 (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) &&
939 (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) {
940 /* MOL hypercalls */
941 u64 *gprs = run->osi.gprs;
942 int i;
943
944 run->exit_reason = KVM_EXIT_OSI;
945 for (i = 0; i < 32; i++)
946 gprs[i] = kvmppc_get_gpr(vcpu, i);
947 vcpu->arch.osi_needed = 1;
948 r = RESUME_HOST_NV;
949 } else if (!(vcpu->arch.shared->msr & MSR_PR) &&
950 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
951 /* KVM PV hypercalls */
952 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
953 r = RESUME_GUEST;
954 } else {
955 /* Guest syscalls */
956 vcpu->stat.syscall_exits++;
957 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
958 r = RESUME_GUEST;
959 }
960 break;
961 case BOOK3S_INTERRUPT_FP_UNAVAIL:
962 case BOOK3S_INTERRUPT_ALTIVEC:
963 case BOOK3S_INTERRUPT_VSX:
964 {
965 int ext_msr = 0;
966
967 switch (exit_nr) {
968 case BOOK3S_INTERRUPT_FP_UNAVAIL: ext_msr = MSR_FP; break;
969 case BOOK3S_INTERRUPT_ALTIVEC: ext_msr = MSR_VEC; break;
970 case BOOK3S_INTERRUPT_VSX: ext_msr = MSR_VSX; break;
971 }
972
973 switch (kvmppc_check_ext(vcpu, exit_nr)) {
974 case EMULATE_DONE:
975 /* everything ok - let's enable the ext */
976 r = kvmppc_handle_ext(vcpu, exit_nr, ext_msr);
977 break;
978 case EMULATE_FAIL:
979 /* we need to emulate this instruction */
980 goto program_interrupt;
981 break;
982 default:
983 /* nothing to worry about - go again */
984 break;
985 }
986 break;
987 }
988 case BOOK3S_INTERRUPT_ALIGNMENT:
989 if (kvmppc_read_inst(vcpu) == EMULATE_DONE) {
990 vcpu->arch.shared->dsisr = kvmppc_alignment_dsisr(vcpu,
991 kvmppc_get_last_inst(vcpu));
992 vcpu->arch.shared->dar = kvmppc_alignment_dar(vcpu,
993 kvmppc_get_last_inst(vcpu));
994 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
995 }
996 r = RESUME_GUEST;
997 break;
998 case BOOK3S_INTERRUPT_MACHINE_CHECK:
999 case BOOK3S_INTERRUPT_TRACE:
1000 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1001 r = RESUME_GUEST;
1002 break;
1003 default:
Alexander Graf468a12c2011-12-09 14:44:13 +01001004 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001005 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001006 /* Ugh - bork here! What did we get? */
1007 printk(KERN_EMERG "exit_nr=0x%x | pc=0x%lx | msr=0x%lx\n",
Alexander Graf468a12c2011-12-09 14:44:13 +01001008 exit_nr, kvmppc_get_pc(vcpu), shadow_srr1);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001009 r = RESUME_HOST;
1010 BUG();
1011 break;
1012 }
Alexander Graf468a12c2011-12-09 14:44:13 +01001013 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001014
1015 if (!(r & RESUME_HOST)) {
1016 /* To avoid clobbering exit_reason, only check for signals if
1017 * we aren't already exiting to userspace for some other
1018 * reason. */
Alexander Grafe371f712011-12-19 13:36:55 +01001019
1020 /*
1021 * Interrupts could be timers for the guest which we have to
1022 * inject again, so let's postpone them until we're in the guest
1023 * and if we really did time things so badly, then we just exit
1024 * again due to a host external interrupt.
1025 */
Alexander Grafbd2be682012-08-13 01:04:19 +02001026 local_irq_disable();
Alexander Graf7ee78852012-08-13 12:44:41 +02001027 s = kvmppc_prepare_to_enter(vcpu);
1028 if (s <= 0) {
Alexander Grafbd2be682012-08-13 01:04:19 +02001029 local_irq_enable();
Alexander Graf7ee78852012-08-13 12:44:41 +02001030 r = s;
Alexander Graf24afa372012-08-12 12:42:30 +02001031 } else {
Scott Wood5f1c2482013-07-10 17:47:39 -05001032 kvmppc_fix_ee_before_entry();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001033 }
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +10001034 kvmppc_handle_lost_ext(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001035 }
1036
1037 trace_kvm_book3s_reenter(r, vcpu);
1038
1039 return r;
1040}
1041
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301042static int kvm_arch_vcpu_ioctl_get_sregs_pr(struct kvm_vcpu *vcpu,
1043 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001044{
1045 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1046 int i;
1047
1048 sregs->pvr = vcpu->arch.pvr;
1049
1050 sregs->u.s.sdr1 = to_book3s(vcpu)->sdr1;
1051 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1052 for (i = 0; i < 64; i++) {
1053 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige | i;
1054 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1055 }
1056 } else {
1057 for (i = 0; i < 16; i++)
1058 sregs->u.s.ppc32.sr[i] = vcpu->arch.shared->sr[i];
1059
1060 for (i = 0; i < 8; i++) {
1061 sregs->u.s.ppc32.ibat[i] = vcpu3s->ibat[i].raw;
1062 sregs->u.s.ppc32.dbat[i] = vcpu3s->dbat[i].raw;
1063 }
1064 }
1065
1066 return 0;
1067}
1068
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301069static int kvm_arch_vcpu_ioctl_set_sregs_pr(struct kvm_vcpu *vcpu,
1070 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001071{
1072 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1073 int i;
1074
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301075 kvmppc_set_pvr_pr(vcpu, sregs->pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001076
1077 vcpu3s->sdr1 = sregs->u.s.sdr1;
1078 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1079 for (i = 0; i < 64; i++) {
1080 vcpu->arch.mmu.slbmte(vcpu, sregs->u.s.ppc64.slb[i].slbv,
1081 sregs->u.s.ppc64.slb[i].slbe);
1082 }
1083 } else {
1084 for (i = 0; i < 16; i++) {
1085 vcpu->arch.mmu.mtsrin(vcpu, i, sregs->u.s.ppc32.sr[i]);
1086 }
1087 for (i = 0; i < 8; i++) {
1088 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), false,
1089 (u32)sregs->u.s.ppc32.ibat[i]);
1090 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), true,
1091 (u32)(sregs->u.s.ppc32.ibat[i] >> 32));
1092 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), false,
1093 (u32)sregs->u.s.ppc32.dbat[i]);
1094 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), true,
1095 (u32)(sregs->u.s.ppc32.dbat[i] >> 32));
1096 }
1097 }
1098
1099 /* Flush the MMU after messing with the segments */
1100 kvmppc_mmu_pte_flush(vcpu, 0, 0);
1101
1102 return 0;
1103}
1104
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301105static int kvmppc_get_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1106 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001107{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001108 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001109
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001110 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001111 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001112 *val = get_reg_val(id, to_book3s(vcpu)->hior);
Paul Mackerras31f34382011-12-12 12:26:50 +00001113 break;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001114#ifdef CONFIG_VSX
1115 case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31: {
1116 long int i = id - KVM_REG_PPC_VSR0;
1117
1118 if (!cpu_has_feature(CPU_FTR_VSX)) {
1119 r = -ENXIO;
1120 break;
1121 }
1122 val->vsxval[0] = vcpu->arch.fpr[i];
1123 val->vsxval[1] = vcpu->arch.vsr[i];
1124 break;
1125 }
1126#endif /* CONFIG_VSX */
Paul Mackerras31f34382011-12-12 12:26:50 +00001127 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001128 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001129 break;
1130 }
1131
1132 return r;
1133}
1134
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301135static int kvmppc_set_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1136 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001137{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001138 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001139
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001140 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001141 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001142 to_book3s(vcpu)->hior = set_reg_val(id, *val);
1143 to_book3s(vcpu)->hior_explicit = true;
Paul Mackerras31f34382011-12-12 12:26:50 +00001144 break;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001145#ifdef CONFIG_VSX
1146 case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31: {
1147 long int i = id - KVM_REG_PPC_VSR0;
1148
1149 if (!cpu_has_feature(CPU_FTR_VSX)) {
1150 r = -ENXIO;
1151 break;
1152 }
1153 vcpu->arch.fpr[i] = val->vsxval[0];
1154 vcpu->arch.vsr[i] = val->vsxval[1];
1155 break;
1156 }
1157#endif /* CONFIG_VSX */
Paul Mackerras31f34382011-12-12 12:26:50 +00001158 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001159 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001160 break;
1161 }
1162
1163 return r;
1164}
1165
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301166static struct kvm_vcpu *kvmppc_core_vcpu_create_pr(struct kvm *kvm,
1167 unsigned int id)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001168{
1169 struct kvmppc_vcpu_book3s *vcpu_book3s;
1170 struct kvm_vcpu *vcpu;
1171 int err = -ENOMEM;
1172 unsigned long p;
1173
Paul Mackerras3ff95502013-09-20 14:52:49 +10001174 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
1175 if (!vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001176 goto out;
1177
Paul Mackerras3ff95502013-09-20 14:52:49 +10001178 vcpu_book3s = vzalloc(sizeof(struct kvmppc_vcpu_book3s));
1179 if (!vcpu_book3s)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001180 goto free_vcpu;
Paul Mackerras3ff95502013-09-20 14:52:49 +10001181 vcpu->arch.book3s = vcpu_book3s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001182
Paul Mackerras3ff95502013-09-20 14:52:49 +10001183#ifdef CONFIG_KVM_BOOK3S_32
1184 vcpu->arch.shadow_vcpu =
1185 kzalloc(sizeof(*vcpu->arch.shadow_vcpu), GFP_KERNEL);
1186 if (!vcpu->arch.shadow_vcpu)
1187 goto free_vcpu3s;
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001188#endif
Paul Mackerras3ff95502013-09-20 14:52:49 +10001189
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001190 err = kvm_vcpu_init(vcpu, kvm, id);
1191 if (err)
1192 goto free_shadow_vcpu;
1193
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001194 err = -ENOMEM;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001195 p = __get_free_page(GFP_KERNEL|__GFP_ZERO);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001196 if (!p)
1197 goto uninit_vcpu;
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001198 /* the real shared page fills the last 4k of our page */
1199 vcpu->arch.shared = (void *)(p + PAGE_SIZE - 4096);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001200
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001201#ifdef CONFIG_PPC_BOOK3S_64
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001202 /*
1203 * Default to the same as the host if we're on sufficiently
1204 * recent machine that we have 1TB segments;
1205 * otherwise default to PPC970FX.
1206 */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001207 vcpu->arch.pvr = 0x3C0301;
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001208 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1209 vcpu->arch.pvr = mfspr(SPRN_PVR);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001210#else
1211 /* default to book3s_32 (750) */
1212 vcpu->arch.pvr = 0x84202;
1213#endif
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301214 kvmppc_set_pvr_pr(vcpu, vcpu->arch.pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001215 vcpu->arch.slb_nr = 64;
1216
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001217 vcpu->arch.shadow_msr = MSR_USER64;
1218
1219 err = kvmppc_mmu_init(vcpu);
1220 if (err < 0)
1221 goto uninit_vcpu;
1222
1223 return vcpu;
1224
1225uninit_vcpu:
1226 kvm_vcpu_uninit(vcpu);
1227free_shadow_vcpu:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001228#ifdef CONFIG_KVM_BOOK3S_32
Paul Mackerras3ff95502013-09-20 14:52:49 +10001229 kfree(vcpu->arch.shadow_vcpu);
1230free_vcpu3s:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001231#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001232 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001233free_vcpu:
1234 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001235out:
1236 return ERR_PTR(err);
1237}
1238
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301239static void kvmppc_core_vcpu_free_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001240{
1241 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
1242
1243 free_page((unsigned long)vcpu->arch.shared & PAGE_MASK);
1244 kvm_vcpu_uninit(vcpu);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001245#ifdef CONFIG_KVM_BOOK3S_32
1246 kfree(vcpu->arch.shadow_vcpu);
1247#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001248 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001249 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001250}
1251
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301252static int kvmppc_vcpu_run_pr(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001253{
1254 int ret;
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001255 struct thread_fp_state fp;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001256 int fpexc_mode;
1257#ifdef CONFIG_ALTIVEC
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001258 struct thread_vr_state vr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001259 unsigned long uninitialized_var(vrsave);
1260 int used_vr;
1261#endif
1262#ifdef CONFIG_VSX
1263 int used_vsr;
1264#endif
1265 ulong ext_msr;
1266
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001267 /* Check if we can run the vcpu at all */
1268 if (!vcpu->arch.sane) {
1269 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
Alexander Graf7d827142011-12-09 15:46:21 +01001270 ret = -EINVAL;
1271 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001272 }
1273
Alexander Grafe371f712011-12-19 13:36:55 +01001274 /*
1275 * Interrupts could be timers for the guest which we have to inject
1276 * again, so let's postpone them until we're in the guest and if we
1277 * really did time things so badly, then we just exit again due to
1278 * a host external interrupt.
1279 */
Alexander Grafbd2be682012-08-13 01:04:19 +02001280 local_irq_disable();
Alexander Graf7ee78852012-08-13 12:44:41 +02001281 ret = kvmppc_prepare_to_enter(vcpu);
1282 if (ret <= 0) {
Alexander Grafbd2be682012-08-13 01:04:19 +02001283 local_irq_enable();
Alexander Graf7d827142011-12-09 15:46:21 +01001284 goto out;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001285 }
1286
1287 /* Save FPU state in stack */
1288 if (current->thread.regs->msr & MSR_FP)
1289 giveup_fpu(current);
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001290 fp = current->thread.fp_state;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001291 fpexc_mode = current->thread.fpexc_mode;
1292
1293#ifdef CONFIG_ALTIVEC
1294 /* Save Altivec state in stack */
1295 used_vr = current->thread.used_vr;
1296 if (used_vr) {
1297 if (current->thread.regs->msr & MSR_VEC)
1298 giveup_altivec(current);
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001299 vr = current->thread.vr_state;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001300 vrsave = current->thread.vrsave;
1301 }
1302#endif
1303
1304#ifdef CONFIG_VSX
1305 /* Save VSX state in stack */
1306 used_vsr = current->thread.used_vsr;
1307 if (used_vsr && (current->thread.regs->msr & MSR_VSX))
Paul Mackerras28c483b2012-11-04 18:16:46 +00001308 __giveup_vsx(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001309#endif
1310
1311 /* Remember the MSR with disabled extensions */
1312 ext_msr = current->thread.regs->msr;
1313
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001314 /* Preload FPU if it's enabled */
1315 if (vcpu->arch.shared->msr & MSR_FP)
1316 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
1317
Scott Wood5f1c2482013-07-10 17:47:39 -05001318 kvmppc_fix_ee_before_entry();
Paul Mackerrasdf6909e52011-06-29 00:19:50 +00001319
1320 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
1321
Alexander Graf24afa372012-08-12 12:42:30 +02001322 /* No need for kvm_guest_exit. It's done in handle_exit.
1323 We also get here with interrupts enabled. */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001324
Paul Mackerras28c483b2012-11-04 18:16:46 +00001325 /* Make sure we save the guest FPU/Altivec/VSX state */
1326 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
1327
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001328 current->thread.regs->msr = ext_msr;
1329
Paul Mackerras28c483b2012-11-04 18:16:46 +00001330 /* Restore FPU/VSX state from stack */
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001331 current->thread.fp_state = fp;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001332 current->thread.fpexc_mode = fpexc_mode;
1333
1334#ifdef CONFIG_ALTIVEC
1335 /* Restore Altivec state from stack */
1336 if (used_vr && current->thread.used_vr) {
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001337 current->thread.vr_state = vr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001338 current->thread.vrsave = vrsave;
1339 }
1340 current->thread.used_vr = used_vr;
1341#endif
1342
1343#ifdef CONFIG_VSX
1344 current->thread.used_vsr = used_vsr;
1345#endif
1346
Alexander Graf7d827142011-12-09 15:46:21 +01001347out:
Alexander Graf0652eaa2012-08-12 11:34:21 +02001348 vcpu->mode = OUTSIDE_GUEST_MODE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001349 return ret;
1350}
1351
Paul Mackerras82ed3612011-12-15 02:03:22 +00001352/*
1353 * Get (and clear) the dirty memory log for a memory slot.
1354 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301355static int kvm_vm_ioctl_get_dirty_log_pr(struct kvm *kvm,
1356 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00001357{
1358 struct kvm_memory_slot *memslot;
1359 struct kvm_vcpu *vcpu;
1360 ulong ga, ga_end;
1361 int is_dirty = 0;
1362 int r;
1363 unsigned long n;
1364
1365 mutex_lock(&kvm->slots_lock);
1366
1367 r = kvm_get_dirty_log(kvm, log, &is_dirty);
1368 if (r)
1369 goto out;
1370
1371 /* If nothing is dirty, don't bother messing with page tables. */
1372 if (is_dirty) {
1373 memslot = id_to_memslot(kvm->memslots, log->slot);
1374
1375 ga = memslot->base_gfn << PAGE_SHIFT;
1376 ga_end = ga + (memslot->npages << PAGE_SHIFT);
1377
1378 kvm_for_each_vcpu(n, vcpu, kvm)
1379 kvmppc_mmu_pte_pflush(vcpu, ga, ga_end);
1380
1381 n = kvm_dirty_bitmap_bytes(memslot);
1382 memset(memslot->dirty_bitmap, 0, n);
1383 }
1384
1385 r = 0;
1386out:
1387 mutex_unlock(&kvm->slots_lock);
1388 return r;
1389}
1390
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301391static void kvmppc_core_flush_memslot_pr(struct kvm *kvm,
1392 struct kvm_memory_slot *memslot)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001393{
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301394 return;
1395}
1396
1397static int kvmppc_core_prepare_memory_region_pr(struct kvm *kvm,
1398 struct kvm_memory_slot *memslot,
1399 struct kvm_userspace_memory_region *mem)
1400{
1401 return 0;
1402}
1403
1404static void kvmppc_core_commit_memory_region_pr(struct kvm *kvm,
1405 struct kvm_userspace_memory_region *mem,
1406 const struct kvm_memory_slot *old)
1407{
1408 return;
1409}
1410
1411static void kvmppc_core_free_memslot_pr(struct kvm_memory_slot *free,
1412 struct kvm_memory_slot *dont)
1413{
1414 return;
1415}
1416
1417static int kvmppc_core_create_memslot_pr(struct kvm_memory_slot *slot,
1418 unsigned long npages)
1419{
1420 return 0;
1421}
1422
1423
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001424#ifdef CONFIG_PPC64
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301425static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1426 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001427{
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001428 long int i;
1429 struct kvm_vcpu *vcpu;
1430
1431 info->flags = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001432
1433 /* SLB is always 64 entries */
1434 info->slb_size = 64;
1435
1436 /* Standard 4k base page size segment */
1437 info->sps[0].page_shift = 12;
1438 info->sps[0].slb_enc = 0;
1439 info->sps[0].enc[0].page_shift = 12;
1440 info->sps[0].enc[0].pte_enc = 0;
1441
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001442 /*
1443 * 64k large page size.
1444 * We only want to put this in if the CPUs we're emulating
1445 * support it, but unfortunately we don't have a vcpu easily
1446 * to hand here to test. Just pick the first vcpu, and if
1447 * that doesn't exist yet, report the minimum capability,
1448 * i.e., no 64k pages.
1449 * 1T segment support goes along with 64k pages.
1450 */
1451 i = 1;
1452 vcpu = kvm_get_vcpu(kvm, 0);
1453 if (vcpu && (vcpu->arch.hflags & BOOK3S_HFLAG_MULTI_PGSIZE)) {
1454 info->flags = KVM_PPC_1T_SEGMENTS;
1455 info->sps[i].page_shift = 16;
1456 info->sps[i].slb_enc = SLB_VSID_L | SLB_VSID_LP_01;
1457 info->sps[i].enc[0].page_shift = 16;
1458 info->sps[i].enc[0].pte_enc = 1;
1459 ++i;
1460 }
1461
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001462 /* Standard 16M large page size segment */
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001463 info->sps[i].page_shift = 24;
1464 info->sps[i].slb_enc = SLB_VSID_L;
1465 info->sps[i].enc[0].page_shift = 24;
1466 info->sps[i].enc[0].pte_enc = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001467
1468 return 0;
1469}
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301470#else
1471static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1472 struct kvm_ppc_smmu_info *info)
1473{
1474 /* We should not get called */
1475 BUG();
1476}
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001477#endif /* CONFIG_PPC64 */
1478
Ian Munsiea413f472012-12-03 18:36:13 +00001479static unsigned int kvm_global_user_count = 0;
1480static DEFINE_SPINLOCK(kvm_global_user_count_lock);
1481
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301482static int kvmppc_core_init_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001483{
Paul Mackerras9308ab82013-09-20 14:52:48 +10001484 mutex_init(&kvm->arch.hpt_mutex);
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001485
Ian Munsiea413f472012-12-03 18:36:13 +00001486 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1487 spin_lock(&kvm_global_user_count_lock);
1488 if (++kvm_global_user_count == 1)
1489 pSeries_disable_reloc_on_exc();
1490 spin_unlock(&kvm_global_user_count_lock);
1491 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001492 return 0;
1493}
1494
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301495static void kvmppc_core_destroy_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001496{
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001497#ifdef CONFIG_PPC64
1498 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
1499#endif
Ian Munsiea413f472012-12-03 18:36:13 +00001500
1501 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1502 spin_lock(&kvm_global_user_count_lock);
1503 BUG_ON(kvm_global_user_count == 0);
1504 if (--kvm_global_user_count == 0)
1505 pSeries_enable_reloc_on_exc();
1506 spin_unlock(&kvm_global_user_count_lock);
1507 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001508}
1509
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301510static int kvmppc_core_check_processor_compat_pr(void)
1511{
1512 /* we are always compatible */
1513 return 0;
1514}
1515
1516static long kvm_arch_vm_ioctl_pr(struct file *filp,
1517 unsigned int ioctl, unsigned long arg)
1518{
1519 return -ENOTTY;
1520}
1521
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301522static struct kvmppc_ops kvm_ops_pr = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301523 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_pr,
1524 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_pr,
1525 .get_one_reg = kvmppc_get_one_reg_pr,
1526 .set_one_reg = kvmppc_set_one_reg_pr,
1527 .vcpu_load = kvmppc_core_vcpu_load_pr,
1528 .vcpu_put = kvmppc_core_vcpu_put_pr,
1529 .set_msr = kvmppc_set_msr_pr,
1530 .vcpu_run = kvmppc_vcpu_run_pr,
1531 .vcpu_create = kvmppc_core_vcpu_create_pr,
1532 .vcpu_free = kvmppc_core_vcpu_free_pr,
1533 .check_requests = kvmppc_core_check_requests_pr,
1534 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_pr,
1535 .flush_memslot = kvmppc_core_flush_memslot_pr,
1536 .prepare_memory_region = kvmppc_core_prepare_memory_region_pr,
1537 .commit_memory_region = kvmppc_core_commit_memory_region_pr,
1538 .unmap_hva = kvm_unmap_hva_pr,
1539 .unmap_hva_range = kvm_unmap_hva_range_pr,
1540 .age_hva = kvm_age_hva_pr,
1541 .test_age_hva = kvm_test_age_hva_pr,
1542 .set_spte_hva = kvm_set_spte_hva_pr,
1543 .mmu_destroy = kvmppc_mmu_destroy_pr,
1544 .free_memslot = kvmppc_core_free_memslot_pr,
1545 .create_memslot = kvmppc_core_create_memslot_pr,
1546 .init_vm = kvmppc_core_init_vm_pr,
1547 .destroy_vm = kvmppc_core_destroy_vm_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301548 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_pr,
1549 .emulate_op = kvmppc_core_emulate_op_pr,
1550 .emulate_mtspr = kvmppc_core_emulate_mtspr_pr,
1551 .emulate_mfspr = kvmppc_core_emulate_mfspr_pr,
1552 .fast_vcpu_kick = kvm_vcpu_kick,
1553 .arch_vm_ioctl = kvm_arch_vm_ioctl_pr,
1554};
1555
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301556
1557int kvmppc_book3s_init_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001558{
1559 int r;
1560
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301561 r = kvmppc_core_check_processor_compat_pr();
1562 if (r < 0)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001563 return r;
1564
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301565 kvm_ops_pr.owner = THIS_MODULE;
1566 kvmppc_pr_ops = &kvm_ops_pr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001567
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301568 r = kvmppc_mmu_hpte_sysinit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001569 return r;
1570}
1571
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301572void kvmppc_book3s_exit_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001573{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301574 kvmppc_pr_ops = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001575 kvmppc_mmu_hpte_sysexit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001576}
1577
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301578/*
1579 * We only support separate modules for book3s 64
1580 */
1581#ifdef CONFIG_PPC_BOOK3S_64
1582
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301583module_init(kvmppc_book3s_init_pr);
1584module_exit(kvmppc_book3s_exit_pr);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301585
1586MODULE_LICENSE("GPL");
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301587#endif