Dear SoC maintainers, Here is my pull request for adding initial support for ZTE's zx297520v3 SoC. The code has been reviewed on the linux-arm-kernel mailing list. My ultimate goal is to run OpenWRT on these devices. This SoC is used in low end LTE-to-WiFi routers, for example some D-Link DWR 932 revisions, ZTE K10, ZLT S10 4G, but also models that are branded and sold by ISPs themselves. They are widespread in Africa, China, Russia and Eastern Europe. This SoC is a relative of the zx296702 and zx296718 that had some upstream support until commit 89d4f98ae90d ("ARM: remove zte zx platform"). The following changes since commit 254f49634ee16a731174d2ae34bc50bd5f45e731: Linux 7.1-rc1 (2026-04-26 14:19:00 -0700) are available in the Git repository at: https://gitlab.com/stefandoesinger/zx297520-kernel.git tags/zx29-plat-for-7.2 for you to fetch changes up to 220ae5d36dba278003d265aabd080ffa78553f5a: ARM: zte: Add zx297520v3 platform support (2026-05-13 23:59:56 +0300) ---------------------------------------------------------------- ARM: zte: Add zx297520v3 platform support This SoC is used in low end LTE-to-WiFi routers, for example some D-Link DWR 932 revisions, ZTE K10, ZLT S10 4G, but also models that are branded and sold by ISPs themselves. They are widespread in Africa, China, Russia and Eastern Europe. This SoC is a relative of the zx296702 and zx296718 that had some upstream support until commit 89d4f98ae90d ("ARM: remove zte zx platform"). ---------------------------------------------------------------- Stefan Dösinger (1): ARM: zte: Add zx297520v3 platform support Documentation/arch/arm/index.rst | 2 ++ Documentation/arch/arm/zte/index.rst | 10 ++++++++++ Documentation/arch/arm/zte/zx297520v3.rst | 167 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ MAINTAINERS | 9 +++++++++ arch/arm/Kconfig | 2 ++ arch/arm/Makefile | 1 + arch/arm/mach-zte/Kconfig | 29 +++++++++++++++++++++++++++++ arch/arm/mach-zte/Makefile | 2 ++ arch/arm/mach-zte/zx297520v3.c | 16 ++++++++++++++++ 9 files changed, 238 insertions(+) create mode 100644 Documentation/arch/arm/zte/index.rst create mode 100644 Documentation/arch/arm/zte/zx297520v3.rst create mode 100644 arch/arm/mach-zte/Kconfig create mode 100644 arch/arm/mach-zte/Makefile create mode 100644 arch/arm/mach-zte/zx297520v3.c