1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright IBM Corp. 2007
10 #include <linux/errno.h>
11 #include <linux/err.h>
12 #include <linux/kvm_host.h>
13 #include <linux/vmalloc.h>
14 #include <linux/hrtimer.h>
15 #include <linux/sched/signal.h>
17 #include <linux/slab.h>
18 #include <linux/file.h>
19 #include <linux/module.h>
20 #include <linux/irqbypass.h>
21 #include <linux/kvm_irqfd.h>
23 #include <asm/cputable.h>
24 #include <linux/uaccess.h>
25 #include <asm/kvm_ppc.h>
26 #include <asm/cputhreads.h>
27 #include <asm/irqflags.h>
28 #include <asm/iommu.h>
29 #include <asm/switch_to.h>
31 #ifdef CONFIG_PPC_PSERIES
32 #include <asm/hvcall.h>
33 #include <asm/plpar_wrappers.h>
35 #include <asm/ultravisor.h>
36 #include <asm/setup.h>
39 #include "../mm/mmu_decl.h"
41 #define CREATE_TRACE_POINTS
44 struct kvmppc_ops *kvmppc_hv_ops;
45 EXPORT_SYMBOL_GPL(kvmppc_hv_ops);
46 struct kvmppc_ops *kvmppc_pr_ops;
47 EXPORT_SYMBOL_GPL(kvmppc_pr_ops);
50 int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
52 return !!(v->arch.pending_exceptions) || kvm_request_pending(v);
55 bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
57 return kvm_arch_vcpu_runnable(vcpu);
60 bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
65 int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
71 * Common checks before entering the guest world. Call with interrupts
76 * == 1 if we're ready to go into guest state
77 * <= 0 if we need to go back to the host with return value
79 int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
83 WARN_ON(irqs_disabled());
94 if (signal_pending(current)) {
95 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
96 vcpu->run->exit_reason = KVM_EXIT_INTR;
101 vcpu->mode = IN_GUEST_MODE;
104 * Reading vcpu->requests must happen after setting vcpu->mode,
105 * so we don't miss a request because the requester sees
106 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
107 * before next entering the guest (and thus doesn't IPI).
108 * This also orders the write to mode from any reads
109 * to the page tables done while the VCPU is running.
110 * Please see the comment in kvm_flush_remote_tlbs.
114 if (kvm_request_pending(vcpu)) {
115 /* Make sure we process requests preemptable */
117 trace_kvm_check_requests(vcpu);
118 r = kvmppc_core_check_requests(vcpu);
125 if (kvmppc_core_prepare_to_enter(vcpu)) {
126 /* interrupts got enabled in between, so we
127 are back at square 1 */
131 guest_enter_irqoff();
139 EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
141 #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
142 static void kvmppc_swab_shared(struct kvm_vcpu *vcpu)
144 struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared;
147 shared->sprg0 = swab64(shared->sprg0);
148 shared->sprg1 = swab64(shared->sprg1);
149 shared->sprg2 = swab64(shared->sprg2);
150 shared->sprg3 = swab64(shared->sprg3);
151 shared->srr0 = swab64(shared->srr0);
152 shared->srr1 = swab64(shared->srr1);
153 shared->dar = swab64(shared->dar);
154 shared->msr = swab64(shared->msr);
155 shared->dsisr = swab32(shared->dsisr);
156 shared->int_pending = swab32(shared->int_pending);
157 for (i = 0; i < ARRAY_SIZE(shared->sr); i++)
158 shared->sr[i] = swab32(shared->sr[i]);
162 int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
164 int nr = kvmppc_get_gpr(vcpu, 11);
166 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
167 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
168 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
169 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
170 unsigned long r2 = 0;
172 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
174 param1 &= 0xffffffff;
175 param2 &= 0xffffffff;
176 param3 &= 0xffffffff;
177 param4 &= 0xffffffff;
181 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
183 #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
184 /* Book3S can be little endian, find it out here */
185 int shared_big_endian = true;
186 if (vcpu->arch.intr_msr & MSR_LE)
187 shared_big_endian = false;
188 if (shared_big_endian != vcpu->arch.shared_big_endian)
189 kvmppc_swab_shared(vcpu);
190 vcpu->arch.shared_big_endian = shared_big_endian;
193 if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) {
195 * Older versions of the Linux magic page code had
196 * a bug where they would map their trampoline code
197 * NX. If that's the case, remove !PR NX capability.
199 vcpu->arch.disable_kernel_nx = true;
200 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
203 vcpu->arch.magic_page_pa = param1 & ~0xfffULL;
204 vcpu->arch.magic_page_ea = param2 & ~0xfffULL;
206 #ifdef CONFIG_PPC_64K_PAGES
208 * Make sure our 4k magic page is in the same window of a 64k
209 * page within the guest and within the host's page.
211 if ((vcpu->arch.magic_page_pa & 0xf000) !=
212 ((ulong)vcpu->arch.shared & 0xf000)) {
213 void *old_shared = vcpu->arch.shared;
214 ulong shared = (ulong)vcpu->arch.shared;
218 shared |= vcpu->arch.magic_page_pa & 0xf000;
219 new_shared = (void*)shared;
220 memcpy(new_shared, old_shared, 0x1000);
221 vcpu->arch.shared = new_shared;
225 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
230 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
232 #if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
233 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
236 /* Second return value is in r4 */
238 case EV_HCALL_TOKEN(EV_IDLE):
243 r = EV_UNIMPLEMENTED;
247 kvmppc_set_gpr(vcpu, 4, r2);
251 EXPORT_SYMBOL_GPL(kvmppc_kvm_pv);
253 int kvmppc_sanity_check(struct kvm_vcpu *vcpu)
257 /* We have to know what CPU to virtualize */
261 /* PAPR only works with book3s_64 */
262 if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled)
265 /* HV KVM can only do PAPR mode for now */
266 if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm))
269 #ifdef CONFIG_KVM_BOOKE_HV
270 if (!cpu_has_feature(CPU_FTR_EMB_HV))
278 return r ? 0 : -EINVAL;
280 EXPORT_SYMBOL_GPL(kvmppc_sanity_check);
282 int kvmppc_emulate_mmio(struct kvm_vcpu *vcpu)
284 enum emulation_result er;
287 er = kvmppc_emulate_loadstore(vcpu);
290 /* Future optimization: only reload non-volatiles if they were
291 * actually modified. */
297 case EMULATE_DO_MMIO:
298 vcpu->run->exit_reason = KVM_EXIT_MMIO;
299 /* We must reload nonvolatiles because "update" load/store
300 * instructions modify register state. */
301 /* Future optimization: only reload non-volatiles if they were
302 * actually modified. */
307 ppc_inst_t last_inst;
309 kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
310 kvm_debug_ratelimited("Guest access to device memory using unsupported instruction (opcode: %#08x)\n",
311 ppc_inst_val(last_inst));
314 * Injecting a Data Storage here is a bit more
315 * accurate since the instruction that caused the
316 * access could still be a valid one.
318 if (!IS_ENABLED(CONFIG_BOOKE)) {
319 ulong dsisr = DSISR_BADACCESS;
321 if (vcpu->mmio_is_write)
322 dsisr |= DSISR_ISSTORE;
324 kvmppc_core_queue_data_storage(vcpu,
325 kvmppc_get_msr(vcpu) & SRR1_PREFIXED,
326 vcpu->arch.vaddr_accessed, dsisr);
329 * BookE does not send a SIGBUS on a bad
330 * fault, so use a Program interrupt instead
331 * to avoid a fault loop.
333 kvmppc_core_queue_program(vcpu, 0);
346 EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
348 int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
351 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
352 struct kvmppc_pte pte;
357 if (vcpu->kvm->arch.kvm_ops && vcpu->kvm->arch.kvm_ops->store_to_eaddr)
358 r = vcpu->kvm->arch.kvm_ops->store_to_eaddr(vcpu, eaddr, ptr,
361 if ((!r) || (r == -EAGAIN))
364 r = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
374 /* Magic page override */
375 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
376 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
377 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
378 void *magic = vcpu->arch.shared;
379 magic += pte.eaddr & 0xfff;
380 memcpy(magic, ptr, size);
384 if (kvm_write_guest(vcpu->kvm, pte.raddr, ptr, size))
385 return EMULATE_DO_MMIO;
389 EXPORT_SYMBOL_GPL(kvmppc_st);
391 int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
394 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
395 struct kvmppc_pte pte;
400 if (vcpu->kvm->arch.kvm_ops && vcpu->kvm->arch.kvm_ops->load_from_eaddr)
401 rc = vcpu->kvm->arch.kvm_ops->load_from_eaddr(vcpu, eaddr, ptr,
404 if ((!rc) || (rc == -EAGAIN))
407 rc = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
417 if (!data && !pte.may_execute)
420 /* Magic page override */
421 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
422 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
423 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
424 void *magic = vcpu->arch.shared;
425 magic += pte.eaddr & 0xfff;
426 memcpy(ptr, magic, size);
430 kvm_vcpu_srcu_read_lock(vcpu);
431 rc = kvm_read_guest(vcpu->kvm, pte.raddr, ptr, size);
432 kvm_vcpu_srcu_read_unlock(vcpu);
434 return EMULATE_DO_MMIO;
438 EXPORT_SYMBOL_GPL(kvmppc_ld);
440 int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
442 struct kvmppc_ops *kvm_ops = NULL;
446 * if we have both HV and PR enabled, default is HV
450 kvm_ops = kvmppc_hv_ops;
452 kvm_ops = kvmppc_pr_ops;
455 } else if (type == KVM_VM_PPC_HV) {
458 kvm_ops = kvmppc_hv_ops;
459 } else if (type == KVM_VM_PPC_PR) {
462 kvm_ops = kvmppc_pr_ops;
466 if (!try_module_get(kvm_ops->owner))
469 kvm->arch.kvm_ops = kvm_ops;
470 r = kvmppc_core_init_vm(kvm);
472 module_put(kvm_ops->owner);
478 void kvm_arch_destroy_vm(struct kvm *kvm)
480 #ifdef CONFIG_KVM_XICS
482 * We call kick_all_cpus_sync() to ensure that all
483 * CPUs have executed any pending IPIs before we
484 * continue and free VCPUs structures below.
486 if (is_kvmppc_hv_enabled(kvm))
487 kick_all_cpus_sync();
490 kvm_destroy_vcpus(kvm);
492 mutex_lock(&kvm->lock);
494 kvmppc_core_destroy_vm(kvm);
496 mutex_unlock(&kvm->lock);
498 /* drop the module reference */
499 module_put(kvm->arch.kvm_ops->owner);
502 int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
505 /* Assume we're using HV mode when the HV module is loaded */
506 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
510 * Hooray - we know which VM type we're running on. Depend on
511 * that rather than the guess above.
513 hv_enabled = is_kvmppc_hv_enabled(kvm);
518 case KVM_CAP_PPC_BOOKE_SREGS:
519 case KVM_CAP_PPC_BOOKE_WATCHDOG:
520 case KVM_CAP_PPC_EPR:
522 case KVM_CAP_PPC_SEGSTATE:
523 case KVM_CAP_PPC_HIOR:
524 case KVM_CAP_PPC_PAPR:
526 case KVM_CAP_PPC_UNSET_IRQ:
527 case KVM_CAP_PPC_IRQ_LEVEL:
528 case KVM_CAP_ENABLE_CAP:
529 case KVM_CAP_ONE_REG:
530 case KVM_CAP_IOEVENTFD:
531 case KVM_CAP_DEVICE_CTRL:
532 case KVM_CAP_IMMEDIATE_EXIT:
533 case KVM_CAP_SET_GUEST_DEBUG:
536 case KVM_CAP_PPC_GUEST_DEBUG_SSTEP:
537 case KVM_CAP_PPC_PAIRED_SINGLES:
538 case KVM_CAP_PPC_OSI:
539 case KVM_CAP_PPC_GET_PVINFO:
540 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
543 /* We support this only for PR */
546 #ifdef CONFIG_KVM_MPIC
547 case KVM_CAP_IRQ_MPIC:
552 #ifdef CONFIG_PPC_BOOK3S_64
553 case KVM_CAP_SPAPR_TCE:
554 case KVM_CAP_SPAPR_TCE_64:
557 case KVM_CAP_SPAPR_TCE_VFIO:
558 r = !!cpu_has_feature(CPU_FTR_HVMODE);
560 case KVM_CAP_PPC_RTAS:
561 case KVM_CAP_PPC_FIXUP_HCALL:
562 case KVM_CAP_PPC_ENABLE_HCALL:
563 #ifdef CONFIG_KVM_XICS
564 case KVM_CAP_IRQ_XICS:
566 case KVM_CAP_PPC_GET_CPU_CHAR:
569 #ifdef CONFIG_KVM_XIVE
570 case KVM_CAP_PPC_IRQ_XIVE:
572 * We need XIVE to be enabled on the platform (implies
573 * a POWER9 processor) and the PowerNV platform, as
574 * nested is not yet supported.
576 r = xive_enabled() && !!cpu_has_feature(CPU_FTR_HVMODE) &&
577 kvmppc_xive_native_supported();
581 #ifdef CONFIG_HAVE_KVM_IRQFD
582 case KVM_CAP_IRQFD_RESAMPLE:
587 case KVM_CAP_PPC_ALLOC_HTAB:
590 #endif /* CONFIG_PPC_BOOK3S_64 */
591 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
592 case KVM_CAP_PPC_SMT:
595 if (kvm->arch.emul_smt_mode > 1)
596 r = kvm->arch.emul_smt_mode;
598 r = kvm->arch.smt_mode;
599 } else if (hv_enabled) {
600 if (cpu_has_feature(CPU_FTR_ARCH_300))
603 r = threads_per_subcore;
606 case KVM_CAP_PPC_SMT_POSSIBLE:
609 if (!cpu_has_feature(CPU_FTR_ARCH_300))
610 r = ((threads_per_subcore << 1) - 1);
612 /* P9 can emulate dbells, so allow any mode */
616 case KVM_CAP_PPC_RMA:
619 case KVM_CAP_PPC_HWRNG:
620 r = kvmppc_hwrng_present();
622 case KVM_CAP_PPC_MMU_RADIX:
623 r = !!(hv_enabled && radix_enabled());
625 case KVM_CAP_PPC_MMU_HASH_V3:
626 r = !!(hv_enabled && kvmppc_hv_ops->hash_v3_possible &&
627 kvmppc_hv_ops->hash_v3_possible());
629 case KVM_CAP_PPC_NESTED_HV:
630 r = !!(hv_enabled && kvmppc_hv_ops->enable_nested &&
631 !kvmppc_hv_ops->enable_nested(NULL));
634 case KVM_CAP_SYNC_MMU:
635 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
637 #elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
643 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
644 case KVM_CAP_PPC_HTAB_FD:
648 case KVM_CAP_NR_VCPUS:
650 * Recommending a number of CPUs is somewhat arbitrary; we
651 * return the number of present CPUs for -HV (since a host
652 * will have secondary threads "offline"), and for other KVM
653 * implementations just count online CPUs.
656 r = min_t(unsigned int, num_present_cpus(), KVM_MAX_VCPUS);
658 r = min_t(unsigned int, num_online_cpus(), KVM_MAX_VCPUS);
660 case KVM_CAP_MAX_VCPUS:
663 case KVM_CAP_MAX_VCPU_ID:
664 r = KVM_MAX_VCPU_IDS;
666 #ifdef CONFIG_PPC_BOOK3S_64
667 case KVM_CAP_PPC_GET_SMMU_INFO:
670 case KVM_CAP_SPAPR_MULTITCE:
673 case KVM_CAP_SPAPR_RESIZE_HPT:
677 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
678 case KVM_CAP_PPC_FWNMI:
682 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
683 case KVM_CAP_PPC_HTM:
684 r = !!(cur_cpu_spec->cpu_user_features2 & PPC_FEATURE2_HTM) ||
685 (hv_enabled && cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST));
688 #if defined(CONFIG_KVM_BOOK3S_HV_POSSIBLE)
689 case KVM_CAP_PPC_SECURE_GUEST:
690 r = hv_enabled && kvmppc_hv_ops->enable_svm &&
691 !kvmppc_hv_ops->enable_svm(NULL);
693 case KVM_CAP_PPC_DAWR1:
694 r = !!(hv_enabled && kvmppc_hv_ops->enable_dawr1 &&
695 !kvmppc_hv_ops->enable_dawr1(NULL));
697 case KVM_CAP_PPC_RPT_INVALIDATE:
701 case KVM_CAP_PPC_AIL_MODE_3:
704 * KVM PR, POWER7, and some POWER9s don't support AIL=3 mode.
705 * The POWER9s can support it if the guest runs in hash mode,
706 * but QEMU doesn't necessarily query the capability in time.
709 if (kvmhv_on_pseries()) {
710 if (pseries_reloc_on_exception())
712 } else if (cpu_has_feature(CPU_FTR_ARCH_207S) &&
713 !cpu_has_feature(CPU_FTR_P9_RADIX_PREFETCH_BUG)) {
726 long kvm_arch_dev_ioctl(struct file *filp,
727 unsigned int ioctl, unsigned long arg)
732 void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
734 kvmppc_core_free_memslot(kvm, slot);
737 int kvm_arch_prepare_memory_region(struct kvm *kvm,
738 const struct kvm_memory_slot *old,
739 struct kvm_memory_slot *new,
740 enum kvm_mr_change change)
742 return kvmppc_core_prepare_memory_region(kvm, old, new, change);
745 void kvm_arch_commit_memory_region(struct kvm *kvm,
746 struct kvm_memory_slot *old,
747 const struct kvm_memory_slot *new,
748 enum kvm_mr_change change)
750 kvmppc_core_commit_memory_region(kvm, old, new, change);
753 void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
754 struct kvm_memory_slot *slot)
756 kvmppc_core_flush_memslot(kvm, slot);
759 int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
764 static enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
766 struct kvm_vcpu *vcpu;
768 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
769 kvmppc_decrementer_func(vcpu);
771 return HRTIMER_NORESTART;
774 int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
778 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
779 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
781 #ifdef CONFIG_KVM_EXIT_TIMING
782 mutex_init(&vcpu->arch.exit_timing_lock);
784 err = kvmppc_subarch_vcpu_init(vcpu);
788 err = kvmppc_core_vcpu_create(vcpu);
790 goto out_vcpu_uninit;
792 rcuwait_init(&vcpu->arch.wait);
793 vcpu->arch.waitp = &vcpu->arch.wait;
797 kvmppc_subarch_vcpu_uninit(vcpu);
801 void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
805 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
807 /* Make sure we're not using the vcpu anymore */
808 hrtimer_cancel(&vcpu->arch.dec_timer);
810 switch (vcpu->arch.irq_type) {
811 case KVMPPC_IRQ_MPIC:
812 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
814 case KVMPPC_IRQ_XICS:
816 kvmppc_xive_cleanup_vcpu(vcpu);
818 kvmppc_xics_free_icp(vcpu);
820 case KVMPPC_IRQ_XIVE:
821 kvmppc_xive_native_cleanup_vcpu(vcpu);
825 kvmppc_core_vcpu_free(vcpu);
827 kvmppc_subarch_vcpu_uninit(vcpu);
830 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
832 return kvmppc_core_pending_dec(vcpu);
835 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
839 * vrsave (formerly usprg0) isn't used by Linux, but may
840 * be used by the guest.
842 * On non-booke this is associated with Altivec and
843 * is handled by code in book3s.c.
845 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
847 kvmppc_core_vcpu_load(vcpu, cpu);
850 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
852 kvmppc_core_vcpu_put(vcpu);
854 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
859 * irq_bypass_add_producer and irq_bypass_del_producer are only
860 * useful if the architecture supports PCI passthrough.
861 * irq_bypass_stop and irq_bypass_start are not needed and so
862 * kvm_ops are not defined for them.
864 bool kvm_arch_has_irq_bypass(void)
866 return ((kvmppc_hv_ops && kvmppc_hv_ops->irq_bypass_add_producer) ||
867 (kvmppc_pr_ops && kvmppc_pr_ops->irq_bypass_add_producer));
870 int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
871 struct irq_bypass_producer *prod)
873 struct kvm_kernel_irqfd *irqfd =
874 container_of(cons, struct kvm_kernel_irqfd, consumer);
875 struct kvm *kvm = irqfd->kvm;
877 if (kvm->arch.kvm_ops->irq_bypass_add_producer)
878 return kvm->arch.kvm_ops->irq_bypass_add_producer(cons, prod);
883 void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
884 struct irq_bypass_producer *prod)
886 struct kvm_kernel_irqfd *irqfd =
887 container_of(cons, struct kvm_kernel_irqfd, consumer);
888 struct kvm *kvm = irqfd->kvm;
890 if (kvm->arch.kvm_ops->irq_bypass_del_producer)
891 kvm->arch.kvm_ops->irq_bypass_del_producer(cons, prod);
895 static inline int kvmppc_get_vsr_dword_offset(int index)
899 if ((index != 0) && (index != 1))
911 static inline int kvmppc_get_vsr_word_offset(int index)
915 if ((index > 3) || (index < 0))
926 static inline void kvmppc_set_vsr_dword(struct kvm_vcpu *vcpu,
929 union kvmppc_one_reg val;
930 int offset = kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
931 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
937 val.vval = VCPU_VSX_VR(vcpu, index - 32);
938 val.vsxval[offset] = gpr;
939 VCPU_VSX_VR(vcpu, index - 32) = val.vval;
941 VCPU_VSX_FPR(vcpu, index, offset) = gpr;
945 static inline void kvmppc_set_vsr_dword_dump(struct kvm_vcpu *vcpu,
948 union kvmppc_one_reg val;
949 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
952 val.vval = VCPU_VSX_VR(vcpu, index - 32);
955 VCPU_VSX_VR(vcpu, index - 32) = val.vval;
957 VCPU_VSX_FPR(vcpu, index, 0) = gpr;
958 VCPU_VSX_FPR(vcpu, index, 1) = gpr;
962 static inline void kvmppc_set_vsr_word_dump(struct kvm_vcpu *vcpu,
965 union kvmppc_one_reg val;
966 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
969 val.vsx32val[0] = gpr;
970 val.vsx32val[1] = gpr;
971 val.vsx32val[2] = gpr;
972 val.vsx32val[3] = gpr;
973 VCPU_VSX_VR(vcpu, index - 32) = val.vval;
975 val.vsx32val[0] = gpr;
976 val.vsx32val[1] = gpr;
977 VCPU_VSX_FPR(vcpu, index, 0) = val.vsxval[0];
978 VCPU_VSX_FPR(vcpu, index, 1) = val.vsxval[0];
982 static inline void kvmppc_set_vsr_word(struct kvm_vcpu *vcpu,
985 union kvmppc_one_reg val;
986 int offset = kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
987 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
988 int dword_offset, word_offset;
994 val.vval = VCPU_VSX_VR(vcpu, index - 32);
995 val.vsx32val[offset] = gpr32;
996 VCPU_VSX_VR(vcpu, index - 32) = val.vval;
998 dword_offset = offset / 2;
999 word_offset = offset % 2;
1000 val.vsxval[0] = VCPU_VSX_FPR(vcpu, index, dword_offset);
1001 val.vsx32val[word_offset] = gpr32;
1002 VCPU_VSX_FPR(vcpu, index, dword_offset) = val.vsxval[0];
1005 #endif /* CONFIG_VSX */
1007 #ifdef CONFIG_ALTIVEC
1008 static inline int kvmppc_get_vmx_offset_generic(struct kvm_vcpu *vcpu,
1009 int index, int element_size)
1012 int elts = sizeof(vector128)/element_size;
1014 if ((index < 0) || (index >= elts))
1017 if (kvmppc_need_byteswap(vcpu))
1018 offset = elts - index - 1;
1025 static inline int kvmppc_get_vmx_dword_offset(struct kvm_vcpu *vcpu,
1028 return kvmppc_get_vmx_offset_generic(vcpu, index, 8);
1031 static inline int kvmppc_get_vmx_word_offset(struct kvm_vcpu *vcpu,
1034 return kvmppc_get_vmx_offset_generic(vcpu, index, 4);
1037 static inline int kvmppc_get_vmx_hword_offset(struct kvm_vcpu *vcpu,
1040 return kvmppc_get_vmx_offset_generic(vcpu, index, 2);
1043 static inline int kvmppc_get_vmx_byte_offset(struct kvm_vcpu *vcpu,
1046 return kvmppc_get_vmx_offset_generic(vcpu, index, 1);
1050 static inline void kvmppc_set_vmx_dword(struct kvm_vcpu *vcpu,
1053 union kvmppc_one_reg val;
1054 int offset = kvmppc_get_vmx_dword_offset(vcpu,
1055 vcpu->arch.mmio_vmx_offset);
1056 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
1061 val.vval = VCPU_VSX_VR(vcpu, index);
1062 val.vsxval[offset] = gpr;
1063 VCPU_VSX_VR(vcpu, index) = val.vval;
1066 static inline void kvmppc_set_vmx_word(struct kvm_vcpu *vcpu,
1069 union kvmppc_one_reg val;
1070 int offset = kvmppc_get_vmx_word_offset(vcpu,
1071 vcpu->arch.mmio_vmx_offset);
1072 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
1077 val.vval = VCPU_VSX_VR(vcpu, index);
1078 val.vsx32val[offset] = gpr32;
1079 VCPU_VSX_VR(vcpu, index) = val.vval;
1082 static inline void kvmppc_set_vmx_hword(struct kvm_vcpu *vcpu,
1085 union kvmppc_one_reg val;
1086 int offset = kvmppc_get_vmx_hword_offset(vcpu,
1087 vcpu->arch.mmio_vmx_offset);
1088 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
1093 val.vval = VCPU_VSX_VR(vcpu, index);
1094 val.vsx16val[offset] = gpr16;
1095 VCPU_VSX_VR(vcpu, index) = val.vval;
1098 static inline void kvmppc_set_vmx_byte(struct kvm_vcpu *vcpu,
1101 union kvmppc_one_reg val;
1102 int offset = kvmppc_get_vmx_byte_offset(vcpu,
1103 vcpu->arch.mmio_vmx_offset);
1104 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
1109 val.vval = VCPU_VSX_VR(vcpu, index);
1110 val.vsx8val[offset] = gpr8;
1111 VCPU_VSX_VR(vcpu, index) = val.vval;
1113 #endif /* CONFIG_ALTIVEC */
1115 #ifdef CONFIG_PPC_FPU
1116 static inline u64 sp_to_dp(u32 fprs)
1122 asm ("lfs%U1%X1 0,%1; stfd%U0%X0 0,%0" : "=m<>" (fprd) : "m<>" (fprs)
1128 static inline u32 dp_to_sp(u64 fprd)
1134 asm ("lfd%U1%X1 0,%1; stfs%U0%X0 0,%0" : "=m<>" (fprs) : "m<>" (fprd)
1141 #define sp_to_dp(x) (x)
1142 #define dp_to_sp(x) (x)
1143 #endif /* CONFIG_PPC_FPU */
1145 static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu)
1147 struct kvm_run *run = vcpu->run;
1150 if (run->mmio.len > sizeof(gpr))
1153 if (!vcpu->arch.mmio_host_swabbed) {
1154 switch (run->mmio.len) {
1155 case 8: gpr = *(u64 *)run->mmio.data; break;
1156 case 4: gpr = *(u32 *)run->mmio.data; break;
1157 case 2: gpr = *(u16 *)run->mmio.data; break;
1158 case 1: gpr = *(u8 *)run->mmio.data; break;
1161 switch (run->mmio.len) {
1162 case 8: gpr = swab64(*(u64 *)run->mmio.data); break;
1163 case 4: gpr = swab32(*(u32 *)run->mmio.data); break;
1164 case 2: gpr = swab16(*(u16 *)run->mmio.data); break;
1165 case 1: gpr = *(u8 *)run->mmio.data; break;
1169 /* conversion between single and double precision */
1170 if ((vcpu->arch.mmio_sp64_extend) && (run->mmio.len == 4))
1171 gpr = sp_to_dp(gpr);
1173 if (vcpu->arch.mmio_sign_extend) {
1174 switch (run->mmio.len) {
1177 gpr = (s64)(s32)gpr;
1181 gpr = (s64)(s16)gpr;
1189 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
1190 case KVM_MMIO_REG_GPR:
1191 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
1193 case KVM_MMIO_REG_FPR:
1194 if (vcpu->kvm->arch.kvm_ops->giveup_ext)
1195 vcpu->kvm->arch.kvm_ops->giveup_ext(vcpu, MSR_FP);
1197 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
1199 #ifdef CONFIG_PPC_BOOK3S
1200 case KVM_MMIO_REG_QPR:
1201 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
1203 case KVM_MMIO_REG_FQPR:
1204 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
1205 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
1209 case KVM_MMIO_REG_VSX:
1210 if (vcpu->kvm->arch.kvm_ops->giveup_ext)
1211 vcpu->kvm->arch.kvm_ops->giveup_ext(vcpu, MSR_VSX);
1213 if (vcpu->arch.mmio_copy_type == KVMPPC_VSX_COPY_DWORD)
1214 kvmppc_set_vsr_dword(vcpu, gpr);
1215 else if (vcpu->arch.mmio_copy_type == KVMPPC_VSX_COPY_WORD)
1216 kvmppc_set_vsr_word(vcpu, gpr);
1217 else if (vcpu->arch.mmio_copy_type ==
1218 KVMPPC_VSX_COPY_DWORD_LOAD_DUMP)
1219 kvmppc_set_vsr_dword_dump(vcpu, gpr);
1220 else if (vcpu->arch.mmio_copy_type ==
1221 KVMPPC_VSX_COPY_WORD_LOAD_DUMP)
1222 kvmppc_set_vsr_word_dump(vcpu, gpr);
1225 #ifdef CONFIG_ALTIVEC
1226 case KVM_MMIO_REG_VMX:
1227 if (vcpu->kvm->arch.kvm_ops->giveup_ext)
1228 vcpu->kvm->arch.kvm_ops->giveup_ext(vcpu, MSR_VEC);
1230 if (vcpu->arch.mmio_copy_type == KVMPPC_VMX_COPY_DWORD)
1231 kvmppc_set_vmx_dword(vcpu, gpr);
1232 else if (vcpu->arch.mmio_copy_type == KVMPPC_VMX_COPY_WORD)
1233 kvmppc_set_vmx_word(vcpu, gpr);
1234 else if (vcpu->arch.mmio_copy_type ==
1235 KVMPPC_VMX_COPY_HWORD)
1236 kvmppc_set_vmx_hword(vcpu, gpr);
1237 else if (vcpu->arch.mmio_copy_type ==
1238 KVMPPC_VMX_COPY_BYTE)
1239 kvmppc_set_vmx_byte(vcpu, gpr);
1242 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
1243 case KVM_MMIO_REG_NESTED_GPR:
1244 if (kvmppc_need_byteswap(vcpu))
1246 kvm_vcpu_write_guest(vcpu, vcpu->arch.nested_io_gpr, &gpr,
1255 static int __kvmppc_handle_load(struct kvm_vcpu *vcpu,
1256 unsigned int rt, unsigned int bytes,
1257 int is_default_endian, int sign_extend)
1259 struct kvm_run *run = vcpu->run;
1263 /* Pity C doesn't have a logical XOR operator */
1264 if (kvmppc_need_byteswap(vcpu)) {
1265 host_swabbed = is_default_endian;
1267 host_swabbed = !is_default_endian;
1270 if (bytes > sizeof(run->mmio.data))
1271 return EMULATE_FAIL;
1273 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1274 run->mmio.len = bytes;
1275 run->mmio.is_write = 0;
1277 vcpu->arch.io_gpr = rt;
1278 vcpu->arch.mmio_host_swabbed = host_swabbed;
1279 vcpu->mmio_needed = 1;
1280 vcpu->mmio_is_write = 0;
1281 vcpu->arch.mmio_sign_extend = sign_extend;
1283 idx = srcu_read_lock(&vcpu->kvm->srcu);
1285 ret = kvm_io_bus_read(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
1286 bytes, &run->mmio.data);
1288 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1291 kvmppc_complete_mmio_load(vcpu);
1292 vcpu->mmio_needed = 0;
1293 return EMULATE_DONE;
1296 return EMULATE_DO_MMIO;
1299 int kvmppc_handle_load(struct kvm_vcpu *vcpu,
1300 unsigned int rt, unsigned int bytes,
1301 int is_default_endian)
1303 return __kvmppc_handle_load(vcpu, rt, bytes, is_default_endian, 0);
1305 EXPORT_SYMBOL_GPL(kvmppc_handle_load);
1307 /* Same as above, but sign extends */
1308 int kvmppc_handle_loads(struct kvm_vcpu *vcpu,
1309 unsigned int rt, unsigned int bytes,
1310 int is_default_endian)
1312 return __kvmppc_handle_load(vcpu, rt, bytes, is_default_endian, 1);
1316 int kvmppc_handle_vsx_load(struct kvm_vcpu *vcpu,
1317 unsigned int rt, unsigned int bytes,
1318 int is_default_endian, int mmio_sign_extend)
1320 enum emulation_result emulated = EMULATE_DONE;
1322 /* Currently, mmio_vsx_copy_nums only allowed to be 4 or less */
1323 if (vcpu->arch.mmio_vsx_copy_nums > 4)
1324 return EMULATE_FAIL;
1326 while (vcpu->arch.mmio_vsx_copy_nums) {
1327 emulated = __kvmppc_handle_load(vcpu, rt, bytes,
1328 is_default_endian, mmio_sign_extend);
1330 if (emulated != EMULATE_DONE)
1333 vcpu->arch.paddr_accessed += vcpu->run->mmio.len;
1335 vcpu->arch.mmio_vsx_copy_nums--;
1336 vcpu->arch.mmio_vsx_offset++;
1340 #endif /* CONFIG_VSX */
1342 int kvmppc_handle_store(struct kvm_vcpu *vcpu,
1343 u64 val, unsigned int bytes, int is_default_endian)
1345 struct kvm_run *run = vcpu->run;
1346 void *data = run->mmio.data;
1350 /* Pity C doesn't have a logical XOR operator */
1351 if (kvmppc_need_byteswap(vcpu)) {
1352 host_swabbed = is_default_endian;
1354 host_swabbed = !is_default_endian;
1357 if (bytes > sizeof(run->mmio.data))
1358 return EMULATE_FAIL;
1360 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1361 run->mmio.len = bytes;
1362 run->mmio.is_write = 1;
1363 vcpu->mmio_needed = 1;
1364 vcpu->mmio_is_write = 1;
1366 if ((vcpu->arch.mmio_sp64_extend) && (bytes == 4))
1367 val = dp_to_sp(val);
1369 /* Store the value at the lowest bytes in 'data'. */
1370 if (!host_swabbed) {
1372 case 8: *(u64 *)data = val; break;
1373 case 4: *(u32 *)data = val; break;
1374 case 2: *(u16 *)data = val; break;
1375 case 1: *(u8 *)data = val; break;
1379 case 8: *(u64 *)data = swab64(val); break;
1380 case 4: *(u32 *)data = swab32(val); break;
1381 case 2: *(u16 *)data = swab16(val); break;
1382 case 1: *(u8 *)data = val; break;
1386 idx = srcu_read_lock(&vcpu->kvm->srcu);
1388 ret = kvm_io_bus_write(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
1389 bytes, &run->mmio.data);
1391 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1394 vcpu->mmio_needed = 0;
1395 return EMULATE_DONE;
1398 return EMULATE_DO_MMIO;
1400 EXPORT_SYMBOL_GPL(kvmppc_handle_store);
1403 static inline int kvmppc_get_vsr_data(struct kvm_vcpu *vcpu, int rs, u64 *val)
1405 u32 dword_offset, word_offset;
1406 union kvmppc_one_reg reg;
1408 int copy_type = vcpu->arch.mmio_copy_type;
1411 switch (copy_type) {
1412 case KVMPPC_VSX_COPY_DWORD:
1414 kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
1416 if (vsx_offset == -1) {
1422 *val = VCPU_VSX_FPR(vcpu, rs, vsx_offset);
1424 reg.vval = VCPU_VSX_VR(vcpu, rs - 32);
1425 *val = reg.vsxval[vsx_offset];
1429 case KVMPPC_VSX_COPY_WORD:
1431 kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
1433 if (vsx_offset == -1) {
1439 dword_offset = vsx_offset / 2;
1440 word_offset = vsx_offset % 2;
1441 reg.vsxval[0] = VCPU_VSX_FPR(vcpu, rs, dword_offset);
1442 *val = reg.vsx32val[word_offset];
1444 reg.vval = VCPU_VSX_VR(vcpu, rs - 32);
1445 *val = reg.vsx32val[vsx_offset];
1457 int kvmppc_handle_vsx_store(struct kvm_vcpu *vcpu,
1458 int rs, unsigned int bytes, int is_default_endian)
1461 enum emulation_result emulated = EMULATE_DONE;
1463 vcpu->arch.io_gpr = rs;
1465 /* Currently, mmio_vsx_copy_nums only allowed to be 4 or less */
1466 if (vcpu->arch.mmio_vsx_copy_nums > 4)
1467 return EMULATE_FAIL;
1469 while (vcpu->arch.mmio_vsx_copy_nums) {
1470 if (kvmppc_get_vsr_data(vcpu, rs, &val) == -1)
1471 return EMULATE_FAIL;
1473 emulated = kvmppc_handle_store(vcpu,
1474 val, bytes, is_default_endian);
1476 if (emulated != EMULATE_DONE)
1479 vcpu->arch.paddr_accessed += vcpu->run->mmio.len;
1481 vcpu->arch.mmio_vsx_copy_nums--;
1482 vcpu->arch.mmio_vsx_offset++;
1488 static int kvmppc_emulate_mmio_vsx_loadstore(struct kvm_vcpu *vcpu)
1490 struct kvm_run *run = vcpu->run;
1491 enum emulation_result emulated = EMULATE_FAIL;
1494 vcpu->arch.paddr_accessed += run->mmio.len;
1496 if (!vcpu->mmio_is_write) {
1497 emulated = kvmppc_handle_vsx_load(vcpu, vcpu->arch.io_gpr,
1498 run->mmio.len, 1, vcpu->arch.mmio_sign_extend);
1500 emulated = kvmppc_handle_vsx_store(vcpu,
1501 vcpu->arch.io_gpr, run->mmio.len, 1);
1505 case EMULATE_DO_MMIO:
1506 run->exit_reason = KVM_EXIT_MMIO;
1510 pr_info("KVM: MMIO emulation failed (VSX repeat)\n");
1511 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1512 run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
1521 #endif /* CONFIG_VSX */
1523 #ifdef CONFIG_ALTIVEC
1524 int kvmppc_handle_vmx_load(struct kvm_vcpu *vcpu,
1525 unsigned int rt, unsigned int bytes, int is_default_endian)
1527 enum emulation_result emulated = EMULATE_DONE;
1529 if (vcpu->arch.mmio_vmx_copy_nums > 2)
1530 return EMULATE_FAIL;
1532 while (vcpu->arch.mmio_vmx_copy_nums) {
1533 emulated = __kvmppc_handle_load(vcpu, rt, bytes,
1534 is_default_endian, 0);
1536 if (emulated != EMULATE_DONE)
1539 vcpu->arch.paddr_accessed += vcpu->run->mmio.len;
1540 vcpu->arch.mmio_vmx_copy_nums--;
1541 vcpu->arch.mmio_vmx_offset++;
1547 static int kvmppc_get_vmx_dword(struct kvm_vcpu *vcpu, int index, u64 *val)
1549 union kvmppc_one_reg reg;
1554 kvmppc_get_vmx_dword_offset(vcpu, vcpu->arch.mmio_vmx_offset);
1556 if (vmx_offset == -1)
1559 reg.vval = VCPU_VSX_VR(vcpu, index);
1560 *val = reg.vsxval[vmx_offset];
1565 static int kvmppc_get_vmx_word(struct kvm_vcpu *vcpu, int index, u64 *val)
1567 union kvmppc_one_reg reg;
1572 kvmppc_get_vmx_word_offset(vcpu, vcpu->arch.mmio_vmx_offset);
1574 if (vmx_offset == -1)
1577 reg.vval = VCPU_VSX_VR(vcpu, index);
1578 *val = reg.vsx32val[vmx_offset];
1583 static int kvmppc_get_vmx_hword(struct kvm_vcpu *vcpu, int index, u64 *val)
1585 union kvmppc_one_reg reg;
1590 kvmppc_get_vmx_hword_offset(vcpu, vcpu->arch.mmio_vmx_offset);
1592 if (vmx_offset == -1)
1595 reg.vval = VCPU_VSX_VR(vcpu, index);
1596 *val = reg.vsx16val[vmx_offset];
1601 static int kvmppc_get_vmx_byte(struct kvm_vcpu *vcpu, int index, u64 *val)
1603 union kvmppc_one_reg reg;
1608 kvmppc_get_vmx_byte_offset(vcpu, vcpu->arch.mmio_vmx_offset);
1610 if (vmx_offset == -1)
1613 reg.vval = VCPU_VSX_VR(vcpu, index);
1614 *val = reg.vsx8val[vmx_offset];
1619 int kvmppc_handle_vmx_store(struct kvm_vcpu *vcpu,
1620 unsigned int rs, unsigned int bytes, int is_default_endian)
1623 unsigned int index = rs & KVM_MMIO_REG_MASK;
1624 enum emulation_result emulated = EMULATE_DONE;
1626 if (vcpu->arch.mmio_vmx_copy_nums > 2)
1627 return EMULATE_FAIL;
1629 vcpu->arch.io_gpr = rs;
1631 while (vcpu->arch.mmio_vmx_copy_nums) {
1632 switch (vcpu->arch.mmio_copy_type) {
1633 case KVMPPC_VMX_COPY_DWORD:
1634 if (kvmppc_get_vmx_dword(vcpu, index, &val) == -1)
1635 return EMULATE_FAIL;
1638 case KVMPPC_VMX_COPY_WORD:
1639 if (kvmppc_get_vmx_word(vcpu, index, &val) == -1)
1640 return EMULATE_FAIL;
1642 case KVMPPC_VMX_COPY_HWORD:
1643 if (kvmppc_get_vmx_hword(vcpu, index, &val) == -1)
1644 return EMULATE_FAIL;
1646 case KVMPPC_VMX_COPY_BYTE:
1647 if (kvmppc_get_vmx_byte(vcpu, index, &val) == -1)
1648 return EMULATE_FAIL;
1651 return EMULATE_FAIL;
1654 emulated = kvmppc_handle_store(vcpu, val, bytes,
1656 if (emulated != EMULATE_DONE)
1659 vcpu->arch.paddr_accessed += vcpu->run->mmio.len;
1660 vcpu->arch.mmio_vmx_copy_nums--;
1661 vcpu->arch.mmio_vmx_offset++;
1667 static int kvmppc_emulate_mmio_vmx_loadstore(struct kvm_vcpu *vcpu)
1669 struct kvm_run *run = vcpu->run;
1670 enum emulation_result emulated = EMULATE_FAIL;
1673 vcpu->arch.paddr_accessed += run->mmio.len;
1675 if (!vcpu->mmio_is_write) {
1676 emulated = kvmppc_handle_vmx_load(vcpu,
1677 vcpu->arch.io_gpr, run->mmio.len, 1);
1679 emulated = kvmppc_handle_vmx_store(vcpu,
1680 vcpu->arch.io_gpr, run->mmio.len, 1);
1684 case EMULATE_DO_MMIO:
1685 run->exit_reason = KVM_EXIT_MMIO;
1689 pr_info("KVM: MMIO emulation failed (VMX repeat)\n");
1690 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1691 run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
1700 #endif /* CONFIG_ALTIVEC */
1702 int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1705 union kvmppc_one_reg val;
1708 size = one_reg_size(reg->id);
1709 if (size > sizeof(val))
1712 r = kvmppc_get_one_reg(vcpu, reg->id, &val);
1716 #ifdef CONFIG_ALTIVEC
1717 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1718 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1722 val.vval = vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0];
1724 case KVM_REG_PPC_VSCR:
1725 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1729 val = get_reg_val(reg->id, vcpu->arch.vr.vscr.u[3]);
1731 case KVM_REG_PPC_VRSAVE:
1732 val = get_reg_val(reg->id, vcpu->arch.vrsave);
1734 #endif /* CONFIG_ALTIVEC */
1744 if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size))
1750 int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1753 union kvmppc_one_reg val;
1756 size = one_reg_size(reg->id);
1757 if (size > sizeof(val))
1760 if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size))
1763 r = kvmppc_set_one_reg(vcpu, reg->id, &val);
1767 #ifdef CONFIG_ALTIVEC
1768 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1769 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1773 vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0] = val.vval;
1775 case KVM_REG_PPC_VSCR:
1776 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1780 vcpu->arch.vr.vscr.u[3] = set_reg_val(reg->id, val);
1782 case KVM_REG_PPC_VRSAVE:
1783 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1787 vcpu->arch.vrsave = set_reg_val(reg->id, val);
1789 #endif /* CONFIG_ALTIVEC */
1799 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
1801 struct kvm_run *run = vcpu->run;
1806 if (vcpu->mmio_needed) {
1807 vcpu->mmio_needed = 0;
1808 if (!vcpu->mmio_is_write)
1809 kvmppc_complete_mmio_load(vcpu);
1811 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1812 vcpu->arch.mmio_vsx_copy_nums--;
1813 vcpu->arch.mmio_vsx_offset++;
1816 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1817 r = kvmppc_emulate_mmio_vsx_loadstore(vcpu);
1818 if (r == RESUME_HOST) {
1819 vcpu->mmio_needed = 1;
1824 #ifdef CONFIG_ALTIVEC
1825 if (vcpu->arch.mmio_vmx_copy_nums > 0) {
1826 vcpu->arch.mmio_vmx_copy_nums--;
1827 vcpu->arch.mmio_vmx_offset++;
1830 if (vcpu->arch.mmio_vmx_copy_nums > 0) {
1831 r = kvmppc_emulate_mmio_vmx_loadstore(vcpu);
1832 if (r == RESUME_HOST) {
1833 vcpu->mmio_needed = 1;
1838 } else if (vcpu->arch.osi_needed) {
1839 u64 *gprs = run->osi.gprs;
1842 for (i = 0; i < 32; i++)
1843 kvmppc_set_gpr(vcpu, i, gprs[i]);
1844 vcpu->arch.osi_needed = 0;
1845 } else if (vcpu->arch.hcall_needed) {
1848 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
1849 for (i = 0; i < 9; ++i)
1850 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
1851 vcpu->arch.hcall_needed = 0;
1853 } else if (vcpu->arch.epr_needed) {
1854 kvmppc_set_epr(vcpu, run->epr.epr);
1855 vcpu->arch.epr_needed = 0;
1859 kvm_sigset_activate(vcpu);
1861 if (run->immediate_exit)
1864 r = kvmppc_vcpu_run(vcpu);
1866 kvm_sigset_deactivate(vcpu);
1868 #ifdef CONFIG_ALTIVEC
1873 * We're already returning to userspace, don't pass the
1874 * RESUME_HOST flags along.
1883 int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
1885 if (irq->irq == KVM_INTERRUPT_UNSET) {
1886 kvmppc_core_dequeue_external(vcpu);
1890 kvmppc_core_queue_external(vcpu, irq);
1892 kvm_vcpu_kick(vcpu);
1897 static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
1898 struct kvm_enable_cap *cap)
1906 case KVM_CAP_PPC_OSI:
1908 vcpu->arch.osi_enabled = true;
1910 case KVM_CAP_PPC_PAPR:
1912 vcpu->arch.papr_enabled = true;
1914 case KVM_CAP_PPC_EPR:
1917 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
1919 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
1922 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1924 vcpu->arch.watchdog_enabled = true;
1927 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
1928 case KVM_CAP_SW_TLB: {
1929 struct kvm_config_tlb cfg;
1930 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
1933 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
1936 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
1940 #ifdef CONFIG_KVM_MPIC
1941 case KVM_CAP_IRQ_MPIC: {
1943 struct kvm_device *dev;
1946 f = fdget(cap->args[0]);
1951 dev = kvm_device_from_filp(f.file);
1953 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
1959 #ifdef CONFIG_KVM_XICS
1960 case KVM_CAP_IRQ_XICS: {
1962 struct kvm_device *dev;
1965 f = fdget(cap->args[0]);
1970 dev = kvm_device_from_filp(f.file);
1973 r = kvmppc_xive_connect_vcpu(dev, vcpu, cap->args[1]);
1975 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
1981 #endif /* CONFIG_KVM_XICS */
1982 #ifdef CONFIG_KVM_XIVE
1983 case KVM_CAP_PPC_IRQ_XIVE: {
1985 struct kvm_device *dev;
1988 f = fdget(cap->args[0]);
1993 if (!xive_enabled())
1997 dev = kvm_device_from_filp(f.file);
1999 r = kvmppc_xive_native_connect_vcpu(dev, vcpu,
2005 #endif /* CONFIG_KVM_XIVE */
2006 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
2007 case KVM_CAP_PPC_FWNMI:
2009 if (!is_kvmppc_hv_enabled(vcpu->kvm))
2012 vcpu->kvm->arch.fwnmi_enabled = true;
2014 #endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */
2021 r = kvmppc_sanity_check(vcpu);
2026 bool kvm_arch_intc_initialized(struct kvm *kvm)
2028 #ifdef CONFIG_KVM_MPIC
2032 #ifdef CONFIG_KVM_XICS
2033 if (kvm->arch.xics || kvm->arch.xive)
2039 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
2040 struct kvm_mp_state *mp_state)
2045 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
2046 struct kvm_mp_state *mp_state)
2051 long kvm_arch_vcpu_async_ioctl(struct file *filp,
2052 unsigned int ioctl, unsigned long arg)
2054 struct kvm_vcpu *vcpu = filp->private_data;
2055 void __user *argp = (void __user *)arg;
2057 if (ioctl == KVM_INTERRUPT) {
2058 struct kvm_interrupt irq;
2059 if (copy_from_user(&irq, argp, sizeof(irq)))
2061 return kvm_vcpu_ioctl_interrupt(vcpu, &irq);
2063 return -ENOIOCTLCMD;
2066 long kvm_arch_vcpu_ioctl(struct file *filp,
2067 unsigned int ioctl, unsigned long arg)
2069 struct kvm_vcpu *vcpu = filp->private_data;
2070 void __user *argp = (void __user *)arg;
2074 case KVM_ENABLE_CAP:
2076 struct kvm_enable_cap cap;
2078 if (copy_from_user(&cap, argp, sizeof(cap)))
2081 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
2086 case KVM_SET_ONE_REG:
2087 case KVM_GET_ONE_REG:
2089 struct kvm_one_reg reg;
2091 if (copy_from_user(®, argp, sizeof(reg)))
2093 if (ioctl == KVM_SET_ONE_REG)
2094 r = kvm_vcpu_ioctl_set_one_reg(vcpu, ®);
2096 r = kvm_vcpu_ioctl_get_one_reg(vcpu, ®);
2100 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
2101 case KVM_DIRTY_TLB: {
2102 struct kvm_dirty_tlb dirty;
2104 if (copy_from_user(&dirty, argp, sizeof(dirty)))
2107 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
2120 vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
2122 return VM_FAULT_SIGBUS;
2125 static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
2127 u32 inst_nop = 0x60000000;
2128 #ifdef CONFIG_KVM_BOOKE_HV
2129 u32 inst_sc1 = 0x44000022;
2130 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
2131 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
2132 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
2133 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
2135 u32 inst_lis = 0x3c000000;
2136 u32 inst_ori = 0x60000000;
2137 u32 inst_sc = 0x44000002;
2138 u32 inst_imm_mask = 0xffff;
2141 * The hypercall to get into KVM from within guest context is as
2144 * lis r0, r0, KVM_SC_MAGIC_R0@h
2145 * ori r0, KVM_SC_MAGIC_R0@l
2149 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
2150 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
2151 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
2152 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
2155 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
2160 bool kvm_arch_irqchip_in_kernel(struct kvm *kvm)
2164 #ifdef CONFIG_KVM_MPIC
2165 ret = ret || (kvm->arch.mpic != NULL);
2167 #ifdef CONFIG_KVM_XICS
2168 ret = ret || (kvm->arch.xics != NULL);
2169 ret = ret || (kvm->arch.xive != NULL);
2175 int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
2178 if (!kvm_arch_irqchip_in_kernel(kvm))
2181 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
2182 irq_event->irq, irq_event->level,
2188 int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
2189 struct kvm_enable_cap *cap)
2197 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
2198 case KVM_CAP_PPC_ENABLE_HCALL: {
2199 unsigned long hcall = cap->args[0];
2202 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
2205 if (!kvmppc_book3s_hcall_implemented(kvm, hcall))
2208 set_bit(hcall / 4, kvm->arch.enabled_hcalls);
2210 clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
2214 case KVM_CAP_PPC_SMT: {
2215 unsigned long mode = cap->args[0];
2216 unsigned long flags = cap->args[1];
2219 if (kvm->arch.kvm_ops->set_smt_mode)
2220 r = kvm->arch.kvm_ops->set_smt_mode(kvm, mode, flags);
2224 case KVM_CAP_PPC_NESTED_HV:
2226 if (!is_kvmppc_hv_enabled(kvm) ||
2227 !kvm->arch.kvm_ops->enable_nested)
2229 r = kvm->arch.kvm_ops->enable_nested(kvm);
2232 #if defined(CONFIG_KVM_BOOK3S_HV_POSSIBLE)
2233 case KVM_CAP_PPC_SECURE_GUEST:
2235 if (!is_kvmppc_hv_enabled(kvm) || !kvm->arch.kvm_ops->enable_svm)
2237 r = kvm->arch.kvm_ops->enable_svm(kvm);
2239 case KVM_CAP_PPC_DAWR1:
2241 if (!is_kvmppc_hv_enabled(kvm) || !kvm->arch.kvm_ops->enable_dawr1)
2243 r = kvm->arch.kvm_ops->enable_dawr1(kvm);
2254 #ifdef CONFIG_PPC_BOOK3S_64
2256 * These functions check whether the underlying hardware is safe
2257 * against attacks based on observing the effects of speculatively
2258 * executed instructions, and whether it supplies instructions for
2259 * use in workarounds. The information comes from firmware, either
2260 * via the device tree on powernv platforms or from an hcall on
2261 * pseries platforms.
2263 #ifdef CONFIG_PPC_PSERIES
2264 static int pseries_get_cpu_char(struct kvm_ppc_cpu_char *cp)
2266 struct h_cpu_char_result c;
2269 if (!machine_is(pseries))
2272 rc = plpar_get_cpu_characteristics(&c);
2273 if (rc == H_SUCCESS) {
2274 cp->character = c.character;
2275 cp->behaviour = c.behaviour;
2276 cp->character_mask = KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31 |
2277 KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED |
2278 KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30 |
2279 KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2 |
2280 KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV |
2281 KVM_PPC_CPU_CHAR_BR_HINT_HONOURED |
2282 KVM_PPC_CPU_CHAR_MTTRIG_THR_RECONF |
2283 KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS |
2284 KVM_PPC_CPU_CHAR_BCCTR_FLUSH_ASSIST;
2285 cp->behaviour_mask = KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY |
2286 KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR |
2287 KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR |
2288 KVM_PPC_CPU_BEHAV_FLUSH_COUNT_CACHE;
2293 static int pseries_get_cpu_char(struct kvm_ppc_cpu_char *cp)
2299 static inline bool have_fw_feat(struct device_node *fw_features,
2300 const char *state, const char *name)
2302 struct device_node *np;
2305 np = of_get_child_by_name(fw_features, name);
2307 r = of_property_read_bool(np, state);
2313 static int kvmppc_get_cpu_char(struct kvm_ppc_cpu_char *cp)
2315 struct device_node *np, *fw_features;
2318 memset(cp, 0, sizeof(*cp));
2319 r = pseries_get_cpu_char(cp);
2323 np = of_find_node_by_name(NULL, "ibm,opal");
2325 fw_features = of_get_child_by_name(np, "fw-features");
2329 if (have_fw_feat(fw_features, "enabled",
2330 "inst-spec-barrier-ori31,31,0"))
2331 cp->character |= KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31;
2332 if (have_fw_feat(fw_features, "enabled",
2333 "fw-bcctrl-serialized"))
2334 cp->character |= KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED;
2335 if (have_fw_feat(fw_features, "enabled",
2336 "inst-l1d-flush-ori30,30,0"))
2337 cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30;
2338 if (have_fw_feat(fw_features, "enabled",
2339 "inst-l1d-flush-trig2"))
2340 cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2;
2341 if (have_fw_feat(fw_features, "enabled",
2342 "fw-l1d-thread-split"))
2343 cp->character |= KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV;
2344 if (have_fw_feat(fw_features, "enabled",
2345 "fw-count-cache-disabled"))
2346 cp->character |= KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS;
2347 if (have_fw_feat(fw_features, "enabled",
2348 "fw-count-cache-flush-bcctr2,0,0"))
2349 cp->character |= KVM_PPC_CPU_CHAR_BCCTR_FLUSH_ASSIST;
2350 cp->character_mask = KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31 |
2351 KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED |
2352 KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30 |
2353 KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2 |
2354 KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV |
2355 KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS |
2356 KVM_PPC_CPU_CHAR_BCCTR_FLUSH_ASSIST;
2358 if (have_fw_feat(fw_features, "enabled",
2359 "speculation-policy-favor-security"))
2360 cp->behaviour |= KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY;
2361 if (!have_fw_feat(fw_features, "disabled",
2362 "needs-l1d-flush-msr-pr-0-to-1"))
2363 cp->behaviour |= KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR;
2364 if (!have_fw_feat(fw_features, "disabled",
2365 "needs-spec-barrier-for-bound-checks"))
2366 cp->behaviour |= KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR;
2367 if (have_fw_feat(fw_features, "enabled",
2368 "needs-count-cache-flush-on-context-switch"))
2369 cp->behaviour |= KVM_PPC_CPU_BEHAV_FLUSH_COUNT_CACHE;
2370 cp->behaviour_mask = KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY |
2371 KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR |
2372 KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR |
2373 KVM_PPC_CPU_BEHAV_FLUSH_COUNT_CACHE;
2375 of_node_put(fw_features);
2382 int kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg)
2384 struct kvm *kvm __maybe_unused = filp->private_data;
2385 void __user *argp = (void __user *)arg;
2389 case KVM_PPC_GET_PVINFO: {
2390 struct kvm_ppc_pvinfo pvinfo;
2391 memset(&pvinfo, 0, sizeof(pvinfo));
2392 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
2393 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
2400 #ifdef CONFIG_SPAPR_TCE_IOMMU
2401 case KVM_CREATE_SPAPR_TCE_64: {
2402 struct kvm_create_spapr_tce_64 create_tce_64;
2405 if (copy_from_user(&create_tce_64, argp, sizeof(create_tce_64)))
2407 if (create_tce_64.flags) {
2411 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
2414 case KVM_CREATE_SPAPR_TCE: {
2415 struct kvm_create_spapr_tce create_tce;
2416 struct kvm_create_spapr_tce_64 create_tce_64;
2419 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
2422 create_tce_64.liobn = create_tce.liobn;
2423 create_tce_64.page_shift = IOMMU_PAGE_SHIFT_4K;
2424 create_tce_64.offset = 0;
2425 create_tce_64.size = create_tce.window_size >>
2426 IOMMU_PAGE_SHIFT_4K;
2427 create_tce_64.flags = 0;
2428 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
2432 #ifdef CONFIG_PPC_BOOK3S_64
2433 case KVM_PPC_GET_SMMU_INFO: {
2434 struct kvm_ppc_smmu_info info;
2435 struct kvm *kvm = filp->private_data;
2437 memset(&info, 0, sizeof(info));
2438 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
2439 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
2443 case KVM_PPC_RTAS_DEFINE_TOKEN: {
2444 struct kvm *kvm = filp->private_data;
2446 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
2449 case KVM_PPC_CONFIGURE_V3_MMU: {
2450 struct kvm *kvm = filp->private_data;
2451 struct kvm_ppc_mmuv3_cfg cfg;
2454 if (!kvm->arch.kvm_ops->configure_mmu)
2457 if (copy_from_user(&cfg, argp, sizeof(cfg)))
2459 r = kvm->arch.kvm_ops->configure_mmu(kvm, &cfg);
2462 case KVM_PPC_GET_RMMU_INFO: {
2463 struct kvm *kvm = filp->private_data;
2464 struct kvm_ppc_rmmu_info info;
2467 if (!kvm->arch.kvm_ops->get_rmmu_info)
2469 r = kvm->arch.kvm_ops->get_rmmu_info(kvm, &info);
2470 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
2474 case KVM_PPC_GET_CPU_CHAR: {
2475 struct kvm_ppc_cpu_char cpuchar;
2477 r = kvmppc_get_cpu_char(&cpuchar);
2478 if (r >= 0 && copy_to_user(argp, &cpuchar, sizeof(cpuchar)))
2482 case KVM_PPC_SVM_OFF: {
2483 struct kvm *kvm = filp->private_data;
2486 if (!kvm->arch.kvm_ops->svm_off)
2489 r = kvm->arch.kvm_ops->svm_off(kvm);
2493 struct kvm *kvm = filp->private_data;
2494 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
2496 #else /* CONFIG_PPC_BOOK3S_64 */
2505 static DEFINE_IDA(lpid_inuse);
2506 static unsigned long nr_lpids;
2508 long kvmppc_alloc_lpid(void)
2512 /* The host LPID must always be 0 (allocation starts at 1) */
2513 lpid = ida_alloc_range(&lpid_inuse, 1, nr_lpids - 1, GFP_KERNEL);
2515 if (lpid == -ENOMEM)
2516 pr_err("%s: Out of memory\n", __func__);
2518 pr_err("%s: No LPIDs free\n", __func__);
2524 EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
2526 void kvmppc_free_lpid(long lpid)
2528 ida_free(&lpid_inuse, lpid);
2530 EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
2532 /* nr_lpids_param includes the host LPID */
2533 void kvmppc_init_lpid(unsigned long nr_lpids_param)
2535 nr_lpids = nr_lpids_param;
2537 EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
2539 EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ppc_instr);
2541 void kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu, struct dentry *debugfs_dentry)
2543 if (vcpu->kvm->arch.kvm_ops->create_vcpu_debugfs)
2544 vcpu->kvm->arch.kvm_ops->create_vcpu_debugfs(vcpu, debugfs_dentry);
2547 int kvm_arch_create_vm_debugfs(struct kvm *kvm)
2549 if (kvm->arch.kvm_ops->create_vm_debugfs)
2550 kvm->arch.kvm_ops->create_vm_debugfs(kvm);