Hi Tom, The following changes since commit 813a0df27a8af587bd25a6a4719f68066b370091:
env: Invert gd->env_valid for env_mmc_save (2025-10-21 13:18:46 -0600) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-net.git/ tags/net-20251022 for you to fetch changes up to ed6ec8d1ca0658d811df1cc78d06fec4f7f69fc9: net: designware: fix bitbang init error (2025-10-22 14:28:33 +0200) ---------------------------------------------------------------- Pull request net-20251022 net: - airoha: improvements - Tighten a few more driver dependencies - designware: fix bitbang init error - phy: Make driver overloading get_phy_id depend on !COMPILE_TEST - phy: add paged PHY register accessors - make dhcp_run() common for NET and NET_LWIP - dwc_eth_ops: Correct check for FDT_64BIT - mediatek: mt7988: various fixup + MDIO detach - phy: aquantia: switch to use phy_get_ofnode(), fix bindings typo net-legacy: - bootp: Prevent buffer overflow to avoid leaking the RAM content - tftp: make TFTP ports unconditionally configurable misc: - uthreads: Make use of CONFIG_IS_ENABLED consistently ---------------------------------------------------------------- Alvin Šipraga (1): tftp: make TFTP ports unconditionally configurable Beiyan Yun (2): net: phy: aquantia: switch to use phy_get_ofnode() doc: bindings: fix aquantia-phy.txt typo Christian Marangi (4): net: mediatek: mt7531/7988: fix broken PHY turn ON/OFF net: mediatek: mt7988: restore PHY page on PHY setting exit net: mediatek: mt7988: free allocated MDIO bus on cleanup net: mediatek: move MT7531 MMIO MDIO to dedicated driver Jerome Forissier (1): net: make dhcp_run() common for NET and NET_LWIP Jim Liu (1): net: designware: fix bitbang init error Lucien.Jheng (1): net: phy: add paged PHY register accessors Mikhail Kshevetskiy (2): net: airoha: simplify rx/free packet logic a bit net: airoha: increase the number of rx network buffers Paul HENRYS (1): net: bootp: Prevent buffer overflow to avoid leaking the RAM content Tom Rini (6): uthreads: Make use of CONFIG_IS_ENABLED consistently arm: socfpga: Tighten a few more driver dependencies net: Add SYS_FAULT_MII_ADDR to Kconfig net: Remove BOOTP_VENDOREX support net: Tighten more driver dependencies net: phy: Make driver overloading get_phy_id depend on !COMPILE_TEST README | 3 - cmd/Kconfig | 4 - cmd/net.c | 36 +----- configs/an7581_evb_defconfig | 1 + configs/gurnard_defconfig | 1 - doc/device-tree-bindings/net/aquantia-phy.txt | 2 +- doc/usage/cmd/tftpput.rst | 8 +- drivers/net/Kconfig | 10 +- drivers/net/Makefile | 1 + drivers/net/airoha_eth.c | 40 +++--- drivers/net/designware.c | 12 +- drivers/net/mdio-mt7531-mmio.c | 168 ++++++++++++++++++++++++++ drivers/net/mdio-mt7531-mmio.h | 9 ++ drivers/net/mtk_eth/Kconfig | 2 + drivers/net/mtk_eth/mt7531.c | 20 ++- drivers/net/mtk_eth/mt7988.c | 92 +++++++++++--- drivers/net/phy/Kconfig | 2 + drivers/net/phy/aquantia.c | 2 +- drivers/net/phy/phy.c | 113 +++++++++++++++++ drivers/power/domain/Kconfig | 2 +- include/net-common.h | 10 ++ include/net-lwip.h | 1 - include/phy.h | 8 ++ include/uthread.h | 4 +- lib/Makefile | 2 +- net/Kconfig | 20 +-- net/bootp.c | 24 ++-- net/bootp.h | 4 - net/lwip/dhcp.c | 22 ---- net/net-common.c | 35 ++++++ net/tftp.c | 3 +- 31 files changed, 497 insertions(+), 164 deletions(-) create mode 100644 drivers/net/mdio-mt7531-mmio.c create mode 100644 drivers/net/mdio-mt7531-mmio.h CI link: https://source.denx.de/u-boot/custodians/u-boot-net/-/pipelines/27997 Thanks, -- Jerome

