mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 10:54:37 +00:00
board: gateworks: venice: Simplify Ethernet initialization
With DM enabled, there is no need for board code to initialize the Ethernet interfaces. Specifically board_interface_eth_init will handle the configuration of GPR1. Signed-off-by: Tim Harvey <tharvey@gateworks.com>
This commit is contained in:
parent
8ffd7fb0df
commit
6888c934e7
1 changed files with 0 additions and 19 deletions
|
@ -45,22 +45,6 @@ int board_fit_config_name_match(const char *path)
|
|||
return -1;
|
||||
}
|
||||
|
||||
static int __maybe_unused setup_fec(void)
|
||||
{
|
||||
struct iomuxc_gpr_base_regs *gpr =
|
||||
(struct iomuxc_gpr_base_regs *)IOMUXC_GPR_BASE_ADDR;
|
||||
|
||||
#ifndef CONFIG_IMX8MP
|
||||
/* Use 125M anatop REF_CLK1 for ENET1, not from external */
|
||||
clrsetbits_le32(&gpr->gpr[1], 0x2000, 0);
|
||||
#else
|
||||
/* Enable RGMII TX clk output */
|
||||
setbits_le32(&gpr->gpr[1], BIT(22));
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#if (IS_ENABLED(CONFIG_NET))
|
||||
int board_phy_config(struct phy_device *phydev)
|
||||
{
|
||||
|
@ -91,9 +75,6 @@ int board_init(void)
|
|||
{
|
||||
venice_eeprom_init(1);
|
||||
|
||||
if (IS_ENABLED(CONFIG_FEC_MXC))
|
||||
setup_fec();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue