summaryrefslogtreecommitdiff
path: root/board/gateworks
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2023-03-06 17:53:53 +0300
committerStefano Babic <sbabic@denx.de>2023-03-30 14:51:33 +0300
commit599474120a089924aaa502b701600b2fe4b6270c (patch)
tree39700fc6ed88f636f901847b6c163ddc64065d04 /board/gateworks
parentc7ea9612df0f89613a37ebe44ee2f48afc3493d3 (diff)
downloadu-boot-599474120a089924aaa502b701600b2fe4b6270c.tar.xz
arm64: imx8mp: Drop EQoS GPR[1] board workaround
The EQoS interface mode is now configured in common board_interface_eth_init() and called by EQoS MAC driver when appropriate. Drop the board side duplicates if the same functionality. Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'board/gateworks')
-rw-r--r--board/gateworks/venice/venice.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/board/gateworks/venice/venice.c b/board/gateworks/venice/venice.c
index 58736c680e..ca62f0be6d 100644
--- a/board/gateworks/venice/venice.c
+++ b/board/gateworks/venice/venice.c
@@ -57,19 +57,6 @@ static int __maybe_unused setup_fec(void)
return 0;
}
-static int __maybe_unused setup_eqos(void)
-{
- struct iomuxc_gpr_base_regs *gpr =
- (struct iomuxc_gpr_base_regs *)IOMUXC_GPR_BASE_ADDR;
-
- /* set INTF as RGMII, enable RGMII TXC clock */
- clrsetbits_le32(&gpr->gpr[1],
- IOMUXC_GPR_GPR1_GPR_ENET_QOS_INTF_SEL_MASK, BIT(16));
- setbits_le32(&gpr->gpr[1], BIT(19) | BIT(21));
-
- return set_clk_eqos(ENET_125MHZ);
-}
-
#if (IS_ENABLED(CONFIG_NET))
int board_phy_config(struct phy_device *phydev)
{
@@ -99,8 +86,6 @@ int board_init(void)
if (IS_ENABLED(CONFIG_FEC_MXC))
setup_fec();
- if (IS_ENABLED(CONFIG_DWC_ETH_QOS))
- setup_eqos();
return 0;
}