]> 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)
commit01bd0da317592a105cbf71c2103e340e98e779b1
treebfd33b553a3c27b5325a2a70ff2c52701785f6c3
parentba62099f0b951071e83299ee33bd4fb2eefe92a0
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