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.
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.
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.
15 * Copyright IBM Corp. 2007
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
21 #include <linux/errno.h>
22 #include <linux/err.h>
23 #include <linux/kvm_host.h>
24 #include <linux/vmalloc.h>
25 #include <linux/hrtimer.h>
27 #include <linux/slab.h>
28 #include <linux/file.h>
29 #include <asm/cputable.h>
30 #include <asm/uaccess.h>
31 #include <asm/kvm_ppc.h>
32 #include <asm/tlbflush.h>
33 #include <asm/cputhreads.h>
34 #include <asm/irqflags.h>
37 #include "../mm/mmu_decl.h"
39 #define CREATE_TRACE_POINTS
42 struct kvmppc_ops *kvmppc_ops;
44 int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
46 return !!(v->arch.pending_exceptions) ||
50 int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
56 * Common checks before entering the guest world. Call with interrupts
61 * == 1 if we're ready to go into guest state
62 * <= 0 if we need to go back to the host with return value
64 int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
68 WARN_ON_ONCE(!irqs_disabled());
77 if (signal_pending(current)) {
78 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
79 vcpu->run->exit_reason = KVM_EXIT_INTR;
84 vcpu->mode = IN_GUEST_MODE;
87 * Reading vcpu->requests must happen after setting vcpu->mode,
88 * so we don't miss a request because the requester sees
89 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
90 * before next entering the guest (and thus doesn't IPI).
95 /* Make sure we process requests preemptable */
97 trace_kvm_check_requests(vcpu);
98 r = kvmppc_core_check_requests(vcpu);
105 if (kvmppc_core_prepare_to_enter(vcpu)) {
106 /* interrupts got enabled in between, so we
107 are back at square 1 */
114 if (lazy_irq_pending()) {
115 /* Got an interrupt in between, try again */
129 EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
131 int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
133 int nr = kvmppc_get_gpr(vcpu, 11);
135 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
136 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
137 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
138 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
139 unsigned long r2 = 0;
141 if (!(vcpu->arch.shared->msr & MSR_SF)) {
143 param1 &= 0xffffffff;
144 param2 &= 0xffffffff;
145 param3 &= 0xffffffff;
146 param4 &= 0xffffffff;
150 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
152 vcpu->arch.magic_page_pa = param1;
153 vcpu->arch.magic_page_ea = param2;
155 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
160 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
162 #if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
163 /* XXX Missing magic page on 44x */
164 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
167 /* Second return value is in r4 */
169 case EV_HCALL_TOKEN(EV_IDLE):
171 kvm_vcpu_block(vcpu);
172 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
175 r = EV_UNIMPLEMENTED;
179 kvmppc_set_gpr(vcpu, 4, r2);
183 EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
185 int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
189 /* We have to know what CPU to virtualize */
193 /* PAPR only works with book3s_64 */
194 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
197 /* HV KVM can only do PAPR mode for now */
198 if (!vcpu->arch.papr_enabled && kvmppc_ops->is_hv_enabled)
201 #ifdef CONFIG_KVM_BOOKE_HV
202 if (!cpu_has_feature(CPU_FTR_EMB_HV))
210 return r ? 0 : -EINVAL;
212 EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
214 int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu)
216 enum emulation_result er;
219 er = kvmppc_emulate_instruction(run, vcpu);
222 /* Future optimization: only reload non-volatiles if they were
223 * actually modified. */
226 case EMULATE_DO_MMIO:
227 run->exit_reason = KVM_EXIT_MMIO;
228 /* We must reload nonvolatiles because "update" load/store
229 * instructions modify register state. */
230 /* Future optimization: only reload non-volatiles if they were
231 * actually modified. */
235 /* XXX Deliver Program interrupt to guest. */
236 printk(KERN_EMERG "%s: emulation failed (%08x)\n", __func__,
237 kvmppc_get_last_inst(vcpu));
247 EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
249 int kvm_arch_hardware_enable(void *garbage)
254 void kvm_arch_hardware_disable(void *garbage)
258 int kvm_arch_hardware_setup(void)
263 void kvm_arch_hardware_unsetup(void)
267 void kvm_arch_check_processor_compat(void *rtn)
269 *(int *)rtn = kvmppc_core_check_processor_compat();
272 int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
277 return kvmppc_core_init_vm(kvm);
280 void kvm_arch_destroy_vm(struct kvm *kvm)
283 struct kvm_vcpu *vcpu;
285 kvm_for_each_vcpu(i, vcpu, kvm)
286 kvm_arch_vcpu_free(vcpu);
288 mutex_lock(&kvm->lock);
289 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
290 kvm->vcpus[i] = NULL;
292 atomic_set(&kvm->online_vcpus, 0);
294 kvmppc_core_destroy_vm(kvm);
296 mutex_unlock(&kvm->lock);
299 void kvm_arch_sync_events(struct kvm *kvm)
303 int kvm_dev_ioctl_check_extension(long ext)
309 case KVM_CAP_PPC_BOOKE_SREGS:
310 case KVM_CAP_PPC_BOOKE_WATCHDOG:
311 case KVM_CAP_PPC_EPR:
313 case KVM_CAP_PPC_SEGSTATE:
314 case KVM_CAP_PPC_HIOR:
315 case KVM_CAP_PPC_PAPR:
317 case KVM_CAP_PPC_UNSET_IRQ:
318 case KVM_CAP_PPC_IRQ_LEVEL:
319 case KVM_CAP_ENABLE_CAP:
320 case KVM_CAP_ONE_REG:
321 case KVM_CAP_IOEVENTFD:
322 case KVM_CAP_DEVICE_CTRL:
325 case KVM_CAP_PPC_PAIRED_SINGLES:
326 case KVM_CAP_PPC_OSI:
327 case KVM_CAP_PPC_GET_PVINFO:
328 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
331 /* We support this only for PR */
332 r = !kvmppc_ops->is_hv_enabled;
334 #ifdef CONFIG_KVM_MMIO
335 case KVM_CAP_COALESCED_MMIO:
336 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
339 #ifdef CONFIG_KVM_MPIC
340 case KVM_CAP_IRQ_MPIC:
345 #ifdef CONFIG_PPC_BOOK3S_64
346 case KVM_CAP_SPAPR_TCE:
347 case KVM_CAP_PPC_ALLOC_HTAB:
348 case KVM_CAP_PPC_RTAS:
349 #ifdef CONFIG_KVM_XICS
350 case KVM_CAP_IRQ_XICS:
354 #endif /* CONFIG_PPC_BOOK3S_64 */
355 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
356 case KVM_CAP_PPC_SMT:
357 if (kvmppc_ops->is_hv_enabled)
358 r = threads_per_core;
362 case KVM_CAP_PPC_RMA:
363 r = kvmppc_ops->is_hv_enabled;
364 /* PPC970 requires an RMA */
365 if (r && cpu_has_feature(CPU_FTR_ARCH_201))
369 case KVM_CAP_SYNC_MMU:
370 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
371 if (kvmppc_ops->is_hv_enabled)
372 r = cpu_has_feature(CPU_FTR_ARCH_206) ? 1 : 0;
375 #elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
381 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
382 case KVM_CAP_PPC_HTAB_FD:
383 r = kvmppc_ops->is_hv_enabled;
386 case KVM_CAP_NR_VCPUS:
388 * Recommending a number of CPUs is somewhat arbitrary; we
389 * return the number of present CPUs for -HV (since a host
390 * will have secondary threads "offline"), and for other KVM
391 * implementations just count online CPUs.
393 if (kvmppc_ops->is_hv_enabled)
394 r = num_present_cpus();
396 r = num_online_cpus();
398 case KVM_CAP_MAX_VCPUS:
401 #ifdef CONFIG_PPC_BOOK3S_64
402 case KVM_CAP_PPC_GET_SMMU_INFO:
414 long kvm_arch_dev_ioctl(struct file *filp,
415 unsigned int ioctl, unsigned long arg)
420 void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
421 struct kvm_memory_slot *dont)
423 kvmppc_core_free_memslot(kvm, free, dont);
426 int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
427 unsigned long npages)
429 return kvmppc_core_create_memslot(kvm, slot, npages);
432 void kvm_arch_memslots_updated(struct kvm *kvm)
436 int kvm_arch_prepare_memory_region(struct kvm *kvm,
437 struct kvm_memory_slot *memslot,
438 struct kvm_userspace_memory_region *mem,
439 enum kvm_mr_change change)
441 return kvmppc_core_prepare_memory_region(kvm, memslot, mem);
444 void kvm_arch_commit_memory_region(struct kvm *kvm,
445 struct kvm_userspace_memory_region *mem,
446 const struct kvm_memory_slot *old,
447 enum kvm_mr_change change)
449 kvmppc_core_commit_memory_region(kvm, mem, old);
452 void kvm_arch_flush_shadow_all(struct kvm *kvm)
456 void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
457 struct kvm_memory_slot *slot)
459 kvmppc_core_flush_memslot(kvm, slot);
462 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
464 struct kvm_vcpu *vcpu;
465 vcpu = kvmppc_core_vcpu_create(kvm, id);
467 vcpu->arch.wqp = &vcpu->wq;
468 kvmppc_create_vcpu_debugfs(vcpu, id);
473 int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
478 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
480 /* Make sure we're not using the vcpu anymore */
481 hrtimer_cancel(&vcpu->arch.dec_timer);
482 tasklet_kill(&vcpu->arch.tasklet);
484 kvmppc_remove_vcpu_debugfs(vcpu);
486 switch (vcpu->arch.irq_type) {
487 case KVMPPC_IRQ_MPIC:
488 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
490 case KVMPPC_IRQ_XICS:
491 kvmppc_xics_free_icp(vcpu);
495 kvmppc_core_vcpu_free(vcpu);
498 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
500 kvm_arch_vcpu_free(vcpu);
503 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
505 return kvmppc_core_pending_dec(vcpu);
509 * low level hrtimer wake routine. Because this runs in hardirq context
510 * we schedule a tasklet to do the real work.
512 enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
514 struct kvm_vcpu *vcpu;
516 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
517 tasklet_schedule(&vcpu->arch.tasklet);
519 return HRTIMER_NORESTART;
522 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
526 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
527 tasklet_init(&vcpu->arch.tasklet, kvmppc_decrementer_func, (ulong)vcpu);
528 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
529 vcpu->arch.dec_expires = ~(u64)0;
531 #ifdef CONFIG_KVM_EXIT_TIMING
532 mutex_init(&vcpu->arch.exit_timing_lock);
534 ret = kvmppc_subarch_vcpu_init(vcpu);
538 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
540 kvmppc_mmu_destroy(vcpu);
541 kvmppc_subarch_vcpu_uninit(vcpu);
544 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
548 * vrsave (formerly usprg0) isn't used by Linux, but may
549 * be used by the guest.
551 * On non-booke this is associated with Altivec and
552 * is handled by code in book3s.c.
554 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
556 kvmppc_core_vcpu_load(vcpu, cpu);
559 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
561 kvmppc_core_vcpu_put(vcpu);
563 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
567 static void kvmppc_complete_dcr_load(struct kvm_vcpu *vcpu,
570 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, run->dcr.data);
573 static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu,
576 u64 uninitialized_var(gpr);
578 if (run->mmio.len > sizeof(gpr)) {
579 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
583 if (vcpu->arch.mmio_is_bigendian) {
584 switch (run->mmio.len) {
585 case 8: gpr = *(u64 *)run->mmio.data; break;
586 case 4: gpr = *(u32 *)run->mmio.data; break;
587 case 2: gpr = *(u16 *)run->mmio.data; break;
588 case 1: gpr = *(u8 *)run->mmio.data; break;
591 /* Convert BE data from userland back to LE. */
592 switch (run->mmio.len) {
593 case 4: gpr = ld_le32((u32 *)run->mmio.data); break;
594 case 2: gpr = ld_le16((u16 *)run->mmio.data); break;
595 case 1: gpr = *(u8 *)run->mmio.data; break;
599 if (vcpu->arch.mmio_sign_extend) {
600 switch (run->mmio.len) {
615 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
617 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
618 case KVM_MMIO_REG_GPR:
619 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
621 case KVM_MMIO_REG_FPR:
622 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
624 #ifdef CONFIG_PPC_BOOK3S
625 case KVM_MMIO_REG_QPR:
626 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
628 case KVM_MMIO_REG_FQPR:
629 vcpu->arch.fpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
630 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
638 int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu,
639 unsigned int rt, unsigned int bytes, int is_bigendian)
643 if (bytes > sizeof(run->mmio.data)) {
644 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
648 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
649 run->mmio.len = bytes;
650 run->mmio.is_write = 0;
652 vcpu->arch.io_gpr = rt;
653 vcpu->arch.mmio_is_bigendian = is_bigendian;
654 vcpu->mmio_needed = 1;
655 vcpu->mmio_is_write = 0;
656 vcpu->arch.mmio_sign_extend = 0;
658 idx = srcu_read_lock(&vcpu->kvm->srcu);
660 ret = kvm_io_bus_read(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
661 bytes, &run->mmio.data);
663 srcu_read_unlock(&vcpu->kvm->srcu, idx);
666 kvmppc_complete_mmio_load(vcpu, run);
667 vcpu->mmio_needed = 0;
671 return EMULATE_DO_MMIO;
673 EXPORT_SYMBOL_GPL(kvmppc_handle_load);
675 /* Same as above, but sign extends */
676 int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu,
677 unsigned int rt, unsigned int bytes, int is_bigendian)
681 vcpu->arch.mmio_sign_extend = 1;
682 r = kvmppc_handle_load(run, vcpu, rt, bytes, is_bigendian);
687 int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu,
688 u64 val, unsigned int bytes, int is_bigendian)
690 void *data = run->mmio.data;
693 if (bytes > sizeof(run->mmio.data)) {
694 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
698 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
699 run->mmio.len = bytes;
700 run->mmio.is_write = 1;
701 vcpu->mmio_needed = 1;
702 vcpu->mmio_is_write = 1;
704 /* Store the value at the lowest bytes in 'data'. */
707 case 8: *(u64 *)data = val; break;
708 case 4: *(u32 *)data = val; break;
709 case 2: *(u16 *)data = val; break;
710 case 1: *(u8 *)data = val; break;
713 /* Store LE value into 'data'. */
715 case 4: st_le32(data, val); break;
716 case 2: st_le16(data, val); break;
717 case 1: *(u8 *)data = val; break;
721 idx = srcu_read_lock(&vcpu->kvm->srcu);
723 ret = kvm_io_bus_write(vcpu->kvm, KVM_MMIO_BUS, run->mmio.phys_addr,
724 bytes, &run->mmio.data);
726 srcu_read_unlock(&vcpu->kvm->srcu, idx);
729 vcpu->mmio_needed = 0;
733 return EMULATE_DO_MMIO;
735 EXPORT_SYMBOL_GPL(kvmppc_handle_store);
737 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
742 if (vcpu->sigset_active)
743 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
745 if (vcpu->mmio_needed) {
746 if (!vcpu->mmio_is_write)
747 kvmppc_complete_mmio_load(vcpu, run);
748 vcpu->mmio_needed = 0;
749 } else if (vcpu->arch.dcr_needed) {
750 if (!vcpu->arch.dcr_is_write)
751 kvmppc_complete_dcr_load(vcpu, run);
752 vcpu->arch.dcr_needed = 0;
753 } else if (vcpu->arch.osi_needed) {
754 u64 *gprs = run->osi.gprs;
757 for (i = 0; i < 32; i++)
758 kvmppc_set_gpr(vcpu, i, gprs[i]);
759 vcpu->arch.osi_needed = 0;
760 } else if (vcpu->arch.hcall_needed) {
763 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
764 for (i = 0; i < 9; ++i)
765 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
766 vcpu->arch.hcall_needed = 0;
768 } else if (vcpu->arch.epr_needed) {
769 kvmppc_set_epr(vcpu, run->epr.epr);
770 vcpu->arch.epr_needed = 0;
774 r = kvmppc_vcpu_run(run, vcpu);
776 if (vcpu->sigset_active)
777 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
782 int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
784 if (irq->irq == KVM_INTERRUPT_UNSET) {
785 kvmppc_core_dequeue_external(vcpu);
789 kvmppc_core_queue_external(vcpu, irq);
796 static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
797 struct kvm_enable_cap *cap)
805 case KVM_CAP_PPC_OSI:
807 vcpu->arch.osi_enabled = true;
809 case KVM_CAP_PPC_PAPR:
811 vcpu->arch.papr_enabled = true;
813 case KVM_CAP_PPC_EPR:
816 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
818 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
821 case KVM_CAP_PPC_BOOKE_WATCHDOG:
823 vcpu->arch.watchdog_enabled = true;
826 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
827 case KVM_CAP_SW_TLB: {
828 struct kvm_config_tlb cfg;
829 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
832 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
835 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
839 #ifdef CONFIG_KVM_MPIC
840 case KVM_CAP_IRQ_MPIC: {
842 struct kvm_device *dev;
845 f = fdget(cap->args[0]);
850 dev = kvm_device_from_filp(f.file);
852 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
858 #ifdef CONFIG_KVM_XICS
859 case KVM_CAP_IRQ_XICS: {
861 struct kvm_device *dev;
864 f = fdget(cap->args[0]);
869 dev = kvm_device_from_filp(f.file);
871 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
876 #endif /* CONFIG_KVM_XICS */
883 r = kvmppc_sanity_check(vcpu);
888 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
889 struct kvm_mp_state *mp_state)
894 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
895 struct kvm_mp_state *mp_state)
900 long kvm_arch_vcpu_ioctl(struct file *filp,
901 unsigned int ioctl, unsigned long arg)
903 struct kvm_vcpu *vcpu = filp->private_data;
904 void __user *argp = (void __user *)arg;
908 case KVM_INTERRUPT: {
909 struct kvm_interrupt irq;
911 if (copy_from_user(&irq, argp, sizeof(irq)))
913 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
919 struct kvm_enable_cap cap;
921 if (copy_from_user(&cap, argp, sizeof(cap)))
923 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
927 case KVM_SET_ONE_REG:
928 case KVM_GET_ONE_REG:
930 struct kvm_one_reg reg;
932 if (copy_from_user(®, argp, sizeof(reg)))
934 if (ioctl == KVM_SET_ONE_REG)
935 r = kvm_vcpu_ioctl_set_one_reg(vcpu, ®);
937 r = kvm_vcpu_ioctl_get_one_reg(vcpu, ®);
941 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
942 case KVM_DIRTY_TLB: {
943 struct kvm_dirty_tlb dirty;
945 if (copy_from_user(&dirty, argp, sizeof(dirty)))
947 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
959 int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
961 return VM_FAULT_SIGBUS;
964 static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
966 u32 inst_nop = 0x60000000;
967 #ifdef CONFIG_KVM_BOOKE_HV
968 u32 inst_sc1 = 0x44000022;
969 pvinfo->hcall[0] = inst_sc1;
970 pvinfo->hcall[1] = inst_nop;
971 pvinfo->hcall[2] = inst_nop;
972 pvinfo->hcall[3] = inst_nop;
974 u32 inst_lis = 0x3c000000;
975 u32 inst_ori = 0x60000000;
976 u32 inst_sc = 0x44000002;
977 u32 inst_imm_mask = 0xffff;
980 * The hypercall to get into KVM from within guest context is as
983 * lis r0, r0, KVM_SC_MAGIC_R0@h
984 * ori r0, KVM_SC_MAGIC_R0@l
988 pvinfo->hcall[0] = inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask);
989 pvinfo->hcall[1] = inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask);
990 pvinfo->hcall[2] = inst_sc;
991 pvinfo->hcall[3] = inst_nop;
994 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
999 int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
1002 if (!irqchip_in_kernel(kvm))
1005 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1006 irq_event->irq, irq_event->level,
1011 long kvm_arch_vm_ioctl(struct file *filp,
1012 unsigned int ioctl, unsigned long arg)
1014 struct kvm *kvm __maybe_unused = filp->private_data;
1015 void __user *argp = (void __user *)arg;
1019 case KVM_PPC_GET_PVINFO: {
1020 struct kvm_ppc_pvinfo pvinfo;
1021 memset(&pvinfo, 0, sizeof(pvinfo));
1022 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
1023 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
1030 #ifdef CONFIG_PPC_BOOK3S_64
1031 case KVM_CREATE_SPAPR_TCE: {
1032 struct kvm_create_spapr_tce create_tce;
1035 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
1037 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce);
1040 case KVM_PPC_GET_SMMU_INFO: {
1041 struct kvm_ppc_smmu_info info;
1043 memset(&info, 0, sizeof(info));
1044 r = kvmppc_ops->get_smmu_info(kvm, &info);
1045 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
1049 case KVM_PPC_RTAS_DEFINE_TOKEN: {
1050 struct kvm *kvm = filp->private_data;
1052 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
1056 r = kvmppc_ops->arch_vm_ioctl(filp, ioctl, arg);
1058 #else /* CONFIG_PPC_BOOK3S_64 */
1067 static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
1068 static unsigned long nr_lpids;
1070 long kvmppc_alloc_lpid(void)
1075 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
1076 if (lpid >= nr_lpids) {
1077 pr_err("%s: No LPIDs free\n", __func__);
1080 } while (test_and_set_bit(lpid, lpid_inuse));
1084 EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
1086 void kvmppc_claim_lpid(long lpid)
1088 set_bit(lpid, lpid_inuse);
1090 EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
1092 void kvmppc_free_lpid(long lpid)
1094 clear_bit(lpid, lpid_inuse);
1096 EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
1098 void kvmppc_init_lpid(unsigned long nr_lpids_param)
1100 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
1101 memset(lpid_inuse, 0, sizeof(lpid_inuse));
1103 EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
1105 int kvm_arch_init(void *opaque)
1108 printk(KERN_ERR "kvm: already loaded the other module\n");
1111 kvmppc_ops = (struct kvmppc_ops *)opaque;
1115 void kvm_arch_exit(void)