iommu.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
From: Alex Williamson <alex.williamson-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Liviu Dudau <Liviu.Dudau-5wv7dgnIgG8@public.gmane.org>
Cc: Laurent Pinchart
	<laurent.pinchart+renesas-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org>,
	Geert Uytterhoeven
	<geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>,
	Shawn Lin <shawn.lin-TNX95d0MmH7DzftRWevZcw@public.gmane.org>,
	Magnus Damm
	<damm+renesas-yzvPICuk2ACczHhG9Qg4qA@public.gmane.org>,
	LKML <linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	IOMMU ML
	<iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
Subject: Re: [PATCH v2] iommu/ipmmu-vmsa: Do not replace bus IOMMU ops on driver init.
Date: Tue, 21 Nov 2017 10:21:32 -0700	[thread overview]
Message-ID: <20171121102132.5d111f85@t450s.home> (raw)
In-Reply-To: <20171121120801.GK5165-A/Nd4k6kWRHZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>

On Tue, 21 Nov 2017 12:08:01 +0000
Liviu Dudau <Liviu.Dudau-5wv7dgnIgG8@public.gmane.org> wrote:

> On Mon, Nov 20, 2017 at 03:01:44PM -0700, Alex Williamson wrote:
> > On Mon, 20 Nov 2017 14:25:14 +0000
> > Liviu Dudau <Liviu.Dudau-5wv7dgnIgG8@public.gmane.org> wrote:
> >   
> > > On Fri, Oct 13, 2017 at 04:48:45PM +0100, Robin Murphy wrote:  
> > > > Hi Joerg,    
> > > 
> > > Hi,
> > >   
> > > > 
> > > > On 20/09/17 15:13, Liviu Dudau wrote:    
> > > > > If the IPMMU driver is compiled in the kernel it will replace the
> > > > > platform bus IOMMU ops on running the ipmmu_init() function, regardless
> > > > > if there is any IPMMU hardware present or not. This screws up systems
> > > > > that just want to build a generic kernel that runs on multiple platforms
> > > > > and use a different IOMMU implementation.
> > > > > 
> > > > > Move the bus_set_iommu() call at the end of the ipmmu_probe() function
> > > > > when we know that hardware is present. With current IOMMU framework it
> > > > > should be safe (at least for OF case).
> > > > > 
> > > > > Now that the ipmmu_init() and ipmmu_exit() functions are simple calls to
> > > > > platform_driver_register() and platform_driver_unregister(), replace
> > > > > them with the module_platform_driver() macro call.    
> > > > 
> > > > Are you OK with taking this patch as a fix for 4.14, or would you rather
> > > > have something that can safely backport past 4.12 without implicit
> > > > dependencies? This is a config/link-order dependent thing that's been
> > > > lurking since the beginning, but only coming to light now that other
> > > > drivers are changing their behaviour, so I don't think there's really a
> > > > single Fixes: commit that can be singled out.    
> > > 
> > > Can someone update me on the fate of this patch? Can someone queue it
> > > for the next release?  
> > 
> > Sorry, this is another patch that wasn't on my radar while Joerg is out
> > on paternity leave.  I didn't follow the replies to Laurent's question
> > about ordering and perhaps this plays in to Robin asking about fixes
> > for specific kernel versions.  It seems there are some changes
> > elsewhere that somehow defer the ordering problem or don't matter on an
> > Arm Juno board (whatever that is).  Can someone explain?  
> 
> Hi Alex,
> 
> Thanks for replying!
> 
> Laurent was positing that doing the bus_set_iommu() call in the probe
> function will break setups 

Yes, I understood that.  Replying that it was on an Arm64 Juno board
did not in any way clarify to me how that concern is addressed.  Thanks,

Alex

> > If there's a
> > desire for a stable tag for this, it seems like we need to know
> > explicitly the range where it's safe to apply.  Also, the patch needs
> > to be updated and re-evaluated in the presence of:
> > 
> > cda52fcd999f iommu/ipmmu-vmsa: Make use of IOMMU_OF_DECLARE()
> > 
> > Thanks,
> > Alex
> >   
> > > > > Signed-off-by: Liviu Dudau <Liviu.Dudau-5wv7dgnIgG8@public.gmane.org>
> > > > > Cc: Laurent Pinchart <laurent.pinchart+renesas-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org>
> > > > > ---
> > > > >  drivers/iommu/ipmmu-vmsa.c | 29 +++++------------------------
> > > > >  1 file changed, 5 insertions(+), 24 deletions(-)
> > > > > 
> > > > > diff --git a/drivers/iommu/ipmmu-vmsa.c b/drivers/iommu/ipmmu-vmsa.c
> > > > > index 195d6e93ac718..31912997bffdf 100644
> > > > > --- a/drivers/iommu/ipmmu-vmsa.c
> > > > > +++ b/drivers/iommu/ipmmu-vmsa.c
> > > > > @@ -966,10 +966,11 @@ static int ipmmu_probe(struct platform_device *pdev)
> > > > >  		return ret;
> > > > >  
> > > > >  	/*
> > > > > -	 * We can't create the ARM mapping here as it requires the bus to have
> > > > > -	 * an IOMMU, which only happens when bus_set_iommu() is called in
> > > > > -	 * ipmmu_init() after the probe function returns.
> > > > > +	 * Now that we have validated the presence of the hardware, set
> > > > > +	 * the bus IOMMU ops to enable future domain and device setup.
> > > > >  	 */
> > > > > +	if (!iommu_present(&platform_bus_type))
> > > > > +		bus_set_iommu(&platform_bus_type, &ipmmu_ops);
> > > > >  
> > > > >  	platform_set_drvdata(pdev, mmu);
> > > > >  
> > > > > @@ -1006,27 +1007,7 @@ static struct platform_driver ipmmu_driver = {
> > > > >  	.remove	= ipmmu_remove,
> > > > >  };
> > > > >  
> > > > > -static int __init ipmmu_init(void)
> > > > > -{
> > > > > -	int ret;
> > > > > -
> > > > > -	ret = platform_driver_register(&ipmmu_driver);
> > > > > -	if (ret < 0)
> > > > > -		return ret;
> > > > > -
> > > > > -	if (!iommu_present(&platform_bus_type))
> > > > > -		bus_set_iommu(&platform_bus_type, &ipmmu_ops);
> > > > > -
> > > > > -	return 0;
> > > > > -}
> > > > > -
> > > > > -static void __exit ipmmu_exit(void)
> > > > > -{
> > > > > -	return platform_driver_unregister(&ipmmu_driver);
> > > > > -}
> > > > > -
> > > > > -subsys_initcall(ipmmu_init);
> > > > > -module_exit(ipmmu_exit);
> > > > > +module_platform_driver(ipmmu_driver);
> > > > >  
> > > > >  MODULE_DESCRIPTION("IOMMU API for Renesas VMSA-compatible IPMMU");
> > > > >  MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org>");
> > > > >     
> > > >     
> > >   
> >   
> 

  parent reply	other threads:[~2017-11-21 17:21 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-18 10:04 [PATCH] iommu/ipmmu-vmsa: Do not replace bus IOMMU ops on driver init Liviu Dudau
     [not found] ` <20170918100444.21878-1-Liviu.Dudau-5wv7dgnIgG8@public.gmane.org>
2017-09-19  7:07   ` Laurent Pinchart
2017-09-19  9:45     ` Liviu Dudau
2017-09-19 10:47     ` Robin Murphy
2017-09-20 14:13   ` [PATCH v2] " Liviu Dudau
     [not found]     ` <20170920141352.29377-1-Liviu.Dudau-5wv7dgnIgG8@public.gmane.org>
2017-10-13 15:48       ` Robin Murphy
2017-11-20 14:25         ` Liviu Dudau
     [not found]           ` <20171120142514.GI5165-A/Nd4k6kWRHZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>
2017-11-20 22:01             ` Alex Williamson
2017-11-21 12:08               ` Liviu Dudau
2017-11-21 14:02                 ` [PATCH] iommu/ipmmu-vmsa: Simplify driver probing Liviu Dudau
     [not found]                 ` <20171121120801.GK5165-A/Nd4k6kWRHZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>
2017-11-21 17:21                   ` Alex Williamson [this message]
     [not found]                     ` <20171121102132.5d111f85-1yVPhWWZRC1BDLzU/O5InQ@public.gmane.org>
2017-11-21 17:26                       ` [PATCH v2] iommu/ipmmu-vmsa: Do not replace bus IOMMU ops on driver init Liviu Dudau
     [not found]               ` <20171120150144.13390f70-1yVPhWWZRC1BDLzU/O5InQ@public.gmane.org>
2017-11-21 12:59                 ` 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=20171121102132.5d111f85@t450s.home \
    --to=alex.williamson-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
    --cc=Liviu.Dudau-5wv7dgnIgG8@public.gmane.org \
    --cc=damm+renesas-yzvPICuk2ACczHhG9Qg4qA@public.gmane.org \
    --cc=geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org \
    --cc=iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
    --cc=laurent.pinchart+renesas-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=shawn.lin-TNX95d0MmH7DzftRWevZcw@public.gmane.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).