2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15 * Copyright IBM Corp. 2007
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
21 #include <linux/errno.h>
22 #include <linux/err.h>
23 #include <linux/kvm_host.h>
24 #include <linux/vmalloc.h>
25 #include <linux/hrtimer.h>
27 #include <linux/slab.h>
28 #include <asm/cputable.h>
29 #include <asm/uaccess.h>
30 #include <asm/kvm_ppc.h>
31 #include <asm/tlbflush.h>
32 #include <asm/cputhreads.h>
33 #include <asm/irqflags.h>
35 #include "../mm/mmu_decl.h"
37 #define CREATE_TRACE_POINTS
40 int kvm_arch_vcpu_runnable(struct kvm_vcpu
*v
)
42 return !!(v
->arch
.pending_exceptions
) ||
46 int kvm_arch_vcpu_should_kick(struct kvm_vcpu
*vcpu
)
51 #ifndef CONFIG_KVM_BOOK3S_64_HV
53 * Common checks before entering the guest world. Call with interrupts
58 * == 1 if we're ready to go into guest state
59 * <= 0 if we need to go back to the host with return value
61 int kvmppc_prepare_to_enter(struct kvm_vcpu
*vcpu
)
65 WARN_ON_ONCE(!irqs_disabled());
74 if (signal_pending(current
)) {
75 kvmppc_account_exit(vcpu
, SIGNAL_EXITS
);
76 vcpu
->run
->exit_reason
= KVM_EXIT_INTR
;
81 vcpu
->mode
= IN_GUEST_MODE
;
84 * Reading vcpu->requests must happen after setting vcpu->mode,
85 * so we don't miss a request because the requester sees
86 * OUTSIDE_GUEST_MODE and assumes we'll be checking requests
87 * before next entering the guest (and thus doesn't IPI).
92 /* Make sure we process requests preemptable */
94 trace_kvm_check_requests(vcpu
);
95 r
= kvmppc_core_check_requests(vcpu
);
102 if (kvmppc_core_prepare_to_enter(vcpu
)) {
103 /* interrupts got enabled in between, so we
104 are back at square 1 */
111 if (lazy_irq_pending()) {
112 /* Got an interrupt in between, try again */
128 #endif /* CONFIG_KVM_BOOK3S_64_HV */
130 int kvmppc_kvm_pv(struct kvm_vcpu
*vcpu
)
132 int nr
= kvmppc_get_gpr(vcpu
, 11);
134 unsigned long __maybe_unused param1
= kvmppc_get_gpr(vcpu
, 3);
135 unsigned long __maybe_unused param2
= kvmppc_get_gpr(vcpu
, 4);
136 unsigned long __maybe_unused param3
= kvmppc_get_gpr(vcpu
, 5);
137 unsigned long __maybe_unused param4
= kvmppc_get_gpr(vcpu
, 6);
138 unsigned long r2
= 0;
140 if (!(vcpu
->arch
.shared
->msr
& MSR_SF
)) {
142 param1
&= 0xffffffff;
143 param2
&= 0xffffffff;
144 param3
&= 0xffffffff;
145 param4
&= 0xffffffff;
149 case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE
):
151 vcpu
->arch
.magic_page_pa
= param1
;
152 vcpu
->arch
.magic_page_ea
= param2
;
154 r2
= KVM_MAGIC_FEAT_SR
| KVM_MAGIC_FEAT_MAS0_TO_SPRG7
;
159 case KVM_HCALL_TOKEN(KVM_HC_FEATURES
):
161 #if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2)
162 /* XXX Missing magic page on 44x */
163 r2
|= (1 << KVM_FEATURE_MAGIC_PAGE
);
166 /* Second return value is in r4 */
168 case EV_HCALL_TOKEN(EV_IDLE
):
170 kvm_vcpu_block(vcpu
);
171 clear_bit(KVM_REQ_UNHALT
, &vcpu
->requests
);
174 r
= EV_UNIMPLEMENTED
;
178 kvmppc_set_gpr(vcpu
, 4, r2
);
183 int kvmppc_sanity_check(struct kvm_vcpu
*vcpu
)
187 /* We have to know what CPU to virtualize */
191 /* PAPR only works with book3s_64 */
192 if ((vcpu
->arch
.cpu_type
!= KVM_CPU_3S_64
) && vcpu
->arch
.papr_enabled
)
195 #ifdef CONFIG_KVM_BOOK3S_64_HV
196 /* HV KVM can only do PAPR mode for now */
197 if (!vcpu
->arch
.papr_enabled
)
201 #ifdef CONFIG_KVM_BOOKE_HV
202 if (!cpu_has_feature(CPU_FTR_EMB_HV
))
210 return r
? 0 : -EINVAL
;
213 int kvmppc_emulate_mmio(struct kvm_run
*run
, struct kvm_vcpu
*vcpu
)
215 enum emulation_result er
;
218 er
= kvmppc_emulate_instruction(run
, vcpu
);
221 /* Future optimization: only reload non-volatiles if they were
222 * actually modified. */
225 case EMULATE_DO_MMIO
:
226 run
->exit_reason
= KVM_EXIT_MMIO
;
227 /* We must reload nonvolatiles because "update" load/store
228 * instructions modify register state. */
229 /* Future optimization: only reload non-volatiles if they were
230 * actually modified. */
234 /* XXX Deliver Program interrupt to guest. */
235 printk(KERN_EMERG
"%s: emulation failed (%08x)\n", __func__
,
236 kvmppc_get_last_inst(vcpu
));
246 int kvm_arch_hardware_enable(void *garbage
)
251 void kvm_arch_hardware_disable(void *garbage
)
255 int kvm_arch_hardware_setup(void)
260 void kvm_arch_hardware_unsetup(void)
264 void kvm_arch_check_processor_compat(void *rtn
)
266 *(int *)rtn
= kvmppc_core_check_processor_compat();
269 int kvm_arch_init_vm(struct kvm
*kvm
, unsigned long type
)
274 return kvmppc_core_init_vm(kvm
);
277 void kvm_arch_destroy_vm(struct kvm
*kvm
)
280 struct kvm_vcpu
*vcpu
;
282 kvm_for_each_vcpu(i
, vcpu
, kvm
)
283 kvm_arch_vcpu_free(vcpu
);
285 mutex_lock(&kvm
->lock
);
286 for (i
= 0; i
< atomic_read(&kvm
->online_vcpus
); i
++)
287 kvm
->vcpus
[i
] = NULL
;
289 atomic_set(&kvm
->online_vcpus
, 0);
291 kvmppc_core_destroy_vm(kvm
);
293 mutex_unlock(&kvm
->lock
);
296 void kvm_arch_sync_events(struct kvm
*kvm
)
300 int kvm_dev_ioctl_check_extension(long ext
)
306 case KVM_CAP_PPC_BOOKE_SREGS
:
307 case KVM_CAP_PPC_BOOKE_WATCHDOG
:
309 case KVM_CAP_PPC_SEGSTATE
:
310 case KVM_CAP_PPC_HIOR
:
311 case KVM_CAP_PPC_PAPR
:
313 case KVM_CAP_PPC_UNSET_IRQ
:
314 case KVM_CAP_PPC_IRQ_LEVEL
:
315 case KVM_CAP_ENABLE_CAP
:
316 case KVM_CAP_ONE_REG
:
317 case KVM_CAP_IOEVENTFD
:
320 #ifndef CONFIG_KVM_BOOK3S_64_HV
321 case KVM_CAP_PPC_PAIRED_SINGLES
:
322 case KVM_CAP_PPC_OSI
:
323 case KVM_CAP_PPC_GET_PVINFO
:
324 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
329 case KVM_CAP_COALESCED_MMIO
:
330 r
= KVM_COALESCED_MMIO_PAGE_OFFSET
;
333 #ifdef CONFIG_PPC_BOOK3S_64
334 case KVM_CAP_SPAPR_TCE
:
335 case KVM_CAP_PPC_ALLOC_HTAB
:
338 #endif /* CONFIG_PPC_BOOK3S_64 */
339 #ifdef CONFIG_KVM_BOOK3S_64_HV
340 case KVM_CAP_PPC_SMT
:
341 r
= threads_per_core
;
343 case KVM_CAP_PPC_RMA
:
345 /* PPC970 requires an RMA */
346 if (cpu_has_feature(CPU_FTR_ARCH_201
))
350 case KVM_CAP_SYNC_MMU
:
351 #ifdef CONFIG_KVM_BOOK3S_64_HV
352 r
= cpu_has_feature(CPU_FTR_ARCH_206
) ? 1 : 0;
353 #elif defined(KVM_ARCH_WANT_MMU_NOTIFIER)
359 #ifdef CONFIG_KVM_BOOK3S_64_HV
360 case KVM_CAP_PPC_HTAB_FD
:
365 case KVM_CAP_NR_VCPUS
:
367 * Recommending a number of CPUs is somewhat arbitrary; we
368 * return the number of present CPUs for -HV (since a host
369 * will have secondary threads "offline"), and for other KVM
370 * implementations just count online CPUs.
372 #ifdef CONFIG_KVM_BOOK3S_64_HV
373 r
= num_present_cpus();
375 r
= num_online_cpus();
378 case KVM_CAP_MAX_VCPUS
:
381 #ifdef CONFIG_PPC_BOOK3S_64
382 case KVM_CAP_PPC_GET_SMMU_INFO
:
394 long kvm_arch_dev_ioctl(struct file
*filp
,
395 unsigned int ioctl
, unsigned long arg
)
400 void kvm_arch_free_memslot(struct kvm_memory_slot
*free
,
401 struct kvm_memory_slot
*dont
)
403 kvmppc_core_free_memslot(free
, dont
);
406 int kvm_arch_create_memslot(struct kvm_memory_slot
*slot
, unsigned long npages
)
408 return kvmppc_core_create_memslot(slot
, npages
);
411 int kvm_arch_prepare_memory_region(struct kvm
*kvm
,
412 struct kvm_memory_slot
*memslot
,
413 struct kvm_memory_slot old
,
414 struct kvm_userspace_memory_region
*mem
,
417 return kvmppc_core_prepare_memory_region(kvm
, memslot
, mem
);
420 void kvm_arch_commit_memory_region(struct kvm
*kvm
,
421 struct kvm_userspace_memory_region
*mem
,
422 struct kvm_memory_slot old
,
425 kvmppc_core_commit_memory_region(kvm
, mem
, old
);
428 void kvm_arch_flush_shadow_all(struct kvm
*kvm
)
432 void kvm_arch_flush_shadow_memslot(struct kvm
*kvm
,
433 struct kvm_memory_slot
*slot
)
435 kvmppc_core_flush_memslot(kvm
, slot
);
438 struct kvm_vcpu
*kvm_arch_vcpu_create(struct kvm
*kvm
, unsigned int id
)
440 struct kvm_vcpu
*vcpu
;
441 vcpu
= kvmppc_core_vcpu_create(kvm
, id
);
443 vcpu
->arch
.wqp
= &vcpu
->wq
;
444 kvmppc_create_vcpu_debugfs(vcpu
, id
);
449 int kvm_arch_vcpu_postcreate(struct kvm_vcpu
*vcpu
)
454 void kvm_arch_vcpu_free(struct kvm_vcpu
*vcpu
)
456 /* Make sure we're not using the vcpu anymore */
457 hrtimer_cancel(&vcpu
->arch
.dec_timer
);
458 tasklet_kill(&vcpu
->arch
.tasklet
);
460 kvmppc_remove_vcpu_debugfs(vcpu
);
461 kvmppc_core_vcpu_free(vcpu
);
464 void kvm_arch_vcpu_destroy(struct kvm_vcpu
*vcpu
)
466 kvm_arch_vcpu_free(vcpu
);
469 int kvm_cpu_has_pending_timer(struct kvm_vcpu
*vcpu
)
471 return kvmppc_core_pending_dec(vcpu
);
475 * low level hrtimer wake routine. Because this runs in hardirq context
476 * we schedule a tasklet to do the real work.
478 enum hrtimer_restart
kvmppc_decrementer_wakeup(struct hrtimer
*timer
)
480 struct kvm_vcpu
*vcpu
;
482 vcpu
= container_of(timer
, struct kvm_vcpu
, arch
.dec_timer
);
483 tasklet_schedule(&vcpu
->arch
.tasklet
);
485 return HRTIMER_NORESTART
;
488 int kvm_arch_vcpu_init(struct kvm_vcpu
*vcpu
)
492 hrtimer_init(&vcpu
->arch
.dec_timer
, CLOCK_REALTIME
, HRTIMER_MODE_ABS
);
493 tasklet_init(&vcpu
->arch
.tasklet
, kvmppc_decrementer_func
, (ulong
)vcpu
);
494 vcpu
->arch
.dec_timer
.function
= kvmppc_decrementer_wakeup
;
495 vcpu
->arch
.dec_expires
= ~(u64
)0;
497 #ifdef CONFIG_KVM_EXIT_TIMING
498 mutex_init(&vcpu
->arch
.exit_timing_lock
);
500 ret
= kvmppc_subarch_vcpu_init(vcpu
);
504 void kvm_arch_vcpu_uninit(struct kvm_vcpu
*vcpu
)
506 kvmppc_mmu_destroy(vcpu
);
507 kvmppc_subarch_vcpu_uninit(vcpu
);
510 void kvm_arch_vcpu_load(struct kvm_vcpu
*vcpu
, int cpu
)
514 * vrsave (formerly usprg0) isn't used by Linux, but may
515 * be used by the guest.
517 * On non-booke this is associated with Altivec and
518 * is handled by code in book3s.c.
520 mtspr(SPRN_VRSAVE
, vcpu
->arch
.vrsave
);
522 kvmppc_core_vcpu_load(vcpu
, cpu
);
525 void kvm_arch_vcpu_put(struct kvm_vcpu
*vcpu
)
527 kvmppc_core_vcpu_put(vcpu
);
529 vcpu
->arch
.vrsave
= mfspr(SPRN_VRSAVE
);
533 int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu
*vcpu
,
534 struct kvm_guest_debug
*dbg
)
539 static void kvmppc_complete_dcr_load(struct kvm_vcpu
*vcpu
,
542 kvmppc_set_gpr(vcpu
, vcpu
->arch
.io_gpr
, run
->dcr
.data
);
545 static void kvmppc_complete_mmio_load(struct kvm_vcpu
*vcpu
,
548 u64
uninitialized_var(gpr
);
550 if (run
->mmio
.len
> sizeof(gpr
)) {
551 printk(KERN_ERR
"bad MMIO length: %d\n", run
->mmio
.len
);
555 if (vcpu
->arch
.mmio_is_bigendian
) {
556 switch (run
->mmio
.len
) {
557 case 8: gpr
= *(u64
*)run
->mmio
.data
; break;
558 case 4: gpr
= *(u32
*)run
->mmio
.data
; break;
559 case 2: gpr
= *(u16
*)run
->mmio
.data
; break;
560 case 1: gpr
= *(u8
*)run
->mmio
.data
; break;
563 /* Convert BE data from userland back to LE. */
564 switch (run
->mmio
.len
) {
565 case 4: gpr
= ld_le32((u32
*)run
->mmio
.data
); break;
566 case 2: gpr
= ld_le16((u16
*)run
->mmio
.data
); break;
567 case 1: gpr
= *(u8
*)run
->mmio
.data
; break;
571 if (vcpu
->arch
.mmio_sign_extend
) {
572 switch (run
->mmio
.len
) {
587 kvmppc_set_gpr(vcpu
, vcpu
->arch
.io_gpr
, gpr
);
589 switch (vcpu
->arch
.io_gpr
& KVM_MMIO_REG_EXT_MASK
) {
590 case KVM_MMIO_REG_GPR
:
591 kvmppc_set_gpr(vcpu
, vcpu
->arch
.io_gpr
, gpr
);
593 case KVM_MMIO_REG_FPR
:
594 vcpu
->arch
.fpr
[vcpu
->arch
.io_gpr
& KVM_MMIO_REG_MASK
] = gpr
;
596 #ifdef CONFIG_PPC_BOOK3S
597 case KVM_MMIO_REG_QPR
:
598 vcpu
->arch
.qpr
[vcpu
->arch
.io_gpr
& KVM_MMIO_REG_MASK
] = gpr
;
600 case KVM_MMIO_REG_FQPR
:
601 vcpu
->arch
.fpr
[vcpu
->arch
.io_gpr
& KVM_MMIO_REG_MASK
] = gpr
;
602 vcpu
->arch
.qpr
[vcpu
->arch
.io_gpr
& KVM_MMIO_REG_MASK
] = gpr
;
610 int kvmppc_handle_load(struct kvm_run
*run
, struct kvm_vcpu
*vcpu
,
611 unsigned int rt
, unsigned int bytes
, int is_bigendian
)
613 if (bytes
> sizeof(run
->mmio
.data
)) {
614 printk(KERN_ERR
"%s: bad MMIO length: %d\n", __func__
,
618 run
->mmio
.phys_addr
= vcpu
->arch
.paddr_accessed
;
619 run
->mmio
.len
= bytes
;
620 run
->mmio
.is_write
= 0;
622 vcpu
->arch
.io_gpr
= rt
;
623 vcpu
->arch
.mmio_is_bigendian
= is_bigendian
;
624 vcpu
->mmio_needed
= 1;
625 vcpu
->mmio_is_write
= 0;
626 vcpu
->arch
.mmio_sign_extend
= 0;
628 if (!kvm_io_bus_read(vcpu
->kvm
, KVM_MMIO_BUS
, run
->mmio
.phys_addr
,
629 bytes
, &run
->mmio
.data
)) {
630 kvmppc_complete_mmio_load(vcpu
, run
);
631 vcpu
->mmio_needed
= 0;
635 return EMULATE_DO_MMIO
;
638 /* Same as above, but sign extends */
639 int kvmppc_handle_loads(struct kvm_run
*run
, struct kvm_vcpu
*vcpu
,
640 unsigned int rt
, unsigned int bytes
, int is_bigendian
)
644 vcpu
->arch
.mmio_sign_extend
= 1;
645 r
= kvmppc_handle_load(run
, vcpu
, rt
, bytes
, is_bigendian
);
650 int kvmppc_handle_store(struct kvm_run
*run
, struct kvm_vcpu
*vcpu
,
651 u64 val
, unsigned int bytes
, int is_bigendian
)
653 void *data
= run
->mmio
.data
;
655 if (bytes
> sizeof(run
->mmio
.data
)) {
656 printk(KERN_ERR
"%s: bad MMIO length: %d\n", __func__
,
660 run
->mmio
.phys_addr
= vcpu
->arch
.paddr_accessed
;
661 run
->mmio
.len
= bytes
;
662 run
->mmio
.is_write
= 1;
663 vcpu
->mmio_needed
= 1;
664 vcpu
->mmio_is_write
= 1;
666 /* Store the value at the lowest bytes in 'data'. */
669 case 8: *(u64
*)data
= val
; break;
670 case 4: *(u32
*)data
= val
; break;
671 case 2: *(u16
*)data
= val
; break;
672 case 1: *(u8
*)data
= val
; break;
675 /* Store LE value into 'data'. */
677 case 4: st_le32(data
, val
); break;
678 case 2: st_le16(data
, val
); break;
679 case 1: *(u8
*)data
= val
; break;
683 if (!kvm_io_bus_write(vcpu
->kvm
, KVM_MMIO_BUS
, run
->mmio
.phys_addr
,
684 bytes
, &run
->mmio
.data
)) {
685 kvmppc_complete_mmio_load(vcpu
, run
);
686 vcpu
->mmio_needed
= 0;
690 return EMULATE_DO_MMIO
;
693 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu
*vcpu
, struct kvm_run
*run
)
698 if (vcpu
->sigset_active
)
699 sigprocmask(SIG_SETMASK
, &vcpu
->sigset
, &sigsaved
);
701 if (vcpu
->mmio_needed
) {
702 if (!vcpu
->mmio_is_write
)
703 kvmppc_complete_mmio_load(vcpu
, run
);
704 vcpu
->mmio_needed
= 0;
705 } else if (vcpu
->arch
.dcr_needed
) {
706 if (!vcpu
->arch
.dcr_is_write
)
707 kvmppc_complete_dcr_load(vcpu
, run
);
708 vcpu
->arch
.dcr_needed
= 0;
709 } else if (vcpu
->arch
.osi_needed
) {
710 u64
*gprs
= run
->osi
.gprs
;
713 for (i
= 0; i
< 32; i
++)
714 kvmppc_set_gpr(vcpu
, i
, gprs
[i
]);
715 vcpu
->arch
.osi_needed
= 0;
716 } else if (vcpu
->arch
.hcall_needed
) {
719 kvmppc_set_gpr(vcpu
, 3, run
->papr_hcall
.ret
);
720 for (i
= 0; i
< 9; ++i
)
721 kvmppc_set_gpr(vcpu
, 4 + i
, run
->papr_hcall
.args
[i
]);
722 vcpu
->arch
.hcall_needed
= 0;
725 r
= kvmppc_vcpu_run(run
, vcpu
);
727 if (vcpu
->sigset_active
)
728 sigprocmask(SIG_SETMASK
, &sigsaved
, NULL
);
733 int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu
*vcpu
, struct kvm_interrupt
*irq
)
735 if (irq
->irq
== KVM_INTERRUPT_UNSET
) {
736 kvmppc_core_dequeue_external(vcpu
, irq
);
740 kvmppc_core_queue_external(vcpu
, irq
);
747 static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu
*vcpu
,
748 struct kvm_enable_cap
*cap
)
756 case KVM_CAP_PPC_OSI
:
758 vcpu
->arch
.osi_enabled
= true;
760 case KVM_CAP_PPC_PAPR
:
762 vcpu
->arch
.papr_enabled
= true;
765 case KVM_CAP_PPC_BOOKE_WATCHDOG
:
767 vcpu
->arch
.watchdog_enabled
= true;
770 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
771 case KVM_CAP_SW_TLB
: {
772 struct kvm_config_tlb cfg
;
773 void __user
*user_ptr
= (void __user
*)(uintptr_t)cap
->args
[0];
776 if (copy_from_user(&cfg
, user_ptr
, sizeof(cfg
)))
779 r
= kvm_vcpu_ioctl_config_tlb(vcpu
, &cfg
);
789 r
= kvmppc_sanity_check(vcpu
);
794 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu
*vcpu
,
795 struct kvm_mp_state
*mp_state
)
800 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu
*vcpu
,
801 struct kvm_mp_state
*mp_state
)
806 long kvm_arch_vcpu_ioctl(struct file
*filp
,
807 unsigned int ioctl
, unsigned long arg
)
809 struct kvm_vcpu
*vcpu
= filp
->private_data
;
810 void __user
*argp
= (void __user
*)arg
;
814 case KVM_INTERRUPT
: {
815 struct kvm_interrupt irq
;
817 if (copy_from_user(&irq
, argp
, sizeof(irq
)))
819 r
= kvm_vcpu_ioctl_interrupt(vcpu
, &irq
);
825 struct kvm_enable_cap cap
;
827 if (copy_from_user(&cap
, argp
, sizeof(cap
)))
829 r
= kvm_vcpu_ioctl_enable_cap(vcpu
, &cap
);
833 case KVM_SET_ONE_REG
:
834 case KVM_GET_ONE_REG
:
836 struct kvm_one_reg reg
;
838 if (copy_from_user(®
, argp
, sizeof(reg
)))
840 if (ioctl
== KVM_SET_ONE_REG
)
841 r
= kvm_vcpu_ioctl_set_one_reg(vcpu
, ®
);
843 r
= kvm_vcpu_ioctl_get_one_reg(vcpu
, ®
);
847 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
848 case KVM_DIRTY_TLB
: {
849 struct kvm_dirty_tlb dirty
;
851 if (copy_from_user(&dirty
, argp
, sizeof(dirty
)))
853 r
= kvm_vcpu_ioctl_dirty_tlb(vcpu
, &dirty
);
865 int kvm_arch_vcpu_fault(struct kvm_vcpu
*vcpu
, struct vm_fault
*vmf
)
867 return VM_FAULT_SIGBUS
;
870 static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo
*pvinfo
)
872 u32 inst_nop
= 0x60000000;
873 #ifdef CONFIG_KVM_BOOKE_HV
874 u32 inst_sc1
= 0x44000022;
875 pvinfo
->hcall
[0] = inst_sc1
;
876 pvinfo
->hcall
[1] = inst_nop
;
877 pvinfo
->hcall
[2] = inst_nop
;
878 pvinfo
->hcall
[3] = inst_nop
;
880 u32 inst_lis
= 0x3c000000;
881 u32 inst_ori
= 0x60000000;
882 u32 inst_sc
= 0x44000002;
883 u32 inst_imm_mask
= 0xffff;
886 * The hypercall to get into KVM from within guest context is as
889 * lis r0, r0, KVM_SC_MAGIC_R0@h
890 * ori r0, KVM_SC_MAGIC_R0@l
894 pvinfo
->hcall
[0] = inst_lis
| ((KVM_SC_MAGIC_R0
>> 16) & inst_imm_mask
);
895 pvinfo
->hcall
[1] = inst_ori
| (KVM_SC_MAGIC_R0
& inst_imm_mask
);
896 pvinfo
->hcall
[2] = inst_sc
;
897 pvinfo
->hcall
[3] = inst_nop
;
900 pvinfo
->flags
= KVM_PPC_PVINFO_FLAGS_EV_IDLE
;
905 long kvm_arch_vm_ioctl(struct file
*filp
,
906 unsigned int ioctl
, unsigned long arg
)
908 void __user
*argp
= (void __user
*)arg
;
912 case KVM_PPC_GET_PVINFO
: {
913 struct kvm_ppc_pvinfo pvinfo
;
914 memset(&pvinfo
, 0, sizeof(pvinfo
));
915 r
= kvm_vm_ioctl_get_pvinfo(&pvinfo
);
916 if (copy_to_user(argp
, &pvinfo
, sizeof(pvinfo
))) {
923 #ifdef CONFIG_PPC_BOOK3S_64
924 case KVM_CREATE_SPAPR_TCE
: {
925 struct kvm_create_spapr_tce create_tce
;
926 struct kvm
*kvm
= filp
->private_data
;
929 if (copy_from_user(&create_tce
, argp
, sizeof(create_tce
)))
931 r
= kvm_vm_ioctl_create_spapr_tce(kvm
, &create_tce
);
934 #endif /* CONFIG_PPC_BOOK3S_64 */
936 #ifdef CONFIG_KVM_BOOK3S_64_HV
937 case KVM_ALLOCATE_RMA
: {
938 struct kvm
*kvm
= filp
->private_data
;
939 struct kvm_allocate_rma rma
;
941 r
= kvm_vm_ioctl_allocate_rma(kvm
, &rma
);
942 if (r
>= 0 && copy_to_user(argp
, &rma
, sizeof(rma
)))
947 case KVM_PPC_ALLOCATE_HTAB
: {
948 struct kvm
*kvm
= filp
->private_data
;
952 if (get_user(htab_order
, (u32 __user
*)argp
))
954 r
= kvmppc_alloc_reset_hpt(kvm
, &htab_order
);
958 if (put_user(htab_order
, (u32 __user
*)argp
))
964 case KVM_PPC_GET_HTAB_FD
: {
965 struct kvm
*kvm
= filp
->private_data
;
966 struct kvm_get_htab_fd ghf
;
969 if (copy_from_user(&ghf
, argp
, sizeof(ghf
)))
971 r
= kvm_vm_ioctl_get_htab_fd(kvm
, &ghf
);
974 #endif /* CONFIG_KVM_BOOK3S_64_HV */
976 #ifdef CONFIG_PPC_BOOK3S_64
977 case KVM_PPC_GET_SMMU_INFO
: {
978 struct kvm
*kvm
= filp
->private_data
;
979 struct kvm_ppc_smmu_info info
;
981 memset(&info
, 0, sizeof(info
));
982 r
= kvm_vm_ioctl_get_smmu_info(kvm
, &info
);
983 if (r
>= 0 && copy_to_user(argp
, &info
, sizeof(info
)))
987 #endif /* CONFIG_PPC_BOOK3S_64 */
996 static unsigned long lpid_inuse
[BITS_TO_LONGS(KVMPPC_NR_LPIDS
)];
997 static unsigned long nr_lpids
;
999 long kvmppc_alloc_lpid(void)
1004 lpid
= find_first_zero_bit(lpid_inuse
, KVMPPC_NR_LPIDS
);
1005 if (lpid
>= nr_lpids
) {
1006 pr_err("%s: No LPIDs free\n", __func__
);
1009 } while (test_and_set_bit(lpid
, lpid_inuse
));
1014 void kvmppc_claim_lpid(long lpid
)
1016 set_bit(lpid
, lpid_inuse
);
1019 void kvmppc_free_lpid(long lpid
)
1021 clear_bit(lpid
, lpid_inuse
);
1024 void kvmppc_init_lpid(unsigned long nr_lpids_param
)
1026 nr_lpids
= min_t(unsigned long, KVMPPC_NR_LPIDS
, nr_lpids_param
);
1027 memset(lpid_inuse
, 0, sizeof(lpid_inuse
));
1030 int kvm_arch_init(void *opaque
)
1035 void kvm_arch_exit(void)