]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commited5106a27a2da99ba92085cf1365e52cd2566095
treebfd33b553a3c27b5325a2a70ff2c52701785f6c3
parent0ea36e307fd5504a014f741f871193a6f33dbb51
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