Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp3983696imu; Mon, 12 Nov 2018 04:00:24 -0800 (PST) X-Google-Smtp-Source: AJdET5eZW98AdqsSOvgS/T0Dy3U/JXo7hRHEpq2a2TT7LWZ01Sy/Zh5MQDt/R+lmCEhWGJmj+HVx X-Received: by 2002:a65:4049:: with SMTP id h9mr571148pgp.304.1542024024708; Mon, 12 Nov 2018 04:00:24 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1542024024; cv=none; d=google.com; s=arc-20160816; b=wrNEasOzLNoKV0Vo8YQITvZwwy45KmnID+ru6RCcp/5jzwgeXbxBdM61+moloUHN4Y oUKSKjH9f18eS4OJtfa3GtY3yME4ENMqvTn0S0m+ixK/jhlGsbKK2Tz21+BBm2xrXnKB CgJZjrwZ1K0MGUHcPLXPm4acOWzmOeZZKA9sI1gZ1a7UvaH6UwV5K+Gr6ZjNeFkZHZlZ 0Z8ojfrXHNK7lh3zU2wM+f/4f8GStdVpk3Kgf4m/6X7jyO/0GVWscVoZe3VkPaEDNKGR NaS0GPvjWNxid3kN/skincueI47z6VOMT831O0T6hvLa1RI4VJNxYbV+iwcqIOSka3oc i0wQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from; bh=JYo4aHl+9mYkkCDh3ukZ+xK0zuQYJr5iWXax2mRFWPc=; b=MLXQKOZ9A9IYKO75dcC+PwyMhew8Esdelk0p8Tu0EFMG82RCjTsIn1qe7N/x5OscYN i3tpgYYxc1WPup4hZAcOiz/qv66yJMcA7BJBZu9YGieh5QWKsZSwqMGviCtaaSAAd9QV rvHDiKVnxCoS6Iew5zlThaveiItWID61REB6iT/N2SqTYzNhq9tRhLDNGMBxgnX8+8gG w8w4d+ymx5xI5UpBioxz7qeXFPletTTdpmApgJN4hmaJMMCvzZPQG34Ck4UbuhyTUJhV 8cdG3Ff2e5ja1tcIK0SzKB3ibw31bPZ8DdsQn5XemNnRyz5HmdAL1MkQ2jpALi9TY/zE AkYg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id o12-v6si18904474pfh.9.2018.11.12.04.00.09; Mon, 12 Nov 2018 04:00:24 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729751AbeKLVwH (ORCPT + 99 others); Mon, 12 Nov 2018 16:52:07 -0500 Received: from foss.arm.com ([217.140.101.70]:34604 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729783AbeKLVuo (ORCPT ); Mon, 12 Nov 2018 16:50:44 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 3239215AB; Mon, 12 Nov 2018 03:57:47 -0800 (PST) Received: from e112298-lin.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.72.51.249]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 399213F5A0; Mon, 12 Nov 2018 03:57:45 -0800 (PST) From: Julien Thierry To: linux-arm-kernel@lists.infradead.org Cc: linux-kernel@vger.kernel.org, daniel.thompson@linaro.org, joel@joelfernandes.org, marc.zyngier@arm.com, christoffer.dall@arm.com, james.morse@arm.com, catalin.marinas@arm.com, will.deacon@arm.com, Julien Thierry , kvmarm@lists.cs.columbia.edu Subject: [PATCH v6 09/24] arm64: kvm: Unmask PMR before entering guest Date: Mon, 12 Nov 2018 11:57:00 +0000 Message-Id: <1542023835-21446-10-git-send-email-julien.thierry@arm.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1542023835-21446-1-git-send-email-julien.thierry@arm.com> References: <1542023835-21446-1-git-send-email-julien.thierry@arm.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Interrupts masked by ICC_PMR_EL1 will not be signaled to the CPU. This means that hypervisor will not receive masked interrupts while running a guest. Avoid this by making sure ICC_PMR_EL1 is unmasked when we enter a guest. Signed-off-by: Julien Thierry Cc: Christoffer Dall Cc: Marc Zyngier Cc: Catalin Marinas Cc: Will Deacon Cc: kvmarm@lists.cs.columbia.edu --- arch/arm64/include/asm/kvm_host.h | 12 ++++++++++++ arch/arm64/kvm/hyp/switch.c | 16 ++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/arch/arm64/include/asm/kvm_host.h b/arch/arm64/include/asm/kvm_host.h index 52fbc82..31c7e9a 100644 --- a/arch/arm64/include/asm/kvm_host.h +++ b/arch/arm64/include/asm/kvm_host.h @@ -24,6 +24,7 @@ #include #include +#include #include #include #include @@ -471,6 +472,17 @@ static inline int kvm_arch_vcpu_run_pid_change(struct kvm_vcpu *vcpu) static inline void kvm_arm_vhe_guest_enter(void) { local_daif_mask(); + + /* + * Having IRQs masked via PMR when entering the guest means the GIC + * will not signal the CPU of interrupts of lower priority, and the + * only way to get out will be via guest exceptions. + * Naturally, we want to avoid this. + */ + if (system_supports_irq_prio_masking()) { + gic_write_pmr(GIC_PRIO_IRQON); + dsb(sy); + } } static inline void kvm_arm_vhe_guest_exit(void) diff --git a/arch/arm64/kvm/hyp/switch.c b/arch/arm64/kvm/hyp/switch.c index 7cc175c..e5ea193 100644 --- a/arch/arm64/kvm/hyp/switch.c +++ b/arch/arm64/kvm/hyp/switch.c @@ -22,6 +22,7 @@ #include +#include #include #include #include @@ -537,6 +538,17 @@ int __hyp_text __kvm_vcpu_run_nvhe(struct kvm_vcpu *vcpu) struct kvm_cpu_context *guest_ctxt; u64 exit_code; + /* + * Having IRQs masked via PMR when entering the guest means the GIC + * will not signal the CPU of interrupts of lower priority, and the + * only way to get out will be via guest exceptions. + * Naturally, we want to avoid this. + */ + if (system_supports_irq_prio_masking()) { + gic_write_pmr(GIC_PRIO_IRQON); + dsb(sy); + } + vcpu = kern_hyp_va(vcpu); host_ctxt = kern_hyp_va(vcpu->arch.host_cpu_context); @@ -589,6 +601,10 @@ int __hyp_text __kvm_vcpu_run_nvhe(struct kvm_vcpu *vcpu) */ __debug_switch_to_host(vcpu); + /* Returning to host will clear PSR.I, remask PMR if needed */ + if (system_supports_irq_prio_masking()) + gic_write_pmr(GIC_PRIO_IRQOFF); + return exit_code; } -- 1.9.1