From: Leng Honglin <lenghonglin@axera-tech.com>
To: Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Shi Zhicheng <shizhicheng@axera-tech.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>, Arnd Bergmann <arnd@arndb.de>,
Krzysztof Kozlowski <krzk@kernel.org>,
Alexandre Belloni <alexandre.belloni@bootlin.com>,
Linus Walleij <linusw@kernel.org>,
Drew Fustini <fustini@kernel.org>
Cc: <devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>, <soc@lists.linux.dev>,
Leng Honglin <lenghonglin@axera-tech.com>, <hlleng233@gmail.com>
Subject: [PATCH v2 0/6] arm64: Introduce Axera AX650 SoC and AX650 Demo board
Date: Tue, 1 Sep 2026 17:19:27 +0800 [thread overview]
Message-ID: <20260901-ax650-v1-v2-0-993bea305476@axera-tech.com> (raw)
Axera AX650 is an Arm64 SoC developed by Axera Semiconductor. The
AX650 Demo board is based on the AX650 SoC and provides the hardware
platform used to validate this series.
This series adds the initial upstream support required to build and
boot the Linux kernel on the AX650 Demo board.
The initial platform support includes:
- Axera AX650 SoC and AX650 Demo devicetree bindings
- ARCH_AXERA arm64 platform selection
- arm64 defconfig support
- Cortex-A55 CPUs and PSCI
- GIC-400 interrupt controller
- ARMv8 architectural timer
- Cortex-A55 PMU
- UART console
- 8 GiB system memory
- Axera ARM64 SoC maintainer information
The patches are organized as follows:
- Patch 1/6: Add the Axera vendor prefix.
- Patch 2/6: Add devicetree bindings for the AX650 SoC and
AX650 Demo board.
- Patch 3/6: Add the ARCH_AXERA arm64 platform option.
- Patch 4/6: Enable ARCH_AXERA in the arm64 defconfig.
- Patch 5/6: Add the initial devicetree description for the AX650 SoC
and AX650 Demo board.
- Patch 6/6: Add Axera ARM64 SoC entries to MAINTAINERS.
The series is intentionally limited to the minimum platform support
required to boot the board with a serial console. Additional
peripherals will be added in subsequent patches.
The platform was tested on an AX650 Demo board using the vendor boot
chain to load the kernel and device tree. A kernel with an embedded
initramfs successfully reached an interactive shell on the serial
console, and all 8 CPUs were brought online.
Validation performed:
- DT_SCHEMA_FILES=Documentation/devicetree/bindings/arm/axera.yaml make ARCH=arm64 dt_binding_check
- make ARCH=arm64 CHECK_DTBS=y W=1 axera/ax650-demo.dtb
- scripts/dtc/dt-check-style --mode=strict on both AX650 DTS files
Signed-off-by: Leng Honglin <lenghonglin@axera-tech.com>
---
Changes in v2:
- Fix the GIC node placement and unit address in the AX650 SoC device tree.
- Correct the GICC register region size to 0x2000.
- Fix DTS property ordering and formatting, and remove a duplicate include.
- Expand the AX650 device-tree commit message with platform and test details.
- Remove the unverified Reviewed-by tags.
- Add the official Axera website link to the vendor-prefix commit.
Link to v1:
https://patch.msgid.link/20260821-ax650-v1-v1-0-e1b013938e6b@axera-tech.com
To: Rob Herring <robh@kernel.org>
To: Krzysztof Kozlowski <krzk+dt@kernel.org>
To: Conor Dooley <conor+dt@kernel.org>
To: Shi Zhicheng <shizhicheng@axera-tech.com>
To: Leng Honglin <lenghonglin@axera-tech.com>
To: Catalin Marinas <catalin.marinas@arm.com>
To: Will Deacon <will@kernel.org>
To: Arnd Bergmann <arnd@arndb.de>
To: Krzysztof Kozlowski <krzk@kernel.org>
To: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: Linus Walleij <linusw@kernel.org>
To: Drew Fustini <fustini@kernel.org>
Cc: devicetree@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: soc@lists.linux.dev
Cc: hlleng233@gmail.com
---
Leng Honglin (6):
dt-bindings: vendor-prefixes: add Axera
dt-bindings: arm: add Axera AX650 SoC and AX650 Demo board
arm64: Kconfig.platforms: add ARCH_AXERA
arm64: defconfig: enable ARCH_AXERA
arm64: dts: axera: add AX650 Demo initial support
MAINTAINERS: add Axera ARM SoC support
Documentation/devicetree/bindings/arm/axera.yaml | 24 ++++
.../devicetree/bindings/vendor-prefixes.yaml | 2 +
MAINTAINERS | 8 ++
arch/arm64/Kconfig.platforms | 5 +
arch/arm64/boot/dts/Makefile | 1 +
arch/arm64/boot/dts/axera/Makefile | 3 +
arch/arm64/boot/dts/axera/ax650-demo.dts | 30 +++++
arch/arm64/boot/dts/axera/ax650.dtsi | 136 +++++++++++++++++++++
arch/arm64/configs/defconfig | 1 +
9 files changed, 210 insertions(+)
---
base-commit: ff68e5f557f69a08fdcfa4ce8b1b809d63bd4f45
change-id: 20260818-ax650-v1-9f5c1965d1e6
Best regards,
--
Leng Honglin <lenghonglin@axera-tech.com>
next reply other threads:[~2026-09-01 9:21 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-01 9:19 Leng Honglin [this message]
2026-09-01 9:19 ` [PATCH v2 1/6] dt-bindings: vendor-prefixes: add Axera Leng Honglin
2026-09-01 9:19 ` [PATCH v2 2/6] dt-bindings: arm: add Axera AX650 SoC and AX650 Demo board Leng Honglin
2026-09-01 9:19 ` [PATCH v2 3/6] arm64: Kconfig.platforms: add ARCH_AXERA Leng Honglin
2026-09-01 9:19 ` [PATCH v2 4/6] arm64: defconfig: enable ARCH_AXERA Leng Honglin
2026-09-01 9:19 ` [PATCH v2 5/6] arm64: dts: axera: add AX650 Demo initial support Leng Honglin
2026-09-01 9:19 ` [PATCH v2 6/6] MAINTAINERS: add Axera ARM SoC support Leng Honglin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260901-ax650-v1-v2-0-993bea305476@axera-tech.com \
--to=lenghonglin@axera-tech.com \
--cc=alexandre.belloni@bootlin.com \
--cc=arnd@arndb.de \
--cc=catalin.marinas@arm.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=fustini@kernel.org \
--cc=hlleng233@gmail.com \
--cc=krzk+dt@kernel.org \
--cc=krzk@kernel.org \
--cc=linusw@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh@kernel.org \
--cc=shizhicheng@axera-tech.com \
--cc=soc@lists.linux.dev \
--cc=will@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox