From: Christoffer Dall <cdall@xxxxxxxxxxxxxxx> When the guest executes a WFI instruction the operation is trapped to KVM, which emulates the instruction in software. There is no correlation between a guest executing a WFI instruction and actually puttin the hardware into a low-power mode, since a KVM guest is essentially a process and the WFI instruction can be seen as 'sleep' call from this process. Therefore, we flag the VCPU to be in wait_for_interrupts mode and call the main KVM function kvm_vcpu_block() function. This function will put the thread on a wait-queue and call schedule. When an interrupt comes in through KVM_IRQ_LINE (see previous patch) we signal the VCPU thread and unflag the VCPU to no longer wait for interrupts. All calls to kvm_arch_vcpu_ioctl_run() result in a call to kvm_vcpu_block() as long as the VCPU is in wfi-mode. Signed-off-by: Christoffer Dall <c.dall@xxxxxxxxxxxxxxxxxxxxxx> --- arch/arm/kvm/arm.c | 33 ++++++++++++++++++++++++--------- arch/arm/kvm/emulate.c | 12 ++++++++++++ arch/arm/kvm/trace.h | 15 +++++++++++++++ 3 files changed, 51 insertions(+), 9 deletions(-) diff --git a/arch/arm/kvm/arm.c b/arch/arm/kvm/arm.c index e5348a7..00215a1 100644 --- a/arch/arm/kvm/arm.c +++ b/arch/arm/kvm/arm.c @@ -302,9 +302,16 @@ int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu, return -EINVAL; } +/** + * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled + * @v: The VCPU pointer + * + * If the guest CPU is not waiting for interrupts then it is by definition + * runnable. + */ int kvm_arch_vcpu_runnable(struct kvm_vcpu *v) { - return 0; + return !v->arch.wait_for_interrupts; } static inline int handle_exit(struct kvm_vcpu *vcpu, struct kvm_run *run, @@ -379,6 +386,9 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run) int ret; for (;;) { + if (vcpu->arch.wait_for_interrupts) + goto wait_for_interrupts; + if (run->exit_reason == KVM_EXIT_MMIO) { ret = kvm_handle_mmio_return(vcpu, vcpu->run); if (ret) @@ -408,16 +418,19 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run) if (run->exit_reason == KVM_EXIT_MMIO) break; - if (need_resched()) { - vcpu_put(vcpu); - schedule(); - vcpu_load(vcpu); - } - - if (signal_pending(current) && !(run->exit_reason)) { - run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN; + if (need_resched()) + kvm_resched(vcpu); +wait_for_interrupts: + if (signal_pending(current)) { + if (!run->exit_reason) { + ret = -EINTR; + run->exit_reason = KVM_EXIT_INTR; + } break; } + + if (vcpu->arch.wait_for_interrupts) + kvm_vcpu_block(vcpu); } return ret; @@ -454,6 +467,8 @@ static int kvm_arch_vm_ioctl_irq_line(struct kvm *kvm, if (irq_level->level) { vcpu->arch.virt_irq |= mask; vcpu->arch.wait_for_interrupts = 0; + if (waitqueue_active(&vcpu->wq)) + wake_up_interruptible(&vcpu->wq); } else vcpu->arch.virt_irq &= ~mask; diff --git a/arch/arm/kvm/emulate.c b/arch/arm/kvm/emulate.c index 4fb5a7d..f60c75a 100644 --- a/arch/arm/kvm/emulate.c +++ b/arch/arm/kvm/emulate.c @@ -335,8 +335,20 @@ unsupp_err_out: return -EINVAL; } +/** + * kvm_handle_wfi - handle a wait-for-interrupts instruction executed by a guest + * @vcpu: the vcpu pointer + * @run: the kvm_run structure pointer + * + * Simply sets the wait_for_interrupts flag on the vcpu structure, which will + * halt execution of world-switches and schedule other host processes until + * there is an incoming IRQ or FIQ to the VM. + */ int kvm_handle_wfi(struct kvm_vcpu *vcpu, struct kvm_run *run) { + trace_kvm_wfi(vcpu->arch.regs.pc); + if (!vcpu->arch.virt_irq) + vcpu->arch.wait_for_interrupts = 1; return 0; } diff --git a/arch/arm/kvm/trace.h b/arch/arm/kvm/trace.h index 8ba3db9..693da82 100644 --- a/arch/arm/kvm/trace.h +++ b/arch/arm/kvm/trace.h @@ -111,6 +111,21 @@ TRACE_EVENT(kvm_irq_line, __entry->level, __entry->vcpu_idx) ); +TRACE_EVENT(kvm_wfi, + TP_PROTO(unsigned long vcpu_pc), + TP_ARGS(vcpu_pc), + + TP_STRUCT__entry( + __field( unsigned long, vcpu_pc ) + ), + + TP_fast_assign( + __entry->vcpu_pc = vcpu_pc; + ), + + TP_printk("guest executed wfi at: 0x%08lx", __entry->vcpu_pc) +); + #endif /* _TRACE_KVM_H */ -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html