]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/powerpc/kvm/book3s_hv.c
kvm: powerpc: book3s: Add a new config variable CONFIG_KVM_BOOK3S_HV_POSSIBLE
[mirror_ubuntu-bionic-kernel.git] / arch / powerpc / kvm / book3s_hv.c
CommitLineData
de56a948
PM
1/*
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>
66b15db6 27#include <linux/export.h>
de56a948
PM
28#include <linux/fs.h>
29#include <linux/anon_inodes.h>
30#include <linux/cpumask.h>
aa04b4cc
PM
31#include <linux/spinlock.h>
32#include <linux/page-flags.h>
2c9097e4 33#include <linux/srcu.h>
de56a948
PM
34
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>
371fefd6 46#include <asm/cputhreads.h>
aa04b4cc 47#include <asm/page.h>
de1d9248 48#include <asm/hvcall.h>
ae3a197e 49#include <asm/switch_to.h>
512691d4 50#include <asm/smp.h>
de56a948 51#include <linux/gfp.h>
de56a948
PM
52#include <linux/vmalloc.h>
53#include <linux/highmem.h>
c77162de 54#include <linux/hugetlb.h>
de56a948
PM
55
56/* #define EXIT_DEBUG */
57/* #define EXIT_DEBUG_SIMPLE */
58/* #define EXIT_DEBUG_INT */
59
913d3ff9
PM
60/* Used to indicate that a guest page fault needs to be handled */
61#define RESUME_PAGE_FAULT (RESUME_GUEST | RESUME_FLAG_ARCH1)
62
c7b67670
PM
63/* Used as a "null" value for timebase values */
64#define TB_NIL (~(u64)0)
65
19ccb76a 66static void kvmppc_end_cede(struct kvm_vcpu *vcpu);
32fad281 67static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu);
19ccb76a 68
54695c30
BH
69void kvmppc_fast_vcpu_kick(struct kvm_vcpu *vcpu)
70{
71 int me;
72 int cpu = vcpu->cpu;
73 wait_queue_head_t *wqp;
74
75 wqp = kvm_arch_vcpu_wq(vcpu);
76 if (waitqueue_active(wqp)) {
77 wake_up_interruptible(wqp);
78 ++vcpu->stat.halt_wakeup;
79 }
80
81 me = get_cpu();
82
83 /* CPU points to the first thread of the core */
84 if (cpu != me && cpu >= 0 && cpu < nr_cpu_ids) {
85 int real_cpu = cpu + vcpu->arch.ptid;
86 if (paca[real_cpu].kvm_hstate.xics_phys)
87 xics_wake_cpu(real_cpu);
88 else if (cpu_online(cpu))
89 smp_send_reschedule(cpu);
90 }
91 put_cpu();
92}
93
c7b67670
PM
94/*
95 * We use the vcpu_load/put functions to measure stolen time.
96 * Stolen time is counted as time when either the vcpu is able to
97 * run as part of a virtual core, but the task running the vcore
98 * is preempted or sleeping, or when the vcpu needs something done
99 * in the kernel by the task running the vcpu, but that task is
100 * preempted or sleeping. Those two things have to be counted
101 * separately, since one of the vcpu tasks will take on the job
102 * of running the core, and the other vcpu tasks in the vcore will
103 * sleep waiting for it to do that, but that sleep shouldn't count
104 * as stolen time.
105 *
106 * Hence we accumulate stolen time when the vcpu can run as part of
107 * a vcore using vc->stolen_tb, and the stolen time when the vcpu
108 * needs its task to do other things in the kernel (for example,
109 * service a page fault) in busy_stolen. We don't accumulate
110 * stolen time for a vcore when it is inactive, or for a vcpu
111 * when it is in state RUNNING or NOTREADY. NOTREADY is a bit of
112 * a misnomer; it means that the vcpu task is not executing in
113 * the KVM_VCPU_RUN ioctl, i.e. it is in userspace or elsewhere in
114 * the kernel. We don't have any way of dividing up that time
115 * between time that the vcpu is genuinely stopped, time that
116 * the task is actively working on behalf of the vcpu, and time
117 * that the task is preempted, so we don't count any of it as
118 * stolen.
119 *
120 * Updates to busy_stolen are protected by arch.tbacct_lock;
121 * updates to vc->stolen_tb are protected by the arch.tbacct_lock
122 * of the vcpu that has taken responsibility for running the vcore
123 * (i.e. vc->runner). The stolen times are measured in units of
124 * timebase ticks. (Note that the != TB_NIL checks below are
125 * purely defensive; they should never fail.)
126 */
127
de56a948
PM
128void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
129{
0456ec4f
PM
130 struct kvmppc_vcore *vc = vcpu->arch.vcore;
131
c7b67670
PM
132 spin_lock(&vcpu->arch.tbacct_lock);
133 if (vc->runner == vcpu && vc->vcore_state != VCORE_INACTIVE &&
134 vc->preempt_tb != TB_NIL) {
0456ec4f 135 vc->stolen_tb += mftb() - vc->preempt_tb;
c7b67670
PM
136 vc->preempt_tb = TB_NIL;
137 }
138 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST &&
139 vcpu->arch.busy_preempt != TB_NIL) {
140 vcpu->arch.busy_stolen += mftb() - vcpu->arch.busy_preempt;
141 vcpu->arch.busy_preempt = TB_NIL;
142 }
143 spin_unlock(&vcpu->arch.tbacct_lock);
de56a948
PM
144}
145
146void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu)
147{
0456ec4f
PM
148 struct kvmppc_vcore *vc = vcpu->arch.vcore;
149
c7b67670 150 spin_lock(&vcpu->arch.tbacct_lock);
0456ec4f
PM
151 if (vc->runner == vcpu && vc->vcore_state != VCORE_INACTIVE)
152 vc->preempt_tb = mftb();
c7b67670
PM
153 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST)
154 vcpu->arch.busy_preempt = mftb();
155 spin_unlock(&vcpu->arch.tbacct_lock);
de56a948
PM
156}
157
de56a948
PM
158void kvmppc_set_msr(struct kvm_vcpu *vcpu, u64 msr)
159{
160 vcpu->arch.shregs.msr = msr;
19ccb76a 161 kvmppc_end_cede(vcpu);
de56a948
PM
162}
163
164void kvmppc_set_pvr(struct kvm_vcpu *vcpu, u32 pvr)
165{
166 vcpu->arch.pvr = pvr;
167}
168
388cc6e1
PM
169int kvmppc_set_arch_compat(struct kvm_vcpu *vcpu, u32 arch_compat)
170{
171 unsigned long pcr = 0;
172 struct kvmppc_vcore *vc = vcpu->arch.vcore;
173
174 if (arch_compat) {
175 if (!cpu_has_feature(CPU_FTR_ARCH_206))
176 return -EINVAL; /* 970 has no compat mode support */
177
178 switch (arch_compat) {
179 case PVR_ARCH_205:
180 pcr = PCR_ARCH_205;
181 break;
182 case PVR_ARCH_206:
183 case PVR_ARCH_206p:
184 break;
185 default:
186 return -EINVAL;
187 }
188 }
189
190 spin_lock(&vc->lock);
191 vc->arch_compat = arch_compat;
192 vc->pcr = pcr;
193 spin_unlock(&vc->lock);
194
195 return 0;
196}
197
de56a948
PM
198void kvmppc_dump_regs(struct kvm_vcpu *vcpu)
199{
200 int r;
201
202 pr_err("vcpu %p (%d):\n", vcpu, vcpu->vcpu_id);
203 pr_err("pc = %.16lx msr = %.16llx trap = %x\n",
204 vcpu->arch.pc, vcpu->arch.shregs.msr, vcpu->arch.trap);
205 for (r = 0; r < 16; ++r)
206 pr_err("r%2d = %.16lx r%d = %.16lx\n",
207 r, kvmppc_get_gpr(vcpu, r),
208 r+16, kvmppc_get_gpr(vcpu, r+16));
209 pr_err("ctr = %.16lx lr = %.16lx\n",
210 vcpu->arch.ctr, vcpu->arch.lr);
211 pr_err("srr0 = %.16llx srr1 = %.16llx\n",
212 vcpu->arch.shregs.srr0, vcpu->arch.shregs.srr1);
213 pr_err("sprg0 = %.16llx sprg1 = %.16llx\n",
214 vcpu->arch.shregs.sprg0, vcpu->arch.shregs.sprg1);
215 pr_err("sprg2 = %.16llx sprg3 = %.16llx\n",
216 vcpu->arch.shregs.sprg2, vcpu->arch.shregs.sprg3);
217 pr_err("cr = %.8x xer = %.16lx dsisr = %.8x\n",
218 vcpu->arch.cr, vcpu->arch.xer, vcpu->arch.shregs.dsisr);
219 pr_err("dar = %.16llx\n", vcpu->arch.shregs.dar);
220 pr_err("fault dar = %.16lx dsisr = %.8x\n",
221 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
222 pr_err("SLB (%d entries):\n", vcpu->arch.slb_max);
223 for (r = 0; r < vcpu->arch.slb_max; ++r)
224 pr_err(" ESID = %.16llx VSID = %.16llx\n",
225 vcpu->arch.slb[r].orige, vcpu->arch.slb[r].origv);
226 pr_err("lpcr = %.16lx sdr1 = %.16lx last_inst = %.8x\n",
a0144e2a 227 vcpu->arch.vcore->lpcr, vcpu->kvm->arch.sdr1,
de56a948
PM
228 vcpu->arch.last_inst);
229}
230
a8606e20
PM
231struct kvm_vcpu *kvmppc_find_vcpu(struct kvm *kvm, int id)
232{
233 int r;
234 struct kvm_vcpu *v, *ret = NULL;
235
236 mutex_lock(&kvm->lock);
237 kvm_for_each_vcpu(r, v, kvm) {
238 if (v->vcpu_id == id) {
239 ret = v;
240 break;
241 }
242 }
243 mutex_unlock(&kvm->lock);
244 return ret;
245}
246
247static void init_vpa(struct kvm_vcpu *vcpu, struct lppaca *vpa)
248{
f13c13a0 249 vpa->__old_status |= LPPACA_OLD_SHARED_PROC;
a8606e20
PM
250 vpa->yield_count = 1;
251}
252
55b665b0
PM
253static int set_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *v,
254 unsigned long addr, unsigned long len)
255{
256 /* check address is cacheline aligned */
257 if (addr & (L1_CACHE_BYTES - 1))
258 return -EINVAL;
259 spin_lock(&vcpu->arch.vpa_update_lock);
260 if (v->next_gpa != addr || v->len != len) {
261 v->next_gpa = addr;
262 v->len = addr ? len : 0;
263 v->update_pending = 1;
264 }
265 spin_unlock(&vcpu->arch.vpa_update_lock);
266 return 0;
267}
268
2e25aa5f
PM
269/* Length for a per-processor buffer is passed in at offset 4 in the buffer */
270struct reg_vpa {
271 u32 dummy;
272 union {
273 u16 hword;
274 u32 word;
275 } length;
276};
277
278static int vpa_is_registered(struct kvmppc_vpa *vpap)
279{
280 if (vpap->update_pending)
281 return vpap->next_gpa != 0;
282 return vpap->pinned_addr != NULL;
283}
284
a8606e20
PM
285static unsigned long do_h_register_vpa(struct kvm_vcpu *vcpu,
286 unsigned long flags,
287 unsigned long vcpuid, unsigned long vpa)
288{
289 struct kvm *kvm = vcpu->kvm;
93e60249 290 unsigned long len, nb;
a8606e20
PM
291 void *va;
292 struct kvm_vcpu *tvcpu;
2e25aa5f
PM
293 int err;
294 int subfunc;
295 struct kvmppc_vpa *vpap;
a8606e20
PM
296
297 tvcpu = kvmppc_find_vcpu(kvm, vcpuid);
298 if (!tvcpu)
299 return H_PARAMETER;
300
2e25aa5f
PM
301 subfunc = (flags >> H_VPA_FUNC_SHIFT) & H_VPA_FUNC_MASK;
302 if (subfunc == H_VPA_REG_VPA || subfunc == H_VPA_REG_DTL ||
303 subfunc == H_VPA_REG_SLB) {
304 /* Registering new area - address must be cache-line aligned */
305 if ((vpa & (L1_CACHE_BYTES - 1)) || !vpa)
a8606e20 306 return H_PARAMETER;
2e25aa5f
PM
307
308 /* convert logical addr to kernel addr and read length */
93e60249
PM
309 va = kvmppc_pin_guest_page(kvm, vpa, &nb);
310 if (va == NULL)
b2b2f165 311 return H_PARAMETER;
2e25aa5f
PM
312 if (subfunc == H_VPA_REG_VPA)
313 len = ((struct reg_vpa *)va)->length.hword;
a8606e20 314 else
2e25aa5f 315 len = ((struct reg_vpa *)va)->length.word;
c35635ef 316 kvmppc_unpin_guest_page(kvm, va, vpa, false);
2e25aa5f
PM
317
318 /* Check length */
319 if (len > nb || len < sizeof(struct reg_vpa))
320 return H_PARAMETER;
321 } else {
322 vpa = 0;
323 len = 0;
324 }
325
326 err = H_PARAMETER;
327 vpap = NULL;
328 spin_lock(&tvcpu->arch.vpa_update_lock);
329
330 switch (subfunc) {
331 case H_VPA_REG_VPA: /* register VPA */
332 if (len < sizeof(struct lppaca))
a8606e20 333 break;
2e25aa5f
PM
334 vpap = &tvcpu->arch.vpa;
335 err = 0;
336 break;
337
338 case H_VPA_REG_DTL: /* register DTL */
339 if (len < sizeof(struct dtl_entry))
a8606e20 340 break;
2e25aa5f
PM
341 len -= len % sizeof(struct dtl_entry);
342
343 /* Check that they have previously registered a VPA */
344 err = H_RESOURCE;
345 if (!vpa_is_registered(&tvcpu->arch.vpa))
a8606e20 346 break;
2e25aa5f
PM
347
348 vpap = &tvcpu->arch.dtl;
349 err = 0;
350 break;
351
352 case H_VPA_REG_SLB: /* register SLB shadow buffer */
353 /* Check that they have previously registered a VPA */
354 err = H_RESOURCE;
355 if (!vpa_is_registered(&tvcpu->arch.vpa))
a8606e20 356 break;
2e25aa5f
PM
357
358 vpap = &tvcpu->arch.slb_shadow;
359 err = 0;
360 break;
361
362 case H_VPA_DEREG_VPA: /* deregister VPA */
363 /* Check they don't still have a DTL or SLB buf registered */
364 err = H_RESOURCE;
365 if (vpa_is_registered(&tvcpu->arch.dtl) ||
366 vpa_is_registered(&tvcpu->arch.slb_shadow))
a8606e20 367 break;
2e25aa5f
PM
368
369 vpap = &tvcpu->arch.vpa;
370 err = 0;
371 break;
372
373 case H_VPA_DEREG_DTL: /* deregister DTL */
374 vpap = &tvcpu->arch.dtl;
375 err = 0;
376 break;
377
378 case H_VPA_DEREG_SLB: /* deregister SLB shadow buffer */
379 vpap = &tvcpu->arch.slb_shadow;
380 err = 0;
381 break;
382 }
383
384 if (vpap) {
385 vpap->next_gpa = vpa;
386 vpap->len = len;
387 vpap->update_pending = 1;
a8606e20 388 }
93e60249 389
2e25aa5f
PM
390 spin_unlock(&tvcpu->arch.vpa_update_lock);
391
93e60249 392 return err;
a8606e20
PM
393}
394
081f323b 395static void kvmppc_update_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *vpap)
2e25aa5f 396{
081f323b 397 struct kvm *kvm = vcpu->kvm;
2e25aa5f
PM
398 void *va;
399 unsigned long nb;
081f323b 400 unsigned long gpa;
2e25aa5f 401
081f323b
PM
402 /*
403 * We need to pin the page pointed to by vpap->next_gpa,
404 * but we can't call kvmppc_pin_guest_page under the lock
405 * as it does get_user_pages() and down_read(). So we
406 * have to drop the lock, pin the page, then get the lock
407 * again and check that a new area didn't get registered
408 * in the meantime.
409 */
410 for (;;) {
411 gpa = vpap->next_gpa;
412 spin_unlock(&vcpu->arch.vpa_update_lock);
413 va = NULL;
414 nb = 0;
415 if (gpa)
c35635ef 416 va = kvmppc_pin_guest_page(kvm, gpa, &nb);
081f323b
PM
417 spin_lock(&vcpu->arch.vpa_update_lock);
418 if (gpa == vpap->next_gpa)
419 break;
420 /* sigh... unpin that one and try again */
421 if (va)
c35635ef 422 kvmppc_unpin_guest_page(kvm, va, gpa, false);
081f323b
PM
423 }
424
425 vpap->update_pending = 0;
426 if (va && nb < vpap->len) {
427 /*
428 * If it's now too short, it must be that userspace
429 * has changed the mappings underlying guest memory,
430 * so unregister the region.
431 */
c35635ef 432 kvmppc_unpin_guest_page(kvm, va, gpa, false);
081f323b 433 va = NULL;
2e25aa5f
PM
434 }
435 if (vpap->pinned_addr)
c35635ef
PM
436 kvmppc_unpin_guest_page(kvm, vpap->pinned_addr, vpap->gpa,
437 vpap->dirty);
438 vpap->gpa = gpa;
2e25aa5f 439 vpap->pinned_addr = va;
c35635ef 440 vpap->dirty = false;
2e25aa5f
PM
441 if (va)
442 vpap->pinned_end = va + vpap->len;
443}
444
445static void kvmppc_update_vpas(struct kvm_vcpu *vcpu)
446{
2f12f034
PM
447 if (!(vcpu->arch.vpa.update_pending ||
448 vcpu->arch.slb_shadow.update_pending ||
449 vcpu->arch.dtl.update_pending))
450 return;
451
2e25aa5f
PM
452 spin_lock(&vcpu->arch.vpa_update_lock);
453 if (vcpu->arch.vpa.update_pending) {
081f323b 454 kvmppc_update_vpa(vcpu, &vcpu->arch.vpa);
55b665b0
PM
455 if (vcpu->arch.vpa.pinned_addr)
456 init_vpa(vcpu, vcpu->arch.vpa.pinned_addr);
2e25aa5f
PM
457 }
458 if (vcpu->arch.dtl.update_pending) {
081f323b 459 kvmppc_update_vpa(vcpu, &vcpu->arch.dtl);
2e25aa5f
PM
460 vcpu->arch.dtl_ptr = vcpu->arch.dtl.pinned_addr;
461 vcpu->arch.dtl_index = 0;
462 }
463 if (vcpu->arch.slb_shadow.update_pending)
081f323b 464 kvmppc_update_vpa(vcpu, &vcpu->arch.slb_shadow);
2e25aa5f
PM
465 spin_unlock(&vcpu->arch.vpa_update_lock);
466}
467
c7b67670
PM
468/*
469 * Return the accumulated stolen time for the vcore up until `now'.
470 * The caller should hold the vcore lock.
471 */
472static u64 vcore_stolen_time(struct kvmppc_vcore *vc, u64 now)
473{
474 u64 p;
475
476 /*
477 * If we are the task running the vcore, then since we hold
478 * the vcore lock, we can't be preempted, so stolen_tb/preempt_tb
479 * can't be updated, so we don't need the tbacct_lock.
480 * If the vcore is inactive, it can't become active (since we
481 * hold the vcore lock), so the vcpu load/put functions won't
482 * update stolen_tb/preempt_tb, and we don't need tbacct_lock.
483 */
484 if (vc->vcore_state != VCORE_INACTIVE &&
485 vc->runner->arch.run_task != current) {
486 spin_lock(&vc->runner->arch.tbacct_lock);
487 p = vc->stolen_tb;
488 if (vc->preempt_tb != TB_NIL)
489 p += now - vc->preempt_tb;
490 spin_unlock(&vc->runner->arch.tbacct_lock);
491 } else {
492 p = vc->stolen_tb;
493 }
494 return p;
495}
496
0456ec4f
PM
497static void kvmppc_create_dtl_entry(struct kvm_vcpu *vcpu,
498 struct kvmppc_vcore *vc)
499{
500 struct dtl_entry *dt;
501 struct lppaca *vpa;
c7b67670
PM
502 unsigned long stolen;
503 unsigned long core_stolen;
504 u64 now;
0456ec4f
PM
505
506 dt = vcpu->arch.dtl_ptr;
507 vpa = vcpu->arch.vpa.pinned_addr;
c7b67670
PM
508 now = mftb();
509 core_stolen = vcore_stolen_time(vc, now);
510 stolen = core_stolen - vcpu->arch.stolen_logged;
511 vcpu->arch.stolen_logged = core_stolen;
512 spin_lock(&vcpu->arch.tbacct_lock);
513 stolen += vcpu->arch.busy_stolen;
514 vcpu->arch.busy_stolen = 0;
515 spin_unlock(&vcpu->arch.tbacct_lock);
0456ec4f
PM
516 if (!dt || !vpa)
517 return;
518 memset(dt, 0, sizeof(struct dtl_entry));
519 dt->dispatch_reason = 7;
520 dt->processor_id = vc->pcpu + vcpu->arch.ptid;
93b0f4dc 521 dt->timebase = now + vc->tb_offset;
c7b67670 522 dt->enqueue_to_dispatch_time = stolen;
0456ec4f
PM
523 dt->srr0 = kvmppc_get_pc(vcpu);
524 dt->srr1 = vcpu->arch.shregs.msr;
525 ++dt;
526 if (dt == vcpu->arch.dtl.pinned_end)
527 dt = vcpu->arch.dtl.pinned_addr;
528 vcpu->arch.dtl_ptr = dt;
529 /* order writing *dt vs. writing vpa->dtl_idx */
530 smp_wmb();
531 vpa->dtl_idx = ++vcpu->arch.dtl_index;
c35635ef 532 vcpu->arch.dtl.dirty = true;
0456ec4f
PM
533}
534
a8606e20
PM
535int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
536{
537 unsigned long req = kvmppc_get_gpr(vcpu, 3);
538 unsigned long target, ret = H_SUCCESS;
539 struct kvm_vcpu *tvcpu;
8e591cb7 540 int idx, rc;
a8606e20
PM
541
542 switch (req) {
c77162de 543 case H_ENTER:
2c9097e4 544 idx = srcu_read_lock(&vcpu->kvm->srcu);
c77162de
PM
545 ret = kvmppc_virtmode_h_enter(vcpu, kvmppc_get_gpr(vcpu, 4),
546 kvmppc_get_gpr(vcpu, 5),
547 kvmppc_get_gpr(vcpu, 6),
548 kvmppc_get_gpr(vcpu, 7));
2c9097e4 549 srcu_read_unlock(&vcpu->kvm->srcu, idx);
c77162de 550 break;
a8606e20 551 case H_CEDE:
a8606e20
PM
552 break;
553 case H_PROD:
554 target = kvmppc_get_gpr(vcpu, 4);
555 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
556 if (!tvcpu) {
557 ret = H_PARAMETER;
558 break;
559 }
560 tvcpu->arch.prodded = 1;
561 smp_mb();
562 if (vcpu->arch.ceded) {
563 if (waitqueue_active(&vcpu->wq)) {
564 wake_up_interruptible(&vcpu->wq);
565 vcpu->stat.halt_wakeup++;
566 }
567 }
568 break;
569 case H_CONFER:
42d7604d
PM
570 target = kvmppc_get_gpr(vcpu, 4);
571 if (target == -1)
572 break;
573 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
574 if (!tvcpu) {
575 ret = H_PARAMETER;
576 break;
577 }
578 kvm_vcpu_yield_to(tvcpu);
a8606e20
PM
579 break;
580 case H_REGISTER_VPA:
581 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
582 kvmppc_get_gpr(vcpu, 5),
583 kvmppc_get_gpr(vcpu, 6));
584 break;
8e591cb7
ME
585 case H_RTAS:
586 if (list_empty(&vcpu->kvm->arch.rtas_tokens))
587 return RESUME_HOST;
588
589 rc = kvmppc_rtas_hcall(vcpu);
590
591 if (rc == -ENOENT)
592 return RESUME_HOST;
593 else if (rc == 0)
594 break;
595
596 /* Send the error out to userspace via KVM_RUN */
597 return rc;
bc5ad3f3
BH
598
599 case H_XIRR:
600 case H_CPPR:
601 case H_EOI:
602 case H_IPI:
8e44ddc3
PM
603 case H_IPOLL:
604 case H_XIRR_X:
bc5ad3f3
BH
605 if (kvmppc_xics_enabled(vcpu)) {
606 ret = kvmppc_xics_hcall(vcpu, req);
607 break;
608 } /* fallthrough */
a8606e20
PM
609 default:
610 return RESUME_HOST;
611 }
612 kvmppc_set_gpr(vcpu, 3, ret);
613 vcpu->arch.hcall_needed = 0;
614 return RESUME_GUEST;
615}
616
de56a948
PM
617static int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu,
618 struct task_struct *tsk)
619{
620 int r = RESUME_HOST;
621
622 vcpu->stat.sum_exits++;
623
624 run->exit_reason = KVM_EXIT_UNKNOWN;
625 run->ready_for_interrupt_injection = 1;
626 switch (vcpu->arch.trap) {
627 /* We're good on these - the host merely wanted to get our attention */
628 case BOOK3S_INTERRUPT_HV_DECREMENTER:
629 vcpu->stat.dec_exits++;
630 r = RESUME_GUEST;
631 break;
632 case BOOK3S_INTERRUPT_EXTERNAL:
633 vcpu->stat.ext_intr_exits++;
634 r = RESUME_GUEST;
635 break;
636 case BOOK3S_INTERRUPT_PERFMON:
637 r = RESUME_GUEST;
638 break;
b4072df4
PM
639 case BOOK3S_INTERRUPT_MACHINE_CHECK:
640 /*
641 * Deliver a machine check interrupt to the guest.
642 * We have to do this, even if the host has handled the
643 * machine check, because machine checks use SRR0/1 and
644 * the interrupt might have trashed guest state in them.
645 */
646 kvmppc_book3s_queue_irqprio(vcpu,
647 BOOK3S_INTERRUPT_MACHINE_CHECK);
648 r = RESUME_GUEST;
649 break;
de56a948
PM
650 case BOOK3S_INTERRUPT_PROGRAM:
651 {
652 ulong flags;
653 /*
654 * Normally program interrupts are delivered directly
655 * to the guest by the hardware, but we can get here
656 * as a result of a hypervisor emulation interrupt
657 * (e40) getting turned into a 700 by BML RTAS.
658 */
659 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
660 kvmppc_core_queue_program(vcpu, flags);
661 r = RESUME_GUEST;
662 break;
663 }
664 case BOOK3S_INTERRUPT_SYSCALL:
665 {
666 /* hcall - punt to userspace */
667 int i;
668
669 if (vcpu->arch.shregs.msr & MSR_PR) {
670 /* sc 1 from userspace - reflect to guest syscall */
671 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_SYSCALL);
672 r = RESUME_GUEST;
673 break;
674 }
675 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
676 for (i = 0; i < 9; ++i)
677 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
678 run->exit_reason = KVM_EXIT_PAPR_HCALL;
679 vcpu->arch.hcall_needed = 1;
680 r = RESUME_HOST;
681 break;
682 }
683 /*
342d3db7
PM
684 * We get these next two if the guest accesses a page which it thinks
685 * it has mapped but which is not actually present, either because
686 * it is for an emulated I/O device or because the corresonding
687 * host page has been paged out. Any other HDSI/HISI interrupts
688 * have been handled already.
de56a948
PM
689 */
690 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
913d3ff9 691 r = RESUME_PAGE_FAULT;
de56a948
PM
692 break;
693 case BOOK3S_INTERRUPT_H_INST_STORAGE:
913d3ff9
PM
694 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
695 vcpu->arch.fault_dsisr = 0;
696 r = RESUME_PAGE_FAULT;
de56a948
PM
697 break;
698 /*
699 * This occurs if the guest executes an illegal instruction.
700 * We just generate a program interrupt to the guest, since
701 * we don't emulate any guest instructions at this stage.
702 */
703 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
704 kvmppc_core_queue_program(vcpu, 0x80000);
705 r = RESUME_GUEST;
706 break;
707 default:
708 kvmppc_dump_regs(vcpu);
709 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
710 vcpu->arch.trap, kvmppc_get_pc(vcpu),
711 vcpu->arch.shregs.msr);
f3271d4c 712 run->hw.hardware_exit_reason = vcpu->arch.trap;
de56a948 713 r = RESUME_HOST;
de56a948
PM
714 break;
715 }
716
de56a948
PM
717 return r;
718}
719
720int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
87916442 721 struct kvm_sregs *sregs)
de56a948
PM
722{
723 int i;
724
de56a948 725 memset(sregs, 0, sizeof(struct kvm_sregs));
87916442 726 sregs->pvr = vcpu->arch.pvr;
de56a948
PM
727 for (i = 0; i < vcpu->arch.slb_max; i++) {
728 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
729 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
730 }
731
732 return 0;
733}
734
735int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
87916442 736 struct kvm_sregs *sregs)
de56a948
PM
737{
738 int i, j;
739
740 kvmppc_set_pvr(vcpu, sregs->pvr);
741
742 j = 0;
743 for (i = 0; i < vcpu->arch.slb_nr; i++) {
744 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
745 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
746 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
747 ++j;
748 }
749 }
750 vcpu->arch.slb_max = j;
751
752 return 0;
753}
754
a0144e2a
PM
755static void kvmppc_set_lpcr(struct kvm_vcpu *vcpu, u64 new_lpcr)
756{
757 struct kvmppc_vcore *vc = vcpu->arch.vcore;
758 u64 mask;
759
760 spin_lock(&vc->lock);
761 /*
762 * Userspace can only modify DPFD (default prefetch depth),
763 * ILE (interrupt little-endian) and TC (translation control).
764 */
765 mask = LPCR_DPFD | LPCR_ILE | LPCR_TC;
766 vc->lpcr = (vc->lpcr & ~mask) | (new_lpcr & mask);
767 spin_unlock(&vc->lock);
768}
769
a136a8bd 770int kvmppc_get_one_reg(struct kvm_vcpu *vcpu, u64 id, union kvmppc_one_reg *val)
31f3438e 771{
a136a8bd
PM
772 int r = 0;
773 long int i;
31f3438e 774
a136a8bd 775 switch (id) {
31f3438e 776 case KVM_REG_PPC_HIOR:
a136a8bd
PM
777 *val = get_reg_val(id, 0);
778 break;
779 case KVM_REG_PPC_DABR:
780 *val = get_reg_val(id, vcpu->arch.dabr);
781 break;
782 case KVM_REG_PPC_DSCR:
783 *val = get_reg_val(id, vcpu->arch.dscr);
784 break;
785 case KVM_REG_PPC_PURR:
786 *val = get_reg_val(id, vcpu->arch.purr);
787 break;
788 case KVM_REG_PPC_SPURR:
789 *val = get_reg_val(id, vcpu->arch.spurr);
790 break;
791 case KVM_REG_PPC_AMR:
792 *val = get_reg_val(id, vcpu->arch.amr);
793 break;
794 case KVM_REG_PPC_UAMOR:
795 *val = get_reg_val(id, vcpu->arch.uamor);
796 break;
797 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRA:
798 i = id - KVM_REG_PPC_MMCR0;
799 *val = get_reg_val(id, vcpu->arch.mmcr[i]);
800 break;
801 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
802 i = id - KVM_REG_PPC_PMC1;
803 *val = get_reg_val(id, vcpu->arch.pmc[i]);
31f3438e 804 break;
14941789
PM
805 case KVM_REG_PPC_SIAR:
806 *val = get_reg_val(id, vcpu->arch.siar);
807 break;
808 case KVM_REG_PPC_SDAR:
809 *val = get_reg_val(id, vcpu->arch.sdar);
810 break;
a8bd19ef
PM
811#ifdef CONFIG_VSX
812 case KVM_REG_PPC_FPR0 ... KVM_REG_PPC_FPR31:
813 if (cpu_has_feature(CPU_FTR_VSX)) {
814 /* VSX => FP reg i is stored in arch.vsr[2*i] */
815 long int i = id - KVM_REG_PPC_FPR0;
816 *val = get_reg_val(id, vcpu->arch.vsr[2 * i]);
817 } else {
818 /* let generic code handle it */
819 r = -EINVAL;
820 }
821 break;
822 case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31:
823 if (cpu_has_feature(CPU_FTR_VSX)) {
824 long int i = id - KVM_REG_PPC_VSR0;
825 val->vsxval[0] = vcpu->arch.vsr[2 * i];
826 val->vsxval[1] = vcpu->arch.vsr[2 * i + 1];
827 } else {
828 r = -ENXIO;
829 }
830 break;
831#endif /* CONFIG_VSX */
55b665b0
PM
832 case KVM_REG_PPC_VPA_ADDR:
833 spin_lock(&vcpu->arch.vpa_update_lock);
834 *val = get_reg_val(id, vcpu->arch.vpa.next_gpa);
835 spin_unlock(&vcpu->arch.vpa_update_lock);
836 break;
837 case KVM_REG_PPC_VPA_SLB:
838 spin_lock(&vcpu->arch.vpa_update_lock);
839 val->vpaval.addr = vcpu->arch.slb_shadow.next_gpa;
840 val->vpaval.length = vcpu->arch.slb_shadow.len;
841 spin_unlock(&vcpu->arch.vpa_update_lock);
842 break;
843 case KVM_REG_PPC_VPA_DTL:
844 spin_lock(&vcpu->arch.vpa_update_lock);
845 val->vpaval.addr = vcpu->arch.dtl.next_gpa;
846 val->vpaval.length = vcpu->arch.dtl.len;
847 spin_unlock(&vcpu->arch.vpa_update_lock);
848 break;
93b0f4dc
PM
849 case KVM_REG_PPC_TB_OFFSET:
850 *val = get_reg_val(id, vcpu->arch.vcore->tb_offset);
851 break;
a0144e2a
PM
852 case KVM_REG_PPC_LPCR:
853 *val = get_reg_val(id, vcpu->arch.vcore->lpcr);
854 break;
4b8473c9
PM
855 case KVM_REG_PPC_PPR:
856 *val = get_reg_val(id, vcpu->arch.ppr);
857 break;
388cc6e1
PM
858 case KVM_REG_PPC_ARCH_COMPAT:
859 *val = get_reg_val(id, vcpu->arch.vcore->arch_compat);
860 break;
31f3438e 861 default:
a136a8bd 862 r = -EINVAL;
31f3438e
PM
863 break;
864 }
865
866 return r;
867}
868
a136a8bd 869int kvmppc_set_one_reg(struct kvm_vcpu *vcpu, u64 id, union kvmppc_one_reg *val)
31f3438e 870{
a136a8bd
PM
871 int r = 0;
872 long int i;
55b665b0 873 unsigned long addr, len;
31f3438e 874
a136a8bd 875 switch (id) {
31f3438e 876 case KVM_REG_PPC_HIOR:
31f3438e 877 /* Only allow this to be set to zero */
a136a8bd 878 if (set_reg_val(id, *val))
31f3438e
PM
879 r = -EINVAL;
880 break;
a136a8bd
PM
881 case KVM_REG_PPC_DABR:
882 vcpu->arch.dabr = set_reg_val(id, *val);
883 break;
884 case KVM_REG_PPC_DSCR:
885 vcpu->arch.dscr = set_reg_val(id, *val);
886 break;
887 case KVM_REG_PPC_PURR:
888 vcpu->arch.purr = set_reg_val(id, *val);
889 break;
890 case KVM_REG_PPC_SPURR:
891 vcpu->arch.spurr = set_reg_val(id, *val);
892 break;
893 case KVM_REG_PPC_AMR:
894 vcpu->arch.amr = set_reg_val(id, *val);
895 break;
896 case KVM_REG_PPC_UAMOR:
897 vcpu->arch.uamor = set_reg_val(id, *val);
898 break;
899 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRA:
900 i = id - KVM_REG_PPC_MMCR0;
901 vcpu->arch.mmcr[i] = set_reg_val(id, *val);
902 break;
903 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
904 i = id - KVM_REG_PPC_PMC1;
905 vcpu->arch.pmc[i] = set_reg_val(id, *val);
906 break;
14941789
PM
907 case KVM_REG_PPC_SIAR:
908 vcpu->arch.siar = set_reg_val(id, *val);
909 break;
910 case KVM_REG_PPC_SDAR:
911 vcpu->arch.sdar = set_reg_val(id, *val);
912 break;
a8bd19ef
PM
913#ifdef CONFIG_VSX
914 case KVM_REG_PPC_FPR0 ... KVM_REG_PPC_FPR31:
915 if (cpu_has_feature(CPU_FTR_VSX)) {
916 /* VSX => FP reg i is stored in arch.vsr[2*i] */
917 long int i = id - KVM_REG_PPC_FPR0;
918 vcpu->arch.vsr[2 * i] = set_reg_val(id, *val);
919 } else {
920 /* let generic code handle it */
921 r = -EINVAL;
922 }
923 break;
924 case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31:
925 if (cpu_has_feature(CPU_FTR_VSX)) {
926 long int i = id - KVM_REG_PPC_VSR0;
927 vcpu->arch.vsr[2 * i] = val->vsxval[0];
928 vcpu->arch.vsr[2 * i + 1] = val->vsxval[1];
929 } else {
930 r = -ENXIO;
931 }
932 break;
933#endif /* CONFIG_VSX */
55b665b0
PM
934 case KVM_REG_PPC_VPA_ADDR:
935 addr = set_reg_val(id, *val);
936 r = -EINVAL;
937 if (!addr && (vcpu->arch.slb_shadow.next_gpa ||
938 vcpu->arch.dtl.next_gpa))
939 break;
940 r = set_vpa(vcpu, &vcpu->arch.vpa, addr, sizeof(struct lppaca));
941 break;
942 case KVM_REG_PPC_VPA_SLB:
943 addr = val->vpaval.addr;
944 len = val->vpaval.length;
945 r = -EINVAL;
946 if (addr && !vcpu->arch.vpa.next_gpa)
947 break;
948 r = set_vpa(vcpu, &vcpu->arch.slb_shadow, addr, len);
949 break;
950 case KVM_REG_PPC_VPA_DTL:
951 addr = val->vpaval.addr;
952 len = val->vpaval.length;
953 r = -EINVAL;
9f8c8c78
PM
954 if (addr && (len < sizeof(struct dtl_entry) ||
955 !vcpu->arch.vpa.next_gpa))
55b665b0
PM
956 break;
957 len -= len % sizeof(struct dtl_entry);
958 r = set_vpa(vcpu, &vcpu->arch.dtl, addr, len);
959 break;
93b0f4dc
PM
960 case KVM_REG_PPC_TB_OFFSET:
961 /* round up to multiple of 2^24 */
962 vcpu->arch.vcore->tb_offset =
963 ALIGN(set_reg_val(id, *val), 1UL << 24);
964 break;
a0144e2a
PM
965 case KVM_REG_PPC_LPCR:
966 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val));
967 break;
4b8473c9
PM
968 case KVM_REG_PPC_PPR:
969 vcpu->arch.ppr = set_reg_val(id, *val);
970 break;
388cc6e1
PM
971 case KVM_REG_PPC_ARCH_COMPAT:
972 r = kvmppc_set_arch_compat(vcpu, set_reg_val(id, *val));
973 break;
31f3438e 974 default:
a136a8bd 975 r = -EINVAL;
31f3438e
PM
976 break;
977 }
978
979 return r;
980}
981
de56a948
PM
982int kvmppc_core_check_processor_compat(void)
983{
9e368f29 984 if (cpu_has_feature(CPU_FTR_HVMODE))
de56a948
PM
985 return 0;
986 return -EIO;
987}
988
989struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id)
990{
991 struct kvm_vcpu *vcpu;
371fefd6
PM
992 int err = -EINVAL;
993 int core;
994 struct kvmppc_vcore *vcore;
de56a948 995
371fefd6
PM
996 core = id / threads_per_core;
997 if (core >= KVM_MAX_VCORES)
998 goto out;
999
1000 err = -ENOMEM;
6b75e6bf 1001 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
de56a948
PM
1002 if (!vcpu)
1003 goto out;
1004
1005 err = kvm_vcpu_init(vcpu, kvm, id);
1006 if (err)
1007 goto free_vcpu;
1008
1009 vcpu->arch.shared = &vcpu->arch.shregs;
de56a948
PM
1010 vcpu->arch.mmcr[0] = MMCR0_FC;
1011 vcpu->arch.ctrl = CTRL_RUNLATCH;
1012 /* default to host PVR, since we can't spoof it */
1013 vcpu->arch.pvr = mfspr(SPRN_PVR);
1014 kvmppc_set_pvr(vcpu, vcpu->arch.pvr);
2e25aa5f 1015 spin_lock_init(&vcpu->arch.vpa_update_lock);
c7b67670
PM
1016 spin_lock_init(&vcpu->arch.tbacct_lock);
1017 vcpu->arch.busy_preempt = TB_NIL;
de56a948 1018
de56a948
PM
1019 kvmppc_mmu_book3s_hv_init(vcpu);
1020
8455d79e 1021 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
371fefd6
PM
1022
1023 init_waitqueue_head(&vcpu->arch.cpu_run);
1024
1025 mutex_lock(&kvm->lock);
1026 vcore = kvm->arch.vcores[core];
1027 if (!vcore) {
1028 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
1029 if (vcore) {
1030 INIT_LIST_HEAD(&vcore->runnable_threads);
1031 spin_lock_init(&vcore->lock);
19ccb76a 1032 init_waitqueue_head(&vcore->wq);
c7b67670 1033 vcore->preempt_tb = TB_NIL;
a0144e2a 1034 vcore->lpcr = kvm->arch.lpcr;
371fefd6
PM
1035 }
1036 kvm->arch.vcores[core] = vcore;
1b400ba0 1037 kvm->arch.online_vcores++;
371fefd6
PM
1038 }
1039 mutex_unlock(&kvm->lock);
1040
1041 if (!vcore)
1042 goto free_vcpu;
1043
1044 spin_lock(&vcore->lock);
1045 ++vcore->num_threads;
371fefd6
PM
1046 spin_unlock(&vcore->lock);
1047 vcpu->arch.vcore = vcore;
1048
af8f38b3
AG
1049 vcpu->arch.cpu_type = KVM_CPU_3S_64;
1050 kvmppc_sanity_check(vcpu);
1051
de56a948
PM
1052 return vcpu;
1053
1054free_vcpu:
6b75e6bf 1055 kmem_cache_free(kvm_vcpu_cache, vcpu);
de56a948
PM
1056out:
1057 return ERR_PTR(err);
1058}
1059
c35635ef
PM
1060static void unpin_vpa(struct kvm *kvm, struct kvmppc_vpa *vpa)
1061{
1062 if (vpa->pinned_addr)
1063 kvmppc_unpin_guest_page(kvm, vpa->pinned_addr, vpa->gpa,
1064 vpa->dirty);
1065}
1066
de56a948
PM
1067void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu)
1068{
2e25aa5f 1069 spin_lock(&vcpu->arch.vpa_update_lock);
c35635ef
PM
1070 unpin_vpa(vcpu->kvm, &vcpu->arch.dtl);
1071 unpin_vpa(vcpu->kvm, &vcpu->arch.slb_shadow);
1072 unpin_vpa(vcpu->kvm, &vcpu->arch.vpa);
2e25aa5f 1073 spin_unlock(&vcpu->arch.vpa_update_lock);
de56a948 1074 kvm_vcpu_uninit(vcpu);
6b75e6bf 1075 kmem_cache_free(kvm_vcpu_cache, vcpu);
de56a948
PM
1076}
1077
19ccb76a 1078static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
371fefd6 1079{
19ccb76a 1080 unsigned long dec_nsec, now;
371fefd6 1081
19ccb76a
PM
1082 now = get_tb();
1083 if (now > vcpu->arch.dec_expires) {
1084 /* decrementer has already gone negative */
1085 kvmppc_core_queue_dec(vcpu);
7e28e60e 1086 kvmppc_core_prepare_to_enter(vcpu);
19ccb76a 1087 return;
371fefd6 1088 }
19ccb76a
PM
1089 dec_nsec = (vcpu->arch.dec_expires - now) * NSEC_PER_SEC
1090 / tb_ticks_per_sec;
1091 hrtimer_start(&vcpu->arch.dec_timer, ktime_set(0, dec_nsec),
1092 HRTIMER_MODE_REL);
1093 vcpu->arch.timer_running = 1;
371fefd6
PM
1094}
1095
19ccb76a 1096static void kvmppc_end_cede(struct kvm_vcpu *vcpu)
371fefd6 1097{
19ccb76a
PM
1098 vcpu->arch.ceded = 0;
1099 if (vcpu->arch.timer_running) {
1100 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
1101 vcpu->arch.timer_running = 0;
1102 }
371fefd6
PM
1103}
1104
de56a948
PM
1105extern int __kvmppc_vcore_entry(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu);
1106
371fefd6
PM
1107static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
1108 struct kvm_vcpu *vcpu)
de56a948 1109{
c7b67670
PM
1110 u64 now;
1111
371fefd6
PM
1112 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
1113 return;
c7b67670
PM
1114 spin_lock(&vcpu->arch.tbacct_lock);
1115 now = mftb();
1116 vcpu->arch.busy_stolen += vcore_stolen_time(vc, now) -
1117 vcpu->arch.stolen_logged;
1118 vcpu->arch.busy_preempt = now;
1119 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
1120 spin_unlock(&vcpu->arch.tbacct_lock);
371fefd6 1121 --vc->n_runnable;
371fefd6
PM
1122 list_del(&vcpu->arch.run_list);
1123}
1124
f0888f70
PM
1125static int kvmppc_grab_hwthread(int cpu)
1126{
1127 struct paca_struct *tpaca;
1128 long timeout = 1000;
1129
1130 tpaca = &paca[cpu];
1131
1132 /* Ensure the thread won't go into the kernel if it wakes */
1133 tpaca->kvm_hstate.hwthread_req = 1;
7b444c67 1134 tpaca->kvm_hstate.kvm_vcpu = NULL;
f0888f70
PM
1135
1136 /*
1137 * If the thread is already executing in the kernel (e.g. handling
1138 * a stray interrupt), wait for it to get back to nap mode.
1139 * The smp_mb() is to ensure that our setting of hwthread_req
1140 * is visible before we look at hwthread_state, so if this
1141 * races with the code at system_reset_pSeries and the thread
1142 * misses our setting of hwthread_req, we are sure to see its
1143 * setting of hwthread_state, and vice versa.
1144 */
1145 smp_mb();
1146 while (tpaca->kvm_hstate.hwthread_state == KVM_HWTHREAD_IN_KERNEL) {
1147 if (--timeout <= 0) {
1148 pr_err("KVM: couldn't grab cpu %d\n", cpu);
1149 return -EBUSY;
1150 }
1151 udelay(1);
1152 }
1153 return 0;
1154}
1155
1156static void kvmppc_release_hwthread(int cpu)
1157{
1158 struct paca_struct *tpaca;
1159
1160 tpaca = &paca[cpu];
1161 tpaca->kvm_hstate.hwthread_req = 0;
1162 tpaca->kvm_hstate.kvm_vcpu = NULL;
1163}
1164
371fefd6
PM
1165static void kvmppc_start_thread(struct kvm_vcpu *vcpu)
1166{
1167 int cpu;
1168 struct paca_struct *tpaca;
1169 struct kvmppc_vcore *vc = vcpu->arch.vcore;
1170
19ccb76a
PM
1171 if (vcpu->arch.timer_running) {
1172 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
1173 vcpu->arch.timer_running = 0;
1174 }
371fefd6
PM
1175 cpu = vc->pcpu + vcpu->arch.ptid;
1176 tpaca = &paca[cpu];
1177 tpaca->kvm_hstate.kvm_vcpu = vcpu;
1178 tpaca->kvm_hstate.kvm_vcore = vc;
19ccb76a
PM
1179 tpaca->kvm_hstate.napping = 0;
1180 vcpu->cpu = vc->pcpu;
371fefd6 1181 smp_wmb();
251da038 1182#if defined(CONFIG_PPC_ICP_NATIVE) && defined(CONFIG_SMP)
371fefd6 1183 if (vcpu->arch.ptid) {
371fefd6
PM
1184 xics_wake_cpu(cpu);
1185 ++vc->n_woken;
de56a948 1186 }
371fefd6
PM
1187#endif
1188}
de56a948 1189
371fefd6
PM
1190static void kvmppc_wait_for_nap(struct kvmppc_vcore *vc)
1191{
1192 int i;
1193
1194 HMT_low();
1195 i = 0;
1196 while (vc->nap_count < vc->n_woken) {
1197 if (++i >= 1000000) {
1198 pr_err("kvmppc_wait_for_nap timeout %d %d\n",
1199 vc->nap_count, vc->n_woken);
1200 break;
1201 }
1202 cpu_relax();
1203 }
1204 HMT_medium();
1205}
1206
1207/*
1208 * Check that we are on thread 0 and that any other threads in
7b444c67
PM
1209 * this core are off-line. Then grab the threads so they can't
1210 * enter the kernel.
371fefd6
PM
1211 */
1212static int on_primary_thread(void)
1213{
1214 int cpu = smp_processor_id();
1215 int thr = cpu_thread_in_core(cpu);
1216
1217 if (thr)
1218 return 0;
1219 while (++thr < threads_per_core)
1220 if (cpu_online(cpu + thr))
1221 return 0;
7b444c67
PM
1222
1223 /* Grab all hw threads so they can't go into the kernel */
1224 for (thr = 1; thr < threads_per_core; ++thr) {
1225 if (kvmppc_grab_hwthread(cpu + thr)) {
1226 /* Couldn't grab one; let the others go */
1227 do {
1228 kvmppc_release_hwthread(cpu + thr);
1229 } while (--thr > 0);
1230 return 0;
1231 }
1232 }
371fefd6
PM
1233 return 1;
1234}
1235
1236/*
1237 * Run a set of guest threads on a physical core.
1238 * Called with vc->lock held.
1239 */
913d3ff9 1240static void kvmppc_run_core(struct kvmppc_vcore *vc)
371fefd6 1241{
19ccb76a 1242 struct kvm_vcpu *vcpu, *vcpu0, *vnext;
371fefd6
PM
1243 long ret;
1244 u64 now;
081f323b 1245 int ptid, i, need_vpa_update;
2c9097e4 1246 int srcu_idx;
913d3ff9 1247 struct kvm_vcpu *vcpus_to_update[threads_per_core];
371fefd6
PM
1248
1249 /* don't start if any threads have a signal pending */
081f323b
PM
1250 need_vpa_update = 0;
1251 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) {
371fefd6 1252 if (signal_pending(vcpu->arch.run_task))
913d3ff9
PM
1253 return;
1254 if (vcpu->arch.vpa.update_pending ||
1255 vcpu->arch.slb_shadow.update_pending ||
1256 vcpu->arch.dtl.update_pending)
1257 vcpus_to_update[need_vpa_update++] = vcpu;
081f323b
PM
1258 }
1259
1260 /*
1261 * Initialize *vc, in particular vc->vcore_state, so we can
1262 * drop the vcore lock if necessary.
1263 */
1264 vc->n_woken = 0;
1265 vc->nap_count = 0;
1266 vc->entry_exit_count = 0;
2f12f034 1267 vc->vcore_state = VCORE_STARTING;
081f323b
PM
1268 vc->in_guest = 0;
1269 vc->napping_threads = 0;
1270
1271 /*
1272 * Updating any of the vpas requires calling kvmppc_pin_guest_page,
1273 * which can't be called with any spinlocks held.
1274 */
1275 if (need_vpa_update) {
1276 spin_unlock(&vc->lock);
913d3ff9
PM
1277 for (i = 0; i < need_vpa_update; ++i)
1278 kvmppc_update_vpas(vcpus_to_update[i]);
081f323b
PM
1279 spin_lock(&vc->lock);
1280 }
de56a948 1281
19ccb76a
PM
1282 /*
1283 * Assign physical thread IDs, first to non-ceded vcpus
1284 * and then to ceded ones.
1285 */
1286 ptid = 0;
1287 vcpu0 = NULL;
1288 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) {
1289 if (!vcpu->arch.ceded) {
1290 if (!ptid)
1291 vcpu0 = vcpu;
1292 vcpu->arch.ptid = ptid++;
1293 }
1294 }
c7b67670
PM
1295 if (!vcpu0)
1296 goto out; /* nothing to run; should never happen */
19ccb76a
PM
1297 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
1298 if (vcpu->arch.ceded)
1299 vcpu->arch.ptid = ptid++;
1300
7b444c67
PM
1301 /*
1302 * Make sure we are running on thread 0, and that
1303 * secondary threads are offline.
1304 */
1305 if (threads_per_core > 1 && !on_primary_thread()) {
1306 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
1307 vcpu->arch.ret = -EBUSY;
1308 goto out;
1309 }
1310
371fefd6 1311 vc->pcpu = smp_processor_id();
2e25aa5f 1312 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) {
371fefd6 1313 kvmppc_start_thread(vcpu);
0456ec4f 1314 kvmppc_create_dtl_entry(vcpu, vc);
2e25aa5f 1315 }
371fefd6 1316
2f12f034 1317 vc->vcore_state = VCORE_RUNNING;
19ccb76a 1318 preempt_disable();
371fefd6 1319 spin_unlock(&vc->lock);
de56a948 1320
371fefd6 1321 kvm_guest_enter();
2c9097e4
PM
1322
1323 srcu_idx = srcu_read_lock(&vcpu0->kvm->srcu);
1324
19ccb76a 1325 __kvmppc_vcore_entry(NULL, vcpu0);
de56a948 1326
371fefd6 1327 spin_lock(&vc->lock);
19ccb76a
PM
1328 /* disable sending of IPIs on virtual external irqs */
1329 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
1330 vcpu->cpu = -1;
1331 /* wait for secondary threads to finish writing their state to memory */
371fefd6
PM
1332 if (vc->nap_count < vc->n_woken)
1333 kvmppc_wait_for_nap(vc);
2f12f034
PM
1334 for (i = 0; i < threads_per_core; ++i)
1335 kvmppc_release_hwthread(vc->pcpu + i);
371fefd6 1336 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
19ccb76a 1337 vc->vcore_state = VCORE_EXITING;
371fefd6
PM
1338 spin_unlock(&vc->lock);
1339
2c9097e4
PM
1340 srcu_read_unlock(&vcpu0->kvm->srcu, srcu_idx);
1341
371fefd6
PM
1342 /* make sure updates to secondary vcpu structs are visible now */
1343 smp_mb();
de56a948
PM
1344 kvm_guest_exit();
1345
1346 preempt_enable();
1347 kvm_resched(vcpu);
1348
913d3ff9 1349 spin_lock(&vc->lock);
de56a948 1350 now = get_tb();
371fefd6
PM
1351 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) {
1352 /* cancel pending dec exception if dec is positive */
1353 if (now < vcpu->arch.dec_expires &&
1354 kvmppc_core_pending_dec(vcpu))
1355 kvmppc_core_dequeue_dec(vcpu);
19ccb76a
PM
1356
1357 ret = RESUME_GUEST;
1358 if (vcpu->arch.trap)
1359 ret = kvmppc_handle_exit(vcpu->arch.kvm_run, vcpu,
1360 vcpu->arch.run_task);
1361
371fefd6
PM
1362 vcpu->arch.ret = ret;
1363 vcpu->arch.trap = 0;
19ccb76a
PM
1364
1365 if (vcpu->arch.ceded) {
1366 if (ret != RESUME_GUEST)
1367 kvmppc_end_cede(vcpu);
1368 else
1369 kvmppc_set_timer(vcpu);
1370 }
371fefd6 1371 }
de56a948
PM
1372
1373 out:
19ccb76a 1374 vc->vcore_state = VCORE_INACTIVE;
371fefd6
PM
1375 list_for_each_entry_safe(vcpu, vnext, &vc->runnable_threads,
1376 arch.run_list) {
1377 if (vcpu->arch.ret != RESUME_GUEST) {
1378 kvmppc_remove_runnable(vc, vcpu);
1379 wake_up(&vcpu->arch.cpu_run);
1380 }
1381 }
371fefd6
PM
1382}
1383
19ccb76a
PM
1384/*
1385 * Wait for some other vcpu thread to execute us, and
1386 * wake us up when we need to handle something in the host.
1387 */
1388static void kvmppc_wait_for_exec(struct kvm_vcpu *vcpu, int wait_state)
371fefd6 1389{
371fefd6
PM
1390 DEFINE_WAIT(wait);
1391
19ccb76a
PM
1392 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
1393 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE)
1394 schedule();
1395 finish_wait(&vcpu->arch.cpu_run, &wait);
1396}
1397
1398/*
1399 * All the vcpus in this vcore are idle, so wait for a decrementer
1400 * or external interrupt to one of the vcpus. vc->lock is held.
1401 */
1402static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
1403{
1404 DEFINE_WAIT(wait);
19ccb76a
PM
1405
1406 prepare_to_wait(&vc->wq, &wait, TASK_INTERRUPTIBLE);
1407 vc->vcore_state = VCORE_SLEEPING;
1408 spin_unlock(&vc->lock);
913d3ff9 1409 schedule();
19ccb76a
PM
1410 finish_wait(&vc->wq, &wait);
1411 spin_lock(&vc->lock);
1412 vc->vcore_state = VCORE_INACTIVE;
1413}
371fefd6 1414
19ccb76a
PM
1415static int kvmppc_run_vcpu(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
1416{
1417 int n_ceded;
19ccb76a
PM
1418 struct kvmppc_vcore *vc;
1419 struct kvm_vcpu *v, *vn;
9e368f29 1420
371fefd6
PM
1421 kvm_run->exit_reason = 0;
1422 vcpu->arch.ret = RESUME_GUEST;
1423 vcpu->arch.trap = 0;
2f12f034 1424 kvmppc_update_vpas(vcpu);
371fefd6 1425
371fefd6
PM
1426 /*
1427 * Synchronize with other threads in this virtual core
1428 */
1429 vc = vcpu->arch.vcore;
1430 spin_lock(&vc->lock);
19ccb76a 1431 vcpu->arch.ceded = 0;
371fefd6
PM
1432 vcpu->arch.run_task = current;
1433 vcpu->arch.kvm_run = kvm_run;
c7b67670 1434 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
19ccb76a 1435 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
c7b67670 1436 vcpu->arch.busy_preempt = TB_NIL;
371fefd6
PM
1437 list_add_tail(&vcpu->arch.run_list, &vc->runnable_threads);
1438 ++vc->n_runnable;
1439
19ccb76a
PM
1440 /*
1441 * This happens the first time this is called for a vcpu.
1442 * If the vcore is already running, we may be able to start
1443 * this thread straight away and have it join in.
1444 */
8455d79e 1445 if (!signal_pending(current)) {
19ccb76a
PM
1446 if (vc->vcore_state == VCORE_RUNNING &&
1447 VCORE_EXIT_COUNT(vc) == 0) {
1448 vcpu->arch.ptid = vc->n_runnable - 1;
2f12f034 1449 kvmppc_create_dtl_entry(vcpu, vc);
19ccb76a 1450 kvmppc_start_thread(vcpu);
8455d79e
PM
1451 } else if (vc->vcore_state == VCORE_SLEEPING) {
1452 wake_up(&vc->wq);
371fefd6
PM
1453 }
1454
8455d79e 1455 }
371fefd6 1456
19ccb76a
PM
1457 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
1458 !signal_pending(current)) {
8455d79e 1459 if (vc->vcore_state != VCORE_INACTIVE) {
19ccb76a
PM
1460 spin_unlock(&vc->lock);
1461 kvmppc_wait_for_exec(vcpu, TASK_INTERRUPTIBLE);
1462 spin_lock(&vc->lock);
1463 continue;
1464 }
19ccb76a
PM
1465 list_for_each_entry_safe(v, vn, &vc->runnable_threads,
1466 arch.run_list) {
7e28e60e 1467 kvmppc_core_prepare_to_enter(v);
19ccb76a
PM
1468 if (signal_pending(v->arch.run_task)) {
1469 kvmppc_remove_runnable(vc, v);
1470 v->stat.signal_exits++;
1471 v->arch.kvm_run->exit_reason = KVM_EXIT_INTR;
1472 v->arch.ret = -EINTR;
1473 wake_up(&v->arch.cpu_run);
1474 }
1475 }
8455d79e
PM
1476 if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
1477 break;
1478 vc->runner = vcpu;
1479 n_ceded = 0;
4619ac88 1480 list_for_each_entry(v, &vc->runnable_threads, arch.run_list) {
8455d79e
PM
1481 if (!v->arch.pending_exceptions)
1482 n_ceded += v->arch.ceded;
4619ac88
PM
1483 else
1484 v->arch.ceded = 0;
1485 }
8455d79e
PM
1486 if (n_ceded == vc->n_runnable)
1487 kvmppc_vcore_blocked(vc);
1488 else
1489 kvmppc_run_core(vc);
0456ec4f 1490 vc->runner = NULL;
19ccb76a 1491 }
371fefd6 1492
8455d79e
PM
1493 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
1494 (vc->vcore_state == VCORE_RUNNING ||
1495 vc->vcore_state == VCORE_EXITING)) {
1496 spin_unlock(&vc->lock);
1497 kvmppc_wait_for_exec(vcpu, TASK_UNINTERRUPTIBLE);
1498 spin_lock(&vc->lock);
1499 }
1500
1501 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
1502 kvmppc_remove_runnable(vc, vcpu);
1503 vcpu->stat.signal_exits++;
1504 kvm_run->exit_reason = KVM_EXIT_INTR;
1505 vcpu->arch.ret = -EINTR;
1506 }
1507
1508 if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) {
1509 /* Wake up some vcpu to run the core */
1510 v = list_first_entry(&vc->runnable_threads,
1511 struct kvm_vcpu, arch.run_list);
1512 wake_up(&v->arch.cpu_run);
371fefd6
PM
1513 }
1514
371fefd6 1515 spin_unlock(&vc->lock);
371fefd6 1516 return vcpu->arch.ret;
de56a948
PM
1517}
1518
a8606e20
PM
1519int kvmppc_vcpu_run(struct kvm_run *run, struct kvm_vcpu *vcpu)
1520{
1521 int r;
913d3ff9 1522 int srcu_idx;
a8606e20 1523
af8f38b3
AG
1524 if (!vcpu->arch.sane) {
1525 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1526 return -EINVAL;
1527 }
1528
25051b5a
SW
1529 kvmppc_core_prepare_to_enter(vcpu);
1530
19ccb76a
PM
1531 /* No need to go into the guest when all we'll do is come back out */
1532 if (signal_pending(current)) {
1533 run->exit_reason = KVM_EXIT_INTR;
1534 return -EINTR;
1535 }
1536
32fad281
PM
1537 atomic_inc(&vcpu->kvm->arch.vcpus_running);
1538 /* Order vcpus_running vs. rma_setup_done, see kvmppc_alloc_reset_hpt */
1539 smp_mb();
1540
1541 /* On the first time here, set up HTAB and VRMA or RMA */
c77162de 1542 if (!vcpu->kvm->arch.rma_setup_done) {
32fad281 1543 r = kvmppc_hv_setup_htab_rma(vcpu);
c77162de 1544 if (r)
32fad281 1545 goto out;
c77162de 1546 }
19ccb76a
PM
1547
1548 flush_fp_to_thread(current);
1549 flush_altivec_to_thread(current);
1550 flush_vsx_to_thread(current);
1551 vcpu->arch.wqp = &vcpu->arch.vcore->wq;
342d3db7 1552 vcpu->arch.pgdir = current->mm->pgd;
c7b67670 1553 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
19ccb76a 1554
a8606e20
PM
1555 do {
1556 r = kvmppc_run_vcpu(run, vcpu);
1557
1558 if (run->exit_reason == KVM_EXIT_PAPR_HCALL &&
1559 !(vcpu->arch.shregs.msr & MSR_PR)) {
1560 r = kvmppc_pseries_do_hcall(vcpu);
7e28e60e 1561 kvmppc_core_prepare_to_enter(vcpu);
913d3ff9
PM
1562 } else if (r == RESUME_PAGE_FAULT) {
1563 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
1564 r = kvmppc_book3s_hv_page_fault(run, vcpu,
1565 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
1566 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
a8606e20
PM
1567 }
1568 } while (r == RESUME_GUEST);
32fad281
PM
1569
1570 out:
c7b67670 1571 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
32fad281 1572 atomic_dec(&vcpu->kvm->arch.vcpus_running);
a8606e20
PM
1573 return r;
1574}
1575
54738c09 1576
aa04b4cc 1577/* Work out RMLS (real mode limit selector) field value for a given RMA size.
9e368f29 1578 Assumes POWER7 or PPC970. */
aa04b4cc
PM
1579static inline int lpcr_rmls(unsigned long rma_size)
1580{
1581 switch (rma_size) {
1582 case 32ul << 20: /* 32 MB */
9e368f29
PM
1583 if (cpu_has_feature(CPU_FTR_ARCH_206))
1584 return 8; /* only supported on POWER7 */
1585 return -1;
aa04b4cc
PM
1586 case 64ul << 20: /* 64 MB */
1587 return 3;
1588 case 128ul << 20: /* 128 MB */
1589 return 7;
1590 case 256ul << 20: /* 256 MB */
1591 return 4;
1592 case 1ul << 30: /* 1 GB */
1593 return 2;
1594 case 16ul << 30: /* 16 GB */
1595 return 1;
1596 case 256ul << 30: /* 256 GB */
1597 return 0;
1598 default:
1599 return -1;
1600 }
1601}
1602
1603static int kvm_rma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1604{
aa04b4cc 1605 struct page *page;
6c45b810 1606 struct kvm_rma_info *ri = vma->vm_file->private_data;
aa04b4cc 1607
6c45b810 1608 if (vmf->pgoff >= kvm_rma_pages)
aa04b4cc
PM
1609 return VM_FAULT_SIGBUS;
1610
1611 page = pfn_to_page(ri->base_pfn + vmf->pgoff);
1612 get_page(page);
1613 vmf->page = page;
1614 return 0;
1615}
1616
1617static const struct vm_operations_struct kvm_rma_vm_ops = {
1618 .fault = kvm_rma_fault,
1619};
1620
1621static int kvm_rma_mmap(struct file *file, struct vm_area_struct *vma)
1622{
314e51b9 1623 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
aa04b4cc
PM
1624 vma->vm_ops = &kvm_rma_vm_ops;
1625 return 0;
1626}
1627
1628static int kvm_rma_release(struct inode *inode, struct file *filp)
1629{
6c45b810 1630 struct kvm_rma_info *ri = filp->private_data;
aa04b4cc
PM
1631
1632 kvm_release_rma(ri);
1633 return 0;
1634}
1635
75ef9de1 1636static const struct file_operations kvm_rma_fops = {
aa04b4cc
PM
1637 .mmap = kvm_rma_mmap,
1638 .release = kvm_rma_release,
1639};
1640
1641long kvm_vm_ioctl_allocate_rma(struct kvm *kvm, struct kvm_allocate_rma *ret)
1642{
aa04b4cc 1643 long fd;
6c45b810
AK
1644 struct kvm_rma_info *ri;
1645 /*
1646 * Only do this on PPC970 in HV mode
1647 */
1648 if (!cpu_has_feature(CPU_FTR_HVMODE) ||
1649 !cpu_has_feature(CPU_FTR_ARCH_201))
1650 return -EINVAL;
1651
1652 if (!kvm_rma_pages)
1653 return -EINVAL;
aa04b4cc
PM
1654
1655 ri = kvm_alloc_rma();
1656 if (!ri)
1657 return -ENOMEM;
1658
2f84d5ea 1659 fd = anon_inode_getfd("kvm-rma", &kvm_rma_fops, ri, O_RDWR | O_CLOEXEC);
aa04b4cc
PM
1660 if (fd < 0)
1661 kvm_release_rma(ri);
1662
6c45b810 1663 ret->rma_size = kvm_rma_pages << PAGE_SHIFT;
aa04b4cc
PM
1664 return fd;
1665}
1666
5b74716e
BH
1667static void kvmppc_add_seg_page_size(struct kvm_ppc_one_seg_page_size **sps,
1668 int linux_psize)
1669{
1670 struct mmu_psize_def *def = &mmu_psize_defs[linux_psize];
1671
1672 if (!def->shift)
1673 return;
1674 (*sps)->page_shift = def->shift;
1675 (*sps)->slb_enc = def->sllp;
1676 (*sps)->enc[0].page_shift = def->shift;
b1022fbd
AK
1677 /*
1678 * Only return base page encoding. We don't want to return
1679 * all the supporting pte_enc, because our H_ENTER doesn't
1680 * support MPSS yet. Once they do, we can start passing all
1681 * support pte_enc here
1682 */
1683 (*sps)->enc[0].pte_enc = def->penc[linux_psize];
5b74716e
BH
1684 (*sps)++;
1685}
1686
1687int kvm_vm_ioctl_get_smmu_info(struct kvm *kvm, struct kvm_ppc_smmu_info *info)
1688{
1689 struct kvm_ppc_one_seg_page_size *sps;
1690
1691 info->flags = KVM_PPC_PAGE_SIZES_REAL;
1692 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1693 info->flags |= KVM_PPC_1T_SEGMENTS;
1694 info->slb_size = mmu_slb_size;
1695
1696 /* We only support these sizes for now, and no muti-size segments */
1697 sps = &info->sps[0];
1698 kvmppc_add_seg_page_size(&sps, MMU_PAGE_4K);
1699 kvmppc_add_seg_page_size(&sps, MMU_PAGE_64K);
1700 kvmppc_add_seg_page_size(&sps, MMU_PAGE_16M);
1701
1702 return 0;
1703}
1704
82ed3616
PM
1705/*
1706 * Get (and clear) the dirty memory log for a memory slot.
1707 */
1708int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
1709{
1710 struct kvm_memory_slot *memslot;
1711 int r;
1712 unsigned long n;
1713
1714 mutex_lock(&kvm->slots_lock);
1715
1716 r = -EINVAL;
bbacc0c1 1717 if (log->slot >= KVM_USER_MEM_SLOTS)
82ed3616
PM
1718 goto out;
1719
1720 memslot = id_to_memslot(kvm->memslots, log->slot);
1721 r = -ENOENT;
1722 if (!memslot->dirty_bitmap)
1723 goto out;
1724
1725 n = kvm_dirty_bitmap_bytes(memslot);
1726 memset(memslot->dirty_bitmap, 0, n);
1727
dfe49dbd 1728 r = kvmppc_hv_get_dirty_log(kvm, memslot, memslot->dirty_bitmap);
82ed3616
PM
1729 if (r)
1730 goto out;
1731
1732 r = -EFAULT;
1733 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
1734 goto out;
1735
1736 r = 0;
1737out:
1738 mutex_unlock(&kvm->slots_lock);
1739 return r;
1740}
1741
a66b48c3 1742static void unpin_slot(struct kvm_memory_slot *memslot)
de56a948 1743{
a66b48c3
PM
1744 unsigned long *physp;
1745 unsigned long j, npages, pfn;
1746 struct page *page;
aa04b4cc 1747
a66b48c3
PM
1748 physp = memslot->arch.slot_phys;
1749 npages = memslot->npages;
1750 if (!physp)
1751 return;
1752 for (j = 0; j < npages; j++) {
1753 if (!(physp[j] & KVMPPC_GOT_PAGE))
1754 continue;
1755 pfn = physp[j] >> PAGE_SHIFT;
1756 page = pfn_to_page(pfn);
1757 SetPageDirty(page);
1758 put_page(page);
1759 }
1760}
1761
1762void kvmppc_core_free_memslot(struct kvm_memory_slot *free,
1763 struct kvm_memory_slot *dont)
1764{
1765 if (!dont || free->arch.rmap != dont->arch.rmap) {
1766 vfree(free->arch.rmap);
1767 free->arch.rmap = NULL;
b2b2f165 1768 }
a66b48c3
PM
1769 if (!dont || free->arch.slot_phys != dont->arch.slot_phys) {
1770 unpin_slot(free);
1771 vfree(free->arch.slot_phys);
1772 free->arch.slot_phys = NULL;
1773 }
1774}
1775
1776int kvmppc_core_create_memslot(struct kvm_memory_slot *slot,
1777 unsigned long npages)
1778{
1779 slot->arch.rmap = vzalloc(npages * sizeof(*slot->arch.rmap));
1780 if (!slot->arch.rmap)
1781 return -ENOMEM;
1782 slot->arch.slot_phys = NULL;
aa04b4cc 1783
c77162de
PM
1784 return 0;
1785}
aa04b4cc 1786
a66b48c3
PM
1787int kvmppc_core_prepare_memory_region(struct kvm *kvm,
1788 struct kvm_memory_slot *memslot,
1789 struct kvm_userspace_memory_region *mem)
c77162de 1790{
a66b48c3 1791 unsigned long *phys;
c77162de 1792
a66b48c3
PM
1793 /* Allocate a slot_phys array if needed */
1794 phys = memslot->arch.slot_phys;
1795 if (!kvm->arch.using_mmu_notifiers && !phys && memslot->npages) {
1796 phys = vzalloc(memslot->npages * sizeof(unsigned long));
1797 if (!phys)
1798 return -ENOMEM;
1799 memslot->arch.slot_phys = phys;
aa04b4cc 1800 }
a66b48c3
PM
1801
1802 return 0;
c77162de
PM
1803}
1804
1805void kvmppc_core_commit_memory_region(struct kvm *kvm,
dfe49dbd 1806 struct kvm_userspace_memory_region *mem,
8482644a 1807 const struct kvm_memory_slot *old)
c77162de 1808{
dfe49dbd
PM
1809 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
1810 struct kvm_memory_slot *memslot;
1811
8482644a 1812 if (npages && old->npages) {
dfe49dbd
PM
1813 /*
1814 * If modifying a memslot, reset all the rmap dirty bits.
1815 * If this is a new memslot, we don't need to do anything
1816 * since the rmap array starts out as all zeroes,
1817 * i.e. no pages are dirty.
1818 */
1819 memslot = id_to_memslot(kvm->memslots, mem->slot);
1820 kvmppc_hv_get_dirty_log(kvm, memslot, NULL);
1821 }
c77162de
PM
1822}
1823
a0144e2a
PM
1824/*
1825 * Update LPCR values in kvm->arch and in vcores.
1826 * Caller must hold kvm->lock.
1827 */
1828void kvmppc_update_lpcr(struct kvm *kvm, unsigned long lpcr, unsigned long mask)
1829{
1830 long int i;
1831 u32 cores_done = 0;
1832
1833 if ((kvm->arch.lpcr & mask) == lpcr)
1834 return;
1835
1836 kvm->arch.lpcr = (kvm->arch.lpcr & ~mask) | lpcr;
1837
1838 for (i = 0; i < KVM_MAX_VCORES; ++i) {
1839 struct kvmppc_vcore *vc = kvm->arch.vcores[i];
1840 if (!vc)
1841 continue;
1842 spin_lock(&vc->lock);
1843 vc->lpcr = (vc->lpcr & ~mask) | lpcr;
1844 spin_unlock(&vc->lock);
1845 if (++cores_done >= kvm->arch.online_vcores)
1846 break;
1847 }
1848}
1849
32fad281 1850static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu)
c77162de
PM
1851{
1852 int err = 0;
1853 struct kvm *kvm = vcpu->kvm;
6c45b810 1854 struct kvm_rma_info *ri = NULL;
c77162de
PM
1855 unsigned long hva;
1856 struct kvm_memory_slot *memslot;
1857 struct vm_area_struct *vma;
a0144e2a
PM
1858 unsigned long lpcr = 0, senc;
1859 unsigned long lpcr_mask = 0;
c77162de
PM
1860 unsigned long psize, porder;
1861 unsigned long rma_size;
1862 unsigned long rmls;
1863 unsigned long *physp;
da9d1d7f 1864 unsigned long i, npages;
2c9097e4 1865 int srcu_idx;
c77162de
PM
1866
1867 mutex_lock(&kvm->lock);
1868 if (kvm->arch.rma_setup_done)
1869 goto out; /* another vcpu beat us to it */
aa04b4cc 1870
32fad281
PM
1871 /* Allocate hashed page table (if not done already) and reset it */
1872 if (!kvm->arch.hpt_virt) {
1873 err = kvmppc_alloc_hpt(kvm, NULL);
1874 if (err) {
1875 pr_err("KVM: Couldn't alloc HPT\n");
1876 goto out;
1877 }
1878 }
1879
c77162de 1880 /* Look up the memslot for guest physical address 0 */
2c9097e4 1881 srcu_idx = srcu_read_lock(&kvm->srcu);
c77162de 1882 memslot = gfn_to_memslot(kvm, 0);
aa04b4cc 1883
c77162de
PM
1884 /* We must have some memory at 0 by now */
1885 err = -EINVAL;
1886 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
2c9097e4 1887 goto out_srcu;
c77162de
PM
1888
1889 /* Look up the VMA for the start of this memory slot */
1890 hva = memslot->userspace_addr;
1891 down_read(&current->mm->mmap_sem);
1892 vma = find_vma(current->mm, hva);
1893 if (!vma || vma->vm_start > hva || (vma->vm_flags & VM_IO))
1894 goto up_out;
1895
1896 psize = vma_kernel_pagesize(vma);
da9d1d7f 1897 porder = __ilog2(psize);
c77162de
PM
1898
1899 /* Is this one of our preallocated RMAs? */
1900 if (vma->vm_file && vma->vm_file->f_op == &kvm_rma_fops &&
1901 hva == vma->vm_start)
1902 ri = vma->vm_file->private_data;
1903
1904 up_read(&current->mm->mmap_sem);
1905
1906 if (!ri) {
1907 /* On POWER7, use VRMA; on PPC970, give up */
1908 err = -EPERM;
1909 if (cpu_has_feature(CPU_FTR_ARCH_201)) {
1910 pr_err("KVM: CPU requires an RMO\n");
2c9097e4 1911 goto out_srcu;
c77162de
PM
1912 }
1913
da9d1d7f
PM
1914 /* We can handle 4k, 64k or 16M pages in the VRMA */
1915 err = -EINVAL;
1916 if (!(psize == 0x1000 || psize == 0x10000 ||
1917 psize == 0x1000000))
2c9097e4 1918 goto out_srcu;
da9d1d7f 1919
c77162de 1920 /* Update VRMASD field in the LPCR */
da9d1d7f 1921 senc = slb_pgsize_encoding(psize);
697d3899
PM
1922 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
1923 (VRMA_VSID << SLB_VSID_SHIFT_1T);
a0144e2a
PM
1924 lpcr_mask = LPCR_VRMASD;
1925 /* the -4 is to account for senc values starting at 0x10 */
1926 lpcr = senc << (LPCR_VRMASD_SH - 4);
c77162de
PM
1927
1928 /* Create HPTEs in the hash page table for the VRMA */
da9d1d7f 1929 kvmppc_map_vrma(vcpu, memslot, porder);
c77162de
PM
1930
1931 } else {
1932 /* Set up to use an RMO region */
6c45b810 1933 rma_size = kvm_rma_pages;
c77162de
PM
1934 if (rma_size > memslot->npages)
1935 rma_size = memslot->npages;
1936 rma_size <<= PAGE_SHIFT;
aa04b4cc 1937 rmls = lpcr_rmls(rma_size);
c77162de 1938 err = -EINVAL;
5d226ae5 1939 if ((long)rmls < 0) {
c77162de 1940 pr_err("KVM: Can't use RMA of 0x%lx bytes\n", rma_size);
2c9097e4 1941 goto out_srcu;
aa04b4cc
PM
1942 }
1943 atomic_inc(&ri->use_count);
1944 kvm->arch.rma = ri;
9e368f29
PM
1945
1946 /* Update LPCR and RMOR */
9e368f29
PM
1947 if (cpu_has_feature(CPU_FTR_ARCH_201)) {
1948 /* PPC970; insert RMLS value (split field) in HID4 */
a0144e2a
PM
1949 lpcr_mask = (1ul << HID4_RMLS0_SH) |
1950 (3ul << HID4_RMLS2_SH) | HID4_RMOR;
1951 lpcr = ((rmls >> 2) << HID4_RMLS0_SH) |
9e368f29
PM
1952 ((rmls & 3) << HID4_RMLS2_SH);
1953 /* RMOR is also in HID4 */
1954 lpcr |= ((ri->base_pfn >> (26 - PAGE_SHIFT)) & 0xffff)
1955 << HID4_RMOR_SH;
1956 } else {
1957 /* POWER7 */
a0144e2a
PM
1958 lpcr_mask = LPCR_VPM0 | LPCR_VRMA_L | LPCR_RMLS;
1959 lpcr = rmls << LPCR_RMLS_SH;
6c45b810 1960 kvm->arch.rmor = ri->base_pfn << PAGE_SHIFT;
9e368f29 1961 }
c77162de 1962 pr_info("KVM: Using RMO at %lx size %lx (LPCR = %lx)\n",
aa04b4cc 1963 ri->base_pfn << PAGE_SHIFT, rma_size, lpcr);
aa04b4cc 1964
c77162de 1965 /* Initialize phys addrs of pages in RMO */
6c45b810 1966 npages = kvm_rma_pages;
da9d1d7f 1967 porder = __ilog2(npages);
a66b48c3
PM
1968 physp = memslot->arch.slot_phys;
1969 if (physp) {
1970 if (npages > memslot->npages)
1971 npages = memslot->npages;
1972 spin_lock(&kvm->arch.slot_phys_lock);
1973 for (i = 0; i < npages; ++i)
1974 physp[i] = ((ri->base_pfn + i) << PAGE_SHIFT) +
1975 porder;
1976 spin_unlock(&kvm->arch.slot_phys_lock);
1977 }
aa04b4cc
PM
1978 }
1979
a0144e2a
PM
1980 kvmppc_update_lpcr(kvm, lpcr, lpcr_mask);
1981
c77162de
PM
1982 /* Order updates to kvm->arch.lpcr etc. vs. rma_setup_done */
1983 smp_wmb();
1984 kvm->arch.rma_setup_done = 1;
1985 err = 0;
2c9097e4
PM
1986 out_srcu:
1987 srcu_read_unlock(&kvm->srcu, srcu_idx);
c77162de
PM
1988 out:
1989 mutex_unlock(&kvm->lock);
1990 return err;
b2b2f165 1991
c77162de
PM
1992 up_out:
1993 up_read(&current->mm->mmap_sem);
505d6421 1994 goto out_srcu;
de56a948
PM
1995}
1996
1997int kvmppc_core_init_vm(struct kvm *kvm)
1998{
32fad281 1999 unsigned long lpcr, lpid;
de56a948 2000
32fad281
PM
2001 /* Allocate the guest's logical partition ID */
2002
2003 lpid = kvmppc_alloc_lpid();
5d226ae5 2004 if ((long)lpid < 0)
32fad281
PM
2005 return -ENOMEM;
2006 kvm->arch.lpid = lpid;
de56a948 2007
1b400ba0
PM
2008 /*
2009 * Since we don't flush the TLB when tearing down a VM,
2010 * and this lpid might have previously been used,
2011 * make sure we flush on each core before running the new VM.
2012 */
2013 cpumask_setall(&kvm->arch.need_tlb_flush);
2014
54738c09 2015 INIT_LIST_HEAD(&kvm->arch.spapr_tce_tables);
8e591cb7 2016 INIT_LIST_HEAD(&kvm->arch.rtas_tokens);
aa04b4cc 2017
aa04b4cc 2018 kvm->arch.rma = NULL;
aa04b4cc 2019
9e368f29 2020 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
aa04b4cc 2021
9e368f29
PM
2022 if (cpu_has_feature(CPU_FTR_ARCH_201)) {
2023 /* PPC970; HID4 is effectively the LPCR */
9e368f29
PM
2024 kvm->arch.host_lpid = 0;
2025 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_HID4);
2026 lpcr &= ~((3 << HID4_LPID1_SH) | (0xful << HID4_LPID5_SH));
2027 lpcr |= ((lpid >> 4) << HID4_LPID1_SH) |
2028 ((lpid & 0xf) << HID4_LPID5_SH);
2029 } else {
2030 /* POWER7; init LPCR for virtual RMA mode */
2031 kvm->arch.host_lpid = mfspr(SPRN_LPID);
2032 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
2033 lpcr &= LPCR_PECE | LPCR_LPES;
2034 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
697d3899
PM
2035 LPCR_VPM0 | LPCR_VPM1;
2036 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
2037 (VRMA_VSID << SLB_VSID_SHIFT_1T);
9e368f29
PM
2038 }
2039 kvm->arch.lpcr = lpcr;
aa04b4cc 2040
342d3db7 2041 kvm->arch.using_mmu_notifiers = !!cpu_has_feature(CPU_FTR_ARCH_206);
c77162de 2042 spin_lock_init(&kvm->arch.slot_phys_lock);
512691d4
PM
2043
2044 /*
2045 * Don't allow secondary CPU threads to come online
2046 * while any KVM VMs exist.
2047 */
2048 inhibit_secondary_onlining();
2049
54738c09 2050 return 0;
de56a948
PM
2051}
2052
f1378b1c
PM
2053static void kvmppc_free_vcores(struct kvm *kvm)
2054{
2055 long int i;
2056
2057 for (i = 0; i < KVM_MAX_VCORES; ++i)
2058 kfree(kvm->arch.vcores[i]);
2059 kvm->arch.online_vcores = 0;
2060}
2061
de56a948
PM
2062void kvmppc_core_destroy_vm(struct kvm *kvm)
2063{
512691d4
PM
2064 uninhibit_secondary_onlining();
2065
f1378b1c 2066 kvmppc_free_vcores(kvm);
aa04b4cc
PM
2067 if (kvm->arch.rma) {
2068 kvm_release_rma(kvm->arch.rma);
2069 kvm->arch.rma = NULL;
2070 }
2071
8e591cb7
ME
2072 kvmppc_rtas_tokens_free(kvm);
2073
de56a948 2074 kvmppc_free_hpt(kvm);
54738c09 2075 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
de56a948
PM
2076}
2077
2078/* These are stubs for now */
2079void kvmppc_mmu_pte_pflush(struct kvm_vcpu *vcpu, ulong pa_start, ulong pa_end)
2080{
2081}
2082
2083/* We don't need to emulate any privileged instructions or dcbz */
2084int kvmppc_core_emulate_op(struct kvm_run *run, struct kvm_vcpu *vcpu,
2085 unsigned int inst, int *advance)
2086{
2087 return EMULATE_FAIL;
2088}
2089
54771e62 2090int kvmppc_core_emulate_mtspr(struct kvm_vcpu *vcpu, int sprn, ulong spr_val)
de56a948
PM
2091{
2092 return EMULATE_FAIL;
2093}
2094
54771e62 2095int kvmppc_core_emulate_mfspr(struct kvm_vcpu *vcpu, int sprn, ulong *spr_val)
de56a948
PM
2096{
2097 return EMULATE_FAIL;
2098}
2099
2100static int kvmppc_book3s_hv_init(void)
2101{
2102 int r;
2103
2104 r = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
2105
2106 if (r)
2107 return r;
2108
2109 r = kvmppc_mmu_hv_init();
2110
2111 return r;
2112}
2113
2114static void kvmppc_book3s_hv_exit(void)
2115{
2116 kvm_exit();
2117}
2118
2119module_init(kvmppc_book3s_hv_init);
2120module_exit(kvmppc_book3s_hv_exit);