]> git.baikalelectronics.ru Git - kernel.git/commit
net: phy: probe PHY drivers synchronously
authorHeiner Kallweit <hkallweit1@gmail.com>
Fri, 27 Mar 2020 00:00:22 +0000 (01:00 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 27 Mar 2020 02:43:26 +0000 (19:43 -0700)
commit61ac7d96fd268e0d159a7e53f6e6682b6dea9dc9
treec3b4aef9d286b31ede9fd9b642a40a06604b25c3
parent491289a77962ea1c7fbcbf823c74024102134607
net: phy: probe PHY drivers synchronously

If we have scenarios like

mdiobus_register()
-> loads PHY driver module(s)
-> registers PHY driver(s)
-> may schedule async probe
phydev = mdiobus_get_phy()
<phydev action involving PHY driver>

or

phydev = phy_device_create()
-> loads PHY driver module
-> registers PHY driver
-> may schedule async probe
<phydev action involving PHY driver>

then we expect the PHY driver to be bound to the phydev when triggering
the action. This may not be the case in case of asynchronous probing.
Therefore ensure that PHY drivers are probed synchronously.

Default still is sync probing, except async probing is explicitly
requested. I saw some comments that the intention is to promote
async probing for more parallelism in boot process and want to be
prepared for the case that the default is changed to async probing.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/phy_device.c