> Yeah, I plan to fix this. So I have a few more questions. In the > example I gave, what should happen if the gpios listed in the phy's DT > node aren't ready yet?
There are four different use cases for GPIO. 1) The GPIO is used to reset all devices on the MDIO bus. When the bus is registered with the core, the core will try to get this GPIO. If we get EPROBE_DEFER, the registration of the bus is deferred and tried again later. If the MAC driver tries to get the PHY device before the MDIO bus is enumerated, it should also get EPROBE_DEFER, and in the end everything should work. 2) The GPIO is for a specific PHY. Here we have an oddity in the code. If the PHY responds to bus enumeration, before we start doing anything with the reset GPIO, it will be discovered on the bus. At this point, we try to get the GPIO. If that fails with EPROBE_DEFER, all the PHYs on the bus are unregistered, and the bus registration process fails with EPROBE_DEFER. 3) The GPIO is for a specific PHY. However, the device does not respond to enumeration, because it is held in reset. You can get around this by placing the ID values into device tree. The bus is first enumerated in the normal way. And then devices which are listed in DT, but have not been found, and have ID registers are registered to the bus. This follows pretty much the same path as for a device which is discovered. Before the device is registered with the device core, we get the GPIOs, and handle the EPROBE_DEFER, unwinding everything. 4) The GPIO does not use the normal name in DT. Or the PHY has some other resource, which phylib does nothing with. The driver specific to the hardware has code to handle the resource. It should try to get those resources during probe. If probe returns EPROBE_DEFER, the probe will be retried later. And when the MAC driver tries to find the PHY, it should also get EPROBE_DEFER. In case 4, the fallback driver has no idea about these PHY devices specific properties. They are not part of 802.3 clause 22. So it will ignore them. Probably the PHY will not work, because it is missing a reset, or a clock, or a regulator. But we don't really care about that. In order that the DT was accepted into the kernel, there must be a device specific driver which uses those properties. So the kernel installation is broken, that hardware specific driver is missing. Andrew