* Re: [PATCH 1/6] dt-bindings: vendor-prefixes: add Axera
[not found] ` <202608240638.67O6cTY3025061@spam.axera-tech.com>
@ 2026-08-25 6:28 ` 冷红林
0 siblings, 0 replies; 3+ messages in thread
From: 冷红林 @ 2026-08-25 6:28 UTC (permalink / raw)
To: Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, 时志成, Catalin Marinas,
Will Deacon, Arnd Bergmann, Alexandre Belloni, Linus Walleij,
Drew Fustini
Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, soc@lists.linux.dev
On 8/21/2026 5:43 PM, Krzysztof Kozlowski wrote:
> On 21/08/2026 11:30, Leng Honglin wrote:
>> Add the Axera Semiconductor vendor prefix for devicetree bindings.
>>
>> Reviewed-by: Shi Zhicheng <shizhicheng@axera-tech.com>
>
> Where did it happen and what was here exactly reviewed? Did reviewer
> understand statement of oversight? I am asking because this is v1 and
> has already clearly visible issue (below).
>
>
Hi Krzysztof,
Thanks for pointing this out. You are absolutely right to question the
Reviewed-by tags.
As this is my first time submitting a patch series of this size, I
misunderstood the requirements for the Reviewed-by tag and mistakenly
thought an internal review was sufficient. I apologize for the confusion
and will remove the unconfirmed tags in v2.
>> Signed-off-by: Leng Honglin <lenghonglin@axera-tech.com>
>> ---
>> Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
>> index 396044f368e7..1dbafe682724 100644
>> --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
>> +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
>> @@ -219,6 +219,8 @@ patternProperties:
>> description: Shanghai Awinic Technology Co., Ltd.
>> "^axentia,.*":
>> description: Axentia Technologies AB
>> + "^axera,.*":
>
> So your domain is axera.com?
>
>
Our corporate domain is actually axera-tech.com. I now realize the
vendor prefix should reflect the domain name. I will change the prefix
to "axera-tech,.*" in v2 to comply with the guidelines.
Best regards,
Leng
>> + description: Axera Semiconductor Co., Ltd.
> Best regards,
> Krzysztof
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 0/6] arm64: Introduce Axera AX650 SoC and AX650 Demo board
@ 2026-08-21 9:30 Leng Honglin
2026-08-21 9:30 ` [PATCH 1/6] dt-bindings: vendor-prefixes: add Axera Leng Honglin
0 siblings, 1 reply; 3+ messages in thread
From: Leng Honglin @ 2026-08-21 9:30 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Shi Zhicheng,
Catalin Marinas, Will Deacon, Arnd Bergmann, Krzysztof Kozlowski,
Alexandre Belloni, Linus Walleij, Drew Fustini
Cc: devicetree, linux-kernel, linux-arm-kernel, soc, Leng Honglin
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.
Signed-off-by: Leng Honglin <lenghonglin@axera-tech.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 | 134 +++++++++++++++++++++
arch/arm64/configs/defconfig | 1 +
9 files changed, 208 insertions(+)
---
base-commit: ff68e5f557f69a08fdcfa4ce8b1b809d63bd4f45
change-id: 20260818-ax650-v1-9f5c1965d1e6
Best regards,
--
Leng Honglin <lenghonglin@axera-tech.com>
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH 1/6] dt-bindings: vendor-prefixes: add Axera
2026-08-21 9:30 [PATCH 0/6] arm64: Introduce Axera AX650 SoC and AX650 Demo board Leng Honglin
@ 2026-08-21 9:30 ` Leng Honglin
2026-08-21 9:43 ` Krzysztof Kozlowski
0 siblings, 1 reply; 3+ messages in thread
From: Leng Honglin @ 2026-08-21 9:30 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Shi Zhicheng,
Catalin Marinas, Will Deacon, Arnd Bergmann, Krzysztof Kozlowski,
Alexandre Belloni, Linus Walleij, Drew Fustini
Cc: devicetree, linux-kernel, linux-arm-kernel, soc, Leng Honglin
Add the Axera Semiconductor vendor prefix for devicetree bindings.
Reviewed-by: Shi Zhicheng <shizhicheng@axera-tech.com>
Signed-off-by: Leng Honglin <lenghonglin@axera-tech.com>
---
Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
index 396044f368e7..1dbafe682724 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
+++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
@@ -219,6 +219,8 @@ patternProperties:
description: Shanghai Awinic Technology Co., Ltd.
"^axentia,.*":
description: Axentia Technologies AB
+ "^axera,.*":
+ description: Axera Semiconductor Co., Ltd.
"^axiado,.*":
description: Axiado Corporation
"^axis,.*":
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 1/6] dt-bindings: vendor-prefixes: add Axera
2026-08-21 9:30 ` [PATCH 1/6] dt-bindings: vendor-prefixes: add Axera Leng Honglin
@ 2026-08-21 9:43 ` Krzysztof Kozlowski
0 siblings, 0 replies; 3+ messages in thread
From: Krzysztof Kozlowski @ 2026-08-21 9:43 UTC (permalink / raw)
To: Leng Honglin, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Shi Zhicheng, Catalin Marinas, Will Deacon, Arnd Bergmann,
Alexandre Belloni, Linus Walleij, Drew Fustini
Cc: devicetree, linux-kernel, linux-arm-kernel, soc
On 21/08/2026 11:30, Leng Honglin wrote:
> Add the Axera Semiconductor vendor prefix for devicetree bindings.
>
> Reviewed-by: Shi Zhicheng <shizhicheng@axera-tech.com>
Where did it happen and what was here exactly reviewed? Did reviewer
understand statement of oversight? I am asking because this is v1 and
has already clearly visible issue (below).
> Signed-off-by: Leng Honglin <lenghonglin@axera-tech.com>
> ---
> Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> index 396044f368e7..1dbafe682724 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> @@ -219,6 +219,8 @@ patternProperties:
> description: Shanghai Awinic Technology Co., Ltd.
> "^axentia,.*":
> description: Axentia Technologies AB
> + "^axera,.*":
So your domain is axera.com?
> + description: Axera Semiconductor Co., Ltd.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-25 6:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1eab9e7f03338b673c0e544be7eb4e4421-8-26kernel.org@sslemail.net>
[not found] ` <202608240638.67O6cTY3025061@spam.axera-tech.com>
2026-08-25 6:28 ` [PATCH 1/6] dt-bindings: vendor-prefixes: add Axera 冷红林
2026-08-21 9:30 [PATCH 0/6] arm64: Introduce Axera AX650 SoC and AX650 Demo board Leng Honglin
2026-08-21 9:30 ` [PATCH 1/6] dt-bindings: vendor-prefixes: add Axera Leng Honglin
2026-08-21 9:43 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox