diff options
author | Christophe Roullier <christophe.roullier@foss.st.com> | 2025-04-11 11:27:20 +0200 |
---|---|---|
committer | Patrice Chotard <patrice.chotard@foss.st.com> | 2025-05-05 15:51:47 +0200 |
commit | 20afca89ed53c9e373d4d4f5b9bea847fc47ee20 (patch) | |
tree | 98951e6ac0798c2ab1cfa30d9ee98ec8d58fafd1 /drivers/net/dwc_eth_qos.c | |
parent | 1fa9718047bcdd9af8da20746f7b540befee55ab (diff) |
net: dwc_eth_qos: add support of stm32mp2 platform
Add compatible "st,stm32mp25-dwmac" to manage STM32MP2 boards
Signed-off-by: Christophe Roullier <christophe.roullier@foss.st.com>
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Marek Vasut <marex@denx.de>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Diffstat (limited to 'drivers/net/dwc_eth_qos.c')
-rw-r--r-- | drivers/net/dwc_eth_qos.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/dwc_eth_qos.c b/drivers/net/dwc_eth_qos.c index 0cfe09333f7..551ee0ea6a0 100644 --- a/drivers/net/dwc_eth_qos.c +++ b/drivers/net/dwc_eth_qos.c @@ -1599,6 +1599,10 @@ static const struct udevice_id eqos_ids[] = { .compatible = "st,stm32mp1-dwmac", .data = (ulong)&eqos_stm32mp15_config }, + { + .compatible = "st,stm32mp25-dwmac", + .data = (ulong)&eqos_stm32mp25_config + }, #endif #if IS_ENABLED(CONFIG_DWC_ETH_QOS_IMX) { |