提交 529a6712 编写于 作者: F Fabio Estevam 提交者: Stefano Babic

mx6slevk: Fix the reset delay for the the LAN8720 PHY

Since commit 59370f3f ("net: phy: delay only if reset handler is
registered") Ethernet is no longer functional.

This commit does not have an issue in itself, but it revelead a problem
with the Ethernet initialization.

According to the LAN8720 datasheet tpurstd (time that reset line should
stay asserted) is 25ms.

So do as suggested in order to have Ethernet working again.
Signed-off-by: NFabio Estevam <fabio.estevam@nxp.com>
上级 cf94a342
......@@ -156,7 +156,7 @@ static void setup_iomux_fec(void)
/* Reset LAN8720 PHY */
gpio_direction_output(ETH_PHY_RESET , 0);
udelay(1000);
udelay(25000);
gpio_set_value(ETH_PHY_RESET, 1);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册