1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright IBM Corp. 2007
6 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
7 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
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>
22 #include <asm/cputable.h>
23 #include <linux/uaccess.h>
24 #include <asm/kvm_ppc.h>
25 #include <asm/cputhreads.h>
26 #include <asm/irqflags.h>
27 #include <asm/iommu.h>
28 #include <asm/switch_to.h>
30 #ifdef CONFIG_PPC_PSERIES
31 #include <asm/hvcall.h>
32 #include <asm/plpar_wrappers.h>
34 #include <asm/ultravisor.h>
38 #include "../mm/mmu_decl.h"
40 #define CREATE_TRACE_POINTS
43 struct kvmppc_ops *kvmppc_hv_ops;
44 EXPORT_SYMBOL_GPL(kvmppc_hv_ops);
45 struct kvmppc_ops *kvmppc_pr_ops;
46 EXPORT_SYMBOL_GPL(kvmppc_pr_ops);
49 int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
51 return !!(v->arch.pending_exceptions) || kvm_request_pending(v);
54 bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
56 return kvm_arch_vcpu_runnable(vcpu);
59 bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
64 int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
70 * Common checks before entering the guest world. Call with interrupts
75 * == 1 if we're ready to go into guest state
76 * <= 0 if we need to go back to the host with return value
78 int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
82 WARN_ON(irqs_disabled());
93 if (signal_pending(current)) {
94 kvmppc_account_exit(vcpu, SIGNAL_EXITS);
95 vcpu->run->exit_reason = KVM_EXIT_INTR;
100 vcpu->mode = IN_GUEST_MODE;
103 * Reading vcpu->requests must happen after setting vcpu->mode,
104 * so we don't miss a request because the requester sees
105 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
106 * before next entering the guest (and thus doesn't IPI).
107 * This also orders the write to mode from any reads
108 * to the page tables done while the VCPU is running.
109 * Please see the comment in kvm_flush_remote_tlbs.
113 if (kvm_request_pending(vcpu)) {
114 /* Make sure we process requests preemptable */
116 trace_kvm_check_requests(vcpu);
117 r = kvmppc_core_check_requests(vcpu);
124 if (kvmppc_core_prepare_to_enter(vcpu)) {
125 /* interrupts got enabled in between, so we
126 are back at square 1 */
130 guest_enter_irqoff();
138 EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter);
140 #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
141 static void kvmppc_swab_shared(struct kvm_vcpu *vcpu)
143 struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared;
146 shared->sprg0 = swab64(shared->sprg0);
147 shared->sprg1 = swab64(shared->sprg1);
148 shared->sprg2 = swab64(shared->sprg2);
149 shared->sprg3 = swab64(shared->sprg3);
150 shared->srr0 = swab64(shared->srr0);
151 shared->srr1 = swab64(shared->srr1);
152 shared->dar = swab64(shared->dar);
153 shared->msr = swab64(shared->msr);
154 shared->dsisr = swab32(shared->dsisr);
155 shared->int_pending = swab32(shared->int_pending);
156 for (i = 0; i < ARRAY_SIZE(shared->sr); i++)
157 shared->sr[i] = swab32(shared->sr[i]);
161 int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
163 int nr = kvmppc_get_gpr(vcpu, 11);
165 unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3);
166 unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4);
167 unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5);
168 unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6);
169 unsigned long r2 = 0;
171 if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
173 param1 &= 0xffffffff;
174 param2 &= 0xffffffff;
175 param3 &= 0xffffffff;
176 param4 &= 0xffffffff;
180 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE):
182 #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
183 /* Book3S can be little endian, find it out here */
184 int shared_big_endian = true;
185 if (vcpu->arch.intr_msr & MSR_LE)
186 shared_big_endian = false;
187 if (shared_big_endian != vcpu->arch.shared_big_endian)
188 kvmppc_swab_shared(vcpu);
189 vcpu->arch.shared_big_endian = shared_big_endian;
192 if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) {
194 * Older versions of the Linux magic page code had
195 * a bug where they would map their trampoline code
196 * NX. If that's the case, remove !PR NX capability.
198 vcpu->arch.disable_kernel_nx = true;
199 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
202 vcpu->arch.magic_page_pa = param1 & ~0xfffULL;
203 vcpu->arch.magic_page_ea = param2 & ~0xfffULL;
205 #ifdef CONFIG_PPC_64K_PAGES
207 * Make sure our 4k magic page is in the same window of a 64k
208 * page within the guest and within the host's page.
210 if ((vcpu->arch.magic_page_pa & 0xf000) !=
211 ((ulong)vcpu->arch.shared & 0xf000)) {
212 void *old_shared = vcpu->arch.shared;
213 ulong shared = (ulong)vcpu->arch.shared;
217 shared |= vcpu->arch.magic_page_pa & 0xf000;
218 new_shared = (void*)shared;
219 memcpy(new_shared, old_shared, 0x1000);
220 vcpu->arch.shared = new_shared;
224 r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7;
229 case KVM_HCALL_TOKEN(KVM_HC_FEATURES):
231 #if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
232 r2 |= (1 << KVM_FEATURE_MAGIC_PAGE);
235 /* Second return value is in r4 */
237 case EV_HCALL_TOKEN(EV_IDLE):
239 kvm_vcpu_block(vcpu);
240 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
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. */
309 kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst);
310 /* XXX Deliver Program interrupt to guest. */
311 pr_emerg("%s: emulation failed (%08x)\n", __func__, last_inst);
322 EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio);
324 int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
327 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
328 struct kvmppc_pte pte;
333 if (vcpu->kvm->arch.kvm_ops && vcpu->kvm->arch.kvm_ops->store_to_eaddr)
334 r = vcpu->kvm->arch.kvm_ops->store_to_eaddr(vcpu, eaddr, ptr,
337 if ((!r) || (r == -EAGAIN))
340 r = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
350 /* Magic page override */
351 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
352 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
353 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
354 void *magic = vcpu->arch.shared;
355 magic += pte.eaddr & 0xfff;
356 memcpy(magic, ptr, size);
360 if (kvm_write_guest(vcpu->kvm, pte.raddr, ptr, size))
361 return EMULATE_DO_MMIO;
365 EXPORT_SYMBOL_GPL(kvmppc_st);
367 int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr,
370 ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK;
371 struct kvmppc_pte pte;
376 if (vcpu->kvm->arch.kvm_ops && vcpu->kvm->arch.kvm_ops->load_from_eaddr)
377 rc = vcpu->kvm->arch.kvm_ops->load_from_eaddr(vcpu, eaddr, ptr,
380 if ((!rc) || (rc == -EAGAIN))
383 rc = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST,
393 if (!data && !pte.may_execute)
396 /* Magic page override */
397 if (kvmppc_supports_magic_page(vcpu) && mp_pa &&
398 ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) &&
399 !(kvmppc_get_msr(vcpu) & MSR_PR)) {
400 void *magic = vcpu->arch.shared;
401 magic += pte.eaddr & 0xfff;
402 memcpy(ptr, magic, size);
406 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
407 rc = kvm_read_guest(vcpu->kvm, pte.raddr, ptr, size);
408 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
410 return EMULATE_DO_MMIO;
414 EXPORT_SYMBOL_GPL(kvmppc_ld);
416 int kvm_arch_hardware_enable(void)
421 int kvm_arch_hardware_setup(void *opaque)
426 int kvm_arch_check_processor_compat(void *opaque)
428 return kvmppc_core_check_processor_compat();
431 int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
433 struct kvmppc_ops *kvm_ops = NULL;
435 * if we have both HV and PR enabled, default is HV
439 kvm_ops = kvmppc_hv_ops;
441 kvm_ops = kvmppc_pr_ops;
444 } else if (type == KVM_VM_PPC_HV) {
447 kvm_ops = kvmppc_hv_ops;
448 } else if (type == KVM_VM_PPC_PR) {
451 kvm_ops = kvmppc_pr_ops;
455 if (kvm_ops->owner && !try_module_get(kvm_ops->owner))
458 kvm->arch.kvm_ops = kvm_ops;
459 return kvmppc_core_init_vm(kvm);
464 void kvm_arch_destroy_vm(struct kvm *kvm)
467 struct kvm_vcpu *vcpu;
469 #ifdef CONFIG_KVM_XICS
471 * We call kick_all_cpus_sync() to ensure that all
472 * CPUs have executed any pending IPIs before we
473 * continue and free VCPUs structures below.
475 if (is_kvmppc_hv_enabled(kvm))
476 kick_all_cpus_sync();
479 kvm_for_each_vcpu(i, vcpu, kvm)
480 kvm_vcpu_destroy(vcpu);
482 mutex_lock(&kvm->lock);
483 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
484 kvm->vcpus[i] = NULL;
486 atomic_set(&kvm->online_vcpus, 0);
488 kvmppc_core_destroy_vm(kvm);
490 mutex_unlock(&kvm->lock);
492 /* drop the module reference */
493 module_put(kvm->arch.kvm_ops->owner);
496 int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
499 /* Assume we're using HV mode when the HV module is loaded */
500 int hv_enabled = kvmppc_hv_ops ? 1 : 0;
504 * Hooray - we know which VM type we're running on. Depend on
505 * that rather than the guess above.
507 hv_enabled = is_kvmppc_hv_enabled(kvm);
512 case KVM_CAP_PPC_BOOKE_SREGS:
513 case KVM_CAP_PPC_BOOKE_WATCHDOG:
514 case KVM_CAP_PPC_EPR:
516 case KVM_CAP_PPC_SEGSTATE:
517 case KVM_CAP_PPC_HIOR:
518 case KVM_CAP_PPC_PAPR:
520 case KVM_CAP_PPC_UNSET_IRQ:
521 case KVM_CAP_PPC_IRQ_LEVEL:
522 case KVM_CAP_ENABLE_CAP:
523 case KVM_CAP_ONE_REG:
524 case KVM_CAP_IOEVENTFD:
525 case KVM_CAP_DEVICE_CTRL:
526 case KVM_CAP_IMMEDIATE_EXIT:
527 case KVM_CAP_SET_GUEST_DEBUG:
530 case KVM_CAP_PPC_GUEST_DEBUG_SSTEP:
531 case KVM_CAP_PPC_PAIRED_SINGLES:
532 case KVM_CAP_PPC_OSI:
533 case KVM_CAP_PPC_GET_PVINFO:
534 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
537 /* We support this only for PR */
540 #ifdef CONFIG_KVM_MPIC
541 case KVM_CAP_IRQ_MPIC:
546 #ifdef CONFIG_PPC_BOOK3S_64
547 case KVM_CAP_SPAPR_TCE:
548 case KVM_CAP_SPAPR_TCE_64:
551 case KVM_CAP_SPAPR_TCE_VFIO:
552 r = !!cpu_has_feature(CPU_FTR_HVMODE);
554 case KVM_CAP_PPC_RTAS:
555 case KVM_CAP_PPC_FIXUP_HCALL:
556 case KVM_CAP_PPC_ENABLE_HCALL:
557 #ifdef CONFIG_KVM_XICS
558 case KVM_CAP_IRQ_XICS:
560 case KVM_CAP_PPC_GET_CPU_CHAR:
563 #ifdef CONFIG_KVM_XIVE
564 case KVM_CAP_PPC_IRQ_XIVE:
566 * We need XIVE to be enabled on the platform (implies
567 * a POWER9 processor) and the PowerNV platform, as
568 * nested is not yet supported.
570 r = xive_enabled() && !!cpu_has_feature(CPU_FTR_HVMODE) &&
571 kvmppc_xive_native_supported();
575 case KVM_CAP_PPC_ALLOC_HTAB:
578 #endif /* CONFIG_PPC_BOOK3S_64 */
579 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
580 case KVM_CAP_PPC_SMT:
583 if (kvm->arch.emul_smt_mode > 1)
584 r = kvm->arch.emul_smt_mode;
586 r = kvm->arch.smt_mode;
587 } else if (hv_enabled) {
588 if (cpu_has_feature(CPU_FTR_ARCH_300))
591 r = threads_per_subcore;
594 case KVM_CAP_PPC_SMT_POSSIBLE:
597 if (!cpu_has_feature(CPU_FTR_ARCH_300))
598 r = ((threads_per_subcore << 1) - 1);
600 /* P9 can emulate dbells, so allow any mode */
604 case KVM_CAP_PPC_RMA:
607 case KVM_CAP_PPC_HWRNG:
608 r = kvmppc_hwrng_present();
610 case KVM_CAP_PPC_MMU_RADIX:
611 r = !!(hv_enabled && radix_enabled());
613 case KVM_CAP_PPC_MMU_HASH_V3:
614 r = !!(hv_enabled && kvmppc_hv_ops->hash_v3_possible &&
615 kvmppc_hv_ops->hash_v3_possible());
617 case KVM_CAP_PPC_NESTED_HV:
618 r = !!(hv_enabled && kvmppc_hv_ops->enable_nested &&
619 !kvmppc_hv_ops->enable_nested(NULL));
622 case KVM_CAP_SYNC_MMU:
623 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
625 #elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
631 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
632 case KVM_CAP_PPC_HTAB_FD:
636 case KVM_CAP_NR_VCPUS:
638 * Recommending a number of CPUs is somewhat arbitrary; we
639 * return the number of present CPUs for -HV (since a host
640 * will have secondary threads "offline"), and for other KVM
641 * implementations just count online CPUs.
644 r = num_present_cpus();
646 r = num_online_cpus();
648 case KVM_CAP_MAX_VCPUS:
651 case KVM_CAP_MAX_VCPU_ID:
654 #ifdef CONFIG_PPC_BOOK3S_64
655 case KVM_CAP_PPC_GET_SMMU_INFO:
658 case KVM_CAP_SPAPR_MULTITCE:
661 case KVM_CAP_SPAPR_RESIZE_HPT:
665 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
666 case KVM_CAP_PPC_FWNMI:
670 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
671 case KVM_CAP_PPC_HTM:
672 r = !!(cur_cpu_spec->cpu_user_features2 & PPC_FEATURE2_HTM) ||
673 (hv_enabled && cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST));
676 #if defined(CONFIG_KVM_BOOK3S_HV_POSSIBLE)
677 case KVM_CAP_PPC_SECURE_GUEST:
678 r = hv_enabled && kvmppc_hv_ops->enable_svm &&
679 !kvmppc_hv_ops->enable_svm(NULL);
681 case KVM_CAP_PPC_DAWR1:
682 r = !!(hv_enabled && kvmppc_hv_ops->enable_dawr1 &&
683 !kvmppc_hv_ops->enable_dawr1(NULL));
685 case KVM_CAP_PPC_RPT_INVALIDATE:
697 long kvm_arch_dev_ioctl(struct file *filp,
698 unsigned int ioctl, unsigned long arg)
703 void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
705 kvmppc_core_free_memslot(kvm, slot);
708 int kvm_arch_prepare_memory_region(struct kvm *kvm,
709 struct kvm_memory_slot *memslot,
710 const struct kvm_userspace_memory_region *mem,
711 enum kvm_mr_change change)
713 return kvmppc_core_prepare_memory_region(kvm, memslot, mem, change);
716 void kvm_arch_commit_memory_region(struct kvm *kvm,
717 const struct kvm_userspace_memory_region *mem,
718 struct kvm_memory_slot *old,
719 const struct kvm_memory_slot *new,
720 enum kvm_mr_change change)
722 kvmppc_core_commit_memory_region(kvm, mem, old, new, change);
725 void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
726 struct kvm_memory_slot *slot)
728 kvmppc_core_flush_memslot(kvm, slot);
731 int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
736 static enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer)
738 struct kvm_vcpu *vcpu;
740 vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer);
741 kvmppc_decrementer_func(vcpu);
743 return HRTIMER_NORESTART;
746 int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
750 hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
751 vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup;
752 vcpu->arch.dec_expires = get_tb();
754 #ifdef CONFIG_KVM_EXIT_TIMING
755 mutex_init(&vcpu->arch.exit_timing_lock);
757 err = kvmppc_subarch_vcpu_init(vcpu);
761 err = kvmppc_core_vcpu_create(vcpu);
763 goto out_vcpu_uninit;
765 vcpu->arch.waitp = &vcpu->wait;
766 kvmppc_create_vcpu_debugfs(vcpu, vcpu->vcpu_id);
770 kvmppc_subarch_vcpu_uninit(vcpu);
774 void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
778 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
780 /* Make sure we're not using the vcpu anymore */
781 hrtimer_cancel(&vcpu->arch.dec_timer);
783 kvmppc_remove_vcpu_debugfs(vcpu);
785 switch (vcpu->arch.irq_type) {
786 case KVMPPC_IRQ_MPIC:
787 kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu);
789 case KVMPPC_IRQ_XICS:
791 kvmppc_xive_cleanup_vcpu(vcpu);
793 kvmppc_xics_free_icp(vcpu);
795 case KVMPPC_IRQ_XIVE:
796 kvmppc_xive_native_cleanup_vcpu(vcpu);
800 kvmppc_core_vcpu_free(vcpu);
802 kvmppc_subarch_vcpu_uninit(vcpu);
805 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
807 return kvmppc_core_pending_dec(vcpu);
810 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
814 * vrsave (formerly usprg0) isn't used by Linux, but may
815 * be used by the guest.
817 * On non-booke this is associated with Altivec and
818 * is handled by code in book3s.c.
820 mtspr(SPRN_VRSAVE, vcpu->arch.vrsave);
822 kvmppc_core_vcpu_load(vcpu, cpu);
825 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
827 kvmppc_core_vcpu_put(vcpu);
829 vcpu->arch.vrsave = mfspr(SPRN_VRSAVE);
834 * irq_bypass_add_producer and irq_bypass_del_producer are only
835 * useful if the architecture supports PCI passthrough.
836 * irq_bypass_stop and irq_bypass_start are not needed and so
837 * kvm_ops are not defined for them.
839 bool kvm_arch_has_irq_bypass(void)
841 return ((kvmppc_hv_ops && kvmppc_hv_ops->irq_bypass_add_producer) ||
842 (kvmppc_pr_ops && kvmppc_pr_ops->irq_bypass_add_producer));
845 int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
846 struct irq_bypass_producer *prod)
848 struct kvm_kernel_irqfd *irqfd =
849 container_of(cons, struct kvm_kernel_irqfd, consumer);
850 struct kvm *kvm = irqfd->kvm;
852 if (kvm->arch.kvm_ops->irq_bypass_add_producer)
853 return kvm->arch.kvm_ops->irq_bypass_add_producer(cons, prod);
858 void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
859 struct irq_bypass_producer *prod)
861 struct kvm_kernel_irqfd *irqfd =
862 container_of(cons, struct kvm_kernel_irqfd, consumer);
863 struct kvm *kvm = irqfd->kvm;
865 if (kvm->arch.kvm_ops->irq_bypass_del_producer)
866 kvm->arch.kvm_ops->irq_bypass_del_producer(cons, prod);
870 static inline int kvmppc_get_vsr_dword_offset(int index)
874 if ((index != 0) && (index != 1))
886 static inline int kvmppc_get_vsr_word_offset(int index)
890 if ((index > 3) || (index < 0))
901 static inline void kvmppc_set_vsr_dword(struct kvm_vcpu *vcpu,
904 union kvmppc_one_reg val;
905 int offset = kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
906 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
912 val.vval = VCPU_VSX_VR(vcpu, index - 32);
913 val.vsxval[offset] = gpr;
914 VCPU_VSX_VR(vcpu, index - 32) = val.vval;
916 VCPU_VSX_FPR(vcpu, index, offset) = gpr;
920 static inline void kvmppc_set_vsr_dword_dump(struct kvm_vcpu *vcpu,
923 union kvmppc_one_reg val;
924 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
927 val.vval = VCPU_VSX_VR(vcpu, index - 32);
930 VCPU_VSX_VR(vcpu, index - 32) = val.vval;
932 VCPU_VSX_FPR(vcpu, index, 0) = gpr;
933 VCPU_VSX_FPR(vcpu, index, 1) = gpr;
937 static inline void kvmppc_set_vsr_word_dump(struct kvm_vcpu *vcpu,
940 union kvmppc_one_reg val;
941 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
944 val.vsx32val[0] = gpr;
945 val.vsx32val[1] = gpr;
946 val.vsx32val[2] = gpr;
947 val.vsx32val[3] = gpr;
948 VCPU_VSX_VR(vcpu, index - 32) = val.vval;
950 val.vsx32val[0] = gpr;
951 val.vsx32val[1] = gpr;
952 VCPU_VSX_FPR(vcpu, index, 0) = val.vsxval[0];
953 VCPU_VSX_FPR(vcpu, index, 1) = val.vsxval[0];
957 static inline void kvmppc_set_vsr_word(struct kvm_vcpu *vcpu,
960 union kvmppc_one_reg val;
961 int offset = kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
962 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
963 int dword_offset, word_offset;
969 val.vval = VCPU_VSX_VR(vcpu, index - 32);
970 val.vsx32val[offset] = gpr32;
971 VCPU_VSX_VR(vcpu, index - 32) = val.vval;
973 dword_offset = offset / 2;
974 word_offset = offset % 2;
975 val.vsxval[0] = VCPU_VSX_FPR(vcpu, index, dword_offset);
976 val.vsx32val[word_offset] = gpr32;
977 VCPU_VSX_FPR(vcpu, index, dword_offset) = val.vsxval[0];
980 #endif /* CONFIG_VSX */
982 #ifdef CONFIG_ALTIVEC
983 static inline int kvmppc_get_vmx_offset_generic(struct kvm_vcpu *vcpu,
984 int index, int element_size)
987 int elts = sizeof(vector128)/element_size;
989 if ((index < 0) || (index >= elts))
992 if (kvmppc_need_byteswap(vcpu))
993 offset = elts - index - 1;
1000 static inline int kvmppc_get_vmx_dword_offset(struct kvm_vcpu *vcpu,
1003 return kvmppc_get_vmx_offset_generic(vcpu, index, 8);
1006 static inline int kvmppc_get_vmx_word_offset(struct kvm_vcpu *vcpu,
1009 return kvmppc_get_vmx_offset_generic(vcpu, index, 4);
1012 static inline int kvmppc_get_vmx_hword_offset(struct kvm_vcpu *vcpu,
1015 return kvmppc_get_vmx_offset_generic(vcpu, index, 2);
1018 static inline int kvmppc_get_vmx_byte_offset(struct kvm_vcpu *vcpu,
1021 return kvmppc_get_vmx_offset_generic(vcpu, index, 1);
1025 static inline void kvmppc_set_vmx_dword(struct kvm_vcpu *vcpu,
1028 union kvmppc_one_reg val;
1029 int offset = kvmppc_get_vmx_dword_offset(vcpu,
1030 vcpu->arch.mmio_vmx_offset);
1031 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
1036 val.vval = VCPU_VSX_VR(vcpu, index);
1037 val.vsxval[offset] = gpr;
1038 VCPU_VSX_VR(vcpu, index) = val.vval;
1041 static inline void kvmppc_set_vmx_word(struct kvm_vcpu *vcpu,
1044 union kvmppc_one_reg val;
1045 int offset = kvmppc_get_vmx_word_offset(vcpu,
1046 vcpu->arch.mmio_vmx_offset);
1047 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
1052 val.vval = VCPU_VSX_VR(vcpu, index);
1053 val.vsx32val[offset] = gpr32;
1054 VCPU_VSX_VR(vcpu, index) = val.vval;
1057 static inline void kvmppc_set_vmx_hword(struct kvm_vcpu *vcpu,
1060 union kvmppc_one_reg val;
1061 int offset = kvmppc_get_vmx_hword_offset(vcpu,
1062 vcpu->arch.mmio_vmx_offset);
1063 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
1068 val.vval = VCPU_VSX_VR(vcpu, index);
1069 val.vsx16val[offset] = gpr16;
1070 VCPU_VSX_VR(vcpu, index) = val.vval;
1073 static inline void kvmppc_set_vmx_byte(struct kvm_vcpu *vcpu,
1076 union kvmppc_one_reg val;
1077 int offset = kvmppc_get_vmx_byte_offset(vcpu,
1078 vcpu->arch.mmio_vmx_offset);
1079 int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK;
1084 val.vval = VCPU_VSX_VR(vcpu, index);
1085 val.vsx8val[offset] = gpr8;
1086 VCPU_VSX_VR(vcpu, index) = val.vval;
1088 #endif /* CONFIG_ALTIVEC */
1090 #ifdef CONFIG_PPC_FPU
1091 static inline u64 sp_to_dp(u32 fprs)
1097 asm ("lfs%U1%X1 0,%1; stfd%U0%X0 0,%0" : "=m"UPD_CONSTR (fprd) : "m"UPD_CONSTR (fprs)
1103 static inline u32 dp_to_sp(u64 fprd)
1109 asm ("lfd%U1%X1 0,%1; stfs%U0%X0 0,%0" : "=m"UPD_CONSTR (fprs) : "m"UPD_CONSTR (fprd)
1116 #define sp_to_dp(x) (x)
1117 #define dp_to_sp(x) (x)
1118 #endif /* CONFIG_PPC_FPU */
1120 static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu)
1122 struct kvm_run *run = vcpu->run;
1125 if (run->mmio.len > sizeof(gpr)) {
1126 printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len);
1130 if (!vcpu->arch.mmio_host_swabbed) {
1131 switch (run->mmio.len) {
1132 case 8: gpr = *(u64 *)run->mmio.data; break;
1133 case 4: gpr = *(u32 *)run->mmio.data; break;
1134 case 2: gpr = *(u16 *)run->mmio.data; break;
1135 case 1: gpr = *(u8 *)run->mmio.data; break;
1138 switch (run->mmio.len) {
1139 case 8: gpr = swab64(*(u64 *)run->mmio.data); break;
1140 case 4: gpr = swab32(*(u32 *)run->mmio.data); break;
1141 case 2: gpr = swab16(*(u16 *)run->mmio.data); break;
1142 case 1: gpr = *(u8 *)run->mmio.data; break;
1146 /* conversion between single and double precision */
1147 if ((vcpu->arch.mmio_sp64_extend) && (run->mmio.len == 4))
1148 gpr = sp_to_dp(gpr);
1150 if (vcpu->arch.mmio_sign_extend) {
1151 switch (run->mmio.len) {
1154 gpr = (s64)(s32)gpr;
1158 gpr = (s64)(s16)gpr;
1166 switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) {
1167 case KVM_MMIO_REG_GPR:
1168 kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr);
1170 case KVM_MMIO_REG_FPR:
1171 if (vcpu->kvm->arch.kvm_ops->giveup_ext)
1172 vcpu->kvm->arch.kvm_ops->giveup_ext(vcpu, MSR_FP);
1174 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
1176 #ifdef CONFIG_PPC_BOOK3S
1177 case KVM_MMIO_REG_QPR:
1178 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
1180 case KVM_MMIO_REG_FQPR:
1181 VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr;
1182 vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr;
1186 case KVM_MMIO_REG_VSX:
1187 if (vcpu->kvm->arch.kvm_ops->giveup_ext)
1188 vcpu->kvm->arch.kvm_ops->giveup_ext(vcpu, MSR_VSX);
1190 if (vcpu->arch.mmio_copy_type == KVMPPC_VSX_COPY_DWORD)
1191 kvmppc_set_vsr_dword(vcpu, gpr);
1192 else if (vcpu->arch.mmio_copy_type == KVMPPC_VSX_COPY_WORD)
1193 kvmppc_set_vsr_word(vcpu, gpr);
1194 else if (vcpu->arch.mmio_copy_type ==
1195 KVMPPC_VSX_COPY_DWORD_LOAD_DUMP)
1196 kvmppc_set_vsr_dword_dump(vcpu, gpr);
1197 else if (vcpu->arch.mmio_copy_type ==
1198 KVMPPC_VSX_COPY_WORD_LOAD_DUMP)
1199 kvmppc_set_vsr_word_dump(vcpu, gpr);
1202 #ifdef CONFIG_ALTIVEC
1203 case KVM_MMIO_REG_VMX:
1204 if (vcpu->kvm->arch.kvm_ops->giveup_ext)
1205 vcpu->kvm->arch.kvm_ops->giveup_ext(vcpu, MSR_VEC);
1207 if (vcpu->arch.mmio_copy_type == KVMPPC_VMX_COPY_DWORD)
1208 kvmppc_set_vmx_dword(vcpu, gpr);
1209 else if (vcpu->arch.mmio_copy_type == KVMPPC_VMX_COPY_WORD)
1210 kvmppc_set_vmx_word(vcpu, gpr);
1211 else if (vcpu->arch.mmio_copy_type ==
1212 KVMPPC_VMX_COPY_HWORD)
1213 kvmppc_set_vmx_hword(vcpu, gpr);
1214 else if (vcpu->arch.mmio_copy_type ==
1215 KVMPPC_VMX_COPY_BYTE)
1216 kvmppc_set_vmx_byte(vcpu, gpr);
1219 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
1220 case KVM_MMIO_REG_NESTED_GPR:
1221 if (kvmppc_need_byteswap(vcpu))
1223 kvm_vcpu_write_guest(vcpu, vcpu->arch.nested_io_gpr, &gpr,
1232 static int __kvmppc_handle_load(struct kvm_vcpu *vcpu,
1233 unsigned int rt, unsigned int bytes,
1234 int is_default_endian, int sign_extend)
1236 struct kvm_run *run = vcpu->run;
1240 /* Pity C doesn't have a logical XOR operator */
1241 if (kvmppc_need_byteswap(vcpu)) {
1242 host_swabbed = is_default_endian;
1244 host_swabbed = !is_default_endian;
1247 if (bytes > sizeof(run->mmio.data)) {
1248 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
1252 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1253 run->mmio.len = bytes;
1254 run->mmio.is_write = 0;
1256 vcpu->arch.io_gpr = rt;
1257 vcpu->arch.mmio_host_swabbed = host_swabbed;
1258 vcpu->mmio_needed = 1;
1259 vcpu->mmio_is_write = 0;
1260 vcpu->arch.mmio_sign_extend = sign_extend;
1262 idx = srcu_read_lock(&vcpu->kvm->srcu);
1264 ret = kvm_io_bus_read(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
1265 bytes, &run->mmio.data);
1267 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1270 kvmppc_complete_mmio_load(vcpu);
1271 vcpu->mmio_needed = 0;
1272 return EMULATE_DONE;
1275 return EMULATE_DO_MMIO;
1278 int kvmppc_handle_load(struct kvm_vcpu *vcpu,
1279 unsigned int rt, unsigned int bytes,
1280 int is_default_endian)
1282 return __kvmppc_handle_load(vcpu, rt, bytes, is_default_endian, 0);
1284 EXPORT_SYMBOL_GPL(kvmppc_handle_load);
1286 /* Same as above, but sign extends */
1287 int kvmppc_handle_loads(struct kvm_vcpu *vcpu,
1288 unsigned int rt, unsigned int bytes,
1289 int is_default_endian)
1291 return __kvmppc_handle_load(vcpu, rt, bytes, is_default_endian, 1);
1295 int kvmppc_handle_vsx_load(struct kvm_vcpu *vcpu,
1296 unsigned int rt, unsigned int bytes,
1297 int is_default_endian, int mmio_sign_extend)
1299 enum emulation_result emulated = EMULATE_DONE;
1301 /* Currently, mmio_vsx_copy_nums only allowed to be 4 or less */
1302 if (vcpu->arch.mmio_vsx_copy_nums > 4)
1303 return EMULATE_FAIL;
1305 while (vcpu->arch.mmio_vsx_copy_nums) {
1306 emulated = __kvmppc_handle_load(vcpu, rt, bytes,
1307 is_default_endian, mmio_sign_extend);
1309 if (emulated != EMULATE_DONE)
1312 vcpu->arch.paddr_accessed += vcpu->run->mmio.len;
1314 vcpu->arch.mmio_vsx_copy_nums--;
1315 vcpu->arch.mmio_vsx_offset++;
1319 #endif /* CONFIG_VSX */
1321 int kvmppc_handle_store(struct kvm_vcpu *vcpu,
1322 u64 val, unsigned int bytes, int is_default_endian)
1324 struct kvm_run *run = vcpu->run;
1325 void *data = run->mmio.data;
1329 /* Pity C doesn't have a logical XOR operator */
1330 if (kvmppc_need_byteswap(vcpu)) {
1331 host_swabbed = is_default_endian;
1333 host_swabbed = !is_default_endian;
1336 if (bytes > sizeof(run->mmio.data)) {
1337 printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__,
1341 run->mmio.phys_addr = vcpu->arch.paddr_accessed;
1342 run->mmio.len = bytes;
1343 run->mmio.is_write = 1;
1344 vcpu->mmio_needed = 1;
1345 vcpu->mmio_is_write = 1;
1347 if ((vcpu->arch.mmio_sp64_extend) && (bytes == 4))
1348 val = dp_to_sp(val);
1350 /* Store the value at the lowest bytes in 'data'. */
1351 if (!host_swabbed) {
1353 case 8: *(u64 *)data = val; break;
1354 case 4: *(u32 *)data = val; break;
1355 case 2: *(u16 *)data = val; break;
1356 case 1: *(u8 *)data = val; break;
1360 case 8: *(u64 *)data = swab64(val); break;
1361 case 4: *(u32 *)data = swab32(val); break;
1362 case 2: *(u16 *)data = swab16(val); break;
1363 case 1: *(u8 *)data = val; break;
1367 idx = srcu_read_lock(&vcpu->kvm->srcu);
1369 ret = kvm_io_bus_write(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr,
1370 bytes, &run->mmio.data);
1372 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1375 vcpu->mmio_needed = 0;
1376 return EMULATE_DONE;
1379 return EMULATE_DO_MMIO;
1381 EXPORT_SYMBOL_GPL(kvmppc_handle_store);
1384 static inline int kvmppc_get_vsr_data(struct kvm_vcpu *vcpu, int rs, u64 *val)
1386 u32 dword_offset, word_offset;
1387 union kvmppc_one_reg reg;
1389 int copy_type = vcpu->arch.mmio_copy_type;
1392 switch (copy_type) {
1393 case KVMPPC_VSX_COPY_DWORD:
1395 kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset);
1397 if (vsx_offset == -1) {
1403 *val = VCPU_VSX_FPR(vcpu, rs, vsx_offset);
1405 reg.vval = VCPU_VSX_VR(vcpu, rs - 32);
1406 *val = reg.vsxval[vsx_offset];
1410 case KVMPPC_VSX_COPY_WORD:
1412 kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset);
1414 if (vsx_offset == -1) {
1420 dword_offset = vsx_offset / 2;
1421 word_offset = vsx_offset % 2;
1422 reg.vsxval[0] = VCPU_VSX_FPR(vcpu, rs, dword_offset);
1423 *val = reg.vsx32val[word_offset];
1425 reg.vval = VCPU_VSX_VR(vcpu, rs - 32);
1426 *val = reg.vsx32val[vsx_offset];
1438 int kvmppc_handle_vsx_store(struct kvm_vcpu *vcpu,
1439 int rs, unsigned int bytes, int is_default_endian)
1442 enum emulation_result emulated = EMULATE_DONE;
1444 vcpu->arch.io_gpr = rs;
1446 /* Currently, mmio_vsx_copy_nums only allowed to be 4 or less */
1447 if (vcpu->arch.mmio_vsx_copy_nums > 4)
1448 return EMULATE_FAIL;
1450 while (vcpu->arch.mmio_vsx_copy_nums) {
1451 if (kvmppc_get_vsr_data(vcpu, rs, &val) == -1)
1452 return EMULATE_FAIL;
1454 emulated = kvmppc_handle_store(vcpu,
1455 val, bytes, is_default_endian);
1457 if (emulated != EMULATE_DONE)
1460 vcpu->arch.paddr_accessed += vcpu->run->mmio.len;
1462 vcpu->arch.mmio_vsx_copy_nums--;
1463 vcpu->arch.mmio_vsx_offset++;
1469 static int kvmppc_emulate_mmio_vsx_loadstore(struct kvm_vcpu *vcpu)
1471 struct kvm_run *run = vcpu->run;
1472 enum emulation_result emulated = EMULATE_FAIL;
1475 vcpu->arch.paddr_accessed += run->mmio.len;
1477 if (!vcpu->mmio_is_write) {
1478 emulated = kvmppc_handle_vsx_load(vcpu, vcpu->arch.io_gpr,
1479 run->mmio.len, 1, vcpu->arch.mmio_sign_extend);
1481 emulated = kvmppc_handle_vsx_store(vcpu,
1482 vcpu->arch.io_gpr, run->mmio.len, 1);
1486 case EMULATE_DO_MMIO:
1487 run->exit_reason = KVM_EXIT_MMIO;
1491 pr_info("KVM: MMIO emulation failed (VSX repeat)\n");
1492 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1493 run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
1502 #endif /* CONFIG_VSX */
1504 #ifdef CONFIG_ALTIVEC
1505 int kvmppc_handle_vmx_load(struct kvm_vcpu *vcpu,
1506 unsigned int rt, unsigned int bytes, int is_default_endian)
1508 enum emulation_result emulated = EMULATE_DONE;
1510 if (vcpu->arch.mmio_vmx_copy_nums > 2)
1511 return EMULATE_FAIL;
1513 while (vcpu->arch.mmio_vmx_copy_nums) {
1514 emulated = __kvmppc_handle_load(vcpu, rt, bytes,
1515 is_default_endian, 0);
1517 if (emulated != EMULATE_DONE)
1520 vcpu->arch.paddr_accessed += vcpu->run->mmio.len;
1521 vcpu->arch.mmio_vmx_copy_nums--;
1522 vcpu->arch.mmio_vmx_offset++;
1528 static int kvmppc_get_vmx_dword(struct kvm_vcpu *vcpu, int index, u64 *val)
1530 union kvmppc_one_reg reg;
1535 kvmppc_get_vmx_dword_offset(vcpu, vcpu->arch.mmio_vmx_offset);
1537 if (vmx_offset == -1)
1540 reg.vval = VCPU_VSX_VR(vcpu, index);
1541 *val = reg.vsxval[vmx_offset];
1546 static int kvmppc_get_vmx_word(struct kvm_vcpu *vcpu, int index, u64 *val)
1548 union kvmppc_one_reg reg;
1553 kvmppc_get_vmx_word_offset(vcpu, vcpu->arch.mmio_vmx_offset);
1555 if (vmx_offset == -1)
1558 reg.vval = VCPU_VSX_VR(vcpu, index);
1559 *val = reg.vsx32val[vmx_offset];
1564 static int kvmppc_get_vmx_hword(struct kvm_vcpu *vcpu, int index, u64 *val)
1566 union kvmppc_one_reg reg;
1571 kvmppc_get_vmx_hword_offset(vcpu, vcpu->arch.mmio_vmx_offset);
1573 if (vmx_offset == -1)
1576 reg.vval = VCPU_VSX_VR(vcpu, index);
1577 *val = reg.vsx16val[vmx_offset];
1582 static int kvmppc_get_vmx_byte(struct kvm_vcpu *vcpu, int index, u64 *val)
1584 union kvmppc_one_reg reg;
1589 kvmppc_get_vmx_byte_offset(vcpu, vcpu->arch.mmio_vmx_offset);
1591 if (vmx_offset == -1)
1594 reg.vval = VCPU_VSX_VR(vcpu, index);
1595 *val = reg.vsx8val[vmx_offset];
1600 int kvmppc_handle_vmx_store(struct kvm_vcpu *vcpu,
1601 unsigned int rs, unsigned int bytes, int is_default_endian)
1604 unsigned int index = rs & KVM_MMIO_REG_MASK;
1605 enum emulation_result emulated = EMULATE_DONE;
1607 if (vcpu->arch.mmio_vmx_copy_nums > 2)
1608 return EMULATE_FAIL;
1610 vcpu->arch.io_gpr = rs;
1612 while (vcpu->arch.mmio_vmx_copy_nums) {
1613 switch (vcpu->arch.mmio_copy_type) {
1614 case KVMPPC_VMX_COPY_DWORD:
1615 if (kvmppc_get_vmx_dword(vcpu, index, &val) == -1)
1616 return EMULATE_FAIL;
1619 case KVMPPC_VMX_COPY_WORD:
1620 if (kvmppc_get_vmx_word(vcpu, index, &val) == -1)
1621 return EMULATE_FAIL;
1623 case KVMPPC_VMX_COPY_HWORD:
1624 if (kvmppc_get_vmx_hword(vcpu, index, &val) == -1)
1625 return EMULATE_FAIL;
1627 case KVMPPC_VMX_COPY_BYTE:
1628 if (kvmppc_get_vmx_byte(vcpu, index, &val) == -1)
1629 return EMULATE_FAIL;
1632 return EMULATE_FAIL;
1635 emulated = kvmppc_handle_store(vcpu, val, bytes,
1637 if (emulated != EMULATE_DONE)
1640 vcpu->arch.paddr_accessed += vcpu->run->mmio.len;
1641 vcpu->arch.mmio_vmx_copy_nums--;
1642 vcpu->arch.mmio_vmx_offset++;
1648 static int kvmppc_emulate_mmio_vmx_loadstore(struct kvm_vcpu *vcpu)
1650 struct kvm_run *run = vcpu->run;
1651 enum emulation_result emulated = EMULATE_FAIL;
1654 vcpu->arch.paddr_accessed += run->mmio.len;
1656 if (!vcpu->mmio_is_write) {
1657 emulated = kvmppc_handle_vmx_load(vcpu,
1658 vcpu->arch.io_gpr, run->mmio.len, 1);
1660 emulated = kvmppc_handle_vmx_store(vcpu,
1661 vcpu->arch.io_gpr, run->mmio.len, 1);
1665 case EMULATE_DO_MMIO:
1666 run->exit_reason = KVM_EXIT_MMIO;
1670 pr_info("KVM: MMIO emulation failed (VMX repeat)\n");
1671 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1672 run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
1681 #endif /* CONFIG_ALTIVEC */
1683 int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1686 union kvmppc_one_reg val;
1689 size = one_reg_size(reg->id);
1690 if (size > sizeof(val))
1693 r = kvmppc_get_one_reg(vcpu, reg->id, &val);
1697 #ifdef CONFIG_ALTIVEC
1698 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1699 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1703 val.vval = vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0];
1705 case KVM_REG_PPC_VSCR:
1706 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1710 val = get_reg_val(reg->id, vcpu->arch.vr.vscr.u[3]);
1712 case KVM_REG_PPC_VRSAVE:
1713 val = get_reg_val(reg->id, vcpu->arch.vrsave);
1715 #endif /* CONFIG_ALTIVEC */
1725 if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size))
1731 int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg)
1734 union kvmppc_one_reg val;
1737 size = one_reg_size(reg->id);
1738 if (size > sizeof(val))
1741 if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size))
1744 r = kvmppc_set_one_reg(vcpu, reg->id, &val);
1748 #ifdef CONFIG_ALTIVEC
1749 case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31:
1750 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1754 vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0] = val.vval;
1756 case KVM_REG_PPC_VSCR:
1757 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1761 vcpu->arch.vr.vscr.u[3] = set_reg_val(reg->id, val);
1763 case KVM_REG_PPC_VRSAVE:
1764 if (!cpu_has_feature(CPU_FTR_ALTIVEC)) {
1768 vcpu->arch.vrsave = set_reg_val(reg->id, val);
1770 #endif /* CONFIG_ALTIVEC */
1780 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
1782 struct kvm_run *run = vcpu->run;
1787 if (vcpu->mmio_needed) {
1788 vcpu->mmio_needed = 0;
1789 if (!vcpu->mmio_is_write)
1790 kvmppc_complete_mmio_load(vcpu);
1792 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1793 vcpu->arch.mmio_vsx_copy_nums--;
1794 vcpu->arch.mmio_vsx_offset++;
1797 if (vcpu->arch.mmio_vsx_copy_nums > 0) {
1798 r = kvmppc_emulate_mmio_vsx_loadstore(vcpu);
1799 if (r == RESUME_HOST) {
1800 vcpu->mmio_needed = 1;
1805 #ifdef CONFIG_ALTIVEC
1806 if (vcpu->arch.mmio_vmx_copy_nums > 0) {
1807 vcpu->arch.mmio_vmx_copy_nums--;
1808 vcpu->arch.mmio_vmx_offset++;
1811 if (vcpu->arch.mmio_vmx_copy_nums > 0) {
1812 r = kvmppc_emulate_mmio_vmx_loadstore(vcpu);
1813 if (r == RESUME_HOST) {
1814 vcpu->mmio_needed = 1;
1819 } else if (vcpu->arch.osi_needed) {
1820 u64 *gprs = run->osi.gprs;
1823 for (i = 0; i < 32; i++)
1824 kvmppc_set_gpr(vcpu, i, gprs[i]);
1825 vcpu->arch.osi_needed = 0;
1826 } else if (vcpu->arch.hcall_needed) {
1829 kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret);
1830 for (i = 0; i < 9; ++i)
1831 kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]);
1832 vcpu->arch.hcall_needed = 0;
1834 } else if (vcpu->arch.epr_needed) {
1835 kvmppc_set_epr(vcpu, run->epr.epr);
1836 vcpu->arch.epr_needed = 0;
1840 kvm_sigset_activate(vcpu);
1842 if (run->immediate_exit)
1845 r = kvmppc_vcpu_run(vcpu);
1847 kvm_sigset_deactivate(vcpu);
1849 #ifdef CONFIG_ALTIVEC
1856 int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq)
1858 if (irq->irq == KVM_INTERRUPT_UNSET) {
1859 kvmppc_core_dequeue_external(vcpu);
1863 kvmppc_core_queue_external(vcpu, irq);
1865 kvm_vcpu_kick(vcpu);
1870 static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
1871 struct kvm_enable_cap *cap)
1879 case KVM_CAP_PPC_OSI:
1881 vcpu->arch.osi_enabled = true;
1883 case KVM_CAP_PPC_PAPR:
1885 vcpu->arch.papr_enabled = true;
1887 case KVM_CAP_PPC_EPR:
1890 vcpu->arch.epr_flags |= KVMPPC_EPR_USER;
1892 vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER;
1895 case KVM_CAP_PPC_BOOKE_WATCHDOG:
1897 vcpu->arch.watchdog_enabled = true;
1900 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
1901 case KVM_CAP_SW_TLB: {
1902 struct kvm_config_tlb cfg;
1903 void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0];
1906 if (copy_from_user(&cfg, user_ptr, sizeof(cfg)))
1909 r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg);
1913 #ifdef CONFIG_KVM_MPIC
1914 case KVM_CAP_IRQ_MPIC: {
1916 struct kvm_device *dev;
1919 f = fdget(cap->args[0]);
1924 dev = kvm_device_from_filp(f.file);
1926 r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]);
1932 #ifdef CONFIG_KVM_XICS
1933 case KVM_CAP_IRQ_XICS: {
1935 struct kvm_device *dev;
1938 f = fdget(cap->args[0]);
1943 dev = kvm_device_from_filp(f.file);
1946 r = kvmppc_xive_connect_vcpu(dev, vcpu, cap->args[1]);
1948 r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]);
1954 #endif /* CONFIG_KVM_XICS */
1955 #ifdef CONFIG_KVM_XIVE
1956 case KVM_CAP_PPC_IRQ_XIVE: {
1958 struct kvm_device *dev;
1961 f = fdget(cap->args[0]);
1966 if (!xive_enabled())
1970 dev = kvm_device_from_filp(f.file);
1972 r = kvmppc_xive_native_connect_vcpu(dev, vcpu,
1978 #endif /* CONFIG_KVM_XIVE */
1979 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
1980 case KVM_CAP_PPC_FWNMI:
1982 if (!is_kvmppc_hv_enabled(vcpu->kvm))
1985 vcpu->kvm->arch.fwnmi_enabled = true;
1987 #endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */
1994 r = kvmppc_sanity_check(vcpu);
1999 bool kvm_arch_intc_initialized(struct kvm *kvm)
2001 #ifdef CONFIG_KVM_MPIC
2005 #ifdef CONFIG_KVM_XICS
2006 if (kvm->arch.xics || kvm->arch.xive)
2012 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
2013 struct kvm_mp_state *mp_state)
2018 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
2019 struct kvm_mp_state *mp_state)
2024 long kvm_arch_vcpu_async_ioctl(struct file *filp,
2025 unsigned int ioctl, unsigned long arg)
2027 struct kvm_vcpu *vcpu = filp->private_data;
2028 void __user *argp = (void __user *)arg;
2030 if (ioctl == KVM_INTERRUPT) {
2031 struct kvm_interrupt irq;
2032 if (copy_from_user(&irq, argp, sizeof(irq)))
2034 return kvm_vcpu_ioctl_interrupt(vcpu, &irq);
2036 return -ENOIOCTLCMD;
2039 long kvm_arch_vcpu_ioctl(struct file *filp,
2040 unsigned int ioctl, unsigned long arg)
2042 struct kvm_vcpu *vcpu = filp->private_data;
2043 void __user *argp = (void __user *)arg;
2047 case KVM_ENABLE_CAP:
2049 struct kvm_enable_cap cap;
2051 if (copy_from_user(&cap, argp, sizeof(cap)))
2054 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
2059 case KVM_SET_ONE_REG:
2060 case KVM_GET_ONE_REG:
2062 struct kvm_one_reg reg;
2064 if (copy_from_user(®, argp, sizeof(reg)))
2066 if (ioctl == KVM_SET_ONE_REG)
2067 r = kvm_vcpu_ioctl_set_one_reg(vcpu, ®);
2069 r = kvm_vcpu_ioctl_get_one_reg(vcpu, ®);
2073 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
2074 case KVM_DIRTY_TLB: {
2075 struct kvm_dirty_tlb dirty;
2077 if (copy_from_user(&dirty, argp, sizeof(dirty)))
2080 r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty);
2093 vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
2095 return VM_FAULT_SIGBUS;
2098 static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo)
2100 u32 inst_nop = 0x60000000;
2101 #ifdef CONFIG_KVM_BOOKE_HV
2102 u32 inst_sc1 = 0x44000022;
2103 pvinfo->hcall[0] = cpu_to_be32(inst_sc1);
2104 pvinfo->hcall[1] = cpu_to_be32(inst_nop);
2105 pvinfo->hcall[2] = cpu_to_be32(inst_nop);
2106 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
2108 u32 inst_lis = 0x3c000000;
2109 u32 inst_ori = 0x60000000;
2110 u32 inst_sc = 0x44000002;
2111 u32 inst_imm_mask = 0xffff;
2114 * The hypercall to get into KVM from within guest context is as
2117 * lis r0, r0, KVM_SC_MAGIC_R0@h
2118 * ori r0, KVM_SC_MAGIC_R0@l
2122 pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask));
2123 pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask));
2124 pvinfo->hcall[2] = cpu_to_be32(inst_sc);
2125 pvinfo->hcall[3] = cpu_to_be32(inst_nop);
2128 pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE;
2133 int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
2136 if (!irqchip_in_kernel(kvm))
2139 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
2140 irq_event->irq, irq_event->level,
2146 int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
2147 struct kvm_enable_cap *cap)
2155 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
2156 case KVM_CAP_PPC_ENABLE_HCALL: {
2157 unsigned long hcall = cap->args[0];
2160 if (hcall > MAX_HCALL_OPCODE || (hcall & 3) ||
2163 if (!kvmppc_book3s_hcall_implemented(kvm, hcall))
2166 set_bit(hcall / 4, kvm->arch.enabled_hcalls);
2168 clear_bit(hcall / 4, kvm->arch.enabled_hcalls);
2172 case KVM_CAP_PPC_SMT: {
2173 unsigned long mode = cap->args[0];
2174 unsigned long flags = cap->args[1];
2177 if (kvm->arch.kvm_ops->set_smt_mode)
2178 r = kvm->arch.kvm_ops->set_smt_mode(kvm, mode, flags);
2182 case KVM_CAP_PPC_NESTED_HV:
2184 if (!is_kvmppc_hv_enabled(kvm) ||
2185 !kvm->arch.kvm_ops->enable_nested)
2187 r = kvm->arch.kvm_ops->enable_nested(kvm);
2190 #if defined(CONFIG_KVM_BOOK3S_HV_POSSIBLE)
2191 case KVM_CAP_PPC_SECURE_GUEST:
2193 if (!is_kvmppc_hv_enabled(kvm) || !kvm->arch.kvm_ops->enable_svm)
2195 r = kvm->arch.kvm_ops->enable_svm(kvm);
2197 case KVM_CAP_PPC_DAWR1:
2199 if (!is_kvmppc_hv_enabled(kvm) || !kvm->arch.kvm_ops->enable_dawr1)
2201 r = kvm->arch.kvm_ops->enable_dawr1(kvm);
2212 #ifdef CONFIG_PPC_BOOK3S_64
2214 * These functions check whether the underlying hardware is safe
2215 * against attacks based on observing the effects of speculatively
2216 * executed instructions, and whether it supplies instructions for
2217 * use in workarounds. The information comes from firmware, either
2218 * via the device tree on powernv platforms or from an hcall on
2219 * pseries platforms.
2221 #ifdef CONFIG_PPC_PSERIES
2222 static int pseries_get_cpu_char(struct kvm_ppc_cpu_char *cp)
2224 struct h_cpu_char_result c;
2227 if (!machine_is(pseries))
2230 rc = plpar_get_cpu_characteristics(&c);
2231 if (rc == H_SUCCESS) {
2232 cp->character = c.character;
2233 cp->behaviour = c.behaviour;
2234 cp->character_mask = KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31 |
2235 KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED |
2236 KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30 |
2237 KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2 |
2238 KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV |
2239 KVM_PPC_CPU_CHAR_BR_HINT_HONOURED |
2240 KVM_PPC_CPU_CHAR_MTTRIG_THR_RECONF |
2241 KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS |
2242 KVM_PPC_CPU_CHAR_BCCTR_FLUSH_ASSIST;
2243 cp->behaviour_mask = KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY |
2244 KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR |
2245 KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR |
2246 KVM_PPC_CPU_BEHAV_FLUSH_COUNT_CACHE;
2251 static int pseries_get_cpu_char(struct kvm_ppc_cpu_char *cp)
2257 static inline bool have_fw_feat(struct device_node *fw_features,
2258 const char *state, const char *name)
2260 struct device_node *np;
2263 np = of_get_child_by_name(fw_features, name);
2265 r = of_property_read_bool(np, state);
2271 static int kvmppc_get_cpu_char(struct kvm_ppc_cpu_char *cp)
2273 struct device_node *np, *fw_features;
2276 memset(cp, 0, sizeof(*cp));
2277 r = pseries_get_cpu_char(cp);
2281 np = of_find_node_by_name(NULL, "ibm,opal");
2283 fw_features = of_get_child_by_name(np, "fw-features");
2287 if (have_fw_feat(fw_features, "enabled",
2288 "inst-spec-barrier-ori31,31,0"))
2289 cp->character |= KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31;
2290 if (have_fw_feat(fw_features, "enabled",
2291 "fw-bcctrl-serialized"))
2292 cp->character |= KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED;
2293 if (have_fw_feat(fw_features, "enabled",
2294 "inst-l1d-flush-ori30,30,0"))
2295 cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30;
2296 if (have_fw_feat(fw_features, "enabled",
2297 "inst-l1d-flush-trig2"))
2298 cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2;
2299 if (have_fw_feat(fw_features, "enabled",
2300 "fw-l1d-thread-split"))
2301 cp->character |= KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV;
2302 if (have_fw_feat(fw_features, "enabled",
2303 "fw-count-cache-disabled"))
2304 cp->character |= KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS;
2305 if (have_fw_feat(fw_features, "enabled",
2306 "fw-count-cache-flush-bcctr2,0,0"))
2307 cp->character |= KVM_PPC_CPU_CHAR_BCCTR_FLUSH_ASSIST;
2308 cp->character_mask = KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31 |
2309 KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED |
2310 KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30 |
2311 KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2 |
2312 KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV |
2313 KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS |
2314 KVM_PPC_CPU_CHAR_BCCTR_FLUSH_ASSIST;
2316 if (have_fw_feat(fw_features, "enabled",
2317 "speculation-policy-favor-security"))
2318 cp->behaviour |= KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY;
2319 if (!have_fw_feat(fw_features, "disabled",
2320 "needs-l1d-flush-msr-pr-0-to-1"))
2321 cp->behaviour |= KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR;
2322 if (!have_fw_feat(fw_features, "disabled",
2323 "needs-spec-barrier-for-bound-checks"))
2324 cp->behaviour |= KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR;
2325 if (have_fw_feat(fw_features, "enabled",
2326 "needs-count-cache-flush-on-context-switch"))
2327 cp->behaviour |= KVM_PPC_CPU_BEHAV_FLUSH_COUNT_CACHE;
2328 cp->behaviour_mask = KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY |
2329 KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR |
2330 KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR |
2331 KVM_PPC_CPU_BEHAV_FLUSH_COUNT_CACHE;
2333 of_node_put(fw_features);
2340 long kvm_arch_vm_ioctl(struct file *filp,
2341 unsigned int ioctl, unsigned long arg)
2343 struct kvm *kvm __maybe_unused = filp->private_data;
2344 void __user *argp = (void __user *)arg;
2348 case KVM_PPC_GET_PVINFO: {
2349 struct kvm_ppc_pvinfo pvinfo;
2350 memset(&pvinfo, 0, sizeof(pvinfo));
2351 r = kvm_vm_ioctl_get_pvinfo(&pvinfo);
2352 if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) {
2359 #ifdef CONFIG_SPAPR_TCE_IOMMU
2360 case KVM_CREATE_SPAPR_TCE_64: {
2361 struct kvm_create_spapr_tce_64 create_tce_64;
2364 if (copy_from_user(&create_tce_64, argp, sizeof(create_tce_64)))
2366 if (create_tce_64.flags) {
2370 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
2373 case KVM_CREATE_SPAPR_TCE: {
2374 struct kvm_create_spapr_tce create_tce;
2375 struct kvm_create_spapr_tce_64 create_tce_64;
2378 if (copy_from_user(&create_tce, argp, sizeof(create_tce)))
2381 create_tce_64.liobn = create_tce.liobn;
2382 create_tce_64.page_shift = IOMMU_PAGE_SHIFT_4K;
2383 create_tce_64.offset = 0;
2384 create_tce_64.size = create_tce.window_size >>
2385 IOMMU_PAGE_SHIFT_4K;
2386 create_tce_64.flags = 0;
2387 r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64);
2391 #ifdef CONFIG_PPC_BOOK3S_64
2392 case KVM_PPC_GET_SMMU_INFO: {
2393 struct kvm_ppc_smmu_info info;
2394 struct kvm *kvm = filp->private_data;
2396 memset(&info, 0, sizeof(info));
2397 r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info);
2398 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
2402 case KVM_PPC_RTAS_DEFINE_TOKEN: {
2403 struct kvm *kvm = filp->private_data;
2405 r = kvm_vm_ioctl_rtas_define_token(kvm, argp);
2408 case KVM_PPC_CONFIGURE_V3_MMU: {
2409 struct kvm *kvm = filp->private_data;
2410 struct kvm_ppc_mmuv3_cfg cfg;
2413 if (!kvm->arch.kvm_ops->configure_mmu)
2416 if (copy_from_user(&cfg, argp, sizeof(cfg)))
2418 r = kvm->arch.kvm_ops->configure_mmu(kvm, &cfg);
2421 case KVM_PPC_GET_RMMU_INFO: {
2422 struct kvm *kvm = filp->private_data;
2423 struct kvm_ppc_rmmu_info info;
2426 if (!kvm->arch.kvm_ops->get_rmmu_info)
2428 r = kvm->arch.kvm_ops->get_rmmu_info(kvm, &info);
2429 if (r >= 0 && copy_to_user(argp, &info, sizeof(info)))
2433 case KVM_PPC_GET_CPU_CHAR: {
2434 struct kvm_ppc_cpu_char cpuchar;
2436 r = kvmppc_get_cpu_char(&cpuchar);
2437 if (r >= 0 && copy_to_user(argp, &cpuchar, sizeof(cpuchar)))
2441 case KVM_PPC_SVM_OFF: {
2442 struct kvm *kvm = filp->private_data;
2445 if (!kvm->arch.kvm_ops->svm_off)
2448 r = kvm->arch.kvm_ops->svm_off(kvm);
2452 struct kvm *kvm = filp->private_data;
2453 r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg);
2455 #else /* CONFIG_PPC_BOOK3S_64 */
2464 static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)];
2465 static unsigned long nr_lpids;
2467 long kvmppc_alloc_lpid(void)
2472 lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS);
2473 if (lpid >= nr_lpids) {
2474 pr_err("%s: No LPIDs free\n", __func__);
2477 } while (test_and_set_bit(lpid, lpid_inuse));
2481 EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid);
2483 void kvmppc_claim_lpid(long lpid)
2485 set_bit(lpid, lpid_inuse);
2487 EXPORT_SYMBOL_GPL(kvmppc_claim_lpid);
2489 void kvmppc_free_lpid(long lpid)
2491 clear_bit(lpid, lpid_inuse);
2493 EXPORT_SYMBOL_GPL(kvmppc_free_lpid);
2495 void kvmppc_init_lpid(unsigned long nr_lpids_param)
2497 nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param);
2498 memset(lpid_inuse, 0, sizeof(lpid_inuse));
2500 EXPORT_SYMBOL_GPL(kvmppc_init_lpid);
2502 int kvm_arch_init(void *opaque)
2507 EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ppc_instr);