Devicetree
 help / color / mirror / Atom feed
* [PATCH 0/3] Enable RTC support on RZ/T2H and RZ/N2H SoCs
@ 2026-08-24  7:59 Prabhakar
  2026-08-24  7:59 ` [PATCH 1/3] arm64: dts: renesas: r9a09g077: Add RTC node Prabhakar
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Prabhakar @ 2026-08-24  7:59 UTC (permalink / raw)
  To: Geert Uytterhoeven, Magnus Damm, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-renesas-soc, devicetree, linux-kernel, Prabhakar, Biju Das,
	Fabrizio Castro, Lad Prabhakar

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

Hi all,

This patch series adds RTC support for Renesas RZ/T2H and RZ/N2H SoCs and
enables support for it on the EVKs.

Note:
1. The patches apply on top of renesas-devel/renesas-dts-for-v7.4 branch.
2. The RTC driver patches have been queued up in the RTC maintainers tree.

Cheers,
Prabhakar

Lad Prabhakar (3):
  arm64: dts: renesas: r9a09g077: Add RTC node
  arm64: dts: renesas: r9a09g087: Add RTC node
  arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support

 arch/arm64/boot/dts/renesas/r9a09g077.dtsi          | 13 +++++++++++++
 arch/arm64/boot/dts/renesas/r9a09g087.dtsi          | 13 +++++++++++++
 .../boot/dts/renesas/rzt2h-n2h-evk-common.dtsi      |  5 +++++
 3 files changed, 31 insertions(+)

-- 
2.43.0


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

* [PATCH 1/3] arm64: dts: renesas: r9a09g077: Add RTC node
  2026-08-24  7:59 [PATCH 0/3] Enable RTC support on RZ/T2H and RZ/N2H SoCs Prabhakar
@ 2026-08-24  7:59 ` Prabhakar
  2026-08-24  8:13   ` sashiko-bot
  2026-08-25 12:22   ` Geert Uytterhoeven
  2026-08-24  7:59 ` [PATCH 2/3] arm64: dts: renesas: r9a09g087: " Prabhakar
  2026-08-24  7:59 ` [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support Prabhakar
  2 siblings, 2 replies; 13+ messages in thread
From: Prabhakar @ 2026-08-24  7:59 UTC (permalink / raw)
  To: Geert Uytterhoeven, Magnus Damm, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-renesas-soc, devicetree, linux-kernel, Prabhakar, Biju Das,
	Fabrizio Castro, Lad Prabhakar

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

Add Real Time Clock (RTC) node to SoC DTSI.

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/r9a09g077.dtsi | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r9a09g077.dtsi b/arch/arm64/boot/dts/renesas/r9a09g077.dtsi
index d5eafaf23e75..33f953c110bb 100644
--- a/arch/arm64/boot/dts/renesas/r9a09g077.dtsi
+++ b/arch/arm64/boot/dts/renesas/r9a09g077.dtsi
@@ -1173,6 +1173,19 @@ pinctrl: pinctrl@802c0000 {
 			power-domains = <&cpg>;
 		};
 
+		rtc0: rtc@81009000 {
+			compatible = "renesas,r9a09g077-rtc";
+			reg = <0 0x81009000 0 0x1000>;
+			interrupts = <GIC_SPI 495 IRQ_TYPE_EDGE_RISING>,
+				     <GIC_SPI 497 IRQ_TYPE_EDGE_RISING>,
+				     <GIC_SPI 496 IRQ_TYPE_EDGE_RISING>;
+			interrupt-names = "alarm", "timer", "pps";
+			clocks = <&cpg CPG_MOD 605>, <&cpg CPG_CORE R9A09G077_PCLKRTC>;
+			clock-names = "hclk", "xtal";
+			power-domains = <&cpg>;
+			status = "disabled";
+		};
+
 		gic: interrupt-controller@83000000 {
 			compatible = "arm,gic-v3";
 			reg = <0x0 0x83000000 0 0x40000>,
-- 
2.43.0


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

* [PATCH 2/3] arm64: dts: renesas: r9a09g087: Add RTC node
  2026-08-24  7:59 [PATCH 0/3] Enable RTC support on RZ/T2H and RZ/N2H SoCs Prabhakar
  2026-08-24  7:59 ` [PATCH 1/3] arm64: dts: renesas: r9a09g077: Add RTC node Prabhakar
@ 2026-08-24  7:59 ` Prabhakar
  2026-08-24  8:11   ` sashiko-bot
  2026-08-25 12:22   ` Geert Uytterhoeven
  2026-08-24  7:59 ` [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support Prabhakar
  2 siblings, 2 replies; 13+ messages in thread
From: Prabhakar @ 2026-08-24  7:59 UTC (permalink / raw)
  To: Geert Uytterhoeven, Magnus Damm, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-renesas-soc, devicetree, linux-kernel, Prabhakar, Biju Das,
	Fabrizio Castro, Lad Prabhakar

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

Add Real Time Clock (RTC) node to SoC DTSI.

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/r9a09g087.dtsi | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r9a09g087.dtsi b/arch/arm64/boot/dts/renesas/r9a09g087.dtsi
index fe9003426d70..d5b3eb6c1736 100644
--- a/arch/arm64/boot/dts/renesas/r9a09g087.dtsi
+++ b/arch/arm64/boot/dts/renesas/r9a09g087.dtsi
@@ -1176,6 +1176,19 @@ pinctrl: pinctrl@802c0000 {
 			power-domains = <&cpg>;
 		};
 
+		rtc0: rtc@81009000 {
+			compatible = "renesas,r9a09g087-rtc", "renesas,r9a09g077-rtc";
+			reg = <0 0x81009000 0 0x1000>;
+			interrupts = <GIC_SPI 495 IRQ_TYPE_EDGE_RISING>,
+				     <GIC_SPI 497 IRQ_TYPE_EDGE_RISING>,
+				     <GIC_SPI 496 IRQ_TYPE_EDGE_RISING>;
+			interrupt-names = "alarm", "timer", "pps";
+			clocks = <&cpg CPG_MOD 605>, <&cpg CPG_CORE R9A09G087_PCLKRTC>;
+			clock-names = "hclk", "xtal";
+			power-domains = <&cpg>;
+			status = "disabled";
+		};
+
 		gic: interrupt-controller@83000000 {
 			compatible = "arm,gic-v3";
 			reg = <0x0 0x83000000 0 0x40000>,
-- 
2.43.0


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

* [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support
  2026-08-24  7:59 [PATCH 0/3] Enable RTC support on RZ/T2H and RZ/N2H SoCs Prabhakar
  2026-08-24  7:59 ` [PATCH 1/3] arm64: dts: renesas: r9a09g077: Add RTC node Prabhakar
  2026-08-24  7:59 ` [PATCH 2/3] arm64: dts: renesas: r9a09g087: " Prabhakar
@ 2026-08-24  7:59 ` Prabhakar
  2026-08-24  8:08   ` sashiko-bot
                     ` (3 more replies)
  2 siblings, 4 replies; 13+ messages in thread
From: Prabhakar @ 2026-08-24  7:59 UTC (permalink / raw)
  To: Geert Uytterhoeven, Magnus Damm, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-renesas-soc, devicetree, linux-kernel, Prabhakar, Biju Das,
	Fabrizio Castro, Lad Prabhakar

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

Enable RTC support on RZ/T2H and RZ/N2H EVKs.

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/rzt2h-n2h-evk-common.dtsi | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/rzt2h-n2h-evk-common.dtsi b/arch/arm64/boot/dts/renesas/rzt2h-n2h-evk-common.dtsi
index ffcc0960903b..2a8414d6d632 100644
--- a/arch/arm64/boot/dts/renesas/rzt2h-n2h-evk-common.dtsi
+++ b/arch/arm64/boot/dts/renesas/rzt2h-n2h-evk-common.dtsi
@@ -21,6 +21,7 @@ aliases {
 		mmc0 = &sdhi0;
 		mmc1 = &sdhi1;
 		serial0 = &sci0;
+		rtc0 = &rtc0;
 		spi0 = &xspi0;
 		spi1 = &xspi1;
 	};
@@ -514,6 +515,10 @@ xspi1_pins: xspi1-pins {
 	};
 };
 
+&rtc0 {
+	status = "okay";
+};
+
 &sci0 {
 	pinctrl-0 = <&sci0_pins>;
 	pinctrl-names = "default";
-- 
2.43.0


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

* Re: [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support
  2026-08-24  7:59 ` [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support Prabhakar
@ 2026-08-24  8:08   ` sashiko-bot
  2026-08-24  9:25   ` Wolfram Sang
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 13+ messages in thread
From: sashiko-bot @ 2026-08-24  8:08 UTC (permalink / raw)
  To: Prabhakar; +Cc: conor+dt, wsa+renesas, robh, devicetree

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] The `rtc0` alias is inserted out of alphabetical order.
--

--- Patch [3]: [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support ---
commit 4c031325b18a88190b2540d40329c1e40cc8033e
Author: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>

arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support
    
Enable RTC support on RZ/T2H and RZ/N2H EVKs.

> diff --git a/arch/arm64/boot/dts/renesas/rzt2h-n2h-evk-common.dtsi b/arch/arm64/boot/dts/renesas/rzt2h-n2h-evk-common.dtsi
> index e86e6d3aa8a34..add0718f98dcd 100644
> --- a/arch/arm64/boot/dts/renesas/rzt2h-n2h-evk-common.dtsi
> +++ b/arch/arm64/boot/dts/renesas/rzt2h-n2h-evk-common.dtsi
> @@ -21,6 +21,7 @@ aliases {
>  		mmc0 = &sdhi0;
>  		mmc1 = &sdhi1;
>  		serial0 = &sci0;
> +		rtc0 = &rtc0;

[Severity: Low]
This isn't a bug, but should the rtc0 alias be placed before serial0 to
maintain strict alphabetical ordering in the aliases node?

>  		spi0 = &xspi0;
>  		spi1 = &xspi1;
>  	};

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260824075936.2904336-1-prabhakar.mahadev-lad.rj@bp.renesas.com?part=3

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

* Re: [PATCH 2/3] arm64: dts: renesas: r9a09g087: Add RTC node
  2026-08-24  7:59 ` [PATCH 2/3] arm64: dts: renesas: r9a09g087: " Prabhakar
@ 2026-08-24  8:11   ` sashiko-bot
  2026-08-25 12:22   ` Geert Uytterhoeven
  1 sibling, 0 replies; 13+ messages in thread
From: sashiko-bot @ 2026-08-24  8:11 UTC (permalink / raw)
  To: Prabhakar; +Cc: wsa+renesas, robh, devicetree, conor+dt

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] The macro `R9A09G087_PCLKRTC` used in the `clocks` property of the `rtc0` node is undefined, which will cause a Device Tree Compiler (dtc) syntax error.
--

--- Patch [2]: [PATCH 2/3] arm64: dts: renesas: r9a09g087: Add RTC node ---
commit 17edcdb9ccacc177ffc6dada7867d0b9b83bfdd5
Author: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>

arm64: dts: renesas: r9a09g087: Add RTC node

Add Real Time Clock (RTC) node to SoC DTSI.

> diff --git a/arch/arm64/boot/dts/renesas/r9a09g087.dtsi b/arch/arm64/boot/dts/renesas/r9a09g087.dtsi
> --- a/arch/arm64/boot/dts/renesas/r9a09g087.dtsi
> +++ b/arch/arm64/boot/dts/renesas/r9a09g087.dtsi
[ ... ]
> @@ -1149,6 +1149,19 @@ pinctrl: pinctrl@802c0000 {
>  			power-domains = <&cpg>;
>  		};
>  
> +		rtc0: rtc@81009000 {
> +			compatible = "renesas,r9a09g087-rtc", "renesas,r9a09g077-rtc";
> +			reg = <0 0x81009000 0 0x1000>;
> +			interrupts = <GIC_SPI 495 IRQ_TYPE_EDGE_RISING>,
> +				     <GIC_SPI 497 IRQ_TYPE_EDGE_RISING>,
> +				     <GIC_SPI 496 IRQ_TYPE_EDGE_RISING>;
> +			interrupt-names = "alarm", "timer", "pps";
> +			clocks = <&cpg CPG_MOD 605>, <&cpg CPG_CORE R9A09G087_PCLKRTC>;

[Severity: Low]
Does this introduce a device tree compilation regression? It looks like the
macro R9A09G087_PCLKRTC used in the clocks property is undefined.

Since the preprocessor will leave an undefined macro as a literal string,
this will cause a syntax error when the device tree compiler attempts to
parse it as a numeric cell value. Was the definition for R9A09G087_PCLKRTC
perhaps left out of this patch series?

> +			clock-names = "hclk", "xtal";
> +			power-domains = <&cpg>;
> +			status = "disabled";
> +		};
> +
>  		gic: interrupt-controller@83000000 {
>  			compatible = "arm,gic-v3";
>  			reg = <0x0 0x83000000 0 0x40000>,

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260824075936.2904336-1-prabhakar.mahadev-lad.rj@bp.renesas.com?part=2

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

* Re: [PATCH 1/3] arm64: dts: renesas: r9a09g077: Add RTC node
  2026-08-24  7:59 ` [PATCH 1/3] arm64: dts: renesas: r9a09g077: Add RTC node Prabhakar
@ 2026-08-24  8:13   ` sashiko-bot
  2026-08-25 12:22   ` Geert Uytterhoeven
  1 sibling, 0 replies; 13+ messages in thread
From: sashiko-bot @ 2026-08-24  8:13 UTC (permalink / raw)
  To: Prabhakar; +Cc: devicetree, wsa+renesas, robh, conor+dt

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Build failure due to undefined macro `R9A09G077_PCLKRTC`.
--

--- Patch [1]: [PATCH 1/3] arm64: dts: renesas: r9a09g077: Add RTC node ---
commit 2ac601db99f828037f74c28a1b191a0855d1fe45
Author: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>

arm64: dts: renesas: r9a09g077: Add RTC node

This patch adds the Real Time Clock (RTC) node to the Renesas R9A09G077 SoC
device tree include file.

> diff --git a/arch/arm64/boot/dts/renesas/r9a09g077.dtsi b/arch/arm64/boot/dts/renesas/r9a09g077.dtsi
> --- a/arch/arm64/boot/dts/renesas/r9a09g077.dtsi
> +++ b/arch/arm64/boot/dts/renesas/r9a09g077.dtsi
[ ... ]
> @@ -1146,6 +1146,19 @@ pinctrl: pinctrl@802c0000 {
>  			power-domains = <&cpg>;
>  		};
>  
> +		rtc0: rtc@81009000 {
> +			compatible = "renesas,r9a09g077-rtc";
> +			reg = <0 0x81009000 0 0x1000>;
> +			interrupts = <GIC_SPI 495 IRQ_TYPE_EDGE_RISING>,
> +				     <GIC_SPI 497 IRQ_TYPE_EDGE_RISING>,
> +				     <GIC_SPI 496 IRQ_TYPE_EDGE_RISING>;
> +			interrupt-names = "alarm", "timer", "pps";
> +			clocks = <&cpg CPG_MOD 605>, <&cpg CPG_CORE R9A09G077_PCLKRTC>;

[Severity: Low]
Is there a missing prerequisite patch that defines R9A09G077_PCLKRTC?

Since R9A09G077_PCLKRTC is not defined in the tree, the C preprocessor leaves
it as a literal string. When dtc parses the file, it encounters the unquoted
string inside a cell array and throws a syntax error, causing a build failure
when compiling the device trees.

> +			clock-names = "hclk", "xtal";
> +			power-domains = <&cpg>;
> +			status = "disabled";
> +		};
> +
[ ... ]

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260824075936.2904336-1-prabhakar.mahadev-lad.rj@bp.renesas.com?part=1

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

* Re: [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support
  2026-08-24  7:59 ` [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support Prabhakar
  2026-08-24  8:08   ` sashiko-bot
@ 2026-08-24  9:25   ` Wolfram Sang
  2026-08-24 12:32     ` Geert Uytterhoeven
  2026-08-24  9:30   ` Wolfram Sang
  2026-08-25 12:23   ` Geert Uytterhoeven
  3 siblings, 1 reply; 13+ messages in thread
From: Wolfram Sang @ 2026-08-24  9:25 UTC (permalink / raw)
  To: Prabhakar
  Cc: Geert Uytterhoeven, Magnus Damm, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, linux-renesas-soc, devicetree, linux-kernel,
	Prabhakar, Biju Das, Fabrizio Castro, Lad Prabhakar

[-- Attachment #1: Type: text/plain, Size: 158 bytes --]


> +		rtc0 = &rtc0;

Maybe 'rtc' instead of 'rtc0' throughout the patchset?

@Geert: do we have a rule for this? There is also only 'gic' instead of
'gic0'?


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support
  2026-08-24  7:59 ` [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support Prabhakar
  2026-08-24  8:08   ` sashiko-bot
  2026-08-24  9:25   ` Wolfram Sang
@ 2026-08-24  9:30   ` Wolfram Sang
  2026-08-25 12:23   ` Geert Uytterhoeven
  3 siblings, 0 replies; 13+ messages in thread
From: Wolfram Sang @ 2026-08-24  9:30 UTC (permalink / raw)
  To: Prabhakar
  Cc: Geert Uytterhoeven, Magnus Damm, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, linux-renesas-soc, devicetree, linux-kernel,
	Prabhakar, Biju Das, Fabrizio Castro, Lad Prabhakar

[-- Attachment #1: Type: text/plain, Size: 84 bytes --]


> +		rtc0 = &rtc0;

What is this alias for? I don't think this is HW description?


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support
  2026-08-24  9:25   ` Wolfram Sang
@ 2026-08-24 12:32     ` Geert Uytterhoeven
  0 siblings, 0 replies; 13+ messages in thread
From: Geert Uytterhoeven @ 2026-08-24 12:32 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: Prabhakar, Magnus Damm, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, linux-renesas-soc, devicetree, linux-kernel,
	Prabhakar, Biju Das, Fabrizio Castro, Lad Prabhakar

Hi Wolfram,

On Mon, 24 Aug 2026 at 11:26, Wolfram Sang
<wsa+renesas@sang-engineering.com> wrote:
> > +             rtc0 = &rtc0;
>
> Maybe 'rtc' instead of 'rtc0' throughout the patchset?
>
> @Geert: do we have a rule for this? There is also only 'gic' instead of
> 'gic0'?

There is only one GIC to rul'em all, but there can be multiple RTCs
in a system.

> What is this alias for? I don't think this is HW description?

I understand rtc0 is the main RTC.

drivers/rtc/class.c:            of_id = of_alias_get_id(dev->of_node, "rtc");
drivers/rtc/class.c:            of_id =
of_alias_get_id(dev->parent->of_node, "rtc");

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 1/3] arm64: dts: renesas: r9a09g077: Add RTC node
  2026-08-24  7:59 ` [PATCH 1/3] arm64: dts: renesas: r9a09g077: Add RTC node Prabhakar
  2026-08-24  8:13   ` sashiko-bot
@ 2026-08-25 12:22   ` Geert Uytterhoeven
  1 sibling, 0 replies; 13+ messages in thread
From: Geert Uytterhoeven @ 2026-08-25 12:22 UTC (permalink / raw)
  To: Prabhakar
  Cc: Magnus Damm, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	linux-renesas-soc, devicetree, linux-kernel, Prabhakar, Biju Das,
	Fabrizio Castro, Lad Prabhakar

On Mon, 24 Aug 2026 at 09:59, Prabhakar <prabhakar.csengg@gmail.com> wrote:
> From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
>
> Add Real Time Clock (RTC) node to SoC DTSI.
>
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
i.e. will queue in renesas-devel for v7.4.

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 2/3] arm64: dts: renesas: r9a09g087: Add RTC node
  2026-08-24  7:59 ` [PATCH 2/3] arm64: dts: renesas: r9a09g087: " Prabhakar
  2026-08-24  8:11   ` sashiko-bot
@ 2026-08-25 12:22   ` Geert Uytterhoeven
  1 sibling, 0 replies; 13+ messages in thread
From: Geert Uytterhoeven @ 2026-08-25 12:22 UTC (permalink / raw)
  To: Prabhakar
  Cc: Magnus Damm, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	linux-renesas-soc, devicetree, linux-kernel, Prabhakar, Biju Das,
	Fabrizio Castro, Lad Prabhakar

On Mon, 24 Aug 2026 at 10:00, Prabhakar <prabhakar.csengg@gmail.com> wrote:
> From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
>
> Add Real Time Clock (RTC) node to SoC DTSI.
>
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
i.e. will queue in renesas-devel for v7.4.

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support
  2026-08-24  7:59 ` [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support Prabhakar
                     ` (2 preceding siblings ...)
  2026-08-24  9:30   ` Wolfram Sang
@ 2026-08-25 12:23   ` Geert Uytterhoeven
  3 siblings, 0 replies; 13+ messages in thread
From: Geert Uytterhoeven @ 2026-08-25 12:23 UTC (permalink / raw)
  To: Prabhakar
  Cc: Magnus Damm, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	linux-renesas-soc, devicetree, linux-kernel, Prabhakar, Biju Das,
	Fabrizio Castro, Lad Prabhakar

On Mon, 24 Aug 2026 at 10:00, Prabhakar <prabhakar.csengg@gmail.com> wrote:
> From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
>
> Enable RTC support on RZ/T2H and RZ/N2H EVKs.
>
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
i.e. will queue in renesas-devel for v7.4.

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

end of thread, other threads:[~2026-08-25 12:23 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-24  7:59 [PATCH 0/3] Enable RTC support on RZ/T2H and RZ/N2H SoCs Prabhakar
2026-08-24  7:59 ` [PATCH 1/3] arm64: dts: renesas: r9a09g077: Add RTC node Prabhakar
2026-08-24  8:13   ` sashiko-bot
2026-08-25 12:22   ` Geert Uytterhoeven
2026-08-24  7:59 ` [PATCH 2/3] arm64: dts: renesas: r9a09g087: " Prabhakar
2026-08-24  8:11   ` sashiko-bot
2026-08-25 12:22   ` Geert Uytterhoeven
2026-08-24  7:59 ` [PATCH 3/3] arm64: dts: renesas: rzt2h-n2h-evk: Enable RTC support Prabhakar
2026-08-24  8:08   ` sashiko-bot
2026-08-24  9:25   ` Wolfram Sang
2026-08-24 12:32     ` Geert Uytterhoeven
2026-08-24  9:30   ` Wolfram Sang
2026-08-25 12:23   ` Geert Uytterhoeven

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