From: Will Deacon <will@kernel.org>
To: Suzuki K Poulose <suzuki.poulose@arm.com>
Cc: kvmarm@lists.linux.dev, mark.rutland@arm.com,
linux-arm-kernel@lists.infradead.org,
Marc Zyngier <maz@kernel.org>, Oliver Upton <oupton@kernel.org>,
James Clark <james.clark@linaro.org>, Leo Yan <leo.yan@arm.com>,
Fuad Tabba <tabba@google.com>,
Alexandru Elisei <alexandru.elisei@arm.com>,
Yabin Cui <yabinc@google.com>
Subject: Re: [PATCH v2 2/3] KVM: arm64: Disable SPE Profiling Buffer when running in guest context
Date: Tue, 3 Mar 2026 14:39:18 +0000 [thread overview]
Message-ID: <aabylhEFnTUR0WTy@willie-the-truck> (raw)
In-Reply-To: <b6f0b0c8-c2a6-4b61-a0cc-482450c092f5@arm.com>
On Tue, Mar 03, 2026 at 09:48:06AM +0000, Suzuki K Poulose wrote:
> On 27/02/2026 21:21, Will Deacon wrote:
> > diff --git a/arch/arm64/kvm/hyp/nvhe/debug-sr.c b/arch/arm64/kvm/hyp/nvhe/debug-sr.c
> > index 3dbdee1148d3..75158a9cd06a 100644
> > --- a/arch/arm64/kvm/hyp/nvhe/debug-sr.c
> > +++ b/arch/arm64/kvm/hyp/nvhe/debug-sr.c
> > @@ -14,20 +14,20 @@
> > #include <asm/kvm_hyp.h>
> > #include <asm/kvm_mmu.h>
> > -static void __debug_save_spe(u64 *pmscr_el1)
> > +static void __debug_save_spe(void)
> > {
> > - u64 reg;
> > + u64 *pmscr_el1, *pmblimitr_el1;
> > - /* Clear pmscr in case of early return */
> > - *pmscr_el1 = 0;
> > + pmscr_el1 = host_data_ptr(host_debug_state.pmscr_el1);
> > + pmblimitr_el1 = host_data_ptr(host_debug_state.pmblimitr_el1);
> > /*
> > * At this point, we know that this CPU implements
> > * SPE and is available to the host.
> > * Check if the host is actually using it ?
> > */
> > - reg = read_sysreg_s(SYS_PMBLIMITR_EL1);
> > - if (!(reg & BIT(PMBLIMITR_EL1_E_SHIFT)))
> > + *pmblimitr_el1 = read_sysreg_s(SYS_PMBLIMITR_EL1);
> > + if (!(*pmblimitr_el1 & BIT(PMBLIMITR_EL1_E_SHIFT)))
> > return;
> > /* Yes; save the control register and disable data generation */
> > @@ -37,18 +37,29 @@ static void __debug_save_spe(u64 *pmscr_el1)
> > /* Now drain all buffered data to memory */
> > psb_csync();
> > + dsb(nsh);
> > +
> > + /* And disable the profiling buffer */
> > + write_sysreg_s(0, SYS_PMBLIMITR_EL1);
> > + isb();
> > }
> > -static void __debug_restore_spe(u64 pmscr_el1)
> > +static void __debug_restore_spe(void)
> > {
> > - if (!pmscr_el1)
> > + u64 pmblimitr_el1 = *host_data_ptr(host_debug_state.pmblimitr_el1);
> > +
> > + if (!(pmblimitr_el1 & BIT(PMBLIMITR_EL1_E_SHIFT)))
> > return;
> > /* The host page table is installed, but not yet synchronised */
> > isb();
>
> minor nit: This seems buried deep down in a helper (with no context of what
> else could have happened since the host context has been restored)
> and for now it looks correct, but is prone to inadvertent changes
> causing issues or making this obsolete. With the isb() following LIMITR,
> wouldn't that be sufficient ?
I'm just inherting this from the existing upstream code -- see the isb()
in the existing implementation of __debug_restore_spe().
The isb() is needed to ensure that SPE can't start making out-of-context
translation table walks (which can occur once PMBLIMITR_EL1.E is set)
before the stage-2 MMU is restored back to the host configuration (e.g.
by clearing HCR_EL2.VM for nVHE or by restoring VTCR and VTTBR for
pKVM). We want to predicate it on SPE being enabled, otherwise it's
unconditional overhead, so I don't think we can move it.
Will
next prev parent reply other threads:[~2026-03-03 14:39 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-27 21:21 [PATCH v2 0/3] KVM: arm64: Fix SPE and TRBE nVHE world switch Will Deacon
2026-02-27 21:21 ` [PATCH v2 1/3] KVM: arm64: Disable TRBE Trace Buffer Unit when running in guest context Will Deacon
2026-03-03 9:23 ` Suzuki K Poulose
2026-03-03 17:39 ` Leo Yan
2026-03-25 19:27 ` Fuad Tabba
2026-03-26 12:49 ` Will Deacon
2026-02-27 21:21 ` [PATCH v2 2/3] KVM: arm64: Disable SPE Profiling Buffer " Will Deacon
2026-03-03 9:48 ` Suzuki K Poulose
2026-03-03 14:39 ` Will Deacon [this message]
2026-03-03 15:01 ` Suzuki K Poulose
2026-03-25 16:34 ` Alexandru Elisei
2026-03-25 19:28 ` Fuad Tabba
2026-02-27 21:21 ` [PATCH v2 3/3] KVM: arm64: Don't pass host_debug_state to BRBE world-switch routines Will Deacon
2026-03-25 19:28 ` Fuad Tabba
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aabylhEFnTUR0WTy@willie-the-truck \
--to=will@kernel.org \
--cc=alexandru.elisei@arm.com \
--cc=james.clark@linaro.org \
--cc=kvmarm@lists.linux.dev \
--cc=leo.yan@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=mark.rutland@arm.com \
--cc=maz@kernel.org \
--cc=oupton@kernel.org \
--cc=suzuki.poulose@arm.com \
--cc=tabba@google.com \
--cc=yabinc@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox