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