]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/powerpc/kvm/powerpc.c
KVM: schedule debugfs statistics for removal
[mirror_ubuntu-zesty-kernel.git] / arch / powerpc / kvm / powerpc.c
CommitLineData
bbf45ba5
HB
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
14 *
15 * Copyright IBM Corp. 2007
16 *
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
19 */
20
21#include <linux/errno.h>
22#include <linux/err.h>
23#include <linux/kvm_host.h>
bbf45ba5 24#include <linux/vmalloc.h>
544c6761 25#include <linux/hrtimer.h>
bbf45ba5 26#include <linux/fs.h>
5a0e3ad6 27#include <linux/slab.h>
bbf45ba5
HB
28#include <asm/cputable.h>
29#include <asm/uaccess.h>
30#include <asm/kvm_ppc.h>
83aae4a8 31#include <asm/tlbflush.h>
371fefd6 32#include <asm/cputhreads.h>
73e75b41 33#include "timing.h"
fad7b9b5 34#include "../mm/mmu_decl.h"
bbf45ba5 35
46f43c6e
MT
36#define CREATE_TRACE_POINTS
37#include "trace.h"
38
bbf45ba5
HB
39int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
40{
666e7252 41 return !(v->arch.shared->msr & MSR_WE) ||
dfd4d47e
SW
42 !!(v->arch.pending_exceptions) ||
43 v->requests;
bbf45ba5
HB
44}
45
2a342ed5
AG
46int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
47{
48 int nr = kvmppc_get_gpr(vcpu, 11);
49 int r;
50 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
51 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
52 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
53 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
54 unsigned long r2 = 0;
55
56 if (!(vcpu->arch.shared->msr & MSR_SF)) {
57 /* 32 bit mode */
58 param1 &= 0xffffffff;
59 param2 &= 0xffffffff;
60 param3 &= 0xffffffff;
61 param4 &= 0xffffffff;
62 }
63
64 switch (nr) {
5fc87407
AG
65 case HC_VENDOR_KVM | KVM_HC_PPC_MAP_MAGIC_PAGE:
66 {
67 vcpu->arch.magic_page_pa = param1;
68 vcpu->arch.magic_page_ea = param2;
69
b5904972 70 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
7508e16c 71
5fc87407
AG
72 r = HC_EV_SUCCESS;
73 break;
74 }
2a342ed5
AG
75 case HC_VENDOR_KVM | KVM_HC_FEATURES:
76 r = HC_EV_SUCCESS;
a4cd8b23
SW
77#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500)
78 /* XXX Missing magic page on 44x */
5fc87407
AG
79 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
80#endif
2a342ed5
AG
81
82 /* Second return value is in r4 */
2a342ed5
AG
83 break;
84 default:
85 r = HC_EV_UNIMPLEMENTED;
86 break;
87 }
88
7508e16c
AG
89 kvmppc_set_gpr(vcpu, 4, r2);
90
2a342ed5
AG
91 return r;
92}
bbf45ba5 93
af8f38b3
AG
94int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
95{
96 int r = false;
97
98 /* We have to know what CPU to virtualize */
99 if (!vcpu->arch.pvr)
100 goto out;
101
102 /* PAPR only works with book3s_64 */
103 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
104 goto out;
105
106#ifdef CONFIG_KVM_BOOK3S_64_HV
107 /* HV KVM can only do PAPR mode for now */
108 if (!vcpu->arch.papr_enabled)
109 goto out;
110#endif
111
112 r = true;
113
114out:
115 vcpu->arch.sane = r;
116 return r ? 0 : -EINVAL;
117}
118
bbf45ba5
HB
119int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
120{
121 enum emulation_result er;
122 int r;
123
124 er = kvmppc_emulate_instruction(run, vcpu);
125 switch (er) {
126 case EMULATE_DONE:
127 /* Future optimization: only reload non-volatiles if they were
128 * actually modified. */
129 r = RESUME_GUEST_NV;
130 break;
131 case EMULATE_DO_MMIO:
132 run->exit_reason = KVM_EXIT_MMIO;
133 /* We must reload nonvolatiles because "update" load/store
134 * instructions modify register state. */
135 /* Future optimization: only reload non-volatiles if they were
136 * actually modified. */
137 r = RESUME_HOST_NV;
138 break;
139 case EMULATE_FAIL:
140 /* XXX Deliver Program interrupt to guest. */
141 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
c7f38f46 142 kvmppc_get_last_inst(vcpu));
bbf45ba5
HB
143 r = RESUME_HOST;
144 break;
145 default:
146 BUG();
147 }
148
149 return r;
150}
151
10474ae8 152int kvm_arch_hardware_enable(void *garbage)
bbf45ba5 153{
10474ae8 154 return 0;
bbf45ba5
HB
155}
156
157void kvm_arch_hardware_disable(void *garbage)
158{
159}
160
161int kvm_arch_hardware_setup(void)
162{
163 return 0;
164}
165
166void kvm_arch_hardware_unsetup(void)
167{
168}
169
170void kvm_arch_check_processor_compat(void *rtn)
171{
9dd921cf 172 *(int *)rtn = kvmppc_core_check_processor_compat();
bbf45ba5
HB
173}
174
e08b9637 175int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
bbf45ba5 176{
e08b9637
CO
177 if (type)
178 return -EINVAL;
179
f9e0554d 180 return kvmppc_core_init_vm(kvm);
bbf45ba5
HB
181}
182
d89f5eff 183void kvm_arch_destroy_vm(struct kvm *kvm)
bbf45ba5
HB
184{
185 unsigned int i;
988a2cae 186 struct kvm_vcpu *vcpu;
bbf45ba5 187
988a2cae
GN
188 kvm_for_each_vcpu(i, vcpu, kvm)
189 kvm_arch_vcpu_free(vcpu);
190
191 mutex_lock(&kvm->lock);
192 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
193 kvm->vcpus[i] = NULL;
194
195 atomic_set(&kvm->online_vcpus, 0);
f9e0554d
PM
196
197 kvmppc_core_destroy_vm(kvm);
198
988a2cae 199 mutex_unlock(&kvm->lock);
bbf45ba5
HB
200}
201
ad8ba2cd
SY
202void kvm_arch_sync_events(struct kvm *kvm)
203{
204}
205
bbf45ba5
HB
206int kvm_dev_ioctl_check_extension(long ext)
207{
208 int r;
209
210 switch (ext) {
5ce941ee
SW
211#ifdef CONFIG_BOOKE
212 case KVM_CAP_PPC_BOOKE_SREGS:
213#else
e15a1137 214 case KVM_CAP_PPC_SEGSTATE:
1022fc3d 215 case KVM_CAP_PPC_HIOR:
930b412a 216 case KVM_CAP_PPC_PAPR:
5ce941ee 217#endif
18978768 218 case KVM_CAP_PPC_UNSET_IRQ:
7b4203e8 219 case KVM_CAP_PPC_IRQ_LEVEL:
71fbfd5f 220 case KVM_CAP_ENABLE_CAP:
e24ed81f 221 case KVM_CAP_ONE_REG:
de56a948
PM
222 r = 1;
223 break;
224#ifndef CONFIG_KVM_BOOK3S_64_HV
225 case KVM_CAP_PPC_PAIRED_SINGLES:
ad0a048b 226 case KVM_CAP_PPC_OSI:
15711e9c 227 case KVM_CAP_PPC_GET_PVINFO:
dc83b8bc
SW
228#ifdef CONFIG_KVM_E500
229 case KVM_CAP_SW_TLB:
230#endif
e15a1137
AG
231 r = 1;
232 break;
588968b6
LV
233 case KVM_CAP_COALESCED_MMIO:
234 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
235 break;
54738c09
DG
236#endif
237#ifdef CONFIG_KVM_BOOK3S_64_HV
238 case KVM_CAP_SPAPR_TCE:
239 r = 1;
240 break;
371fefd6
PM
241 case KVM_CAP_PPC_SMT:
242 r = threads_per_core;
243 break;
aa04b4cc
PM
244 case KVM_CAP_PPC_RMA:
245 r = 1;
9e368f29
PM
246 /* PPC970 requires an RMA */
247 if (cpu_has_feature(CPU_FTR_ARCH_201))
248 r = 2;
aa04b4cc 249 break;
342d3db7
PM
250 case KVM_CAP_SYNC_MMU:
251 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
252 break;
de56a948 253#endif
b5434032
ME
254 case KVM_CAP_NR_VCPUS:
255 /*
256 * Recommending a number of CPUs is somewhat arbitrary; we
257 * return the number of present CPUs for -HV (since a host
258 * will have secondary threads "offline"), and for other KVM
259 * implementations just count online CPUs.
260 */
261#ifdef CONFIG_KVM_BOOK3S_64_HV
262 r = num_present_cpus();
263#else
264 r = num_online_cpus();
265#endif
266 break;
267 case KVM_CAP_MAX_VCPUS:
268 r = KVM_MAX_VCPUS;
269 break;
bbf45ba5
HB
270 default:
271 r = 0;
272 break;
273 }
274 return r;
275
276}
277
278long kvm_arch_dev_ioctl(struct file *filp,
279 unsigned int ioctl, unsigned long arg)
280{
281 return -EINVAL;
282}
283
db3fe4eb
TY
284void kvm_arch_free_memslot(struct kvm_memory_slot *free,
285 struct kvm_memory_slot *dont)
286{
287}
288
289int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages)
290{
291 return 0;
292}
293
f7784b8e
MT
294int kvm_arch_prepare_memory_region(struct kvm *kvm,
295 struct kvm_memory_slot *memslot,
296 struct kvm_memory_slot old,
297 struct kvm_userspace_memory_region *mem,
298 int user_alloc)
bbf45ba5 299{
f9e0554d 300 return kvmppc_core_prepare_memory_region(kvm, mem);
bbf45ba5
HB
301}
302
f7784b8e
MT
303void kvm_arch_commit_memory_region(struct kvm *kvm,
304 struct kvm_userspace_memory_region *mem,
305 struct kvm_memory_slot old,
306 int user_alloc)
307{
f9e0554d 308 kvmppc_core_commit_memory_region(kvm, mem);
f7784b8e
MT
309}
310
311
34d4cb8f
MT
312void kvm_arch_flush_shadow(struct kvm *kvm)
313{
314}
315
bbf45ba5
HB
316struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
317{
73e75b41
HB
318 struct kvm_vcpu *vcpu;
319 vcpu = kvmppc_core_vcpu_create(kvm, id);
03cdab53
ME
320 if (!IS_ERR(vcpu)) {
321 vcpu->arch.wqp = &vcpu->wq;
06056bfb 322 kvmppc_create_vcpu_debugfs(vcpu, id);
03cdab53 323 }
73e75b41 324 return vcpu;
bbf45ba5
HB
325}
326
327void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
328{
a595405d
AG
329 /* Make sure we're not using the vcpu anymore */
330 hrtimer_cancel(&vcpu->arch.dec_timer);
331 tasklet_kill(&vcpu->arch.tasklet);
332
73e75b41 333 kvmppc_remove_vcpu_debugfs(vcpu);
db93f574 334 kvmppc_core_vcpu_free(vcpu);
bbf45ba5
HB
335}
336
337void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
338{
339 kvm_arch_vcpu_free(vcpu);
340}
341
342int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
343{
9dd921cf 344 return kvmppc_core_pending_dec(vcpu);
bbf45ba5
HB
345}
346
544c6761
AG
347/*
348 * low level hrtimer wake routine. Because this runs in hardirq context
349 * we schedule a tasklet to do the real work.
350 */
351enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
352{
353 struct kvm_vcpu *vcpu;
354
355 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
356 tasklet_schedule(&vcpu->arch.tasklet);
357
358 return HRTIMER_NORESTART;
359}
360
bbf45ba5
HB
361int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
362{
544c6761
AG
363 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
364 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
365 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
de56a948 366 vcpu->arch.dec_expires = ~(u64)0;
bbf45ba5 367
09000adb
BB
368#ifdef CONFIG_KVM_EXIT_TIMING
369 mutex_init(&vcpu->arch.exit_timing_lock);
370#endif
371
bbf45ba5
HB
372 return 0;
373}
374
375void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
376{
ecc0981f 377 kvmppc_mmu_destroy(vcpu);
bbf45ba5
HB
378}
379
380void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
381{
eab17672
SW
382#ifdef CONFIG_BOOKE
383 /*
384 * vrsave (formerly usprg0) isn't used by Linux, but may
385 * be used by the guest.
386 *
387 * On non-booke this is associated with Altivec and
388 * is handled by code in book3s.c.
389 */
390 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
391#endif
9dd921cf 392 kvmppc_core_vcpu_load(vcpu, cpu);
de56a948 393 vcpu->cpu = smp_processor_id();
bbf45ba5
HB
394}
395
396void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
397{
9dd921cf 398 kvmppc_core_vcpu_put(vcpu);
eab17672
SW
399#ifdef CONFIG_BOOKE
400 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
401#endif
de56a948 402 vcpu->cpu = -1;
bbf45ba5
HB
403}
404
d0bfb940 405int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
f5d0906b 406 struct kvm_guest_debug *dbg)
bbf45ba5 407{
f5d0906b 408 return -EINVAL;
bbf45ba5
HB
409}
410
411static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
412 struct kvm_run *run)
413{
8e5b26b5 414 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
bbf45ba5
HB
415}
416
417static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
418 struct kvm_run *run)
419{
69b61833 420 u64 uninitialized_var(gpr);
bbf45ba5 421
8e5b26b5 422 if (run->mmio.len > sizeof(gpr)) {
bbf45ba5
HB
423 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
424 return;
425 }
426
427 if (vcpu->arch.mmio_is_bigendian) {
428 switch (run->mmio.len) {
b104d066 429 case 8: gpr = *(u64 *)run->mmio.data; break;
8e5b26b5
AG
430 case 4: gpr = *(u32 *)run->mmio.data; break;
431 case 2: gpr = *(u16 *)run->mmio.data; break;
432 case 1: gpr = *(u8 *)run->mmio.data; break;
bbf45ba5
HB
433 }
434 } else {
435 /* Convert BE data from userland back to LE. */
436 switch (run->mmio.len) {
8e5b26b5
AG
437 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
438 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
439 case 1: gpr = *(u8 *)run->mmio.data; break;
bbf45ba5
HB
440 }
441 }
8e5b26b5 442
3587d534
AG
443 if (vcpu->arch.mmio_sign_extend) {
444 switch (run->mmio.len) {
445#ifdef CONFIG_PPC64
446 case 4:
447 gpr = (s64)(s32)gpr;
448 break;
449#endif
450 case 2:
451 gpr = (s64)(s16)gpr;
452 break;
453 case 1:
454 gpr = (s64)(s8)gpr;
455 break;
456 }
457 }
458
8e5b26b5 459 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
b104d066 460
b3c5d3c2
AG
461 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
462 case KVM_MMIO_REG_GPR:
b104d066
AG
463 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
464 break;
b3c5d3c2
AG
465 case KVM_MMIO_REG_FPR:
466 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
b104d066 467 break;
287d5611 468#ifdef CONFIG_PPC_BOOK3S
b3c5d3c2
AG
469 case KVM_MMIO_REG_QPR:
470 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
b104d066 471 break;
b3c5d3c2
AG
472 case KVM_MMIO_REG_FQPR:
473 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
474 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
b104d066 475 break;
287d5611 476#endif
b104d066
AG
477 default:
478 BUG();
479 }
bbf45ba5
HB
480}
481
482int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
483 unsigned int rt, unsigned int bytes, int is_bigendian)
484{
485 if (bytes > sizeof(run->mmio.data)) {
486 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
487 run->mmio.len);
488 }
489
490 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
491 run->mmio.len = bytes;
492 run->mmio.is_write = 0;
493
494 vcpu->arch.io_gpr = rt;
495 vcpu->arch.mmio_is_bigendian = is_bigendian;
496 vcpu->mmio_needed = 1;
497 vcpu->mmio_is_write = 0;
3587d534 498 vcpu->arch.mmio_sign_extend = 0;
bbf45ba5
HB
499
500 return EMULATE_DO_MMIO;
501}
502
3587d534
AG
503/* Same as above, but sign extends */
504int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
505 unsigned int rt, unsigned int bytes, int is_bigendian)
506{
507 int r;
508
509 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
510 vcpu->arch.mmio_sign_extend = 1;
511
512 return r;
513}
514
bbf45ba5 515int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
b104d066 516 u64 val, unsigned int bytes, int is_bigendian)
bbf45ba5
HB
517{
518 void *data = run->mmio.data;
519
520 if (bytes > sizeof(run->mmio.data)) {
521 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
522 run->mmio.len);
523 }
524
525 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
526 run->mmio.len = bytes;
527 run->mmio.is_write = 1;
528 vcpu->mmio_needed = 1;
529 vcpu->mmio_is_write = 1;
530
531 /* Store the value at the lowest bytes in 'data'. */
532 if (is_bigendian) {
533 switch (bytes) {
b104d066 534 case 8: *(u64 *)data = val; break;
bbf45ba5
HB
535 case 4: *(u32 *)data = val; break;
536 case 2: *(u16 *)data = val; break;
537 case 1: *(u8 *)data = val; break;
538 }
539 } else {
540 /* Store LE value into 'data'. */
541 switch (bytes) {
542 case 4: st_le32(data, val); break;
543 case 2: st_le16(data, val); break;
544 case 1: *(u8 *)data = val; break;
545 }
546 }
547
548 return EMULATE_DO_MMIO;
549}
550
551int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
552{
553 int r;
554 sigset_t sigsaved;
555
556 if (vcpu->sigset_active)
557 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
558
559 if (vcpu->mmio_needed) {
560 if (!vcpu->mmio_is_write)
561 kvmppc_complete_mmio_load(vcpu, run);
562 vcpu->mmio_needed = 0;
563 } else if (vcpu->arch.dcr_needed) {
564 if (!vcpu->arch.dcr_is_write)
565 kvmppc_complete_dcr_load(vcpu, run);
566 vcpu->arch.dcr_needed = 0;
ad0a048b
AG
567 } else if (vcpu->arch.osi_needed) {
568 u64 *gprs = run->osi.gprs;
569 int i;
570
571 for (i = 0; i < 32; i++)
572 kvmppc_set_gpr(vcpu, i, gprs[i]);
573 vcpu->arch.osi_needed = 0;
de56a948
PM
574 } else if (vcpu->arch.hcall_needed) {
575 int i;
576
577 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
578 for (i = 0; i < 9; ++i)
579 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
580 vcpu->arch.hcall_needed = 0;
bbf45ba5
HB
581 }
582
df6909e5 583 r = kvmppc_vcpu_run(run, vcpu);
bbf45ba5
HB
584
585 if (vcpu->sigset_active)
586 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
587
588 return r;
589}
590
dfd4d47e
SW
591void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
592{
ae21216b
AG
593 int me;
594 int cpu = vcpu->cpu;
595
596 me = get_cpu();
4e72dbe1 597 if (waitqueue_active(vcpu->arch.wqp)) {
dfd4d47e
SW
598 wake_up_interruptible(vcpu->arch.wqp);
599 vcpu->stat.halt_wakeup++;
ae21216b 600 } else if (cpu != me && cpu != -1) {
dfd4d47e
SW
601 smp_send_reschedule(vcpu->cpu);
602 }
ae21216b 603 put_cpu();
dfd4d47e
SW
604}
605
bbf45ba5
HB
606int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
607{
19ccb76a 608 if (irq->irq == KVM_INTERRUPT_UNSET) {
18978768 609 kvmppc_core_dequeue_external(vcpu, irq);
19ccb76a
PM
610 return 0;
611 }
612
613 kvmppc_core_queue_external(vcpu, irq);
dfd4d47e 614 kvm_vcpu_kick(vcpu);
45c5eb67 615
bbf45ba5
HB
616 return 0;
617}
618
71fbfd5f
AG
619static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
620 struct kvm_enable_cap *cap)
621{
622 int r;
623
624 if (cap->flags)
625 return -EINVAL;
626
627 switch (cap->cap) {
ad0a048b
AG
628 case KVM_CAP_PPC_OSI:
629 r = 0;
630 vcpu->arch.osi_enabled = true;
631 break;
930b412a
AG
632 case KVM_CAP_PPC_PAPR:
633 r = 0;
634 vcpu->arch.papr_enabled = true;
635 break;
dc83b8bc
SW
636#ifdef CONFIG_KVM_E500
637 case KVM_CAP_SW_TLB: {
638 struct kvm_config_tlb cfg;
639 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
640
641 r = -EFAULT;
642 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
643 break;
644
645 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
646 break;
647 }
648#endif
71fbfd5f
AG
649 default:
650 r = -EINVAL;
651 break;
652 }
653
af8f38b3
AG
654 if (!r)
655 r = kvmppc_sanity_check(vcpu);
656
71fbfd5f
AG
657 return r;
658}
659
bbf45ba5
HB
660int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
661 struct kvm_mp_state *mp_state)
662{
663 return -EINVAL;
664}
665
666int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
667 struct kvm_mp_state *mp_state)
668{
669 return -EINVAL;
670}
671
672long kvm_arch_vcpu_ioctl(struct file *filp,
673 unsigned int ioctl, unsigned long arg)
674{
675 struct kvm_vcpu *vcpu = filp->private_data;
676 void __user *argp = (void __user *)arg;
677 long r;
678
93736624
AK
679 switch (ioctl) {
680 case KVM_INTERRUPT: {
bbf45ba5
HB
681 struct kvm_interrupt irq;
682 r = -EFAULT;
683 if (copy_from_user(&irq, argp, sizeof(irq)))
93736624 684 goto out;
bbf45ba5 685 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
93736624 686 goto out;
bbf45ba5 687 }
19483d14 688
71fbfd5f
AG
689 case KVM_ENABLE_CAP:
690 {
691 struct kvm_enable_cap cap;
692 r = -EFAULT;
693 if (copy_from_user(&cap, argp, sizeof(cap)))
694 goto out;
695 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
696 break;
697 }
dc83b8bc 698
e24ed81f
AG
699 case KVM_SET_ONE_REG:
700 case KVM_GET_ONE_REG:
701 {
702 struct kvm_one_reg reg;
703 r = -EFAULT;
704 if (copy_from_user(&reg, argp, sizeof(reg)))
705 goto out;
706 if (ioctl == KVM_SET_ONE_REG)
707 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
708 else
709 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
710 break;
711 }
712
dc83b8bc
SW
713#ifdef CONFIG_KVM_E500
714 case KVM_DIRTY_TLB: {
715 struct kvm_dirty_tlb dirty;
716 r = -EFAULT;
717 if (copy_from_user(&dirty, argp, sizeof(dirty)))
718 goto out;
719 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
720 break;
721 }
722#endif
723
bbf45ba5
HB
724 default:
725 r = -EINVAL;
726 }
727
728out:
729 return r;
730}
731
5b1c1493
CO
732int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
733{
734 return VM_FAULT_SIGBUS;
735}
736
15711e9c
AG
737static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
738{
739 u32 inst_lis = 0x3c000000;
740 u32 inst_ori = 0x60000000;
741 u32 inst_nop = 0x60000000;
742 u32 inst_sc = 0x44000002;
743 u32 inst_imm_mask = 0xffff;
744
745 /*
746 * The hypercall to get into KVM from within guest context is as
747 * follows:
748 *
749 * lis r0, r0, KVM_SC_MAGIC_R0@h
750 * ori r0, KVM_SC_MAGIC_R0@l
751 * sc
752 * nop
753 */
754 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
755 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
756 pvinfo->hcall[2] = inst_sc;
757 pvinfo->hcall[3] = inst_nop;
758
759 return 0;
760}
761
bbf45ba5
HB
762long kvm_arch_vm_ioctl(struct file *filp,
763 unsigned int ioctl, unsigned long arg)
764{
15711e9c 765 void __user *argp = (void __user *)arg;
bbf45ba5
HB
766 long r;
767
768 switch (ioctl) {
15711e9c
AG
769 case KVM_PPC_GET_PVINFO: {
770 struct kvm_ppc_pvinfo pvinfo;
d8cdddcd 771 memset(&pvinfo, 0, sizeof(pvinfo));
15711e9c
AG
772 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
773 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
774 r = -EFAULT;
775 goto out;
776 }
777
778 break;
779 }
54738c09
DG
780#ifdef CONFIG_KVM_BOOK3S_64_HV
781 case KVM_CREATE_SPAPR_TCE: {
782 struct kvm_create_spapr_tce create_tce;
783 struct kvm *kvm = filp->private_data;
784
785 r = -EFAULT;
786 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
787 goto out;
788 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
789 goto out;
790 }
aa04b4cc
PM
791
792 case KVM_ALLOCATE_RMA: {
793 struct kvm *kvm = filp->private_data;
794 struct kvm_allocate_rma rma;
795
796 r = kvm_vm_ioctl_allocate_rma(kvm, &rma);
797 if (r >= 0 && copy_to_user(argp, &rma, sizeof(rma)))
798 r = -EFAULT;
799 break;
800 }
54738c09
DG
801#endif /* CONFIG_KVM_BOOK3S_64_HV */
802
bbf45ba5 803 default:
367e1319 804 r = -ENOTTY;
bbf45ba5
HB
805 }
806
15711e9c 807out:
bbf45ba5
HB
808 return r;
809}
810
811int kvm_arch_init(void *opaque)
812{
813 return 0;
814}
815
816void kvm_arch_exit(void)
817{
818}