From: Suzuki K Poulose <suzuki.poulose@arm.com>
To: Venkata Rao Kakani <venkata.kakani@oss.qualcomm.com>,
Jonathan Cameron <jonathan.cameron@oss.qualcomm.com>
Cc: kvm@vger.kernel.org, kvmarm@lists.linux.dev, maz@kernel.org,
will@kernel.org, catalin.marinas@arm.com,
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, trilok.soni@oss.qualcomm.com
Subject: Re: [PATCH v19 3/7] firmware: arm_rmm: Configure the RMM with the host's page size
Date: Fri, 25 Sep 2026 15:56:54 +0100 [thread overview]
Message-ID: <bb4a6fa1-721c-44f8-a8d2-54e80b5449c6@arm.com> (raw)
In-Reply-To: <d4b768e5-c942-43cf-aea2-c266a8bab353@oss.qualcomm.com>
On 25/09/2026 14:23, Venkata Rao Kakani wrote:
> Hi Suzuki,
>
Hi Venkat,
> Now, with this patch Host can set RMM Granule size equal to PAGE_SIZE.
> Does RMM send the request to root to set GPT physical granule size =
> PAGE_SIZE?
I don't think FIRME lets you do that and it would be too complex. Please
remember that the GPT is not just for the Non-secure/Realm world, but
also for the Secure world.
So, the Physical Granule size would be statically configured to 4KB on a
platform unless it supports the 4KB granule size, to support all
possible Sofware components.
>
> In a scenario where, GPT granule size (|GPCCR_EL3|) set to 64K and Host
> PAGE_SIZE set to 4K, how does root handle GPT granule mappings, when
> Host send RMI_GRANULE_DELEGATE(PAGE_SIZE)?
If GPCCR_EL3 is set to 64K, RMM must not report it supports 4K GRANULE
size.
nit: Please avoid top posting your comments and use plain text for
discussions on the list.
Suzuki
>
>
> -- Venkat
>
> On 24-09-2026 10:33 pm, Jonathan Cameron wrote:
>> On Thu, 24 Sep 2026 14:51:57 +0100
>> Suzuki K Poulose<suzuki.poulose@arm.com> wrote:
>>
>>> RMM v2.0 brings the ability to set the RMM's granule size. Check the
>>> feature registers and configure the RMM so that it matches the host's
>>> page size. This means that operations can be done with a granularity
>>> equal to PAGE_SIZE.
>>>
>>> Signed-off-by: Steven Price<steven.price@arm.com>
>>> Signed-off-by: Suzuki K Poulose<suzuki.poulose@arm.com>
>> Hi Suzuki,
>>
>> Some trivial stuff inline. Assuming that is addressed.
>>
>> Reviewed-by: Jonathan Cameron<jonathan.cameron@oss.qualcomm.com>
>>
>>> ---
>>> drivers/firmware/arm_rmm/rmi.c | 70 ++++++++++++++++++++++++++++++++++
>>> 1 file changed, 70 insertions(+)
>>>
>>> diff --git a/drivers/firmware/arm_rmm/rmi.c b/drivers/firmware/arm_rmm/rmi.c
>>> index 3baba931f92e4..c9ea964fd9081 100644
>>> --- a/drivers/firmware/arm_rmm/rmi.c
>>> +++ b/drivers/firmware/arm_rmm/rmi.c
>>> +
>>> +static int rmi_configure(void)
>>> +{
>>> + unsigned long granule_feature;
>>> + unsigned long granule_size;
>>> + int ret = 0;
>> Value not used. Fine if it is future churn reduction, but I didn't spot
>> where if so. I'm guessing left over from refactoring
>>
>>> +
>>> + switch (PAGE_SIZE) {
>>> + case SZ_4K:
>>> + granule_size = RMI_GRANULE_SIZE_4KB;
>>> + granule_feature = RMI_FEATURE_REGISTER_1_RMI_GRAN_SZ_4KB;
>>> + break;
>>> + case SZ_16K:
>>> + granule_size = RMI_GRANULE_SIZE_16KB;
>>> + granule_feature = RMI_FEATURE_REGISTER_1_RMI_GRAN_SZ_16KB;
>>> + break;
>>> + case SZ_64K:
>>> + granule_size = RMI_GRANULE_SIZE_64KB;
>>> + granule_feature = RMI_FEATURE_REGISTER_1_RMI_GRAN_SZ_64KB;
>>> + break;
>>> + default:
>>> + BUILD_BUG();
>>> + }
>>> +
>>> + if (!(rmi_feat_reg(1) & granule_feature)) {
>>> + pr_err("RMM does not support %luKB granules\n",
>>> + PAGE_SIZE >> 10);
>>> + return -ENXIO;
>>> + }
>>> +
>>> + struct rmm_config *config __free(free_page) =
>>> + (struct rmm_config *)get_zeroed_page(GFP_KERNEL);
>>> +
>>> + if (!config) {
>>> + pr_err("Unable to allocate memory for RMM config\n");
>>> + return -ENOMEM;
>>> + }
>>> +
>>> + config->rmi_granule_size = granule_size;
>>> +
>>> + /*
>>> + * For now we set the tracking_region_size to 0 which is the only option
>>> + * for 4KB PAGE_SIZE (1GB for 4KB PAGE_SIZE, 32MB/512MB for 16KB/64KB).
>>> + * TODO: Support other tracking sizes via Kconfig option for other
>>> + * PAGE_SIZES
>>> + */
>>> + config->tracking_region_size = 0;
>>> +
>>> + ret = rmi_rmm_config_set(virt_to_phys(config));
>>> + if (ret) {
>>> + pr_err("RMM config set failed (%d)\n", ret);
>>> + ret = -EINVAL;
>> return -EINVAL;
>>
>>> + }
>>> +
>>> + return ret;
>> return 0;
>>
>> So obvious this is the good path without anyone having to think about it!
>>
>> I did quick check on whether this was to reduce churn due to later changes
>> but couldn't immediately spot anything
>>
>>
>>> +}
next prev parent reply other threads:[~2026-09-25 14:57 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 [this message]
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
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=bb4a6fa1-721c-44f8-a8d2-54e80b5449c6@arm.com \
--to=suzuki.poulose@arm.com \
--cc=WeiLin.Chang@arm.com \
--cc=alpergun@google.com \
--cc=aneesh.kumar@kernel.org \
--cc=catalin.marinas@arm.com \
--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=tabba@google.com \
--cc=trilok.soni@oss.qualcomm.com \
--cc=venkata.kakani@oss.qualcomm.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®