From: Jason Gunthorpe <jgg@nvidia.com>
To: Nicolin Chen <nicolinc@nvidia.com>
Cc: will@kernel.org, robin.murphy@arm.com, joro@8bytes.org,
jean-philippe@linaro.org, miko.lenczewski@arm.com,
balbirs@nvidia.com, peterz@infradead.org, smostafa@google.com,
kevin.tian@intel.com, praan@google.com, zhangzekun11@huawei.com,
linux-arm-kernel@lists.infradead.org, iommu@lists.linux.dev,
linux-kernel@vger.kernel.org, patches@lists.linux.dev
Subject: Re: [PATCH rfcv1 6/8] iommu/arm-smmu-v3: Populate smmu_domain->invs when attaching masters
Date: Wed, 27 Aug 2025 15:21:23 -0300 [thread overview]
Message-ID: <20250827182123.GB2206304@nvidia.com> (raw)
In-Reply-To: <d4dca0a6288e4c15994d41aa6722fa7d66e3816c.1755131672.git.nicolinc@nvidia.com>
On Wed, Aug 13, 2025 at 06:25:37PM -0700, Nicolin Chen wrote:
> +typedef struct arm_smmu_invs *(*invs_fn)(struct arm_smmu_invs *old_invs,
> + struct arm_smmu_invs *invs);
no reason to pass in fn, this always just calls it as the last thing
so the caller can do it..
> +static struct arm_smmu_invs *arm_smmu_build_invs(
> + struct arm_smmu_invs *old_invs, struct arm_smmu_domain *smmu_domain,
> + struct arm_smmu_master *master, bool ats, ioasid_t ssid, invs_fn fn)
> +{
> + const bool e2h = master->smmu->features & ARM_SMMU_FEAT_E2H;
> + const bool nesting = smmu_domain->nest_parent;
> + struct arm_smmu_inv *cur = master->invs->inv;
> + size_t num_invs = 1;
> + size_t i;
> +
> + switch (smmu_domain->stage) {
> + case ARM_SMMU_DOMAIN_SVA:
> + case ARM_SMMU_DOMAIN_S1:
> + cur->smmu = master->smmu;
> + cur->type = INV_TYPE_S1_ASID;
> + cur->id = smmu_domain->cd.asid;
> + cur->size_opcode = e2h ? CMDQ_OP_TLBI_EL2_VA :
> + CMDQ_OP_TLBI_NH_VA;
> + cur->nsize_opcode = e2h ? CMDQ_OP_TLBI_EL2_ASID :
> + CMDQ_OP_TLBI_NH_ASID;
> + break;
> + case ARM_SMMU_DOMAIN_S2:
> + cur->smmu = master->smmu;
> + cur->type = INV_TYPE_S2_VMID;
> + cur->id = smmu_domain->s2_cfg.vmid;
> + cur->size_opcode = CMDQ_OP_TLBI_S2_IPA;
> + cur->nsize_opcode = CMDQ_OP_TLBI_S12_VMALL;
> + break;
> + default:
> + WARN_ON(true);
> + return old_invs;
Return ERR_PTR, it makes the error flows possibly wrong or at least over
complex to return something that shouldn't be freed.
> + }
> +
> + /* Range-based invalidation requires the leaf pgsize for calculation */
> + if (master->smmu->features & ARM_SMMU_FEAT_RANGE_INV)
> + cur->pgsize = __ffs(smmu_domain->domain.pgsize_bitmap);
> +
> + /* All the nested S1 ASIDs have to be flushed when S2 parent changes */
> + if (nesting) {
> + cur = &master->invs->inv[num_invs++];
Don't do both 'cur as an iterator' and 'num_invs as the
location'. Delete num_invs entirely and just use cur.
> + cur->smmu = master->smmu;
> + cur->type = INV_TYPE_S2_VMID_S1_CLEAR;
> + cur->id = smmu_domain->s2_cfg.vmid;
> + cur->size_opcode = CMDQ_OP_TLBI_NH_ALL;
> + cur->nsize_opcode = CMDQ_OP_TLBI_NH_ALL;
> + }
> +
> + if (ats) {
> + for (i = 0, cur++; i < master->num_streams; i++) {
> + cur->smmu = master->smmu;
> + /*
> + * If an S2 used as a nesting parent is changed we have
> + * no option but to completely flush the ATC.
> + */
> + cur->type = nesting ? INV_TYPE_ATS_FULL : INV_TYPE_ATS;
> + cur->id = master->streams[i].id;
> + cur->ssid = ssid;
> + cur->size_opcode = CMDQ_OP_ATC_INV;
> + cur->nsize_opcode = CMDQ_OP_ATC_INV;
> + }
> + num_invs += master->num_streams;
> + }
> +
> + master->invs->num_invs = num_invs;
Like this:
master->invs->num_invs = cur - master->invs->inv;
> +static int arm_smmu_attach_prepare_invs(struct arm_smmu_attach_state *state,
> + struct arm_smmu_domain *new_smmu_domain)
> +{
How about a comment:
/*
* During attachment the invalidation lists on the two domains are sequenced:
* 1. old domain is invalidating master
* 2. new and old domain are invalidating master
* 3. new domain is invalidating master
*
* This uses two updated invalidation lists, one with master added to new domain
* and one with master removed from old domain. Prepare these lists in advance
* of changing anything. arm_smmu_asid_lock ensures that the invalidation list
* in the domains doesn't change while we are sequencing to update it.
*/
> + struct arm_smmu_domain *old_smmu_domain =
> + to_smmu_domain_devices(state->old_domain);
> + struct arm_smmu_master *master = state->master;
> + bool blocking = false;
> +
> + /* A re-attach case doesn't need to update invs array */
> + if (new_smmu_domain == old_smmu_domain)
> + return 0;
> +
> + if (new_smmu_domain) {
This if wants a comment, it is tricky:
/*
* At this point a NULL domain indicates the domain doesn't use the
* IOTLB, see to_smmu_domain_devices().
*/
> + state->new_domain_oinvs = rcu_dereference_protected(
> + new_smmu_domain->invs,
> + lockdep_is_held(&arm_smmu_asid_lock));
> + state->new_domain_ninvs = arm_smmu_build_invs(
> + state->new_domain_oinvs, new_smmu_domain, master,
> + state->ats_enabled, state->ssid, arm_smmu_invs_add);
> + if (IS_ERR(state->new_domain_ninvs))
> + return PTR_ERR(state->new_domain_ninvs);
> + state->new_domain_invs = &new_smmu_domain->invs;
> + blocking = new_smmu_domain->domain.type == IOMMU_DOMAIN_BLOCKED;
> + }
> +
> + if (old_smmu_domain) {
> + state->old_domain_oinvs = rcu_dereference_protected(
> + old_smmu_domain->invs,
> + lockdep_is_held(&arm_smmu_asid_lock));
> + state->old_domain_ninvs = arm_smmu_build_invs(
> + state->old_domain_oinvs, old_smmu_domain, master,
> + master->ats_enabled, state->ssid, arm_smmu_invs_del);
> + if (IS_ERR(state->old_domain_ninvs)) {
Then here, as per the last email, just get rid of invs_del and use
the scratch list master->invs for the next step. So all this goes away:
Jason
next prev parent reply other threads:[~2025-08-27 18:21 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-14 1:25 [PATCH rfcv1 0/8] iommu/arm-smmu-v3: Introduce an RCU-protected invalidation array Nicolin Chen
2025-08-14 1:25 ` [PATCH rfcv1 1/8] iommu/arm-smmu-v3: Clear cmds->num after arm_smmu_cmdq_batch_submit Nicolin Chen
2025-08-14 1:25 ` [PATCH rfcv1 2/8] iommu/arm-smmu-v3: Explicitly set smmu_domain->stage for SVA Nicolin Chen
2025-08-14 1:25 ` [PATCH rfcv1 3/8] iommu/arm-smmu-v3: Add an inline arm_smmu_domain_free() Nicolin Chen
2025-08-14 1:25 ` [PATCH rfcv1 4/8] iommu/arm-smmu-v3: Introduce a per-domain arm_smmu_invs array Nicolin Chen
2025-08-26 19:50 ` Jason Gunthorpe
2025-08-27 0:49 ` Nicolin Chen
2025-08-27 16:48 ` Jason Gunthorpe
2025-08-27 17:19 ` Nicolin Chen
2025-08-28 12:37 ` Jason Gunthorpe
2025-08-27 20:00 ` Jason Gunthorpe
2025-09-06 8:16 ` Nicolin Chen
2025-09-08 15:51 ` Jason Gunthorpe
2025-09-08 18:20 ` Nicolin Chen
2025-08-14 1:25 ` [PATCH rfcv1 5/8] iommu/arm-smmu-v3: Pre-allocate a per-master invalidation array Nicolin Chen
2025-08-26 19:56 ` Jason Gunthorpe
2025-09-06 7:45 ` Nicolin Chen
2025-09-08 15:36 ` Jason Gunthorpe
2025-08-14 1:25 ` [PATCH rfcv1 6/8] iommu/arm-smmu-v3: Populate smmu_domain->invs when attaching masters Nicolin Chen
2025-08-27 18:21 ` Jason Gunthorpe [this message]
2025-09-06 7:52 ` Nicolin Chen
2025-09-06 8:20 ` Nicolin Chen
2025-08-14 1:25 ` [PATCH rfcv1 7/8] iommu/arm-smmu-v3: Add arm_smmu_invs based arm_smmu_domain_inv_range() Nicolin Chen
2025-08-27 18:49 ` Jason Gunthorpe
2025-09-06 8:12 ` Nicolin Chen
2025-09-08 15:39 ` Jason Gunthorpe
2025-09-08 18:19 ` Nicolin Chen
2025-09-08 18:24 ` Jason Gunthorpe
2025-09-08 18:45 ` Nicolin Chen
2025-08-14 1:25 ` [PATCH rfcv1 8/8] iommu/arm-smmu-v3: Perform per-domain invalidations using arm_smmu_invs Nicolin Chen
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=20250827182123.GB2206304@nvidia.com \
--to=jgg@nvidia.com \
--cc=balbirs@nvidia.com \
--cc=iommu@lists.linux.dev \
--cc=jean-philippe@linaro.org \
--cc=joro@8bytes.org \
--cc=kevin.tian@intel.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=miko.lenczewski@arm.com \
--cc=nicolinc@nvidia.com \
--cc=patches@lists.linux.dev \
--cc=peterz@infradead.org \
--cc=praan@google.com \
--cc=robin.murphy@arm.com \
--cc=smostafa@google.com \
--cc=will@kernel.org \
--cc=zhangzekun11@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®