kvm/ppc/mpic: Eliminate mmio_mapped
[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>
bbf45ba5
HB
29#include <asm/cputable.h>
30#include <asm/uaccess.h>
31#include <asm/kvm_ppc.h>
83aae4a8 32#include <asm/tlbflush.h>
371fefd6 33#include <asm/cputhreads.h>
bd2be683 34#include <asm/irqflags.h>
73e75b41 35#include "timing.h"
5efdb4be 36#include "irq.h"
fad7b9b5 37#include "../mm/mmu_decl.h"
bbf45ba5 38
46f43c6e
MT
39#define CREATE_TRACE_POINTS
40#include "trace.h"
41
bbf45ba5
HB
42int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
43{
9202e076 44 return !!(v->arch.pending_exceptions) ||
dfd4d47e 45 v->requests;
bbf45ba5
HB
46}
47
b6d33834
CD
48int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
49{
50 return 1;
51}
52
03d25c5b
AG
53#ifndef CONFIG_KVM_BOOK3S_64_HV
54/*
55 * Common checks before entering the guest world. Call with interrupts
56 * disabled.
57 *
7ee78855
AG
58 * returns:
59 *
60 * == 1 if we're ready to go into guest state
61 * <= 0 if we need to go back to the host with return value
03d25c5b
AG
62 */
63int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
64{
7ee78855 65 int r = 1;
03d25c5b
AG
66
67 WARN_ON_ONCE(!irqs_disabled());
68 while (true) {
69 if (need_resched()) {
70 local_irq_enable();
71 cond_resched();
72 local_irq_disable();
73 continue;
74 }
75
76 if (signal_pending(current)) {
7ee78855
AG
77 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
78 vcpu->run->exit_reason = KVM_EXIT_INTR;
79 r = -EINTR;
03d25c5b
AG
80 break;
81 }
82
5bd1cf11
SW
83 vcpu->mode = IN_GUEST_MODE;
84
85 /*
86 * Reading vcpu->requests must happen after setting vcpu->mode,
87 * so we don't miss a request because the requester sees
88 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
89 * before next entering the guest (and thus doesn't IPI).
90 */
03d25c5b 91 smp_mb();
5bd1cf11 92
03d25c5b
AG
93 if (vcpu->requests) {
94 /* Make sure we process requests preemptable */
95 local_irq_enable();
96 trace_kvm_check_requests(vcpu);
7c973a2e 97 r = kvmppc_core_check_requests(vcpu);
03d25c5b 98 local_irq_disable();
7c973a2e
AG
99 if (r > 0)
100 continue;
101 break;
03d25c5b
AG
102 }
103
104 if (kvmppc_core_prepare_to_enter(vcpu)) {
105 /* interrupts got enabled in between, so we
106 are back at square 1 */
107 continue;
108 }
109
bd2be683
AG
110#ifdef CONFIG_PPC64
111 /* lazy EE magic */
112 hard_irq_disable();
113 if (lazy_irq_pending()) {
114 /* Got an interrupt in between, try again */
115 local_irq_enable();
116 local_irq_disable();
3766a4c6 117 kvm_guest_exit();
bd2be683
AG
118 continue;
119 }
120
121 trace_hardirqs_on();
122#endif
123
3766a4c6 124 kvm_guest_enter();
03d25c5b
AG
125 break;
126 }
127
128 return r;
129}
130#endif /* CONFIG_KVM_BOOK3S_64_HV */
131
2a342ed5
AG
132int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
133{
134 int nr = kvmppc_get_gpr(vcpu, 11);
135 int r;
136 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
137 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
138 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
139 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
140 unsigned long r2 = 0;
141
142 if (!(vcpu->arch.shared->msr & MSR_SF)) {
143 /* 32 bit mode */
144 param1 &= 0xffffffff;
145 param2 &= 0xffffffff;
146 param3 &= 0xffffffff;
147 param4 &= 0xffffffff;
148 }
149
150 switch (nr) {
fdcf8bd7 151 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
5fc87407
AG
152 {
153 vcpu->arch.magic_page_pa = param1;
154 vcpu->arch.magic_page_ea = param2;
155
b5904972 156 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
7508e16c 157
fdcf8bd7 158 r = EV_SUCCESS;
5fc87407
AG
159 break;
160 }
fdcf8bd7
SY
161 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
162 r = EV_SUCCESS;
bf7ca4bd 163#if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
a4cd8b23 164 /* XXX Missing magic page on 44x */
5fc87407
AG
165 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
166#endif
2a342ed5
AG
167
168 /* Second return value is in r4 */
2a342ed5 169 break;
9202e076
LYB
170 case EV_HCALL_TOKEN(EV_IDLE):
171 r = EV_SUCCESS;
172 kvm_vcpu_block(vcpu);
173 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
174 break;
2a342ed5 175 default:
fdcf8bd7 176 r = EV_UNIMPLEMENTED;
2a342ed5
AG
177 break;
178 }
179
7508e16c
AG
180 kvmppc_set_gpr(vcpu, 4, r2);
181
2a342ed5
AG
182 return r;
183}
bbf45ba5 184
af8f38b3
AG
185int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
186{
187 int r = false;
188
189 /* We have to know what CPU to virtualize */
190 if (!vcpu->arch.pvr)
191 goto out;
192
193 /* PAPR only works with book3s_64 */
194 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
195 goto out;
196
197#ifdef CONFIG_KVM_BOOK3S_64_HV
198 /* HV KVM can only do PAPR mode for now */
199 if (!vcpu->arch.papr_enabled)
200 goto out;
201#endif
202
d30f6e48
SW
203#ifdef CONFIG_KVM_BOOKE_HV
204 if (!cpu_has_feature(CPU_FTR_EMB_HV))
205 goto out;
206#endif
207
af8f38b3
AG
208 r = true;
209
210out:
211 vcpu->arch.sane = r;
212 return r ? 0 : -EINVAL;
213}
214
bbf45ba5
HB
215int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
216{
217 enum emulation_result er;
218 int r;
219
220 er = kvmppc_emulate_instruction(run, vcpu);
221 switch (er) {
222 case EMULATE_DONE:
223 /* Future optimization: only reload non-volatiles if they were
224 * actually modified. */
225 r = RESUME_GUEST_NV;
226 break;
227 case EMULATE_DO_MMIO:
228 run->exit_reason = KVM_EXIT_MMIO;
229 /* We must reload nonvolatiles because "update" load/store
230 * instructions modify register state. */
231 /* Future optimization: only reload non-volatiles if they were
232 * actually modified. */
233 r = RESUME_HOST_NV;
234 break;
235 case EMULATE_FAIL:
236 /* XXX Deliver Program interrupt to guest. */
237 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
c7f38f46 238 kvmppc_get_last_inst(vcpu));
bbf45ba5
HB
239 r = RESUME_HOST;
240 break;
241 default:
5a33169e
AG
242 WARN_ON(1);
243 r = RESUME_GUEST;
bbf45ba5
HB
244 }
245
246 return r;
247}
248
10474ae8 249int kvm_arch_hardware_enable(void *garbage)
bbf45ba5 250{
10474ae8 251 return 0;
bbf45ba5
HB
252}
253
254void kvm_arch_hardware_disable(void *garbage)
255{
256}
257
258int kvm_arch_hardware_setup(void)
259{
260 return 0;
261}
262
263void kvm_arch_hardware_unsetup(void)
264{
265}
266
267void kvm_arch_check_processor_compat(void *rtn)
268{
9dd921cf 269 *(int *)rtn = kvmppc_core_check_processor_compat();
bbf45ba5
HB
270}
271
e08b9637 272int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
bbf45ba5 273{
e08b9637
CO
274 if (type)
275 return -EINVAL;
276
f9e0554d 277 return kvmppc_core_init_vm(kvm);
bbf45ba5
HB
278}
279
d89f5eff 280void kvm_arch_destroy_vm(struct kvm *kvm)
bbf45ba5
HB
281{
282 unsigned int i;
988a2cae 283 struct kvm_vcpu *vcpu;
bbf45ba5 284
988a2cae
GN
285 kvm_for_each_vcpu(i, vcpu, kvm)
286 kvm_arch_vcpu_free(vcpu);
287
288 mutex_lock(&kvm->lock);
289 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
290 kvm->vcpus[i] = NULL;
291
292 atomic_set(&kvm->online_vcpus, 0);
f9e0554d
PM
293
294 kvmppc_core_destroy_vm(kvm);
295
988a2cae 296 mutex_unlock(&kvm->lock);
bbf45ba5
HB
297}
298
ad8ba2cd
SY
299void kvm_arch_sync_events(struct kvm *kvm)
300{
301}
302
bbf45ba5
HB
303int kvm_dev_ioctl_check_extension(long ext)
304{
305 int r;
306
307 switch (ext) {
5ce941ee
SW
308#ifdef CONFIG_BOOKE
309 case KVM_CAP_PPC_BOOKE_SREGS:
f61c94bb 310 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1c810636 311 case KVM_CAP_PPC_EPR:
5ce941ee 312#else
e15a1137 313 case KVM_CAP_PPC_SEGSTATE:
1022fc3d 314 case KVM_CAP_PPC_HIOR:
930b412a 315 case KVM_CAP_PPC_PAPR:
5ce941ee 316#endif
18978768 317 case KVM_CAP_PPC_UNSET_IRQ:
7b4203e8 318 case KVM_CAP_PPC_IRQ_LEVEL:
71fbfd5f 319 case KVM_CAP_ENABLE_CAP:
e24ed81f 320 case KVM_CAP_ONE_REG:
0e673fb6 321 case KVM_CAP_IOEVENTFD:
5df554ad 322 case KVM_CAP_DEVICE_CTRL:
de56a948
PM
323 r = 1;
324 break;
325#ifndef CONFIG_KVM_BOOK3S_64_HV
326 case KVM_CAP_PPC_PAIRED_SINGLES:
ad0a048b 327 case KVM_CAP_PPC_OSI:
15711e9c 328 case KVM_CAP_PPC_GET_PVINFO:
bf7ca4bd 329#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
dc83b8bc 330 case KVM_CAP_SW_TLB:
eb1e4f43
SW
331#endif
332#ifdef CONFIG_KVM_MPIC
333 case KVM_CAP_IRQ_MPIC:
dc83b8bc 334#endif
e15a1137
AG
335 r = 1;
336 break;
588968b6
LV
337 case KVM_CAP_COALESCED_MMIO:
338 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
339 break;
54738c09 340#endif
f31e65e1 341#ifdef CONFIG_PPC_BOOK3S_64
54738c09 342 case KVM_CAP_SPAPR_TCE:
32fad281 343 case KVM_CAP_PPC_ALLOC_HTAB:
54738c09
DG
344 r = 1;
345 break;
f31e65e1
BH
346#endif /* CONFIG_PPC_BOOK3S_64 */
347#ifdef CONFIG_KVM_BOOK3S_64_HV
371fefd6
PM
348 case KVM_CAP_PPC_SMT:
349 r = threads_per_core;
350 break;
aa04b4cc
PM
351 case KVM_CAP_PPC_RMA:
352 r = 1;
9e368f29
PM
353 /* PPC970 requires an RMA */
354 if (cpu_has_feature(CPU_FTR_ARCH_201))
355 r = 2;
aa04b4cc 356 break;
f4800b1f 357#endif
342d3db7 358 case KVM_CAP_SYNC_MMU:
f4800b1f 359#ifdef CONFIG_KVM_BOOK3S_64_HV
342d3db7 360 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
f4800b1f
AG
361#elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
362 r = 1;
363#else
364 r = 0;
a2932923
PM
365 break;
366#endif
367#ifdef CONFIG_KVM_BOOK3S_64_HV
368 case KVM_CAP_PPC_HTAB_FD:
369 r = 1;
370 break;
de56a948 371#endif
f4800b1f 372 break;
b5434032
ME
373 case KVM_CAP_NR_VCPUS:
374 /*
375 * Recommending a number of CPUs is somewhat arbitrary; we
376 * return the number of present CPUs for -HV (since a host
377 * will have secondary threads "offline"), and for other KVM
378 * implementations just count online CPUs.
379 */
380#ifdef CONFIG_KVM_BOOK3S_64_HV
381 r = num_present_cpus();
382#else
383 r = num_online_cpus();
384#endif
385 break;
386 case KVM_CAP_MAX_VCPUS:
387 r = KVM_MAX_VCPUS;
388 break;
5b74716e
BH
389#ifdef CONFIG_PPC_BOOK3S_64
390 case KVM_CAP_PPC_GET_SMMU_INFO:
391 r = 1;
392 break;
393#endif
bbf45ba5
HB
394 default:
395 r = 0;
396 break;
397 }
398 return r;
399
400}
401
402long kvm_arch_dev_ioctl(struct file *filp,
403 unsigned int ioctl, unsigned long arg)
404{
405 return -EINVAL;
406}
407
db3fe4eb
TY
408void kvm_arch_free_memslot(struct kvm_memory_slot *free,
409 struct kvm_memory_slot *dont)
410{
a66b48c3 411 kvmppc_core_free_memslot(free, dont);
db3fe4eb
TY
412}
413
414int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages)
415{
a66b48c3 416 return kvmppc_core_create_memslot(slot, npages);
db3fe4eb
TY
417}
418
f7784b8e 419int kvm_arch_prepare_memory_region(struct kvm *kvm,
462fce46 420 struct kvm_memory_slot *memslot,
7b6195a9
TY
421 struct kvm_userspace_memory_region *mem,
422 enum kvm_mr_change change)
bbf45ba5 423{
a66b48c3 424 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
bbf45ba5
HB
425}
426
f7784b8e 427void kvm_arch_commit_memory_region(struct kvm *kvm,
462fce46 428 struct kvm_userspace_memory_region *mem,
8482644a
TY
429 const struct kvm_memory_slot *old,
430 enum kvm_mr_change change)
f7784b8e 431{
dfe49dbd 432 kvmppc_core_commit_memory_region(kvm, mem, old);
f7784b8e
MT
433}
434
2df72e9b
MT
435void kvm_arch_flush_shadow_all(struct kvm *kvm)
436{
437}
f7784b8e 438
2df72e9b
MT
439void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
440 struct kvm_memory_slot *slot)
34d4cb8f 441{
dfe49dbd 442 kvmppc_core_flush_memslot(kvm, slot);
34d4cb8f
MT
443}
444
bbf45ba5
HB
445struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
446{
73e75b41
HB
447 struct kvm_vcpu *vcpu;
448 vcpu = kvmppc_core_vcpu_create(kvm, id);
03cdab53
ME
449 if (!IS_ERR(vcpu)) {
450 vcpu->arch.wqp = &vcpu->wq;
06056bfb 451 kvmppc_create_vcpu_debugfs(vcpu, id);
03cdab53 452 }
73e75b41 453 return vcpu;
bbf45ba5
HB
454}
455
42897d86
MT
456int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
457{
458 return 0;
459}
460
bbf45ba5
HB
461void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
462{
a595405d
AG
463 /* Make sure we're not using the vcpu anymore */
464 hrtimer_cancel(&vcpu->arch.dec_timer);
465 tasklet_kill(&vcpu->arch.tasklet);
466
73e75b41 467 kvmppc_remove_vcpu_debugfs(vcpu);
eb1e4f43
SW
468
469 switch (vcpu->arch.irq_type) {
470 case KVMPPC_IRQ_MPIC:
471 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
472 break;
473 }
474
db93f574 475 kvmppc_core_vcpu_free(vcpu);
bbf45ba5
HB
476}
477
478void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
479{
480 kvm_arch_vcpu_free(vcpu);
481}
482
483int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
484{
9dd921cf 485 return kvmppc_core_pending_dec(vcpu);
bbf45ba5
HB
486}
487
544c6761
AG
488/*
489 * low level hrtimer wake routine. Because this runs in hardirq context
490 * we schedule a tasklet to do the real work.
491 */
492enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
493{
494 struct kvm_vcpu *vcpu;
495
496 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
497 tasklet_schedule(&vcpu->arch.tasklet);
498
499 return HRTIMER_NORESTART;
500}
501
bbf45ba5
HB
502int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
503{
f61c94bb
BB
504 int ret;
505
544c6761
AG
506 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
507 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
508 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
de56a948 509 vcpu->arch.dec_expires = ~(u64)0;
bbf45ba5 510
09000adb
BB
511#ifdef CONFIG_KVM_EXIT_TIMING
512 mutex_init(&vcpu->arch.exit_timing_lock);
513#endif
f61c94bb
BB
514 ret = kvmppc_subarch_vcpu_init(vcpu);
515 return ret;
bbf45ba5
HB
516}
517
518void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
519{
ecc0981f 520 kvmppc_mmu_destroy(vcpu);
f61c94bb 521 kvmppc_subarch_vcpu_uninit(vcpu);
bbf45ba5
HB
522}
523
524void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
525{
eab17672
SW
526#ifdef CONFIG_BOOKE
527 /*
528 * vrsave (formerly usprg0) isn't used by Linux, but may
529 * be used by the guest.
530 *
531 * On non-booke this is associated with Altivec and
532 * is handled by code in book3s.c.
533 */
534 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
535#endif
9dd921cf 536 kvmppc_core_vcpu_load(vcpu, cpu);
bbf45ba5
HB
537}
538
539void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
540{
9dd921cf 541 kvmppc_core_vcpu_put(vcpu);
eab17672
SW
542#ifdef CONFIG_BOOKE
543 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
544#endif
bbf45ba5
HB
545}
546
bbf45ba5
HB
547static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
548 struct kvm_run *run)
549{
8e5b26b5 550 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
bbf45ba5
HB
551}
552
553static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
554 struct kvm_run *run)
555{
69b61833 556 u64 uninitialized_var(gpr);
bbf45ba5 557
8e5b26b5 558 if (run->mmio.len > sizeof(gpr)) {
bbf45ba5
HB
559 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
560 return;
561 }
562
563 if (vcpu->arch.mmio_is_bigendian) {
564 switch (run->mmio.len) {
b104d066 565 case 8: gpr = *(u64 *)run->mmio.data; break;
8e5b26b5
AG
566 case 4: gpr = *(u32 *)run->mmio.data; break;
567 case 2: gpr = *(u16 *)run->mmio.data; break;
568 case 1: gpr = *(u8 *)run->mmio.data; break;
bbf45ba5
HB
569 }
570 } else {
571 /* Convert BE data from userland back to LE. */
572 switch (run->mmio.len) {
8e5b26b5
AG
573 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
574 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
575 case 1: gpr = *(u8 *)run->mmio.data; break;
bbf45ba5
HB
576 }
577 }
8e5b26b5 578
3587d534
AG
579 if (vcpu->arch.mmio_sign_extend) {
580 switch (run->mmio.len) {
581#ifdef CONFIG_PPC64
582 case 4:
583 gpr = (s64)(s32)gpr;
584 break;
585#endif
586 case 2:
587 gpr = (s64)(s16)gpr;
588 break;
589 case 1:
590 gpr = (s64)(s8)gpr;
591 break;
592 }
593 }
594
8e5b26b5 595 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
b104d066 596
b3c5d3c2
AG
597 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
598 case KVM_MMIO_REG_GPR:
b104d066
AG
599 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
600 break;
b3c5d3c2
AG
601 case KVM_MMIO_REG_FPR:
602 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
b104d066 603 break;
287d5611 604#ifdef CONFIG_PPC_BOOK3S
b3c5d3c2
AG
605 case KVM_MMIO_REG_QPR:
606 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
b104d066 607 break;
b3c5d3c2
AG
608 case KVM_MMIO_REG_FQPR:
609 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
610 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
b104d066 611 break;
287d5611 612#endif
b104d066
AG
613 default:
614 BUG();
615 }
bbf45ba5
HB
616}
617
618int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
619 unsigned int rt, unsigned int bytes, int is_bigendian)
620{
621 if (bytes > sizeof(run->mmio.data)) {
622 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
623 run->mmio.len);
624 }
625
626 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
627 run->mmio.len = bytes;
628 run->mmio.is_write = 0;
629
630 vcpu->arch.io_gpr = rt;
631 vcpu->arch.mmio_is_bigendian = is_bigendian;
632 vcpu->mmio_needed = 1;
633 vcpu->mmio_is_write = 0;
3587d534 634 vcpu->arch.mmio_sign_extend = 0;
bbf45ba5 635
0e673fb6
AG
636 if (!kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
637 bytes, &run->mmio.data)) {
638 kvmppc_complete_mmio_load(vcpu, run);
639 vcpu->mmio_needed = 0;
640 return EMULATE_DONE;
641 }
642
bbf45ba5
HB
643 return EMULATE_DO_MMIO;
644}
645
3587d534
AG
646/* Same as above, but sign extends */
647int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
648 unsigned int rt, unsigned int bytes, int is_bigendian)
649{
650 int r;
651
3587d534 652 vcpu->arch.mmio_sign_extend = 1;
0e673fb6 653 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
3587d534
AG
654
655 return r;
656}
657
bbf45ba5 658int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
b104d066 659 u64 val, unsigned int bytes, int is_bigendian)
bbf45ba5
HB
660{
661 void *data = run->mmio.data;
662
663 if (bytes > sizeof(run->mmio.data)) {
664 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
665 run->mmio.len);
666 }
667
668 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
669 run->mmio.len = bytes;
670 run->mmio.is_write = 1;
671 vcpu->mmio_needed = 1;
672 vcpu->mmio_is_write = 1;
673
674 /* Store the value at the lowest bytes in 'data'. */
675 if (is_bigendian) {
676 switch (bytes) {
b104d066 677 case 8: *(u64 *)data = val; break;
bbf45ba5
HB
678 case 4: *(u32 *)data = val; break;
679 case 2: *(u16 *)data = val; break;
680 case 1: *(u8 *)data = val; break;
681 }
682 } else {
683 /* Store LE value into 'data'. */
684 switch (bytes) {
685 case 4: st_le32(data, val); break;
686 case 2: st_le16(data, val); break;
687 case 1: *(u8 *)data = val; break;
688 }
689 }
690
0e673fb6
AG
691 if (!kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
692 bytes, &run->mmio.data)) {
0e673fb6
AG
693 vcpu->mmio_needed = 0;
694 return EMULATE_DONE;
695 }
696
bbf45ba5
HB
697 return EMULATE_DO_MMIO;
698}
699
700int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
701{
702 int r;
703 sigset_t sigsaved;
704
705 if (vcpu->sigset_active)
706 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
707
708 if (vcpu->mmio_needed) {
709 if (!vcpu->mmio_is_write)
710 kvmppc_complete_mmio_load(vcpu, run);
711 vcpu->mmio_needed = 0;
712 } else if (vcpu->arch.dcr_needed) {
713 if (!vcpu->arch.dcr_is_write)
714 kvmppc_complete_dcr_load(vcpu, run);
715 vcpu->arch.dcr_needed = 0;
ad0a048b
AG
716 } else if (vcpu->arch.osi_needed) {
717 u64 *gprs = run->osi.gprs;
718 int i;
719
720 for (i = 0; i < 32; i++)
721 kvmppc_set_gpr(vcpu, i, gprs[i]);
722 vcpu->arch.osi_needed = 0;
de56a948
PM
723 } else if (vcpu->arch.hcall_needed) {
724 int i;
725
726 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
727 for (i = 0; i < 9; ++i)
728 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
729 vcpu->arch.hcall_needed = 0;
1c810636
AG
730#ifdef CONFIG_BOOKE
731 } else if (vcpu->arch.epr_needed) {
732 kvmppc_set_epr(vcpu, run->epr.epr);
733 vcpu->arch.epr_needed = 0;
734#endif
bbf45ba5
HB
735 }
736
df6909e5 737 r = kvmppc_vcpu_run(run, vcpu);
bbf45ba5
HB
738
739 if (vcpu->sigset_active)
740 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
741
742 return r;
743}
744
745int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
746{
19ccb76a 747 if (irq->irq == KVM_INTERRUPT_UNSET) {
4fe27d2a 748 kvmppc_core_dequeue_external(vcpu);
19ccb76a
PM
749 return 0;
750 }
751
752 kvmppc_core_queue_external(vcpu, irq);
b6d33834 753
dfd4d47e 754 kvm_vcpu_kick(vcpu);
45c5eb67 755
bbf45ba5
HB
756 return 0;
757}
758
71fbfd5f
AG
759static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
760 struct kvm_enable_cap *cap)
761{
762 int r;
763
764 if (cap->flags)
765 return -EINVAL;
766
767 switch (cap->cap) {
ad0a048b
AG
768 case KVM_CAP_PPC_OSI:
769 r = 0;
770 vcpu->arch.osi_enabled = true;
771 break;
930b412a
AG
772 case KVM_CAP_PPC_PAPR:
773 r = 0;
774 vcpu->arch.papr_enabled = true;
775 break;
1c810636
AG
776 case KVM_CAP_PPC_EPR:
777 r = 0;
5df554ad
SW
778 if (cap->args[0])
779 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
780 else
781 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
1c810636 782 break;
f61c94bb
BB
783#ifdef CONFIG_BOOKE
784 case KVM_CAP_PPC_BOOKE_WATCHDOG:
785 r = 0;
786 vcpu->arch.watchdog_enabled = true;
787 break;
788#endif
bf7ca4bd 789#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
dc83b8bc
SW
790 case KVM_CAP_SW_TLB: {
791 struct kvm_config_tlb cfg;
792 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
793
794 r = -EFAULT;
795 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
796 break;
797
798 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
799 break;
eb1e4f43
SW
800 }
801#endif
802#ifdef CONFIG_KVM_MPIC
803 case KVM_CAP_IRQ_MPIC: {
804 struct file *filp;
805 struct kvm_device *dev;
806
807 r = -EBADF;
808 filp = fget(cap->args[0]);
809 if (!filp)
810 break;
811
812 r = -EPERM;
813 dev = kvm_device_from_filp(filp);
814 if (dev)
815 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
816
817 fput(filp);
818 break;
dc83b8bc
SW
819 }
820#endif
71fbfd5f
AG
821 default:
822 r = -EINVAL;
823 break;
824 }
825
af8f38b3
AG
826 if (!r)
827 r = kvmppc_sanity_check(vcpu);
828
71fbfd5f
AG
829 return r;
830}
831
bbf45ba5
HB
832int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
833 struct kvm_mp_state *mp_state)
834{
835 return -EINVAL;
836}
837
838int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
839 struct kvm_mp_state *mp_state)
840{
841 return -EINVAL;
842}
843
844long kvm_arch_vcpu_ioctl(struct file *filp,
845 unsigned int ioctl, unsigned long arg)
846{
847 struct kvm_vcpu *vcpu = filp->private_data;
848 void __user *argp = (void __user *)arg;
849 long r;
850
93736624
AK
851 switch (ioctl) {
852 case KVM_INTERRUPT: {
bbf45ba5
HB
853 struct kvm_interrupt irq;
854 r = -EFAULT;
855 if (copy_from_user(&irq, argp, sizeof(irq)))
93736624 856 goto out;
bbf45ba5 857 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
93736624 858 goto out;
bbf45ba5 859 }
19483d14 860
71fbfd5f
AG
861 case KVM_ENABLE_CAP:
862 {
863 struct kvm_enable_cap cap;
864 r = -EFAULT;
865 if (copy_from_user(&cap, argp, sizeof(cap)))
866 goto out;
867 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
868 break;
869 }
dc83b8bc 870
e24ed81f
AG
871 case KVM_SET_ONE_REG:
872 case KVM_GET_ONE_REG:
873 {
874 struct kvm_one_reg reg;
875 r = -EFAULT;
876 if (copy_from_user(&reg, argp, sizeof(reg)))
877 goto out;
878 if (ioctl == KVM_SET_ONE_REG)
879 r = kvm_vcpu_ioctl_set_one_reg(vcpu, &reg);
880 else
881 r = kvm_vcpu_ioctl_get_one_reg(vcpu, &reg);
882 break;
883 }
884
bf7ca4bd 885#if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
dc83b8bc
SW
886 case KVM_DIRTY_TLB: {
887 struct kvm_dirty_tlb dirty;
888 r = -EFAULT;
889 if (copy_from_user(&dirty, argp, sizeof(dirty)))
890 goto out;
891 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
892 break;
893 }
894#endif
bbf45ba5
HB
895 default:
896 r = -EINVAL;
897 }
898
899out:
900 return r;
901}
902
5b1c1493
CO
903int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
904{
905 return VM_FAULT_SIGBUS;
906}
907
15711e9c
AG
908static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
909{
784bafac
SY
910 u32 inst_nop = 0x60000000;
911#ifdef CONFIG_KVM_BOOKE_HV
912 u32 inst_sc1 = 0x44000022;
913 pvinfo->hcall[0] = inst_sc1;
914 pvinfo->hcall[1] = inst_nop;
915 pvinfo->hcall[2] = inst_nop;
916 pvinfo->hcall[3] = inst_nop;
917#else
15711e9c
AG
918 u32 inst_lis = 0x3c000000;
919 u32 inst_ori = 0x60000000;
15711e9c
AG
920 u32 inst_sc = 0x44000002;
921 u32 inst_imm_mask = 0xffff;
922
923 /*
924 * The hypercall to get into KVM from within guest context is as
925 * follows:
926 *
927 * lis r0, r0, KVM_SC_MAGIC_R0@h
928 * ori r0, KVM_SC_MAGIC_R0@l
929 * sc
930 * nop
931 */
932 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
933 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
934 pvinfo->hcall[2] = inst_sc;
935 pvinfo->hcall[3] = inst_nop;
784bafac 936#endif
15711e9c 937
9202e076
LYB
938 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
939
15711e9c
AG
940 return 0;
941}
942
5efdb4be
AG
943int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
944 bool line_status)
945{
946 if (!irqchip_in_kernel(kvm))
947 return -ENXIO;
948
949 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
950 irq_event->irq, irq_event->level,
951 line_status);
952 return 0;
953}
954
bbf45ba5
HB
955long kvm_arch_vm_ioctl(struct file *filp,
956 unsigned int ioctl, unsigned long arg)
957{
5df554ad 958 struct kvm *kvm __maybe_unused = filp->private_data;
15711e9c 959 void __user *argp = (void __user *)arg;
bbf45ba5
HB
960 long r;
961
962 switch (ioctl) {
15711e9c
AG
963 case KVM_PPC_GET_PVINFO: {
964 struct kvm_ppc_pvinfo pvinfo;
d8cdddcd 965 memset(&pvinfo, 0, sizeof(pvinfo));
15711e9c
AG
966 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
967 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
968 r = -EFAULT;
969 goto out;
970 }
971
972 break;
973 }
f31e65e1 974#ifdef CONFIG_PPC_BOOK3S_64
54738c09
DG
975 case KVM_CREATE_SPAPR_TCE: {
976 struct kvm_create_spapr_tce create_tce;
54738c09
DG
977
978 r = -EFAULT;
979 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
980 goto out;
981 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
982 goto out;
983 }
f31e65e1 984#endif /* CONFIG_PPC_BOOK3S_64 */
aa04b4cc 985
f31e65e1 986#ifdef CONFIG_KVM_BOOK3S_64_HV
aa04b4cc 987 case KVM_ALLOCATE_RMA: {
aa04b4cc
PM
988 struct kvm_allocate_rma rma;
989
990 r = kvm_vm_ioctl_allocate_rma(kvm, &rma);
991 if (r >= 0 && copy_to_user(argp, &rma, sizeof(rma)))
992 r = -EFAULT;
993 break;
994 }
32fad281
PM
995
996 case KVM_PPC_ALLOCATE_HTAB: {
32fad281
PM
997 u32 htab_order;
998
999 r = -EFAULT;
1000 if (get_user(htab_order, (u32 __user *)argp))
1001 break;
1002 r = kvmppc_alloc_reset_hpt(kvm, &htab_order);
1003 if (r)
1004 break;
1005 r = -EFAULT;
1006 if (put_user(htab_order, (u32 __user *)argp))
1007 break;
1008 r = 0;
1009 break;
1010 }
a2932923
PM
1011
1012 case KVM_PPC_GET_HTAB_FD: {
a2932923
PM
1013 struct kvm_get_htab_fd ghf;
1014
1015 r = -EFAULT;
1016 if (copy_from_user(&ghf, argp, sizeof(ghf)))
1017 break;
1018 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
1019 break;
1020 }
54738c09
DG
1021#endif /* CONFIG_KVM_BOOK3S_64_HV */
1022
5b74716e
BH
1023#ifdef CONFIG_PPC_BOOK3S_64
1024 case KVM_PPC_GET_SMMU_INFO: {
5b74716e
BH
1025 struct kvm_ppc_smmu_info info;
1026
1027 memset(&info, 0, sizeof(info));
1028 r = kvm_vm_ioctl_get_smmu_info(kvm, &info);
1029 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1030 r = -EFAULT;
1031 break;
1032 }
1033#endif /* CONFIG_PPC_BOOK3S_64 */
bbf45ba5 1034 default:
367e1319 1035 r = -ENOTTY;
bbf45ba5
HB
1036 }
1037
15711e9c 1038out:
bbf45ba5
HB
1039 return r;
1040}
1041
043cc4d7
SW
1042static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1043static unsigned long nr_lpids;
1044
1045long kvmppc_alloc_lpid(void)
1046{
1047 long lpid;
1048
1049 do {
1050 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1051 if (lpid >= nr_lpids) {
1052 pr_err("%s: No LPIDs free\n", __func__);
1053 return -ENOMEM;
1054 }
1055 } while (test_and_set_bit(lpid, lpid_inuse));
1056
1057 return lpid;
1058}
1059
1060void kvmppc_claim_lpid(long lpid)
1061{
1062 set_bit(lpid, lpid_inuse);
1063}
1064
1065void kvmppc_free_lpid(long lpid)
1066{
1067 clear_bit(lpid, lpid_inuse);
1068}
1069
1070void kvmppc_init_lpid(unsigned long nr_lpids_param)
1071{
1072 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1073 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1074}
1075
bbf45ba5
HB
1076int kvm_arch_init(void *opaque)
1077{
1078 return 0;
1079}
1080
1081void kvm_arch_exit(void)
1082{
1083}
This page took 0.354131 seconds and 5 git commands to generate.