From: Catalin Marinas <catalin.marinas@arm.com>
To: Suzuki K Poulose <suzuki.poulose@arm.com>
Cc: kvm@vger.kernel.org, kvmarm@lists.linux.dev, maz@kernel.org,
will@kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, steven.price@arm.com,
aneesh.kumar@kernel.org, oupton@kernel.org, gshan@redhat.com,
joey.gouly@arm.com, tabba@google.com, yuzenghui@huawei.com,
linux-coco@lists.linux.dev, gankulkarni@os.amperecomputing.com,
sdonthineni@nvidia.com, alpergun@google.com,
fj0570is@fujitsu.com, WeiLin.Chang@arm.com,
lpieralisi@kernel.org, enju.kohei@fujitsu.com,
sudeep.holla@arm.com, jonathan.cameron@oss.qualcomm.com
Subject: Re: [PATCH v19 5/7] firmware: arm_rmm: Activate the RMM
Date: Fri, 25 Sep 2026 17:42:34 +0100 [thread overview]
Message-ID: <araketG70TIKeNuf@arm.com> (raw)
In-Reply-To: <a11aba04-eaaa-43fd-988b-a2581b1b2fdb@arm.com>
On Fri, Sep 25, 2026 at 04:02:24PM +0100, Suzuki K Poulose wrote:
> On 25/09/2026 13:17, Catalin Marinas wrote:
> > On Thu, Sep 24, 2026 at 02:51:59PM +0100, Suzuki K Poulose wrote:
> > > From: Steven Price <steven.price@arm.com>
> > >
> > > Activate the RMM after the basic configuration. This is a memory
> > > transferring stateful operation.
> > >
> > > Reviewed-by: Gavin Shan <gshan@redhat.com>
> > > Reviewed-by: Jonathan Cameron <jonathan.cameron@oss.qualcomm.com>
> > > Signed-off-by: Steven Price <steven.price@arm.com>
> > > Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
> > > ---
> > > Changes since v17:
> > > * Inline RMM_ACTIVATE command and remove the definitions from arm-rmi-cmds.h
> > > * Use scope-based cleanup to free sro object
> > > Changes since v16:
> > > * Split into a new patch
> > > ---
> > > drivers/firmware/arm_rmm/rmi.c | 13 ++++++++++++-
> > > 1 file changed, 12 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/firmware/arm_rmm/rmi.c b/drivers/firmware/arm_rmm/rmi.c
> > > index 035f21d3f26b6..0859f256e192b 100644
> > > --- a/drivers/firmware/arm_rmm/rmi.c
> > > +++ b/drivers/firmware/arm_rmm/rmi.c
> > > @@ -834,7 +834,18 @@ static int __init arm64_init_rmi(void)
> > > if (ret)
> > > return ret;
> > > - return 0;
> > > + /* Activate the RMM */
> > > + struct rmi_sro_state *sro __free(kfree) = kmalloc_obj(*sro);
> > > + if (!sro)
> > > + return -ENOMEM;
> > > +
> > > + ret = rmi_sro_memxfer_cmd(sro, GFP_KERNEL, SMC_RMI_RMM_ACTIVATE);
> > > + if (ret) {
> > > + pr_err("RMM activate failed (%d)\n", ret);
> > > + ret = ret < 0 ? ret : -ENXIO;
> > > + }
> > > +
> > > + return ret;
> >
> > It was raised earlier this year [1] but I'm not sure it concluded. How
> > do we handle kexec and kdump? I think RMI_RMM_DEACTIVATE only succeeds
> > if nothing is delegated, so it would need all realms torn down first. If
> > that's not feasible, we could at least block (non-crash) kexec like pKVM
> > does.
>
> You are right, we can't DEACTIVATE until all granules have been
> "undelegated" back. Not just the Realms, but also the GPTs/Tracking
> Metadata etc would need to be reclaimed (when we get to support
> dynamic GPT/Tracking metadata). For now, we should block the kexec.
Looking more into this (and the memory hotplug story), I find it strange
that simply having RME and a valid RMM imposes all these restrictions
even if we never run or intend to run a realm. How common will
RME-capable systems with RMM firmware be that are not used for CoCo? Or
do we expect only CoCo systems to have capable/configured firmware (RME
may be present in silicon anyway)?
Ideally we'd defer the RMM configuration and activation (and the
tracking/GPT checks) until we first attempt to start a realm, keeping
only the RMI_VERSION/FEATURES probing at boot. Not sure how feasible
this is (memory is more fragmented by then for any contiguous donation).
If we manage it, kexec and memory hotplug just work on hosts that never
start a realm.
The next best thing for kexec is to tear down the realms, undelegate
the granules and deactivate the RMM before invoking kexec (with kdump
that's harder as we likely no longer have a controlled shutdown).
Similarly with memory hotplug, allow it if we haven't started any realms
and refuse realm creation afterwards if untracked memory was onlined.
Also, if the memory is onlined to ZONE_MOVABLE, neither guest_memfd nor
the kernel allocations we delegate come from there, so we could allow
it even with realms running.
> > Kdump gets even more interesting if it starts accessing delegated pages
> > and getting GPF.
> >
> > [1] https://lore.kernel.org/r/CABpDEukEO4Y_fg8fv5Nr1_Pw_qOK=2UmioXk=WyPEzoEprPcGA@mail.gmail.com
>
> Kdump may be a bit more easier, as the kdump kernel is supposed to use
> the "reserved" region and vmcore access could handle the GPF and
> provide "0"s to the reader ? May be this is one case where the
> host needs to be able to handle GPFs.
Yes, I think so. I now realised that metadata delegation to the RMM
doesn't come from guest_memfd, so that's another case not helped by the
old series to unmap guest_memfd from the linear map. I'll reply to the
GPF thread.
--
Catalin
next prev parent reply other threads:[~2026-09-25 16:42 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-24 13:51 [PATCH v19 0/7] firmware: arm_rmm: Add RMM v2.0 base RMI support Suzuki K Poulose
2026-09-24 13:51 ` [PATCH v19 1/7] firmware: arm_rmm: Add SMC definitions for calling the RMM Suzuki K Poulose
2026-09-24 16:57 ` Jonathan Cameron
2026-09-24 22:15 ` Suzuki K Poulose
2026-09-24 17:05 ` Ackerley Tng
2026-09-24 22:49 ` Suzuki K Poulose
2026-09-24 13:51 ` [PATCH v19 2/7] firmware: arm_rmm: Check for RMI support at init Suzuki K Poulose
2026-09-24 16:58 ` Jonathan Cameron
2026-09-25 0:00 ` Gavin Shan
2026-09-25 8:51 ` Suzuki K Poulose
2026-09-25 5:43 ` Gavin Shan
2026-09-25 8:50 ` Suzuki K Poulose
2026-09-25 10:42 ` Catalin Marinas
2026-09-25 15:23 ` Suzuki K Poulose
2026-09-24 13:51 ` [PATCH v19 3/7] firmware: arm_rmm: Configure the RMM with the host's page size Suzuki K Poulose
2026-09-24 17:03 ` Jonathan Cameron
[not found] ` <d4b768e5-c942-43cf-aea2-c266a8bab353@oss.qualcomm.com>
2026-09-25 14:56 ` Suzuki K Poulose
2026-09-25 0:03 ` Gavin Shan
2026-09-24 13:51 ` [PATCH v19 4/7] firmware: arm_rmm: Add support for SRO Suzuki K Poulose
2026-09-24 19:13 ` Jonathan Cameron
2026-09-24 23:10 ` Suzuki K Poulose
2026-09-25 5:24 ` Gavin Shan
2026-09-25 11:50 ` Catalin Marinas
2026-09-25 15:11 ` Suzuki K Poulose
2026-09-24 13:51 ` [PATCH v19 5/7] firmware: arm_rmm: Activate the RMM Suzuki K Poulose
2026-09-25 12:17 ` Catalin Marinas
2026-09-25 15:02 ` Suzuki K Poulose
2026-09-25 15:34 ` Alper Gun
2026-09-25 16:42 ` Catalin Marinas [this message]
2026-09-24 13:52 ` [PATCH v19 6/7] firmware: arm_rmm: Ensure the RMM has GPT entries for memory Suzuki K Poulose
2026-09-24 21:38 ` Jonathan Cameron
2026-09-24 23:30 ` Suzuki K Poulose
2026-09-25 15:30 ` Jonathan Cameron
2026-09-25 0:07 ` Gavin Shan
2026-09-24 13:52 ` [PATCH v19 7/7] firmware: arm_rmm: Add wrappers for Realm related RMI commands Suzuki K Poulose
2026-09-25 11:56 ` Catalin Marinas
2026-09-25 6:29 ` [PATCH v19 0/7] firmware: arm_rmm: Add RMM v2.0 base RMI support Gavin Shan
2026-09-25 9:03 ` Suzuki K Poulose
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=araketG70TIKeNuf@arm.com \
--to=catalin.marinas@arm.com \
--cc=WeiLin.Chang@arm.com \
--cc=alpergun@google.com \
--cc=aneesh.kumar@kernel.org \
--cc=enju.kohei@fujitsu.com \
--cc=fj0570is@fujitsu.com \
--cc=gankulkarni@os.amperecomputing.com \
--cc=gshan@redhat.com \
--cc=joey.gouly@arm.com \
--cc=jonathan.cameron@oss.qualcomm.com \
--cc=kvm@vger.kernel.org \
--cc=kvmarm@lists.linux.dev \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-coco@lists.linux.dev \
--cc=linux-kernel@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=maz@kernel.org \
--cc=oupton@kernel.org \
--cc=sdonthineni@nvidia.com \
--cc=steven.price@arm.com \
--cc=sudeep.holla@arm.com \
--cc=suzuki.poulose@arm.com \
--cc=tabba@google.com \
--cc=will@kernel.org \
--cc=yuzenghui@huawei.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
all inboxes | Powered by JetHome®