From: swarren@wwwdotorg.org (Stephen Warren)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC 1/1] Driver Core: don't oops with unregistered driver in driver_find_device()
Date: Thu, 10 May 2012 14:00:48 -0600 [thread overview]
Message-ID: <4FAC1E70.8030907@wwwdotorg.org> (raw)
In-Reply-To: <20120510181611.GA16908@kroah.com>
On 05/10/2012 12:16 PM, Greg Kroah-Hartman wrote:
> On Thu, May 10, 2012 at 09:59:15AM -0600, Stephen Warren wrote:
>> On 05/10/2012 08:11 AM, Greg Kroah-Hartman wrote:
>>> On Thu, May 10, 2012 at 10:35:02AM +0300, Hiroshi DOYU wrote:
>>>> driver_find_device() can be called with an unregistered driver.
>>>
>>> Who does that? Where in the kernel? Why would you try to do that?
>>>
>>>> Need to check driver_private to see if it's populated or not,
>>>> especially under deferrable probe.
>>>
>>> Hm, I don't know if this will really catch a driver that was registered
>>> and then was unregistered, right? It seems like moving the real problem
>>> somewhere else, why not fix the original issue instead?
>>>
>>>> Signed-off-by: Hiroshi DOYU <hdoyu@nvidia.com>
>>>> ---
>>>> In [PATCHv5 2/3] ARM: tegra: Add SMMU enabler in AHB:
>>>> http://article.gmane.org/gmane.linux.ports.tegra/4658
>>>>
>>>> "tegra_ahb_driver" may not be populated when it's called.
>>>
>>> It can? I don't see that in that patch.
>>
>> I think this is what's happening:
>>
>> The Tegra SMMU driver is registered using subsys_initcall().
>>
>> The Tegra AHB driver is registered using module_platform_driver, so
>> module_init().
>>
>> The device objects for both are registered at basically the same time
>> during the machine's initialization call, which I think happens before
>> both or some of the above two calls.
>>
>> So, SMMU ends up getting probed before the AHB driver has even been
>> registered.
>
> What do those two drivers have to do with each other?
The AHB HW module contains a bit to say "enable the SMMU". This bit
cannot be turned on until certain initialization has been performed by
the SMMU driver.
So, SMMU's probe performs the initialization, then attempts to contact
the AHB driver to ask it to enable the SMMU.
>> That's why in patch Hiroshi linked, in tegra_ahb_enable_smmu(), the AHB
>> driver hasn't (or may not have) been registered, so driver_find_device()
>> can experience the issue this patch attempts to solve.
>
> It sounds like you have a locking or ordering problem somewhere in this
> platform, and it needs to be resolved there. Odds are, this tiny check
> is the least of your worries, right?
>
> Who is doing the driver_find_device() call in the first place? The
> driver core? Or something else?
SMMU's probe calls tegra_ahb_enable_smmu().
tegra_ahb_enable_smmu() needs to find the AHB's struct device so that it
can find get the driver data associated with it, which contains the
ioremap'd registers amongst other things.
In order to find the correct device, tegra_ahb_enable_smmu() is passed
the device tree node of the appropriate AHB that controls the SMMU.
The two drivers use deferred probe to ensure that their relative probe
order doesn't matter. If AHB is probed first, then
tegra_ahb_enable_smmu()'s driver_find_device() succeeds, and the AHB
register is programmed to enable the SMMU. If the SMMU is probed first,
then tegra_ahb_enable_smmu() returns -EPROBE_DEFER to hold off the SMMU
from completing its probe. I believe this is exactly the kind of thing
-EPROBE_DEFER was intended for.
next prev parent reply other threads:[~2012-05-10 20:00 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-10 7:35 [RFC 1/1] Driver Core: don't oops with unregistered driver in driver_find_device() Hiroshi DOYU
2012-05-10 14:11 ` Greg Kroah-Hartman
2012-05-10 15:59 ` Stephen Warren
2012-05-10 18:16 ` Greg Kroah-Hartman
2012-05-10 20:00 ` Stephen Warren [this message]
2012-05-10 22:28 ` Greg Kroah-Hartman
2012-05-10 22:34 ` Stephen Warren
2012-05-10 22:45 ` Greg Kroah-Hartman
2012-05-11 8:03 ` Hiroshi Doyu
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=4FAC1E70.8030907@wwwdotorg.org \
--to=swarren@wwwdotorg.org \
--cc=linux-arm-kernel@lists.infradead.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).