devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/8] Add support for Renesas RZ/N2H (R9A09G087) SoC and RZ/N2H EVK
@ 2025-06-09 20:36 Prabhakar
  2025-06-09 20:36 ` [PATCH 1/8] dt-bindings: soc: Add Renesas RZ/N2H (R9A09G087) SoC Prabhakar
                   ` (7 more replies)
  0 siblings, 8 replies; 24+ messages in thread
From: Prabhakar @ 2025-06-09 20:36 UTC (permalink / raw)
  To: Geert Uytterhoeven, Michael Turquette, Stephen Boyd, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Magnus Damm
  Cc: linux-renesas-soc, linux-clk, devicetree, linux-kernel, Prabhakar,
	Biju Das, Fabrizio Castro, Prabhakar

From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>

Hi All,

This patch series adds support for the Renesas RZ/N2H (R9A09G087) SoC and
the RZ/N2H EVK (R9A09G087M44-RZN2H-EVK) evaluation board. The RZ/N2H SoC
is very much similar to the RZ/T2H (R9A09G077) SoC. 

RZ/N2H is a high-performance MPU that delivers advanced application
processing and real-time operation for industrial applications. It
features a quad-core Arm Cortex-A55 and dual-core Arm Cortex-R52
configuration, with security features, and is designed for real-time
control and high-speed communication.

RZ/N2H SoC supports below features:
- Quad-core Arm Cortex-A55 and dual-core Arm Cortex-R52 configuration
- Security functions (optional)
- Encoder interfaces
  * 16 channels
  * EnDat 2.2, BiSS-C, A-format, and HIPERFACE DSL-compliant interfaces
  * Frequency-divided output from an encoder
- Various communications interfaces
  * Ethernet
    - EtherCAT slave Controller: 3 ports
    - Ethernet switch: 3 ports
    - Ethernet MAC: 1 port x 3 units
  *  USB 2.0 high-speed host/functions: 1 channel
  * CAN/CANFD (compliant with ISO11898-1): 2 channels
  * SCI with 16-byte transmission and reception FIFOs: 6 channels +
    12 channels (for encoder)
  * I2C bus interface: 3 channel for transfer at up to 400 kbps
  * SPI: 4 channels
  * xSPI: 2 channels
  * PCI Express Gen3: 2 lane x 1 port or 1 lane x 2 ports
  * SD card host interface: 2 channels
- Serial host interface
- 12 bits x 3 unit (4 channels for unit 0, 1, 15 channels for unit 2
- LCD Controller
- General-purpose I/O ports
- Trigonometric function unit
- 16-bit x 8 + 32-bit MTU3 (9 channels), 32-bit GPT (56 channels)
- 6-bit CMT (6 channels), 32-bit CMTW (2 channels)

For more information, please refer to the product page:

https://www.renesas.com/en/products/microcontrollers-microprocessors/rz-mpus/rzn2h-advanced-mpu-delivers-high-performance-application-processing-and-real-time-operation-industrial?srsltid=AfmBOoro9kUrZ77ugeURFIlE5ToiFazSyzIsbjBDdGs83NHZfhlkFHlJ

Note, this patch series applies on top of the patch series
- "Add initial support for Renesas RZ/T2H SoC" [1].
- "dt-bindings: serial: renesas,rsci: Document RZ/N2H support" [2].

[1] https://lore.kernel.org/all/20250523142417.2840797-1-thierry.bultel.yh@bp.renesas.com/
[2] https://lore.kernel.org/all/20250609192344.293317-1-prabhakar.mahadev-lad.rj@bp.renesas.com/

Cheers,
Prabhakar

Lad Prabhakar (4):
  soc: renesas: Add config option for RZ/N2H (R9A09G087) SoC
  dt-bindings: clock: renesas,cpg-mssr: Document RZ/N2H support
  clk: renesas: Add MSSR support to RZ/N2H SoC
  arm64: dts: renesas: Add initial SoC DTSI for RZ/N2H SoC

Paul Barker (4):
  dt-bindings: soc: Add Renesas RZ/N2H (R9A09G087) SoC
  arm64: dts: renesas: Refactor RZ/T2H EVK device tree
  arm64: dts: renesas: Add DTSI for R9A09G087M44 variant of RZ/N2H SoC
  arm64: dts: renesas: Add initial support for RZ/N2H EVK

 .../bindings/clock/renesas,cpg-mssr.yaml      |   5 +-
 .../bindings/soc/renesas/renesas.yaml         |  10 ++
 arch/arm64/boot/dts/renesas/Makefile          |   1 +
 .../dts/renesas/r9a09g077m44-rzt2h-evk.dts    |  17 +--
 arch/arm64/boot/dts/renesas/r9a09g087.dtsi    | 135 ++++++++++++++++++
 .../dts/renesas/r9a09g087m44-rzn2h-evk.dts    |  16 +++
 arch/arm64/boot/dts/renesas/r9a09g087m44.dtsi |  13 ++
 .../boot/dts/renesas/rzt2h-evk-common.dtsi    |  24 ++++
 drivers/clk/renesas/Kconfig                   |   5 +
 drivers/clk/renesas/Makefile                  |   1 +
 drivers/clk/renesas/r9a09g077-cpg.c           |   1 +
 drivers/clk/renesas/renesas-cpg-mssr.c        |   6 +
 drivers/soc/renesas/Kconfig                   |   6 +
 .../clock/renesas,r9a09g087-cpg-mssr.h        |  28 ++++
 14 files changed, 251 insertions(+), 17 deletions(-)
 create mode 100644 arch/arm64/boot/dts/renesas/r9a09g087.dtsi
 create mode 100644 arch/arm64/boot/dts/renesas/r9a09g087m44-rzn2h-evk.dts
 create mode 100644 arch/arm64/boot/dts/renesas/r9a09g087m44.dtsi
 create mode 100644 arch/arm64/boot/dts/renesas/rzt2h-evk-common.dtsi
 create mode 100644 include/dt-bindings/clock/renesas,r9a09g087-cpg-mssr.h

-- 
2.49.0


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

end of thread, other threads:[~2025-06-17  7:16 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-09 20:36 [PATCH 0/8] Add support for Renesas RZ/N2H (R9A09G087) SoC and RZ/N2H EVK Prabhakar
2025-06-09 20:36 ` [PATCH 1/8] dt-bindings: soc: Add Renesas RZ/N2H (R9A09G087) SoC Prabhakar
2025-06-10 15:24   ` Conor Dooley
2025-06-12 14:37   ` Geert Uytterhoeven
2025-06-09 20:36 ` [PATCH 2/8] soc: renesas: Add config option for " Prabhakar
2025-06-12 14:37   ` Geert Uytterhoeven
2025-06-09 20:36 ` [PATCH 3/8] dt-bindings: clock: renesas,cpg-mssr: Document RZ/N2H support Prabhakar
2025-06-10 15:24   ` Conor Dooley
2025-06-12 14:37   ` Geert Uytterhoeven
2025-06-13 11:57     ` Lad, Prabhakar
2025-06-17  7:16       ` Geert Uytterhoeven
2025-06-09 20:36 ` [PATCH 4/8] clk: renesas: Add MSSR support to RZ/N2H SoC Prabhakar
2025-06-12 14:37   ` Geert Uytterhoeven
2025-06-13 12:25     ` Lad, Prabhakar
2025-06-09 20:36 ` [PATCH 5/8] arm64: dts: renesas: Add initial SoC DTSI for " Prabhakar
2025-06-12 14:37   ` Geert Uytterhoeven
2025-06-13 12:43     ` Lad, Prabhakar
2025-06-09 20:36 ` [PATCH 6/8] arm64: dts: renesas: Refactor RZ/T2H EVK device tree Prabhakar
2025-06-12 14:46   ` Geert Uytterhoeven
2025-06-13 12:30     ` Lad, Prabhakar
2025-06-09 20:36 ` [PATCH 7/8] arm64: dts: renesas: Add DTSI for R9A09G087M44 variant of RZ/N2H SoC Prabhakar
2025-06-12 14:49   ` Geert Uytterhoeven
2025-06-09 20:36 ` [PATCH 8/8] arm64: dts: renesas: Add initial support for RZ/N2H EVK Prabhakar
2025-06-12 14:53   ` Geert Uytterhoeven

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).