Hi Tom, please pull these sunxi changes into main:
Beside a fix for a long standing bug in the A80 eMMC code, this adds SPI booting support for the Allwinner A523/A527/T527 class of boards. The second major feature is support for the secondary Ethernet controller on that same SoC. This might not be as important as for the kernel (I doubt that U-Boot acts as a router), but for once some boards only connect the secondary EMAC, and on others people might have the boot server only reachable via this port. There are some smaller fixes and improvements still queued up, but they need some more testing and are minor, so can land a bit later. The world build timed out, but the rest passed, and I booted that briefly on an A523 board with two Ethernet ports. Thanks, Andre =========================================================== The following changes since commit b635d43bca429500cb8ef20aa151cb5773b9a8a5: Merge patch series "fs/squashfs: fix symlink load failure on large images" (2026-07-25 07:55:35 -0600) are available in the Git repository at: https://git.u-boot-project.org/u-boot/custodians/u-boot-sunxi.git main for you to fetch changes up to 59edf9a3427c13f05d450fe84f42ef00dc7096c9: configs: radxa-cubie-a5e: enable the gmac1 controller (2026-07-27 01:18:35 +0200) ---------------------------------------------------------------- Andre Przywara (5): spi: sunxi: add support for A523 SPI controller sunxi: spl: spi: Clean up SPI0 pinmux setting sunxi: spl: spi: Add support for Allwinner A523 sunxi: configs: Radxa Cubie A5E: enable SPI sunxi: configs: OrangePi 4A: enable SPI Junhui Liu (5): pinctrl: sunxi: a523: add gmac1 support clk: sunxi: a523: add MBUS_EMAC1 clock gate arm: mach-sunxi: add syscon driver for system-control nodes net: dwc_eth_qos: add support for sun55i platform configs: radxa-cubie-a5e: enable the gmac1 controller Omar Ivan Fardjoume (1): mmc: sunxi: fix MACH_SUN9I typo in get_mclk_offset() arch/arm/mach-sunxi/Kconfig | 7 + arch/arm/mach-sunxi/Makefile | 1 + arch/arm/mach-sunxi/spl_spi_sunxi.c | 48 +++---- arch/arm/mach-sunxi/syscon.c | 28 ++++ configs/orangepi_4a_defconfig | 4 + configs/radxa-cubie-a5e_defconfig | 9 ++ drivers/clk/sunxi/clk_a523.c | 1 + drivers/mmc/sunxi_mmc.c | 6 +- drivers/net/Kconfig | 9 ++ drivers/net/Makefile | 1 + drivers/net/dwc_eth_qos.c | 6 + drivers/net/dwc_eth_qos.h | 1 + drivers/net/dwc_eth_qos_sunxi.c | 254 ++++++++++++++++++++++++++++++++++ drivers/pinctrl/sunxi/pinctrl-sunxi.c | 3 +- drivers/spi/spi-sunxi.c | 4 + 15 files changed, 352 insertions(+), 30 deletions(-) create mode 100644 arch/arm/mach-sunxi/syscon.c create mode 100644 drivers/net/dwc_eth_qos_sunxi.c
