From patchwork Tue Nov 14 05:13:26 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anshuman Khandual X-Patchwork-Id: 13454782 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 8D2E9C4167D for ; Tue, 14 Nov 2023 05:14:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=cwuofDXNLORVOKZXU9SZA/QOTD4MGdkY2Eh003IHRAA=; b=KwA6v3+vIUB+gF hE75o2NvUjtG1Q1Q2ssaaLY9QW0kN3e34uymRlm3WrcstbKHz4m+WEZ9GJIb0xNsb/+pXXk+8rBZj vzCOiC2pDMWJpnShzZdkXaAXRqHz4K0DdIlO4dz9+7B+Wb1tHUccBbFqw0/n28kMcDgfjirZspWB2 H+SpcZ49urm8Aqb/IXQxaBHSK1XcTjRrD8aC0hY9zmxaPBOOkwcyFrS5BSLAwu+0gTecV2FgssBQ9 tDpUMLDEDztpk9FdXDFAHHFUk6utB0I4IYlWqUUtJc9u5PbcaLNxiVU8pbMtSdPWuydpFnqtNhljk tPRuynKxktZnTghw2AcQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1r2lkk-00FCKd-1k; Tue, 14 Nov 2023 05:14:22 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1r2lke-00FCHo-2S for linux-arm-kernel@lists.infradead.org; Tue, 14 Nov 2023 05:14:20 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 96F5B1576; Mon, 13 Nov 2023 21:15:01 -0800 (PST) Received: from a077893.blr.arm.com (a077893.blr.arm.com [10.162.41.8]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 855D93F7B4; Mon, 13 Nov 2023 21:14:10 -0800 (PST) From: Anshuman Khandual To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, will@kernel.org, catalin.marinas@arm.com, mark.rutland@arm.com Cc: Anshuman Khandual , Mark Brown , James Clark , Rob Herring , Marc Zyngier , Suzuki Poulose , Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , linux-perf-users@vger.kernel.org, Oliver Upton , James Morse , kvmarm@lists.linux.dev Subject: [V14 5/8] KVM: arm64: nvhe: Disable branch generation in nVHE guests Date: Tue, 14 Nov 2023 10:43:26 +0530 Message-Id: <20231114051329.327572-6-anshuman.khandual@arm.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20231114051329.327572-1-anshuman.khandual@arm.com> References: <20231114051329.327572-1-anshuman.khandual@arm.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20231113_211416_893798_C73235AF X-CRM114-Status: GOOD ( 17.45 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Disable the BRBE before we enter the guest, saving the status and enable it back once we get out of the guest. This is just to avoid capturing records in the guest kernel/userspace, which would be confusing the samples. Cc: Marc Zyngier Cc: Oliver Upton Cc: James Morse Cc: Suzuki K Poulose Cc: Catalin Marinas Cc: Will Deacon Cc: kvmarm@lists.linux.dev Cc: linux-arm-kernel@lists.infradead.org CC: linux-kernel@vger.kernel.org Signed-off-by: Anshuman Khandual --- Changes in V14: - This is a new patch in the series arch/arm64/include/asm/kvm_host.h | 4 ++++ arch/arm64/kvm/debug.c | 6 +++++ arch/arm64/kvm/hyp/nvhe/debug-sr.c | 38 ++++++++++++++++++++++++++++++ 3 files changed, 48 insertions(+) diff --git a/arch/arm64/include/asm/kvm_host.h b/arch/arm64/include/asm/kvm_host.h index 68421c74283a..1faa0430d8dd 100644 --- a/arch/arm64/include/asm/kvm_host.h +++ b/arch/arm64/include/asm/kvm_host.h @@ -449,6 +449,8 @@ enum vcpu_sysreg { CNTHV_CVAL_EL2, PMSCR_EL1, /* Statistical profiling extension */ TRFCR_EL1, /* Self-hosted trace filters */ + BRBCR_EL1, /* Branch Record Buffer Control Register */ + BRBFCR_EL1, /* Branch Record Buffer Function Control Register */ NR_SYS_REGS /* Nothing after this line! */ }; @@ -753,6 +755,8 @@ struct kvm_vcpu_arch { #define VCPU_HYP_CONTEXT __vcpu_single_flag(iflags, BIT(7)) /* Save trace filter controls */ #define DEBUG_STATE_SAVE_TRFCR __vcpu_single_flag(iflags, BIT(8)) +/* Save BRBE context if active */ +#define DEBUG_STATE_SAVE_BRBE __vcpu_single_flag(iflags, BIT(9)) /* SVE enabled for host EL0 */ #define HOST_SVE_ENABLED __vcpu_single_flag(sflags, BIT(0)) diff --git a/arch/arm64/kvm/debug.c b/arch/arm64/kvm/debug.c index 2ab41b954512..4055783c3d34 100644 --- a/arch/arm64/kvm/debug.c +++ b/arch/arm64/kvm/debug.c @@ -354,6 +354,11 @@ void kvm_arch_vcpu_load_debug_state_flags(struct kvm_vcpu *vcpu) !(read_sysreg_s(SYS_TRBIDR_EL1) & TRBIDR_EL1_P)) vcpu_set_flag(vcpu, DEBUG_STATE_SAVE_TRBE); } + + /* Check if we have BRBE implemented and available at the host */ + if (cpuid_feature_extract_unsigned_field(dfr0, ID_AA64DFR0_EL1_BRBE_SHIFT) && + (read_sysreg_s(SYS_BRBCR_EL1) & (BRBCR_ELx_E0BRE | BRBCR_ELx_ExBRE))) + vcpu_set_flag(vcpu, DEBUG_STATE_SAVE_BRBE); } void kvm_arch_vcpu_put_debug_state_flags(struct kvm_vcpu *vcpu) @@ -361,6 +366,7 @@ void kvm_arch_vcpu_put_debug_state_flags(struct kvm_vcpu *vcpu) vcpu_clear_flag(vcpu, DEBUG_STATE_SAVE_SPE); vcpu_clear_flag(vcpu, DEBUG_STATE_SAVE_TRBE); vcpu_clear_flag(vcpu, DEBUG_STATE_SAVE_TRFCR); + vcpu_clear_flag(vcpu, DEBUG_STATE_SAVE_BRBE); } void kvm_etm_set_guest_trfcr(u64 trfcr_guest) diff --git a/arch/arm64/kvm/hyp/nvhe/debug-sr.c b/arch/arm64/kvm/hyp/nvhe/debug-sr.c index 6174f710948e..e44a1f71a0f8 100644 --- a/arch/arm64/kvm/hyp/nvhe/debug-sr.c +++ b/arch/arm64/kvm/hyp/nvhe/debug-sr.c @@ -93,6 +93,38 @@ static void __debug_restore_trace(struct kvm_cpu_context *host_ctxt, write_sysreg_s(ctxt_sys_reg(host_ctxt, TRFCR_EL1), SYS_TRFCR_EL1); } +static void __debug_save_brbe(struct kvm_cpu_context *host_ctxt) +{ + ctxt_sys_reg(host_ctxt, BRBCR_EL1) = 0; + ctxt_sys_reg(host_ctxt, BRBFCR_EL1) = 0; + + /* Check if the BRBE is enabled */ + if (!(ctxt_sys_reg(host_ctxt, BRBCR_EL1) & (BRBCR_ELx_E0BRE | BRBCR_ELx_ExBRE))) + return; + + /* + * Prohibit branch record generation while we are in guest. + * Since access to BRBCR_EL1 and BRBFCR_EL1 is trapped, the + * guest can't modify the filtering set by the host. + */ + ctxt_sys_reg(host_ctxt, BRBCR_EL1) = read_sysreg_s(SYS_BRBCR_EL1); + ctxt_sys_reg(host_ctxt, BRBFCR_EL1) = read_sysreg_s(SYS_BRBFCR_EL1); + write_sysreg_s(0, SYS_BRBCR_EL1); + write_sysreg_s(0, SYS_BRBFCR_EL1); + isb(); +} + +static void __debug_restore_brbe(struct kvm_cpu_context *host_ctxt) +{ + if (!ctxt_sys_reg(host_ctxt, BRBCR_EL1) || !ctxt_sys_reg(host_ctxt, BRBFCR_EL1)) + return; + + /* Restore BRBE controls */ + write_sysreg_s(ctxt_sys_reg(host_ctxt, BRBCR_EL1), SYS_BRBCR_EL1); + write_sysreg_s(ctxt_sys_reg(host_ctxt, BRBFCR_EL1), SYS_BRBFCR_EL1); + isb(); +} + void __debug_save_host_buffers_nvhe(struct kvm_cpu_context *host_ctxt, struct kvm_cpu_context *guest_ctxt) { @@ -102,6 +134,10 @@ void __debug_save_host_buffers_nvhe(struct kvm_cpu_context *host_ctxt, if (vcpu_get_flag(host_ctxt->__hyp_running_vcpu, DEBUG_STATE_SAVE_TRFCR)) __debug_save_trace(host_ctxt, guest_ctxt); + + /* Disable BRBE branch records */ + if (vcpu_get_flag(host_ctxt->__hyp_running_vcpu, DEBUG_STATE_SAVE_BRBE)) + __debug_save_brbe(host_ctxt); } void __debug_switch_to_guest(struct kvm_vcpu *vcpu) @@ -116,6 +152,8 @@ void __debug_restore_host_buffers_nvhe(struct kvm_cpu_context *host_ctxt, __debug_restore_spe(host_ctxt); if (vcpu_get_flag(host_ctxt->__hyp_running_vcpu, DEBUG_STATE_SAVE_TRFCR)) __debug_restore_trace(host_ctxt, guest_ctxt); + if (vcpu_get_flag(host_ctxt->__hyp_running_vcpu, DEBUG_STATE_SAVE_BRBE)) + __debug_restore_brbe(host_ctxt); } void __debug_switch_to_host(struct kvm_vcpu *vcpu)