From: Jason Gunthorpe <jgg@ziepe.ca>
To: Benjamin Gaignard <benjamin.gaignard@collabora.com>
Cc: joro@8bytes.org, will@kernel.org, robin.murphy@arm.com,
robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
heiko@sntech.de, nicolas.dufresne@collabora.com,
iommu@lists.linux.dev, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org, kernel@collabora.com
Subject: Re: [PATCH v5 3/5] iommu: Add verisilicon IOMMU driver
Date: Wed, 9 Jul 2025 13:45:33 -0300 [thread overview]
Message-ID: <20250709164533.GA1759573@ziepe.ca> (raw)
In-Reply-To: <20250709085337.53697-4-benjamin.gaignard@collabora.com>
On Wed, Jul 09, 2025 at 10:53:28AM +0200, Benjamin Gaignard wrote:
> +static int vsi_iommu_attach_device(struct iommu_domain *domain,
> + struct device *dev)
> +{
> + struct vsi_iommu *iommu = dev_iommu_priv_get(dev);
> + struct vsi_iommu_domain *vsi_domain = to_vsi_domain(domain);
> + unsigned long flags;
> + int ret = 0;
> +
> + ret = pm_runtime_resume_and_get(iommu->dev);
> + if (ret < 0)
> + return ret;
> +
> + spin_lock_irqsave(&iommu->lock, flags);
> + /* iommu already attached */
> + if (iommu->domain == domain)
> + goto unlock;
> +
> + vsi_iommu_enable(iommu, domain);
> + list_add_tail(&iommu->node, &vsi_domain->iommus);
> + iommu->domain = domain;
> +
> +unlock:
> + spin_unlock_irqrestore(&iommu->lock, flags);
> + pm_runtime_put_autosuspend(iommu->dev);
> + return ret;
I thought this was mentioned before, but this doesn't handle
attach_device being called twice without an identity attach in
between.
And now the new locking doesn't protect concurrent invalidation races,
the lock is in the wrong place.
hold the domain lock across the whole sequence to hold off any
invalidation until the linked list is consistent with the HW
programming:
spin_lock_irqsave(&vsi_domain->lock, flags2); // Prevent invalidation
vsi_iommu_enable(iommu, domain);
list_del(&iommu->node);
list_add_tail(&iommu->node, &vsi_domain->iommus);
spin_unlock_irqrestore(&vsi_domain->lock, flags);
Then remove this:
+ /* iommu already attached */
+ if (iommu->domain == domain)
+ goto unlock;
Since the fix above makes it safe regardless.
And, also feels like again, but vsi_iommu_enable() needs to fully
flush the cache since the translation is being changed, shouldn't
there also be writes to VSI_MMU_FLUSH_BASE ?
Otherwise the locking change looks OK and I don't have other comments.
Jason
next prev parent reply other threads:[~2025-07-09 16:45 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-09 8:53 [PATCH v5 0/5] Add support for Verisilicon IOMMU used by media codec blocks Benjamin Gaignard
2025-07-09 8:53 ` [PATCH v5 1/5] dt-bindings: vendor-prefixes: Add Verisilicon Benjamin Gaignard
2025-07-09 8:53 ` [PATCH v5 2/5] dt-bindings: iommu: verisilicon: Add binding for VSI IOMMU Benjamin Gaignard
2025-07-09 8:53 ` [PATCH v5 3/5] iommu: Add verisilicon IOMMU driver Benjamin Gaignard
2025-07-09 16:45 ` Jason Gunthorpe [this message]
2025-07-10 8:26 ` Benjamin Gaignard
2025-07-09 8:53 ` [PATCH v5 4/5] arm64: dts: rockchip: Add verisilicon IOMMU node on RK3588 Benjamin Gaignard
2025-07-09 8:53 ` [PATCH v5 5/5] arm64: defconfig: enable Verisilicon IOMMU Benjamin Gaignard
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=20250709164533.GA1759573@ziepe.ca \
--to=jgg@ziepe.ca \
--cc=benjamin.gaignard@collabora.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=heiko@sntech.de \
--cc=iommu@lists.linux.dev \
--cc=joro@8bytes.org \
--cc=kernel@collabora.com \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=nicolas.dufresne@collabora.com \
--cc=robh@kernel.org \
--cc=robin.murphy@arm.com \
--cc=will@kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).