KVM: PPC: Handle magic page in kvmppc_ld/st
[deliverable/linux.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
3766a4c6 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
275 er = kvmppc_emulate_instruction(run, vcpu);
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
297 kvmppc_get_last_inst(vcpu, false, &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
10474ae8 387int kvm_arch_hardware_enable(void *garbage)
bbf45ba5 388{
10474ae8 389 return 0;
bbf45ba5
HB
390}
391
392void kvm_arch_hardware_disable(void *garbage)
393{
394}
395
396int kvm_arch_hardware_setup(void)
397{
398 return 0;
399}
400
401void kvm_arch_hardware_unsetup(void)
402{
403}
404
405void kvm_arch_check_processor_compat(void *rtn)
406{
9dd921cf 407 *(int *)rtn = kvmppc_core_check_processor_compat();
bbf45ba5
HB
408}
409
e08b9637 410int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
bbf45ba5 411{
cbbc58d4
AK
412 struct kvmppc_ops *kvm_ops = NULL;
413 /*
414 * if we have both HV and PR enabled, default is HV
415 */
416 if (type == 0) {
417 if (kvmppc_hv_ops)
418 kvm_ops = kvmppc_hv_ops;
419 else
420 kvm_ops = kvmppc_pr_ops;
421 if (!kvm_ops)
422 goto err_out;
423 } else if (type == KVM_VM_PPC_HV) {
424 if (!kvmppc_hv_ops)
425 goto err_out;
426 kvm_ops = kvmppc_hv_ops;
427 } else if (type == KVM_VM_PPC_PR) {
428 if (!kvmppc_pr_ops)
429 goto err_out;
430 kvm_ops = kvmppc_pr_ops;
431 } else
432 goto err_out;
433
434 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
435 return -ENOENT;
436
437 kvm->arch.kvm_ops = kvm_ops;
f9e0554d 438 return kvmppc_core_init_vm(kvm);
cbbc58d4
AK
439err_out:
440 return -EINVAL;
bbf45ba5
HB
441}
442
d89f5eff 443void kvm_arch_destroy_vm(struct kvm *kvm)
bbf45ba5
HB
444{
445 unsigned int i;
988a2cae 446 struct kvm_vcpu *vcpu;
bbf45ba5 447
988a2cae
GN
448 kvm_for_each_vcpu(i, vcpu, kvm)
449 kvm_arch_vcpu_free(vcpu);
450
451 mutex_lock(&kvm->lock);
452 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
453 kvm->vcpus[i] = NULL;
454
455 atomic_set(&kvm->online_vcpus, 0);
f9e0554d
PM
456
457 kvmppc_core_destroy_vm(kvm);
458
988a2cae 459 mutex_unlock(&kvm->lock);
cbbc58d4
AK
460
461 /* drop the module reference */
462 module_put(kvm->arch.kvm_ops->owner);
bbf45ba5
HB
463}
464
ad8ba2cd
SY
465void kvm_arch_sync_events(struct kvm *kvm)
466{
467}
468
784aa3d7 469int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
bbf45ba5
HB
470{
471 int r;
7a58777a 472 /* Assume we're using HV mode when the HV module is loaded */
cbbc58d4 473 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
bbf45ba5 474
7a58777a
AG
475 if (kvm) {
476 /*
477 * Hooray - we know which VM type we're running on. Depend on
478 * that rather than the guess above.
479 */
480 hv_enabled = is_kvmppc_hv_enabled(kvm);
481 }
482
bbf45ba5 483 switch (ext) {
5ce941ee
SW
484#ifdef CONFIG_BOOKE
485 case KVM_CAP_PPC_BOOKE_SREGS:
f61c94bb 486 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1c810636 487 case KVM_CAP_PPC_EPR:
5ce941ee 488#else
e15a1137 489 case KVM_CAP_PPC_SEGSTATE:
1022fc3d 490 case KVM_CAP_PPC_HIOR:
930b412a 491 case KVM_CAP_PPC_PAPR:
5ce941ee 492#endif
18978768 493 case KVM_CAP_PPC_UNSET_IRQ:
7b4203e8 494 case KVM_CAP_PPC_IRQ_LEVEL:
71fbfd5f 495 case KVM_CAP_ENABLE_CAP:
699a0ea0 496 case KVM_CAP_ENABLE_CAP_VM:
e24ed81f 497 case KVM_CAP_ONE_REG:
0e673fb6 498 case KVM_CAP_IOEVENTFD:
5df554ad 499 case KVM_CAP_DEVICE_CTRL:
de56a948
PM
500 r = 1;
501 break;
de56a948 502 case KVM_CAP_PPC_PAIRED_SINGLES:
ad0a048b 503 case KVM_CAP_PPC_OSI:
15711e9c 504 case KVM_CAP_PPC_GET_PVINFO:
bf7ca4bd 505#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
dc83b8bc 506 case KVM_CAP_SW_TLB:
eb1e4f43 507#endif
699cc876 508 /* We support this only for PR */
cbbc58d4 509 r = !hv_enabled;
e15a1137 510 break;
699cc876 511#ifdef CONFIG_KVM_MMIO
588968b6
LV
512 case KVM_CAP_COALESCED_MMIO:
513 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
514 break;
54738c09 515#endif
699cc876
AK
516#ifdef CONFIG_KVM_MPIC
517 case KVM_CAP_IRQ_MPIC:
518 r = 1;
519 break;
520#endif
521
f31e65e1 522#ifdef CONFIG_PPC_BOOK3S_64
54738c09 523 case KVM_CAP_SPAPR_TCE:
32fad281 524 case KVM_CAP_PPC_ALLOC_HTAB:
8e591cb7 525 case KVM_CAP_PPC_RTAS:
f2e91042 526 case KVM_CAP_PPC_FIXUP_HCALL:
699a0ea0 527 case KVM_CAP_PPC_ENABLE_HCALL:
5975a2e0
PM
528#ifdef CONFIG_KVM_XICS
529 case KVM_CAP_IRQ_XICS:
530#endif
54738c09
DG
531 r = 1;
532 break;
f31e65e1 533#endif /* CONFIG_PPC_BOOK3S_64 */
699cc876 534#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
371fefd6 535 case KVM_CAP_PPC_SMT:
cbbc58d4 536 if (hv_enabled)
3102f784 537 r = threads_per_subcore;
699cc876
AK
538 else
539 r = 0;
371fefd6 540 break;
aa04b4cc 541 case KVM_CAP_PPC_RMA:
cbbc58d4 542 r = hv_enabled;
9e368f29 543 /* PPC970 requires an RMA */
699cc876 544 if (r && cpu_has_feature(CPU_FTR_ARCH_201))
9e368f29 545 r = 2;
aa04b4cc 546 break;
f4800b1f 547#endif
342d3db7 548 case KVM_CAP_SYNC_MMU:
699cc876 549#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
cbbc58d4 550 if (hv_enabled)
699cc876
AK
551 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
552 else
553 r = 0;
f4800b1f
AG
554#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
555 r = 1;
556#else
557 r = 0;
a2932923 558#endif
699cc876
AK
559 break;
560#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
a2932923 561 case KVM_CAP_PPC_HTAB_FD:
cbbc58d4 562 r = hv_enabled;
a2932923 563 break;
de56a948 564#endif
b5434032
ME
565 case KVM_CAP_NR_VCPUS:
566 /*
567 * Recommending a number of CPUs is somewhat arbitrary; we
568 * return the number of present CPUs for -HV (since a host
569 * will have secondary threads "offline"), and for other KVM
570 * implementations just count online CPUs.
571 */
cbbc58d4 572 if (hv_enabled)
699cc876
AK
573 r = num_present_cpus();
574 else
575 r = num_online_cpus();
b5434032
ME
576 break;
577 case KVM_CAP_MAX_VCPUS:
578 r = KVM_MAX_VCPUS;
579 break;
5b74716e
BH
580#ifdef CONFIG_PPC_BOOK3S_64
581 case KVM_CAP_PPC_GET_SMMU_INFO:
582 r = 1;
583 break;
584#endif
bbf45ba5
HB
585 default:
586 r = 0;
587 break;
588 }
589 return r;
590
591}
592
593long kvm_arch_dev_ioctl(struct file *filp,
594 unsigned int ioctl, unsigned long arg)
595{
596 return -EINVAL;
597}
598
5587027c 599void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
db3fe4eb
TY
600 struct kvm_memory_slot *dont)
601{
5587027c 602 kvmppc_core_free_memslot(kvm, free, dont);
db3fe4eb
TY
603}
604
5587027c
AK
605int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
606 unsigned long npages)
db3fe4eb 607{
5587027c 608 return kvmppc_core_create_memslot(kvm, slot, npages);
db3fe4eb
TY
609}
610
e59dbe09
TY
611void kvm_arch_memslots_updated(struct kvm *kvm)
612{
613}
614
f7784b8e 615int kvm_arch_prepare_memory_region(struct kvm *kvm,
462fce46 616 struct kvm_memory_slot *memslot,
7b6195a9
TY
617 struct kvm_userspace_memory_region *mem,
618 enum kvm_mr_change change)
bbf45ba5 619{
a66b48c3 620 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
bbf45ba5
HB
621}
622
f7784b8e 623void kvm_arch_commit_memory_region(struct kvm *kvm,
462fce46 624 struct kvm_userspace_memory_region *mem,
8482644a
TY
625 const struct kvm_memory_slot *old,
626 enum kvm_mr_change change)
f7784b8e 627{
dfe49dbd 628 kvmppc_core_commit_memory_region(kvm, mem, old);
f7784b8e
MT
629}
630
2df72e9b
MT
631void kvm_arch_flush_shadow_all(struct kvm *kvm)
632{
633}
f7784b8e 634
2df72e9b
MT
635void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
636 struct kvm_memory_slot *slot)
34d4cb8f 637{
dfe49dbd 638 kvmppc_core_flush_memslot(kvm, slot);
34d4cb8f
MT
639}
640
bbf45ba5
HB
641struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
642{
73e75b41
HB
643 struct kvm_vcpu *vcpu;
644 vcpu = kvmppc_core_vcpu_create(kvm, id);
03cdab53
ME
645 if (!IS_ERR(vcpu)) {
646 vcpu->arch.wqp = &vcpu->wq;
06056bfb 647 kvmppc_create_vcpu_debugfs(vcpu, id);
03cdab53 648 }
73e75b41 649 return vcpu;
bbf45ba5
HB
650}
651
42897d86
MT
652int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
653{
654 return 0;
655}
656
bbf45ba5
HB
657void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
658{
a595405d
AG
659 /* Make sure we're not using the vcpu anymore */
660 hrtimer_cancel(&vcpu->arch.dec_timer);
661 tasklet_kill(&vcpu->arch.tasklet);
662
73e75b41 663 kvmppc_remove_vcpu_debugfs(vcpu);
eb1e4f43
SW
664
665 switch (vcpu->arch.irq_type) {
666 case KVMPPC_IRQ_MPIC:
667 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
668 break;
bc5ad3f3
BH
669 case KVMPPC_IRQ_XICS:
670 kvmppc_xics_free_icp(vcpu);
671 break;
eb1e4f43
SW
672 }
673
db93f574 674 kvmppc_core_vcpu_free(vcpu);
bbf45ba5
HB
675}
676
677void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
678{
679 kvm_arch_vcpu_free(vcpu);
680}
681
682int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
683{
9dd921cf 684 return kvmppc_core_pending_dec(vcpu);
bbf45ba5
HB
685}
686
544c6761
AG
687/*
688 * low level hrtimer wake routine. Because this runs in hardirq context
689 * we schedule a tasklet to do the real work.
690 */
691enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
692{
693 struct kvm_vcpu *vcpu;
694
695 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
696 tasklet_schedule(&vcpu->arch.tasklet);
697
698 return HRTIMER_NORESTART;
699}
700
bbf45ba5
HB
701int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
702{
f61c94bb
BB
703 int ret;
704
544c6761
AG
705 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
706 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
707 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
de56a948 708 vcpu->arch.dec_expires = ~(u64)0;
bbf45ba5 709
09000adb
BB
710#ifdef CONFIG_KVM_EXIT_TIMING
711 mutex_init(&vcpu->arch.exit_timing_lock);
712#endif
f61c94bb
BB
713 ret = kvmppc_subarch_vcpu_init(vcpu);
714 return ret;
bbf45ba5
HB
715}
716
717void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
718{
ecc0981f 719 kvmppc_mmu_destroy(vcpu);
f61c94bb 720 kvmppc_subarch_vcpu_uninit(vcpu);
bbf45ba5
HB
721}
722
723void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
724{
eab17672
SW
725#ifdef CONFIG_BOOKE
726 /*
727 * vrsave (formerly usprg0) isn't used by Linux, but may
728 * be used by the guest.
729 *
730 * On non-booke this is associated with Altivec and
731 * is handled by code in book3s.c.
732 */
733 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
734#endif
9dd921cf 735 kvmppc_core_vcpu_load(vcpu, cpu);
bbf45ba5
HB
736}
737
738void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
739{
9dd921cf 740 kvmppc_core_vcpu_put(vcpu);
eab17672
SW
741#ifdef CONFIG_BOOKE
742 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
743#endif
bbf45ba5
HB
744}
745
bbf45ba5
HB
746static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
747 struct kvm_run *run)
748{
8e5b26b5 749 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
bbf45ba5
HB
750}
751
752static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
753 struct kvm_run *run)
754{
69b61833 755 u64 uninitialized_var(gpr);
bbf45ba5 756
8e5b26b5 757 if (run->mmio.len > sizeof(gpr)) {
bbf45ba5
HB
758 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
759 return;
760 }
761
762 if (vcpu->arch.mmio_is_bigendian) {
763 switch (run->mmio.len) {
b104d066 764 case 8: gpr = *(u64 *)run->mmio.data; break;
8e5b26b5
AG
765 case 4: gpr = *(u32 *)run->mmio.data; break;
766 case 2: gpr = *(u16 *)run->mmio.data; break;
767 case 1: gpr = *(u8 *)run->mmio.data; break;
bbf45ba5
HB
768 }
769 } else {
770 /* Convert BE data from userland back to LE. */
771 switch (run->mmio.len) {
8e5b26b5
AG
772 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
773 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
774 case 1: gpr = *(u8 *)run->mmio.data; break;
bbf45ba5
HB
775 }
776 }
8e5b26b5 777
3587d534
AG
778 if (vcpu->arch.mmio_sign_extend) {
779 switch (run->mmio.len) {
780#ifdef CONFIG_PPC64
781 case 4:
782 gpr = (s64)(s32)gpr;
783 break;
784#endif
785 case 2:
786 gpr = (s64)(s16)gpr;
787 break;
788 case 1:
789 gpr = (s64)(s8)gpr;
790 break;
791 }
792 }
793
8e5b26b5 794 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
b104d066 795
b3c5d3c2
AG
796 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
797 case KVM_MMIO_REG_GPR:
b104d066
AG
798 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
799 break;
b3c5d3c2 800 case KVM_MMIO_REG_FPR:
efff1912 801 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
b104d066 802 break;
287d5611 803#ifdef CONFIG_PPC_BOOK3S
b3c5d3c2
AG
804 case KVM_MMIO_REG_QPR:
805 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
b104d066 806 break;
b3c5d3c2 807 case KVM_MMIO_REG_FQPR:
efff1912 808 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
b3c5d3c2 809 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
b104d066 810 break;
287d5611 811#endif
b104d066
AG
812 default:
813 BUG();
814 }
bbf45ba5
HB
815}
816
817int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
73601775
CLG
818 unsigned int rt, unsigned int bytes,
819 int is_default_endian)
bbf45ba5 820{
ed840ee9 821 int idx, ret;
73601775
CLG
822 int is_bigendian;
823
824 if (kvmppc_need_byteswap(vcpu)) {
825 /* Default endianness is "little endian". */
826 is_bigendian = !is_default_endian;
827 } else {
828 /* Default endianness is "big endian". */
829 is_bigendian = is_default_endian;
830 }
ed840ee9 831
bbf45ba5
HB
832 if (bytes > sizeof(run->mmio.data)) {
833 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
834 run->mmio.len);
835 }
836
837 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
838 run->mmio.len = bytes;
839 run->mmio.is_write = 0;
840
841 vcpu->arch.io_gpr = rt;
842 vcpu->arch.mmio_is_bigendian = is_bigendian;
843 vcpu->mmio_needed = 1;
844 vcpu->mmio_is_write = 0;
3587d534 845 vcpu->arch.mmio_sign_extend = 0;
bbf45ba5 846
ed840ee9
SW
847 idx = srcu_read_lock(&vcpu->kvm->srcu);
848
849 ret = kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
850 bytes, &run->mmio.data);
851
852 srcu_read_unlock(&vcpu->kvm->srcu, idx);
853
854 if (!ret) {
0e673fb6
AG
855 kvmppc_complete_mmio_load(vcpu, run);
856 vcpu->mmio_needed = 0;
857 return EMULATE_DONE;
858 }
859
bbf45ba5
HB
860 return EMULATE_DO_MMIO;
861}
2ba9f0d8 862EXPORT_SYMBOL_GPL(kvmppc_handle_load);
bbf45ba5 863
3587d534
AG
864/* Same as above, but sign extends */
865int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
73601775
CLG
866 unsigned int rt, unsigned int bytes,
867 int is_default_endian)
3587d534
AG
868{
869 int r;
870
3587d534 871 vcpu->arch.mmio_sign_extend = 1;
73601775 872 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian);
3587d534
AG
873
874 return r;
875}
876
bbf45ba5 877int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
73601775 878 u64 val, unsigned int bytes, int is_default_endian)
bbf45ba5
HB
879{
880 void *data = run->mmio.data;
ed840ee9 881 int idx, ret;
73601775
CLG
882 int is_bigendian;
883
884 if (kvmppc_need_byteswap(vcpu)) {
885 /* Default endianness is "little endian". */
886 is_bigendian = !is_default_endian;
887 } else {
888 /* Default endianness is "big endian". */
889 is_bigendian = is_default_endian;
890 }
bbf45ba5
HB
891
892 if (bytes > sizeof(run->mmio.data)) {
893 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
894 run->mmio.len);
895 }
896
897 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
898 run->mmio.len = bytes;
899 run->mmio.is_write = 1;
900 vcpu->mmio_needed = 1;
901 vcpu->mmio_is_write = 1;
902
903 /* Store the value at the lowest bytes in 'data'. */
904 if (is_bigendian) {
905 switch (bytes) {
b104d066 906 case 8: *(u64 *)data = val; break;
bbf45ba5
HB
907 case 4: *(u32 *)data = val; break;
908 case 2: *(u16 *)data = val; break;
909 case 1: *(u8 *)data = val; break;
910 }
911 } else {
912 /* Store LE value into 'data'. */
913 switch (bytes) {
914 case 4: st_le32(data, val); break;
915 case 2: st_le16(data, val); break;
916 case 1: *(u8 *)data = val; break;
917 }
918 }
919
ed840ee9
SW
920 idx = srcu_read_lock(&vcpu->kvm->srcu);
921
922 ret = kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
923 bytes, &run->mmio.data);
924
925 srcu_read_unlock(&vcpu->kvm->srcu, idx);
926
927 if (!ret) {
0e673fb6
AG
928 vcpu->mmio_needed = 0;
929 return EMULATE_DONE;
930 }
931
bbf45ba5
HB
932 return EMULATE_DO_MMIO;
933}
2ba9f0d8 934EXPORT_SYMBOL_GPL(kvmppc_handle_store);
bbf45ba5
HB
935
936int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
937{
938 int r;
939 sigset_t sigsaved;
940
941 if (vcpu->sigset_active)
942 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
943
944 if (vcpu->mmio_needed) {
945 if (!vcpu->mmio_is_write)
946 kvmppc_complete_mmio_load(vcpu, run);
947 vcpu->mmio_needed = 0;
948 } else if (vcpu->arch.dcr_needed) {
949 if (!vcpu->arch.dcr_is_write)
950 kvmppc_complete_dcr_load(vcpu, run);
951 vcpu->arch.dcr_needed = 0;
ad0a048b
AG
952 } else if (vcpu->arch.osi_needed) {
953 u64 *gprs = run->osi.gprs;
954 int i;
955
956 for (i = 0; i < 32; i++)
957 kvmppc_set_gpr(vcpu, i, gprs[i]);
958 vcpu->arch.osi_needed = 0;
de56a948
PM
959 } else if (vcpu->arch.hcall_needed) {
960 int i;
961
962 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
963 for (i = 0; i < 9; ++i)
964 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
965 vcpu->arch.hcall_needed = 0;
1c810636
AG
966#ifdef CONFIG_BOOKE
967 } else if (vcpu->arch.epr_needed) {
968 kvmppc_set_epr(vcpu, run->epr.epr);
969 vcpu->arch.epr_needed = 0;
970#endif
bbf45ba5
HB
971 }
972
df6909e5 973 r = kvmppc_vcpu_run(run, vcpu);
bbf45ba5
HB
974
975 if (vcpu->sigset_active)
976 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
977
978 return r;
979}
980
981int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
982{
19ccb76a 983 if (irq->irq == KVM_INTERRUPT_UNSET) {
4fe27d2a 984 kvmppc_core_dequeue_external(vcpu);
19ccb76a
PM
985 return 0;
986 }
987
988 kvmppc_core_queue_external(vcpu, irq);
b6d33834 989
dfd4d47e 990 kvm_vcpu_kick(vcpu);
45c5eb67 991
bbf45ba5
HB
992 return 0;
993}
994
71fbfd5f
AG
995static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
996 struct kvm_enable_cap *cap)
997{
998 int r;
999
1000 if (cap->flags)
1001 return -EINVAL;
1002
1003 switch (cap->cap) {
ad0a048b
AG
1004 case KVM_CAP_PPC_OSI:
1005 r = 0;
1006 vcpu->arch.osi_enabled = true;
1007 break;
930b412a
AG
1008 case KVM_CAP_PPC_PAPR:
1009 r = 0;
1010 vcpu->arch.papr_enabled = true;
1011 break;
1c810636
AG
1012 case KVM_CAP_PPC_EPR:
1013 r = 0;
5df554ad
SW
1014 if (cap->args[0])
1015 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
1016 else
1017 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
1c810636 1018 break;
f61c94bb
BB
1019#ifdef CONFIG_BOOKE
1020 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1021 r = 0;
1022 vcpu->arch.watchdog_enabled = true;
1023 break;
1024#endif
bf7ca4bd 1025#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
dc83b8bc
SW
1026 case KVM_CAP_SW_TLB: {
1027 struct kvm_config_tlb cfg;
1028 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
1029
1030 r = -EFAULT;
1031 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
1032 break;
1033
1034 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
1035 break;
eb1e4f43
SW
1036 }
1037#endif
1038#ifdef CONFIG_KVM_MPIC
1039 case KVM_CAP_IRQ_MPIC: {
70abaded 1040 struct fd f;
eb1e4f43
SW
1041 struct kvm_device *dev;
1042
1043 r = -EBADF;
70abaded
AV
1044 f = fdget(cap->args[0]);
1045 if (!f.file)
eb1e4f43
SW
1046 break;
1047
1048 r = -EPERM;
70abaded 1049 dev = kvm_device_from_filp(f.file);
eb1e4f43
SW
1050 if (dev)
1051 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
1052
70abaded 1053 fdput(f);
eb1e4f43 1054 break;
dc83b8bc
SW
1055 }
1056#endif
5975a2e0
PM
1057#ifdef CONFIG_KVM_XICS
1058 case KVM_CAP_IRQ_XICS: {
70abaded 1059 struct fd f;
5975a2e0
PM
1060 struct kvm_device *dev;
1061
1062 r = -EBADF;
70abaded
AV
1063 f = fdget(cap->args[0]);
1064 if (!f.file)
5975a2e0
PM
1065 break;
1066
1067 r = -EPERM;
70abaded 1068 dev = kvm_device_from_filp(f.file);
5975a2e0
PM
1069 if (dev)
1070 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
1071
70abaded 1072 fdput(f);
5975a2e0
PM
1073 break;
1074 }
1075#endif /* CONFIG_KVM_XICS */
71fbfd5f
AG
1076 default:
1077 r = -EINVAL;
1078 break;
1079 }
1080
af8f38b3
AG
1081 if (!r)
1082 r = kvmppc_sanity_check(vcpu);
1083
71fbfd5f
AG
1084 return r;
1085}
1086
bbf45ba5
HB
1087int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
1088 struct kvm_mp_state *mp_state)
1089{
1090 return -EINVAL;
1091}
1092
1093int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
1094 struct kvm_mp_state *mp_state)
1095{
1096 return -EINVAL;
1097}
1098
1099long kvm_arch_vcpu_ioctl(struct file *filp,
1100 unsigned int ioctl, unsigned long arg)
1101{
1102 struct kvm_vcpu *vcpu = filp->private_data;
1103 void __user *argp = (void __user *)arg;
1104 long r;
1105
93736624
AK
1106 switch (ioctl) {
1107 case KVM_INTERRUPT: {
bbf45ba5
HB
1108 struct kvm_interrupt irq;
1109 r = -EFAULT;
1110 if (copy_from_user(&irq, argp, sizeof(irq)))
93736624 1111 goto out;
bbf45ba5 1112 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
93736624 1113 goto out;
bbf45ba5 1114 }
19483d14 1115
71fbfd5f
AG
1116 case KVM_ENABLE_CAP:
1117 {
1118 struct kvm_enable_cap cap;
1119 r = -EFAULT;
1120 if (copy_from_user(&cap, argp, sizeof(cap)))
1121 goto out;
1122 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1123 break;
1124 }
dc83b8bc 1125
e24ed81f
AG
1126 case KVM_SET_ONE_REG:
1127 case KVM_GET_ONE_REG:
1128 {
1129 struct kvm_one_reg reg;
1130 r = -EFAULT;
1131 if (copy_from_user(&reg, argp, sizeof(reg)))
1132 goto out;
1133 if (ioctl == KVM_SET_ONE_REG)
1134 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
1135 else
1136 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
1137 break;
1138 }
1139
bf7ca4bd 1140#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
dc83b8bc
SW
1141 case KVM_DIRTY_TLB: {
1142 struct kvm_dirty_tlb dirty;
1143 r = -EFAULT;
1144 if (copy_from_user(&dirty, argp, sizeof(dirty)))
1145 goto out;
1146 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
1147 break;
1148 }
1149#endif
bbf45ba5
HB
1150 default:
1151 r = -EINVAL;
1152 }
1153
1154out:
1155 return r;
1156}
1157
5b1c1493
CO
1158int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1159{
1160 return VM_FAULT_SIGBUS;
1161}
1162
15711e9c
AG
1163static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
1164{
784bafac
SY
1165 u32 inst_nop = 0x60000000;
1166#ifdef CONFIG_KVM_BOOKE_HV
1167 u32 inst_sc1 = 0x44000022;
2743103f
AG
1168 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
1169 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
1170 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
1171 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
784bafac 1172#else
15711e9c
AG
1173 u32 inst_lis = 0x3c000000;
1174 u32 inst_ori = 0x60000000;
15711e9c
AG
1175 u32 inst_sc = 0x44000002;
1176 u32 inst_imm_mask = 0xffff;
1177
1178 /*
1179 * The hypercall to get into KVM from within guest context is as
1180 * follows:
1181 *
1182 * lis r0, r0, KVM_SC_MAGIC_R0@h
1183 * ori r0, KVM_SC_MAGIC_R0@l
1184 * sc
1185 * nop
1186 */
2743103f
AG
1187 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
1188 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
1189 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
1190 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
784bafac 1191#endif
15711e9c 1192
9202e076
LYB
1193 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
1194
15711e9c
AG
1195 return 0;
1196}
1197
5efdb4be
AG
1198int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1199 bool line_status)
1200{
1201 if (!irqchip_in_kernel(kvm))
1202 return -ENXIO;
1203
1204 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1205 irq_event->irq, irq_event->level,
1206 line_status);
1207 return 0;
1208}
1209
699a0ea0
PM
1210
1211static int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1212 struct kvm_enable_cap *cap)
1213{
1214 int r;
1215
1216 if (cap->flags)
1217 return -EINVAL;
1218
1219 switch (cap->cap) {
1220#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1221 case KVM_CAP_PPC_ENABLE_HCALL: {
1222 unsigned long hcall = cap->args[0];
1223
1224 r = -EINVAL;
1225 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
1226 cap->args[1] > 1)
1227 break;
ae2113a4
PM
1228 if (!kvmppc_book3s_hcall_implemented(kvm, hcall))
1229 break;
699a0ea0
PM
1230 if (cap->args[1])
1231 set_bit(hcall / 4, kvm->arch.enabled_hcalls);
1232 else
1233 clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
1234 r = 0;
1235 break;
1236 }
1237#endif
1238 default:
1239 r = -EINVAL;
1240 break;
1241 }
1242
1243 return r;
1244}
1245
bbf45ba5
HB
1246long kvm_arch_vm_ioctl(struct file *filp,
1247 unsigned int ioctl, unsigned long arg)
1248{
5df554ad 1249 struct kvm *kvm __maybe_unused = filp->private_data;
15711e9c 1250 void __user *argp = (void __user *)arg;
bbf45ba5
HB
1251 long r;
1252
1253 switch (ioctl) {
15711e9c
AG
1254 case KVM_PPC_GET_PVINFO: {
1255 struct kvm_ppc_pvinfo pvinfo;
d8cdddcd 1256 memset(&pvinfo, 0, sizeof(pvinfo));
15711e9c
AG
1257 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1258 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1259 r = -EFAULT;
1260 goto out;
1261 }
1262
1263 break;
1264 }
699a0ea0
PM
1265 case KVM_ENABLE_CAP:
1266 {
1267 struct kvm_enable_cap cap;
1268 r = -EFAULT;
1269 if (copy_from_user(&cap, argp, sizeof(cap)))
1270 goto out;
1271 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1272 break;
1273 }
f31e65e1 1274#ifdef CONFIG_PPC_BOOK3S_64
54738c09
DG
1275 case KVM_CREATE_SPAPR_TCE: {
1276 struct kvm_create_spapr_tce create_tce;
54738c09
DG
1277
1278 r = -EFAULT;
1279 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1280 goto out;
1281 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
1282 goto out;
1283 }
5b74716e 1284 case KVM_PPC_GET_SMMU_INFO: {
5b74716e 1285 struct kvm_ppc_smmu_info info;
cbbc58d4 1286 struct kvm *kvm = filp->private_data;
5b74716e
BH
1287
1288 memset(&info, 0, sizeof(info));
cbbc58d4 1289 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
5b74716e
BH
1290 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1291 r = -EFAULT;
1292 break;
1293 }
8e591cb7
ME
1294 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1295 struct kvm *kvm = filp->private_data;
1296
1297 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1298 break;
1299 }
cbbc58d4
AK
1300 default: {
1301 struct kvm *kvm = filp->private_data;
1302 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
1303 }
3a167bea 1304#else /* CONFIG_PPC_BOOK3S_64 */
bbf45ba5 1305 default:
367e1319 1306 r = -ENOTTY;
3a167bea 1307#endif
bbf45ba5 1308 }
15711e9c 1309out:
bbf45ba5
HB
1310 return r;
1311}
1312
043cc4d7
SW
1313static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1314static unsigned long nr_lpids;
1315
1316long kvmppc_alloc_lpid(void)
1317{
1318 long lpid;
1319
1320 do {
1321 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1322 if (lpid >= nr_lpids) {
1323 pr_err("%s: No LPIDs free\n", __func__);
1324 return -ENOMEM;
1325 }
1326 } while (test_and_set_bit(lpid, lpid_inuse));
1327
1328 return lpid;
1329}
2ba9f0d8 1330EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
043cc4d7
SW
1331
1332void kvmppc_claim_lpid(long lpid)
1333{
1334 set_bit(lpid, lpid_inuse);
1335}
2ba9f0d8 1336EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
043cc4d7
SW
1337
1338void kvmppc_free_lpid(long lpid)
1339{
1340 clear_bit(lpid, lpid_inuse);
1341}
2ba9f0d8 1342EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
043cc4d7
SW
1343
1344void kvmppc_init_lpid(unsigned long nr_lpids_param)
1345{
1346 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1347 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1348}
2ba9f0d8 1349EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
043cc4d7 1350
bbf45ba5
HB
1351int kvm_arch_init(void *opaque)
1352{
1353 return 0;
1354}
1355
1356void kvm_arch_exit(void)
1357{
cbbc58d4 1358
bbf45ba5 1359}
This page took 0.412818 seconds and 5 git commands to generate.