public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH v6 00/10] arm64: dts: Add Arm Morello support
@ 2025-02-20 18:04 Vincenzo Frascino
  2025-02-20 18:04 ` [PATCH v6 01/10] arm64: Kconfig: Update description for CONFIG_ARCH_VEXPRESS Vincenzo Frascino
                   ` (8 more replies)
  0 siblings, 9 replies; 22+ messages in thread
From: Vincenzo Frascino @ 2025-02-20 18:04 UTC (permalink / raw)
  To: devicetree, linux-kernel, linux-arm-kernel
  Cc: Vincenzo Frascino, Linus Walleij, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Liviu Dudau, Sudeep Holla,
	Lorenzo Pieralisi, Russell King, Will Deacon, Mark Rutland,
	Jessica Clarke

The Morello architecture is an experimental extension to Armv8.2-A,
which extends the AArch64 state with the principles proposed in
version 7 of the Capability Hardware Enhanced RISC Instructions
(CHERI) ISA [1].

This series adds dts support for the Arm Morello System Development
Platform.

[1] https://www.morello-project.org/

To simplify the testing a linux tree rebased on 6.14-rc4 is accessible
at [2].

[2] https://codeberg.org/vincenzo/linux/src/branch/morello/dts/v6

Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Rob Herring <robh@kernel.org>
Cc: Krzysztof Kozlowski <krzk+dt@kernel.org>
Cc: Conor Dooley <conor+dt@kernel.org>
Cc: Liviu Dudau <liviu.dudau@arm.com>
Cc: Sudeep Holla <sudeep.holla@arm.com>
Cc: Lorenzo Pieralisi <lpieralisi@kernel.org> 
Cc: Russell King <linux@armlinux.org.uk>
Cc: Will Deacon <will@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Jessica Clarke <jrtc27@jrtc27.com>
Signed-off-by: Vincenzo Frascino <vincenzo.frascino@arm.com>

Changes
=======
v6:
  - Introduce arm,morello.yml.
  - Split pmu patch.
  - Address review comments.
v5:
  - Add support for fvp.
  - Add support for pmu.
  - Address review comments.
  - Rebase on 6.14-rc1.
v4:
  - Add cache information.
  - Address review comments.
v3:
  - Address review comments.
  - Rebase on 6.13-rc5.
v2:
  - Addressed review comments.
  - Rebased on 6.13-rc4.
  - Renamed arm,morello to arm,morello-sdp for clarity.


Vincenzo Frascino (10):
  arm64: Kconfig: Update description for CONFIG_ARCH_VEXPRESS
  dt-bindings: arm: Add Morello compatibility
  dt-bindings: arm: Add Morello fvp compatibility
  dt-bindings: arm: Add Rainier compatibility
  dt-bindings: arm-pmu: Add support for ARM Rainier PMU
  perf: arm_pmuv3: Add support for ARM Rainier PMU
  arm64: dts: morello: Add support for common functionalities
  arm64: dts: morello: Add support for soc dts
  arm64: dts: morello: Add support for fvp dts
  MAINTAINERS: Add Vincenzo Frascino as Arm Morello Maintainer

 .../devicetree/bindings/arm/arm,morello.yaml  |  35 ++
 .../devicetree/bindings/arm/cpus.yaml         |   1 +
 .../devicetree/bindings/arm/pmu.yaml          |   1 +
 MAINTAINERS                                   |   7 +
 arch/arm64/Kconfig.platforms                  |   5 +-
 arch/arm64/boot/dts/arm/Makefile              |   1 +
 arch/arm64/boot/dts/arm/morello-fvp.dts       |  77 +++++
 arch/arm64/boot/dts/arm/morello-sdp.dts       | 157 +++++++++
 arch/arm64/boot/dts/arm/morello.dtsi          | 323 ++++++++++++++++++
 drivers/perf/arm_pmuv3.c                      |   2 +
 10 files changed, 606 insertions(+), 3 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/arm,morello.yaml
 create mode 100644 arch/arm64/boot/dts/arm/morello-fvp.dts
 create mode 100644 arch/arm64/boot/dts/arm/morello-sdp.dts
 create mode 100644 arch/arm64/boot/dts/arm/morello.dtsi

-- 
2.43.0



^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2025-02-27 10:08 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-20 18:04 [PATCH v6 00/10] arm64: dts: Add Arm Morello support Vincenzo Frascino
2025-02-20 18:04 ` [PATCH v6 01/10] arm64: Kconfig: Update description for CONFIG_ARCH_VEXPRESS Vincenzo Frascino
2025-02-20 18:04 ` [PATCH v6 02/10] dt-bindings: arm: Add Morello compatibility Vincenzo Frascino
2025-02-25 15:26   ` Linus Walleij
2025-02-20 18:04 ` [PATCH v6 03/10] dt-bindings: arm: Add Morello fvp compatibility Vincenzo Frascino
2025-02-25 15:27   ` Linus Walleij
2025-02-20 18:04 ` [PATCH v6 04/10] dt-bindings: arm: Add Rainier compatibility Vincenzo Frascino
2025-02-25 15:27   ` Linus Walleij
2025-02-20 18:04 ` [PATCH v6 05/10] dt-bindings: arm-pmu: Add support for ARM Rainier PMU Vincenzo Frascino
2025-02-21  8:51   ` Krzysztof Kozlowski
2025-02-20 18:04 ` [PATCH v6 06/10] perf: arm_pmuv3: " Vincenzo Frascino
2025-02-25 15:28   ` Linus Walleij
2025-02-26 10:29   ` Sudeep Holla
2025-02-26 10:57     ` Vincenzo Frascino
2025-02-27 10:03     ` Sudeep Holla
2025-02-20 18:04 ` [PATCH v6 07/10] arm64: dts: morello: Add support for common functionalities Vincenzo Frascino
2025-02-25 15:29   ` Linus Walleij
2025-02-20 18:04 ` [PATCH v6 08/10] arm64: dts: morello: Add support for soc dts Vincenzo Frascino
2025-02-25 15:30   ` Linus Walleij
2025-02-20 18:04 ` [PATCH v6 09/10] arm64: dts: morello: Add support for fvp dts Vincenzo Frascino
2025-02-25 15:31   ` Linus Walleij
2025-02-25 16:04     ` Vincenzo Frascino

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox