* [PATCH] iommu/arm-smmu: Play nice on non-ARM/SMMU systems
@ 2014-11-07 15:26 Thierry Reding
[not found] ` <1415373978-16203-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Thierry Reding @ 2014-11-07 15:26 UTC (permalink / raw)
To: Joerg Roedel
Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Will Deacon,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
Currently the driver registers IOMMU bus operations for all busses even
if no ARM SMMU is present on a system. Depending on the driver probing
order this prevents the driver for the real IOMMU to register itself as
the bus-wide IOMMU.
Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
---
drivers/iommu/arm-smmu.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c
index 60558f794922..e154826d8b1d 100644
--- a/drivers/iommu/arm-smmu.c
+++ b/drivers/iommu/arm-smmu.c
@@ -2072,8 +2072,20 @@ static struct platform_driver arm_smmu_driver = {
static int __init arm_smmu_init(void)
{
+ struct device_node *np;
int ret;
+ /*
+ * Play nice with systems that don't have an ARM SMMU by checking that
+ * an ARM SMMU exists in the system before proceeding with the driver
+ * and IOMMU bus operation registration.
+ */
+ np = of_find_matching_node(NULL, arm_smmu_of_match);
+ if (!np)
+ return 0;
+
+ of_node_put(np);
+
ret = platform_driver_register(&arm_smmu_driver);
if (ret)
return ret;
--
2.1.3
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <1415373978-16203-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] iommu/arm-smmu: Play nice on non-ARM/SMMU systems [not found] ` <1415373978-16203-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2014-11-10 17:25 ` Will Deacon [not found] ` <20141110172539.GM23942-5wv7dgnIgG8@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Will Deacon @ 2014-11-10 17:25 UTC (permalink / raw) To: Thierry Reding Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org On Fri, Nov 07, 2014 at 03:26:18PM +0000, Thierry Reding wrote: > From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > Currently the driver registers IOMMU bus operations for all busses even > if no ARM SMMU is present on a system. Depending on the driver probing > order this prevents the driver for the real IOMMU to register itself as > the bus-wide IOMMU. > > Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > --- > drivers/iommu/arm-smmu.c | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c > index 60558f794922..e154826d8b1d 100644 > --- a/drivers/iommu/arm-smmu.c > +++ b/drivers/iommu/arm-smmu.c > @@ -2072,8 +2072,20 @@ static struct platform_driver arm_smmu_driver = { > > static int __init arm_smmu_init(void) > { > + struct device_node *np; > int ret; > > + /* > + * Play nice with systems that don't have an ARM SMMU by checking that > + * an ARM SMMU exists in the system before proceeding with the driver > + * and IOMMU bus operation registration. > + */ > + np = of_find_matching_node(NULL, arm_smmu_of_match); > + if (!np) > + return 0; > + > + of_node_put(np); > + Hopefully, this will be solved shortly by the of_iommu_configure series I've been dragging my feet with recently. However, since that's not done yet, this looks like the best thing for now, even if it's a bit of a bodge. Have you checked/updated other IOMMMU drivers too? Will ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <20141110172539.GM23942-5wv7dgnIgG8@public.gmane.org>]
* Re: [PATCH] iommu/arm-smmu: Play nice on non-ARM/SMMU systems [not found] ` <20141110172539.GM23942-5wv7dgnIgG8@public.gmane.org> @ 2014-11-11 16:18 ` Thierry Reding 0 siblings, 0 replies; 3+ messages in thread From: Thierry Reding @ 2014-11-11 16:18 UTC (permalink / raw) To: Will Deacon Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org [-- Attachment #1.1: Type: text/plain, Size: 2050 bytes --] On Mon, Nov 10, 2014 at 05:25:39PM +0000, Will Deacon wrote: > On Fri, Nov 07, 2014 at 03:26:18PM +0000, Thierry Reding wrote: > > From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > > > Currently the driver registers IOMMU bus operations for all busses even > > if no ARM SMMU is present on a system. Depending on the driver probing > > order this prevents the driver for the real IOMMU to register itself as > > the bus-wide IOMMU. > > > > Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > --- > > drivers/iommu/arm-smmu.c | 12 ++++++++++++ > > 1 file changed, 12 insertions(+) > > > > diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c > > index 60558f794922..e154826d8b1d 100644 > > --- a/drivers/iommu/arm-smmu.c > > +++ b/drivers/iommu/arm-smmu.c > > @@ -2072,8 +2072,20 @@ static struct platform_driver arm_smmu_driver = { > > > > static int __init arm_smmu_init(void) > > { > > + struct device_node *np; > > int ret; > > > > + /* > > + * Play nice with systems that don't have an ARM SMMU by checking that > > + * an ARM SMMU exists in the system before proceeding with the driver > > + * and IOMMU bus operation registration. > > + */ > > + np = of_find_matching_node(NULL, arm_smmu_of_match); > > + if (!np) > > + return 0; > > + > > + of_node_put(np); > > + > > Hopefully, this will be solved shortly by the of_iommu_configure series I've > been dragging my feet with recently. However, since that's not done yet, > this looks like the best thing for now, even if it's a bit of a bodge. > > Have you checked/updated other IOMMMU drivers too? ARM SMMU was the only one being enabled on 64-bit where I noticed this, but from a quick glance a couple of the other ARM driver are affected as well. I'll see if I can find the time to come up with a similar patch. Of course if these IOMMU drivers were proper drivers and bind to a device, then this problem wouldn't exist in the first place. Thierry [-- Attachment #1.2: Type: application/pgp-signature, Size: 819 bytes --] [-- Attachment #2: Type: text/plain, Size: 0 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-11-11 16:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-07 15:26 [PATCH] iommu/arm-smmu: Play nice on non-ARM/SMMU systems Thierry Reding
[not found] ` <1415373978-16203-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-11-10 17:25 ` Will Deacon
[not found] ` <20141110172539.GM23942-5wv7dgnIgG8@public.gmane.org>
2014-11-11 16:18 ` Thierry Reding
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).