Re: [PATCH v5] amba: Remove deferred device addition

From: Lee Jones
Date: Thu Jul 21 2022 - 07:30:37 EST


On Thu, 21 Jul 2022, Russell King (Oracle) wrote:

> On Wed, Jul 20, 2022 at 02:12:21PM +0100, Sudeep Holla wrote:
> > On Tue, Jul 19, 2022 at 11:20:10AM -0700, Saravana Kannan wrote:
> > > The uevents generated for an amba device need PID and CID information
> > > that's available only when the amba device is powered on, clocked and
> > > out of reset. So, if those resources aren't available, the information
> > > can't be read to generate the uevents. To workaround this requirement,
> > > if the resources weren't available, the device addition was deferred and
> > > retried periodically.
> > >
> > > However, this deferred addition retry isn't based on resources becoming
> > > available. Instead, it's retried every 5 seconds and causes arbitrary
> > > probe delays for amba devices and their consumers.
> > >
> > > Also, maintaining a separate deferred-probe like mechanism is
> > > maintenance headache.
> > >
> > > With this commit, instead of deferring the device addition, we simply
> > > defer the generation of uevents for the device and probing of the device
> > > (because drivers needs PID and CID to match) until the PID and CID
> > > information can be read. This allows us to delete all the amba specific
> > > deferring code and also avoid the arbitrary probing delays.
> > >
> > > Cc: Rob Herring <robh@xxxxxxxxxx>
> > > Cc: Ulf Hansson <ulf.hansson@xxxxxxxxxx>
> > > Cc: Saravana Kannan <saravanak@xxxxxxxxxx>
> > > Cc: Linus Walleij <linus.walleij@xxxxxxxxxx>
> > > Cc: Sudeep Holla <sudeep.holla@xxxxxxx>
> >
> > Tested-by: Sudeep Holla <sudeep.holla@xxxxxxx>
> >
> > on Juno with linux-next(which had the reported issue [1]) + this patch(which
> > fixes the issue)
>
> Ok, but this patch needs to end up in the patch system for me to apply
> it. Can someone please add "KernelVersion: 5.19-rc7" or whatever version
> the patch was generated against (just the tagged version is sufficient)
> somewhere in the email, and send it to patches@xxxxxxxxxxxxxx.

If this is a part of the submission process for the subsystems/files
you maintain, do you think it would be worth while adding this address
to MAINTAINERS to make it easier for future contributors?