udoo_neo: Fix ethernet

The ethernet has a RMII not RGMII, also needs DM_MDIO and finally
initialise it later in the process as it's not needed that early on
and not everything is ready so it locks up the device.

Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
This commit is contained in:
Peter Robinson 2021-12-21 12:32:48 +00:00 committed by Tom Rini
parent 2bbe1ba0c7
commit 79ac6917d0
2 changed files with 3 additions and 2 deletions

View file

@ -303,6 +303,8 @@ int board_init(void)
setup_i2c(0, CONFIG_SYS_I2C_SPEED, 0x7f, &i2c_pad_info1);
#endif
setup_fec();
return 0;
}
@ -337,7 +339,6 @@ static int get_board_value(void)
int board_early_init_f(void)
{
setup_iomux_uart();
setup_fec();
return 0;
}

View file

@ -46,8 +46,8 @@ CONFIG_PHYLIB=y
CONFIG_PHY_MICREL=y
CONFIG_PHY_MICREL_KSZ8XXX=y
CONFIG_DM_ETH=y
CONFIG_DM_MDIO=y
CONFIG_FEC_MXC=y
CONFIG_RGMII=y
CONFIG_MII=y
CONFIG_PINCTRL=y
CONFIG_PINCTRL_IMX6=y