* [PATCH] dt-bindings: arm: cpus: Add new Cortex and Neoverse names
@ 2024-06-18 16:04 Andre Przywara
2024-06-19 7:32 ` Krzysztof Kozlowski
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Andre Przywara @ 2024-06-18 16:04 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley
Cc: Sudeep Holla, Lorenzo Pieralisi, devicetree, Jun Wu, linux-kernel
Add compatible strings for the Arm Cortex-A725 and Cortex-A925 CPUs, as
well as new Neoverse cores: Arm Neoverse N3, Neoverse V2, Neoverse V3,
and Neoverse V3AE.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
---
Documentation/devicetree/bindings/arm/cpus.yaml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/Documentation/devicetree/bindings/arm/cpus.yaml b/Documentation/devicetree/bindings/arm/cpus.yaml
index cc5a21b47e26a..f308ff6c3532e 100644
--- a/Documentation/devicetree/bindings/arm/cpus.yaml
+++ b/Documentation/devicetree/bindings/arm/cpus.yaml
@@ -147,6 +147,7 @@ properties:
- arm,cortex-a710
- arm,cortex-a715
- arm,cortex-a720
+ - arm,cortex-a725
- arm,cortex-m0
- arm,cortex-m0+
- arm,cortex-m1
@@ -161,10 +162,15 @@ properties:
- arm,cortex-x2
- arm,cortex-x3
- arm,cortex-x4
+ - arm,cortex-x925
- arm,neoverse-e1
- arm,neoverse-n1
- arm,neoverse-n2
+ - arm,neoverse-n3
- arm,neoverse-v1
+ - arm,neoverse-v2
+ - arm,neoverse-v3
+ - arm,neoverse-v3ae
- brcm,brahma-b15
- brcm,brahma-b53
- brcm,vulcan
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] dt-bindings: arm: cpus: Add new Cortex and Neoverse names
2024-06-18 16:04 [PATCH] dt-bindings: arm: cpus: Add new Cortex and Neoverse names Andre Przywara
@ 2024-06-19 7:32 ` Krzysztof Kozlowski
2024-06-24 17:46 ` Rob Herring
2024-06-24 17:49 ` Rob Herring (Arm)
2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2024-06-19 7:32 UTC (permalink / raw)
To: Andre Przywara, Rob Herring, Krzysztof Kozlowski, Conor Dooley
Cc: Sudeep Holla, Lorenzo Pieralisi, devicetree, Jun Wu, linux-kernel
On 18/06/2024 18:04, Andre Przywara wrote:
> Add compatible strings for the Arm Cortex-A725 and Cortex-A925 CPUs, as
> well as new Neoverse cores: Arm Neoverse N3, Neoverse V2, Neoverse V3,
> and Neoverse V3AE.
>
> Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] dt-bindings: arm: cpus: Add new Cortex and Neoverse names
2024-06-18 16:04 [PATCH] dt-bindings: arm: cpus: Add new Cortex and Neoverse names Andre Przywara
2024-06-19 7:32 ` Krzysztof Kozlowski
@ 2024-06-24 17:46 ` Rob Herring
2024-06-24 17:49 ` Rob Herring (Arm)
2 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2024-06-24 17:46 UTC (permalink / raw)
To: Andre Przywara
Cc: Krzysztof Kozlowski, Conor Dooley, Sudeep Holla,
Lorenzo Pieralisi, devicetree, Jun Wu, linux-kernel
On Tue, Jun 18, 2024 at 05:04:50PM +0100, Andre Przywara wrote:
> Add compatible strings for the Arm Cortex-A725 and Cortex-A925 CPUs, as
> well as new Neoverse cores: Arm Neoverse N3, Neoverse V2, Neoverse V3,
> and Neoverse V3AE.
>
> Signed-off-by: Andre Przywara <andre.przywara@arm.com>
> ---
> Documentation/devicetree/bindings/arm/cpus.yaml | 6 ++++++
> 1 file changed, 6 insertions(+)
This patch is fine, but the PMU compatibles are needed too.
>
> diff --git a/Documentation/devicetree/bindings/arm/cpus.yaml b/Documentation/devicetree/bindings/arm/cpus.yaml
> index cc5a21b47e26a..f308ff6c3532e 100644
> --- a/Documentation/devicetree/bindings/arm/cpus.yaml
> +++ b/Documentation/devicetree/bindings/arm/cpus.yaml
> @@ -147,6 +147,7 @@ properties:
> - arm,cortex-a710
> - arm,cortex-a715
> - arm,cortex-a720
> + - arm,cortex-a725
> - arm,cortex-m0
> - arm,cortex-m0+
> - arm,cortex-m1
> @@ -161,10 +162,15 @@ properties:
> - arm,cortex-x2
> - arm,cortex-x3
> - arm,cortex-x4
> + - arm,cortex-x925
> - arm,neoverse-e1
> - arm,neoverse-n1
> - arm,neoverse-n2
> + - arm,neoverse-n3
> - arm,neoverse-v1
> + - arm,neoverse-v2
> + - arm,neoverse-v3
> + - arm,neoverse-v3ae
> - brcm,brahma-b15
> - brcm,brahma-b53
> - brcm,vulcan
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] dt-bindings: arm: cpus: Add new Cortex and Neoverse names
2024-06-18 16:04 [PATCH] dt-bindings: arm: cpus: Add new Cortex and Neoverse names Andre Przywara
2024-06-19 7:32 ` Krzysztof Kozlowski
2024-06-24 17:46 ` Rob Herring
@ 2024-06-24 17:49 ` Rob Herring (Arm)
2 siblings, 0 replies; 4+ messages in thread
From: Rob Herring (Arm) @ 2024-06-24 17:49 UTC (permalink / raw)
To: Andre Przywara
Cc: Krzysztof Kozlowski, devicetree, Jun Wu, Sudeep Holla,
linux-kernel, Conor Dooley, Lorenzo Pieralisi
On Tue, 18 Jun 2024 17:04:50 +0100, Andre Przywara wrote:
> Add compatible strings for the Arm Cortex-A725 and Cortex-A925 CPUs, as
> well as new Neoverse cores: Arm Neoverse N3, Neoverse V2, Neoverse V3,
> and Neoverse V3AE.
>
> Signed-off-by: Andre Przywara <andre.przywara@arm.com>
> ---
> Documentation/devicetree/bindings/arm/cpus.yaml | 6 ++++++
> 1 file changed, 6 insertions(+)
>
Applied, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-06-24 17:49 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-18 16:04 [PATCH] dt-bindings: arm: cpus: Add new Cortex and Neoverse names Andre Przywara
2024-06-19 7:32 ` Krzysztof Kozlowski
2024-06-24 17:46 ` Rob Herring
2024-06-24 17:49 ` Rob Herring (Arm)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).