net: lpc_eth: parse phy nodes from device tree
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Thu, 17 Oct 2019 22:22:31 +0000 (00:22 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 18 Oct 2019 20:12:35 +0000 (13:12 -0700)
commit3503bf024b3ec6d36ba1fe7a19ad083f058bb95d
treebfd33b553a3c27b5325a2a70ff2c52701785f6c3
parent2c69dae840c8d1ab93dc7226225807518df84140
net: lpc_eth: parse phy nodes from device tree

When connected to a micrel phy, phy_find_first doesn't work properly
because the first phy found is on address 0, the broadcast address but, the
first thing the phy driver is doing is disabling this broadcast address.
The phy is then available only on address 1 but the mdio driver doesn't
know about it.

Instead, register the mdio bus using of_mdiobus_register and try to find
the phy description in device tree before falling back to phy_find_first.

This ultimately also allows to describe the interrupt the phy is connected
to.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/nxp/lpc_eth.c