]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/powerpc/kvm/powerpc.c
KVM: PPC: VFIO: Add in-kernel acceleration for VFIO
[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>
eb1e4f43 28#include <linux/file.h>
cbbc58d4 29#include <linux/module.h>
9576730d
SW
30#include <linux/irqbypass.h>
31#include <linux/kvm_irqfd.h>
bbf45ba5 32#include <asm/cputable.h>
7c0f6ba6 33#include <linux/uaccess.h>
bbf45ba5 34#include <asm/kvm_ppc.h>
83aae4a8 35#include <asm/tlbflush.h>
371fefd6 36#include <asm/cputhreads.h>
bd2be683 37#include <asm/irqflags.h>
58ded420 38#include <asm/iommu.h>
73e75b41 39#include "timing.h"
5efdb4be 40#include "irq.h"
fad7b9b5 41#include "../mm/mmu_decl.h"
bbf45ba5 42
46f43c6e
MT
43#define CREATE_TRACE_POINTS
44#include "trace.h"
45
cbbc58d4
AK
46struct kvmppc_ops *kvmppc_hv_ops;
47EXPORT_SYMBOL_GPL(kvmppc_hv_ops);
48struct kvmppc_ops *kvmppc_pr_ops;
49EXPORT_SYMBOL_GPL(kvmppc_pr_ops);
50
3a167bea 51
bbf45ba5
HB
52int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
53{
9202e076 54 return !!(v->arch.pending_exceptions) ||
dfd4d47e 55 v->requests;
bbf45ba5
HB
56}
57
b6d33834
CD
58int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
59{
60 return 1;
61}
62
03d25c5b
AG
63/*
64 * Common checks before entering the guest world. Call with interrupts
65 * disabled.
66 *
7ee78855
AG
67 * returns:
68 *
69 * == 1 if we're ready to go into guest state
70 * <= 0 if we need to go back to the host with return value
03d25c5b
AG
71 */
72int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
73{
6c85f52b
SW
74 int r;
75
76 WARN_ON(irqs_disabled());
77 hard_irq_disable();
03d25c5b 78
03d25c5b
AG
79 while (true) {
80 if (need_resched()) {
81 local_irq_enable();
82 cond_resched();
6c85f52b 83 hard_irq_disable();
03d25c5b
AG
84 continue;
85 }
86
87 if (signal_pending(current)) {
7ee78855
AG
88 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
89 vcpu->run->exit_reason = KVM_EXIT_INTR;
90 r = -EINTR;
03d25c5b
AG
91 break;
92 }
93
5bd1cf11
SW
94 vcpu->mode = IN_GUEST_MODE;
95
96 /*
97 * Reading vcpu->requests must happen after setting vcpu->mode,
98 * so we don't miss a request because the requester sees
99 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
100 * before next entering the guest (and thus doesn't IPI).
489153c7
LT
101 * This also orders the write to mode from any reads
102 * to the page tables done while the VCPU is running.
103 * Please see the comment in kvm_flush_remote_tlbs.
5bd1cf11 104 */
03d25c5b 105 smp_mb();
5bd1cf11 106
03d25c5b
AG
107 if (vcpu->requests) {
108 /* Make sure we process requests preemptable */
109 local_irq_enable();
110 trace_kvm_check_requests(vcpu);
7c973a2e 111 r = kvmppc_core_check_requests(vcpu);
6c85f52b 112 hard_irq_disable();
7c973a2e
AG
113 if (r > 0)
114 continue;
115 break;
03d25c5b
AG
116 }
117
118 if (kvmppc_core_prepare_to_enter(vcpu)) {
119 /* interrupts got enabled in between, so we
120 are back at square 1 */
121 continue;
122 }
123
6edaa530 124 guest_enter_irqoff();
6c85f52b 125 return 1;
03d25c5b
AG
126 }
127
6c85f52b
SW
128 /* return to host */
129 local_irq_enable();
03d25c5b
AG
130 return r;
131}
2ba9f0d8 132EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
03d25c5b 133
5deb8e7a
AG
134#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
135static void kvmppc_swab_shared(struct kvm_vcpu *vcpu)
136{
137 struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared;
138 int i;
139
140 shared->sprg0 = swab64(shared->sprg0);
141 shared->sprg1 = swab64(shared->sprg1);
142 shared->sprg2 = swab64(shared->sprg2);
143 shared->sprg3 = swab64(shared->sprg3);
144 shared->srr0 = swab64(shared->srr0);
145 shared->srr1 = swab64(shared->srr1);
146 shared->dar = swab64(shared->dar);
147 shared->msr = swab64(shared->msr);
148 shared->dsisr = swab32(shared->dsisr);
149 shared->int_pending = swab32(shared->int_pending);
150 for (i = 0; i < ARRAY_SIZE(shared->sr); i++)
151 shared->sr[i] = swab32(shared->sr[i]);
152}
153#endif
154
2a342ed5
AG
155int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
156{
157 int nr = kvmppc_get_gpr(vcpu, 11);
158 int r;
159 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
160 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
161 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
162 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
163 unsigned long r2 = 0;
164
5deb8e7a 165 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
2a342ed5
AG
166 /* 32 bit mode */
167 param1 &= 0xffffffff;
168 param2 &= 0xffffffff;
169 param3 &= 0xffffffff;
170 param4 &= 0xffffffff;
171 }
172
173 switch (nr) {
fdcf8bd7 174 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
5fc87407 175 {
5deb8e7a
AG
176#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
177 /* Book3S can be little endian, find it out here */
178 int shared_big_endian = true;
179 if (vcpu->arch.intr_msr & MSR_LE)
180 shared_big_endian = false;
181 if (shared_big_endian != vcpu->arch.shared_big_endian)
182 kvmppc_swab_shared(vcpu);
183 vcpu->arch.shared_big_endian = shared_big_endian;
184#endif
185
f3383cf8
AG
186 if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) {
187 /*
188 * Older versions of the Linux magic page code had
189 * a bug where they would map their trampoline code
190 * NX. If that's the case, remove !PR NX capability.
191 */
192 vcpu->arch.disable_kernel_nx = true;
193 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
194 }
195
196 vcpu->arch.magic_page_pa = param1 & ~0xfffULL;
197 vcpu->arch.magic_page_ea = param2 & ~0xfffULL;
5fc87407 198
89b68c96
AG
199#ifdef CONFIG_PPC_64K_PAGES
200 /*
201 * Make sure our 4k magic page is in the same window of a 64k
202 * page within the guest and within the host's page.
203 */
204 if ((vcpu->arch.magic_page_pa & 0xf000) !=
205 ((ulong)vcpu->arch.shared & 0xf000)) {
206 void *old_shared = vcpu->arch.shared;
207 ulong shared = (ulong)vcpu->arch.shared;
208 void *new_shared;
209
210 shared &= PAGE_MASK;
211 shared |= vcpu->arch.magic_page_pa & 0xf000;
212 new_shared = (void*)shared;
213 memcpy(new_shared, old_shared, 0x1000);
214 vcpu->arch.shared = new_shared;
215 }
216#endif
217
b5904972 218 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
7508e16c 219
fdcf8bd7 220 r = EV_SUCCESS;
5fc87407
AG
221 break;
222 }
fdcf8bd7
SY
223 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
224 r = EV_SUCCESS;
bf7ca4bd 225#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
5fc87407
AG
226 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
227#endif
2a342ed5
AG
228
229 /* Second return value is in r4 */
2a342ed5 230 break;
9202e076
LYB
231 case EV_HCALL_TOKEN(EV_IDLE):
232 r = EV_SUCCESS;
233 kvm_vcpu_block(vcpu);
234 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
235 break;
2a342ed5 236 default:
fdcf8bd7 237 r = EV_UNIMPLEMENTED;
2a342ed5
AG
238 break;
239 }
240
7508e16c
AG
241 kvmppc_set_gpr(vcpu, 4, r2);
242
2a342ed5
AG
243 return r;
244}
2ba9f0d8 245EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
bbf45ba5 246
af8f38b3
AG
247int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
248{
249 int r = false;
250
251 /* We have to know what CPU to virtualize */
252 if (!vcpu->arch.pvr)
253 goto out;
254
255 /* PAPR only works with book3s_64 */
256 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
257 goto out;
258
af8f38b3 259 /* HV KVM can only do PAPR mode for now */
a78b55d1 260 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
af8f38b3 261 goto out;
af8f38b3 262
d30f6e48
SW
263#ifdef CONFIG_KVM_BOOKE_HV
264 if (!cpu_has_feature(CPU_FTR_EMB_HV))
265 goto out;
266#endif
267
af8f38b3
AG
268 r = true;
269
270out:
271 vcpu->arch.sane = r;
272 return r ? 0 : -EINVAL;
273}
2ba9f0d8 274EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
af8f38b3 275
bbf45ba5
HB
276int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
277{
278 enum emulation_result er;
279 int r;
280
d69614a2 281 er = kvmppc_emulate_loadstore(vcpu);
bbf45ba5
HB
282 switch (er) {
283 case EMULATE_DONE:
284 /* Future optimization: only reload non-volatiles if they were
285 * actually modified. */
286 r = RESUME_GUEST_NV;
287 break;
51f04726
MC
288 case EMULATE_AGAIN:
289 r = RESUME_GUEST;
290 break;
bbf45ba5
HB
291 case EMULATE_DO_MMIO:
292 run->exit_reason = KVM_EXIT_MMIO;
293 /* We must reload nonvolatiles because "update" load/store
294 * instructions modify register state. */
295 /* Future optimization: only reload non-volatiles if they were
296 * actually modified. */
297 r = RESUME_HOST_NV;
298 break;
299 case EMULATE_FAIL:
51f04726
MC
300 {
301 u32 last_inst;
302
8d0eff63 303 kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
bbf45ba5 304 /* XXX Deliver Program interrupt to guest. */
51f04726 305 pr_emerg("%s: emulation failed (%08x)\n", __func__, last_inst);
bbf45ba5
HB
306 r = RESUME_HOST;
307 break;
51f04726 308 }
bbf45ba5 309 default:
5a33169e
AG
310 WARN_ON(1);
311 r = RESUME_GUEST;
bbf45ba5
HB
312 }
313
314 return r;
315}
2ba9f0d8 316EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
bbf45ba5 317
35c4a733
AG
318int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
319 bool data)
320{
c12fb43c 321 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
35c4a733
AG
322 struct kvmppc_pte pte;
323 int r;
324
325 vcpu->stat.st++;
326
327 r = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
328 XLATE_WRITE, &pte);
329 if (r < 0)
330 return r;
331
332 *eaddr = pte.raddr;
333
334 if (!pte.may_write)
335 return -EPERM;
336
c12fb43c
AG
337 /* Magic page override */
338 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
339 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
340 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
341 void *magic = vcpu->arch.shared;
342 magic += pte.eaddr & 0xfff;
343 memcpy(magic, ptr, size);
344 return EMULATE_DONE;
345 }
346
35c4a733
AG
347 if (kvm_write_guest(vcpu->kvm, pte.raddr, ptr, size))
348 return EMULATE_DO_MMIO;
349
350 return EMULATE_DONE;
351}
352EXPORT_SYMBOL_GPL(kvmppc_st);
353
354int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
355 bool data)
356{
c12fb43c 357 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
35c4a733 358 struct kvmppc_pte pte;
35c4a733
AG
359 int rc;
360
361 vcpu->stat.ld++;
362
363 rc = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
364 XLATE_READ, &pte);
365 if (rc)
366 return rc;
367
368 *eaddr = pte.raddr;
369
370 if (!pte.may_read)
371 return -EPERM;
372
373 if (!data && !pte.may_execute)
374 return -ENOEXEC;
375
c12fb43c
AG
376 /* Magic page override */
377 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
378 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
379 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
380 void *magic = vcpu->arch.shared;
381 magic += pte.eaddr & 0xfff;
382 memcpy(ptr, magic, size);
383 return EMULATE_DONE;
384 }
385
c45c5514
AG
386 if (kvm_read_guest(vcpu->kvm, pte.raddr, ptr, size))
387 return EMULATE_DO_MMIO;
35c4a733
AG
388
389 return EMULATE_DONE;
35c4a733
AG
390}
391EXPORT_SYMBOL_GPL(kvmppc_ld);
392
13a34e06 393int kvm_arch_hardware_enable(void)
bbf45ba5 394{
10474ae8 395 return 0;
bbf45ba5
HB
396}
397
bbf45ba5
HB
398int kvm_arch_hardware_setup(void)
399{
400 return 0;
401}
402
bbf45ba5
HB
403void kvm_arch_check_processor_compat(void *rtn)
404{
9dd921cf 405 *(int *)rtn = kvmppc_core_check_processor_compat();
bbf45ba5
HB
406}
407
e08b9637 408int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
bbf45ba5 409{
cbbc58d4
AK
410 struct kvmppc_ops *kvm_ops = NULL;
411 /*
412 * if we have both HV and PR enabled, default is HV
413 */
414 if (type == 0) {
415 if (kvmppc_hv_ops)
416 kvm_ops = kvmppc_hv_ops;
417 else
418 kvm_ops = kvmppc_pr_ops;
419 if (!kvm_ops)
420 goto err_out;
421 } else if (type == KVM_VM_PPC_HV) {
422 if (!kvmppc_hv_ops)
423 goto err_out;
424 kvm_ops = kvmppc_hv_ops;
425 } else if (type == KVM_VM_PPC_PR) {
426 if (!kvmppc_pr_ops)
427 goto err_out;
428 kvm_ops = kvmppc_pr_ops;
429 } else
430 goto err_out;
431
432 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
433 return -ENOENT;
434
435 kvm->arch.kvm_ops = kvm_ops;
f9e0554d 436 return kvmppc_core_init_vm(kvm);
cbbc58d4
AK
437err_out:
438 return -EINVAL;
bbf45ba5
HB
439}
440
235539b4
LC
441bool kvm_arch_has_vcpu_debugfs(void)
442{
443 return false;
444}
445
446int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
447{
448 return 0;
449}
450
d89f5eff 451void kvm_arch_destroy_vm(struct kvm *kvm)
bbf45ba5
HB
452{
453 unsigned int i;
988a2cae 454 struct kvm_vcpu *vcpu;
bbf45ba5 455
e17769eb
SW
456#ifdef CONFIG_KVM_XICS
457 /*
458 * We call kick_all_cpus_sync() to ensure that all
459 * CPUs have executed any pending IPIs before we
460 * continue and free VCPUs structures below.
461 */
462 if (is_kvmppc_hv_enabled(kvm))
463 kick_all_cpus_sync();
464#endif
465
988a2cae
GN
466 kvm_for_each_vcpu(i, vcpu, kvm)
467 kvm_arch_vcpu_free(vcpu);
468
469 mutex_lock(&kvm->lock);
470 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
471 kvm->vcpus[i] = NULL;
472
473 atomic_set(&kvm->online_vcpus, 0);
f9e0554d
PM
474
475 kvmppc_core_destroy_vm(kvm);
476
988a2cae 477 mutex_unlock(&kvm->lock);
cbbc58d4
AK
478
479 /* drop the module reference */
480 module_put(kvm->arch.kvm_ops->owner);
bbf45ba5
HB
481}
482
784aa3d7 483int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
bbf45ba5
HB
484{
485 int r;
7a58777a 486 /* Assume we're using HV mode when the HV module is loaded */
cbbc58d4 487 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
bbf45ba5 488
7a58777a
AG
489 if (kvm) {
490 /*
491 * Hooray - we know which VM type we're running on. Depend on
492 * that rather than the guess above.
493 */
494 hv_enabled = is_kvmppc_hv_enabled(kvm);
495 }
496
bbf45ba5 497 switch (ext) {
5ce941ee
SW
498#ifdef CONFIG_BOOKE
499 case KVM_CAP_PPC_BOOKE_SREGS:
f61c94bb 500 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1c810636 501 case KVM_CAP_PPC_EPR:
5ce941ee 502#else
e15a1137 503 case KVM_CAP_PPC_SEGSTATE:
1022fc3d 504 case KVM_CAP_PPC_HIOR:
930b412a 505 case KVM_CAP_PPC_PAPR:
5ce941ee 506#endif
18978768 507 case KVM_CAP_PPC_UNSET_IRQ:
7b4203e8 508 case KVM_CAP_PPC_IRQ_LEVEL:
71fbfd5f 509 case KVM_CAP_ENABLE_CAP:
699a0ea0 510 case KVM_CAP_ENABLE_CAP_VM:
e24ed81f 511 case KVM_CAP_ONE_REG:
0e673fb6 512 case KVM_CAP_IOEVENTFD:
5df554ad 513 case KVM_CAP_DEVICE_CTRL:
de56a948
PM
514 r = 1;
515 break;
de56a948 516 case KVM_CAP_PPC_PAIRED_SINGLES:
ad0a048b 517 case KVM_CAP_PPC_OSI:
15711e9c 518 case KVM_CAP_PPC_GET_PVINFO:
bf7ca4bd 519#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
dc83b8bc 520 case KVM_CAP_SW_TLB:
eb1e4f43 521#endif
699cc876 522 /* We support this only for PR */
cbbc58d4 523 r = !hv_enabled;
e15a1137 524 break;
699cc876 525#ifdef CONFIG_KVM_MMIO
588968b6
LV
526 case KVM_CAP_COALESCED_MMIO:
527 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
528 break;
54738c09 529#endif
699cc876
AK
530#ifdef CONFIG_KVM_MPIC
531 case KVM_CAP_IRQ_MPIC:
532 r = 1;
533 break;
534#endif
535
f31e65e1 536#ifdef CONFIG_PPC_BOOK3S_64
54738c09 537 case KVM_CAP_SPAPR_TCE:
58ded420 538 case KVM_CAP_SPAPR_TCE_64:
20464b9b
AK
539 /* fallthrough */
540 case KVM_CAP_SPAPR_TCE_VFIO:
8e591cb7 541 case KVM_CAP_PPC_RTAS:
f2e91042 542 case KVM_CAP_PPC_FIXUP_HCALL:
699a0ea0 543 case KVM_CAP_PPC_ENABLE_HCALL:
5975a2e0
PM
544#ifdef CONFIG_KVM_XICS
545 case KVM_CAP_IRQ_XICS:
546#endif
54738c09
DG
547 r = 1;
548 break;
a8acaece
DG
549
550 case KVM_CAP_PPC_ALLOC_HTAB:
551 r = hv_enabled;
552 break;
f31e65e1 553#endif /* CONFIG_PPC_BOOK3S_64 */
699cc876 554#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
371fefd6 555 case KVM_CAP_PPC_SMT:
45c940ba
PM
556 r = 0;
557 if (hv_enabled) {
558 if (cpu_has_feature(CPU_FTR_ARCH_300))
559 r = 1;
560 else
561 r = threads_per_subcore;
562 }
371fefd6 563 break;
aa04b4cc 564 case KVM_CAP_PPC_RMA:
c17b98cf 565 r = 0;
aa04b4cc 566 break;
e928e9cb
ME
567 case KVM_CAP_PPC_HWRNG:
568 r = kvmppc_hwrng_present();
569 break;
d046dddb 570 case KVM_CAP_PPC_MMU_RADIX:
a137a033 571 r = !!(hv_enabled && radix_enabled());
d046dddb
PM
572 break;
573 case KVM_CAP_PPC_MMU_HASH_V3:
5c88fead 574 r = !!(hv_enabled && !radix_enabled() &&
d046dddb
PM
575 cpu_has_feature(CPU_FTR_ARCH_300));
576 break;
f4800b1f 577#endif
342d3db7 578 case KVM_CAP_SYNC_MMU:
699cc876 579#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
c17b98cf 580 r = hv_enabled;
f4800b1f
AG
581#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
582 r = 1;
583#else
584 r = 0;
a2932923 585#endif
699cc876
AK
586 break;
587#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
a2932923 588 case KVM_CAP_PPC_HTAB_FD:
cbbc58d4 589 r = hv_enabled;
a2932923 590 break;
de56a948 591#endif
b5434032
ME
592 case KVM_CAP_NR_VCPUS:
593 /*
594 * Recommending a number of CPUs is somewhat arbitrary; we
595 * return the number of present CPUs for -HV (since a host
596 * will have secondary threads "offline"), and for other KVM
597 * implementations just count online CPUs.
598 */
cbbc58d4 599 if (hv_enabled)
699cc876
AK
600 r = num_present_cpus();
601 else
602 r = num_online_cpus();
b5434032 603 break;
bfec5c2c
ND
604 case KVM_CAP_NR_MEMSLOTS:
605 r = KVM_USER_MEM_SLOTS;
606 break;
b5434032
ME
607 case KVM_CAP_MAX_VCPUS:
608 r = KVM_MAX_VCPUS;
609 break;
5b74716e
BH
610#ifdef CONFIG_PPC_BOOK3S_64
611 case KVM_CAP_PPC_GET_SMMU_INFO:
612 r = 1;
613 break;
d3695aa4
AK
614 case KVM_CAP_SPAPR_MULTITCE:
615 r = 1;
616 break;
5b74716e 617#endif
23528bb2
SB
618 case KVM_CAP_PPC_HTM:
619 r = cpu_has_feature(CPU_FTR_TM_COMP) &&
620 is_kvmppc_hv_enabled(kvm);
621 break;
bbf45ba5
HB
622 default:
623 r = 0;
624 break;
625 }
626 return r;
627
628}
629
630long kvm_arch_dev_ioctl(struct file *filp,
631 unsigned int ioctl, unsigned long arg)
632{
633 return -EINVAL;
634}
635
5587027c 636void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
db3fe4eb
TY
637 struct kvm_memory_slot *dont)
638{
5587027c 639 kvmppc_core_free_memslot(kvm, free, dont);
db3fe4eb
TY
640}
641
5587027c
AK
642int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
643 unsigned long npages)
db3fe4eb 644{
5587027c 645 return kvmppc_core_create_memslot(kvm, slot, npages);
db3fe4eb
TY
646}
647
f7784b8e 648int kvm_arch_prepare_memory_region(struct kvm *kvm,
462fce46 649 struct kvm_memory_slot *memslot,
09170a49 650 const struct kvm_userspace_memory_region *mem,
7b6195a9 651 enum kvm_mr_change change)
bbf45ba5 652{
a66b48c3 653 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
bbf45ba5
HB
654}
655
f7784b8e 656void kvm_arch_commit_memory_region(struct kvm *kvm,
09170a49 657 const struct kvm_userspace_memory_region *mem,
8482644a 658 const struct kvm_memory_slot *old,
f36f3f28 659 const struct kvm_memory_slot *new,
8482644a 660 enum kvm_mr_change change)
f7784b8e 661{
f36f3f28 662 kvmppc_core_commit_memory_region(kvm, mem, old, new);
f7784b8e
MT
663}
664
2df72e9b
MT
665void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
666 struct kvm_memory_slot *slot)
34d4cb8f 667{
dfe49dbd 668 kvmppc_core_flush_memslot(kvm, slot);
34d4cb8f
MT
669}
670
bbf45ba5
HB
671struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
672{
73e75b41
HB
673 struct kvm_vcpu *vcpu;
674 vcpu = kvmppc_core_vcpu_create(kvm, id);
03cdab53
ME
675 if (!IS_ERR(vcpu)) {
676 vcpu->arch.wqp = &vcpu->wq;
06056bfb 677 kvmppc_create_vcpu_debugfs(vcpu, id);
03cdab53 678 }
73e75b41 679 return vcpu;
bbf45ba5
HB
680}
681
31928aa5 682void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
42897d86 683{
42897d86
MT
684}
685
bbf45ba5
HB
686void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
687{
a595405d
AG
688 /* Make sure we're not using the vcpu anymore */
689 hrtimer_cancel(&vcpu->arch.dec_timer);
a595405d 690
73e75b41 691 kvmppc_remove_vcpu_debugfs(vcpu);
eb1e4f43
SW
692
693 switch (vcpu->arch.irq_type) {
694 case KVMPPC_IRQ_MPIC:
695 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
696 break;
bc5ad3f3
BH
697 case KVMPPC_IRQ_XICS:
698 kvmppc_xics_free_icp(vcpu);
699 break;
eb1e4f43
SW
700 }
701
db93f574 702 kvmppc_core_vcpu_free(vcpu);
bbf45ba5
HB
703}
704
705void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
706{
707 kvm_arch_vcpu_free(vcpu);
708}
709
710int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
711{
9dd921cf 712 return kvmppc_core_pending_dec(vcpu);
bbf45ba5
HB
713}
714
5358a963 715static enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
544c6761
AG
716{
717 struct kvm_vcpu *vcpu;
718
719 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
d02d4d15 720 kvmppc_decrementer_func(vcpu);
544c6761
AG
721
722 return HRTIMER_NORESTART;
723}
724
bbf45ba5
HB
725int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
726{
f61c94bb
BB
727 int ret;
728
544c6761 729 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
544c6761 730 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
de56a948 731 vcpu->arch.dec_expires = ~(u64)0;
bbf45ba5 732
09000adb
BB
733#ifdef CONFIG_KVM_EXIT_TIMING
734 mutex_init(&vcpu->arch.exit_timing_lock);
735#endif
f61c94bb
BB
736 ret = kvmppc_subarch_vcpu_init(vcpu);
737 return ret;
bbf45ba5
HB
738}
739
740void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
741{
ecc0981f 742 kvmppc_mmu_destroy(vcpu);
f61c94bb 743 kvmppc_subarch_vcpu_uninit(vcpu);
bbf45ba5
HB
744}
745
746void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
747{
eab17672
SW
748#ifdef CONFIG_BOOKE
749 /*
750 * vrsave (formerly usprg0) isn't used by Linux, but may
751 * be used by the guest.
752 *
753 * On non-booke this is associated with Altivec and
754 * is handled by code in book3s.c.
755 */
756 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
757#endif
9dd921cf 758 kvmppc_core_vcpu_load(vcpu, cpu);
bbf45ba5
HB
759}
760
761void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
762{
9dd921cf 763 kvmppc_core_vcpu_put(vcpu);
eab17672
SW
764#ifdef CONFIG_BOOKE
765 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
766#endif
bbf45ba5
HB
767}
768
9576730d
SW
769/*
770 * irq_bypass_add_producer and irq_bypass_del_producer are only
771 * useful if the architecture supports PCI passthrough.
772 * irq_bypass_stop and irq_bypass_start are not needed and so
773 * kvm_ops are not defined for them.
774 */
775bool kvm_arch_has_irq_bypass(void)
776{
777 return ((kvmppc_hv_ops && kvmppc_hv_ops->irq_bypass_add_producer) ||
778 (kvmppc_pr_ops && kvmppc_pr_ops->irq_bypass_add_producer));
779}
780
781int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
782 struct irq_bypass_producer *prod)
783{
784 struct kvm_kernel_irqfd *irqfd =
785 container_of(cons, struct kvm_kernel_irqfd, consumer);
786 struct kvm *kvm = irqfd->kvm;
787
788 if (kvm->arch.kvm_ops->irq_bypass_add_producer)
789 return kvm->arch.kvm_ops->irq_bypass_add_producer(cons, prod);
790
791 return 0;
792}
793
794void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
795 struct irq_bypass_producer *prod)
796{
797 struct kvm_kernel_irqfd *irqfd =
798 container_of(cons, struct kvm_kernel_irqfd, consumer);
799 struct kvm *kvm = irqfd->kvm;
800
801 if (kvm->arch.kvm_ops->irq_bypass_del_producer)
802 kvm->arch.kvm_ops->irq_bypass_del_producer(cons, prod);
803}
804
bbf45ba5
HB
805static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
806 struct kvm_run *run)
807{
69b61833 808 u64 uninitialized_var(gpr);
bbf45ba5 809
8e5b26b5 810 if (run->mmio.len > sizeof(gpr)) {
bbf45ba5
HB
811 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
812 return;
813 }
814
d078eed3 815 if (!vcpu->arch.mmio_host_swabbed) {
bbf45ba5 816 switch (run->mmio.len) {
b104d066 817 case 8: gpr = *(u64 *)run->mmio.data; break;
8e5b26b5
AG
818 case 4: gpr = *(u32 *)run->mmio.data; break;
819 case 2: gpr = *(u16 *)run->mmio.data; break;
820 case 1: gpr = *(u8 *)run->mmio.data; break;
bbf45ba5
HB
821 }
822 } else {
bbf45ba5 823 switch (run->mmio.len) {
d078eed3
DG
824 case 8: gpr = swab64(*(u64 *)run->mmio.data); break;
825 case 4: gpr = swab32(*(u32 *)run->mmio.data); break;
826 case 2: gpr = swab16(*(u16 *)run->mmio.data); break;
8e5b26b5 827 case 1: gpr = *(u8 *)run->mmio.data; break;
bbf45ba5
HB
828 }
829 }
8e5b26b5 830
3587d534
AG
831 if (vcpu->arch.mmio_sign_extend) {
832 switch (run->mmio.len) {
833#ifdef CONFIG_PPC64
834 case 4:
835 gpr = (s64)(s32)gpr;
836 break;
837#endif
838 case 2:
839 gpr = (s64)(s16)gpr;
840 break;
841 case 1:
842 gpr = (s64)(s8)gpr;
843 break;
844 }
845 }
846
8e5b26b5 847 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
b104d066 848
b3c5d3c2
AG
849 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
850 case KVM_MMIO_REG_GPR:
b104d066
AG
851 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
852 break;
b3c5d3c2 853 case KVM_MMIO_REG_FPR:
efff1912 854 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
b104d066 855 break;
287d5611 856#ifdef CONFIG_PPC_BOOK3S
b3c5d3c2
AG
857 case KVM_MMIO_REG_QPR:
858 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
b104d066 859 break;
b3c5d3c2 860 case KVM_MMIO_REG_FQPR:
efff1912 861 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
b3c5d3c2 862 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
b104d066 863 break;
287d5611 864#endif
b104d066
AG
865 default:
866 BUG();
867 }
bbf45ba5
HB
868}
869
eb8b0560
PM
870static int __kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
871 unsigned int rt, unsigned int bytes,
872 int is_default_endian, int sign_extend)
bbf45ba5 873{
ed840ee9 874 int idx, ret;
d078eed3 875 bool host_swabbed;
73601775 876
d078eed3 877 /* Pity C doesn't have a logical XOR operator */
73601775 878 if (kvmppc_need_byteswap(vcpu)) {
d078eed3 879 host_swabbed = is_default_endian;
73601775 880 } else {
d078eed3 881 host_swabbed = !is_default_endian;
73601775 882 }
ed840ee9 883
bbf45ba5
HB
884 if (bytes > sizeof(run->mmio.data)) {
885 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
886 run->mmio.len);
887 }
888
889 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
890 run->mmio.len = bytes;
891 run->mmio.is_write = 0;
892
893 vcpu->arch.io_gpr = rt;
d078eed3 894 vcpu->arch.mmio_host_swabbed = host_swabbed;
bbf45ba5
HB
895 vcpu->mmio_needed = 1;
896 vcpu->mmio_is_write = 0;
eb8b0560 897 vcpu->arch.mmio_sign_extend = sign_extend;
bbf45ba5 898
ed840ee9
SW
899 idx = srcu_read_lock(&vcpu->kvm->srcu);
900
e32edf4f 901 ret = kvm_io_bus_read(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
ed840ee9
SW
902 bytes, &run->mmio.data);
903
904 srcu_read_unlock(&vcpu->kvm->srcu, idx);
905
906 if (!ret) {
0e673fb6
AG
907 kvmppc_complete_mmio_load(vcpu, run);
908 vcpu->mmio_needed = 0;
909 return EMULATE_DONE;
910 }
911
bbf45ba5
HB
912 return EMULATE_DO_MMIO;
913}
eb8b0560
PM
914
915int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
916 unsigned int rt, unsigned int bytes,
917 int is_default_endian)
918{
919 return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 0);
920}
2ba9f0d8 921EXPORT_SYMBOL_GPL(kvmppc_handle_load);
bbf45ba5 922
3587d534
AG
923/* Same as above, but sign extends */
924int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
73601775
CLG
925 unsigned int rt, unsigned int bytes,
926 int is_default_endian)
3587d534 927{
eb8b0560 928 return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 1);
3587d534
AG
929}
930
bbf45ba5 931int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
73601775 932 u64 val, unsigned int bytes, int is_default_endian)
bbf45ba5
HB
933{
934 void *data = run->mmio.data;
ed840ee9 935 int idx, ret;
d078eed3 936 bool host_swabbed;
73601775 937
d078eed3 938 /* Pity C doesn't have a logical XOR operator */
73601775 939 if (kvmppc_need_byteswap(vcpu)) {
d078eed3 940 host_swabbed = is_default_endian;
73601775 941 } else {
d078eed3 942 host_swabbed = !is_default_endian;
73601775 943 }
bbf45ba5
HB
944
945 if (bytes > sizeof(run->mmio.data)) {
946 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
947 run->mmio.len);
948 }
949
950 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
951 run->mmio.len = bytes;
952 run->mmio.is_write = 1;
953 vcpu->mmio_needed = 1;
954 vcpu->mmio_is_write = 1;
955
956 /* Store the value at the lowest bytes in 'data'. */
d078eed3 957 if (!host_swabbed) {
bbf45ba5 958 switch (bytes) {
b104d066 959 case 8: *(u64 *)data = val; break;
bbf45ba5
HB
960 case 4: *(u32 *)data = val; break;
961 case 2: *(u16 *)data = val; break;
962 case 1: *(u8 *)data = val; break;
963 }
964 } else {
bbf45ba5 965 switch (bytes) {
d078eed3
DG
966 case 8: *(u64 *)data = swab64(val); break;
967 case 4: *(u32 *)data = swab32(val); break;
968 case 2: *(u16 *)data = swab16(val); break;
969 case 1: *(u8 *)data = val; break;
bbf45ba5
HB
970 }
971 }
972
ed840ee9
SW
973 idx = srcu_read_lock(&vcpu->kvm->srcu);
974
e32edf4f 975 ret = kvm_io_bus_write(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
ed840ee9
SW
976 bytes, &run->mmio.data);
977
978 srcu_read_unlock(&vcpu->kvm->srcu, idx);
979
980 if (!ret) {
0e673fb6
AG
981 vcpu->mmio_needed = 0;
982 return EMULATE_DONE;
983 }
984
bbf45ba5
HB
985 return EMULATE_DO_MMIO;
986}
2ba9f0d8 987EXPORT_SYMBOL_GPL(kvmppc_handle_store);
bbf45ba5 988
8a41ea53
MC
989int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
990{
991 int r = 0;
992 union kvmppc_one_reg val;
993 int size;
994
995 size = one_reg_size(reg->id);
996 if (size > sizeof(val))
997 return -EINVAL;
998
999 r = kvmppc_get_one_reg(vcpu, reg->id, &val);
1000 if (r == -EINVAL) {
1001 r = 0;
1002 switch (reg->id) {
3840edc8
MC
1003#ifdef CONFIG_ALTIVEC
1004 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1005 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1006 r = -ENXIO;
1007 break;
1008 }
b4d7f161 1009 val.vval = vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0];
3840edc8
MC
1010 break;
1011 case KVM_REG_PPC_VSCR:
1012 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1013 r = -ENXIO;
1014 break;
1015 }
b4d7f161 1016 val = get_reg_val(reg->id, vcpu->arch.vr.vscr.u[3]);
3840edc8
MC
1017 break;
1018 case KVM_REG_PPC_VRSAVE:
b4d7f161 1019 val = get_reg_val(reg->id, vcpu->arch.vrsave);
3840edc8
MC
1020 break;
1021#endif /* CONFIG_ALTIVEC */
8a41ea53
MC
1022 default:
1023 r = -EINVAL;
1024 break;
1025 }
1026 }
1027
1028 if (r)
1029 return r;
1030
1031 if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size))
1032 r = -EFAULT;
1033
1034 return r;
1035}
1036
1037int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1038{
1039 int r;
1040 union kvmppc_one_reg val;
1041 int size;
1042
1043 size = one_reg_size(reg->id);
1044 if (size > sizeof(val))
1045 return -EINVAL;
1046
1047 if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size))
1048 return -EFAULT;
1049
1050 r = kvmppc_set_one_reg(vcpu, reg->id, &val);
1051 if (r == -EINVAL) {
1052 r = 0;
1053 switch (reg->id) {
3840edc8
MC
1054#ifdef CONFIG_ALTIVEC
1055 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1056 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1057 r = -ENXIO;
1058 break;
1059 }
b4d7f161 1060 vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0] = val.vval;
3840edc8
MC
1061 break;
1062 case KVM_REG_PPC_VSCR:
1063 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1064 r = -ENXIO;
1065 break;
1066 }
b4d7f161 1067 vcpu->arch.vr.vscr.u[3] = set_reg_val(reg->id, val);
3840edc8
MC
1068 break;
1069 case KVM_REG_PPC_VRSAVE:
b4d7f161
GK
1070 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1071 r = -ENXIO;
1072 break;
1073 }
1074 vcpu->arch.vrsave = set_reg_val(reg->id, val);
3840edc8
MC
1075 break;
1076#endif /* CONFIG_ALTIVEC */
8a41ea53
MC
1077 default:
1078 r = -EINVAL;
1079 break;
1080 }
1081 }
1082
1083 return r;
1084}
1085
bbf45ba5
HB
1086int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
1087{
1088 int r;
1089 sigset_t sigsaved;
1090
1091 if (vcpu->sigset_active)
1092 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
1093
1094 if (vcpu->mmio_needed) {
1095 if (!vcpu->mmio_is_write)
1096 kvmppc_complete_mmio_load(vcpu, run);
1097 vcpu->mmio_needed = 0;
ad0a048b
AG
1098 } else if (vcpu->arch.osi_needed) {
1099 u64 *gprs = run->osi.gprs;
1100 int i;
1101
1102 for (i = 0; i < 32; i++)
1103 kvmppc_set_gpr(vcpu, i, gprs[i]);
1104 vcpu->arch.osi_needed = 0;
de56a948
PM
1105 } else if (vcpu->arch.hcall_needed) {
1106 int i;
1107
1108 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
1109 for (i = 0; i < 9; ++i)
1110 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
1111 vcpu->arch.hcall_needed = 0;
1c810636
AG
1112#ifdef CONFIG_BOOKE
1113 } else if (vcpu->arch.epr_needed) {
1114 kvmppc_set_epr(vcpu, run->epr.epr);
1115 vcpu->arch.epr_needed = 0;
1116#endif
bbf45ba5
HB
1117 }
1118
df6909e5 1119 r = kvmppc_vcpu_run(run, vcpu);
bbf45ba5
HB
1120
1121 if (vcpu->sigset_active)
1122 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1123
1124 return r;
1125}
1126
1127int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
1128{
19ccb76a 1129 if (irq->irq == KVM_INTERRUPT_UNSET) {
4fe27d2a 1130 kvmppc_core_dequeue_external(vcpu);
19ccb76a
PM
1131 return 0;
1132 }
1133
1134 kvmppc_core_queue_external(vcpu, irq);
b6d33834 1135
dfd4d47e 1136 kvm_vcpu_kick(vcpu);
45c5eb67 1137
bbf45ba5
HB
1138 return 0;
1139}
1140
71fbfd5f
AG
1141static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
1142 struct kvm_enable_cap *cap)
1143{
1144 int r;
1145
1146 if (cap->flags)
1147 return -EINVAL;
1148
1149 switch (cap->cap) {
ad0a048b
AG
1150 case KVM_CAP_PPC_OSI:
1151 r = 0;
1152 vcpu->arch.osi_enabled = true;
1153 break;
930b412a
AG
1154 case KVM_CAP_PPC_PAPR:
1155 r = 0;
1156 vcpu->arch.papr_enabled = true;
1157 break;
1c810636
AG
1158 case KVM_CAP_PPC_EPR:
1159 r = 0;
5df554ad
SW
1160 if (cap->args[0])
1161 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
1162 else
1163 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
1c810636 1164 break;
f61c94bb
BB
1165#ifdef CONFIG_BOOKE
1166 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1167 r = 0;
1168 vcpu->arch.watchdog_enabled = true;
1169 break;
1170#endif
bf7ca4bd 1171#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
dc83b8bc
SW
1172 case KVM_CAP_SW_TLB: {
1173 struct kvm_config_tlb cfg;
1174 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
1175
1176 r = -EFAULT;
1177 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
1178 break;
1179
1180 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
1181 break;
eb1e4f43
SW
1182 }
1183#endif
1184#ifdef CONFIG_KVM_MPIC
1185 case KVM_CAP_IRQ_MPIC: {
70abaded 1186 struct fd f;
eb1e4f43
SW
1187 struct kvm_device *dev;
1188
1189 r = -EBADF;
70abaded
AV
1190 f = fdget(cap->args[0]);
1191 if (!f.file)
eb1e4f43
SW
1192 break;
1193
1194 r = -EPERM;
70abaded 1195 dev = kvm_device_from_filp(f.file);
eb1e4f43
SW
1196 if (dev)
1197 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
1198
70abaded 1199 fdput(f);
eb1e4f43 1200 break;
dc83b8bc
SW
1201 }
1202#endif
5975a2e0
PM
1203#ifdef CONFIG_KVM_XICS
1204 case KVM_CAP_IRQ_XICS: {
70abaded 1205 struct fd f;
5975a2e0
PM
1206 struct kvm_device *dev;
1207
1208 r = -EBADF;
70abaded
AV
1209 f = fdget(cap->args[0]);
1210 if (!f.file)
5975a2e0
PM
1211 break;
1212
1213 r = -EPERM;
70abaded 1214 dev = kvm_device_from_filp(f.file);
5975a2e0
PM
1215 if (dev)
1216 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
1217
70abaded 1218 fdput(f);
5975a2e0
PM
1219 break;
1220 }
1221#endif /* CONFIG_KVM_XICS */
71fbfd5f
AG
1222 default:
1223 r = -EINVAL;
1224 break;
1225 }
1226
af8f38b3
AG
1227 if (!r)
1228 r = kvmppc_sanity_check(vcpu);
1229
71fbfd5f
AG
1230 return r;
1231}
1232
34a75b0f
PM
1233bool kvm_arch_intc_initialized(struct kvm *kvm)
1234{
1235#ifdef CONFIG_KVM_MPIC
1236 if (kvm->arch.mpic)
1237 return true;
1238#endif
1239#ifdef CONFIG_KVM_XICS
1240 if (kvm->arch.xics)
1241 return true;
1242#endif
1243 return false;
1244}
1245
bbf45ba5
HB
1246int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
1247 struct kvm_mp_state *mp_state)
1248{
1249 return -EINVAL;
1250}
1251
1252int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
1253 struct kvm_mp_state *mp_state)
1254{
1255 return -EINVAL;
1256}
1257
1258long kvm_arch_vcpu_ioctl(struct file *filp,
1259 unsigned int ioctl, unsigned long arg)
1260{
1261 struct kvm_vcpu *vcpu = filp->private_data;
1262 void __user *argp = (void __user *)arg;
1263 long r;
1264
93736624
AK
1265 switch (ioctl) {
1266 case KVM_INTERRUPT: {
bbf45ba5
HB
1267 struct kvm_interrupt irq;
1268 r = -EFAULT;
1269 if (copy_from_user(&irq, argp, sizeof(irq)))
93736624 1270 goto out;
bbf45ba5 1271 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
93736624 1272 goto out;
bbf45ba5 1273 }
19483d14 1274
71fbfd5f
AG
1275 case KVM_ENABLE_CAP:
1276 {
1277 struct kvm_enable_cap cap;
1278 r = -EFAULT;
1279 if (copy_from_user(&cap, argp, sizeof(cap)))
1280 goto out;
1281 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1282 break;
1283 }
dc83b8bc 1284
e24ed81f
AG
1285 case KVM_SET_ONE_REG:
1286 case KVM_GET_ONE_REG:
1287 {
1288 struct kvm_one_reg reg;
1289 r = -EFAULT;
1290 if (copy_from_user(&reg, argp, sizeof(reg)))
1291 goto out;
1292 if (ioctl == KVM_SET_ONE_REG)
1293 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
1294 else
1295 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
1296 break;
1297 }
1298
bf7ca4bd 1299#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
dc83b8bc
SW
1300 case KVM_DIRTY_TLB: {
1301 struct kvm_dirty_tlb dirty;
1302 r = -EFAULT;
1303 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1304 goto out;
1305 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1306 break;
1307 }
1308#endif
bbf45ba5
HB
1309 default:
1310 r = -EINVAL;
1311 }
1312
1313out:
1314 return r;
1315}
1316
5b1c1493
CO
1317int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1318{
1319 return VM_FAULT_SIGBUS;
1320}
1321
15711e9c
AG
1322static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1323{
784bafac
SY
1324 u32 inst_nop = 0x60000000;
1325#ifdef CONFIG_KVM_BOOKE_HV
1326 u32 inst_sc1 = 0x44000022;
2743103f
AG
1327 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
1328 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
1329 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
1330 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
784bafac 1331#else
15711e9c
AG
1332 u32 inst_lis = 0x3c000000;
1333 u32 inst_ori = 0x60000000;
15711e9c
AG
1334 u32 inst_sc = 0x44000002;
1335 u32 inst_imm_mask = 0xffff;
1336
1337 /*
1338 * The hypercall to get into KVM from within guest context is as
1339 * follows:
1340 *
1341 * lis r0, r0, KVM_SC_MAGIC_R0@h
1342 * ori r0, KVM_SC_MAGIC_R0@l
1343 * sc
1344 * nop
1345 */
2743103f
AG
1346 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
1347 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
1348 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
1349 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
784bafac 1350#endif
15711e9c 1351
9202e076
LYB
1352 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1353
15711e9c
AG
1354 return 0;
1355}
1356
5efdb4be
AG
1357int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1358 bool line_status)
1359{
1360 if (!irqchip_in_kernel(kvm))
1361 return -ENXIO;
1362
1363 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1364 irq_event->irq, irq_event->level,
1365 line_status);
1366 return 0;
1367}
1368
699a0ea0
PM
1369
1370static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1371 struct kvm_enable_cap *cap)
1372{
1373 int r;
1374
1375 if (cap->flags)
1376 return -EINVAL;
1377
1378 switch (cap->cap) {
1379#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1380 case KVM_CAP_PPC_ENABLE_HCALL: {
1381 unsigned long hcall = cap->args[0];
1382
1383 r = -EINVAL;
1384 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
1385 cap->args[1] > 1)
1386 break;
ae2113a4
PM
1387 if (!kvmppc_book3s_hcall_implemented(kvm, hcall))
1388 break;
699a0ea0
PM
1389 if (cap->args[1])
1390 set_bit(hcall / 4, kvm->arch.enabled_hcalls);
1391 else
1392 clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
1393 r = 0;
1394 break;
1395 }
1396#endif
1397 default:
1398 r = -EINVAL;
1399 break;
1400 }
1401
1402 return r;
1403}
1404
bbf45ba5
HB
1405long kvm_arch_vm_ioctl(struct file *filp,
1406 unsigned int ioctl, unsigned long arg)
1407{
5df554ad 1408 struct kvm *kvm __maybe_unused = filp->private_data;
15711e9c 1409 void __user *argp = (void __user *)arg;
bbf45ba5
HB
1410 long r;
1411
1412 switch (ioctl) {
15711e9c
AG
1413 case KVM_PPC_GET_PVINFO: {
1414 struct kvm_ppc_pvinfo pvinfo;
d8cdddcd 1415 memset(&pvinfo, 0, sizeof(pvinfo));
15711e9c
AG
1416 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1417 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1418 r = -EFAULT;
1419 goto out;
1420 }
1421
1422 break;
1423 }
699a0ea0
PM
1424 case KVM_ENABLE_CAP:
1425 {
1426 struct kvm_enable_cap cap;
1427 r = -EFAULT;
1428 if (copy_from_user(&cap, argp, sizeof(cap)))
1429 goto out;
1430 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1431 break;
1432 }
f31e65e1 1433#ifdef CONFIG_PPC_BOOK3S_64
58ded420
AK
1434 case KVM_CREATE_SPAPR_TCE_64: {
1435 struct kvm_create_spapr_tce_64 create_tce_64;
1436
1437 r = -EFAULT;
1438 if (copy_from_user(&create_tce_64, argp, sizeof(create_tce_64)))
1439 goto out;
1440 if (create_tce_64.flags) {
1441 r = -EINVAL;
1442 goto out;
1443 }
1444 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
1445 goto out;
1446 }
54738c09
DG
1447 case KVM_CREATE_SPAPR_TCE: {
1448 struct kvm_create_spapr_tce create_tce;
58ded420 1449 struct kvm_create_spapr_tce_64 create_tce_64;
54738c09
DG
1450
1451 r = -EFAULT;
1452 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1453 goto out;
58ded420
AK
1454
1455 create_tce_64.liobn = create_tce.liobn;
1456 create_tce_64.page_shift = IOMMU_PAGE_SHIFT_4K;
1457 create_tce_64.offset = 0;
1458 create_tce_64.size = create_tce.window_size >>
1459 IOMMU_PAGE_SHIFT_4K;
1460 create_tce_64.flags = 0;
1461 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
54738c09
DG
1462 goto out;
1463 }
5b74716e 1464 case KVM_PPC_GET_SMMU_INFO: {
5b74716e 1465 struct kvm_ppc_smmu_info info;
cbbc58d4 1466 struct kvm *kvm = filp->private_data;
5b74716e
BH
1467
1468 memset(&info, 0, sizeof(info));
cbbc58d4 1469 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
5b74716e
BH
1470 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1471 r = -EFAULT;
1472 break;
1473 }
8e591cb7
ME
1474 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1475 struct kvm *kvm = filp->private_data;
1476
1477 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1478 break;
1479 }
d046dddb
PM
1480 case KVM_PPC_CONFIGURE_V3_MMU: {
1481 struct kvm *kvm = filp->private_data;
1482 struct kvm_ppc_mmuv3_cfg cfg;
1483
1484 r = -EINVAL;
1485 if (!kvm->arch.kvm_ops->configure_mmu)
1486 goto out;
1487 r = -EFAULT;
1488 if (copy_from_user(&cfg, argp, sizeof(cfg)))
1489 goto out;
1490 r = kvm->arch.kvm_ops->configure_mmu(kvm, &cfg);
1491 break;
1492 }
1493 case KVM_PPC_GET_RMMU_INFO: {
1494 struct kvm *kvm = filp->private_data;
1495 struct kvm_ppc_rmmu_info info;
1496
1497 r = -EINVAL;
1498 if (!kvm->arch.kvm_ops->get_rmmu_info)
1499 goto out;
1500 r = kvm->arch.kvm_ops->get_rmmu_info(kvm, &info);
1501 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1502 r = -EFAULT;
1503 break;
1504 }
cbbc58d4
AK
1505 default: {
1506 struct kvm *kvm = filp->private_data;
1507 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1508 }
3a167bea 1509#else /* CONFIG_PPC_BOOK3S_64 */
bbf45ba5 1510 default:
367e1319 1511 r = -ENOTTY;
3a167bea 1512#endif
bbf45ba5 1513 }
15711e9c 1514out:
bbf45ba5
HB
1515 return r;
1516}
1517
043cc4d7
SW
1518static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1519static unsigned long nr_lpids;
1520
1521long kvmppc_alloc_lpid(void)
1522{
1523 long lpid;
1524
1525 do {
1526 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1527 if (lpid >= nr_lpids) {
1528 pr_err("%s: No LPIDs free\n", __func__);
1529 return -ENOMEM;
1530 }
1531 } while (test_and_set_bit(lpid, lpid_inuse));
1532
1533 return lpid;
1534}
2ba9f0d8 1535EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
043cc4d7
SW
1536
1537void kvmppc_claim_lpid(long lpid)
1538{
1539 set_bit(lpid, lpid_inuse);
1540}
2ba9f0d8 1541EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
043cc4d7
SW
1542
1543void kvmppc_free_lpid(long lpid)
1544{
1545 clear_bit(lpid, lpid_inuse);
1546}
2ba9f0d8 1547EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
043cc4d7
SW
1548
1549void kvmppc_init_lpid(unsigned long nr_lpids_param)
1550{
1551 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1552 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1553}
2ba9f0d8 1554EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
043cc4d7 1555
bbf45ba5
HB
1556int kvm_arch_init(void *opaque)
1557{
1558 return 0;
1559}
1560
478d6686 1561EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ppc_instr);