blob: dba282e5093f1656e91413832b09384390fee295 [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>
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000037#include <linux/gfp.h>
38#include <linux/sched.h>
39#include <linux/vmalloc.h>
40#include <linux/highmem.h>
41
42#include "trace.h"
43
44/* #define EXIT_DEBUG */
45/* #define DEBUG_EXT */
46
47static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
48 ulong msr);
49
50/* Some compatibility defines */
51#ifdef CONFIG_PPC_BOOK3S_32
52#define MSR_USER32 MSR_USER
53#define MSR_USER64 MSR_USER
54#define HW_PAGE_SIZE PAGE_SIZE
Alexander Grafe371f712011-12-19 13:36:55 +010055#define __hard_irq_disable local_irq_disable
56#define __hard_irq_enable local_irq_enable
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000057#endif
58
59void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
60{
61#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010062 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
63 memcpy(svcpu->slb, to_book3s(vcpu)->slb_shadow, sizeof(svcpu->slb));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000064 memcpy(&get_paca()->shadow_vcpu, to_book3s(vcpu)->shadow_vcpu,
65 sizeof(get_paca()->shadow_vcpu));
Alexander Graf468a12c2011-12-09 14:44:13 +010066 svcpu->slb_max = to_book3s(vcpu)->slb_shadow_max;
67 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000068#endif
69
70#ifdef CONFIG_PPC_BOOK3S_32
71 current->thread.kvm_shadow_vcpu = to_book3s(vcpu)->shadow_vcpu;
72#endif
73}
74
75void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu)
76{
77#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010078 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
79 memcpy(to_book3s(vcpu)->slb_shadow, svcpu->slb, sizeof(svcpu->slb));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000080 memcpy(to_book3s(vcpu)->shadow_vcpu, &get_paca()->shadow_vcpu,
81 sizeof(get_paca()->shadow_vcpu));
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
86 kvmppc_giveup_ext(vcpu, MSR_FP);
87 kvmppc_giveup_ext(vcpu, MSR_VEC);
88 kvmppc_giveup_ext(vcpu, MSR_VSX);
89}
90
91static void kvmppc_recalc_shadow_msr(struct kvm_vcpu *vcpu)
92{
93 ulong smsr = vcpu->arch.shared->msr;
94
95 /* Guest MSR values */
96 smsr &= MSR_FE0 | MSR_FE1 | MSR_SF | MSR_SE | MSR_BE | MSR_DE;
97 /* Process MSR values */
98 smsr |= MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_PR | MSR_EE;
99 /* External providers the guest reserved */
100 smsr |= (vcpu->arch.shared->msr & vcpu->arch.guest_owned_ext);
101 /* 64-bit Process MSR values */
102#ifdef CONFIG_PPC_BOOK3S_64
103 smsr |= MSR_ISF | MSR_HV;
104#endif
105 vcpu->arch.shadow_msr = smsr;
106}
107
108void kvmppc_set_msr(struct kvm_vcpu *vcpu, u64 msr)
109{
110 ulong old_msr = vcpu->arch.shared->msr;
111
112#ifdef EXIT_DEBUG
113 printk(KERN_INFO "KVM: Set MSR to 0x%llx\n", msr);
114#endif
115
116 msr &= to_book3s(vcpu)->msr_mask;
117 vcpu->arch.shared->msr = msr;
118 kvmppc_recalc_shadow_msr(vcpu);
119
120 if (msr & MSR_POW) {
121 if (!vcpu->arch.pending_exceptions) {
122 kvm_vcpu_block(vcpu);
Alexander Graf966cd0f2012-03-14 16:55:08 +0100123 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000124 vcpu->stat.halt_wakeup++;
125
126 /* Unset POW bit after we woke up */
127 msr &= ~MSR_POW;
128 vcpu->arch.shared->msr = msr;
129 }
130 }
131
132 if ((vcpu->arch.shared->msr & (MSR_PR|MSR_IR|MSR_DR)) !=
133 (old_msr & (MSR_PR|MSR_IR|MSR_DR))) {
134 kvmppc_mmu_flush_segments(vcpu);
135 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
136
137 /* Preload magic page segment when in kernel mode */
138 if (!(msr & MSR_PR) && vcpu->arch.magic_page_pa) {
139 struct kvm_vcpu_arch *a = &vcpu->arch;
140
141 if (msr & MSR_DR)
142 kvmppc_mmu_map_segment(vcpu, a->magic_page_ea);
143 else
144 kvmppc_mmu_map_segment(vcpu, a->magic_page_pa);
145 }
146 }
147
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000148 /*
149 * When switching from 32 to 64-bit, we may have a stale 32-bit
150 * magic page around, we need to flush it. Typically 32-bit magic
151 * page will be instanciated when calling into RTAS. Note: We
152 * assume that such transition only happens while in kernel mode,
153 * ie, we never transition from user 32-bit to kernel 64-bit with
154 * a 32-bit magic page around.
155 */
156 if (vcpu->arch.magic_page_pa &&
157 !(old_msr & MSR_PR) && !(old_msr & MSR_SF) && (msr & MSR_SF)) {
158 /* going from RTAS to normal kernel code */
159 kvmppc_mmu_pte_flush(vcpu, (uint32_t)vcpu->arch.magic_page_pa,
160 ~0xFFFUL);
161 }
162
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000163 /* Preload FPU if it's enabled */
164 if (vcpu->arch.shared->msr & MSR_FP)
165 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
166}
167
168void kvmppc_set_pvr(struct kvm_vcpu *vcpu, u32 pvr)
169{
170 u32 host_pvr;
171
172 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SLB;
173 vcpu->arch.pvr = pvr;
174#ifdef CONFIG_PPC_BOOK3S_64
175 if ((pvr >= 0x330000) && (pvr < 0x70330000)) {
176 kvmppc_mmu_book3s_64_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200177 if (!to_book3s(vcpu)->hior_explicit)
178 to_book3s(vcpu)->hior = 0xfff00000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000179 to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200180 vcpu->arch.cpu_type = KVM_CPU_3S_64;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000181 } else
182#endif
183 {
184 kvmppc_mmu_book3s_32_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200185 if (!to_book3s(vcpu)->hior_explicit)
186 to_book3s(vcpu)->hior = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000187 to_book3s(vcpu)->msr_mask = 0xffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200188 vcpu->arch.cpu_type = KVM_CPU_3S_32;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000189 }
190
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200191 kvmppc_sanity_check(vcpu);
192
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000193 /* If we are in hypervisor level on 970, we can tell the CPU to
194 * treat DCBZ as 32 bytes store */
195 vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32;
196 if (vcpu->arch.mmu.is_dcbz32(vcpu) && (mfmsr() & MSR_HV) &&
197 !strcmp(cur_cpu_spec->platform, "ppc970"))
198 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
199
200 /* Cell performs badly if MSR_FEx are set. So let's hope nobody
201 really needs them in a VM on Cell and force disable them. */
202 if (!strcmp(cur_cpu_spec->platform, "ppc-cell-be"))
203 to_book3s(vcpu)->msr_mask &= ~(MSR_FE0 | MSR_FE1);
204
205#ifdef CONFIG_PPC_BOOK3S_32
206 /* 32 bit Book3S always has 32 byte dcbz */
207 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
208#endif
209
210 /* On some CPUs we can execute paired single operations natively */
211 asm ( "mfpvr %0" : "=r"(host_pvr));
212 switch (host_pvr) {
213 case 0x00080200: /* lonestar 2.0 */
214 case 0x00088202: /* lonestar 2.2 */
215 case 0x70000100: /* gekko 1.0 */
216 case 0x00080100: /* gekko 2.0 */
217 case 0x00083203: /* gekko 2.3a */
218 case 0x00083213: /* gekko 2.3b */
219 case 0x00083204: /* gekko 2.4 */
220 case 0x00083214: /* gekko 2.4e (8SE) - retail HW2 */
221 case 0x00087200: /* broadway */
222 vcpu->arch.hflags |= BOOK3S_HFLAG_NATIVE_PS;
223 /* Enable HID2.PSE - in case we need it later */
224 mtspr(SPRN_HID2_GEKKO, mfspr(SPRN_HID2_GEKKO) | (1 << 29));
225 }
226}
227
228/* Book3s_32 CPUs always have 32 bytes cache line size, which Linux assumes. To
229 * make Book3s_32 Linux work on Book3s_64, we have to make sure we trap dcbz to
230 * emulate 32 bytes dcbz length.
231 *
232 * The Book3s_64 inventors also realized this case and implemented a special bit
233 * in the HID5 register, which is a hypervisor ressource. Thus we can't use it.
234 *
235 * My approach here is to patch the dcbz instruction on executing pages.
236 */
237static void kvmppc_patch_dcbz(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte)
238{
239 struct page *hpage;
240 u64 hpage_offset;
241 u32 *page;
242 int i;
243
244 hpage = gfn_to_page(vcpu->kvm, pte->raddr >> PAGE_SHIFT);
245 if (is_error_page(hpage)) {
246 kvm_release_page_clean(hpage);
247 return;
248 }
249
250 hpage_offset = pte->raddr & ~PAGE_MASK;
251 hpage_offset &= ~0xFFFULL;
252 hpage_offset /= 4;
253
254 get_page(hpage);
Cong Wang2480b202011-11-25 23:14:16 +0800255 page = kmap_atomic(hpage);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000256
257 /* patch dcbz into reserved instruction, so we trap */
258 for (i=hpage_offset; i < hpage_offset + (HW_PAGE_SIZE / 4); i++)
259 if ((page[i] & 0xff0007ff) == INS_DCBZ)
260 page[i] &= 0xfffffff7;
261
Cong Wang2480b202011-11-25 23:14:16 +0800262 kunmap_atomic(page);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000263 put_page(hpage);
264}
265
266static int kvmppc_visible_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
267{
268 ulong mp_pa = vcpu->arch.magic_page_pa;
269
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000270 if (!(vcpu->arch.shared->msr & MSR_SF))
271 mp_pa = (uint32_t)mp_pa;
272
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000273 if (unlikely(mp_pa) &&
274 unlikely((mp_pa & KVM_PAM) >> PAGE_SHIFT == gfn)) {
275 return 1;
276 }
277
278 return kvm_is_visible_gfn(vcpu->kvm, gfn);
279}
280
281int kvmppc_handle_pagefault(struct kvm_run *run, struct kvm_vcpu *vcpu,
282 ulong eaddr, int vec)
283{
284 bool data = (vec == BOOK3S_INTERRUPT_DATA_STORAGE);
285 int r = RESUME_GUEST;
286 int relocated;
287 int page_found = 0;
288 struct kvmppc_pte pte;
289 bool is_mmio = false;
290 bool dr = (vcpu->arch.shared->msr & MSR_DR) ? true : false;
291 bool ir = (vcpu->arch.shared->msr & MSR_IR) ? true : false;
292 u64 vsid;
293
294 relocated = data ? dr : ir;
295
296 /* Resolve real address if translation turned on */
297 if (relocated) {
298 page_found = vcpu->arch.mmu.xlate(vcpu, eaddr, &pte, data);
299 } else {
300 pte.may_execute = true;
301 pte.may_read = true;
302 pte.may_write = true;
303 pte.raddr = eaddr & KVM_PAM;
304 pte.eaddr = eaddr;
305 pte.vpage = eaddr >> 12;
306 }
307
308 switch (vcpu->arch.shared->msr & (MSR_DR|MSR_IR)) {
309 case 0:
310 pte.vpage |= ((u64)VSID_REAL << (SID_SHIFT - 12));
311 break;
312 case MSR_DR:
313 case MSR_IR:
314 vcpu->arch.mmu.esid_to_vsid(vcpu, eaddr >> SID_SHIFT, &vsid);
315
316 if ((vcpu->arch.shared->msr & (MSR_DR|MSR_IR)) == MSR_DR)
317 pte.vpage |= ((u64)VSID_REAL_DR << (SID_SHIFT - 12));
318 else
319 pte.vpage |= ((u64)VSID_REAL_IR << (SID_SHIFT - 12));
320 pte.vpage |= vsid;
321
322 if (vsid == -1)
323 page_found = -EINVAL;
324 break;
325 }
326
327 if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
328 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
329 /*
330 * If we do the dcbz hack, we have to NX on every execution,
331 * so we can patch the executing code. This renders our guest
332 * NX-less.
333 */
334 pte.may_execute = !data;
335 }
336
337 if (page_found == -ENOENT) {
338 /* Page not found in guest PTE entries */
Alexander Graf468a12c2011-12-09 14:44:13 +0100339 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000340 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
Alexander Graf468a12c2011-12-09 14:44:13 +0100341 vcpu->arch.shared->dsisr = svcpu->fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000342 vcpu->arch.shared->msr |=
Alexander Graf468a12c2011-12-09 14:44:13 +0100343 (svcpu->shadow_srr1 & 0x00000000f8000000ULL);
344 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000345 kvmppc_book3s_queue_irqprio(vcpu, vec);
346 } else if (page_found == -EPERM) {
347 /* Storage protection */
Alexander Graf468a12c2011-12-09 14:44:13 +0100348 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000349 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
Alexander Graf468a12c2011-12-09 14:44:13 +0100350 vcpu->arch.shared->dsisr = svcpu->fault_dsisr & ~DSISR_NOHPTE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000351 vcpu->arch.shared->dsisr |= DSISR_PROTFAULT;
352 vcpu->arch.shared->msr |=
Alexander Graf468a12c2011-12-09 14:44:13 +0100353 svcpu->shadow_srr1 & 0x00000000f8000000ULL;
354 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000355 kvmppc_book3s_queue_irqprio(vcpu, vec);
356 } else if (page_found == -EINVAL) {
357 /* Page not found in guest SLB */
358 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
359 kvmppc_book3s_queue_irqprio(vcpu, vec + 0x80);
360 } else if (!is_mmio &&
361 kvmppc_visible_gfn(vcpu, pte.raddr >> PAGE_SHIFT)) {
362 /* The guest's PTE is not mapped yet. Map on the host */
363 kvmppc_mmu_map_page(vcpu, &pte);
364 if (data)
365 vcpu->stat.sp_storage++;
366 else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
367 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32)))
368 kvmppc_patch_dcbz(vcpu, &pte);
369 } else {
370 /* MMIO */
371 vcpu->stat.mmio_exits++;
372 vcpu->arch.paddr_accessed = pte.raddr;
Alexander Graf6020c0f2012-03-12 02:26:30 +0100373 vcpu->arch.vaddr_accessed = pte.eaddr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000374 r = kvmppc_emulate_mmio(run, vcpu);
375 if ( r == RESUME_HOST_NV )
376 r = RESUME_HOST;
377 }
378
379 return r;
380}
381
382static inline int get_fpr_index(int i)
383{
384#ifdef CONFIG_VSX
385 i *= 2;
386#endif
387 return i;
388}
389
390/* Give up external provider (FPU, Altivec, VSX) */
391void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr)
392{
393 struct thread_struct *t = &current->thread;
394 u64 *vcpu_fpr = vcpu->arch.fpr;
395#ifdef CONFIG_VSX
396 u64 *vcpu_vsx = vcpu->arch.vsr;
397#endif
398 u64 *thread_fpr = (u64*)t->fpr;
399 int i;
400
401 if (!(vcpu->arch.guest_owned_ext & msr))
402 return;
403
404#ifdef DEBUG_EXT
405 printk(KERN_INFO "Giving up ext 0x%lx\n", msr);
406#endif
407
408 switch (msr) {
409 case MSR_FP:
410 giveup_fpu(current);
411 for (i = 0; i < ARRAY_SIZE(vcpu->arch.fpr); i++)
412 vcpu_fpr[i] = thread_fpr[get_fpr_index(i)];
413
414 vcpu->arch.fpscr = t->fpscr.val;
415 break;
416 case MSR_VEC:
417#ifdef CONFIG_ALTIVEC
418 giveup_altivec(current);
419 memcpy(vcpu->arch.vr, t->vr, sizeof(vcpu->arch.vr));
420 vcpu->arch.vscr = t->vscr;
421#endif
422 break;
423 case MSR_VSX:
424#ifdef CONFIG_VSX
425 __giveup_vsx(current);
426 for (i = 0; i < ARRAY_SIZE(vcpu->arch.vsr); i++)
427 vcpu_vsx[i] = thread_fpr[get_fpr_index(i) + 1];
428#endif
429 break;
430 default:
431 BUG();
432 }
433
434 vcpu->arch.guest_owned_ext &= ~msr;
435 current->thread.regs->msr &= ~msr;
436 kvmppc_recalc_shadow_msr(vcpu);
437}
438
439static int kvmppc_read_inst(struct kvm_vcpu *vcpu)
440{
441 ulong srr0 = kvmppc_get_pc(vcpu);
442 u32 last_inst = kvmppc_get_last_inst(vcpu);
443 int ret;
444
445 ret = kvmppc_ld(vcpu, &srr0, sizeof(u32), &last_inst, false);
446 if (ret == -ENOENT) {
447 ulong msr = vcpu->arch.shared->msr;
448
449 msr = kvmppc_set_field(msr, 33, 33, 1);
450 msr = kvmppc_set_field(msr, 34, 36, 0);
451 vcpu->arch.shared->msr = kvmppc_set_field(msr, 42, 47, 0);
452 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_INST_STORAGE);
453 return EMULATE_AGAIN;
454 }
455
456 return EMULATE_DONE;
457}
458
459static int kvmppc_check_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr)
460{
461
462 /* Need to do paired single emulation? */
463 if (!(vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE))
464 return EMULATE_DONE;
465
466 /* Read out the instruction */
467 if (kvmppc_read_inst(vcpu) == EMULATE_DONE)
468 /* Need to emulate */
469 return EMULATE_FAIL;
470
471 return EMULATE_AGAIN;
472}
473
474/* Handle external providers (FPU, Altivec, VSX) */
475static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
476 ulong msr)
477{
478 struct thread_struct *t = &current->thread;
479 u64 *vcpu_fpr = vcpu->arch.fpr;
480#ifdef CONFIG_VSX
481 u64 *vcpu_vsx = vcpu->arch.vsr;
482#endif
483 u64 *thread_fpr = (u64*)t->fpr;
484 int i;
485
486 /* When we have paired singles, we emulate in software */
487 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE)
488 return RESUME_GUEST;
489
490 if (!(vcpu->arch.shared->msr & msr)) {
491 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
492 return RESUME_GUEST;
493 }
494
495 /* We already own the ext */
496 if (vcpu->arch.guest_owned_ext & msr) {
497 return RESUME_GUEST;
498 }
499
500#ifdef DEBUG_EXT
501 printk(KERN_INFO "Loading up ext 0x%lx\n", msr);
502#endif
503
504 current->thread.regs->msr |= msr;
505
506 switch (msr) {
507 case MSR_FP:
508 for (i = 0; i < ARRAY_SIZE(vcpu->arch.fpr); i++)
509 thread_fpr[get_fpr_index(i)] = vcpu_fpr[i];
510
511 t->fpscr.val = vcpu->arch.fpscr;
512 t->fpexc_mode = 0;
513 kvmppc_load_up_fpu();
514 break;
515 case MSR_VEC:
516#ifdef CONFIG_ALTIVEC
517 memcpy(t->vr, vcpu->arch.vr, sizeof(vcpu->arch.vr));
518 t->vscr = vcpu->arch.vscr;
519 t->vrsave = -1;
520 kvmppc_load_up_altivec();
521#endif
522 break;
523 case MSR_VSX:
524#ifdef CONFIG_VSX
525 for (i = 0; i < ARRAY_SIZE(vcpu->arch.vsr); i++)
526 thread_fpr[get_fpr_index(i) + 1] = vcpu_vsx[i];
527 kvmppc_load_up_vsx();
528#endif
529 break;
530 default:
531 BUG();
532 }
533
534 vcpu->arch.guest_owned_ext |= msr;
535
536 kvmppc_recalc_shadow_msr(vcpu);
537
538 return RESUME_GUEST;
539}
540
541int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu,
542 unsigned int exit_nr)
543{
544 int r = RESUME_HOST;
545
546 vcpu->stat.sum_exits++;
547
548 run->exit_reason = KVM_EXIT_UNKNOWN;
549 run->ready_for_interrupt_injection = 1;
550
551 trace_kvm_book3s_exit(exit_nr, vcpu);
Alexander Graf7d827142011-12-09 15:46:21 +0100552 preempt_enable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000553 kvm_resched(vcpu);
554 switch (exit_nr) {
555 case BOOK3S_INTERRUPT_INST_STORAGE:
Alexander Graf468a12c2011-12-09 14:44:13 +0100556 {
557 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
558 ulong shadow_srr1 = svcpu->shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000559 vcpu->stat.pf_instruc++;
560
561#ifdef CONFIG_PPC_BOOK3S_32
562 /* We set segments as unused segments when invalidating them. So
563 * treat the respective fault as segment fault. */
Alexander Graf468a12c2011-12-09 14:44:13 +0100564 if (svcpu->sr[kvmppc_get_pc(vcpu) >> SID_SHIFT] == SR_INVALID) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000565 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
566 r = RESUME_GUEST;
Alexander Graf468a12c2011-12-09 14:44:13 +0100567 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000568 break;
569 }
570#endif
Alexander Graf468a12c2011-12-09 14:44:13 +0100571 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000572
573 /* only care about PTEG not found errors, but leave NX alone */
Alexander Graf468a12c2011-12-09 14:44:13 +0100574 if (shadow_srr1 & 0x40000000) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000575 r = kvmppc_handle_pagefault(run, vcpu, kvmppc_get_pc(vcpu), exit_nr);
576 vcpu->stat.sp_instruc++;
577 } else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
578 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
579 /*
580 * XXX If we do the dcbz hack we use the NX bit to flush&patch the page,
581 * so we can't use the NX bit inside the guest. Let's cross our fingers,
582 * that no guest that needs the dcbz hack does NX.
583 */
584 kvmppc_mmu_pte_flush(vcpu, kvmppc_get_pc(vcpu), ~0xFFFUL);
585 r = RESUME_GUEST;
586 } else {
Alexander Graf468a12c2011-12-09 14:44:13 +0100587 vcpu->arch.shared->msr |= shadow_srr1 & 0x58000000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000588 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
589 r = RESUME_GUEST;
590 }
591 break;
Alexander Graf468a12c2011-12-09 14:44:13 +0100592 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000593 case BOOK3S_INTERRUPT_DATA_STORAGE:
594 {
595 ulong dar = kvmppc_get_fault_dar(vcpu);
Alexander Graf468a12c2011-12-09 14:44:13 +0100596 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
597 u32 fault_dsisr = svcpu->fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000598 vcpu->stat.pf_storage++;
599
600#ifdef CONFIG_PPC_BOOK3S_32
601 /* We set segments as unused segments when invalidating them. So
602 * treat the respective fault as segment fault. */
Alexander Graf468a12c2011-12-09 14:44:13 +0100603 if ((svcpu->sr[dar >> SID_SHIFT]) == SR_INVALID) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000604 kvmppc_mmu_map_segment(vcpu, dar);
605 r = RESUME_GUEST;
Alexander Graf468a12c2011-12-09 14:44:13 +0100606 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000607 break;
608 }
609#endif
Alexander Graf468a12c2011-12-09 14:44:13 +0100610 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000611
612 /* The only case we need to handle is missing shadow PTEs */
Alexander Graf468a12c2011-12-09 14:44:13 +0100613 if (fault_dsisr & DSISR_NOHPTE) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000614 r = kvmppc_handle_pagefault(run, vcpu, dar, exit_nr);
615 } else {
616 vcpu->arch.shared->dar = dar;
Alexander Graf468a12c2011-12-09 14:44:13 +0100617 vcpu->arch.shared->dsisr = fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000618 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
619 r = RESUME_GUEST;
620 }
621 break;
622 }
623 case BOOK3S_INTERRUPT_DATA_SEGMENT:
624 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_fault_dar(vcpu)) < 0) {
625 vcpu->arch.shared->dar = kvmppc_get_fault_dar(vcpu);
626 kvmppc_book3s_queue_irqprio(vcpu,
627 BOOK3S_INTERRUPT_DATA_SEGMENT);
628 }
629 r = RESUME_GUEST;
630 break;
631 case BOOK3S_INTERRUPT_INST_SEGMENT:
632 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu)) < 0) {
633 kvmppc_book3s_queue_irqprio(vcpu,
634 BOOK3S_INTERRUPT_INST_SEGMENT);
635 }
636 r = RESUME_GUEST;
637 break;
638 /* We're good on these - the host merely wanted to get our attention */
639 case BOOK3S_INTERRUPT_DECREMENTER:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100640 case BOOK3S_INTERRUPT_HV_DECREMENTER:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000641 vcpu->stat.dec_exits++;
642 r = RESUME_GUEST;
643 break;
644 case BOOK3S_INTERRUPT_EXTERNAL:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100645 case BOOK3S_INTERRUPT_EXTERNAL_LEVEL:
646 case BOOK3S_INTERRUPT_EXTERNAL_HV:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000647 vcpu->stat.ext_intr_exits++;
648 r = RESUME_GUEST;
649 break;
650 case BOOK3S_INTERRUPT_PERFMON:
651 r = RESUME_GUEST;
652 break;
653 case BOOK3S_INTERRUPT_PROGRAM:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100654 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000655 {
656 enum emulation_result er;
Alexander Graf468a12c2011-12-09 14:44:13 +0100657 struct kvmppc_book3s_shadow_vcpu *svcpu;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000658 ulong flags;
659
660program_interrupt:
Alexander Graf468a12c2011-12-09 14:44:13 +0100661 svcpu = svcpu_get(vcpu);
662 flags = svcpu->shadow_srr1 & 0x1f0000ull;
663 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000664
665 if (vcpu->arch.shared->msr & MSR_PR) {
666#ifdef EXIT_DEBUG
667 printk(KERN_INFO "Userspace triggered 0x700 exception at 0x%lx (0x%x)\n", kvmppc_get_pc(vcpu), kvmppc_get_last_inst(vcpu));
668#endif
669 if ((kvmppc_get_last_inst(vcpu) & 0xff0007ff) !=
670 (INS_DCBZ & 0xfffffff7)) {
671 kvmppc_core_queue_program(vcpu, flags);
672 r = RESUME_GUEST;
673 break;
674 }
675 }
676
677 vcpu->stat.emulated_inst_exits++;
678 er = kvmppc_emulate_instruction(run, vcpu);
679 switch (er) {
680 case EMULATE_DONE:
681 r = RESUME_GUEST_NV;
682 break;
683 case EMULATE_AGAIN:
684 r = RESUME_GUEST;
685 break;
686 case EMULATE_FAIL:
687 printk(KERN_CRIT "%s: emulation at %lx failed (%08x)\n",
688 __func__, kvmppc_get_pc(vcpu), kvmppc_get_last_inst(vcpu));
689 kvmppc_core_queue_program(vcpu, flags);
690 r = RESUME_GUEST;
691 break;
692 case EMULATE_DO_MMIO:
693 run->exit_reason = KVM_EXIT_MMIO;
694 r = RESUME_HOST_NV;
695 break;
696 default:
697 BUG();
698 }
699 break;
700 }
701 case BOOK3S_INTERRUPT_SYSCALL:
Alexander Grafa668f2b2011-08-08 17:26:24 +0200702 if (vcpu->arch.papr_enabled &&
703 (kvmppc_get_last_inst(vcpu) == 0x44000022) &&
704 !(vcpu->arch.shared->msr & MSR_PR)) {
705 /* SC 1 papr hypercalls */
706 ulong cmd = kvmppc_get_gpr(vcpu, 3);
707 int i;
708
Andreas Schwab96f38d72011-11-08 07:17:39 +0000709#ifdef CONFIG_KVM_BOOK3S_64_PR
Alexander Grafa668f2b2011-08-08 17:26:24 +0200710 if (kvmppc_h_pr(vcpu, cmd) == EMULATE_DONE) {
711 r = RESUME_GUEST;
712 break;
713 }
Andreas Schwab96f38d72011-11-08 07:17:39 +0000714#endif
Alexander Grafa668f2b2011-08-08 17:26:24 +0200715
716 run->papr_hcall.nr = cmd;
717 for (i = 0; i < 9; ++i) {
718 ulong gpr = kvmppc_get_gpr(vcpu, 4 + i);
719 run->papr_hcall.args[i] = gpr;
720 }
721 run->exit_reason = KVM_EXIT_PAPR_HCALL;
722 vcpu->arch.hcall_needed = 1;
723 r = RESUME_HOST;
724 } else if (vcpu->arch.osi_enabled &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000725 (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) &&
726 (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) {
727 /* MOL hypercalls */
728 u64 *gprs = run->osi.gprs;
729 int i;
730
731 run->exit_reason = KVM_EXIT_OSI;
732 for (i = 0; i < 32; i++)
733 gprs[i] = kvmppc_get_gpr(vcpu, i);
734 vcpu->arch.osi_needed = 1;
735 r = RESUME_HOST_NV;
736 } else if (!(vcpu->arch.shared->msr & MSR_PR) &&
737 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
738 /* KVM PV hypercalls */
739 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
740 r = RESUME_GUEST;
741 } else {
742 /* Guest syscalls */
743 vcpu->stat.syscall_exits++;
744 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
745 r = RESUME_GUEST;
746 }
747 break;
748 case BOOK3S_INTERRUPT_FP_UNAVAIL:
749 case BOOK3S_INTERRUPT_ALTIVEC:
750 case BOOK3S_INTERRUPT_VSX:
751 {
752 int ext_msr = 0;
753
754 switch (exit_nr) {
755 case BOOK3S_INTERRUPT_FP_UNAVAIL: ext_msr = MSR_FP; break;
756 case BOOK3S_INTERRUPT_ALTIVEC: ext_msr = MSR_VEC; break;
757 case BOOK3S_INTERRUPT_VSX: ext_msr = MSR_VSX; break;
758 }
759
760 switch (kvmppc_check_ext(vcpu, exit_nr)) {
761 case EMULATE_DONE:
762 /* everything ok - let's enable the ext */
763 r = kvmppc_handle_ext(vcpu, exit_nr, ext_msr);
764 break;
765 case EMULATE_FAIL:
766 /* we need to emulate this instruction */
767 goto program_interrupt;
768 break;
769 default:
770 /* nothing to worry about - go again */
771 break;
772 }
773 break;
774 }
775 case BOOK3S_INTERRUPT_ALIGNMENT:
776 if (kvmppc_read_inst(vcpu) == EMULATE_DONE) {
777 vcpu->arch.shared->dsisr = kvmppc_alignment_dsisr(vcpu,
778 kvmppc_get_last_inst(vcpu));
779 vcpu->arch.shared->dar = kvmppc_alignment_dar(vcpu,
780 kvmppc_get_last_inst(vcpu));
781 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
782 }
783 r = RESUME_GUEST;
784 break;
785 case BOOK3S_INTERRUPT_MACHINE_CHECK:
786 case BOOK3S_INTERRUPT_TRACE:
787 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
788 r = RESUME_GUEST;
789 break;
790 default:
Alexander Graf468a12c2011-12-09 14:44:13 +0100791 {
792 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
793 ulong shadow_srr1 = svcpu->shadow_srr1;
794 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000795 /* Ugh - bork here! What did we get? */
796 printk(KERN_EMERG "exit_nr=0x%x | pc=0x%lx | msr=0x%lx\n",
Alexander Graf468a12c2011-12-09 14:44:13 +0100797 exit_nr, kvmppc_get_pc(vcpu), shadow_srr1);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000798 r = RESUME_HOST;
799 BUG();
800 break;
801 }
Alexander Graf468a12c2011-12-09 14:44:13 +0100802 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000803
Alexander Graf592f5d82012-03-13 23:31:02 +0100804 preempt_disable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000805 if (!(r & RESUME_HOST)) {
806 /* To avoid clobbering exit_reason, only check for signals if
807 * we aren't already exiting to userspace for some other
808 * reason. */
Alexander Grafe371f712011-12-19 13:36:55 +0100809
810 /*
811 * Interrupts could be timers for the guest which we have to
812 * inject again, so let's postpone them until we're in the guest
813 * and if we really did time things so badly, then we just exit
814 * again due to a host external interrupt.
815 */
816 __hard_irq_disable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000817 if (signal_pending(current)) {
Alexander Grafe371f712011-12-19 13:36:55 +0100818 __hard_irq_enable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000819#ifdef EXIT_DEBUG
820 printk(KERN_EMERG "KVM: Going back to host\n");
821#endif
822 vcpu->stat.signal_exits++;
823 run->exit_reason = KVM_EXIT_INTR;
824 r = -EINTR;
825 } else {
826 /* In case an interrupt came in that was triggered
827 * from userspace (like DEC), we need to check what
828 * to inject now! */
Scott Wood7e28e602011-11-08 18:23:20 -0600829 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000830 }
831 }
832
833 trace_kvm_book3s_reenter(r, vcpu);
834
835 return r;
836}
837
838int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
839 struct kvm_sregs *sregs)
840{
841 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
842 int i;
843
844 sregs->pvr = vcpu->arch.pvr;
845
846 sregs->u.s.sdr1 = to_book3s(vcpu)->sdr1;
847 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
848 for (i = 0; i < 64; i++) {
849 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige | i;
850 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
851 }
852 } else {
853 for (i = 0; i < 16; i++)
854 sregs->u.s.ppc32.sr[i] = vcpu->arch.shared->sr[i];
855
856 for (i = 0; i < 8; i++) {
857 sregs->u.s.ppc32.ibat[i] = vcpu3s->ibat[i].raw;
858 sregs->u.s.ppc32.dbat[i] = vcpu3s->dbat[i].raw;
859 }
860 }
861
862 return 0;
863}
864
865int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
866 struct kvm_sregs *sregs)
867{
868 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
869 int i;
870
871 kvmppc_set_pvr(vcpu, sregs->pvr);
872
873 vcpu3s->sdr1 = sregs->u.s.sdr1;
874 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
875 for (i = 0; i < 64; i++) {
876 vcpu->arch.mmu.slbmte(vcpu, sregs->u.s.ppc64.slb[i].slbv,
877 sregs->u.s.ppc64.slb[i].slbe);
878 }
879 } else {
880 for (i = 0; i < 16; i++) {
881 vcpu->arch.mmu.mtsrin(vcpu, i, sregs->u.s.ppc32.sr[i]);
882 }
883 for (i = 0; i < 8; i++) {
884 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), false,
885 (u32)sregs->u.s.ppc32.ibat[i]);
886 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), true,
887 (u32)(sregs->u.s.ppc32.ibat[i] >> 32));
888 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), false,
889 (u32)sregs->u.s.ppc32.dbat[i]);
890 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), true,
891 (u32)(sregs->u.s.ppc32.dbat[i] >> 32));
892 }
893 }
894
895 /* Flush the MMU after messing with the segments */
896 kvmppc_mmu_pte_flush(vcpu, 0, 0);
897
898 return 0;
899}
900
Paul Mackerras31f34382011-12-12 12:26:50 +0000901int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
902{
903 int r = -EINVAL;
904
905 switch (reg->id) {
906 case KVM_REG_PPC_HIOR:
Alexander Grafb8e6f8a2012-03-13 19:59:39 +0100907 r = copy_to_user((u64 __user *)(long)reg->addr,
908 &to_book3s(vcpu)->hior, sizeof(u64));
Paul Mackerras31f34382011-12-12 12:26:50 +0000909 break;
910 default:
911 break;
912 }
913
914 return r;
915}
916
917int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
918{
919 int r = -EINVAL;
920
921 switch (reg->id) {
922 case KVM_REG_PPC_HIOR:
Alexander Grafb8e6f8a2012-03-13 19:59:39 +0100923 r = copy_from_user(&to_book3s(vcpu)->hior,
924 (u64 __user *)(long)reg->addr, sizeof(u64));
Paul Mackerras31f34382011-12-12 12:26:50 +0000925 if (!r)
926 to_book3s(vcpu)->hior_explicit = true;
927 break;
928 default:
929 break;
930 }
931
932 return r;
933}
934
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000935int kvmppc_core_check_processor_compat(void)
936{
937 return 0;
938}
939
940struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id)
941{
942 struct kvmppc_vcpu_book3s *vcpu_book3s;
943 struct kvm_vcpu *vcpu;
944 int err = -ENOMEM;
945 unsigned long p;
946
947 vcpu_book3s = vzalloc(sizeof(struct kvmppc_vcpu_book3s));
948 if (!vcpu_book3s)
949 goto out;
950
951 vcpu_book3s->shadow_vcpu = (struct kvmppc_book3s_shadow_vcpu *)
952 kzalloc(sizeof(*vcpu_book3s->shadow_vcpu), GFP_KERNEL);
953 if (!vcpu_book3s->shadow_vcpu)
954 goto free_vcpu;
955
956 vcpu = &vcpu_book3s->vcpu;
957 err = kvm_vcpu_init(vcpu, kvm, id);
958 if (err)
959 goto free_shadow_vcpu;
960
961 p = __get_free_page(GFP_KERNEL|__GFP_ZERO);
962 /* the real shared page fills the last 4k of our page */
963 vcpu->arch.shared = (void*)(p + PAGE_SIZE - 4096);
964 if (!p)
965 goto uninit_vcpu;
966
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000967#ifdef CONFIG_PPC_BOOK3S_64
968 /* default to book3s_64 (970fx) */
969 vcpu->arch.pvr = 0x3C0301;
970#else
971 /* default to book3s_32 (750) */
972 vcpu->arch.pvr = 0x84202;
973#endif
974 kvmppc_set_pvr(vcpu, vcpu->arch.pvr);
975 vcpu->arch.slb_nr = 64;
976
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000977 vcpu->arch.shadow_msr = MSR_USER64;
978
979 err = kvmppc_mmu_init(vcpu);
980 if (err < 0)
981 goto uninit_vcpu;
982
983 return vcpu;
984
985uninit_vcpu:
986 kvm_vcpu_uninit(vcpu);
987free_shadow_vcpu:
988 kfree(vcpu_book3s->shadow_vcpu);
989free_vcpu:
990 vfree(vcpu_book3s);
991out:
992 return ERR_PTR(err);
993}
994
995void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu)
996{
997 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
998
999 free_page((unsigned long)vcpu->arch.shared & PAGE_MASK);
1000 kvm_vcpu_uninit(vcpu);
1001 kfree(vcpu_book3s->shadow_vcpu);
1002 vfree(vcpu_book3s);
1003}
1004
Paul Mackerrasdf6909e2011-06-29 00:19:50 +00001005int kvmppc_vcpu_run(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001006{
1007 int ret;
1008 double fpr[32][TS_FPRWIDTH];
1009 unsigned int fpscr;
1010 int fpexc_mode;
1011#ifdef CONFIG_ALTIVEC
1012 vector128 vr[32];
1013 vector128 vscr;
1014 unsigned long uninitialized_var(vrsave);
1015 int used_vr;
1016#endif
1017#ifdef CONFIG_VSX
1018 int used_vsr;
1019#endif
1020 ulong ext_msr;
1021
Alexander Graf7d827142011-12-09 15:46:21 +01001022 preempt_disable();
1023
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001024 /* Check if we can run the vcpu at all */
1025 if (!vcpu->arch.sane) {
1026 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
Alexander Graf7d827142011-12-09 15:46:21 +01001027 ret = -EINVAL;
1028 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001029 }
1030
Scott Wood25051b52011-11-08 18:23:23 -06001031 kvmppc_core_prepare_to_enter(vcpu);
1032
Alexander Grafe371f712011-12-19 13:36:55 +01001033 /*
1034 * Interrupts could be timers for the guest which we have to inject
1035 * again, so let's postpone them until we're in the guest and if we
1036 * really did time things so badly, then we just exit again due to
1037 * a host external interrupt.
1038 */
1039 __hard_irq_disable();
1040
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001041 /* No need to go into the guest when all we do is going out */
1042 if (signal_pending(current)) {
Alexander Grafe371f712011-12-19 13:36:55 +01001043 __hard_irq_enable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001044 kvm_run->exit_reason = KVM_EXIT_INTR;
Alexander Graf7d827142011-12-09 15:46:21 +01001045 ret = -EINTR;
1046 goto out;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001047 }
1048
1049 /* Save FPU state in stack */
1050 if (current->thread.regs->msr & MSR_FP)
1051 giveup_fpu(current);
1052 memcpy(fpr, current->thread.fpr, sizeof(current->thread.fpr));
1053 fpscr = current->thread.fpscr.val;
1054 fpexc_mode = current->thread.fpexc_mode;
1055
1056#ifdef CONFIG_ALTIVEC
1057 /* Save Altivec state in stack */
1058 used_vr = current->thread.used_vr;
1059 if (used_vr) {
1060 if (current->thread.regs->msr & MSR_VEC)
1061 giveup_altivec(current);
1062 memcpy(vr, current->thread.vr, sizeof(current->thread.vr));
1063 vscr = current->thread.vscr;
1064 vrsave = current->thread.vrsave;
1065 }
1066#endif
1067
1068#ifdef CONFIG_VSX
1069 /* Save VSX state in stack */
1070 used_vsr = current->thread.used_vsr;
1071 if (used_vsr && (current->thread.regs->msr & MSR_VSX))
1072 __giveup_vsx(current);
1073#endif
1074
1075 /* Remember the MSR with disabled extensions */
1076 ext_msr = current->thread.regs->msr;
1077
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001078 /* Preload FPU if it's enabled */
1079 if (vcpu->arch.shared->msr & MSR_FP)
1080 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
1081
Paul Mackerrasdf6909e2011-06-29 00:19:50 +00001082 kvm_guest_enter();
1083
1084 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
1085
1086 kvm_guest_exit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001087
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001088 current->thread.regs->msr = ext_msr;
1089
1090 /* Make sure we save the guest FPU/Altivec/VSX state */
1091 kvmppc_giveup_ext(vcpu, MSR_FP);
1092 kvmppc_giveup_ext(vcpu, MSR_VEC);
1093 kvmppc_giveup_ext(vcpu, MSR_VSX);
1094
1095 /* Restore FPU state from stack */
1096 memcpy(current->thread.fpr, fpr, sizeof(current->thread.fpr));
1097 current->thread.fpscr.val = fpscr;
1098 current->thread.fpexc_mode = fpexc_mode;
1099
1100#ifdef CONFIG_ALTIVEC
1101 /* Restore Altivec state from stack */
1102 if (used_vr && current->thread.used_vr) {
1103 memcpy(current->thread.vr, vr, sizeof(current->thread.vr));
1104 current->thread.vscr = vscr;
1105 current->thread.vrsave = vrsave;
1106 }
1107 current->thread.used_vr = used_vr;
1108#endif
1109
1110#ifdef CONFIG_VSX
1111 current->thread.used_vsr = used_vsr;
1112#endif
1113
Alexander Graf7d827142011-12-09 15:46:21 +01001114out:
1115 preempt_enable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001116 return ret;
1117}
1118
Paul Mackerras82ed3612011-12-15 02:03:22 +00001119/*
1120 * Get (and clear) the dirty memory log for a memory slot.
1121 */
1122int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
1123 struct kvm_dirty_log *log)
1124{
1125 struct kvm_memory_slot *memslot;
1126 struct kvm_vcpu *vcpu;
1127 ulong ga, ga_end;
1128 int is_dirty = 0;
1129 int r;
1130 unsigned long n;
1131
1132 mutex_lock(&kvm->slots_lock);
1133
1134 r = kvm_get_dirty_log(kvm, log, &is_dirty);
1135 if (r)
1136 goto out;
1137
1138 /* If nothing is dirty, don't bother messing with page tables. */
1139 if (is_dirty) {
1140 memslot = id_to_memslot(kvm->memslots, log->slot);
1141
1142 ga = memslot->base_gfn << PAGE_SHIFT;
1143 ga_end = ga + (memslot->npages << PAGE_SHIFT);
1144
1145 kvm_for_each_vcpu(n, vcpu, kvm)
1146 kvmppc_mmu_pte_pflush(vcpu, ga, ga_end);
1147
1148 n = kvm_dirty_bitmap_bytes(memslot);
1149 memset(memslot->dirty_bitmap, 0, n);
1150 }
1151
1152 r = 0;
1153out:
1154 mutex_unlock(&kvm->slots_lock);
1155 return r;
1156}
1157
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001158int kvmppc_core_prepare_memory_region(struct kvm *kvm,
1159 struct kvm_userspace_memory_region *mem)
1160{
1161 return 0;
1162}
1163
1164void kvmppc_core_commit_memory_region(struct kvm *kvm,
1165 struct kvm_userspace_memory_region *mem)
1166{
1167}
1168
1169int kvmppc_core_init_vm(struct kvm *kvm)
1170{
1171 return 0;
1172}
1173
1174void kvmppc_core_destroy_vm(struct kvm *kvm)
1175{
1176}
1177
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001178static int kvmppc_book3s_init(void)
1179{
1180 int r;
1181
1182 r = kvm_init(NULL, sizeof(struct kvmppc_vcpu_book3s), 0,
1183 THIS_MODULE);
1184
1185 if (r)
1186 return r;
1187
1188 r = kvmppc_mmu_hpte_sysinit();
1189
1190 return r;
1191}
1192
1193static void kvmppc_book3s_exit(void)
1194{
1195 kvmppc_mmu_hpte_sysexit();
1196 kvm_exit();
1197}
1198
1199module_init(kvmppc_book3s_init);
1200module_exit(kvmppc_book3s_exit);