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