blob: 86c4191cb75b2007ca6b554f36c6760f757d860a [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 Mackerrasde56a942011-06-29 00:21:34 +000033
34#include <asm/reg.h>
35#include <asm/cputable.h>
36#include <asm/cacheflush.h>
37#include <asm/tlbflush.h>
38#include <asm/uaccess.h>
39#include <asm/io.h>
40#include <asm/kvm_ppc.h>
41#include <asm/kvm_book3s.h>
42#include <asm/mmu_context.h>
43#include <asm/lppaca.h>
44#include <asm/processor.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000045#include <asm/cputhreads.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000046#include <asm/page.h>
Michael Neulingde1d9242011-11-09 20:39:49 +000047#include <asm/hvcall.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000048#include <linux/gfp.h>
49#include <linux/sched.h>
50#include <linux/vmalloc.h>
51#include <linux/highmem.h>
Paul Mackerrasc77162d2011-12-12 12:31:00 +000052#include <linux/hugetlb.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000053
54/* #define EXIT_DEBUG */
55/* #define EXIT_DEBUG_SIMPLE */
56/* #define EXIT_DEBUG_INT */
57
Paul Mackerras19ccb762011-07-23 17:42:46 +100058static void kvmppc_end_cede(struct kvm_vcpu *vcpu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +000059static int kvmppc_hv_setup_rma(struct kvm_vcpu *vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +100060
Paul Mackerrasde56a942011-06-29 00:21:34 +000061void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
62{
63 local_paca->kvm_hstate.kvm_vcpu = vcpu;
Paul Mackerras371fefd2011-06-29 00:23:08 +000064 local_paca->kvm_hstate.kvm_vcore = vcpu->arch.vcore;
Paul Mackerrasde56a942011-06-29 00:21:34 +000065}
66
67void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu)
68{
69}
70
Paul Mackerrasde56a942011-06-29 00:21:34 +000071void kvmppc_set_msr(struct kvm_vcpu *vcpu, u64 msr)
72{
73 vcpu->arch.shregs.msr = msr;
Paul Mackerras19ccb762011-07-23 17:42:46 +100074 kvmppc_end_cede(vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +000075}
76
77void kvmppc_set_pvr(struct kvm_vcpu *vcpu, u32 pvr)
78{
79 vcpu->arch.pvr = pvr;
80}
81
82void kvmppc_dump_regs(struct kvm_vcpu *vcpu)
83{
84 int r;
85
86 pr_err("vcpu %p (%d):\n", vcpu, vcpu->vcpu_id);
87 pr_err("pc = %.16lx msr = %.16llx trap = %x\n",
88 vcpu->arch.pc, vcpu->arch.shregs.msr, vcpu->arch.trap);
89 for (r = 0; r < 16; ++r)
90 pr_err("r%2d = %.16lx r%d = %.16lx\n",
91 r, kvmppc_get_gpr(vcpu, r),
92 r+16, kvmppc_get_gpr(vcpu, r+16));
93 pr_err("ctr = %.16lx lr = %.16lx\n",
94 vcpu->arch.ctr, vcpu->arch.lr);
95 pr_err("srr0 = %.16llx srr1 = %.16llx\n",
96 vcpu->arch.shregs.srr0, vcpu->arch.shregs.srr1);
97 pr_err("sprg0 = %.16llx sprg1 = %.16llx\n",
98 vcpu->arch.shregs.sprg0, vcpu->arch.shregs.sprg1);
99 pr_err("sprg2 = %.16llx sprg3 = %.16llx\n",
100 vcpu->arch.shregs.sprg2, vcpu->arch.shregs.sprg3);
101 pr_err("cr = %.8x xer = %.16lx dsisr = %.8x\n",
102 vcpu->arch.cr, vcpu->arch.xer, vcpu->arch.shregs.dsisr);
103 pr_err("dar = %.16llx\n", vcpu->arch.shregs.dar);
104 pr_err("fault dar = %.16lx dsisr = %.8x\n",
105 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
106 pr_err("SLB (%d entries):\n", vcpu->arch.slb_max);
107 for (r = 0; r < vcpu->arch.slb_max; ++r)
108 pr_err(" ESID = %.16llx VSID = %.16llx\n",
109 vcpu->arch.slb[r].orige, vcpu->arch.slb[r].origv);
110 pr_err("lpcr = %.16lx sdr1 = %.16lx last_inst = %.8x\n",
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000111 vcpu->kvm->arch.lpcr, vcpu->kvm->arch.sdr1,
Paul Mackerrasde56a942011-06-29 00:21:34 +0000112 vcpu->arch.last_inst);
113}
114
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000115struct kvm_vcpu *kvmppc_find_vcpu(struct kvm *kvm, int id)
116{
117 int r;
118 struct kvm_vcpu *v, *ret = NULL;
119
120 mutex_lock(&kvm->lock);
121 kvm_for_each_vcpu(r, v, kvm) {
122 if (v->vcpu_id == id) {
123 ret = v;
124 break;
125 }
126 }
127 mutex_unlock(&kvm->lock);
128 return ret;
129}
130
131static void init_vpa(struct kvm_vcpu *vcpu, struct lppaca *vpa)
132{
133 vpa->shared_proc = 1;
134 vpa->yield_count = 1;
135}
136
137static unsigned long do_h_register_vpa(struct kvm_vcpu *vcpu,
138 unsigned long flags,
139 unsigned long vcpuid, unsigned long vpa)
140{
141 struct kvm *kvm = vcpu->kvm;
Paul Mackerras93e60242011-12-12 12:28:55 +0000142 unsigned long len, nb;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000143 void *va;
144 struct kvm_vcpu *tvcpu;
Paul Mackerras93e60242011-12-12 12:28:55 +0000145 int err = H_PARAMETER;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000146
147 tvcpu = kvmppc_find_vcpu(kvm, vcpuid);
148 if (!tvcpu)
149 return H_PARAMETER;
150
151 flags >>= 63 - 18;
152 flags &= 7;
153 if (flags == 0 || flags == 4)
154 return H_PARAMETER;
155 if (flags < 4) {
156 if (vpa & 0x7f)
157 return H_PARAMETER;
Paul Mackerras93e60242011-12-12 12:28:55 +0000158 if (flags >= 2 && !tvcpu->arch.vpa)
159 return H_RESOURCE;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000160 /* registering new area; convert logical addr to real */
Paul Mackerras93e60242011-12-12 12:28:55 +0000161 va = kvmppc_pin_guest_page(kvm, vpa, &nb);
162 if (va == NULL)
Paul Mackerrasb2b2f162011-12-12 12:28:21 +0000163 return H_PARAMETER;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000164 if (flags <= 1)
165 len = *(unsigned short *)(va + 4);
166 else
167 len = *(unsigned int *)(va + 4);
Paul Mackerras93e60242011-12-12 12:28:55 +0000168 if (len > nb)
169 goto out_unpin;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000170 switch (flags) {
171 case 1: /* register VPA */
172 if (len < 640)
Paul Mackerras93e60242011-12-12 12:28:55 +0000173 goto out_unpin;
174 if (tvcpu->arch.vpa)
175 kvmppc_unpin_guest_page(kvm, vcpu->arch.vpa);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000176 tvcpu->arch.vpa = va;
177 init_vpa(vcpu, va);
178 break;
179 case 2: /* register DTL */
180 if (len < 48)
Paul Mackerras93e60242011-12-12 12:28:55 +0000181 goto out_unpin;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000182 len -= len % 48;
Paul Mackerras93e60242011-12-12 12:28:55 +0000183 if (tvcpu->arch.dtl)
184 kvmppc_unpin_guest_page(kvm, vcpu->arch.dtl);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000185 tvcpu->arch.dtl = va;
186 tvcpu->arch.dtl_end = va + len;
187 break;
188 case 3: /* register SLB shadow buffer */
Paul Mackerras93e60242011-12-12 12:28:55 +0000189 if (len < 16)
190 goto out_unpin;
191 if (tvcpu->arch.slb_shadow)
192 kvmppc_unpin_guest_page(kvm, vcpu->arch.slb_shadow);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000193 tvcpu->arch.slb_shadow = va;
194 break;
195 }
196 } else {
197 switch (flags) {
198 case 5: /* unregister VPA */
199 if (tvcpu->arch.slb_shadow || tvcpu->arch.dtl)
200 return H_RESOURCE;
Paul Mackerras93e60242011-12-12 12:28:55 +0000201 if (!tvcpu->arch.vpa)
202 break;
203 kvmppc_unpin_guest_page(kvm, tvcpu->arch.vpa);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000204 tvcpu->arch.vpa = NULL;
205 break;
206 case 6: /* unregister DTL */
Paul Mackerras93e60242011-12-12 12:28:55 +0000207 if (!tvcpu->arch.dtl)
208 break;
209 kvmppc_unpin_guest_page(kvm, tvcpu->arch.dtl);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000210 tvcpu->arch.dtl = NULL;
211 break;
212 case 7: /* unregister SLB shadow buffer */
Paul Mackerras93e60242011-12-12 12:28:55 +0000213 if (!tvcpu->arch.slb_shadow)
214 break;
215 kvmppc_unpin_guest_page(kvm, tvcpu->arch.slb_shadow);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000216 tvcpu->arch.slb_shadow = NULL;
217 break;
218 }
219 }
220 return H_SUCCESS;
Paul Mackerras93e60242011-12-12 12:28:55 +0000221
222 out_unpin:
223 kvmppc_unpin_guest_page(kvm, va);
224 return err;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000225}
226
227int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
228{
229 unsigned long req = kvmppc_get_gpr(vcpu, 3);
230 unsigned long target, ret = H_SUCCESS;
231 struct kvm_vcpu *tvcpu;
232
233 switch (req) {
Paul Mackerrasc77162d2011-12-12 12:31:00 +0000234 case H_ENTER:
235 ret = kvmppc_virtmode_h_enter(vcpu, kvmppc_get_gpr(vcpu, 4),
236 kvmppc_get_gpr(vcpu, 5),
237 kvmppc_get_gpr(vcpu, 6),
238 kvmppc_get_gpr(vcpu, 7));
239 break;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000240 case H_CEDE:
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000241 break;
242 case H_PROD:
243 target = kvmppc_get_gpr(vcpu, 4);
244 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
245 if (!tvcpu) {
246 ret = H_PARAMETER;
247 break;
248 }
249 tvcpu->arch.prodded = 1;
250 smp_mb();
251 if (vcpu->arch.ceded) {
252 if (waitqueue_active(&vcpu->wq)) {
253 wake_up_interruptible(&vcpu->wq);
254 vcpu->stat.halt_wakeup++;
255 }
256 }
257 break;
258 case H_CONFER:
259 break;
260 case H_REGISTER_VPA:
261 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
262 kvmppc_get_gpr(vcpu, 5),
263 kvmppc_get_gpr(vcpu, 6));
264 break;
265 default:
266 return RESUME_HOST;
267 }
268 kvmppc_set_gpr(vcpu, 3, ret);
269 vcpu->arch.hcall_needed = 0;
270 return RESUME_GUEST;
271}
272
Paul Mackerrasde56a942011-06-29 00:21:34 +0000273static int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu,
274 struct task_struct *tsk)
275{
276 int r = RESUME_HOST;
277
278 vcpu->stat.sum_exits++;
279
280 run->exit_reason = KVM_EXIT_UNKNOWN;
281 run->ready_for_interrupt_injection = 1;
282 switch (vcpu->arch.trap) {
283 /* We're good on these - the host merely wanted to get our attention */
284 case BOOK3S_INTERRUPT_HV_DECREMENTER:
285 vcpu->stat.dec_exits++;
286 r = RESUME_GUEST;
287 break;
288 case BOOK3S_INTERRUPT_EXTERNAL:
289 vcpu->stat.ext_intr_exits++;
290 r = RESUME_GUEST;
291 break;
292 case BOOK3S_INTERRUPT_PERFMON:
293 r = RESUME_GUEST;
294 break;
295 case BOOK3S_INTERRUPT_PROGRAM:
296 {
297 ulong flags;
298 /*
299 * Normally program interrupts are delivered directly
300 * to the guest by the hardware, but we can get here
301 * as a result of a hypervisor emulation interrupt
302 * (e40) getting turned into a 700 by BML RTAS.
303 */
304 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
305 kvmppc_core_queue_program(vcpu, flags);
306 r = RESUME_GUEST;
307 break;
308 }
309 case BOOK3S_INTERRUPT_SYSCALL:
310 {
311 /* hcall - punt to userspace */
312 int i;
313
314 if (vcpu->arch.shregs.msr & MSR_PR) {
315 /* sc 1 from userspace - reflect to guest syscall */
316 kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_SYSCALL);
317 r = RESUME_GUEST;
318 break;
319 }
320 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
321 for (i = 0; i < 9; ++i)
322 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
323 run->exit_reason = KVM_EXIT_PAPR_HCALL;
324 vcpu->arch.hcall_needed = 1;
325 r = RESUME_HOST;
326 break;
327 }
328 /*
Paul Mackerras342d3db2011-12-12 12:38:05 +0000329 * We get these next two if the guest accesses a page which it thinks
330 * it has mapped but which is not actually present, either because
331 * it is for an emulated I/O device or because the corresonding
332 * host page has been paged out. Any other HDSI/HISI interrupts
333 * have been handled already.
Paul Mackerrasde56a942011-06-29 00:21:34 +0000334 */
335 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
Paul Mackerras697d3892011-12-12 12:36:37 +0000336 r = kvmppc_book3s_hv_page_fault(run, vcpu,
337 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000338 break;
339 case BOOK3S_INTERRUPT_H_INST_STORAGE:
Paul Mackerras342d3db2011-12-12 12:38:05 +0000340 r = kvmppc_book3s_hv_page_fault(run, vcpu,
341 kvmppc_get_pc(vcpu), 0);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000342 break;
343 /*
344 * This occurs if the guest executes an illegal instruction.
345 * We just generate a program interrupt to the guest, since
346 * we don't emulate any guest instructions at this stage.
347 */
348 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
349 kvmppc_core_queue_program(vcpu, 0x80000);
350 r = RESUME_GUEST;
351 break;
352 default:
353 kvmppc_dump_regs(vcpu);
354 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
355 vcpu->arch.trap, kvmppc_get_pc(vcpu),
356 vcpu->arch.shregs.msr);
357 r = RESUME_HOST;
358 BUG();
359 break;
360 }
361
Paul Mackerrasde56a942011-06-29 00:21:34 +0000362 return r;
363}
364
365int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
366 struct kvm_sregs *sregs)
367{
368 int i;
369
370 sregs->pvr = vcpu->arch.pvr;
371
372 memset(sregs, 0, sizeof(struct kvm_sregs));
373 for (i = 0; i < vcpu->arch.slb_max; i++) {
374 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
375 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
376 }
377
378 return 0;
379}
380
381int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
382 struct kvm_sregs *sregs)
383{
384 int i, j;
385
386 kvmppc_set_pvr(vcpu, sregs->pvr);
387
388 j = 0;
389 for (i = 0; i < vcpu->arch.slb_nr; i++) {
390 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
391 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
392 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
393 ++j;
394 }
395 }
396 vcpu->arch.slb_max = j;
397
398 return 0;
399}
400
401int kvmppc_core_check_processor_compat(void)
402{
Paul Mackerras9e368f22011-06-29 00:40:08 +0000403 if (cpu_has_feature(CPU_FTR_HVMODE))
Paul Mackerrasde56a942011-06-29 00:21:34 +0000404 return 0;
405 return -EIO;
406}
407
408struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id)
409{
410 struct kvm_vcpu *vcpu;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000411 int err = -EINVAL;
412 int core;
413 struct kvmppc_vcore *vcore;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000414
Paul Mackerras371fefd2011-06-29 00:23:08 +0000415 core = id / threads_per_core;
416 if (core >= KVM_MAX_VCORES)
417 goto out;
418
419 err = -ENOMEM;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000420 vcpu = kzalloc(sizeof(struct kvm_vcpu), GFP_KERNEL);
421 if (!vcpu)
422 goto out;
423
424 err = kvm_vcpu_init(vcpu, kvm, id);
425 if (err)
426 goto free_vcpu;
427
428 vcpu->arch.shared = &vcpu->arch.shregs;
429 vcpu->arch.last_cpu = -1;
430 vcpu->arch.mmcr[0] = MMCR0_FC;
431 vcpu->arch.ctrl = CTRL_RUNLATCH;
432 /* default to host PVR, since we can't spoof it */
433 vcpu->arch.pvr = mfspr(SPRN_PVR);
434 kvmppc_set_pvr(vcpu, vcpu->arch.pvr);
435
Paul Mackerrasde56a942011-06-29 00:21:34 +0000436 kvmppc_mmu_book3s_hv_init(vcpu);
437
Paul Mackerras371fefd2011-06-29 00:23:08 +0000438 /*
Paul Mackerras19ccb762011-07-23 17:42:46 +1000439 * We consider the vcpu stopped until we see the first run ioctl for it.
Paul Mackerras371fefd2011-06-29 00:23:08 +0000440 */
Paul Mackerras19ccb762011-07-23 17:42:46 +1000441 vcpu->arch.state = KVMPPC_VCPU_STOPPED;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000442
443 init_waitqueue_head(&vcpu->arch.cpu_run);
444
445 mutex_lock(&kvm->lock);
446 vcore = kvm->arch.vcores[core];
447 if (!vcore) {
448 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
449 if (vcore) {
450 INIT_LIST_HEAD(&vcore->runnable_threads);
451 spin_lock_init(&vcore->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000452 init_waitqueue_head(&vcore->wq);
Paul Mackerras371fefd2011-06-29 00:23:08 +0000453 }
454 kvm->arch.vcores[core] = vcore;
455 }
456 mutex_unlock(&kvm->lock);
457
458 if (!vcore)
459 goto free_vcpu;
460
461 spin_lock(&vcore->lock);
462 ++vcore->num_threads;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000463 spin_unlock(&vcore->lock);
464 vcpu->arch.vcore = vcore;
465
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200466 vcpu->arch.cpu_type = KVM_CPU_3S_64;
467 kvmppc_sanity_check(vcpu);
468
Paul Mackerrasde56a942011-06-29 00:21:34 +0000469 return vcpu;
470
471free_vcpu:
472 kfree(vcpu);
473out:
474 return ERR_PTR(err);
475}
476
477void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu)
478{
Paul Mackerras93e60242011-12-12 12:28:55 +0000479 if (vcpu->arch.dtl)
480 kvmppc_unpin_guest_page(vcpu->kvm, vcpu->arch.dtl);
481 if (vcpu->arch.slb_shadow)
482 kvmppc_unpin_guest_page(vcpu->kvm, vcpu->arch.slb_shadow);
483 if (vcpu->arch.vpa)
484 kvmppc_unpin_guest_page(vcpu->kvm, vcpu->arch.vpa);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000485 kvm_vcpu_uninit(vcpu);
486 kfree(vcpu);
487}
488
Paul Mackerras19ccb762011-07-23 17:42:46 +1000489static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000490{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000491 unsigned long dec_nsec, now;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000492
Paul Mackerras19ccb762011-07-23 17:42:46 +1000493 now = get_tb();
494 if (now > vcpu->arch.dec_expires) {
495 /* decrementer has already gone negative */
496 kvmppc_core_queue_dec(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -0600497 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000498 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000499 }
Paul Mackerras19ccb762011-07-23 17:42:46 +1000500 dec_nsec = (vcpu->arch.dec_expires - now) * NSEC_PER_SEC
501 / tb_ticks_per_sec;
502 hrtimer_start(&vcpu->arch.dec_timer, ktime_set(0, dec_nsec),
503 HRTIMER_MODE_REL);
504 vcpu->arch.timer_running = 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000505}
506
Paul Mackerras19ccb762011-07-23 17:42:46 +1000507static void kvmppc_end_cede(struct kvm_vcpu *vcpu)
Paul Mackerras371fefd2011-06-29 00:23:08 +0000508{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000509 vcpu->arch.ceded = 0;
510 if (vcpu->arch.timer_running) {
511 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
512 vcpu->arch.timer_running = 0;
513 }
Paul Mackerras371fefd2011-06-29 00:23:08 +0000514}
515
516extern int __kvmppc_vcore_entry(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu);
517extern void xics_wake_cpu(int cpu);
518
519static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
520 struct kvm_vcpu *vcpu)
521{
522 struct kvm_vcpu *v;
523
524 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
525 return;
526 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
527 --vc->n_runnable;
Paul Mackerras19ccb762011-07-23 17:42:46 +1000528 ++vc->n_busy;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000529 /* decrement the physical thread id of each following vcpu */
530 v = vcpu;
531 list_for_each_entry_continue(v, &vc->runnable_threads, arch.run_list)
532 --v->arch.ptid;
533 list_del(&vcpu->arch.run_list);
534}
535
536static void kvmppc_start_thread(struct kvm_vcpu *vcpu)
537{
538 int cpu;
539 struct paca_struct *tpaca;
540 struct kvmppc_vcore *vc = vcpu->arch.vcore;
541
Paul Mackerras19ccb762011-07-23 17:42:46 +1000542 if (vcpu->arch.timer_running) {
543 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
544 vcpu->arch.timer_running = 0;
545 }
Paul Mackerras371fefd2011-06-29 00:23:08 +0000546 cpu = vc->pcpu + vcpu->arch.ptid;
547 tpaca = &paca[cpu];
548 tpaca->kvm_hstate.kvm_vcpu = vcpu;
549 tpaca->kvm_hstate.kvm_vcore = vc;
Paul Mackerras19ccb762011-07-23 17:42:46 +1000550 tpaca->kvm_hstate.napping = 0;
551 vcpu->cpu = vc->pcpu;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000552 smp_wmb();
Michael Neuling251da032011-11-10 16:03:20 +0000553#if defined(CONFIG_PPC_ICP_NATIVE) && defined(CONFIG_SMP)
Paul Mackerras371fefd2011-06-29 00:23:08 +0000554 if (vcpu->arch.ptid) {
555 tpaca->cpu_start = 0x80;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000556 wmb();
557 xics_wake_cpu(cpu);
558 ++vc->n_woken;
559 }
560#endif
561}
562
563static void kvmppc_wait_for_nap(struct kvmppc_vcore *vc)
564{
565 int i;
566
567 HMT_low();
568 i = 0;
569 while (vc->nap_count < vc->n_woken) {
570 if (++i >= 1000000) {
571 pr_err("kvmppc_wait_for_nap timeout %d %d\n",
572 vc->nap_count, vc->n_woken);
573 break;
574 }
575 cpu_relax();
576 }
577 HMT_medium();
578}
579
580/*
581 * Check that we are on thread 0 and that any other threads in
582 * this core are off-line.
583 */
584static int on_primary_thread(void)
585{
586 int cpu = smp_processor_id();
587 int thr = cpu_thread_in_core(cpu);
588
589 if (thr)
590 return 0;
591 while (++thr < threads_per_core)
592 if (cpu_online(cpu + thr))
593 return 0;
594 return 1;
595}
596
597/*
598 * Run a set of guest threads on a physical core.
599 * Called with vc->lock held.
600 */
601static int kvmppc_run_core(struct kvmppc_vcore *vc)
602{
Paul Mackerras19ccb762011-07-23 17:42:46 +1000603 struct kvm_vcpu *vcpu, *vcpu0, *vnext;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000604 long ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000605 u64 now;
Paul Mackerras19ccb762011-07-23 17:42:46 +1000606 int ptid;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000607
Paul Mackerras371fefd2011-06-29 00:23:08 +0000608 /* don't start if any threads have a signal pending */
609 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
610 if (signal_pending(vcpu->arch.run_task))
611 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000612
613 /*
614 * Make sure we are running on thread 0, and that
615 * secondary threads are offline.
616 * XXX we should also block attempts to bring any
617 * secondary threads online.
618 */
Paul Mackerras371fefd2011-06-29 00:23:08 +0000619 if (threads_per_core > 1 && !on_primary_thread()) {
620 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
621 vcpu->arch.ret = -EBUSY;
622 goto out;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000623 }
624
Paul Mackerras19ccb762011-07-23 17:42:46 +1000625 /*
626 * Assign physical thread IDs, first to non-ceded vcpus
627 * and then to ceded ones.
628 */
629 ptid = 0;
630 vcpu0 = NULL;
631 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) {
632 if (!vcpu->arch.ceded) {
633 if (!ptid)
634 vcpu0 = vcpu;
635 vcpu->arch.ptid = ptid++;
636 }
637 }
638 if (!vcpu0)
639 return 0; /* nothing to run */
640 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
641 if (vcpu->arch.ceded)
642 vcpu->arch.ptid = ptid++;
643
Paul Mackerras371fefd2011-06-29 00:23:08 +0000644 vc->n_woken = 0;
645 vc->nap_count = 0;
646 vc->entry_exit_count = 0;
Paul Mackerras19ccb762011-07-23 17:42:46 +1000647 vc->vcore_state = VCORE_RUNNING;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000648 vc->in_guest = 0;
649 vc->pcpu = smp_processor_id();
Paul Mackerras19ccb762011-07-23 17:42:46 +1000650 vc->napping_threads = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000651 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
652 kvmppc_start_thread(vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +0000653
654 preempt_disable();
Paul Mackerras19ccb762011-07-23 17:42:46 +1000655 spin_unlock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000656
Paul Mackerras19ccb762011-07-23 17:42:46 +1000657 kvm_guest_enter();
658 __kvmppc_vcore_entry(NULL, vcpu0);
659
Paul Mackerras371fefd2011-06-29 00:23:08 +0000660 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000661 /* disable sending of IPIs on virtual external irqs */
662 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
663 vcpu->cpu = -1;
664 /* wait for secondary threads to finish writing their state to memory */
Paul Mackerras371fefd2011-06-29 00:23:08 +0000665 if (vc->nap_count < vc->n_woken)
666 kvmppc_wait_for_nap(vc);
667 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
Paul Mackerras19ccb762011-07-23 17:42:46 +1000668 vc->vcore_state = VCORE_EXITING;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000669 spin_unlock(&vc->lock);
670
671 /* make sure updates to secondary vcpu structs are visible now */
672 smp_mb();
Paul Mackerrasde56a942011-06-29 00:21:34 +0000673 kvm_guest_exit();
674
675 preempt_enable();
676 kvm_resched(vcpu);
677
678 now = get_tb();
Paul Mackerras371fefd2011-06-29 00:23:08 +0000679 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) {
680 /* cancel pending dec exception if dec is positive */
681 if (now < vcpu->arch.dec_expires &&
682 kvmppc_core_pending_dec(vcpu))
683 kvmppc_core_dequeue_dec(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000684
685 ret = RESUME_GUEST;
686 if (vcpu->arch.trap)
687 ret = kvmppc_handle_exit(vcpu->arch.kvm_run, vcpu,
688 vcpu->arch.run_task);
689
Paul Mackerras371fefd2011-06-29 00:23:08 +0000690 vcpu->arch.ret = ret;
691 vcpu->arch.trap = 0;
Paul Mackerras19ccb762011-07-23 17:42:46 +1000692
693 if (vcpu->arch.ceded) {
694 if (ret != RESUME_GUEST)
695 kvmppc_end_cede(vcpu);
696 else
697 kvmppc_set_timer(vcpu);
698 }
Paul Mackerras371fefd2011-06-29 00:23:08 +0000699 }
Paul Mackerrasde56a942011-06-29 00:21:34 +0000700
Paul Mackerras371fefd2011-06-29 00:23:08 +0000701 spin_lock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000702 out:
Paul Mackerras19ccb762011-07-23 17:42:46 +1000703 vc->vcore_state = VCORE_INACTIVE;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000704 list_for_each_entry_safe(vcpu, vnext, &vc->runnable_threads,
705 arch.run_list) {
706 if (vcpu->arch.ret != RESUME_GUEST) {
707 kvmppc_remove_runnable(vc, vcpu);
708 wake_up(&vcpu->arch.cpu_run);
709 }
710 }
711
712 return 1;
713}
714
Paul Mackerras19ccb762011-07-23 17:42:46 +1000715/*
716 * Wait for some other vcpu thread to execute us, and
717 * wake us up when we need to handle something in the host.
718 */
719static void kvmppc_wait_for_exec(struct kvm_vcpu *vcpu, int wait_state)
Paul Mackerras371fefd2011-06-29 00:23:08 +0000720{
Paul Mackerras371fefd2011-06-29 00:23:08 +0000721 DEFINE_WAIT(wait);
722
Paul Mackerras19ccb762011-07-23 17:42:46 +1000723 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
724 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE)
725 schedule();
726 finish_wait(&vcpu->arch.cpu_run, &wait);
727}
Paul Mackerras371fefd2011-06-29 00:23:08 +0000728
Paul Mackerras19ccb762011-07-23 17:42:46 +1000729/*
730 * All the vcpus in this vcore are idle, so wait for a decrementer
731 * or external interrupt to one of the vcpus. vc->lock is held.
732 */
733static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
734{
735 DEFINE_WAIT(wait);
736 struct kvm_vcpu *v;
737 int all_idle = 1;
738
739 prepare_to_wait(&vc->wq, &wait, TASK_INTERRUPTIBLE);
740 vc->vcore_state = VCORE_SLEEPING;
741 spin_unlock(&vc->lock);
742 list_for_each_entry(v, &vc->runnable_threads, arch.run_list) {
743 if (!v->arch.ceded || v->arch.pending_exceptions) {
744 all_idle = 0;
745 break;
746 }
747 }
748 if (all_idle)
749 schedule();
750 finish_wait(&vc->wq, &wait);
751 spin_lock(&vc->lock);
752 vc->vcore_state = VCORE_INACTIVE;
753}
754
755static int kvmppc_run_vcpu(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
756{
757 int n_ceded;
758 int prev_state;
759 struct kvmppc_vcore *vc;
760 struct kvm_vcpu *v, *vn;
Paul Mackerras9e368f22011-06-29 00:40:08 +0000761
Paul Mackerras371fefd2011-06-29 00:23:08 +0000762 kvm_run->exit_reason = 0;
763 vcpu->arch.ret = RESUME_GUEST;
764 vcpu->arch.trap = 0;
765
Paul Mackerras371fefd2011-06-29 00:23:08 +0000766 /*
767 * Synchronize with other threads in this virtual core
768 */
769 vc = vcpu->arch.vcore;
770 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000771 vcpu->arch.ceded = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000772 vcpu->arch.run_task = current;
773 vcpu->arch.kvm_run = kvm_run;
Paul Mackerras19ccb762011-07-23 17:42:46 +1000774 prev_state = vcpu->arch.state;
775 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000776 list_add_tail(&vcpu->arch.run_list, &vc->runnable_threads);
777 ++vc->n_runnable;
778
Paul Mackerras19ccb762011-07-23 17:42:46 +1000779 /*
780 * This happens the first time this is called for a vcpu.
781 * If the vcore is already running, we may be able to start
782 * this thread straight away and have it join in.
783 */
784 if (prev_state == KVMPPC_VCPU_STOPPED) {
785 if (vc->vcore_state == VCORE_RUNNING &&
786 VCORE_EXIT_COUNT(vc) == 0) {
787 vcpu->arch.ptid = vc->n_runnable - 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +0000788 kvmppc_start_thread(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000789 }
Paul Mackerras371fefd2011-06-29 00:23:08 +0000790
Paul Mackerras19ccb762011-07-23 17:42:46 +1000791 } else if (prev_state == KVMPPC_VCPU_BUSY_IN_HOST)
792 --vc->n_busy;
793
794 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
795 !signal_pending(current)) {
796 if (vc->n_busy || vc->vcore_state != VCORE_INACTIVE) {
797 spin_unlock(&vc->lock);
798 kvmppc_wait_for_exec(vcpu, TASK_INTERRUPTIBLE);
799 spin_lock(&vc->lock);
800 continue;
801 }
802 n_ceded = 0;
803 list_for_each_entry(v, &vc->runnable_threads, arch.run_list)
804 n_ceded += v->arch.ceded;
805 if (n_ceded == vc->n_runnable)
806 kvmppc_vcore_blocked(vc);
807 else
808 kvmppc_run_core(vc);
809
810 list_for_each_entry_safe(v, vn, &vc->runnable_threads,
811 arch.run_list) {
Scott Wood7e28e60e2011-11-08 18:23:20 -0600812 kvmppc_core_prepare_to_enter(v);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000813 if (signal_pending(v->arch.run_task)) {
814 kvmppc_remove_runnable(vc, v);
815 v->stat.signal_exits++;
816 v->arch.kvm_run->exit_reason = KVM_EXIT_INTR;
817 v->arch.ret = -EINTR;
818 wake_up(&v->arch.cpu_run);
819 }
820 }
Paul Mackerras371fefd2011-06-29 00:23:08 +0000821 }
822
Paul Mackerras19ccb762011-07-23 17:42:46 +1000823 if (signal_pending(current)) {
824 if (vc->vcore_state == VCORE_RUNNING ||
825 vc->vcore_state == VCORE_EXITING) {
826 spin_unlock(&vc->lock);
827 kvmppc_wait_for_exec(vcpu, TASK_UNINTERRUPTIBLE);
828 spin_lock(&vc->lock);
829 }
830 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
831 kvmppc_remove_runnable(vc, vcpu);
832 vcpu->stat.signal_exits++;
833 kvm_run->exit_reason = KVM_EXIT_INTR;
834 vcpu->arch.ret = -EINTR;
835 }
836 }
Paul Mackerras371fefd2011-06-29 00:23:08 +0000837
Paul Mackerras19ccb762011-07-23 17:42:46 +1000838 spin_unlock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +0000839 return vcpu->arch.ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000840}
841
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000842int kvmppc_vcpu_run(struct kvm_run *run, struct kvm_vcpu *vcpu)
843{
844 int r;
845
Alexander Grafaf8f38b2011-08-10 13:57:08 +0200846 if (!vcpu->arch.sane) {
847 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
848 return -EINVAL;
849 }
850
Scott Wood25051b52011-11-08 18:23:23 -0600851 kvmppc_core_prepare_to_enter(vcpu);
852
Paul Mackerras19ccb762011-07-23 17:42:46 +1000853 /* No need to go into the guest when all we'll do is come back out */
854 if (signal_pending(current)) {
855 run->exit_reason = KVM_EXIT_INTR;
856 return -EINTR;
857 }
858
Paul Mackerrasc77162d2011-12-12 12:31:00 +0000859 /* On the first time here, set up VRMA or RMA */
860 if (!vcpu->kvm->arch.rma_setup_done) {
861 r = kvmppc_hv_setup_rma(vcpu);
862 if (r)
863 return r;
864 }
Paul Mackerras19ccb762011-07-23 17:42:46 +1000865
866 flush_fp_to_thread(current);
867 flush_altivec_to_thread(current);
868 flush_vsx_to_thread(current);
869 vcpu->arch.wqp = &vcpu->arch.vcore->wq;
Paul Mackerras342d3db2011-12-12 12:38:05 +0000870 vcpu->arch.pgdir = current->mm->pgd;
Paul Mackerras19ccb762011-07-23 17:42:46 +1000871
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000872 do {
873 r = kvmppc_run_vcpu(run, vcpu);
874
875 if (run->exit_reason == KVM_EXIT_PAPR_HCALL &&
876 !(vcpu->arch.shregs.msr & MSR_PR)) {
877 r = kvmppc_pseries_do_hcall(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -0600878 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000879 }
880 } while (r == RESUME_GUEST);
881 return r;
882}
883
David Gibson54738c02011-06-29 00:22:41 +0000884static long kvmppc_stt_npages(unsigned long window_size)
885{
886 return ALIGN((window_size >> SPAPR_TCE_SHIFT)
887 * sizeof(u64), PAGE_SIZE) / PAGE_SIZE;
888}
889
890static void release_spapr_tce_table(struct kvmppc_spapr_tce_table *stt)
891{
892 struct kvm *kvm = stt->kvm;
893 int i;
894
895 mutex_lock(&kvm->lock);
896 list_del(&stt->list);
897 for (i = 0; i < kvmppc_stt_npages(stt->window_size); i++)
898 __free_page(stt->pages[i]);
899 kfree(stt);
900 mutex_unlock(&kvm->lock);
901
902 kvm_put_kvm(kvm);
903}
904
905static int kvm_spapr_tce_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
906{
907 struct kvmppc_spapr_tce_table *stt = vma->vm_file->private_data;
908 struct page *page;
909
910 if (vmf->pgoff >= kvmppc_stt_npages(stt->window_size))
911 return VM_FAULT_SIGBUS;
912
913 page = stt->pages[vmf->pgoff];
914 get_page(page);
915 vmf->page = page;
916 return 0;
917}
918
919static const struct vm_operations_struct kvm_spapr_tce_vm_ops = {
920 .fault = kvm_spapr_tce_fault,
921};
922
923static int kvm_spapr_tce_mmap(struct file *file, struct vm_area_struct *vma)
924{
925 vma->vm_ops = &kvm_spapr_tce_vm_ops;
926 return 0;
927}
928
929static int kvm_spapr_tce_release(struct inode *inode, struct file *filp)
930{
931 struct kvmppc_spapr_tce_table *stt = filp->private_data;
932
933 release_spapr_tce_table(stt);
934 return 0;
935}
936
937static struct file_operations kvm_spapr_tce_fops = {
938 .mmap = kvm_spapr_tce_mmap,
939 .release = kvm_spapr_tce_release,
940};
941
942long kvm_vm_ioctl_create_spapr_tce(struct kvm *kvm,
943 struct kvm_create_spapr_tce *args)
944{
945 struct kvmppc_spapr_tce_table *stt = NULL;
946 long npages;
947 int ret = -ENOMEM;
948 int i;
949
950 /* Check this LIOBN hasn't been previously allocated */
951 list_for_each_entry(stt, &kvm->arch.spapr_tce_tables, list) {
952 if (stt->liobn == args->liobn)
953 return -EBUSY;
954 }
955
956 npages = kvmppc_stt_npages(args->window_size);
957
958 stt = kzalloc(sizeof(*stt) + npages* sizeof(struct page *),
959 GFP_KERNEL);
960 if (!stt)
961 goto fail;
962
963 stt->liobn = args->liobn;
964 stt->window_size = args->window_size;
965 stt->kvm = kvm;
966
967 for (i = 0; i < npages; i++) {
968 stt->pages[i] = alloc_page(GFP_KERNEL | __GFP_ZERO);
969 if (!stt->pages[i])
970 goto fail;
971 }
972
973 kvm_get_kvm(kvm);
974
975 mutex_lock(&kvm->lock);
976 list_add(&stt->list, &kvm->arch.spapr_tce_tables);
977
978 mutex_unlock(&kvm->lock);
979
980 return anon_inode_getfd("kvm-spapr-tce", &kvm_spapr_tce_fops,
981 stt, O_RDWR);
982
983fail:
984 if (stt) {
985 for (i = 0; i < npages; i++)
986 if (stt->pages[i])
987 __free_page(stt->pages[i]);
988
989 kfree(stt);
990 }
991 return ret;
992}
993
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000994/* Work out RMLS (real mode limit selector) field value for a given RMA size.
Paul Mackerras9e368f22011-06-29 00:40:08 +0000995 Assumes POWER7 or PPC970. */
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +0000996static inline int lpcr_rmls(unsigned long rma_size)
997{
998 switch (rma_size) {
999 case 32ul << 20: /* 32 MB */
Paul Mackerras9e368f22011-06-29 00:40:08 +00001000 if (cpu_has_feature(CPU_FTR_ARCH_206))
1001 return 8; /* only supported on POWER7 */
1002 return -1;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001003 case 64ul << 20: /* 64 MB */
1004 return 3;
1005 case 128ul << 20: /* 128 MB */
1006 return 7;
1007 case 256ul << 20: /* 256 MB */
1008 return 4;
1009 case 1ul << 30: /* 1 GB */
1010 return 2;
1011 case 16ul << 30: /* 16 GB */
1012 return 1;
1013 case 256ul << 30: /* 256 GB */
1014 return 0;
1015 default:
1016 return -1;
1017 }
1018}
1019
1020static int kvm_rma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1021{
1022 struct kvmppc_rma_info *ri = vma->vm_file->private_data;
1023 struct page *page;
1024
1025 if (vmf->pgoff >= ri->npages)
1026 return VM_FAULT_SIGBUS;
1027
1028 page = pfn_to_page(ri->base_pfn + vmf->pgoff);
1029 get_page(page);
1030 vmf->page = page;
1031 return 0;
1032}
1033
1034static const struct vm_operations_struct kvm_rma_vm_ops = {
1035 .fault = kvm_rma_fault,
1036};
1037
1038static int kvm_rma_mmap(struct file *file, struct vm_area_struct *vma)
1039{
1040 vma->vm_flags |= VM_RESERVED;
1041 vma->vm_ops = &kvm_rma_vm_ops;
1042 return 0;
1043}
1044
1045static int kvm_rma_release(struct inode *inode, struct file *filp)
1046{
1047 struct kvmppc_rma_info *ri = filp->private_data;
1048
1049 kvm_release_rma(ri);
1050 return 0;
1051}
1052
1053static struct file_operations kvm_rma_fops = {
1054 .mmap = kvm_rma_mmap,
1055 .release = kvm_rma_release,
1056};
1057
1058long kvm_vm_ioctl_allocate_rma(struct kvm *kvm, struct kvm_allocate_rma *ret)
1059{
1060 struct kvmppc_rma_info *ri;
1061 long fd;
1062
1063 ri = kvm_alloc_rma();
1064 if (!ri)
1065 return -ENOMEM;
1066
1067 fd = anon_inode_getfd("kvm-rma", &kvm_rma_fops, ri, O_RDWR);
1068 if (fd < 0)
1069 kvm_release_rma(ri);
1070
1071 ret->rma_size = ri->npages << PAGE_SHIFT;
1072 return fd;
1073}
1074
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001075static unsigned long slb_pgsize_encoding(unsigned long psize)
1076{
1077 unsigned long senc = 0;
1078
1079 if (psize > 0x1000) {
1080 senc = SLB_VSID_L;
1081 if (psize == 0x10000)
1082 senc |= SLB_VSID_LP_01;
1083 }
1084 return senc;
1085}
1086
Paul Mackerrasde56a942011-06-29 00:21:34 +00001087int kvmppc_core_prepare_memory_region(struct kvm *kvm,
1088 struct kvm_userspace_memory_region *mem)
1089{
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001090 unsigned long npages;
Paul Mackerrasb2b2f162011-12-12 12:28:21 +00001091 unsigned long *phys;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001092
Paul Mackerrasb2b2f162011-12-12 12:28:21 +00001093 /* Allocate a slot_phys array */
Paul Mackerrasb2b2f162011-12-12 12:28:21 +00001094 phys = kvm->arch.slot_phys[mem->slot];
Paul Mackerras342d3db2011-12-12 12:38:05 +00001095 if (!kvm->arch.using_mmu_notifiers && !phys) {
1096 npages = mem->memory_size >> PAGE_SHIFT;
Paul Mackerrasb2b2f162011-12-12 12:28:21 +00001097 phys = vzalloc(npages * sizeof(unsigned long));
1098 if (!phys)
1099 return -ENOMEM;
1100 kvm->arch.slot_phys[mem->slot] = phys;
1101 kvm->arch.slot_npages[mem->slot] = npages;
1102 }
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001103
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001104 return 0;
1105}
1106
1107static void unpin_slot(struct kvm *kvm, int slot_id)
1108{
1109 unsigned long *physp;
1110 unsigned long j, npages, pfn;
1111 struct page *page;
1112
1113 physp = kvm->arch.slot_phys[slot_id];
1114 npages = kvm->arch.slot_npages[slot_id];
1115 if (physp) {
1116 spin_lock(&kvm->arch.slot_phys_lock);
1117 for (j = 0; j < npages; j++) {
1118 if (!(physp[j] & KVMPPC_GOT_PAGE))
1119 continue;
1120 pfn = physp[j] >> PAGE_SHIFT;
1121 page = pfn_to_page(pfn);
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001122 if (PageHuge(page))
1123 page = compound_head(page);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001124 SetPageDirty(page);
1125 put_page(page);
1126 }
1127 kvm->arch.slot_phys[slot_id] = NULL;
1128 spin_unlock(&kvm->arch.slot_phys_lock);
1129 vfree(physp);
1130 }
1131}
1132
1133void kvmppc_core_commit_memory_region(struct kvm *kvm,
1134 struct kvm_userspace_memory_region *mem)
1135{
1136}
1137
1138static int kvmppc_hv_setup_rma(struct kvm_vcpu *vcpu)
1139{
1140 int err = 0;
1141 struct kvm *kvm = vcpu->kvm;
1142 struct kvmppc_rma_info *ri = NULL;
1143 unsigned long hva;
1144 struct kvm_memory_slot *memslot;
1145 struct vm_area_struct *vma;
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001146 unsigned long lpcr, senc;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001147 unsigned long psize, porder;
1148 unsigned long rma_size;
1149 unsigned long rmls;
1150 unsigned long *physp;
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001151 unsigned long i, npages;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001152
1153 mutex_lock(&kvm->lock);
1154 if (kvm->arch.rma_setup_done)
1155 goto out; /* another vcpu beat us to it */
1156
1157 /* Look up the memslot for guest physical address 0 */
1158 memslot = gfn_to_memslot(kvm, 0);
1159
1160 /* We must have some memory at 0 by now */
1161 err = -EINVAL;
1162 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
1163 goto out;
1164
1165 /* Look up the VMA for the start of this memory slot */
1166 hva = memslot->userspace_addr;
1167 down_read(&current->mm->mmap_sem);
1168 vma = find_vma(current->mm, hva);
1169 if (!vma || vma->vm_start > hva || (vma->vm_flags & VM_IO))
1170 goto up_out;
1171
1172 psize = vma_kernel_pagesize(vma);
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001173 porder = __ilog2(psize);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001174
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001175 /* Is this one of our preallocated RMAs? */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001176 if (vma->vm_file && vma->vm_file->f_op == &kvm_rma_fops &&
1177 hva == vma->vm_start)
1178 ri = vma->vm_file->private_data;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001179
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001180 up_read(&current->mm->mmap_sem);
1181
1182 if (!ri) {
1183 /* On POWER7, use VRMA; on PPC970, give up */
1184 err = -EPERM;
1185 if (cpu_has_feature(CPU_FTR_ARCH_201)) {
1186 pr_err("KVM: CPU requires an RMO\n");
1187 goto out;
Paul Mackerras9e368f22011-06-29 00:40:08 +00001188 }
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001189
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001190 /* We can handle 4k, 64k or 16M pages in the VRMA */
1191 err = -EINVAL;
1192 if (!(psize == 0x1000 || psize == 0x10000 ||
1193 psize == 0x1000000))
1194 goto out;
1195
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001196 /* Update VRMASD field in the LPCR */
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001197 senc = slb_pgsize_encoding(psize);
Paul Mackerras697d3892011-12-12 12:36:37 +00001198 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
1199 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001200 lpcr = kvm->arch.lpcr & ~LPCR_VRMASD;
1201 lpcr |= senc << (LPCR_VRMASD_SH - 4);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001202 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001203
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001204 /* Create HPTEs in the hash page table for the VRMA */
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001205 kvmppc_map_vrma(vcpu, memslot, porder);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001206
1207 } else {
1208 /* Set up to use an RMO region */
1209 rma_size = ri->npages;
1210 if (rma_size > memslot->npages)
1211 rma_size = memslot->npages;
1212 rma_size <<= PAGE_SHIFT;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001213 rmls = lpcr_rmls(rma_size);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001214 err = -EINVAL;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001215 if (rmls < 0) {
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001216 pr_err("KVM: Can't use RMA of 0x%lx bytes\n", rma_size);
1217 goto out;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001218 }
1219 atomic_inc(&ri->use_count);
1220 kvm->arch.rma = ri;
Paul Mackerras9e368f22011-06-29 00:40:08 +00001221
1222 /* Update LPCR and RMOR */
1223 lpcr = kvm->arch.lpcr;
1224 if (cpu_has_feature(CPU_FTR_ARCH_201)) {
1225 /* PPC970; insert RMLS value (split field) in HID4 */
1226 lpcr &= ~((1ul << HID4_RMLS0_SH) |
1227 (3ul << HID4_RMLS2_SH));
1228 lpcr |= ((rmls >> 2) << HID4_RMLS0_SH) |
1229 ((rmls & 3) << HID4_RMLS2_SH);
1230 /* RMOR is also in HID4 */
1231 lpcr |= ((ri->base_pfn >> (26 - PAGE_SHIFT)) & 0xffff)
1232 << HID4_RMOR_SH;
1233 } else {
1234 /* POWER7 */
1235 lpcr &= ~(LPCR_VPM0 | LPCR_VRMA_L);
1236 lpcr |= rmls << LPCR_RMLS_SH;
1237 kvm->arch.rmor = kvm->arch.rma->base_pfn << PAGE_SHIFT;
1238 }
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001239 kvm->arch.lpcr = lpcr;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001240 pr_info("KVM: Using RMO at %lx size %lx (LPCR = %lx)\n",
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001241 ri->base_pfn << PAGE_SHIFT, rma_size, lpcr);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001242
1243 /* Initialize phys addrs of pages in RMO */
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001244 npages = ri->npages;
1245 porder = __ilog2(npages);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001246 physp = kvm->arch.slot_phys[memslot->id];
1247 spin_lock(&kvm->arch.slot_phys_lock);
1248 for (i = 0; i < npages; ++i)
Paul Mackerrasda9d1d72011-12-12 12:31:41 +00001249 physp[i] = ((ri->base_pfn + i) << PAGE_SHIFT) + porder;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001250 spin_unlock(&kvm->arch.slot_phys_lock);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001251 }
1252
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001253 /* Order updates to kvm->arch.lpcr etc. vs. rma_setup_done */
1254 smp_wmb();
1255 kvm->arch.rma_setup_done = 1;
1256 err = 0;
1257 out:
1258 mutex_unlock(&kvm->lock);
1259 return err;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001260
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001261 up_out:
1262 up_read(&current->mm->mmap_sem);
1263 goto out;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001264}
1265
1266int kvmppc_core_init_vm(struct kvm *kvm)
1267{
1268 long r;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001269 unsigned long lpcr;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001270
1271 /* Allocate hashed page table */
1272 r = kvmppc_alloc_hpt(kvm);
David Gibson54738c02011-06-29 00:22:41 +00001273 if (r)
1274 return r;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001275
David Gibson54738c02011-06-29 00:22:41 +00001276 INIT_LIST_HEAD(&kvm->arch.spapr_tce_tables);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001277
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001278 kvm->arch.rma = NULL;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001279
Paul Mackerras9e368f22011-06-29 00:40:08 +00001280 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001281
Paul Mackerras9e368f22011-06-29 00:40:08 +00001282 if (cpu_has_feature(CPU_FTR_ARCH_201)) {
1283 /* PPC970; HID4 is effectively the LPCR */
1284 unsigned long lpid = kvm->arch.lpid;
1285 kvm->arch.host_lpid = 0;
1286 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_HID4);
1287 lpcr &= ~((3 << HID4_LPID1_SH) | (0xful << HID4_LPID5_SH));
1288 lpcr |= ((lpid >> 4) << HID4_LPID1_SH) |
1289 ((lpid & 0xf) << HID4_LPID5_SH);
1290 } else {
1291 /* POWER7; init LPCR for virtual RMA mode */
1292 kvm->arch.host_lpid = mfspr(SPRN_LPID);
1293 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
1294 lpcr &= LPCR_PECE | LPCR_LPES;
1295 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
Paul Mackerras697d3892011-12-12 12:36:37 +00001296 LPCR_VPM0 | LPCR_VPM1;
1297 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
1298 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerras9e368f22011-06-29 00:40:08 +00001299 }
1300 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001301
Paul Mackerras342d3db2011-12-12 12:38:05 +00001302 kvm->arch.using_mmu_notifiers = !!cpu_has_feature(CPU_FTR_ARCH_206);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00001303 spin_lock_init(&kvm->arch.slot_phys_lock);
David Gibson54738c02011-06-29 00:22:41 +00001304 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001305}
1306
1307void kvmppc_core_destroy_vm(struct kvm *kvm)
1308{
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001309 unsigned long i;
1310
Paul Mackerras342d3db2011-12-12 12:38:05 +00001311 if (!kvm->arch.using_mmu_notifiers)
1312 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
1313 unpin_slot(kvm, i);
Paul Mackerrasb2b2f162011-12-12 12:28:21 +00001314
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001315 if (kvm->arch.rma) {
1316 kvm_release_rma(kvm->arch.rma);
1317 kvm->arch.rma = NULL;
1318 }
1319
Paul Mackerrasde56a942011-06-29 00:21:34 +00001320 kvmppc_free_hpt(kvm);
David Gibson54738c02011-06-29 00:22:41 +00001321 WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
Paul Mackerrasde56a942011-06-29 00:21:34 +00001322}
1323
1324/* These are stubs for now */
1325void kvmppc_mmu_pte_pflush(struct kvm_vcpu *vcpu, ulong pa_start, ulong pa_end)
1326{
1327}
1328
1329/* We don't need to emulate any privileged instructions or dcbz */
1330int kvmppc_core_emulate_op(struct kvm_run *run, struct kvm_vcpu *vcpu,
1331 unsigned int inst, int *advance)
1332{
1333 return EMULATE_FAIL;
1334}
1335
1336int kvmppc_core_emulate_mtspr(struct kvm_vcpu *vcpu, int sprn, int rs)
1337{
1338 return EMULATE_FAIL;
1339}
1340
1341int kvmppc_core_emulate_mfspr(struct kvm_vcpu *vcpu, int sprn, int rt)
1342{
1343 return EMULATE_FAIL;
1344}
1345
1346static int kvmppc_book3s_hv_init(void)
1347{
1348 int r;
1349
1350 r = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1351
1352 if (r)
1353 return r;
1354
1355 r = kvmppc_mmu_hv_init();
1356
1357 return r;
1358}
1359
1360static void kvmppc_book3s_hv_exit(void)
1361{
1362 kvm_exit();
1363}
1364
1365module_init(kvmppc_book3s_hv_init);
1366module_exit(kvmppc_book3s_hv_exit);