From: Tudor Ambarus <tudor.ambarus@linaro.org>
To: Jason Gunthorpe <jgg@ziepe.ca>
Cc: Joerg Roedel <joro@8bytes.org>, Will Deacon <will@kernel.org>,
Robin Murphy <robin.murphy@arm.com>,
Lorenzo Pieralisi <lpieralisi@kernel.org>,
"Rob Herring (Arm)" <robh@kernel.org>,
Joerg Roedel <jroedel@suse.de>,
Bjorn Helgaas <bhelgaas@google.com>,
iommu@lists.linux.dev, linux-kernel@vger.kernel.org,
peter.griffin@linaro.org, andre.draszik@linaro.org,
willmcvicker@google.com, jyescas@google.com,
kernel-team@android.com, stable@vger.kernel.org
Subject: Re: [PATCH] iommu: Fix bypass of IOMMU readiness check for multi-IOMMU devices
Date: Mon, 23 Mar 2026 18:46:39 +0200 [thread overview]
Message-ID: <1062b66d-e4d0-4eee-8fc2-dbb65491a01b@linaro.org> (raw)
In-Reply-To: <20260323135414.GA8437@ziepe.ca>
Hi, Jason,
On 3/23/26 3:54 PM, Jason Gunthorpe wrote:
> On Mon, Mar 23, 2026 at 01:09:27PM +0000, Tudor Ambarus wrote:
>> Commit da33e87bd2bf ("iommu: Handle yet another race around
>> registration") introduced a readiness check in `iommu_fwspec_init()` to
>> prevent client drivers from configuring their IOMMUs before
>> `bus_iommu_probe()` has completed.
>>
>> To optimize the replay path, the readiness check was conditionally
>> gated behind `!dev->iommu`:
>> if (!dev->iommu && !READ_ONCE(iommu->ready))
>> return -EPROBE_DEFER;
>>
>> However, this assumption breaks down for devices that map to multiple
>> IOMMU instances.
>
> ?? We don't directly support "multiple IOMMU instances". There is only
> one dev->iommu.
>
> AFAIK if some drivers need to support multiple different instances of
> the same IOMMU driver they must deal with this fully internally and
> present to the core a "single instance" view.
Thanks for the quick answer. I may miss a few things, I should have
marked this as an RFC. Would you please help me understand a little bit
more on this topic?
Downstream we have a display controller that's using:
iommus = <&sysmmu_19840000>, <&sysmmu_19c40000>;
These are 2 distinct platform devices, they probe independently, they
each call iommu_device_register() independently.
If I understood you correctly, the downstream driver shall model its
architecture and call iommu_device_register() only once after both
devices are configured.
My downstream reality is different. Here's what I'm encountering:
1/ sysmmu_19840000: dev->iommu is NULL. iommu_fwspec_init() correctly
evaluates !READ_ONCE(sysmmu_19840000->ready). Assuming it is ready,
it allocates dev->iommu.
2/ dev->iommu is now NOT NULL. iommu_fwspec_init() is called for the
second physical instance.
3/ Because of the !dev->iommu gate, the evaluation of
!READ_ONCE(sysmmu_19c40000->ready) is short-circuited and skipped
entirely.
But sysmmu_19c40000 is not ready, its specific bus_iommu_probe() is
executing asynchronously on another CPU.
If the core's intent is to strictly enforce a single IOMMU instance,
shouldn't iommu_fwspec_init() be checking
fwspec->iommu_fwnode == iommu_fwnode
instead of matching the ops? Because the core currently matches on
ops, it permits aggregating multiple physical instances with the
same ops into one fwspec.
Thanks a ton!
ta
--- a/drivers/iommu/iommu.c
+++ b/drivers/iommu/iommu.c
@@ -2940,7 +2940,7 @@ int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode)
return -EPROBE_DEFER;
if (fwspec)
- return iommu->ops == iommu_fwspec_ops(fwspec) ? 0 : -EINVAL;
+ return fwspec->iommu_fwnode == iommu_fwnode ? 0 : -EINVAL;
if (!dev_iommu_get(dev))
return -ENOMEM;
next prev parent reply other threads:[~2026-03-23 16:46 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-23 13:09 [PATCH] iommu: Fix bypass of IOMMU readiness check for multi-IOMMU devices Tudor Ambarus
2026-03-23 13:54 ` Jason Gunthorpe
2026-03-23 16:46 ` Tudor Ambarus [this message]
2026-03-23 17:31 ` Jason Gunthorpe
2026-04-02 11:25 ` Tudor Ambarus
2026-04-02 11:59 ` Jason Gunthorpe
2026-04-02 14:20 ` Robin Murphy
2026-04-14 13:04 ` Tudor Ambarus
2026-03-24 11:40 ` Robin Murphy
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=1062b66d-e4d0-4eee-8fc2-dbb65491a01b@linaro.org \
--to=tudor.ambarus@linaro.org \
--cc=andre.draszik@linaro.org \
--cc=bhelgaas@google.com \
--cc=iommu@lists.linux.dev \
--cc=jgg@ziepe.ca \
--cc=joro@8bytes.org \
--cc=jroedel@suse.de \
--cc=jyescas@google.com \
--cc=kernel-team@android.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=peter.griffin@linaro.org \
--cc=robh@kernel.org \
--cc=robin.murphy@arm.com \
--cc=stable@vger.kernel.org \
--cc=will@kernel.org \
--cc=willmcvicker@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