Skip to content
Snippets Groups Projects
Commit 755a116e authored by Fabio Estevam's avatar Fabio Estevam Committed by Stefano Babic
Browse files

tqma6_wru4: Fix the reset delay for the the LAN8720 PHY


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

So do as suggested by the LAN8720 datasheet.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
parent 529a6712
No related branches found
No related tags found
No related merge requests found
......@@ -177,7 +177,7 @@ static void setup_iomuxc_enet(void)
ret = gpio_request(ENET_PHY_RESET_GPIO, "phy-reset");
if (!ret)
gpio_direction_output(ENET_PHY_RESET_GPIO , 0);
udelay(1000);
udelay(25000);
gpio_set_value(ENET_PHY_RESET_GPIO, 1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment