mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
net: mvpp2: increase PHY reset pulse
The default Linux PHY reset delay is 10ms. This is also the requirement for Marvell 88E151x PHYs, which are likely to be used with this Ethernet MAC. Cc: Stefan Chulski <stefanc@marvell.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Acked-by: Joe Hershberger <joe.hershberger@ni.com> Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
fa14027d5c
commit
18593fa80b
1 changed files with 1 additions and 1 deletions
|
@ -4793,7 +4793,7 @@ static void mvpp2_gpio_init(struct mvpp2_port *port)
|
|||
{
|
||||
if (dm_gpio_is_valid(&port->phy_reset_gpio)) {
|
||||
dm_gpio_set_value(&port->phy_reset_gpio, 1);
|
||||
udelay(1000);
|
||||
mdelay(10);
|
||||
dm_gpio_set_value(&port->phy_reset_gpio, 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue