The following changes since commit 953653936cfc9e12f52df1165080fa6c7cbae1bc:
Merge tag 'u-boot-marvell-next-20260610' of https://source.denx.de/u-boot/custodians/u-boot-marvell into next (2026-06-10 09:18:15 -0600) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-mediatek.git tags/mediatek-for-next-2026-06-10 for you to fetch changes up to f30d2dbedb6ea14b9b43a2c83ae229778be6979c: configs/mt8365: enable bootstd, FIT and DT overlays (2026-06-10 15:37:04 -0500) ---------------------------------------------------------------- * Network support for Genio 520/720. * Order drivers/net Makefile and Kconfig. * Refactor some common Airoha net/phy functions to a new common file. * Add new AN8801 chip support. * Add board-specific devicetree and config. * Use scnprintf() instead of snprintf() in mtk pinctrl. * Align configs for Genio EVK boards. ---------------------------------------------------------------- David Lechner (4): pinctrl: mediatek: use scnprintf() instead of snprintf() configs/mt8188: enable bootstd, FIT and DT overlays configs/mt8195: enable bootstd, FIT and DT overlays configs/mt8365: enable bootstd, FIT and DT overlays Julien Stephan (9): MAINTAINERS: remove trailing colons from section titles MAINTAINERS: add maintainer entry for air_en8811 driver net: Fix alphabetical ordering in drivers/net/Makefile net: Fix alphabetical ordering in drivers/net/Kconfig net: phy: air_phy_lib: Factorize BuckPBus register net: phy: Add airoha AN8801 ethernet phy driver net: dwc_eth_qos: Add mediatek support arm: dts: mt8189: Add ethernet support for Genio 520/720 boards configs: mt8189: Enable ethernet support MAINTAINERS | 13 +- arch/arm/dts/mt8189.dtsi | 77 ++++ arch/arm/dts/mt8371-genio-common.dtsi | 83 ++++ configs/mt8188.config | 4 +- configs/mt8189.config | 5 + configs/mt8195.config | 4 +- configs/mt8365_evk_defconfig | 4 +- drivers/net/Kconfig | 35 +- drivers/net/Makefile | 11 +- drivers/net/dwc_eth_qos.c | 6 + drivers/net/dwc_eth_qos.h | 2 + drivers/net/dwc_eth_qos_mtk.c | 442 +++++++++++++++++++ drivers/net/phy/airoha/Kconfig | 13 + drivers/net/phy/airoha/Makefile | 2 + drivers/net/phy/airoha/air_an8801.c | 594 ++++++++++++++++++++++++++ drivers/net/phy/airoha/air_en8811.c | 303 +++---------- drivers/net/phy/airoha/air_phy_lib.c | 216 ++++++++++ drivers/net/phy/airoha/air_phy_lib.h | 39 ++ drivers/pinctrl/mediatek/pinctrl-mtk-common.c | 10 +- 19 files changed, 1596 insertions(+), 267 deletions(-) create mode 100644 drivers/net/dwc_eth_qos_mtk.c create mode 100644 drivers/net/phy/airoha/air_an8801.c create mode 100644 drivers/net/phy/airoha/air_phy_lib.c create mode 100644 drivers/net/phy/airoha/air_phy_lib.h

