blob: 93203bbe571441bbf05c312470ec728fa969cc70 [file] [log] [blame]
Paul Mackerrasde56a942011-06-29 00:21:34 +00001/*
2 * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
3 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
4 *
5 * Authors:
6 * Paul Mackerras <paulus@au1.ibm.com>
7 * Alexander Graf <agraf@suse.de>
8 * Kevin Wolf <mail@kevin-wolf.de>
9 *
10 * Description: KVM functions specific to running on Book 3S
11 * processors in hypervisor mode (specifically POWER7 and later).
12 *
13 * This file is derived from arch/powerpc/kvm/book3s.c,
14 * by Alexander Graf <agraf@suse.de>.
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License, version 2, as
18 * published by the Free Software Foundation.
19 */
20
21#include <linux/kvm_host.h>
22#include <linux/err.h>
23#include <linux/slab.h>
24#include <linux/preempt.h>
25#include <linux/sched.h>
26#include <linux/delay.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040027#include <linux/export.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000028#include <linux/fs.h>
29#include <linux/anon_inodes.h>
30#include <linux/cpumask.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000031#include <linux/spinlock.h>
32#include <linux/page-flags.h>
Paul Mackerras2c9097e2012-09-11 13:27:01 +000033#include <linux/srcu.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000034
35#include <asm/reg.h>
36#include <asm/cputable.h>
37#include <asm/cacheflush.h>
38#include <asm/tlbflush.h>
39#include <asm/uaccess.h>
40#include <asm/io.h>
41#include <asm/kvm_ppc.h>
42#include <asm/kvm_book3s.h>
43#include <asm/mmu_context.h>
44#include <asm/lppaca.h>
45#include <asm/processor.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000046#include <asm/cputhreads.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000047#include <asm/page.h>
Michael Neulingde1d9242011-11-09 20:39:49 +000048#include <asm/hvcall.h>
David Howellsae3a1972012-03-28 18:30:02 +010049#include <asm/switch_to.h>
Paul Mackerras512691d2012-10-15 01:15:41 +000050#include <asm/smp.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000051#include <linux/gfp.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000052#include <linux/vmalloc.h>
53#include <linux/highmem.h>
Paul Mackerrasc77162d2011-12-12 12:31:00 +000054#include <linux/hugetlb.h>
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +053055#include <linux/module.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000056
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053057#include "book3s.h"
58
Paul Mackerrasde56a942011-06-29 00:21:34 +000059/* #define EXIT_DEBUG */
60/* #define EXIT_DEBUG_SIMPLE */
61/* #define EXIT_DEBUG_INT */
62
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000063/* Used to indicate that a guest page fault needs to be handled */
64#define RESUME_PAGE_FAULT (RESUME_GUEST | RESUME_FLAG_ARCH1)
65
Paul Mackerrasc7b67672012-10-15 01:18:07 +000066/* Used as a "null" value for timebase values */
67#define TB_NIL (~(u64)0)
68
Paul Mackerras19ccb762011-07-23 17:42:46 +100069static void kvmppc_end_cede(struct kvm_vcpu *vcpu);
Paul Mackerras32fad282012-05-04 02:32:53 +000070static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +100071
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053072static void kvmppc_fast_vcpu_kick_hv(struct kvm_vcpu *vcpu)
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +000073{
74 int me;
75 int cpu = vcpu->cpu;
76 wait_queue_head_t *wqp;
77
78 wqp = kvm_arch_vcpu_wq(vcpu);
79 if (waitqueue_active(wqp)) {
80 wake_up_interruptible(wqp);
81 ++vcpu->stat.halt_wakeup;
82 }
83
84 me = get_cpu();
85
86 /* CPU points to the first thread of the core */
87 if (cpu != me && cpu >= 0 && cpu < nr_cpu_ids) {
88 int real_cpu = cpu + vcpu->arch.ptid;
89 if (paca[real_cpu].kvm_hstate.xics_phys)
90 xics_wake_cpu(real_cpu);
91 else if (cpu_online(cpu))
92 smp_send_reschedule(cpu);
93 }
94 put_cpu();
95}
96
Paul Mackerrasc7b67672012-10-15 01:18:07 +000097/*
98 * We use the vcpu_load/put functions to measure stolen time.
99 * Stolen time is counted as time when either the vcpu is able to
100 * run as part of a virtual core, but the task running the vcore
101 * is preempted or sleeping, or when the vcpu needs something done
102 * in the kernel by the task running the vcpu, but that task is
103 * preempted or sleeping. Those two things have to be counted
104 * separately, since one of the vcpu tasks will take on the job
105 * of running the core, and the other vcpu tasks in the vcore will
106 * sleep waiting for it to do that, but that sleep shouldn't count
107 * as stolen time.
108 *
109 * Hence we accumulate stolen time when the vcpu can run as part of
110 * a vcore using vc->stolen_tb, and the stolen time when the vcpu
111 * needs its task to do other things in the kernel (for example,
112 * service a page fault) in busy_stolen. We don't accumulate
113 * stolen time for a vcore when it is inactive, or for a vcpu
114 * when it is in state RUNNING or NOTREADY. NOTREADY is a bit of
115 * a misnomer; it means that the vcpu task is not executing in
116 * the KVM_VCPU_RUN ioctl, i.e. it is in userspace or elsewhere in
117 * the kernel. We don't have any way of dividing up that time
118 * between time that the vcpu is genuinely stopped, time that
119 * the task is actively working on behalf of the vcpu, and time
120 * that the task is preempted, so we don't count any of it as
121 * stolen.
122 *
123 * Updates to busy_stolen are protected by arch.tbacct_lock;
124 * updates to vc->stolen_tb are protected by the arch.tbacct_lock
125 * of the vcpu that has taken responsibility for running the vcore
126 * (i.e. vc->runner). The stolen times are measured in units of
127 * timebase ticks. (Note that the != TB_NIL checks below are
128 * purely defensive; they should never fail.)
129 */
130
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530131static void kvmppc_core_vcpu_load_hv(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000132{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000133 struct kvmppc_vcore *vc = vcpu->arch.vcore;
134
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000135 spin_lock(&vcpu->arch.tbacct_lock);
136 if (vc->runner == vcpu && vc->vcore_state != VCORE_INACTIVE &&
137 vc->preempt_tb != TB_NIL) {
Paul Mackerras0456ec42012-02-03 00:56:21 +0000138 vc->stolen_tb += mftb() - vc->preempt_tb;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000139 vc->preempt_tb = TB_NIL;
140 }
141 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST &&
142 vcpu->arch.busy_preempt != TB_NIL) {
143 vcpu->arch.busy_stolen += mftb() - vcpu->arch.busy_preempt;
144 vcpu->arch.busy_preempt = TB_NIL;
145 }
146 spin_unlock(&vcpu->arch.tbacct_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000147}
148
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530149static void kvmppc_core_vcpu_put_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000150{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000151 struct kvmppc_vcore *vc = vcpu->arch.vcore;
152
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000153 spin_lock(&vcpu->arch.tbacct_lock);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000154 if (vc->runner == vcpu && vc->vcore_state != VCORE_INACTIVE)
155 vc->preempt_tb = mftb();
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000156 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST)
157 vcpu->arch.busy_preempt = mftb();
158 spin_unlock(&vcpu->arch.tbacct_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000159}
160
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530161static void kvmppc_set_msr_hv(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000162{
163 vcpu->arch.shregs.msr = msr;
Paul Mackerras19ccb762011-07-23 17:42:46 +1000164 kvmppc_end_cede(vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000165}
166
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530167void kvmppc_set_pvr_hv(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000168{
169 vcpu->arch.pvr = pvr;
170}
171
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000172int kvmppc_set_arch_compat(struct kvm_vcpu *vcpu, u32 arch_compat)
173{
174 unsigned long pcr = 0;
175 struct kvmppc_vcore *vc = vcpu->arch.vcore;
176
177 if (arch_compat) {
178 if (!cpu_has_feature(CPU_FTR_ARCH_206))
179 return -EINVAL; /* 970 has no compat mode support */
180
181 switch (arch_compat) {
182 case PVR_ARCH_205:
183 pcr = PCR_ARCH_205;
184 break;
185 case PVR_ARCH_206:
186 case PVR_ARCH_206p:
187 break;
188 default:
189 return -EINVAL;
190 }
191 }
192
193 spin_lock(&vc->lock);
194 vc->arch_compat = arch_compat;
195 vc->pcr = pcr;
196 spin_unlock(&vc->lock);
197
198 return 0;
199}
200
Paul Mackerrasde56a942011-06-29 00:21:34 +0000201void kvmppc_dump_regs(struct kvm_vcpu *vcpu)
202{
203 int r;
204
205 pr_err("vcpu %p (%d):\n", vcpu, vcpu->vcpu_id);
206 pr_err("pc = %.16lx msr = %.16llx trap = %x\n",
207 vcpu->arch.pc, vcpu->arch.shregs.msr, vcpu->arch.trap);
208 for (r = 0; r < 16; ++r)
209 pr_err("r%2d = %.16lx r%d = %.16lx\n",
210 r, kvmppc_get_gpr(vcpu, r),
211 r+16, kvmppc_get_gpr(vcpu, r+16));
212 pr_err("ctr = %.16lx lr = %.16lx\n",
213 vcpu->arch.ctr, vcpu->arch.lr);
214 pr_err("srr0 = %.16llx srr1 = %.16llx\n",
215 vcpu->arch.shregs.srr0, vcpu->arch.shregs.srr1);
216 pr_err("sprg0 = %.16llx sprg1 = %.16llx\n",
217 vcpu->arch.shregs.sprg0, vcpu->arch.shregs.sprg1);
218 pr_err("sprg2 = %.16llx sprg3 = %.16llx\n",
219 vcpu->arch.shregs.sprg2, vcpu->arch.shregs.sprg3);
220 pr_err("cr = %.8x xer = %.16lx dsisr = %.8x\n",
221 vcpu->arch.cr, vcpu->arch.xer, vcpu->arch.shregs.dsisr);
222 pr_err("dar = %.16llx\n", vcpu->arch.shregs.dar);
223 pr_err("fault dar = %.16lx dsisr = %.8x\n",
224 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
225 pr_err("SLB (%d entries):\n", vcpu->arch.slb_max);
226 for (r = 0; r < vcpu->arch.slb_max; ++r)
227 pr_err(" ESID = %.16llx VSID = %.16llx\n",
228 vcpu->arch.slb[r].orige, vcpu->arch.slb[r].origv);
229 pr_err("lpcr = %.16lx sdr1 = %.16lx last_inst = %.8x\n",
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000230 vcpu->arch.vcore->lpcr, vcpu->kvm->arch.sdr1,
Paul Mackerrasde56a942011-06-29 00:21:34 +0000231 vcpu->arch.last_inst);
232}
233
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000234struct kvm_vcpu *kvmppc_find_vcpu(struct kvm *kvm, int id)
235{
236 int r;
237 struct kvm_vcpu *v, *ret = NULL;
238
239 mutex_lock(&kvm->lock);
240 kvm_for_each_vcpu(r, v, kvm) {
241 if (v->vcpu_id == id) {
242 ret = v;
243 break;
244 }
245 }
246 mutex_unlock(&kvm->lock);
247 return ret;
248}
249
250static void init_vpa(struct kvm_vcpu *vcpu, struct lppaca *vpa)
251{
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000252 vpa->__old_status |= LPPACA_OLD_SHARED_PROC;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000253 vpa->yield_count = 1;
254}
255
Paul Mackerras55b665b2012-09-25 20:33:06 +0000256static int set_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *v,
257 unsigned long addr, unsigned long len)
258{
259 /* check address is cacheline aligned */
260 if (addr & (L1_CACHE_BYTES - 1))
261 return -EINVAL;
262 spin_lock(&vcpu->arch.vpa_update_lock);
263 if (v->next_gpa != addr || v->len != len) {
264 v->next_gpa = addr;
265 v->len = addr ? len : 0;
266 v->update_pending = 1;
267 }
268 spin_unlock(&vcpu->arch.vpa_update_lock);
269 return 0;
270}
271
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000272/* Length for a per-processor buffer is passed in at offset 4 in the buffer */
273struct reg_vpa {
274 u32 dummy;
275 union {
276 u16 hword;
277 u32 word;
278 } length;
279};
280
281static int vpa_is_registered(struct kvmppc_vpa *vpap)
282{
283 if (vpap->update_pending)
284 return vpap->next_gpa != 0;
285 return vpap->pinned_addr != NULL;
286}
287
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000288static unsigned long do_h_register_vpa(struct kvm_vcpu *vcpu,
289 unsigned long flags,
290 unsigned long vcpuid, unsigned long vpa)
291{
292 struct kvm *kvm = vcpu->kvm;
Paul Mackerras93e60242011-12-12 12:28:55 +0000293 unsigned long len, nb;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000294 void *va;
295 struct kvm_vcpu *tvcpu;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000296 int err;
297 int subfunc;
298 struct kvmppc_vpa *vpap;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000299
300 tvcpu = kvmppc_find_vcpu(kvm, vcpuid);
301 if (!tvcpu)
302 return H_PARAMETER;
303
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000304 subfunc = (flags >> H_VPA_FUNC_SHIFT) & H_VPA_FUNC_MASK;
305 if (subfunc == H_VPA_REG_VPA || subfunc == H_VPA_REG_DTL ||
306 subfunc == H_VPA_REG_SLB) {
307 /* Registering new area - address must be cache-line aligned */
308 if ((vpa & (L1_CACHE_BYTES - 1)) || !vpa)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000309 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000310
311 /* convert logical addr to kernel addr and read length */
Paul Mackerras93e60242011-12-12 12:28:55 +0000312 va = kvmppc_pin_guest_page(kvm, vpa, &nb);
313 if (va == NULL)
Paul Mackerrasb2b2f162011-12-12 12:28:21 +0000314 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000315 if (subfunc == H_VPA_REG_VPA)
316 len = ((struct reg_vpa *)va)->length.hword;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000317 else
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000318 len = ((struct reg_vpa *)va)->length.word;
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000319 kvmppc_unpin_guest_page(kvm, va, vpa, false);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000320
321 /* Check length */
322 if (len > nb || len < sizeof(struct reg_vpa))
323 return H_PARAMETER;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000324 } else {
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000325 vpa = 0;
326 len = 0;
327 }
328
329 err = H_PARAMETER;
330 vpap = NULL;
331 spin_lock(&tvcpu->arch.vpa_update_lock);
332
333 switch (subfunc) {
334 case H_VPA_REG_VPA: /* register VPA */
335 if (len < sizeof(struct lppaca))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000336 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000337 vpap = &tvcpu->arch.vpa;
338 err = 0;
339 break;
340
341 case H_VPA_REG_DTL: /* register DTL */
342 if (len < sizeof(struct dtl_entry))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000343 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000344 len -= len % sizeof(struct dtl_entry);
345
346 /* Check that they have previously registered a VPA */
347 err = H_RESOURCE;
348 if (!vpa_is_registered(&tvcpu->arch.vpa))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000349 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000350
351 vpap = &tvcpu->arch.dtl;
352 err = 0;
353 break;
354
355 case H_VPA_REG_SLB: /* register SLB shadow buffer */
356 /* Check that they have previously registered a VPA */
357 err = H_RESOURCE;
358 if (!vpa_is_registered(&tvcpu->arch.vpa))
359 break;
360
361 vpap = &tvcpu->arch.slb_shadow;
362 err = 0;
363 break;
364
365 case H_VPA_DEREG_VPA: /* deregister VPA */
366 /* Check they don't still have a DTL or SLB buf registered */
367 err = H_RESOURCE;
368 if (vpa_is_registered(&tvcpu->arch.dtl) ||
369 vpa_is_registered(&tvcpu->arch.slb_shadow))
370 break;
371
372 vpap = &tvcpu->arch.vpa;
373 err = 0;
374 break;
375
376 case H_VPA_DEREG_DTL: /* deregister DTL */
377 vpap = &tvcpu->arch.dtl;
378 err = 0;
379 break;
380
381 case H_VPA_DEREG_SLB: /* deregister SLB shadow buffer */
382 vpap = &tvcpu->arch.slb_shadow;
383 err = 0;
384 break;
385 }
386
387 if (vpap) {
388 vpap->next_gpa = vpa;
389 vpap->len = len;
390 vpap->update_pending = 1;
391 }
392
393 spin_unlock(&tvcpu->arch.vpa_update_lock);
394
395 return err;
396}
397
Paul Mackerras081f3232012-06-01 20:20:24 +1000398static void kvmppc_update_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *vpap)
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000399{
Paul Mackerras081f3232012-06-01 20:20:24 +1000400 struct kvm *kvm = vcpu->kvm;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000401 void *va;
402 unsigned long nb;
Paul Mackerras081f3232012-06-01 20:20:24 +1000403 unsigned long gpa;
404
405 /*
406 * We need to pin the page pointed to by vpap->next_gpa,
407 * but we can't call kvmppc_pin_guest_page under the lock
408 * as it does get_user_pages() and down_read(). So we
409 * have to drop the lock, pin the page, then get the lock
410 * again and check that a new area didn't get registered
411 * in the meantime.
412 */
413 for (;;) {
414 gpa = vpap->next_gpa;
415 spin_unlock(&vcpu->arch.vpa_update_lock);
416 va = NULL;
417 nb = 0;
418 if (gpa)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000419 va = kvmppc_pin_guest_page(kvm, gpa, &nb);
Paul Mackerras081f3232012-06-01 20:20:24 +1000420 spin_lock(&vcpu->arch.vpa_update_lock);
421 if (gpa == vpap->next_gpa)
422 break;
423 /* sigh... unpin that one and try again */
424 if (va)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000425 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000426 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000427
428 vpap->update_pending = 0;
Paul Mackerras081f3232012-06-01 20:20:24 +1000429 if (va && nb < vpap->len) {
430 /*
431 * If it's now too short, it must be that userspace
432 * has changed the mappings underlying guest memory,
433 * so unregister the region.
434 */
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000435 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000436 va = NULL;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000437 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000438 if (vpap->pinned_addr)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000439 kvmppc_unpin_guest_page(kvm, vpap->pinned_addr, vpap->gpa,
440 vpap->dirty);
441 vpap->gpa = gpa;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000442 vpap->pinned_addr = va;
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000443 vpap->dirty = false;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000444 if (va)
445 vpap->pinned_end = va + vpap->len;
446}
Paul Mackerras93e60242011-12-12 12:28:55 +0000447
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000448static void kvmppc_update_vpas(struct kvm_vcpu *vcpu)
449{
Paul Mackerras2f12f032012-10-15 01:17:17 +0000450 if (!(vcpu->arch.vpa.update_pending ||
451 vcpu->arch.slb_shadow.update_pending ||
452 vcpu->arch.dtl.update_pending))
453 return;
454
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000455 spin_lock(&vcpu->arch.vpa_update_lock);
456 if (vcpu->arch.vpa.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000457 kvmppc_update_vpa(vcpu, &vcpu->arch.vpa);
Paul Mackerras55b665b2012-09-25 20:33:06 +0000458 if (vcpu->arch.vpa.pinned_addr)
459 init_vpa(vcpu, vcpu->arch.vpa.pinned_addr);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000460 }
461 if (vcpu->arch.dtl.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000462 kvmppc_update_vpa(vcpu, &vcpu->arch.dtl);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000463 vcpu->arch.dtl_ptr = vcpu->arch.dtl.pinned_addr;
464 vcpu->arch.dtl_index = 0;
465 }
466 if (vcpu->arch.slb_shadow.update_pending)
Paul Mackerras081f3232012-06-01 20:20:24 +1000467 kvmppc_update_vpa(vcpu, &vcpu->arch.slb_shadow);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000468 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000469}
470
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000471/*
472 * Return the accumulated stolen time for the vcore up until `now'.
473 * The caller should hold the vcore lock.
474 */
475static u64 vcore_stolen_time(struct kvmppc_vcore *vc, u64 now)
476{
477 u64 p;
478
479 /*
480 * If we are the task running the vcore, then since we hold
481 * the vcore lock, we can't be preempted, so stolen_tb/preempt_tb
482 * can't be updated, so we don't need the tbacct_lock.
483 * If the vcore is inactive, it can't become active (since we
484 * hold the vcore lock), so the vcpu load/put functions won't
485 * update stolen_tb/preempt_tb, and we don't need tbacct_lock.
486 */
487 if (vc->vcore_state != VCORE_INACTIVE &&
488 vc->runner->arch.run_task != current) {
489 spin_lock(&vc->runner->arch.tbacct_lock);
490 p = vc->stolen_tb;
491 if (vc->preempt_tb != TB_NIL)
492 p += now - vc->preempt_tb;
493 spin_unlock(&vc->runner->arch.tbacct_lock);
494 } else {
495 p = vc->stolen_tb;
496 }
497 return p;
498}
499
Paul Mackerras0456ec42012-02-03 00:56:21 +0000500static void kvmppc_create_dtl_entry(struct kvm_vcpu *vcpu,
501 struct kvmppc_vcore *vc)
502{
503 struct dtl_entry *dt;
504 struct lppaca *vpa;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000505 unsigned long stolen;
506 unsigned long core_stolen;
507 u64 now;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000508
509 dt = vcpu->arch.dtl_ptr;
510 vpa = vcpu->arch.vpa.pinned_addr;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000511 now = mftb();
512 core_stolen = vcore_stolen_time(vc, now);
513 stolen = core_stolen - vcpu->arch.stolen_logged;
514 vcpu->arch.stolen_logged = core_stolen;
515 spin_lock(&vcpu->arch.tbacct_lock);
516 stolen += vcpu->arch.busy_stolen;
517 vcpu->arch.busy_stolen = 0;
518 spin_unlock(&vcpu->arch.tbacct_lock);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000519 if (!dt || !vpa)
520 return;
521 memset(dt, 0, sizeof(struct dtl_entry));
522 dt->dispatch_reason = 7;
523 dt->processor_id = vc->pcpu + vcpu->arch.ptid;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +1000524 dt->timebase = now + vc->tb_offset;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000525 dt->enqueue_to_dispatch_time = stolen;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000526 dt->srr0 = kvmppc_get_pc(vcpu);
527 dt->srr1 = vcpu->arch.shregs.msr;
528 ++dt;
529 if (dt == vcpu->arch.dtl.pinned_end)
530 dt = vcpu->arch.dtl.pinned_addr;
531 vcpu->arch.dtl_ptr = dt;
532 /* order writing *dt vs. writing vpa->dtl_idx */
533 smp_wmb();
534 vpa->dtl_idx = ++vcpu->arch.dtl_index;
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000535 vcpu->arch.dtl.dirty = true;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000536}
537
538int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
539{
540 unsigned long req = kvmppc_get_gpr(vcpu, 3);
541 unsigned long target, ret = H_SUCCESS;
542 struct kvm_vcpu *tvcpu;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000543 int idx, rc;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000544
545 switch (req) {
Paul Mackerrasc77162d2011-12-12 12:31:00 +0000546 case H_ENTER:
Paul Mackerras2c9097e2012-09-11 13:27:01 +0000547 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +0000548 ret = kvmppc_virtmode_h_enter(vcpu, kvmppc_get_gpr(vcpu, 4),
549 kvmppc_get_gpr(vcpu, 5),
550 kvmppc_get_gpr(vcpu, 6),
551 kvmppc_get_gpr(vcpu, 7));
Paul Mackerras2c9097e2012-09-11 13:27:01 +0000552 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Paul Mackerrasc77162d2011-12-12 12:31:00 +0000553 break;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000554 case H_CEDE:
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000555 break;
556 case H_PROD:
557 target = kvmppc_get_gpr(vcpu, 4);
558 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
559 if (!tvcpu) {
560 ret = H_PARAMETER;
561 break;
562 }
563 tvcpu->arch.prodded = 1;
564 smp_mb();
565 if (vcpu->arch.ceded) {
566 if (waitqueue_active(&vcpu->wq)) {
567 wake_up_interruptible(&vcpu->wq);
568 vcpu->stat.halt_wakeup++;
569 }
570 }
571 break;
572 case H_CONFER:
Paul Mackerras42d76042013-09-06 13:23:21 +1000573 target = kvmppc_get_gpr(vcpu, 4);
574 if (target == -1)
575 break;
576 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
577 if (!tvcpu) {
578 ret = H_PARAMETER;
579 break;
580 }
581 kvm_vcpu_yield_to(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000582 break;
583 case H_REGISTER_VPA:
584 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
585 kvmppc_get_gpr(vcpu, 5),
586 kvmppc_get_gpr(vcpu, 6));
587 break;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000588 case H_RTAS:
589 if (list_empty(&vcpu->kvm->arch.rtas_tokens))
590 return RESUME_HOST;
591
592 rc = kvmppc_rtas_hcall(vcpu);
593
594 if (rc == -ENOENT)
595 return RESUME_HOST;
596 else if (rc == 0)
597 break;
598
599 /* Send the error out to userspace via KVM_RUN */
600 return rc;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000601
602 case H_XIRR:
603 case H_CPPR:
604 case H_EOI:
605 case H_IPI:
Paul Mackerras8e44ddc2013-05-23 15:42:21 +0000606 case H_IPOLL:
607 case H_XIRR_X:
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000608 if (kvmppc_xics_enabled(vcpu)) {
609 ret = kvmppc_xics_hcall(vcpu, req);
610 break;
611 } /* fallthrough */
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000612 default:
613 return RESUME_HOST;
614 }
615 kvmppc_set_gpr(vcpu, 3, ret);
616 vcpu->arch.hcall_needed = 0;
617 return RESUME_GUEST;
618}
619
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530620static int kvmppc_handle_exit_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
621 struct task_struct *tsk)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000622{
623 int r = RESUME_HOST;
624
625 vcpu->stat.sum_exits++;
626
627 run->exit_reason = KVM_EXIT_UNKNOWN;
628 run->ready_for_interrupt_injection = 1;
629 switch (vcpu->arch.trap) {
630 /* We're good on these - the host merely wanted to get our attention */
631 case BOOK3S_INTERRUPT_HV_DECREMENTER:
632 vcpu->stat.dec_exits++;
633 r = RESUME_GUEST;
634 break;
635 case BOOK3S_INTERRUPT_EXTERNAL:
636 vcpu->stat.ext_intr_exits++;
637 r = RESUME_GUEST;
638 break;
639 case BOOK3S_INTERRUPT_PERFMON:
640 r = RESUME_GUEST;
641 break;
Paul Mackerrasb4072df2012-11-23 22:37:50 +0000642 case BOOK3S_INTERRUPT_MACHINE_CHECK:
643 /*
644 * Deliver a machine check interrupt to the guest.
645 * We have to do this, even if the host has handled the
646 * machine check, because machine checks use SRR0/1 and
647 * the interrupt might have trashed guest state in them.
648 */
649 kvmppc_book3s_queue_irqprio(vcpu,
650 BOOK3S_INTERRUPT_MACHINE_CHECK);
651 r = RESUME_GUEST;
652 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000653 case BOOK3S_INTERRUPT_PROGRAM:
654 {
655 ulong flags;
656 /*
657 * Normally program interrupts are delivered directly
658 * to the guest by the hardware, but we can get here
659 * as a result of a hypervisor emulation interrupt
660 * (e40) getting turned into a 700 by BML RTAS.
661 */
662 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
663 kvmppc_core_queue_program(vcpu, flags);
664 r = RESUME_GUEST;
665 break;
666 }
667 case BOOK3S_INTERRUPT_SYSCALL:
668 {
669 /* hcall - punt to userspace */
670 int i;
671
Liu Ping Fan27025a62013-11-19 14:12:48 +0800672 /* hypercall with MSR_PR has already been handled in rmode,
673 * and never reaches here.
674 */
675
Paul Mackerrasde56a942011-06-29 00:21:34 +0000676 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
677 for (i = 0; i < 9; ++i)
678 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
679 run->exit_reason = KVM_EXIT_PAPR_HCALL;
680 vcpu->arch.hcall_needed = 1;
681 r = RESUME_HOST;
682 break;
683 }
684 /*
Paul Mackerras342d3db2011-12-12 12:38:05 +0000685 * We get these next two if the guest accesses a page which it thinks
686 * it has mapped but which is not actually present, either because
687 * it is for an emulated I/O device or because the corresonding
688 * host page has been paged out. Any other HDSI/HISI interrupts
689 * have been handled already.
Paul Mackerrasde56a942011-06-29 00:21:34 +0000690 */
691 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +0000692 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000693 break;
694 case BOOK3S_INTERRUPT_H_INST_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +0000695 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
696 vcpu->arch.fault_dsisr = 0;
697 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000698 break;
699 /*
700 * This occurs if the guest executes an illegal instruction.
701 * We just generate a program interrupt to the guest, since
702 * we don't emulate any guest instructions at this stage.
703 */
704 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
705 kvmppc_core_queue_program(vcpu, 0x80000);
706 r = RESUME_GUEST;
707 break;
708 default:
709 kvmppc_dump_regs(vcpu);
710 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
711 vcpu->arch.trap, kvmppc_get_pc(vcpu),
712 vcpu->arch.shregs.msr);
Paul Mackerrasf3271d42013-09-20 14:52:41 +1000713 run->hw.hardware_exit_reason = vcpu->arch.trap;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000714 r = RESUME_HOST;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000715 break;
716 }
717
Paul Mackerrasde56a942011-06-29 00:21:34 +0000718 return r;
719}
720
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530721static int kvm_arch_vcpu_ioctl_get_sregs_hv(struct kvm_vcpu *vcpu,
722 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000723{
724 int i;
725
Paul Mackerrasde56a942011-06-29 00:21:34 +0000726 memset(sregs, 0, sizeof(struct kvm_sregs));
Aneesh Kumar K.V87916442013-08-22 17:08:39 +0530727 sregs->pvr = vcpu->arch.pvr;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000728 for (i = 0; i < vcpu->arch.slb_max; i++) {
729 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
730 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
731 }
732
733 return 0;
734}
735
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530736static int kvm_arch_vcpu_ioctl_set_sregs_hv(struct kvm_vcpu *vcpu,
737 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000738{
739 int i, j;
740
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530741 kvmppc_set_pvr_hv(vcpu, sregs->pvr);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000742
743 j = 0;
744 for (i = 0; i < vcpu->arch.slb_nr; i++) {
745 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
746 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
747 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
748 ++j;
749 }
750 }
751 vcpu->arch.slb_max = j;
752
753 return 0;
754}
755
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000756static void kvmppc_set_lpcr(struct kvm_vcpu *vcpu, u64 new_lpcr)
757{
758 struct kvmppc_vcore *vc = vcpu->arch.vcore;
759 u64 mask;
760
761 spin_lock(&vc->lock);
762 /*
763 * Userspace can only modify DPFD (default prefetch depth),
764 * ILE (interrupt little-endian) and TC (translation control).
765 */
766 mask = LPCR_DPFD | LPCR_ILE | LPCR_TC;
767 vc->lpcr = (vc->lpcr & ~mask) | (new_lpcr & mask);
768 spin_unlock(&vc->lock);
769}
770
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530771static int kvmppc_get_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
772 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +0000773{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000774 int r = 0;
775 long int i;
Paul Mackerras31f34382011-12-12 12:26:50 +0000776
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000777 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +0000778 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000779 *val = get_reg_val(id, 0);
780 break;
781 case KVM_REG_PPC_DABR:
782 *val = get_reg_val(id, vcpu->arch.dabr);
783 break;
784 case KVM_REG_PPC_DSCR:
785 *val = get_reg_val(id, vcpu->arch.dscr);
786 break;
787 case KVM_REG_PPC_PURR:
788 *val = get_reg_val(id, vcpu->arch.purr);
789 break;
790 case KVM_REG_PPC_SPURR:
791 *val = get_reg_val(id, vcpu->arch.spurr);
792 break;
793 case KVM_REG_PPC_AMR:
794 *val = get_reg_val(id, vcpu->arch.amr);
795 break;
796 case KVM_REG_PPC_UAMOR:
797 *val = get_reg_val(id, vcpu->arch.uamor);
798 break;
799 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRA:
800 i = id - KVM_REG_PPC_MMCR0;
801 *val = get_reg_val(id, vcpu->arch.mmcr[i]);
802 break;
803 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
804 i = id - KVM_REG_PPC_PMC1;
805 *val = get_reg_val(id, vcpu->arch.pmc[i]);
Paul Mackerras31f34382011-12-12 12:26:50 +0000806 break;
Paul Mackerras14941782013-09-06 13:11:18 +1000807 case KVM_REG_PPC_SIAR:
808 *val = get_reg_val(id, vcpu->arch.siar);
809 break;
810 case KVM_REG_PPC_SDAR:
811 *val = get_reg_val(id, vcpu->arch.sdar);
812 break;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000813#ifdef CONFIG_VSX
814 case KVM_REG_PPC_FPR0 ... KVM_REG_PPC_FPR31:
815 if (cpu_has_feature(CPU_FTR_VSX)) {
816 /* VSX => FP reg i is stored in arch.vsr[2*i] */
817 long int i = id - KVM_REG_PPC_FPR0;
818 *val = get_reg_val(id, vcpu->arch.vsr[2 * i]);
819 } else {
820 /* let generic code handle it */
821 r = -EINVAL;
822 }
823 break;
824 case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31:
825 if (cpu_has_feature(CPU_FTR_VSX)) {
826 long int i = id - KVM_REG_PPC_VSR0;
827 val->vsxval[0] = vcpu->arch.vsr[2 * i];
828 val->vsxval[1] = vcpu->arch.vsr[2 * i + 1];
829 } else {
830 r = -ENXIO;
831 }
832 break;
833#endif /* CONFIG_VSX */
Paul Mackerras55b665b2012-09-25 20:33:06 +0000834 case KVM_REG_PPC_VPA_ADDR:
835 spin_lock(&vcpu->arch.vpa_update_lock);
836 *val = get_reg_val(id, vcpu->arch.vpa.next_gpa);
837 spin_unlock(&vcpu->arch.vpa_update_lock);
838 break;
839 case KVM_REG_PPC_VPA_SLB:
840 spin_lock(&vcpu->arch.vpa_update_lock);
841 val->vpaval.addr = vcpu->arch.slb_shadow.next_gpa;
842 val->vpaval.length = vcpu->arch.slb_shadow.len;
843 spin_unlock(&vcpu->arch.vpa_update_lock);
844 break;
845 case KVM_REG_PPC_VPA_DTL:
846 spin_lock(&vcpu->arch.vpa_update_lock);
847 val->vpaval.addr = vcpu->arch.dtl.next_gpa;
848 val->vpaval.length = vcpu->arch.dtl.len;
849 spin_unlock(&vcpu->arch.vpa_update_lock);
850 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +1000851 case KVM_REG_PPC_TB_OFFSET:
852 *val = get_reg_val(id, vcpu->arch.vcore->tb_offset);
853 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000854 case KVM_REG_PPC_LPCR:
855 *val = get_reg_val(id, vcpu->arch.vcore->lpcr);
856 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +1000857 case KVM_REG_PPC_PPR:
858 *val = get_reg_val(id, vcpu->arch.ppr);
859 break;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000860 case KVM_REG_PPC_ARCH_COMPAT:
861 *val = get_reg_val(id, vcpu->arch.vcore->arch_compat);
862 break;
Paul Mackerras31f34382011-12-12 12:26:50 +0000863 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000864 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +0000865 break;
866 }
867
868 return r;
869}
870
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530871static int kvmppc_set_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
872 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +0000873{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000874 int r = 0;
875 long int i;
Paul Mackerras55b665b2012-09-25 20:33:06 +0000876 unsigned long addr, len;
Paul Mackerras31f34382011-12-12 12:26:50 +0000877
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000878 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +0000879 case KVM_REG_PPC_HIOR:
Paul Mackerras31f34382011-12-12 12:26:50 +0000880 /* Only allow this to be set to zero */
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000881 if (set_reg_val(id, *val))
Paul Mackerras31f34382011-12-12 12:26:50 +0000882 r = -EINVAL;
883 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000884 case KVM_REG_PPC_DABR:
885 vcpu->arch.dabr = set_reg_val(id, *val);
886 break;
887 case KVM_REG_PPC_DSCR:
888 vcpu->arch.dscr = set_reg_val(id, *val);
889 break;
890 case KVM_REG_PPC_PURR:
891 vcpu->arch.purr = set_reg_val(id, *val);
892 break;
893 case KVM_REG_PPC_SPURR:
894 vcpu->arch.spurr = set_reg_val(id, *val);
895 break;
896 case KVM_REG_PPC_AMR:
897 vcpu->arch.amr = set_reg_val(id, *val);
898 break;
899 case KVM_REG_PPC_UAMOR:
900 vcpu->arch.uamor = set_reg_val(id, *val);
901 break;
902 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRA:
903 i = id - KVM_REG_PPC_MMCR0;
904 vcpu->arch.mmcr[i] = set_reg_val(id, *val);
905 break;
906 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
907 i = id - KVM_REG_PPC_PMC1;
908 vcpu->arch.pmc[i] = set_reg_val(id, *val);
909 break;
Paul Mackerras14941782013-09-06 13:11:18 +1000910 case KVM_REG_PPC_SIAR:
911 vcpu->arch.siar = set_reg_val(id, *val);
912 break;
913 case KVM_REG_PPC_SDAR:
914 vcpu->arch.sdar = set_reg_val(id, *val);
915 break;
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +0000916#ifdef CONFIG_VSX
917 case KVM_REG_PPC_FPR0 ... KVM_REG_PPC_FPR31:
918 if (cpu_has_feature(CPU_FTR_VSX)) {
919 /* VSX => FP reg i is stored in arch.vsr[2*i] */
920 long int i = id - KVM_REG_PPC_FPR0;
921 vcpu->arch.vsr[2 * i] = set_reg_val(id, *val);
922 } else {
923 /* let generic code handle it */
924 r = -EINVAL;
925 }
926 break;
927 case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31:
928 if (cpu_has_feature(CPU_FTR_VSX)) {
929 long int i = id - KVM_REG_PPC_VSR0;
930 vcpu->arch.vsr[2 * i] = val->vsxval[0];
931 vcpu->arch.vsr[2 * i + 1] = val->vsxval[1];
932 } else {
933 r = -ENXIO;
934 }
935 break;
936#endif /* CONFIG_VSX */
Paul Mackerras55b665b2012-09-25 20:33:06 +0000937 case KVM_REG_PPC_VPA_ADDR:
938 addr = set_reg_val(id, *val);
939 r = -EINVAL;
940 if (!addr && (vcpu->arch.slb_shadow.next_gpa ||
941 vcpu->arch.dtl.next_gpa))
942 break;
943 r = set_vpa(vcpu, &vcpu->arch.vpa, addr, sizeof(struct lppaca));
944 break;
945 case KVM_REG_PPC_VPA_SLB:
946 addr = val->vpaval.addr;
947 len = val->vpaval.length;
948 r = -EINVAL;
949 if (addr && !vcpu->arch.vpa.next_gpa)
950 break;
951 r = set_vpa(vcpu, &vcpu->arch.slb_shadow, addr, len);
952 break;
953 case KVM_REG_PPC_VPA_DTL:
954 addr = val->vpaval.addr;
955 len = val->vpaval.length;
956 r = -EINVAL;
Paul Mackerras9f8c8c72012-10-15 01:18:37 +0000957 if (addr && (len < sizeof(struct dtl_entry) ||
958 !vcpu->arch.vpa.next_gpa))
Paul Mackerras55b665b2012-09-25 20:33:06 +0000959 break;
960 len -= len % sizeof(struct dtl_entry);
961 r = set_vpa(vcpu, &vcpu->arch.dtl, addr, len);
962 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +1000963 case KVM_REG_PPC_TB_OFFSET:
964 /* round up to multiple of 2^24 */
965 vcpu->arch.vcore->tb_offset =
966 ALIGN(set_reg_val(id, *val), 1UL << 24);
967 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000968 case KVM_REG_PPC_LPCR:
969 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val));
970 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +1000971 case KVM_REG_PPC_PPR:
972 vcpu->arch.ppr = set_reg_val(id, *val);
973 break;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000974 case KVM_REG_PPC_ARCH_COMPAT:
975 r = kvmppc_set_arch_compat(vcpu, set_reg_val(id, *val));
976 break;
Paul Mackerras31f34382011-12-12 12:26:50 +0000977 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +0000978 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +0000979 break;
980 }
981
982 return r;
983}
984
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530985static struct kvm_vcpu *kvmppc_core_vcpu_create_hv(struct kvm *kvm,
986 unsigned int id)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000987{
988 struct kvm_vcpu *vcpu;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000989 int err = -EINVAL;
990 int core;
991 struct kvmppc_vcore *vcore;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000992
Paul Mackerras371fefd2011-06-29 00:23:08 +0000993 core = id / threads_per_core;
994 if (core >= KVM_MAX_VCORES)
995 goto out;
996
997 err = -ENOMEM;
Sasha Levin6b75e6b2011-12-07 10:24:56 +0200998 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000999 if (!vcpu)
1000 goto out;
1001
1002 err = kvm_vcpu_init(vcpu, kvm, id);
1003 if (err)
1004 goto free_vcpu;
1005
1006 vcpu->arch.shared = &vcpu->arch.shregs;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001007 vcpu->arch.mmcr[0] = MMCR0_FC;
1008 vcpu->arch.ctrl = CTRL_RUNLATCH;
1009 /* default to host PVR, since we can't spoof it */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301010 kvmppc_set_pvr_hv(vcpu, mfspr(SPRN_PVR));
Paul Mackerras2e25aa52012-02-19 17:46:32 +00001011 spin_lock_init(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00001012 spin_lock_init(&vcpu->arch.tbacct_lock);
1013 vcpu->arch.busy_preempt = TB_NIL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001014
Paul Mackerrasde56a942011-06-29 00:21:34 +00001015 kvmppc_mmu_book3s_hv_init(vcpu);
1016
Paul Mackerras8455d792012-10-15 01:17:42 +00001017 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001018
1019 init_waitqueue_head(&vcpu->arch.cpu_run);
1020
1021 mutex_lock(&kvm->lock);
1022 vcore = kvm->arch.vcores[core];
1023 if (!vcore) {
1024 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
1025 if (vcore) {
1026 INIT_LIST_HEAD(&vcore->runnable_threads);
1027 spin_lock_init(&vcore->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001028 init_waitqueue_head(&vcore->wq);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00001029 vcore->preempt_tb = TB_NIL;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001030 vcore->lpcr = kvm->arch.lpcr;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001031 }
1032 kvm->arch.vcores[core] = vcore;
Paul Mackerras1b400ba2012-11-21 23:28:08 +00001033 kvm->arch.online_vcores++;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001034 }
1035 mutex_unlock(&kvm->lock);
1036
1037 if (!vcore)
1038 goto free_vcpu;
1039
1040 spin_lock(&vcore->lock);
1041 ++vcore->num_threads;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001042 spin_unlock(&vcore->lock);
1043 vcpu->arch.vcore = vcore;
1044
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001045 vcpu->arch.cpu_type = KVM_CPU_3S_64;
1046 kvmppc_sanity_check(vcpu);
1047
Paul Mackerrasde56a942011-06-29 00:21:34 +00001048 return vcpu;
1049
1050free_vcpu:
Sasha Levin6b75e6b2011-12-07 10:24:56 +02001051 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00001052out:
1053 return ERR_PTR(err);
1054}
1055
Paul Mackerrasc35635e2013-04-18 19:51:04 +00001056static void unpin_vpa(struct kvm *kvm, struct kvmppc_vpa *vpa)
1057{
1058 if (vpa->pinned_addr)
1059 kvmppc_unpin_guest_page(kvm, vpa->pinned_addr, vpa->gpa,
1060 vpa->dirty);
1061}
1062
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301063static void kvmppc_core_vcpu_free_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001064{
Paul Mackerras2e25aa52012-02-19 17:46:32 +00001065 spin_lock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc35635e2013-04-18 19:51:04 +00001066 unpin_vpa(vcpu->kvm, &vcpu->arch.dtl);
1067 unpin_vpa(vcpu->kvm, &vcpu->arch.slb_shadow);
1068 unpin_vpa(vcpu->kvm, &vcpu->arch.vpa);
Paul Mackerras2e25aa52012-02-19 17:46:32 +00001069 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00001070 kvm_vcpu_uninit(vcpu);
Sasha Levin6b75e6b2011-12-07 10:24:56 +02001071 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00001072}
1073
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301074static int kvmppc_core_check_requests_hv(struct kvm_vcpu *vcpu)
1075{
1076 /* Indicate we want to get back into the guest */
1077 return 1;
1078}
1079
Paul Mackerras19ccb762011-07-23 17:42:46 +10001080static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001081{
Paul Mackerras19ccb762011-07-23 17:42:46 +10001082 unsigned long dec_nsec, now;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001083
Paul Mackerras19ccb762011-07-23 17:42:46 +10001084 now = get_tb();
1085 if (now > vcpu->arch.dec_expires) {
1086 /* decrementer has already gone negative */
1087 kvmppc_core_queue_dec(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -06001088 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001089 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001090 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10001091 dec_nsec = (vcpu->arch.dec_expires - now) * NSEC_PER_SEC
1092 / tb_ticks_per_sec;
1093 hrtimer_start(&vcpu->arch.dec_timer, ktime_set(0, dec_nsec),
1094 HRTIMER_MODE_REL);
1095 vcpu->arch.timer_running = 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001096}
1097
Paul Mackerras19ccb762011-07-23 17:42:46 +10001098static void kvmppc_end_cede(struct kvm_vcpu *vcpu)
Paul Mackerras371fefd2011-06-29 00:23:08 +00001099{
Paul Mackerras19ccb762011-07-23 17:42:46 +10001100 vcpu->arch.ceded = 0;
1101 if (vcpu->arch.timer_running) {
1102 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
1103 vcpu->arch.timer_running = 0;
1104 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00001105}
1106
1107extern int __kvmppc_vcore_entry(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00001108
1109static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
1110 struct kvm_vcpu *vcpu)
1111{
Paul Mackerrasc7b67672012-10-15 01:18:07 +00001112 u64 now;
1113
Paul Mackerras371fefd2011-06-29 00:23:08 +00001114 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
1115 return;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00001116 spin_lock(&vcpu->arch.tbacct_lock);
1117 now = mftb();
1118 vcpu->arch.busy_stolen += vcore_stolen_time(vc, now) -
1119 vcpu->arch.stolen_logged;
1120 vcpu->arch.busy_preempt = now;
1121 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
1122 spin_unlock(&vcpu->arch.tbacct_lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00001123 --vc->n_runnable;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001124 list_del(&vcpu->arch.run_list);
1125}
1126
Paul Mackerrasf0888f72012-02-03 00:54:17 +00001127static int kvmppc_grab_hwthread(int cpu)
1128{
1129 struct paca_struct *tpaca;
1130 long timeout = 1000;
1131
1132 tpaca = &paca[cpu];
1133
1134 /* Ensure the thread won't go into the kernel if it wakes */
1135 tpaca->kvm_hstate.hwthread_req = 1;
Paul Mackerras7b444c62012-10-15 01:16:14 +00001136 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00001137
1138 /*
1139 * If the thread is already executing in the kernel (e.g. handling
1140 * a stray interrupt), wait for it to get back to nap mode.
1141 * The smp_mb() is to ensure that our setting of hwthread_req
1142 * is visible before we look at hwthread_state, so if this
1143 * races with the code at system_reset_pSeries and the thread
1144 * misses our setting of hwthread_req, we are sure to see its
1145 * setting of hwthread_state, and vice versa.
1146 */
1147 smp_mb();
1148 while (tpaca->kvm_hstate.hwthread_state == KVM_HWTHREAD_IN_KERNEL) {
1149 if (--timeout <= 0) {
1150 pr_err("KVM: couldn't grab cpu %d\n", cpu);
1151 return -EBUSY;
1152 }
1153 udelay(1);
1154 }
1155 return 0;
1156}
1157
1158static void kvmppc_release_hwthread(int cpu)
1159{
1160 struct paca_struct *tpaca;
1161
1162 tpaca = &paca[cpu];
1163 tpaca->kvm_hstate.hwthread_req = 0;
1164 tpaca->kvm_hstate.kvm_vcpu = NULL;
1165}
1166
Paul Mackerras371fefd2011-06-29 00:23:08 +00001167static void kvmppc_start_thread(struct kvm_vcpu *vcpu)
1168{
1169 int cpu;
1170 struct paca_struct *tpaca;
1171 struct kvmppc_vcore *vc = vcpu->arch.vcore;
1172
Paul Mackerras19ccb762011-07-23 17:42:46 +10001173 if (vcpu->arch.timer_running) {
1174 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
1175 vcpu->arch.timer_running = 0;
1176 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00001177 cpu = vc->pcpu + vcpu->arch.ptid;
1178 tpaca = &paca[cpu];
1179 tpaca->kvm_hstate.kvm_vcpu = vcpu;
1180 tpaca->kvm_hstate.kvm_vcore = vc;
Paul Mackerras19ccb762011-07-23 17:42:46 +10001181 tpaca->kvm_hstate.napping = 0;
1182 vcpu->cpu = vc->pcpu;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001183 smp_wmb();
Michael Neuling251da032011-11-10 16:03:20 +00001184#if defined(CONFIG_PPC_ICP_NATIVE) && defined(CONFIG_SMP)
Paul Mackerras371fefd2011-06-29 00:23:08 +00001185 if (vcpu->arch.ptid) {
Paul Mackerras371fefd2011-06-29 00:23:08 +00001186 xics_wake_cpu(cpu);
1187 ++vc->n_woken;
1188 }
1189#endif
1190}
1191
1192static void kvmppc_wait_for_nap(struct kvmppc_vcore *vc)
1193{
1194 int i;
1195
1196 HMT_low();
1197 i = 0;
1198 while (vc->nap_count < vc->n_woken) {
1199 if (++i >= 1000000) {
1200 pr_err("kvmppc_wait_for_nap timeout %d %d\n",
1201 vc->nap_count, vc->n_woken);
1202 break;
1203 }
1204 cpu_relax();
1205 }
1206 HMT_medium();
1207}
1208
1209/*
1210 * Check that we are on thread 0 and that any other threads in
Paul Mackerras7b444c62012-10-15 01:16:14 +00001211 * this core are off-line. Then grab the threads so they can't
1212 * enter the kernel.
Paul Mackerras371fefd2011-06-29 00:23:08 +00001213 */
1214static int on_primary_thread(void)
1215{
1216 int cpu = smp_processor_id();
1217 int thr = cpu_thread_in_core(cpu);
1218
1219 if (thr)
1220 return 0;
1221 while (++thr < threads_per_core)
1222 if (cpu_online(cpu + thr))
1223 return 0;
Paul Mackerras7b444c62012-10-15 01:16:14 +00001224
1225 /* Grab all hw threads so they can't go into the kernel */
1226 for (thr = 1; thr < threads_per_core; ++thr) {
1227 if (kvmppc_grab_hwthread(cpu + thr)) {
1228 /* Couldn't grab one; let the others go */
1229 do {
1230 kvmppc_release_hwthread(cpu + thr);
1231 } while (--thr > 0);
1232 return 0;
1233 }
1234 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00001235 return 1;
1236}
1237
1238/*
1239 * Run a set of guest threads on a physical core.
1240 * Called with vc->lock held.
1241 */
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001242static void kvmppc_run_core(struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00001243{
Paul Mackerras19ccb762011-07-23 17:42:46 +10001244 struct kvm_vcpu *vcpu, *vcpu0, *vnext;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001245 long ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001246 u64 now;
Paul Mackerras081f3232012-06-01 20:20:24 +10001247 int ptid, i, need_vpa_update;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00001248 int srcu_idx;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001249 struct kvm_vcpu *vcpus_to_update[threads_per_core];
Paul Mackerrasde56a942011-06-29 00:21:34 +00001250
Paul Mackerras371fefd2011-06-29 00:23:08 +00001251 /* don't start if any threads have a signal pending */
Paul Mackerras081f3232012-06-01 20:20:24 +10001252 need_vpa_update = 0;
1253 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) {
Paul Mackerras371fefd2011-06-29 00:23:08 +00001254 if (signal_pending(vcpu->arch.run_task))
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001255 return;
1256 if (vcpu->arch.vpa.update_pending ||
1257 vcpu->arch.slb_shadow.update_pending ||
1258 vcpu->arch.dtl.update_pending)
1259 vcpus_to_update[need_vpa_update++] = vcpu;
Paul Mackerras081f3232012-06-01 20:20:24 +10001260 }
1261
1262 /*
1263 * Initialize *vc, in particular vc->vcore_state, so we can
1264 * drop the vcore lock if necessary.
1265 */
1266 vc->n_woken = 0;
1267 vc->nap_count = 0;
1268 vc->entry_exit_count = 0;
Paul Mackerras2f12f032012-10-15 01:17:17 +00001269 vc->vcore_state = VCORE_STARTING;
Paul Mackerras081f3232012-06-01 20:20:24 +10001270 vc->in_guest = 0;
1271 vc->napping_threads = 0;
1272
1273 /*
1274 * Updating any of the vpas requires calling kvmppc_pin_guest_page,
1275 * which can't be called with any spinlocks held.
1276 */
1277 if (need_vpa_update) {
1278 spin_unlock(&vc->lock);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001279 for (i = 0; i < need_vpa_update; ++i)
1280 kvmppc_update_vpas(vcpus_to_update[i]);
Paul Mackerras081f3232012-06-01 20:20:24 +10001281 spin_lock(&vc->lock);
1282 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001283
1284 /*
Paul Mackerras19ccb762011-07-23 17:42:46 +10001285 * Assign physical thread IDs, first to non-ceded vcpus
1286 * and then to ceded ones.
1287 */
1288 ptid = 0;
1289 vcpu0 = NULL;
1290 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) {
1291 if (!vcpu->arch.ceded) {
1292 if (!ptid)
1293 vcpu0 = vcpu;
1294 vcpu->arch.ptid = ptid++;
1295 }
1296 }
Paul Mackerrasc7b67672012-10-15 01:18:07 +00001297 if (!vcpu0)
1298 goto out; /* nothing to run; should never happen */
Paul Mackerras19ccb762011-07-23 17:42:46 +10001299 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
1300 if (vcpu->arch.ceded)
1301 vcpu->arch.ptid = ptid++;
1302
Paul Mackerras7b444c62012-10-15 01:16:14 +00001303 /*
1304 * Make sure we are running on thread 0, and that
1305 * secondary threads are offline.
1306 */
1307 if (threads_per_core > 1 && !on_primary_thread()) {
1308 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
1309 vcpu->arch.ret = -EBUSY;
1310 goto out;
1311 }
1312
Paul Mackerras371fefd2011-06-29 00:23:08 +00001313 vc->pcpu = smp_processor_id();
Paul Mackerras2e25aa52012-02-19 17:46:32 +00001314 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) {
Paul Mackerras371fefd2011-06-29 00:23:08 +00001315 kvmppc_start_thread(vcpu);
Paul Mackerras0456ec42012-02-03 00:56:21 +00001316 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerras2e25aa52012-02-19 17:46:32 +00001317 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00001318
Paul Mackerras2f12f032012-10-15 01:17:17 +00001319 vc->vcore_state = VCORE_RUNNING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001320 preempt_disable();
Paul Mackerras19ccb762011-07-23 17:42:46 +10001321 spin_unlock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00001322
Paul Mackerras19ccb762011-07-23 17:42:46 +10001323 kvm_guest_enter();
Paul Mackerras2c9097e2012-09-11 13:27:01 +00001324
1325 srcu_idx = srcu_read_lock(&vcpu0->kvm->srcu);
1326
Paul Mackerras19ccb762011-07-23 17:42:46 +10001327 __kvmppc_vcore_entry(NULL, vcpu0);
1328
Paul Mackerras371fefd2011-06-29 00:23:08 +00001329 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001330 /* disable sending of IPIs on virtual external irqs */
1331 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
1332 vcpu->cpu = -1;
1333 /* wait for secondary threads to finish writing their state to memory */
Paul Mackerras371fefd2011-06-29 00:23:08 +00001334 if (vc->nap_count < vc->n_woken)
1335 kvmppc_wait_for_nap(vc);
Paul Mackerras2f12f032012-10-15 01:17:17 +00001336 for (i = 0; i < threads_per_core; ++i)
1337 kvmppc_release_hwthread(vc->pcpu + i);
Paul Mackerras371fefd2011-06-29 00:23:08 +00001338 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
Paul Mackerras19ccb762011-07-23 17:42:46 +10001339 vc->vcore_state = VCORE_EXITING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001340 spin_unlock(&vc->lock);
1341
Paul Mackerras2c9097e2012-09-11 13:27:01 +00001342 srcu_read_unlock(&vcpu0->kvm->srcu, srcu_idx);
1343
Paul Mackerras371fefd2011-06-29 00:23:08 +00001344 /* make sure updates to secondary vcpu structs are visible now */
1345 smp_mb();
Paul Mackerrasde56a942011-06-29 00:21:34 +00001346 kvm_guest_exit();
1347
1348 preempt_enable();
1349 kvm_resched(vcpu);
1350
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001351 spin_lock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00001352 now = get_tb();
Paul Mackerras371fefd2011-06-29 00:23:08 +00001353 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) {
1354 /* cancel pending dec exception if dec is positive */
1355 if (now < vcpu->arch.dec_expires &&
1356 kvmppc_core_pending_dec(vcpu))
1357 kvmppc_core_dequeue_dec(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001358
1359 ret = RESUME_GUEST;
1360 if (vcpu->arch.trap)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301361 ret = kvmppc_handle_exit_hv(vcpu->arch.kvm_run, vcpu,
1362 vcpu->arch.run_task);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001363
Paul Mackerras371fefd2011-06-29 00:23:08 +00001364 vcpu->arch.ret = ret;
1365 vcpu->arch.trap = 0;
Paul Mackerras19ccb762011-07-23 17:42:46 +10001366
1367 if (vcpu->arch.ceded) {
1368 if (ret != RESUME_GUEST)
1369 kvmppc_end_cede(vcpu);
1370 else
1371 kvmppc_set_timer(vcpu);
1372 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00001373 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001374
Paul Mackerrasde56a942011-06-29 00:21:34 +00001375 out:
Paul Mackerras19ccb762011-07-23 17:42:46 +10001376 vc->vcore_state = VCORE_INACTIVE;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001377 list_for_each_entry_safe(vcpu, vnext, &vc->runnable_threads,
1378 arch.run_list) {
1379 if (vcpu->arch.ret != RESUME_GUEST) {
1380 kvmppc_remove_runnable(vc, vcpu);
1381 wake_up(&vcpu->arch.cpu_run);
1382 }
1383 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00001384}
1385
Paul Mackerras19ccb762011-07-23 17:42:46 +10001386/*
1387 * Wait for some other vcpu thread to execute us, and
1388 * wake us up when we need to handle something in the host.
1389 */
1390static void kvmppc_wait_for_exec(struct kvm_vcpu *vcpu, int wait_state)
Paul Mackerras371fefd2011-06-29 00:23:08 +00001391{
Paul Mackerras371fefd2011-06-29 00:23:08 +00001392 DEFINE_WAIT(wait);
1393
Paul Mackerras19ccb762011-07-23 17:42:46 +10001394 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
1395 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE)
1396 schedule();
1397 finish_wait(&vcpu->arch.cpu_run, &wait);
1398}
Paul Mackerras371fefd2011-06-29 00:23:08 +00001399
Paul Mackerras19ccb762011-07-23 17:42:46 +10001400/*
1401 * All the vcpus in this vcore are idle, so wait for a decrementer
1402 * or external interrupt to one of the vcpus. vc->lock is held.
1403 */
1404static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
1405{
1406 DEFINE_WAIT(wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001407
1408 prepare_to_wait(&vc->wq, &wait, TASK_INTERRUPTIBLE);
1409 vc->vcore_state = VCORE_SLEEPING;
1410 spin_unlock(&vc->lock);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001411 schedule();
Paul Mackerras19ccb762011-07-23 17:42:46 +10001412 finish_wait(&vc->wq, &wait);
1413 spin_lock(&vc->lock);
1414 vc->vcore_state = VCORE_INACTIVE;
1415}
1416
1417static int kvmppc_run_vcpu(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
1418{
1419 int n_ceded;
Paul Mackerras19ccb762011-07-23 17:42:46 +10001420 struct kvmppc_vcore *vc;
1421 struct kvm_vcpu *v, *vn;
Paul Mackerras9e368f22011-06-29 00:40:08 +00001422
Paul Mackerras371fefd2011-06-29 00:23:08 +00001423 kvm_run->exit_reason = 0;
1424 vcpu->arch.ret = RESUME_GUEST;
1425 vcpu->arch.trap = 0;
Paul Mackerras2f12f032012-10-15 01:17:17 +00001426 kvmppc_update_vpas(vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00001427
Paul Mackerras371fefd2011-06-29 00:23:08 +00001428 /*
1429 * Synchronize with other threads in this virtual core
1430 */
1431 vc = vcpu->arch.vcore;
1432 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001433 vcpu->arch.ceded = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001434 vcpu->arch.run_task = current;
1435 vcpu->arch.kvm_run = kvm_run;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00001436 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
Paul Mackerras19ccb762011-07-23 17:42:46 +10001437 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00001438 vcpu->arch.busy_preempt = TB_NIL;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001439 list_add_tail(&vcpu->arch.run_list, &vc->runnable_threads);
1440 ++vc->n_runnable;
1441
Paul Mackerras19ccb762011-07-23 17:42:46 +10001442 /*
1443 * This happens the first time this is called for a vcpu.
1444 * If the vcore is already running, we may be able to start
1445 * this thread straight away and have it join in.
1446 */
Paul Mackerras8455d792012-10-15 01:17:42 +00001447 if (!signal_pending(current)) {
Paul Mackerras19ccb762011-07-23 17:42:46 +10001448 if (vc->vcore_state == VCORE_RUNNING &&
1449 VCORE_EXIT_COUNT(vc) == 0) {
1450 vcpu->arch.ptid = vc->n_runnable - 1;
Paul Mackerras2f12f032012-10-15 01:17:17 +00001451 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerras371fefd2011-06-29 00:23:08 +00001452 kvmppc_start_thread(vcpu);
Paul Mackerras8455d792012-10-15 01:17:42 +00001453 } else if (vc->vcore_state == VCORE_SLEEPING) {
1454 wake_up(&vc->wq);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001455 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00001456
Paul Mackerras8455d792012-10-15 01:17:42 +00001457 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10001458
1459 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
1460 !signal_pending(current)) {
Paul Mackerras8455d792012-10-15 01:17:42 +00001461 if (vc->vcore_state != VCORE_INACTIVE) {
Paul Mackerras19ccb762011-07-23 17:42:46 +10001462 spin_unlock(&vc->lock);
1463 kvmppc_wait_for_exec(vcpu, TASK_INTERRUPTIBLE);
1464 spin_lock(&vc->lock);
1465 continue;
1466 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10001467 list_for_each_entry_safe(v, vn, &vc->runnable_threads,
1468 arch.run_list) {
Scott Wood7e28e60e2011-11-08 18:23:20 -06001469 kvmppc_core_prepare_to_enter(v);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001470 if (signal_pending(v->arch.run_task)) {
1471 kvmppc_remove_runnable(vc, v);
1472 v->stat.signal_exits++;
1473 v->arch.kvm_run->exit_reason = KVM_EXIT_INTR;
1474 v->arch.ret = -EINTR;
1475 wake_up(&v->arch.cpu_run);
1476 }
1477 }
Paul Mackerras8455d792012-10-15 01:17:42 +00001478 if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
1479 break;
1480 vc->runner = vcpu;
1481 n_ceded = 0;
Paul Mackerras4619ac82013-04-17 20:31:41 +00001482 list_for_each_entry(v, &vc->runnable_threads, arch.run_list) {
Paul Mackerras8455d792012-10-15 01:17:42 +00001483 if (!v->arch.pending_exceptions)
1484 n_ceded += v->arch.ceded;
Paul Mackerras4619ac82013-04-17 20:31:41 +00001485 else
1486 v->arch.ceded = 0;
1487 }
Paul Mackerras8455d792012-10-15 01:17:42 +00001488 if (n_ceded == vc->n_runnable)
1489 kvmppc_vcore_blocked(vc);
1490 else
1491 kvmppc_run_core(vc);
Paul Mackerras0456ec42012-02-03 00:56:21 +00001492 vc->runner = NULL;
Paul Mackerras371fefd2011-06-29 00:23:08 +00001493 }
1494
Paul Mackerras8455d792012-10-15 01:17:42 +00001495 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
1496 (vc->vcore_state == VCORE_RUNNING ||
1497 vc->vcore_state == VCORE_EXITING)) {
1498 spin_unlock(&vc->lock);
1499 kvmppc_wait_for_exec(vcpu, TASK_UNINTERRUPTIBLE);
1500 spin_lock(&vc->lock);
1501 }
1502
1503 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
1504 kvmppc_remove_runnable(vc, vcpu);
1505 vcpu->stat.signal_exits++;
1506 kvm_run->exit_reason = KVM_EXIT_INTR;
1507 vcpu->arch.ret = -EINTR;
1508 }
1509
1510 if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) {
1511 /* Wake up some vcpu to run the core */
1512 v = list_first_entry(&vc->runnable_threads,
1513 struct kvm_vcpu, arch.run_list);
1514 wake_up(&v->arch.cpu_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10001515 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00001516
Paul Mackerras19ccb762011-07-23 17:42:46 +10001517 spin_unlock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00001518 return vcpu->arch.ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001519}
1520
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301521static int kvmppc_vcpu_run_hv(struct kvm_run *run, struct kvm_vcpu *vcpu)
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001522{
1523 int r;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001524 int srcu_idx;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001525
Alexander Grafaf8f38b2011-08-10 13:57:08 +02001526 if (!vcpu->arch.sane) {
1527 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1528 return -EINVAL;
1529 }
1530
Scott Wood25051b52011-11-08 18:23:23 -06001531 kvmppc_core_prepare_to_enter(vcpu);
1532
Paul Mackerras19ccb762011-07-23 17:42:46 +10001533 /* No need to go into the guest when all we'll do is come back out */
1534 if (signal_pending(current)) {
1535 run->exit_reason = KVM_EXIT_INTR;
1536 return -EINTR;
1537 }
1538
Paul Mackerras32fad282012-05-04 02:32:53 +00001539 atomic_inc(&vcpu->kvm->arch.vcpus_running);
1540 /* Order vcpus_running vs. rma_setup_done, see kvmppc_alloc_reset_hpt */
1541 smp_mb();
1542
1543 /* On the first time here, set up HTAB and VRMA or RMA */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001544 if (!vcpu->kvm->arch.rma_setup_done) {
Paul Mackerras32fad282012-05-04 02:32:53 +00001545 r = kvmppc_hv_setup_htab_rma(vcpu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001546 if (r)
Paul Mackerras32fad282012-05-04 02:32:53 +00001547 goto out;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001548 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10001549
1550 flush_fp_to_thread(current);
1551 flush_altivec_to_thread(current);
1552 flush_vsx_to_thread(current);
1553 vcpu->arch.wqp = &vcpu->arch.vcore->wq;
Paul Mackerras342d3db2011-12-12 12:38:05 +00001554 vcpu->arch.pgdir = current->mm->pgd;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00001555 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerras19ccb762011-07-23 17:42:46 +10001556
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001557 do {
1558 r = kvmppc_run_vcpu(run, vcpu);
1559
1560 if (run->exit_reason == KVM_EXIT_PAPR_HCALL &&
1561 !(vcpu->arch.shregs.msr & MSR_PR)) {
1562 r = kvmppc_pseries_do_hcall(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -06001563 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001564 } else if (r == RESUME_PAGE_FAULT) {
1565 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
1566 r = kvmppc_book3s_hv_page_fault(run, vcpu,
1567 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
1568 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001569 }
1570 } while (r == RESUME_GUEST);
Paul Mackerras32fad282012-05-04 02:32:53 +00001571
1572 out:
Paul Mackerrasc7b67672012-10-15 01:18:07 +00001573 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras32fad282012-05-04 02:32:53 +00001574 atomic_dec(&vcpu->kvm->arch.vcpus_running);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00001575 return r;
1576}
1577
David Gibson54738c02011-06-29 00:22:41 +00001578
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001579/* Work out RMLS (real mode limit selector) field value for a given RMA size.
Paul Mackerras9e368f22011-06-29 00:40:08 +00001580 Assumes POWER7 or PPC970. */
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001581static inline int lpcr_rmls(unsigned long rma_size)
1582{
1583 switch (rma_size) {
1584 case 32ul << 20: /* 32 MB */
Paul Mackerras9e368f22011-06-29 00:40:08 +00001585 if (cpu_has_feature(CPU_FTR_ARCH_206))
1586 return 8; /* only supported on POWER7 */
1587 return -1;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001588 case 64ul << 20: /* 64 MB */
1589 return 3;
1590 case 128ul << 20: /* 128 MB */
1591 return 7;
1592 case 256ul << 20: /* 256 MB */
1593 return 4;
1594 case 1ul << 30: /* 1 GB */
1595 return 2;
1596 case 16ul << 30: /* 16 GB */
1597 return 1;
1598 case 256ul << 30: /* 256 GB */
1599 return 0;
1600 default:
1601 return -1;
1602 }
1603}
1604
1605static int kvm_rma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1606{
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001607 struct page *page;
Aneesh Kumar K.V6c45b812013-07-02 11:15:17 +05301608 struct kvm_rma_info *ri = vma->vm_file->private_data;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001609
Aneesh Kumar K.V6c45b812013-07-02 11:15:17 +05301610 if (vmf->pgoff >= kvm_rma_pages)
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001611 return VM_FAULT_SIGBUS;
1612
1613 page = pfn_to_page(ri->base_pfn + vmf->pgoff);
1614 get_page(page);
1615 vmf->page = page;
1616 return 0;
1617}
1618
1619static const struct vm_operations_struct kvm_rma_vm_ops = {
1620 .fault = kvm_rma_fault,
1621};
1622
1623static int kvm_rma_mmap(struct file *file, struct vm_area_struct *vma)
1624{
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001625 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001626 vma->vm_ops = &kvm_rma_vm_ops;
1627 return 0;
1628}
1629
1630static int kvm_rma_release(struct inode *inode, struct file *filp)
1631{
Aneesh Kumar K.V6c45b812013-07-02 11:15:17 +05301632 struct kvm_rma_info *ri = filp->private_data;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001633
1634 kvm_release_rma(ri);
1635 return 0;
1636}
1637
Al Viro75ef9de2013-04-04 19:09:41 -04001638static const struct file_operations kvm_rma_fops = {
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001639 .mmap = kvm_rma_mmap,
1640 .release = kvm_rma_release,
1641};
1642
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301643static long kvm_vm_ioctl_allocate_rma(struct kvm *kvm,
1644 struct kvm_allocate_rma *ret)
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001645{
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001646 long fd;
Aneesh Kumar K.V6c45b812013-07-02 11:15:17 +05301647 struct kvm_rma_info *ri;
1648 /*
1649 * Only do this on PPC970 in HV mode
1650 */
1651 if (!cpu_has_feature(CPU_FTR_HVMODE) ||
1652 !cpu_has_feature(CPU_FTR_ARCH_201))
1653 return -EINVAL;
1654
1655 if (!kvm_rma_pages)
1656 return -EINVAL;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001657
1658 ri = kvm_alloc_rma();
1659 if (!ri)
1660 return -ENOMEM;
1661
Yann Droneaud2f84d5e2013-08-24 22:14:08 +02001662 fd = anon_inode_getfd("kvm-rma", &kvm_rma_fops, ri, O_RDWR | O_CLOEXEC);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001663 if (fd < 0)
1664 kvm_release_rma(ri);
1665
Aneesh Kumar K.V6c45b812013-07-02 11:15:17 +05301666 ret->rma_size = kvm_rma_pages << PAGE_SHIFT;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001667 return fd;
1668}
1669
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001670static void kvmppc_add_seg_page_size(struct kvm_ppc_one_seg_page_size **sps,
1671 int linux_psize)
1672{
1673 struct mmu_psize_def *def = &mmu_psize_defs[linux_psize];
1674
1675 if (!def->shift)
1676 return;
1677 (*sps)->page_shift = def->shift;
1678 (*sps)->slb_enc = def->sllp;
1679 (*sps)->enc[0].page_shift = def->shift;
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +00001680 /*
1681 * Only return base page encoding. We don't want to return
1682 * all the supporting pte_enc, because our H_ENTER doesn't
1683 * support MPSS yet. Once they do, we can start passing all
1684 * support pte_enc here
1685 */
1686 (*sps)->enc[0].pte_enc = def->penc[linux_psize];
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001687 (*sps)++;
1688}
1689
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301690static int kvm_vm_ioctl_get_smmu_info_hv(struct kvm *kvm,
1691 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00001692{
1693 struct kvm_ppc_one_seg_page_size *sps;
1694
1695 info->flags = KVM_PPC_PAGE_SIZES_REAL;
1696 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1697 info->flags |= KVM_PPC_1T_SEGMENTS;
1698 info->slb_size = mmu_slb_size;
1699
1700 /* We only support these sizes for now, and no muti-size segments */
1701 sps = &info->sps[0];
1702 kvmppc_add_seg_page_size(&sps, MMU_PAGE_4K);
1703 kvmppc_add_seg_page_size(&sps, MMU_PAGE_64K);
1704 kvmppc_add_seg_page_size(&sps, MMU_PAGE_16M);
1705
1706 return 0;
1707}
1708
Paul Mackerras82ed3612011-12-15 02:03:22 +00001709/*
1710 * Get (and clear) the dirty memory log for a memory slot.
1711 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301712static int kvm_vm_ioctl_get_dirty_log_hv(struct kvm *kvm,
1713 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00001714{
1715 struct kvm_memory_slot *memslot;
1716 int r;
1717 unsigned long n;
1718
1719 mutex_lock(&kvm->slots_lock);
1720
1721 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001722 if (log->slot >= KVM_USER_MEM_SLOTS)
Paul Mackerras82ed3612011-12-15 02:03:22 +00001723 goto out;
1724
1725 memslot = id_to_memslot(kvm->memslots, log->slot);
1726 r = -ENOENT;
1727 if (!memslot->dirty_bitmap)
1728 goto out;
1729
1730 n = kvm_dirty_bitmap_bytes(memslot);
1731 memset(memslot->dirty_bitmap, 0, n);
1732
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00001733 r = kvmppc_hv_get_dirty_log(kvm, memslot, memslot->dirty_bitmap);
Paul Mackerras82ed3612011-12-15 02:03:22 +00001734 if (r)
1735 goto out;
1736
1737 r = -EFAULT;
1738 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
1739 goto out;
1740
1741 r = 0;
1742out:
1743 mutex_unlock(&kvm->slots_lock);
1744 return r;
1745}
1746
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00001747static void unpin_slot(struct kvm_memory_slot *memslot)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001748{
1749 unsigned long *physp;
1750 unsigned long j, npages, pfn;
1751 struct page *page;
1752
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00001753 physp = memslot->arch.slot_phys;
1754 npages = memslot->npages;
1755 if (!physp)
1756 return;
1757 for (j = 0; j < npages; j++) {
1758 if (!(physp[j] & KVMPPC_GOT_PAGE))
1759 continue;
1760 pfn = physp[j] >> PAGE_SHIFT;
1761 page = pfn_to_page(pfn);
1762 SetPageDirty(page);
1763 put_page(page);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001764 }
1765}
1766
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301767static void kvmppc_core_free_memslot_hv(struct kvm_memory_slot *free,
1768 struct kvm_memory_slot *dont)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00001769{
1770 if (!dont || free->arch.rmap != dont->arch.rmap) {
1771 vfree(free->arch.rmap);
1772 free->arch.rmap = NULL;
1773 }
1774 if (!dont || free->arch.slot_phys != dont->arch.slot_phys) {
1775 unpin_slot(free);
1776 vfree(free->arch.slot_phys);
1777 free->arch.slot_phys = NULL;
1778 }
1779}
1780
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301781static int kvmppc_core_create_memslot_hv(struct kvm_memory_slot *slot,
1782 unsigned long npages)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00001783{
1784 slot->arch.rmap = vzalloc(npages * sizeof(*slot->arch.rmap));
1785 if (!slot->arch.rmap)
1786 return -ENOMEM;
1787 slot->arch.slot_phys = NULL;
1788
1789 return 0;
1790}
1791
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301792static int kvmppc_core_prepare_memory_region_hv(struct kvm *kvm,
1793 struct kvm_memory_slot *memslot,
1794 struct kvm_userspace_memory_region *mem)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00001795{
1796 unsigned long *phys;
1797
1798 /* Allocate a slot_phys array if needed */
1799 phys = memslot->arch.slot_phys;
1800 if (!kvm->arch.using_mmu_notifiers && !phys && memslot->npages) {
1801 phys = vzalloc(memslot->npages * sizeof(unsigned long));
1802 if (!phys)
1803 return -ENOMEM;
1804 memslot->arch.slot_phys = phys;
1805 }
1806
1807 return 0;
1808}
1809
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301810static void kvmppc_core_commit_memory_region_hv(struct kvm *kvm,
1811 struct kvm_userspace_memory_region *mem,
1812 const struct kvm_memory_slot *old)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001813{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00001814 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
1815 struct kvm_memory_slot *memslot;
1816
Takuya Yoshikawa84826442013-02-27 19:45:25 +09001817 if (npages && old->npages) {
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00001818 /*
1819 * If modifying a memslot, reset all the rmap dirty bits.
1820 * If this is a new memslot, we don't need to do anything
1821 * since the rmap array starts out as all zeroes,
1822 * i.e. no pages are dirty.
1823 */
1824 memslot = id_to_memslot(kvm->memslots, mem->slot);
1825 kvmppc_hv_get_dirty_log(kvm, memslot, NULL);
1826 }
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001827}
1828
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001829/*
1830 * Update LPCR values in kvm->arch and in vcores.
1831 * Caller must hold kvm->lock.
1832 */
1833void kvmppc_update_lpcr(struct kvm *kvm, unsigned long lpcr, unsigned long mask)
1834{
1835 long int i;
1836 u32 cores_done = 0;
1837
1838 if ((kvm->arch.lpcr & mask) == lpcr)
1839 return;
1840
1841 kvm->arch.lpcr = (kvm->arch.lpcr & ~mask) | lpcr;
1842
1843 for (i = 0; i < KVM_MAX_VCORES; ++i) {
1844 struct kvmppc_vcore *vc = kvm->arch.vcores[i];
1845 if (!vc)
1846 continue;
1847 spin_lock(&vc->lock);
1848 vc->lpcr = (vc->lpcr & ~mask) | lpcr;
1849 spin_unlock(&vc->lock);
1850 if (++cores_done >= kvm->arch.online_vcores)
1851 break;
1852 }
1853}
1854
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301855static void kvmppc_mmu_destroy_hv(struct kvm_vcpu *vcpu)
1856{
1857 return;
1858}
1859
Paul Mackerras32fad282012-05-04 02:32:53 +00001860static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001861{
1862 int err = 0;
1863 struct kvm *kvm = vcpu->kvm;
Aneesh Kumar K.V6c45b812013-07-02 11:15:17 +05301864 struct kvm_rma_info *ri = NULL;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001865 unsigned long hva;
1866 struct kvm_memory_slot *memslot;
1867 struct vm_area_struct *vma;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001868 unsigned long lpcr = 0, senc;
1869 unsigned long lpcr_mask = 0;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001870 unsigned long psize, porder;
1871 unsigned long rma_size;
1872 unsigned long rmls;
1873 unsigned long *physp;
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001874 unsigned long i, npages;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00001875 int srcu_idx;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001876
1877 mutex_lock(&kvm->lock);
1878 if (kvm->arch.rma_setup_done)
1879 goto out; /* another vcpu beat us to it */
1880
Paul Mackerras32fad282012-05-04 02:32:53 +00001881 /* Allocate hashed page table (if not done already) and reset it */
1882 if (!kvm->arch.hpt_virt) {
1883 err = kvmppc_alloc_hpt(kvm, NULL);
1884 if (err) {
1885 pr_err("KVM: Couldn't alloc HPT\n");
1886 goto out;
1887 }
1888 }
1889
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001890 /* Look up the memslot for guest physical address 0 */
Paul Mackerras2c9097e2012-09-11 13:27:01 +00001891 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001892 memslot = gfn_to_memslot(kvm, 0);
1893
1894 /* We must have some memory at 0 by now */
1895 err = -EINVAL;
1896 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
Paul Mackerras2c9097e2012-09-11 13:27:01 +00001897 goto out_srcu;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001898
1899 /* Look up the VMA for the start of this memory slot */
1900 hva = memslot->userspace_addr;
1901 down_read(&current->mm->mmap_sem);
1902 vma = find_vma(current->mm, hva);
1903 if (!vma || vma->vm_start > hva || (vma->vm_flags & VM_IO))
1904 goto up_out;
1905
1906 psize = vma_kernel_pagesize(vma);
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001907 porder = __ilog2(psize);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001908
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001909 /* Is this one of our preallocated RMAs? */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001910 if (vma->vm_file && vma->vm_file->f_op == &kvm_rma_fops &&
1911 hva == vma->vm_start)
1912 ri = vma->vm_file->private_data;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001913
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001914 up_read(&current->mm->mmap_sem);
1915
1916 if (!ri) {
1917 /* On POWER7, use VRMA; on PPC970, give up */
1918 err = -EPERM;
1919 if (cpu_has_feature(CPU_FTR_ARCH_201)) {
1920 pr_err("KVM: CPU requires an RMO\n");
Paul Mackerras2c9097e2012-09-11 13:27:01 +00001921 goto out_srcu;
Paul Mackerras9e368f22011-06-29 00:40:08 +00001922 }
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001923
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001924 /* We can handle 4k, 64k or 16M pages in the VRMA */
1925 err = -EINVAL;
1926 if (!(psize == 0x1000 || psize == 0x10000 ||
1927 psize == 0x1000000))
Paul Mackerras2c9097e2012-09-11 13:27:01 +00001928 goto out_srcu;
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001929
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001930 /* Update VRMASD field in the LPCR */
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001931 senc = slb_pgsize_encoding(psize);
Paul Mackerras697d3892011-12-12 12:36:37 +00001932 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
1933 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001934 lpcr_mask = LPCR_VRMASD;
1935 /* the -4 is to account for senc values starting at 0x10 */
1936 lpcr = senc << (LPCR_VRMASD_SH - 4);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001937
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001938 /* Create HPTEs in the hash page table for the VRMA */
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001939 kvmppc_map_vrma(vcpu, memslot, porder);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001940
1941 } else {
1942 /* Set up to use an RMO region */
Aneesh Kumar K.V6c45b812013-07-02 11:15:17 +05301943 rma_size = kvm_rma_pages;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001944 if (rma_size > memslot->npages)
1945 rma_size = memslot->npages;
1946 rma_size <<= PAGE_SHIFT;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001947 rmls = lpcr_rmls(rma_size);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001948 err = -EINVAL;
Chen Gang5d226ae2013-07-22 14:32:35 +08001949 if ((long)rmls < 0) {
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001950 pr_err("KVM: Can't use RMA of 0x%lx bytes\n", rma_size);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00001951 goto out_srcu;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001952 }
1953 atomic_inc(&ri->use_count);
1954 kvm->arch.rma = ri;
Paul Mackerras9e368f22011-06-29 00:40:08 +00001955
1956 /* Update LPCR and RMOR */
Paul Mackerras9e368f22011-06-29 00:40:08 +00001957 if (cpu_has_feature(CPU_FTR_ARCH_201)) {
1958 /* PPC970; insert RMLS value (split field) in HID4 */
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001959 lpcr_mask = (1ul << HID4_RMLS0_SH) |
1960 (3ul << HID4_RMLS2_SH) | HID4_RMOR;
1961 lpcr = ((rmls >> 2) << HID4_RMLS0_SH) |
Paul Mackerras9e368f22011-06-29 00:40:08 +00001962 ((rmls & 3) << HID4_RMLS2_SH);
1963 /* RMOR is also in HID4 */
1964 lpcr |= ((ri->base_pfn >> (26 - PAGE_SHIFT)) & 0xffff)
1965 << HID4_RMOR_SH;
1966 } else {
1967 /* POWER7 */
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001968 lpcr_mask = LPCR_VPM0 | LPCR_VRMA_L | LPCR_RMLS;
1969 lpcr = rmls << LPCR_RMLS_SH;
Aneesh Kumar K.V6c45b812013-07-02 11:15:17 +05301970 kvm->arch.rmor = ri->base_pfn << PAGE_SHIFT;
Paul Mackerras9e368f22011-06-29 00:40:08 +00001971 }
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001972 pr_info("KVM: Using RMO at %lx size %lx (LPCR = %lx)\n",
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001973 ri->base_pfn << PAGE_SHIFT, rma_size, lpcr);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001974
1975 /* Initialize phys addrs of pages in RMO */
Aneesh Kumar K.V6c45b812013-07-02 11:15:17 +05301976 npages = kvm_rma_pages;
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001977 porder = __ilog2(npages);
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00001978 physp = memslot->arch.slot_phys;
1979 if (physp) {
1980 if (npages > memslot->npages)
1981 npages = memslot->npages;
1982 spin_lock(&kvm->arch.slot_phys_lock);
1983 for (i = 0; i < npages; ++i)
1984 physp[i] = ((ri->base_pfn + i) << PAGE_SHIFT) +
1985 porder;
1986 spin_unlock(&kvm->arch.slot_phys_lock);
1987 }
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001988 }
1989
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001990 kvmppc_update_lpcr(kvm, lpcr, lpcr_mask);
1991
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001992 /* Order updates to kvm->arch.lpcr etc. vs. rma_setup_done */
1993 smp_wmb();
1994 kvm->arch.rma_setup_done = 1;
1995 err = 0;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00001996 out_srcu:
1997 srcu_read_unlock(&kvm->srcu, srcu_idx);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001998 out:
1999 mutex_unlock(&kvm->lock);
2000 return err;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002001
Paul Mackerrasc77162d2011-12-12 12:31:00 +00002002 up_out:
2003 up_read(&current->mm->mmap_sem);
Lai Jiangshan505d6422013-03-16 00:50:49 +08002004 goto out_srcu;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002005}
2006
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302007static int kvmppc_core_init_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002008{
Paul Mackerras32fad282012-05-04 02:32:53 +00002009 unsigned long lpcr, lpid;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002010
Paul Mackerras32fad282012-05-04 02:32:53 +00002011 /* Allocate the guest's logical partition ID */
2012
2013 lpid = kvmppc_alloc_lpid();
Chen Gang5d226ae2013-07-22 14:32:35 +08002014 if ((long)lpid < 0)
Paul Mackerras32fad282012-05-04 02:32:53 +00002015 return -ENOMEM;
2016 kvm->arch.lpid = lpid;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002017
Paul Mackerras1b400ba2012-11-21 23:28:08 +00002018 /*
2019 * Since we don't flush the TLB when tearing down a VM,
2020 * and this lpid might have previously been used,
2021 * make sure we flush on each core before running the new VM.
2022 */
2023 cpumask_setall(&kvm->arch.need_tlb_flush);
2024
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002025 kvm->arch.rma = NULL;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002026
Paul Mackerras9e368f22011-06-29 00:40:08 +00002027 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002028
Paul Mackerras9e368f22011-06-29 00:40:08 +00002029 if (cpu_has_feature(CPU_FTR_ARCH_201)) {
2030 /* PPC970; HID4 is effectively the LPCR */
Paul Mackerras9e368f22011-06-29 00:40:08 +00002031 kvm->arch.host_lpid = 0;
2032 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_HID4);
2033 lpcr &= ~((3 << HID4_LPID1_SH) | (0xful << HID4_LPID5_SH));
2034 lpcr |= ((lpid >> 4) << HID4_LPID1_SH) |
2035 ((lpid & 0xf) << HID4_LPID5_SH);
2036 } else {
2037 /* POWER7; init LPCR for virtual RMA mode */
2038 kvm->arch.host_lpid = mfspr(SPRN_LPID);
2039 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
2040 lpcr &= LPCR_PECE | LPCR_LPES;
2041 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
Paul Mackerras697d3892011-12-12 12:36:37 +00002042 LPCR_VPM0 | LPCR_VPM1;
2043 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
2044 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerras9e368f22011-06-29 00:40:08 +00002045 }
2046 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002047
Paul Mackerras342d3db2011-12-12 12:38:05 +00002048 kvm->arch.using_mmu_notifiers = !!cpu_has_feature(CPU_FTR_ARCH_206);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00002049 spin_lock_init(&kvm->arch.slot_phys_lock);
Paul Mackerras512691d2012-10-15 01:15:41 +00002050
2051 /*
2052 * Don't allow secondary CPU threads to come online
2053 * while any KVM VMs exist.
2054 */
2055 inhibit_secondary_onlining();
2056
David Gibson54738c02011-06-29 00:22:41 +00002057 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002058}
2059
Paul Mackerrasf1378b12013-09-27 15:33:43 +05302060static void kvmppc_free_vcores(struct kvm *kvm)
2061{
2062 long int i;
2063
2064 for (i = 0; i < KVM_MAX_VCORES; ++i)
2065 kfree(kvm->arch.vcores[i]);
2066 kvm->arch.online_vcores = 0;
2067}
2068
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302069static void kvmppc_core_destroy_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002070{
Paul Mackerras512691d2012-10-15 01:15:41 +00002071 uninhibit_secondary_onlining();
2072
Paul Mackerrasf1378b12013-09-27 15:33:43 +05302073 kvmppc_free_vcores(kvm);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002074 if (kvm->arch.rma) {
2075 kvm_release_rma(kvm->arch.rma);
2076 kvm->arch.rma = NULL;
2077 }
2078
Paul Mackerrasde56a942011-06-29 00:21:34 +00002079 kvmppc_free_hpt(kvm);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002080}
2081
2082/* We don't need to emulate any privileged instructions or dcbz */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302083static int kvmppc_core_emulate_op_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
2084 unsigned int inst, int *advance)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002085{
2086 return EMULATE_FAIL;
2087}
2088
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302089static int kvmppc_core_emulate_mtspr_hv(struct kvm_vcpu *vcpu, int sprn,
2090 ulong spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002091{
2092 return EMULATE_FAIL;
2093}
2094
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302095static int kvmppc_core_emulate_mfspr_hv(struct kvm_vcpu *vcpu, int sprn,
2096 ulong *spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002097{
2098 return EMULATE_FAIL;
2099}
2100
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302101static int kvmppc_core_check_processor_compat_hv(void)
2102{
2103 if (!cpu_has_feature(CPU_FTR_HVMODE))
2104 return -EIO;
2105 return 0;
2106}
2107
2108static long kvm_arch_vm_ioctl_hv(struct file *filp,
2109 unsigned int ioctl, unsigned long arg)
2110{
2111 struct kvm *kvm __maybe_unused = filp->private_data;
2112 void __user *argp = (void __user *)arg;
2113 long r;
2114
2115 switch (ioctl) {
2116
2117 case KVM_ALLOCATE_RMA: {
2118 struct kvm_allocate_rma rma;
2119 struct kvm *kvm = filp->private_data;
2120
2121 r = kvm_vm_ioctl_allocate_rma(kvm, &rma);
2122 if (r >= 0 && copy_to_user(argp, &rma, sizeof(rma)))
2123 r = -EFAULT;
2124 break;
2125 }
2126
2127 case KVM_PPC_ALLOCATE_HTAB: {
2128 u32 htab_order;
2129
2130 r = -EFAULT;
2131 if (get_user(htab_order, (u32 __user *)argp))
2132 break;
2133 r = kvmppc_alloc_reset_hpt(kvm, &htab_order);
2134 if (r)
2135 break;
2136 r = -EFAULT;
2137 if (put_user(htab_order, (u32 __user *)argp))
2138 break;
2139 r = 0;
2140 break;
2141 }
2142
2143 case KVM_PPC_GET_HTAB_FD: {
2144 struct kvm_get_htab_fd ghf;
2145
2146 r = -EFAULT;
2147 if (copy_from_user(&ghf, argp, sizeof(ghf)))
2148 break;
2149 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
2150 break;
2151 }
2152
2153 default:
2154 r = -ENOTTY;
2155 }
2156
2157 return r;
2158}
2159
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05302160static struct kvmppc_ops kvm_ops_hv = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302161 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_hv,
2162 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_hv,
2163 .get_one_reg = kvmppc_get_one_reg_hv,
2164 .set_one_reg = kvmppc_set_one_reg_hv,
2165 .vcpu_load = kvmppc_core_vcpu_load_hv,
2166 .vcpu_put = kvmppc_core_vcpu_put_hv,
2167 .set_msr = kvmppc_set_msr_hv,
2168 .vcpu_run = kvmppc_vcpu_run_hv,
2169 .vcpu_create = kvmppc_core_vcpu_create_hv,
2170 .vcpu_free = kvmppc_core_vcpu_free_hv,
2171 .check_requests = kvmppc_core_check_requests_hv,
2172 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_hv,
2173 .flush_memslot = kvmppc_core_flush_memslot_hv,
2174 .prepare_memory_region = kvmppc_core_prepare_memory_region_hv,
2175 .commit_memory_region = kvmppc_core_commit_memory_region_hv,
2176 .unmap_hva = kvm_unmap_hva_hv,
2177 .unmap_hva_range = kvm_unmap_hva_range_hv,
2178 .age_hva = kvm_age_hva_hv,
2179 .test_age_hva = kvm_test_age_hva_hv,
2180 .set_spte_hva = kvm_set_spte_hva_hv,
2181 .mmu_destroy = kvmppc_mmu_destroy_hv,
2182 .free_memslot = kvmppc_core_free_memslot_hv,
2183 .create_memslot = kvmppc_core_create_memslot_hv,
2184 .init_vm = kvmppc_core_init_vm_hv,
2185 .destroy_vm = kvmppc_core_destroy_vm_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302186 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_hv,
2187 .emulate_op = kvmppc_core_emulate_op_hv,
2188 .emulate_mtspr = kvmppc_core_emulate_mtspr_hv,
2189 .emulate_mfspr = kvmppc_core_emulate_mfspr_hv,
2190 .fast_vcpu_kick = kvmppc_fast_vcpu_kick_hv,
2191 .arch_vm_ioctl = kvm_arch_vm_ioctl_hv,
2192};
2193
2194static int kvmppc_book3s_init_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002195{
2196 int r;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05302197 /*
2198 * FIXME!! Do we need to check on all cpus ?
2199 */
2200 r = kvmppc_core_check_processor_compat_hv();
2201 if (r < 0)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002202 return r;
2203
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05302204 kvm_ops_hv.owner = THIS_MODULE;
2205 kvmppc_hv_ops = &kvm_ops_hv;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002206
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05302207 r = kvmppc_mmu_hv_init();
Paul Mackerrasde56a942011-06-29 00:21:34 +00002208 return r;
2209}
2210
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302211static void kvmppc_book3s_exit_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002212{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05302213 kvmppc_hv_ops = NULL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002214}
2215
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302216module_init(kvmppc_book3s_init_hv);
2217module_exit(kvmppc_book3s_exit_hv);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302218MODULE_LICENSE("GPL");