blob: d2deb9e4509556d356d5c033cc69fa560d08fdd9 [file] [log] [blame]
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001/*
2 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
3 *
4 * Authors:
5 * Alexander Graf <agraf@suse.de>
6 * Kevin Wolf <mail@kevin-wolf.de>
7 * Paul Mackerras <paulus@samba.org>
8 *
9 * Description:
10 * Functions relating to running KVM on Book 3S processors where
11 * we don't have access to hypervisor mode, and we run the guest
12 * in problem state (user mode).
13 *
14 * This file is derived from arch/powerpc/kvm/44x.c,
15 * by Hollis Blanchard <hollisb@us.ibm.com>.
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License, version 2, as
19 * published by the Free Software Foundation.
20 */
21
22#include <linux/kvm_host.h>
Paul Gortmaker93087942011-07-29 16:19:31 +100023#include <linux/export.h>
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000024#include <linux/err.h>
25#include <linux/slab.h>
26
27#include <asm/reg.h>
28#include <asm/cputable.h>
29#include <asm/cacheflush.h>
30#include <asm/tlbflush.h>
31#include <asm/uaccess.h>
32#include <asm/io.h>
33#include <asm/kvm_ppc.h>
34#include <asm/kvm_book3s.h>
35#include <asm/mmu_context.h>
Benjamin Herrenschmidt95327d02012-04-01 17:35:53 +000036#include <asm/switch_to.h>
Ian Munsiea413f472012-12-03 18:36:13 +000037#include <asm/firmware.h>
Paul Mackerrasdeb26c22013-02-04 18:11:44 +000038#include <asm/hvcall.h>
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000039#include <linux/gfp.h>
40#include <linux/sched.h>
41#include <linux/vmalloc.h>
42#include <linux/highmem.h>
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +053043#include <linux/module.h>
Alexander Graf398a76c2013-12-09 13:53:42 +010044#include <linux/miscdevice.h>
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000045
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053046#include "book3s.h"
Aneesh Kumar K.V72c12532013-10-07 22:17:57 +053047
48#define CREATE_TRACE_POINTS
49#include "trace_pr.h"
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000050
51/* #define EXIT_DEBUG */
52/* #define DEBUG_EXT */
53
54static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
55 ulong msr);
Alexander Graf616dff82014-04-29 16:48:44 +020056static void kvmppc_giveup_fac(struct kvm_vcpu *vcpu, ulong fac);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000057
58/* Some compatibility defines */
59#ifdef CONFIG_PPC_BOOK3S_32
60#define MSR_USER32 MSR_USER
61#define MSR_USER64 MSR_USER
62#define HW_PAGE_SIZE PAGE_SIZE
63#endif
64
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053065static void kvmppc_core_vcpu_load_pr(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000066{
67#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010068 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
69 memcpy(svcpu->slb, to_book3s(vcpu)->slb_shadow, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +010070 svcpu->slb_max = to_book3s(vcpu)->slb_shadow_max;
Alexander Graf40fdd8c2013-11-29 02:29:00 +010071 svcpu->in_use = 0;
Alexander Graf468a12c2011-12-09 14:44:13 +010072 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000073#endif
Paul Mackerrasa47d72f2012-09-20 19:35:51 +000074 vcpu->cpu = smp_processor_id();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000075#ifdef CONFIG_PPC_BOOK3S_32
Paul Mackerras3ff95502013-09-20 14:52:49 +100076 current->thread.kvm_shadow_vcpu = vcpu->arch.shadow_vcpu;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000077#endif
78}
79
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053080static void kvmppc_core_vcpu_put_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000081{
82#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf468a12c2011-12-09 14:44:13 +010083 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Alexander Graf40fdd8c2013-11-29 02:29:00 +010084 if (svcpu->in_use) {
85 kvmppc_copy_from_svcpu(vcpu, svcpu);
86 }
Alexander Graf468a12c2011-12-09 14:44:13 +010087 memcpy(to_book3s(vcpu)->slb_shadow, svcpu->slb, sizeof(svcpu->slb));
Alexander Graf468a12c2011-12-09 14:44:13 +010088 to_book3s(vcpu)->slb_shadow_max = svcpu->slb_max;
89 svcpu_put(svcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000090#endif
91
Paul Mackerras28c483b2012-11-04 18:16:46 +000092 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
Alexander Grafe14e7a12014-04-22 12:26:58 +020093 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
Paul Mackerrasa47d72f2012-09-20 19:35:51 +000094 vcpu->cpu = -1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +000095}
96
Paul Mackerrasa2d56022013-09-20 14:52:43 +100097/* Copy data needed by real-mode code from vcpu to shadow vcpu */
98void kvmppc_copy_to_svcpu(struct kvmppc_book3s_shadow_vcpu *svcpu,
99 struct kvm_vcpu *vcpu)
100{
101 svcpu->gpr[0] = vcpu->arch.gpr[0];
102 svcpu->gpr[1] = vcpu->arch.gpr[1];
103 svcpu->gpr[2] = vcpu->arch.gpr[2];
104 svcpu->gpr[3] = vcpu->arch.gpr[3];
105 svcpu->gpr[4] = vcpu->arch.gpr[4];
106 svcpu->gpr[5] = vcpu->arch.gpr[5];
107 svcpu->gpr[6] = vcpu->arch.gpr[6];
108 svcpu->gpr[7] = vcpu->arch.gpr[7];
109 svcpu->gpr[8] = vcpu->arch.gpr[8];
110 svcpu->gpr[9] = vcpu->arch.gpr[9];
111 svcpu->gpr[10] = vcpu->arch.gpr[10];
112 svcpu->gpr[11] = vcpu->arch.gpr[11];
113 svcpu->gpr[12] = vcpu->arch.gpr[12];
114 svcpu->gpr[13] = vcpu->arch.gpr[13];
115 svcpu->cr = vcpu->arch.cr;
116 svcpu->xer = vcpu->arch.xer;
117 svcpu->ctr = vcpu->arch.ctr;
118 svcpu->lr = vcpu->arch.lr;
119 svcpu->pc = vcpu->arch.pc;
Alexander Graf616dff82014-04-29 16:48:44 +0200120#ifdef CONFIG_PPC_BOOK3S_64
121 svcpu->shadow_fscr = vcpu->arch.shadow_fscr;
122#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530123 /*
124 * Now also save the current time base value. We use this
125 * to find the guest purr and spurr value.
126 */
127 vcpu->arch.entry_tb = get_tb();
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530128 vcpu->arch.entry_vtb = get_vtb();
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100129 svcpu->in_use = true;
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000130}
131
132/* Copy data touched by real-mode code from shadow vcpu back to vcpu */
133void kvmppc_copy_from_svcpu(struct kvm_vcpu *vcpu,
134 struct kvmppc_book3s_shadow_vcpu *svcpu)
135{
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100136 /*
137 * vcpu_put would just call us again because in_use hasn't
138 * been updated yet.
139 */
140 preempt_disable();
141
142 /*
143 * Maybe we were already preempted and synced the svcpu from
144 * our preempt notifiers. Don't bother touching this svcpu then.
145 */
146 if (!svcpu->in_use)
147 goto out;
148
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000149 vcpu->arch.gpr[0] = svcpu->gpr[0];
150 vcpu->arch.gpr[1] = svcpu->gpr[1];
151 vcpu->arch.gpr[2] = svcpu->gpr[2];
152 vcpu->arch.gpr[3] = svcpu->gpr[3];
153 vcpu->arch.gpr[4] = svcpu->gpr[4];
154 vcpu->arch.gpr[5] = svcpu->gpr[5];
155 vcpu->arch.gpr[6] = svcpu->gpr[6];
156 vcpu->arch.gpr[7] = svcpu->gpr[7];
157 vcpu->arch.gpr[8] = svcpu->gpr[8];
158 vcpu->arch.gpr[9] = svcpu->gpr[9];
159 vcpu->arch.gpr[10] = svcpu->gpr[10];
160 vcpu->arch.gpr[11] = svcpu->gpr[11];
161 vcpu->arch.gpr[12] = svcpu->gpr[12];
162 vcpu->arch.gpr[13] = svcpu->gpr[13];
163 vcpu->arch.cr = svcpu->cr;
164 vcpu->arch.xer = svcpu->xer;
165 vcpu->arch.ctr = svcpu->ctr;
166 vcpu->arch.lr = svcpu->lr;
167 vcpu->arch.pc = svcpu->pc;
168 vcpu->arch.shadow_srr1 = svcpu->shadow_srr1;
169 vcpu->arch.fault_dar = svcpu->fault_dar;
170 vcpu->arch.fault_dsisr = svcpu->fault_dsisr;
171 vcpu->arch.last_inst = svcpu->last_inst;
Alexander Graf616dff82014-04-29 16:48:44 +0200172#ifdef CONFIG_PPC_BOOK3S_64
173 vcpu->arch.shadow_fscr = svcpu->shadow_fscr;
174#endif
Aneesh Kumar K.V3cd60e32014-06-04 16:47:55 +0530175 /*
176 * Update purr and spurr using time base on exit.
177 */
178 vcpu->arch.purr += get_tb() - vcpu->arch.entry_tb;
179 vcpu->arch.spurr += get_tb() - vcpu->arch.entry_tb;
Aneesh Kumar K.V8f42ab22014-06-05 17:38:02 +0530180 vcpu->arch.vtb += get_vtb() - vcpu->arch.entry_vtb;
Alexander Graf40fdd8c2013-11-29 02:29:00 +0100181 svcpu->in_use = false;
182
183out:
184 preempt_enable();
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000185}
186
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530187static int kvmppc_core_check_requests_pr(struct kvm_vcpu *vcpu)
Alexander Graf03d25c52012-08-10 12:28:50 +0200188{
Alexander Graf7c973a22012-08-13 12:50:35 +0200189 int r = 1; /* Indicate we want to get back into the guest */
190
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200191 /* We misuse TLB_FLUSH to indicate that we want to clear
192 all shadow cache entries */
193 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu))
194 kvmppc_mmu_pte_flush(vcpu, 0, 0);
Alexander Graf7c973a22012-08-13 12:50:35 +0200195
196 return r;
Alexander Graf03d25c52012-08-10 12:28:50 +0200197}
198
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200199/************* MMU Notifiers *************/
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000200static void do_kvm_unmap_hva(struct kvm *kvm, unsigned long start,
201 unsigned long end)
202{
203 long i;
204 struct kvm_vcpu *vcpu;
205 struct kvm_memslots *slots;
206 struct kvm_memory_slot *memslot;
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200207
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000208 slots = kvm_memslots(kvm);
209 kvm_for_each_memslot(memslot, slots) {
210 unsigned long hva_start, hva_end;
211 gfn_t gfn, gfn_end;
212
213 hva_start = max(start, memslot->userspace_addr);
214 hva_end = min(end, memslot->userspace_addr +
215 (memslot->npages << PAGE_SHIFT));
216 if (hva_start >= hva_end)
217 continue;
218 /*
219 * {gfn(page) | page intersects with [hva_start, hva_end)} =
220 * {gfn, gfn+1, ..., gfn_end-1}.
221 */
222 gfn = hva_to_gfn_memslot(hva_start, memslot);
223 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
224 kvm_for_each_vcpu(i, vcpu, kvm)
225 kvmppc_mmu_pte_pflush(vcpu, gfn << PAGE_SHIFT,
226 gfn_end << PAGE_SHIFT);
227 }
228}
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200229
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530230static int kvm_unmap_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200231{
232 trace_kvm_unmap_hva(hva);
233
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000234 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200235
236 return 0;
237}
238
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530239static int kvm_unmap_hva_range_pr(struct kvm *kvm, unsigned long start,
240 unsigned long end)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200241{
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000242 do_kvm_unmap_hva(kvm, start, end);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200243
244 return 0;
245}
246
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530247static int kvm_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200248{
249 /* XXX could be more clever ;) */
250 return 0;
251}
252
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530253static int kvm_test_age_hva_pr(struct kvm *kvm, unsigned long hva)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200254{
255 /* XXX could be more clever ;) */
256 return 0;
257}
258
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530259static void kvm_set_spte_hva_pr(struct kvm *kvm, unsigned long hva, pte_t pte)
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200260{
261 /* The page will get remapped properly on its next fault */
Paul Mackerras491d6ec2013-09-20 14:52:54 +1000262 do_kvm_unmap_hva(kvm, hva, hva + PAGE_SIZE);
Alexander Graf9b0cb3c2012-08-10 13:23:55 +0200263}
264
265/*****************************************/
266
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000267static void kvmppc_recalc_shadow_msr(struct kvm_vcpu *vcpu)
268{
Alexander Graf5deb8e72014-04-24 13:46:24 +0200269 ulong guest_msr = kvmppc_get_msr(vcpu);
270 ulong smsr = guest_msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000271
272 /* Guest MSR values */
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +0530273 smsr &= MSR_FE0 | MSR_FE1 | MSR_SF | MSR_SE | MSR_BE | MSR_LE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000274 /* Process MSR values */
275 smsr |= MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_PR | MSR_EE;
276 /* External providers the guest reserved */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200277 smsr |= (guest_msr & vcpu->arch.guest_owned_ext);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000278 /* 64-bit Process MSR values */
279#ifdef CONFIG_PPC_BOOK3S_64
280 smsr |= MSR_ISF | MSR_HV;
281#endif
282 vcpu->arch.shadow_msr = smsr;
283}
284
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530285static void kvmppc_set_msr_pr(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000286{
Alexander Graf5deb8e72014-04-24 13:46:24 +0200287 ulong old_msr = kvmppc_get_msr(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000288
289#ifdef EXIT_DEBUG
290 printk(KERN_INFO "KVM: Set MSR to 0x%llx\n", msr);
291#endif
292
293 msr &= to_book3s(vcpu)->msr_mask;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200294 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000295 kvmppc_recalc_shadow_msr(vcpu);
296
297 if (msr & MSR_POW) {
298 if (!vcpu->arch.pending_exceptions) {
299 kvm_vcpu_block(vcpu);
Alexander Graf966cd0f2012-03-14 16:55:08 +0100300 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000301 vcpu->stat.halt_wakeup++;
302
303 /* Unset POW bit after we woke up */
304 msr &= ~MSR_POW;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200305 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000306 }
307 }
308
Alexander Graf5deb8e72014-04-24 13:46:24 +0200309 if ((kvmppc_get_msr(vcpu) & (MSR_PR|MSR_IR|MSR_DR)) !=
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000310 (old_msr & (MSR_PR|MSR_IR|MSR_DR))) {
311 kvmppc_mmu_flush_segments(vcpu);
312 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
313
314 /* Preload magic page segment when in kernel mode */
315 if (!(msr & MSR_PR) && vcpu->arch.magic_page_pa) {
316 struct kvm_vcpu_arch *a = &vcpu->arch;
317
318 if (msr & MSR_DR)
319 kvmppc_mmu_map_segment(vcpu, a->magic_page_ea);
320 else
321 kvmppc_mmu_map_segment(vcpu, a->magic_page_pa);
322 }
323 }
324
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000325 /*
326 * When switching from 32 to 64-bit, we may have a stale 32-bit
327 * magic page around, we need to flush it. Typically 32-bit magic
328 * page will be instanciated when calling into RTAS. Note: We
329 * assume that such transition only happens while in kernel mode,
330 * ie, we never transition from user 32-bit to kernel 64-bit with
331 * a 32-bit magic page around.
332 */
333 if (vcpu->arch.magic_page_pa &&
334 !(old_msr & MSR_PR) && !(old_msr & MSR_SF) && (msr & MSR_SF)) {
335 /* going from RTAS to normal kernel code */
336 kvmppc_mmu_pte_flush(vcpu, (uint32_t)vcpu->arch.magic_page_pa,
337 ~0xFFFUL);
338 }
339
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000340 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200341 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000342 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
343}
344
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530345void kvmppc_set_pvr_pr(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000346{
347 u32 host_pvr;
348
349 vcpu->arch.hflags &= ~BOOK3S_HFLAG_SLB;
350 vcpu->arch.pvr = pvr;
351#ifdef CONFIG_PPC_BOOK3S_64
352 if ((pvr >= 0x330000) && (pvr < 0x70330000)) {
353 kvmppc_mmu_book3s_64_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200354 if (!to_book3s(vcpu)->hior_explicit)
355 to_book3s(vcpu)->hior = 0xfff00000;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000356 to_book3s(vcpu)->msr_mask = 0xffffffffffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200357 vcpu->arch.cpu_type = KVM_CPU_3S_64;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000358 } else
359#endif
360 {
361 kvmppc_mmu_book3s_32_init(vcpu);
Alexander Graf1022fc32011-09-14 21:45:23 +0200362 if (!to_book3s(vcpu)->hior_explicit)
363 to_book3s(vcpu)->hior = 0;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000364 to_book3s(vcpu)->msr_mask = 0xffffffffULL;
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200365 vcpu->arch.cpu_type = KVM_CPU_3S_32;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000366 }
367
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200368 kvmppc_sanity_check(vcpu);
369
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000370 /* If we are in hypervisor level on 970, we can tell the CPU to
371 * treat DCBZ as 32 bytes store */
372 vcpu->arch.hflags &= ~BOOK3S_HFLAG_DCBZ32;
373 if (vcpu->arch.mmu.is_dcbz32(vcpu) && (mfmsr() & MSR_HV) &&
374 !strcmp(cur_cpu_spec->platform, "ppc970"))
375 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
376
377 /* Cell performs badly if MSR_FEx are set. So let's hope nobody
378 really needs them in a VM on Cell and force disable them. */
379 if (!strcmp(cur_cpu_spec->platform, "ppc-cell-be"))
380 to_book3s(vcpu)->msr_mask &= ~(MSR_FE0 | MSR_FE1);
381
Paul Mackerrasa4a0f252013-09-20 14:52:44 +1000382 /*
383 * If they're asking for POWER6 or later, set the flag
384 * indicating that we can do multiple large page sizes
385 * and 1TB segments.
386 * Also set the flag that indicates that tlbie has the large
387 * page bit in the RB operand instead of the instruction.
388 */
389 switch (PVR_VER(pvr)) {
390 case PVR_POWER6:
391 case PVR_POWER7:
392 case PVR_POWER7p:
393 case PVR_POWER8:
394 vcpu->arch.hflags |= BOOK3S_HFLAG_MULTI_PGSIZE |
395 BOOK3S_HFLAG_NEW_TLBIE;
396 break;
397 }
398
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000399#ifdef CONFIG_PPC_BOOK3S_32
400 /* 32 bit Book3S always has 32 byte dcbz */
401 vcpu->arch.hflags |= BOOK3S_HFLAG_DCBZ32;
402#endif
403
404 /* On some CPUs we can execute paired single operations natively */
405 asm ( "mfpvr %0" : "=r"(host_pvr));
406 switch (host_pvr) {
407 case 0x00080200: /* lonestar 2.0 */
408 case 0x00088202: /* lonestar 2.2 */
409 case 0x70000100: /* gekko 1.0 */
410 case 0x00080100: /* gekko 2.0 */
411 case 0x00083203: /* gekko 2.3a */
412 case 0x00083213: /* gekko 2.3b */
413 case 0x00083204: /* gekko 2.4 */
414 case 0x00083214: /* gekko 2.4e (8SE) - retail HW2 */
415 case 0x00087200: /* broadway */
416 vcpu->arch.hflags |= BOOK3S_HFLAG_NATIVE_PS;
417 /* Enable HID2.PSE - in case we need it later */
418 mtspr(SPRN_HID2_GEKKO, mfspr(SPRN_HID2_GEKKO) | (1 << 29));
419 }
420}
421
422/* Book3s_32 CPUs always have 32 bytes cache line size, which Linux assumes. To
423 * make Book3s_32 Linux work on Book3s_64, we have to make sure we trap dcbz to
424 * emulate 32 bytes dcbz length.
425 *
426 * The Book3s_64 inventors also realized this case and implemented a special bit
427 * in the HID5 register, which is a hypervisor ressource. Thus we can't use it.
428 *
429 * My approach here is to patch the dcbz instruction on executing pages.
430 */
431static void kvmppc_patch_dcbz(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte)
432{
433 struct page *hpage;
434 u64 hpage_offset;
435 u32 *page;
436 int i;
437
438 hpage = gfn_to_page(vcpu->kvm, pte->raddr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800439 if (is_error_page(hpage))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000440 return;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000441
442 hpage_offset = pte->raddr & ~PAGE_MASK;
443 hpage_offset &= ~0xFFFULL;
444 hpage_offset /= 4;
445
446 get_page(hpage);
Cong Wang2480b202011-11-25 23:14:16 +0800447 page = kmap_atomic(hpage);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000448
449 /* patch dcbz into reserved instruction, so we trap */
450 for (i=hpage_offset; i < hpage_offset + (HW_PAGE_SIZE / 4); i++)
Alexander Grafcd087ee2014-04-24 13:52:01 +0200451 if ((be32_to_cpu(page[i]) & 0xff0007ff) == INS_DCBZ)
452 page[i] &= cpu_to_be32(0xfffffff7);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000453
Cong Wang2480b202011-11-25 23:14:16 +0800454 kunmap_atomic(page);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000455 put_page(hpage);
456}
457
458static int kvmppc_visible_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
459{
460 ulong mp_pa = vcpu->arch.magic_page_pa;
461
Alexander Graf5deb8e72014-04-24 13:46:24 +0200462 if (!(kvmppc_get_msr(vcpu) & MSR_SF))
Benjamin Herrenschmidtbbcc9c02012-03-13 21:52:44 +0000463 mp_pa = (uint32_t)mp_pa;
464
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000465 if (unlikely(mp_pa) &&
466 unlikely((mp_pa & KVM_PAM) >> PAGE_SHIFT == gfn)) {
467 return 1;
468 }
469
470 return kvm_is_visible_gfn(vcpu->kvm, gfn);
471}
472
473int kvmppc_handle_pagefault(struct kvm_run *run, struct kvm_vcpu *vcpu,
474 ulong eaddr, int vec)
475{
476 bool data = (vec == BOOK3S_INTERRUPT_DATA_STORAGE);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000477 bool iswrite = false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000478 int r = RESUME_GUEST;
479 int relocated;
480 int page_found = 0;
481 struct kvmppc_pte pte;
482 bool is_mmio = false;
Alexander Graf5deb8e72014-04-24 13:46:24 +0200483 bool dr = (kvmppc_get_msr(vcpu) & MSR_DR) ? true : false;
484 bool ir = (kvmppc_get_msr(vcpu) & MSR_IR) ? true : false;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000485 u64 vsid;
486
487 relocated = data ? dr : ir;
Paul Mackerras93b159b2013-09-20 14:52:51 +1000488 if (data && (vcpu->arch.fault_dsisr & DSISR_ISSTORE))
489 iswrite = true;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000490
491 /* Resolve real address if translation turned on */
492 if (relocated) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000493 page_found = vcpu->arch.mmu.xlate(vcpu, eaddr, &pte, data, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000494 } else {
495 pte.may_execute = true;
496 pte.may_read = true;
497 pte.may_write = true;
498 pte.raddr = eaddr & KVM_PAM;
499 pte.eaddr = eaddr;
500 pte.vpage = eaddr >> 12;
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000501 pte.page_size = MMU_PAGE_64K;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000502 }
503
Alexander Graf5deb8e72014-04-24 13:46:24 +0200504 switch (kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000505 case 0:
506 pte.vpage |= ((u64)VSID_REAL << (SID_SHIFT - 12));
507 break;
508 case MSR_DR:
509 case MSR_IR:
510 vcpu->arch.mmu.esid_to_vsid(vcpu, eaddr >> SID_SHIFT, &vsid);
511
Alexander Graf5deb8e72014-04-24 13:46:24 +0200512 if ((kvmppc_get_msr(vcpu) & (MSR_DR|MSR_IR)) == MSR_DR)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000513 pte.vpage |= ((u64)VSID_REAL_DR << (SID_SHIFT - 12));
514 else
515 pte.vpage |= ((u64)VSID_REAL_IR << (SID_SHIFT - 12));
516 pte.vpage |= vsid;
517
518 if (vsid == -1)
519 page_found = -EINVAL;
520 break;
521 }
522
523 if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
524 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
525 /*
526 * If we do the dcbz hack, we have to NX on every execution,
527 * so we can patch the executing code. This renders our guest
528 * NX-less.
529 */
530 pte.may_execute = !data;
531 }
532
533 if (page_found == -ENOENT) {
534 /* Page not found in guest PTE entries */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200535 u64 ssrr1 = vcpu->arch.shadow_srr1;
536 u64 msr = kvmppc_get_msr(vcpu);
537 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
538 kvmppc_set_dsisr(vcpu, vcpu->arch.fault_dsisr);
539 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000540 kvmppc_book3s_queue_irqprio(vcpu, vec);
541 } else if (page_found == -EPERM) {
542 /* Storage protection */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200543 u32 dsisr = vcpu->arch.fault_dsisr;
544 u64 ssrr1 = vcpu->arch.shadow_srr1;
545 u64 msr = kvmppc_get_msr(vcpu);
546 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
547 dsisr = (dsisr & ~DSISR_NOHPTE) | DSISR_PROTFAULT;
548 kvmppc_set_dsisr(vcpu, dsisr);
549 kvmppc_set_msr_fast(vcpu, msr | (ssrr1 & 0xf8000000ULL));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000550 kvmppc_book3s_queue_irqprio(vcpu, vec);
551 } else if (page_found == -EINVAL) {
552 /* Page not found in guest SLB */
Alexander Graf5deb8e72014-04-24 13:46:24 +0200553 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000554 kvmppc_book3s_queue_irqprio(vcpu, vec + 0x80);
555 } else if (!is_mmio &&
556 kvmppc_visible_gfn(vcpu, pte.raddr >> PAGE_SHIFT)) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000557 if (data && !(vcpu->arch.fault_dsisr & DSISR_NOHPTE)) {
558 /*
559 * There is already a host HPTE there, presumably
560 * a read-only one for a page the guest thinks
561 * is writable, so get rid of it first.
562 */
563 kvmppc_mmu_unmap_page(vcpu, &pte);
564 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000565 /* The guest's PTE is not mapped yet. Map on the host */
Paul Mackerras93b159b2013-09-20 14:52:51 +1000566 kvmppc_mmu_map_page(vcpu, &pte, iswrite);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000567 if (data)
568 vcpu->stat.sp_storage++;
569 else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
Paul Mackerras93b159b2013-09-20 14:52:51 +1000570 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32)))
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000571 kvmppc_patch_dcbz(vcpu, &pte);
572 } else {
573 /* MMIO */
574 vcpu->stat.mmio_exits++;
575 vcpu->arch.paddr_accessed = pte.raddr;
Alexander Graf6020c0f2012-03-12 02:26:30 +0100576 vcpu->arch.vaddr_accessed = pte.eaddr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000577 r = kvmppc_emulate_mmio(run, vcpu);
578 if ( r == RESUME_HOST_NV )
579 r = RESUME_HOST;
580 }
581
582 return r;
583}
584
585static inline int get_fpr_index(int i)
586{
Paul Mackerras28c483b2012-11-04 18:16:46 +0000587 return i * TS_FPRWIDTH;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000588}
589
590/* Give up external provider (FPU, Altivec, VSX) */
591void kvmppc_giveup_ext(struct kvm_vcpu *vcpu, ulong msr)
592{
593 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000594
Paul Mackerras28c483b2012-11-04 18:16:46 +0000595 /*
596 * VSX instructions can access FP and vector registers, so if
597 * we are giving up VSX, make sure we give up FP and VMX as well.
598 */
599 if (msr & MSR_VSX)
600 msr |= MSR_FP | MSR_VEC;
601
602 msr &= vcpu->arch.guest_owned_ext;
603 if (!msr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000604 return;
605
606#ifdef DEBUG_EXT
607 printk(KERN_INFO "Giving up ext 0x%lx\n", msr);
608#endif
609
Paul Mackerras28c483b2012-11-04 18:16:46 +0000610 if (msr & MSR_FP) {
611 /*
612 * Note that on CPUs with VSX, giveup_fpu stores
613 * both the traditional FP registers and the added VSX
Paul Mackerrasde79f7b2013-09-10 20:20:42 +1000614 * registers into thread.fp_state.fpr[].
Paul Mackerras28c483b2012-11-04 18:16:46 +0000615 */
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100616 if (t->regs->msr & MSR_FP)
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000617 giveup_fpu(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100618 t->fp_save_area = NULL;
Paul Mackerras28c483b2012-11-04 18:16:46 +0000619 }
620
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000621#ifdef CONFIG_ALTIVEC
Paul Mackerras28c483b2012-11-04 18:16:46 +0000622 if (msr & MSR_VEC) {
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000623 if (current->thread.regs->msr & MSR_VEC)
624 giveup_altivec(current);
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100625 t->vr_save_area = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000626 }
Paul Mackerras28c483b2012-11-04 18:16:46 +0000627#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000628
Paul Mackerras28c483b2012-11-04 18:16:46 +0000629 vcpu->arch.guest_owned_ext &= ~(msr | MSR_VSX);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000630 kvmppc_recalc_shadow_msr(vcpu);
631}
632
Alexander Graf616dff82014-04-29 16:48:44 +0200633/* Give up facility (TAR / EBB / DSCR) */
634static void kvmppc_giveup_fac(struct kvm_vcpu *vcpu, ulong fac)
635{
636#ifdef CONFIG_PPC_BOOK3S_64
637 if (!(vcpu->arch.shadow_fscr & (1ULL << fac))) {
638 /* Facility not available to the guest, ignore giveup request*/
639 return;
640 }
Alexander Grafe14e7a12014-04-22 12:26:58 +0200641
642 switch (fac) {
643 case FSCR_TAR_LG:
644 vcpu->arch.tar = mfspr(SPRN_TAR);
645 mtspr(SPRN_TAR, current->thread.tar);
646 vcpu->arch.shadow_fscr &= ~FSCR_TAR;
647 break;
648 }
Alexander Graf616dff82014-04-29 16:48:44 +0200649#endif
650}
651
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000652static int kvmppc_read_inst(struct kvm_vcpu *vcpu)
653{
654 ulong srr0 = kvmppc_get_pc(vcpu);
655 u32 last_inst = kvmppc_get_last_inst(vcpu);
656 int ret;
657
658 ret = kvmppc_ld(vcpu, &srr0, sizeof(u32), &last_inst, false);
659 if (ret == -ENOENT) {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200660 ulong msr = kvmppc_get_msr(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000661
662 msr = kvmppc_set_field(msr, 33, 33, 1);
663 msr = kvmppc_set_field(msr, 34, 36, 0);
Alexander Graf5deb8e72014-04-24 13:46:24 +0200664 msr = kvmppc_set_field(msr, 42, 47, 0);
665 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000666 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_INST_STORAGE);
667 return EMULATE_AGAIN;
668 }
669
670 return EMULATE_DONE;
671}
672
673static int kvmppc_check_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr)
674{
675
676 /* Need to do paired single emulation? */
677 if (!(vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE))
678 return EMULATE_DONE;
679
680 /* Read out the instruction */
681 if (kvmppc_read_inst(vcpu) == EMULATE_DONE)
682 /* Need to emulate */
683 return EMULATE_FAIL;
684
685 return EMULATE_AGAIN;
686}
687
688/* Handle external providers (FPU, Altivec, VSX) */
689static int kvmppc_handle_ext(struct kvm_vcpu *vcpu, unsigned int exit_nr,
690 ulong msr)
691{
692 struct thread_struct *t = &current->thread;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000693
694 /* When we have paired singles, we emulate in software */
695 if (vcpu->arch.hflags & BOOK3S_HFLAG_PAIRED_SINGLE)
696 return RESUME_GUEST;
697
Alexander Graf5deb8e72014-04-24 13:46:24 +0200698 if (!(kvmppc_get_msr(vcpu) & msr)) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000699 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
700 return RESUME_GUEST;
701 }
702
Paul Mackerras28c483b2012-11-04 18:16:46 +0000703 if (msr == MSR_VSX) {
704 /* No VSX? Give an illegal instruction interrupt */
705#ifdef CONFIG_VSX
706 if (!cpu_has_feature(CPU_FTR_VSX))
707#endif
708 {
709 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
710 return RESUME_GUEST;
711 }
712
713 /*
714 * We have to load up all the FP and VMX registers before
715 * we can let the guest use VSX instructions.
716 */
717 msr = MSR_FP | MSR_VEC | MSR_VSX;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000718 }
719
Paul Mackerras28c483b2012-11-04 18:16:46 +0000720 /* See if we already own all the ext(s) needed */
721 msr &= ~vcpu->arch.guest_owned_ext;
722 if (!msr)
723 return RESUME_GUEST;
724
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000725#ifdef DEBUG_EXT
726 printk(KERN_INFO "Loading up ext 0x%lx\n", msr);
727#endif
728
Paul Mackerras28c483b2012-11-04 18:16:46 +0000729 if (msr & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530730 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100731 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100732 load_fp_state(&vcpu->arch.fp);
733 t->fp_save_area = &vcpu->arch.fp;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530734 preempt_enable();
Paul Mackerras28c483b2012-11-04 18:16:46 +0000735 }
736
737 if (msr & MSR_VEC) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000738#ifdef CONFIG_ALTIVEC
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530739 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100740 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100741 load_vr_state(&vcpu->arch.vr);
742 t->vr_save_area = &vcpu->arch.vr;
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530743 preempt_enable();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000744#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000745 }
746
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100747 t->regs->msr |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000748 vcpu->arch.guest_owned_ext |= msr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000749 kvmppc_recalc_shadow_msr(vcpu);
750
751 return RESUME_GUEST;
752}
753
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000754/*
755 * Kernel code using FP or VMX could have flushed guest state to
756 * the thread_struct; if so, get it back now.
757 */
758static void kvmppc_handle_lost_ext(struct kvm_vcpu *vcpu)
759{
760 unsigned long lost_ext;
761
762 lost_ext = vcpu->arch.guest_owned_ext & ~current->thread.regs->msr;
763 if (!lost_ext)
764 return;
765
Paul Mackerras09548fd2013-10-15 20:43:01 +1100766 if (lost_ext & MSR_FP) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530767 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100768 enable_kernel_fp();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100769 load_fp_state(&vcpu->arch.fp);
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530770 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100771 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000772#ifdef CONFIG_ALTIVEC
Paul Mackerras09548fd2013-10-15 20:43:01 +1100773 if (lost_ext & MSR_VEC) {
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530774 preempt_disable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100775 enable_kernel_altivec();
Paul Mackerras99dae3b2013-10-15 20:43:03 +1100776 load_vr_state(&vcpu->arch.vr);
Aneesh Kumar K.V7562c4f2014-05-04 22:56:08 +0530777 preempt_enable();
Paul Mackerras09548fd2013-10-15 20:43:01 +1100778 }
Paul Mackerrasf2481772013-09-20 14:52:42 +1000779#endif
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +1000780 current->thread.regs->msr |= lost_ext;
781}
782
Alexander Graf616dff82014-04-29 16:48:44 +0200783#ifdef CONFIG_PPC_BOOK3S_64
784
785static void kvmppc_trigger_fac_interrupt(struct kvm_vcpu *vcpu, ulong fac)
786{
787 /* Inject the Interrupt Cause field and trigger a guest interrupt */
788 vcpu->arch.fscr &= ~(0xffULL << 56);
789 vcpu->arch.fscr |= (fac << 56);
790 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_FAC_UNAVAIL);
791}
792
793static void kvmppc_emulate_fac(struct kvm_vcpu *vcpu, ulong fac)
794{
795 enum emulation_result er = EMULATE_FAIL;
796
797 if (!(kvmppc_get_msr(vcpu) & MSR_PR))
798 er = kvmppc_emulate_instruction(vcpu->run, vcpu);
799
800 if ((er != EMULATE_DONE) && (er != EMULATE_AGAIN)) {
801 /* Couldn't emulate, trigger interrupt in guest */
802 kvmppc_trigger_fac_interrupt(vcpu, fac);
803 }
804}
805
806/* Enable facilities (TAR, EBB, DSCR) for the guest */
807static int kvmppc_handle_fac(struct kvm_vcpu *vcpu, ulong fac)
808{
Alexander Graf9916d572014-04-29 17:54:40 +0200809 bool guest_fac_enabled;
Alexander Graf616dff82014-04-29 16:48:44 +0200810 BUG_ON(!cpu_has_feature(CPU_FTR_ARCH_207S));
811
Alexander Graf9916d572014-04-29 17:54:40 +0200812 /*
813 * Not every facility is enabled by FSCR bits, check whether the
814 * guest has this facility enabled at all.
815 */
816 switch (fac) {
817 case FSCR_TAR_LG:
818 case FSCR_EBB_LG:
819 guest_fac_enabled = (vcpu->arch.fscr & (1ULL << fac));
820 break;
821 case FSCR_TM_LG:
822 guest_fac_enabled = kvmppc_get_msr(vcpu) & MSR_TM;
823 break;
824 default:
825 guest_fac_enabled = false;
826 break;
827 }
828
829 if (!guest_fac_enabled) {
Alexander Graf616dff82014-04-29 16:48:44 +0200830 /* Facility not enabled by the guest */
831 kvmppc_trigger_fac_interrupt(vcpu, fac);
832 return RESUME_GUEST;
833 }
834
835 switch (fac) {
Alexander Grafe14e7a12014-04-22 12:26:58 +0200836 case FSCR_TAR_LG:
837 /* TAR switching isn't lazy in Linux yet */
838 current->thread.tar = mfspr(SPRN_TAR);
839 mtspr(SPRN_TAR, vcpu->arch.tar);
840 vcpu->arch.shadow_fscr |= FSCR_TAR;
841 break;
Alexander Graf616dff82014-04-29 16:48:44 +0200842 default:
843 kvmppc_emulate_fac(vcpu, fac);
844 break;
845 }
846
847 return RESUME_GUEST;
848}
849#endif
850
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530851int kvmppc_handle_exit_pr(struct kvm_run *run, struct kvm_vcpu *vcpu,
852 unsigned int exit_nr)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000853{
854 int r = RESUME_HOST;
Alexander Graf7ee78852012-08-13 12:44:41 +0200855 int s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000856
857 vcpu->stat.sum_exits++;
858
859 run->exit_reason = KVM_EXIT_UNKNOWN;
860 run->ready_for_interrupt_injection = 1;
861
Alexander Grafbd2be682012-08-13 01:04:19 +0200862 /* We get here with MSR.EE=1 */
Alexander Graf3b1d9d72012-04-30 10:56:12 +0200863
Alexander Graf97c95052012-08-02 15:10:00 +0200864 trace_kvm_exit(exit_nr, vcpu);
Alexander Graf706fb732012-08-12 11:29:09 +0200865 kvm_guest_exit();
Alexander Grafc63ddcb2012-08-12 11:27:49 +0200866
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000867 switch (exit_nr) {
868 case BOOK3S_INTERRUPT_INST_STORAGE:
Alexander Graf468a12c2011-12-09 14:44:13 +0100869 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000870 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000871 vcpu->stat.pf_instruc++;
872
873#ifdef CONFIG_PPC_BOOK3S_32
874 /* We set segments as unused segments when invalidating them. So
875 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000876 {
877 struct kvmppc_book3s_shadow_vcpu *svcpu;
878 u32 sr;
879
880 svcpu = svcpu_get(vcpu);
881 sr = svcpu->sr[kvmppc_get_pc(vcpu) >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +0100882 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000883 if (sr == SR_INVALID) {
884 kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu));
885 r = RESUME_GUEST;
886 break;
887 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000888 }
889#endif
890
891 /* only care about PTEG not found errors, but leave NX alone */
Alexander Graf468a12c2011-12-09 14:44:13 +0100892 if (shadow_srr1 & 0x40000000) {
Paul Mackerras93b159b2013-09-20 14:52:51 +1000893 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000894 r = kvmppc_handle_pagefault(run, vcpu, kvmppc_get_pc(vcpu), exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000895 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000896 vcpu->stat.sp_instruc++;
897 } else if (vcpu->arch.mmu.is_dcbz32(vcpu) &&
898 (!(vcpu->arch.hflags & BOOK3S_HFLAG_DCBZ32))) {
899 /*
900 * XXX If we do the dcbz hack we use the NX bit to flush&patch the page,
901 * so we can't use the NX bit inside the guest. Let's cross our fingers,
902 * that no guest that needs the dcbz hack does NX.
903 */
904 kvmppc_mmu_pte_flush(vcpu, kvmppc_get_pc(vcpu), ~0xFFFUL);
905 r = RESUME_GUEST;
906 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200907 u64 msr = kvmppc_get_msr(vcpu);
908 msr |= shadow_srr1 & 0x58000000;
909 kvmppc_set_msr_fast(vcpu, msr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000910 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
911 r = RESUME_GUEST;
912 }
913 break;
Alexander Graf468a12c2011-12-09 14:44:13 +0100914 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000915 case BOOK3S_INTERRUPT_DATA_STORAGE:
916 {
917 ulong dar = kvmppc_get_fault_dar(vcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000918 u32 fault_dsisr = vcpu->arch.fault_dsisr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000919 vcpu->stat.pf_storage++;
920
921#ifdef CONFIG_PPC_BOOK3S_32
922 /* We set segments as unused segments when invalidating them. So
923 * treat the respective fault as segment fault. */
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000924 {
925 struct kvmppc_book3s_shadow_vcpu *svcpu;
926 u32 sr;
927
928 svcpu = svcpu_get(vcpu);
929 sr = svcpu->sr[dar >> SID_SHIFT];
Alexander Graf468a12c2011-12-09 14:44:13 +0100930 svcpu_put(svcpu);
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000931 if (sr == SR_INVALID) {
932 kvmppc_mmu_map_segment(vcpu, dar);
933 r = RESUME_GUEST;
934 break;
935 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000936 }
937#endif
938
Paul Mackerras93b159b2013-09-20 14:52:51 +1000939 /*
940 * We need to handle missing shadow PTEs, and
941 * protection faults due to us mapping a page read-only
942 * when the guest thinks it is writable.
943 */
944 if (fault_dsisr & (DSISR_NOHPTE | DSISR_PROTFAULT)) {
945 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000946 r = kvmppc_handle_pagefault(run, vcpu, dar, exit_nr);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000947 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000948 } else {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200949 kvmppc_set_dar(vcpu, dar);
950 kvmppc_set_dsisr(vcpu, fault_dsisr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000951 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
952 r = RESUME_GUEST;
953 }
954 break;
955 }
956 case BOOK3S_INTERRUPT_DATA_SEGMENT:
957 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_fault_dar(vcpu)) < 0) {
Alexander Graf5deb8e72014-04-24 13:46:24 +0200958 kvmppc_set_dar(vcpu, kvmppc_get_fault_dar(vcpu));
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000959 kvmppc_book3s_queue_irqprio(vcpu,
960 BOOK3S_INTERRUPT_DATA_SEGMENT);
961 }
962 r = RESUME_GUEST;
963 break;
964 case BOOK3S_INTERRUPT_INST_SEGMENT:
965 if (kvmppc_mmu_map_segment(vcpu, kvmppc_get_pc(vcpu)) < 0) {
966 kvmppc_book3s_queue_irqprio(vcpu,
967 BOOK3S_INTERRUPT_INST_SEGMENT);
968 }
969 r = RESUME_GUEST;
970 break;
971 /* We're good on these - the host merely wanted to get our attention */
972 case BOOK3S_INTERRUPT_DECREMENTER:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100973 case BOOK3S_INTERRUPT_HV_DECREMENTER:
Paul Mackerras40688902014-01-08 21:25:36 +1100974 case BOOK3S_INTERRUPT_DOORBELL:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000975 vcpu->stat.dec_exits++;
976 r = RESUME_GUEST;
977 break;
978 case BOOK3S_INTERRUPT_EXTERNAL:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100979 case BOOK3S_INTERRUPT_EXTERNAL_LEVEL:
980 case BOOK3S_INTERRUPT_EXTERNAL_HV:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000981 vcpu->stat.ext_intr_exits++;
982 r = RESUME_GUEST;
983 break;
984 case BOOK3S_INTERRUPT_PERFMON:
985 r = RESUME_GUEST;
986 break;
987 case BOOK3S_INTERRUPT_PROGRAM:
Alexander Graf4f225ae2012-03-13 23:05:16 +0100988 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000989 {
990 enum emulation_result er;
991 ulong flags;
992
993program_interrupt:
Paul Mackerrasa2d56022013-09-20 14:52:43 +1000994 flags = vcpu->arch.shadow_srr1 & 0x1f0000ull;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000995
Alexander Graf5deb8e72014-04-24 13:46:24 +0200996 if (kvmppc_get_msr(vcpu) & MSR_PR) {
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +0000997#ifdef EXIT_DEBUG
998 printk(KERN_INFO "Userspace triggered 0x700 exception at 0x%lx (0x%x)\n", kvmppc_get_pc(vcpu), kvmppc_get_last_inst(vcpu));
999#endif
1000 if ((kvmppc_get_last_inst(vcpu) & 0xff0007ff) !=
1001 (INS_DCBZ & 0xfffffff7)) {
1002 kvmppc_core_queue_program(vcpu, flags);
1003 r = RESUME_GUEST;
1004 break;
1005 }
1006 }
1007
1008 vcpu->stat.emulated_inst_exits++;
1009 er = kvmppc_emulate_instruction(run, vcpu);
1010 switch (er) {
1011 case EMULATE_DONE:
1012 r = RESUME_GUEST_NV;
1013 break;
1014 case EMULATE_AGAIN:
1015 r = RESUME_GUEST;
1016 break;
1017 case EMULATE_FAIL:
1018 printk(KERN_CRIT "%s: emulation at %lx failed (%08x)\n",
1019 __func__, kvmppc_get_pc(vcpu), kvmppc_get_last_inst(vcpu));
1020 kvmppc_core_queue_program(vcpu, flags);
1021 r = RESUME_GUEST;
1022 break;
1023 case EMULATE_DO_MMIO:
1024 run->exit_reason = KVM_EXIT_MMIO;
1025 r = RESUME_HOST_NV;
1026 break;
Bharat Bhushanc402a3f2013-04-08 00:32:13 +00001027 case EMULATE_EXIT_USER:
Alexander Graf50c7bb82012-12-14 23:42:05 +01001028 r = RESUME_HOST_NV;
1029 break;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001030 default:
1031 BUG();
1032 }
1033 break;
1034 }
1035 case BOOK3S_INTERRUPT_SYSCALL:
Alexander Grafa668f2b2011-08-08 17:26:24 +02001036 if (vcpu->arch.papr_enabled &&
Paul Mackerras8b23de22013-08-06 14:15:19 +10001037 (kvmppc_get_last_sc(vcpu) == 0x44000022) &&
Alexander Graf5deb8e72014-04-24 13:46:24 +02001038 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
Alexander Grafa668f2b2011-08-08 17:26:24 +02001039 /* SC 1 papr hypercalls */
1040 ulong cmd = kvmppc_get_gpr(vcpu, 3);
1041 int i;
1042
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301043#ifdef CONFIG_PPC_BOOK3S_64
Alexander Grafa668f2b2011-08-08 17:26:24 +02001044 if (kvmppc_h_pr(vcpu, cmd) == EMULATE_DONE) {
1045 r = RESUME_GUEST;
1046 break;
1047 }
Andreas Schwab96f38d72011-11-08 07:17:39 +00001048#endif
Alexander Grafa668f2b2011-08-08 17:26:24 +02001049
1050 run->papr_hcall.nr = cmd;
1051 for (i = 0; i < 9; ++i) {
1052 ulong gpr = kvmppc_get_gpr(vcpu, 4 + i);
1053 run->papr_hcall.args[i] = gpr;
1054 }
1055 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1056 vcpu->arch.hcall_needed = 1;
1057 r = RESUME_HOST;
1058 } else if (vcpu->arch.osi_enabled &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001059 (((u32)kvmppc_get_gpr(vcpu, 3)) == OSI_SC_MAGIC_R3) &&
1060 (((u32)kvmppc_get_gpr(vcpu, 4)) == OSI_SC_MAGIC_R4)) {
1061 /* MOL hypercalls */
1062 u64 *gprs = run->osi.gprs;
1063 int i;
1064
1065 run->exit_reason = KVM_EXIT_OSI;
1066 for (i = 0; i < 32; i++)
1067 gprs[i] = kvmppc_get_gpr(vcpu, i);
1068 vcpu->arch.osi_needed = 1;
1069 r = RESUME_HOST_NV;
Alexander Graf5deb8e72014-04-24 13:46:24 +02001070 } else if (!(kvmppc_get_msr(vcpu) & MSR_PR) &&
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001071 (((u32)kvmppc_get_gpr(vcpu, 0)) == KVM_SC_MAGIC_R0)) {
1072 /* KVM PV hypercalls */
1073 kvmppc_set_gpr(vcpu, 3, kvmppc_kvm_pv(vcpu));
1074 r = RESUME_GUEST;
1075 } else {
1076 /* Guest syscalls */
1077 vcpu->stat.syscall_exits++;
1078 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1079 r = RESUME_GUEST;
1080 }
1081 break;
1082 case BOOK3S_INTERRUPT_FP_UNAVAIL:
1083 case BOOK3S_INTERRUPT_ALTIVEC:
1084 case BOOK3S_INTERRUPT_VSX:
1085 {
1086 int ext_msr = 0;
1087
1088 switch (exit_nr) {
1089 case BOOK3S_INTERRUPT_FP_UNAVAIL: ext_msr = MSR_FP; break;
1090 case BOOK3S_INTERRUPT_ALTIVEC: ext_msr = MSR_VEC; break;
1091 case BOOK3S_INTERRUPT_VSX: ext_msr = MSR_VSX; break;
1092 }
1093
1094 switch (kvmppc_check_ext(vcpu, exit_nr)) {
1095 case EMULATE_DONE:
1096 /* everything ok - let's enable the ext */
1097 r = kvmppc_handle_ext(vcpu, exit_nr, ext_msr);
1098 break;
1099 case EMULATE_FAIL:
1100 /* we need to emulate this instruction */
1101 goto program_interrupt;
1102 break;
1103 default:
1104 /* nothing to worry about - go again */
1105 break;
1106 }
1107 break;
1108 }
1109 case BOOK3S_INTERRUPT_ALIGNMENT:
1110 if (kvmppc_read_inst(vcpu) == EMULATE_DONE) {
Alexander Graf5deb8e72014-04-24 13:46:24 +02001111 u32 last_inst = kvmppc_get_last_inst(vcpu);
1112 u32 dsisr;
1113 u64 dar;
1114
1115 dsisr = kvmppc_alignment_dsisr(vcpu, last_inst);
1116 dar = kvmppc_alignment_dar(vcpu, last_inst);
1117
1118 kvmppc_set_dsisr(vcpu, dsisr);
1119 kvmppc_set_dar(vcpu, dar);
1120
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001121 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1122 }
1123 r = RESUME_GUEST;
1124 break;
Alexander Graf616dff82014-04-29 16:48:44 +02001125#ifdef CONFIG_PPC_BOOK3S_64
1126 case BOOK3S_INTERRUPT_FAC_UNAVAIL:
1127 kvmppc_handle_fac(vcpu, vcpu->arch.shadow_fscr >> 56);
1128 r = RESUME_GUEST;
1129 break;
1130#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001131 case BOOK3S_INTERRUPT_MACHINE_CHECK:
1132 case BOOK3S_INTERRUPT_TRACE:
1133 kvmppc_book3s_queue_irqprio(vcpu, exit_nr);
1134 r = RESUME_GUEST;
1135 break;
1136 default:
Alexander Graf468a12c2011-12-09 14:44:13 +01001137 {
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001138 ulong shadow_srr1 = vcpu->arch.shadow_srr1;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001139 /* Ugh - bork here! What did we get? */
1140 printk(KERN_EMERG "exit_nr=0x%x | pc=0x%lx | msr=0x%lx\n",
Alexander Graf468a12c2011-12-09 14:44:13 +01001141 exit_nr, kvmppc_get_pc(vcpu), shadow_srr1);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001142 r = RESUME_HOST;
1143 BUG();
1144 break;
1145 }
Alexander Graf468a12c2011-12-09 14:44:13 +01001146 }
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001147
1148 if (!(r & RESUME_HOST)) {
1149 /* To avoid clobbering exit_reason, only check for signals if
1150 * we aren't already exiting to userspace for some other
1151 * reason. */
Alexander Grafe371f712011-12-19 13:36:55 +01001152
1153 /*
1154 * Interrupts could be timers for the guest which we have to
1155 * inject again, so let's postpone them until we're in the guest
1156 * and if we really did time things so badly, then we just exit
1157 * again due to a host external interrupt.
1158 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001159 s = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001160 if (s <= 0)
Alexander Graf7ee78852012-08-13 12:44:41 +02001161 r = s;
Scott Wood6c85f522014-01-09 19:18:40 -06001162 else {
1163 /* interrupts now hard-disabled */
Scott Wood5f1c2482013-07-10 17:47:39 -05001164 kvmppc_fix_ee_before_entry();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001165 }
Scott Wood6c85f522014-01-09 19:18:40 -06001166
Paul Mackerras9d1ffdd2013-08-06 14:14:33 +10001167 kvmppc_handle_lost_ext(vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001168 }
1169
1170 trace_kvm_book3s_reenter(r, vcpu);
1171
1172 return r;
1173}
1174
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301175static int kvm_arch_vcpu_ioctl_get_sregs_pr(struct kvm_vcpu *vcpu,
1176 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001177{
1178 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1179 int i;
1180
1181 sregs->pvr = vcpu->arch.pvr;
1182
1183 sregs->u.s.sdr1 = to_book3s(vcpu)->sdr1;
1184 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1185 for (i = 0; i < 64; i++) {
1186 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige | i;
1187 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1188 }
1189 } else {
1190 for (i = 0; i < 16; i++)
Alexander Graf5deb8e72014-04-24 13:46:24 +02001191 sregs->u.s.ppc32.sr[i] = kvmppc_get_sr(vcpu, i);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001192
1193 for (i = 0; i < 8; i++) {
1194 sregs->u.s.ppc32.ibat[i] = vcpu3s->ibat[i].raw;
1195 sregs->u.s.ppc32.dbat[i] = vcpu3s->dbat[i].raw;
1196 }
1197 }
1198
1199 return 0;
1200}
1201
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301202static int kvm_arch_vcpu_ioctl_set_sregs_pr(struct kvm_vcpu *vcpu,
1203 struct kvm_sregs *sregs)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001204{
1205 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
1206 int i;
1207
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301208 kvmppc_set_pvr_pr(vcpu, sregs->pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001209
1210 vcpu3s->sdr1 = sregs->u.s.sdr1;
1211 if (vcpu->arch.hflags & BOOK3S_HFLAG_SLB) {
1212 for (i = 0; i < 64; i++) {
1213 vcpu->arch.mmu.slbmte(vcpu, sregs->u.s.ppc64.slb[i].slbv,
1214 sregs->u.s.ppc64.slb[i].slbe);
1215 }
1216 } else {
1217 for (i = 0; i < 16; i++) {
1218 vcpu->arch.mmu.mtsrin(vcpu, i, sregs->u.s.ppc32.sr[i]);
1219 }
1220 for (i = 0; i < 8; i++) {
1221 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), false,
1222 (u32)sregs->u.s.ppc32.ibat[i]);
1223 kvmppc_set_bat(vcpu, &(vcpu3s->ibat[i]), true,
1224 (u32)(sregs->u.s.ppc32.ibat[i] >> 32));
1225 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), false,
1226 (u32)sregs->u.s.ppc32.dbat[i]);
1227 kvmppc_set_bat(vcpu, &(vcpu3s->dbat[i]), true,
1228 (u32)(sregs->u.s.ppc32.dbat[i] >> 32));
1229 }
1230 }
1231
1232 /* Flush the MMU after messing with the segments */
1233 kvmppc_mmu_pte_flush(vcpu, 0, 0);
1234
1235 return 0;
1236}
1237
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301238static int kvmppc_get_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1239 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001240{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001241 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001242
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001243 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001244 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001245 *val = get_reg_val(id, to_book3s(vcpu)->hior);
Paul Mackerras31f34382011-12-12 12:26:50 +00001246 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301247 case KVM_REG_PPC_LPCR:
1248 /*
1249 * We are only interested in the LPCR_ILE bit
1250 */
1251 if (vcpu->arch.intr_msr & MSR_LE)
1252 *val = get_reg_val(id, LPCR_ILE);
1253 else
1254 *val = get_reg_val(id, 0);
1255 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001256 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001257 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001258 break;
1259 }
1260
1261 return r;
1262}
1263
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301264static void kvmppc_set_lpcr_pr(struct kvm_vcpu *vcpu, u64 new_lpcr)
1265{
1266 if (new_lpcr & LPCR_ILE)
1267 vcpu->arch.intr_msr |= MSR_LE;
1268 else
1269 vcpu->arch.intr_msr &= ~MSR_LE;
1270}
1271
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301272static int kvmppc_set_one_reg_pr(struct kvm_vcpu *vcpu, u64 id,
1273 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001274{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001275 int r = 0;
Paul Mackerras31f34382011-12-12 12:26:50 +00001276
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001277 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001278 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001279 to_book3s(vcpu)->hior = set_reg_val(id, *val);
1280 to_book3s(vcpu)->hior_explicit = true;
Paul Mackerras31f34382011-12-12 12:26:50 +00001281 break;
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301282 case KVM_REG_PPC_LPCR:
1283 kvmppc_set_lpcr_pr(vcpu, set_reg_val(id, *val));
1284 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001285 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001286 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001287 break;
1288 }
1289
1290 return r;
1291}
1292
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301293static struct kvm_vcpu *kvmppc_core_vcpu_create_pr(struct kvm *kvm,
1294 unsigned int id)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001295{
1296 struct kvmppc_vcpu_book3s *vcpu_book3s;
1297 struct kvm_vcpu *vcpu;
1298 int err = -ENOMEM;
1299 unsigned long p;
1300
Paul Mackerras3ff95502013-09-20 14:52:49 +10001301 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
1302 if (!vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001303 goto out;
1304
Paul Mackerras3ff95502013-09-20 14:52:49 +10001305 vcpu_book3s = vzalloc(sizeof(struct kvmppc_vcpu_book3s));
1306 if (!vcpu_book3s)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001307 goto free_vcpu;
Paul Mackerras3ff95502013-09-20 14:52:49 +10001308 vcpu->arch.book3s = vcpu_book3s;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001309
Alexander Grafab784752014-04-06 23:31:48 +02001310#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001311 vcpu->arch.shadow_vcpu =
1312 kzalloc(sizeof(*vcpu->arch.shadow_vcpu), GFP_KERNEL);
1313 if (!vcpu->arch.shadow_vcpu)
1314 goto free_vcpu3s;
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001315#endif
Paul Mackerras3ff95502013-09-20 14:52:49 +10001316
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001317 err = kvm_vcpu_init(vcpu, kvm, id);
1318 if (err)
1319 goto free_shadow_vcpu;
1320
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001321 err = -ENOMEM;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001322 p = __get_free_page(GFP_KERNEL|__GFP_ZERO);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001323 if (!p)
1324 goto uninit_vcpu;
Thadeu Lima de Souza Cascardo7c7b4062013-07-17 12:10:29 -03001325 /* the real shared page fills the last 4k of our page */
1326 vcpu->arch.shared = (void *)(p + PAGE_SIZE - 4096);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001327#ifdef CONFIG_PPC_BOOK3S_64
Alexander Graf5deb8e72014-04-24 13:46:24 +02001328 /* Always start the shared struct in native endian mode */
1329#ifdef __BIG_ENDIAN__
1330 vcpu->arch.shared_big_endian = true;
1331#else
1332 vcpu->arch.shared_big_endian = false;
1333#endif
1334
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001335 /*
1336 * Default to the same as the host if we're on sufficiently
1337 * recent machine that we have 1TB segments;
1338 * otherwise default to PPC970FX.
1339 */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001340 vcpu->arch.pvr = 0x3C0301;
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001341 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1342 vcpu->arch.pvr = mfspr(SPRN_PVR);
Aneesh Kumar K.Ve5ee5422014-05-05 08:39:44 +05301343 vcpu->arch.intr_msr = MSR_SF;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001344#else
1345 /* default to book3s_32 (750) */
1346 vcpu->arch.pvr = 0x84202;
1347#endif
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301348 kvmppc_set_pvr_pr(vcpu, vcpu->arch.pvr);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001349 vcpu->arch.slb_nr = 64;
1350
Alexander Graf94810ba2014-04-24 13:04:01 +02001351 vcpu->arch.shadow_msr = MSR_USER64 & ~MSR_LE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001352
1353 err = kvmppc_mmu_init(vcpu);
1354 if (err < 0)
1355 goto uninit_vcpu;
1356
1357 return vcpu;
1358
1359uninit_vcpu:
1360 kvm_vcpu_uninit(vcpu);
1361free_shadow_vcpu:
Alexander Grafab784752014-04-06 23:31:48 +02001362#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001363 kfree(vcpu->arch.shadow_vcpu);
1364free_vcpu3s:
Paul Mackerrasa2d56022013-09-20 14:52:43 +10001365#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001366 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001367free_vcpu:
1368 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001369out:
1370 return ERR_PTR(err);
1371}
1372
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301373static void kvmppc_core_vcpu_free_pr(struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001374{
1375 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
1376
1377 free_page((unsigned long)vcpu->arch.shared & PAGE_MASK);
1378 kvm_vcpu_uninit(vcpu);
Alexander Grafab784752014-04-06 23:31:48 +02001379#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
Paul Mackerras3ff95502013-09-20 14:52:49 +10001380 kfree(vcpu->arch.shadow_vcpu);
1381#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001382 vfree(vcpu_book3s);
Paul Mackerras3ff95502013-09-20 14:52:49 +10001383 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001384}
1385
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301386static int kvmppc_vcpu_run_pr(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001387{
1388 int ret;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001389#ifdef CONFIG_ALTIVEC
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001390 unsigned long uninitialized_var(vrsave);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001391#endif
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001392
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001393 /* Check if we can run the vcpu at all */
1394 if (!vcpu->arch.sane) {
1395 kvm_run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
Alexander Graf7d827142011-12-09 15:46:21 +01001396 ret = -EINVAL;
1397 goto out;
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001398 }
1399
Alexander Grafe371f712011-12-19 13:36:55 +01001400 /*
1401 * Interrupts could be timers for the guest which we have to inject
1402 * again, so let's postpone them until we're in the guest and if we
1403 * really did time things so badly, then we just exit again due to
1404 * a host external interrupt.
1405 */
Alexander Graf7ee78852012-08-13 12:44:41 +02001406 ret = kvmppc_prepare_to_enter(vcpu);
Scott Wood6c85f522014-01-09 19:18:40 -06001407 if (ret <= 0)
Alexander Graf7d827142011-12-09 15:46:21 +01001408 goto out;
Scott Wood6c85f522014-01-09 19:18:40 -06001409 /* interrupts now hard-disabled */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001410
Paul Mackerras99dae3b2013-10-15 20:43:03 +11001411 /* Save FPU state in thread_struct */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001412 if (current->thread.regs->msr & MSR_FP)
1413 giveup_fpu(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001414
1415#ifdef CONFIG_ALTIVEC
Paul Mackerras99dae3b2013-10-15 20:43:03 +11001416 /* Save Altivec state in thread_struct */
1417 if (current->thread.regs->msr & MSR_VEC)
1418 giveup_altivec(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001419#endif
1420
1421#ifdef CONFIG_VSX
Paul Mackerras99dae3b2013-10-15 20:43:03 +11001422 /* Save VSX state in thread_struct */
1423 if (current->thread.regs->msr & MSR_VSX)
Paul Mackerras28c483b2012-11-04 18:16:46 +00001424 __giveup_vsx(current);
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001425#endif
1426
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001427 /* Preload FPU if it's enabled */
Alexander Graf5deb8e72014-04-24 13:46:24 +02001428 if (kvmppc_get_msr(vcpu) & MSR_FP)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001429 kvmppc_handle_ext(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, MSR_FP);
1430
Scott Wood5f1c2482013-07-10 17:47:39 -05001431 kvmppc_fix_ee_before_entry();
Paul Mackerrasdf6909e52011-06-29 00:19:50 +00001432
1433 ret = __kvmppc_vcpu_run(kvm_run, vcpu);
1434
Alexander Graf24afa372012-08-12 12:42:30 +02001435 /* No need for kvm_guest_exit. It's done in handle_exit.
1436 We also get here with interrupts enabled. */
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001437
Paul Mackerras28c483b2012-11-04 18:16:46 +00001438 /* Make sure we save the guest FPU/Altivec/VSX state */
1439 kvmppc_giveup_ext(vcpu, MSR_FP | MSR_VEC | MSR_VSX);
1440
Alexander Grafe14e7a12014-04-22 12:26:58 +02001441 /* Make sure we save the guest TAR/EBB/DSCR state */
1442 kvmppc_giveup_fac(vcpu, FSCR_TAR_LG);
1443
Alexander Graf7d827142011-12-09 15:46:21 +01001444out:
Alexander Graf0652eaa2012-08-12 11:34:21 +02001445 vcpu->mode = OUTSIDE_GUEST_MODE;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001446 return ret;
1447}
1448
Paul Mackerras82ed3612011-12-15 02:03:22 +00001449/*
1450 * Get (and clear) the dirty memory log for a memory slot.
1451 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301452static int kvm_vm_ioctl_get_dirty_log_pr(struct kvm *kvm,
1453 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00001454{
1455 struct kvm_memory_slot *memslot;
1456 struct kvm_vcpu *vcpu;
1457 ulong ga, ga_end;
1458 int is_dirty = 0;
1459 int r;
1460 unsigned long n;
1461
1462 mutex_lock(&kvm->slots_lock);
1463
1464 r = kvm_get_dirty_log(kvm, log, &is_dirty);
1465 if (r)
1466 goto out;
1467
1468 /* If nothing is dirty, don't bother messing with page tables. */
1469 if (is_dirty) {
1470 memslot = id_to_memslot(kvm->memslots, log->slot);
1471
1472 ga = memslot->base_gfn << PAGE_SHIFT;
1473 ga_end = ga + (memslot->npages << PAGE_SHIFT);
1474
1475 kvm_for_each_vcpu(n, vcpu, kvm)
1476 kvmppc_mmu_pte_pflush(vcpu, ga, ga_end);
1477
1478 n = kvm_dirty_bitmap_bytes(memslot);
1479 memset(memslot->dirty_bitmap, 0, n);
1480 }
1481
1482 r = 0;
1483out:
1484 mutex_unlock(&kvm->slots_lock);
1485 return r;
1486}
1487
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301488static void kvmppc_core_flush_memslot_pr(struct kvm *kvm,
1489 struct kvm_memory_slot *memslot)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001490{
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301491 return;
1492}
1493
1494static int kvmppc_core_prepare_memory_region_pr(struct kvm *kvm,
1495 struct kvm_memory_slot *memslot,
1496 struct kvm_userspace_memory_region *mem)
1497{
1498 return 0;
1499}
1500
1501static void kvmppc_core_commit_memory_region_pr(struct kvm *kvm,
1502 struct kvm_userspace_memory_region *mem,
1503 const struct kvm_memory_slot *old)
1504{
1505 return;
1506}
1507
1508static void kvmppc_core_free_memslot_pr(struct kvm_memory_slot *free,
1509 struct kvm_memory_slot *dont)
1510{
1511 return;
1512}
1513
1514static int kvmppc_core_create_memslot_pr(struct kvm_memory_slot *slot,
1515 unsigned long npages)
1516{
1517 return 0;
1518}
1519
1520
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001521#ifdef CONFIG_PPC64
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301522static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1523 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001524{
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001525 long int i;
1526 struct kvm_vcpu *vcpu;
1527
1528 info->flags = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001529
1530 /* SLB is always 64 entries */
1531 info->slb_size = 64;
1532
1533 /* Standard 4k base page size segment */
1534 info->sps[0].page_shift = 12;
1535 info->sps[0].slb_enc = 0;
1536 info->sps[0].enc[0].page_shift = 12;
1537 info->sps[0].enc[0].pte_enc = 0;
1538
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001539 /*
1540 * 64k large page size.
1541 * We only want to put this in if the CPUs we're emulating
1542 * support it, but unfortunately we don't have a vcpu easily
1543 * to hand here to test. Just pick the first vcpu, and if
1544 * that doesn't exist yet, report the minimum capability,
1545 * i.e., no 64k pages.
1546 * 1T segment support goes along with 64k pages.
1547 */
1548 i = 1;
1549 vcpu = kvm_get_vcpu(kvm, 0);
1550 if (vcpu && (vcpu->arch.hflags & BOOK3S_HFLAG_MULTI_PGSIZE)) {
1551 info->flags = KVM_PPC_1T_SEGMENTS;
1552 info->sps[i].page_shift = 16;
1553 info->sps[i].slb_enc = SLB_VSID_L | SLB_VSID_LP_01;
1554 info->sps[i].enc[0].page_shift = 16;
1555 info->sps[i].enc[0].pte_enc = 1;
1556 ++i;
1557 }
1558
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001559 /* Standard 16M large page size segment */
Paul Mackerrasa4a0f252013-09-20 14:52:44 +10001560 info->sps[i].page_shift = 24;
1561 info->sps[i].slb_enc = SLB_VSID_L;
1562 info->sps[i].enc[0].page_shift = 24;
1563 info->sps[i].enc[0].pte_enc = 0;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001564
1565 return 0;
1566}
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301567#else
1568static int kvm_vm_ioctl_get_smmu_info_pr(struct kvm *kvm,
1569 struct kvm_ppc_smmu_info *info)
1570{
1571 /* We should not get called */
1572 BUG();
1573}
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001574#endif /* CONFIG_PPC64 */
1575
Ian Munsiea413f472012-12-03 18:36:13 +00001576static unsigned int kvm_global_user_count = 0;
1577static DEFINE_SPINLOCK(kvm_global_user_count_lock);
1578
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301579static int kvmppc_core_init_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001580{
Paul Mackerras9308ab82013-09-20 14:52:48 +10001581 mutex_init(&kvm->arch.hpt_mutex);
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001582
Ian Munsiea413f472012-12-03 18:36:13 +00001583 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1584 spin_lock(&kvm_global_user_count_lock);
1585 if (++kvm_global_user_count == 1)
1586 pSeries_disable_reloc_on_exc();
1587 spin_unlock(&kvm_global_user_count_lock);
1588 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001589 return 0;
1590}
1591
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301592static void kvmppc_core_destroy_vm_pr(struct kvm *kvm)
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001593{
Benjamin Herrenschmidtf31e65e2012-03-15 21:58:34 +00001594#ifdef CONFIG_PPC64
1595 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
1596#endif
Ian Munsiea413f472012-12-03 18:36:13 +00001597
1598 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
1599 spin_lock(&kvm_global_user_count_lock);
1600 BUG_ON(kvm_global_user_count == 0);
1601 if (--kvm_global_user_count == 0)
1602 pSeries_enable_reloc_on_exc();
1603 spin_unlock(&kvm_global_user_count_lock);
1604 }
Paul Mackerrasf9e05542011-06-29 00:19:22 +00001605}
1606
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301607static int kvmppc_core_check_processor_compat_pr(void)
1608{
1609 /* we are always compatible */
1610 return 0;
1611}
1612
1613static long kvm_arch_vm_ioctl_pr(struct file *filp,
1614 unsigned int ioctl, unsigned long arg)
1615{
1616 return -ENOTTY;
1617}
1618
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301619static struct kvmppc_ops kvm_ops_pr = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301620 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_pr,
1621 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_pr,
1622 .get_one_reg = kvmppc_get_one_reg_pr,
1623 .set_one_reg = kvmppc_set_one_reg_pr,
1624 .vcpu_load = kvmppc_core_vcpu_load_pr,
1625 .vcpu_put = kvmppc_core_vcpu_put_pr,
1626 .set_msr = kvmppc_set_msr_pr,
1627 .vcpu_run = kvmppc_vcpu_run_pr,
1628 .vcpu_create = kvmppc_core_vcpu_create_pr,
1629 .vcpu_free = kvmppc_core_vcpu_free_pr,
1630 .check_requests = kvmppc_core_check_requests_pr,
1631 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_pr,
1632 .flush_memslot = kvmppc_core_flush_memslot_pr,
1633 .prepare_memory_region = kvmppc_core_prepare_memory_region_pr,
1634 .commit_memory_region = kvmppc_core_commit_memory_region_pr,
1635 .unmap_hva = kvm_unmap_hva_pr,
1636 .unmap_hva_range = kvm_unmap_hva_range_pr,
1637 .age_hva = kvm_age_hva_pr,
1638 .test_age_hva = kvm_test_age_hva_pr,
1639 .set_spte_hva = kvm_set_spte_hva_pr,
1640 .mmu_destroy = kvmppc_mmu_destroy_pr,
1641 .free_memslot = kvmppc_core_free_memslot_pr,
1642 .create_memslot = kvmppc_core_create_memslot_pr,
1643 .init_vm = kvmppc_core_init_vm_pr,
1644 .destroy_vm = kvmppc_core_destroy_vm_pr,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301645 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_pr,
1646 .emulate_op = kvmppc_core_emulate_op_pr,
1647 .emulate_mtspr = kvmppc_core_emulate_mtspr_pr,
1648 .emulate_mfspr = kvmppc_core_emulate_mfspr_pr,
1649 .fast_vcpu_kick = kvm_vcpu_kick,
1650 .arch_vm_ioctl = kvm_arch_vm_ioctl_pr,
1651};
1652
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301653
1654int kvmppc_book3s_init_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001655{
1656 int r;
1657
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301658 r = kvmppc_core_check_processor_compat_pr();
1659 if (r < 0)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001660 return r;
1661
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301662 kvm_ops_pr.owner = THIS_MODULE;
1663 kvmppc_pr_ops = &kvm_ops_pr;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001664
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301665 r = kvmppc_mmu_hpte_sysinit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001666 return r;
1667}
1668
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301669void kvmppc_book3s_exit_pr(void)
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001670{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301671 kvmppc_pr_ops = NULL;
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001672 kvmppc_mmu_hpte_sysexit();
Paul Mackerrasf05ed4d2011-06-29 00:17:58 +00001673}
1674
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301675/*
1676 * We only support separate modules for book3s 64
1677 */
1678#ifdef CONFIG_PPC_BOOK3S_64
1679
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301680module_init(kvmppc_book3s_init_pr);
1681module_exit(kvmppc_book3s_exit_pr);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301682
1683MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01001684MODULE_ALIAS_MISCDEV(KVM_MINOR);
1685MODULE_ALIAS("devname:kvm");
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05301686#endif