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