All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes
@ 2026-07-13 12:03 Biju
  2026-07-13 12:03 ` [PATCH 5.10.y-cip 1/4] arm64: dts: renesas: r9a07g043: " Biju
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Biju @ 2026-07-13 12:03 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek; +Cc: Biju Das, Lad Prabhakar

From: Biju Das <biju.das.jz@bp.renesas.com>

Hi All,

This patch series aims to add the max-frequency property set to
133333333 Hz (133.33 MHz) to both SDHI0 and SDHI1 MMC controller nodes in
the RZ/G2{L,LC,UL}/RZ/V2L device tree.

This change results in approximately 33% performance improvement as
it sets the SD clk to 100 MHz instead of the max 133 MHz.

All the patches in this series are cherry-picked from mainline.

Biju Das (4):
  arm64: dts: renesas: r9a07g043: Add max-frequency to SDHI nodes
  arm64: dts: renesas: r9a07g044: Rename SDHI clocks
  arm64: dts: renesas: r9a07g044: Add max-frequency to SDHI nodes
  arm64: dts: renesas: r9a07g054: Add max-frequency to SDHI nodes

 arch/arm64/boot/dts/renesas/r9a07g043.dtsi |  2 ++
 arch/arm64/boot/dts/renesas/r9a07g044.dtsi | 10 ++++++----
 arch/arm64/boot/dts/renesas/r9a07g054.dtsi |  2 ++
 3 files changed, 10 insertions(+), 4 deletions(-)

-- 
2.43.0



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

* [PATCH 5.10.y-cip 1/4] arm64: dts: renesas: r9a07g043: Add max-frequency to SDHI nodes
  2026-07-13 12:03 [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes Biju
@ 2026-07-13 12:03 ` Biju
  2026-07-13 12:03 ` [PATCH 5.10.y-cip 2/4] arm64: dts: renesas: r9a07g044: Rename SDHI clocks Biju
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Biju @ 2026-07-13 12:03 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek; +Cc: Biju Das, Lad Prabhakar

From: Biju Das <biju.das.jz@bp.renesas.com>

[ Upstream commit f82892de7f4878f54a4035be06f3acc6e6449616 ]

Add the max-frequency property set to 133333333 Hz (133.33 MHz) to both
SDHI0 and SDHI1 MMC controller nodes in the RZ/{G2UL,Five} (r9a07g043)
device tree, increasing performance by ca. 33%.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://patch.msgid.link/20260520115144.60067-2-biju.das.jz@bp.renesas.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/r9a07g043.dtsi | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r9a07g043.dtsi b/arch/arm64/boot/dts/renesas/r9a07g043.dtsi
index 7b07bcb3be88..5aff8345d690 100644
--- a/arch/arm64/boot/dts/renesas/r9a07g043.dtsi
+++ b/arch/arm64/boot/dts/renesas/r9a07g043.dtsi
@@ -655,6 +655,7 @@ sdhi0: mmc@11c00000 {
 				 <&cpg CPG_MOD R9A07G043_SDHI0_IMCLK2>,
 				 <&cpg CPG_MOD R9A07G043_SDHI0_ACLK>;
 			clock-names = "core", "clkh", "cd", "aclk";
+			max-frequency = <133333333>;
 			resets = <&cpg R9A07G043_SDHI0_IXRST>;
 			power-domains = <&cpg>;
 			status = "disabled";
@@ -671,6 +672,7 @@ sdhi1: mmc@11c10000 {
 				 <&cpg CPG_MOD R9A07G043_SDHI1_IMCLK2>,
 				 <&cpg CPG_MOD R9A07G043_SDHI1_ACLK>;
 			clock-names = "core", "clkh", "cd", "aclk";
+			max-frequency = <133333333>;
 			resets = <&cpg R9A07G043_SDHI1_IXRST>;
 			power-domains = <&cpg>;
 			status = "disabled";
-- 
2.43.0



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

* [PATCH 5.10.y-cip 2/4] arm64: dts: renesas: r9a07g044: Rename SDHI clocks
  2026-07-13 12:03 [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes Biju
  2026-07-13 12:03 ` [PATCH 5.10.y-cip 1/4] arm64: dts: renesas: r9a07g043: " Biju
@ 2026-07-13 12:03 ` Biju
  2026-07-13 12:03 ` [PATCH 5.10.y-cip 3/4] arm64: dts: renesas: r9a07g044: Add max-frequency to SDHI nodes Biju
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Biju @ 2026-07-13 12:03 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek; +Cc: Biju Das, Lad Prabhakar

From: Biju Das <biju.das.jz@bp.renesas.com>

[ Upstream commit fee3eae1334a454a8c2e16313a374cc53ff722d8 ]

Rename the below SDHI clocks to match with the clocks used in driver.

     imclk->core
     clk_hs->clkh
     imclk2->cd

Also re-arrange the clocks to match with the sorting order used in the
binding document.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Acked-by: Ulf Hansson <ulf.hansson@linaro.org>
Link: https://lore.kernel.org/r/20211122103905.14439-3-biju.das.jz@bp.renesas.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/r9a07g044.dtsi | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm64/boot/dts/renesas/r9a07g044.dtsi b/arch/arm64/boot/dts/renesas/r9a07g044.dtsi
index 327e7bf983a7..3fcce6324097 100644
--- a/arch/arm64/boot/dts/renesas/r9a07g044.dtsi
+++ b/arch/arm64/boot/dts/renesas/r9a07g044.dtsi
@@ -1055,10 +1055,10 @@ sdhi0: mmc@11c00000 {
 			interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>,
 				     <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
 			clocks = <&cpg CPG_MOD R9A07G044_SDHI0_IMCLK>,
-				 <&cpg CPG_MOD R9A07G044_SDHI0_IMCLK2>,
 				 <&cpg CPG_MOD R9A07G044_SDHI0_CLK_HS>,
+				 <&cpg CPG_MOD R9A07G044_SDHI0_IMCLK2>,
 				 <&cpg CPG_MOD R9A07G044_SDHI0_ACLK>;
-			clock-names = "imclk", "imclk2", "clk_hs", "aclk";
+			clock-names = "core", "clkh", "cd", "aclk";
 			resets = <&cpg R9A07G044_SDHI0_IXRST>;
 			power-domains = <&cpg>;
 			status = "disabled";
@@ -1071,10 +1071,10 @@ sdhi1: mmc@11c10000 {
 			interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>,
 				     <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>;
 			clocks = <&cpg CPG_MOD R9A07G044_SDHI1_IMCLK>,
-				 <&cpg CPG_MOD R9A07G044_SDHI1_IMCLK2>,
 				 <&cpg CPG_MOD R9A07G044_SDHI1_CLK_HS>,
+				 <&cpg CPG_MOD R9A07G044_SDHI1_IMCLK2>,
 				 <&cpg CPG_MOD R9A07G044_SDHI1_ACLK>;
-			clock-names = "imclk", "imclk2", "clk_hs", "aclk";
+			clock-names = "core", "clkh", "cd", "aclk";
 			resets = <&cpg R9A07G044_SDHI1_IXRST>;
 			power-domains = <&cpg>;
 			status = "disabled";
-- 
2.43.0



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

* [PATCH 5.10.y-cip 3/4] arm64: dts: renesas: r9a07g044: Add max-frequency to SDHI nodes
  2026-07-13 12:03 [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes Biju
  2026-07-13 12:03 ` [PATCH 5.10.y-cip 1/4] arm64: dts: renesas: r9a07g043: " Biju
  2026-07-13 12:03 ` [PATCH 5.10.y-cip 2/4] arm64: dts: renesas: r9a07g044: Rename SDHI clocks Biju
@ 2026-07-13 12:03 ` Biju
  2026-07-13 12:03 ` [PATCH 5.10.y-cip 4/4] arm64: dts: renesas: r9a07g054: " Biju
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Biju @ 2026-07-13 12:03 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek; +Cc: Biju Das, Lad Prabhakar

From: Biju Das <biju.das.jz@bp.renesas.com>

[ Upstream commit 1b3c392bd655af31a414fc82382cec13e090a997 ]

Add the max-frequency property set to 133333333 Hz (133.33 MHz) to both
SDHI0 and SDHI1 MMC controller nodes in the RZ/{G2L,G2LC} (r9a07g044)
device tree, increasing performance by ca. 33%.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://patch.msgid.link/20260520115144.60067-3-biju.das.jz@bp.renesas.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/r9a07g044.dtsi | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r9a07g044.dtsi b/arch/arm64/boot/dts/renesas/r9a07g044.dtsi
index 3fcce6324097..e14728d70cfb 100644
--- a/arch/arm64/boot/dts/renesas/r9a07g044.dtsi
+++ b/arch/arm64/boot/dts/renesas/r9a07g044.dtsi
@@ -1059,6 +1059,7 @@ sdhi0: mmc@11c00000 {
 				 <&cpg CPG_MOD R9A07G044_SDHI0_IMCLK2>,
 				 <&cpg CPG_MOD R9A07G044_SDHI0_ACLK>;
 			clock-names = "core", "clkh", "cd", "aclk";
+			max-frequency = <133333333>;
 			resets = <&cpg R9A07G044_SDHI0_IXRST>;
 			power-domains = <&cpg>;
 			status = "disabled";
@@ -1075,6 +1076,7 @@ sdhi1: mmc@11c10000 {
 				 <&cpg CPG_MOD R9A07G044_SDHI1_IMCLK2>,
 				 <&cpg CPG_MOD R9A07G044_SDHI1_ACLK>;
 			clock-names = "core", "clkh", "cd", "aclk";
+			max-frequency = <133333333>;
 			resets = <&cpg R9A07G044_SDHI1_IXRST>;
 			power-domains = <&cpg>;
 			status = "disabled";
-- 
2.43.0



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

* [PATCH 5.10.y-cip 4/4] arm64: dts: renesas: r9a07g054: Add max-frequency to SDHI nodes
  2026-07-13 12:03 [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes Biju
                   ` (2 preceding siblings ...)
  2026-07-13 12:03 ` [PATCH 5.10.y-cip 3/4] arm64: dts: renesas: r9a07g044: Add max-frequency to SDHI nodes Biju
@ 2026-07-13 12:03 ` Biju
  2026-07-13 21:09 ` [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: " Pavel Machek
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Biju @ 2026-07-13 12:03 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek; +Cc: Biju Das, Lad Prabhakar

From: Biju Das <biju.das.jz@bp.renesas.com>

[ Upstream commit dcbbb1266043d1d7ca1f129d2ca58a6ce8e04cbb ]

Add the max-frequency property set to 133333333 Hz (133.33 MHz) to both
SDHI0 and SDHI1 MMC controller nodes in the RZ/V2L (r9a07g054) device
tree, increasing performance by ca. 33%.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://patch.msgid.link/20260520115144.60067-4-biju.das.jz@bp.renesas.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/r9a07g054.dtsi | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r9a07g054.dtsi b/arch/arm64/boot/dts/renesas/r9a07g054.dtsi
index 4417135c5134..60f82f403fed 100644
--- a/arch/arm64/boot/dts/renesas/r9a07g054.dtsi
+++ b/arch/arm64/boot/dts/renesas/r9a07g054.dtsi
@@ -1067,6 +1067,7 @@ sdhi0: mmc@11c00000 {
 				 <&cpg CPG_MOD R9A07G054_SDHI0_IMCLK2>,
 				 <&cpg CPG_MOD R9A07G054_SDHI0_ACLK>;
 			clock-names = "core", "clkh", "cd", "aclk";
+			max-frequency = <133333333>;
 			resets = <&cpg R9A07G054_SDHI0_IXRST>;
 			power-domains = <&cpg>;
 			status = "disabled";
@@ -1083,6 +1084,7 @@ sdhi1: mmc@11c10000 {
 				 <&cpg CPG_MOD R9A07G054_SDHI1_IMCLK2>,
 				 <&cpg CPG_MOD R9A07G054_SDHI1_ACLK>;
 			clock-names = "core", "clkh", "cd", "aclk";
+			max-frequency = <133333333>;
 			resets = <&cpg R9A07G054_SDHI1_IXRST>;
 			power-domains = <&cpg>;
 			status = "disabled";
-- 
2.43.0



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

* Re: [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes
  2026-07-13 12:03 [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes Biju
                   ` (3 preceding siblings ...)
  2026-07-13 12:03 ` [PATCH 5.10.y-cip 4/4] arm64: dts: renesas: r9a07g054: " Biju
@ 2026-07-13 21:09 ` Pavel Machek
  2026-07-14  6:30   ` Biju Das
  2026-07-13 21:13 ` Pavel Machek
  2026-07-15 11:01 ` Pavel Machek
  6 siblings, 1 reply; 10+ messages in thread
From: Pavel Machek @ 2026-07-13 21:09 UTC (permalink / raw)
  To: Biju; +Cc: cip-dev, Nobuhiro Iwamatsu, Pavel Machek, Biju Das, Lad Prabhakar

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

Hi!

> This patch series aims to add the max-frequency property set to
> 133333333 Hz (133.33 MHz) to both SDHI0 and SDHI1 MMC controller nodes in
> the RZ/G2{L,LC,UL}/RZ/V2L device tree.
> 
> This change results in approximately 33% performance improvement as
> it sets the SD clk to 100 MHz instead of the max 133 MHz.
> 
> All the patches in this series are cherry-picked from mainline.

Ok, so as I understand it, we don't need this for 6.1-cip and others,
because it is already in mainline 6.1, so no backport is needed.

Best regards,
								Pavel

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

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

* Re: [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes
  2026-07-13 12:03 [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes Biju
                   ` (4 preceding siblings ...)
  2026-07-13 21:09 ` [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: " Pavel Machek
@ 2026-07-13 21:13 ` Pavel Machek
  2026-07-15 11:01 ` Pavel Machek
  6 siblings, 0 replies; 10+ messages in thread
From: Pavel Machek @ 2026-07-13 21:13 UTC (permalink / raw)
  To: Biju; +Cc: cip-dev, Nobuhiro Iwamatsu, Pavel Machek, Biju Das, Lad Prabhakar

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

Hi!

> This patch series aims to add the max-frequency property set to
> 133333333 Hz (133.33 MHz) to both SDHI0 and SDHI1 MMC controller nodes in
> the RZ/G2{L,LC,UL}/RZ/V2L device tree.
> 
> This change results in approximately 33% performance improvement as
> it sets the SD clk to 100 MHz instead of the max 133 MHz.
> 
> All the patches in this series are cherry-picked from mainline.

This looks okay to me.

Reviewed-by: Pavel Machek <pavel@nabladev.com>

I can apply the series if it passes testing and there are no other
comments.

Best regards,
                                                                Pavel

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

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

* Re: [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes
  2026-07-13 21:09 ` [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: " Pavel Machek
@ 2026-07-14  6:30   ` Biju Das
  2026-07-14 18:33     ` Pavel Machek
  0 siblings, 1 reply; 10+ messages in thread
From: Biju Das @ 2026-07-14  6:30 UTC (permalink / raw)
  To: Pavel Machek; +Cc: cip-dev, Nobuhiro Iwamatsu, Biju Das, Lad Prabhakar

Hi Pavel,

Thanks for the  feedback.

On Mon, Jul 13, 2026 at 10:09 PM Pavel Machek <pavel@nabladev.com> wrote:
>
> Hi!
>
> > This patch series aims to add the max-frequency property set to
> > 133333333 Hz (133.33 MHz) to both SDHI0 and SDHI1 MMC controller nodes in
> > the RZ/G2{L,LC,UL}/RZ/V2L device tree.
> >
> > This change results in approximately 33% performance improvement as
> > it sets the SD clk to 100 MHz instead of the max 133 MHz.
> >
> > All the patches in this series are cherry-picked from mainline.
>
> Ok, so as I understand it, we don't need this for 6.1-cip and others,
> because it is already in mainline 6.1, so no backport is needed.

We recently (7.2-rc1) upstreamed this patch.

Yesterday, a job in Lava setup showed the problem in 5.10-y cip. So,
just to fix that issue, I sent these patches
Soon I will be sending patches for  6.1 and 6.12-cip.

Cheers,
Biju


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

* Re: [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes
  2026-07-14  6:30   ` Biju Das
@ 2026-07-14 18:33     ` Pavel Machek
  0 siblings, 0 replies; 10+ messages in thread
From: Pavel Machek @ 2026-07-14 18:33 UTC (permalink / raw)
  To: Biju Das
  Cc: Pavel Machek, cip-dev, Nobuhiro Iwamatsu, Biju Das, Lad Prabhakar

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

Hi!

> > > This patch series aims to add the max-frequency property set to
> > > 133333333 Hz (133.33 MHz) to both SDHI0 and SDHI1 MMC controller nodes in
> > > the RZ/G2{L,LC,UL}/RZ/V2L device tree.
> > >
> > > This change results in approximately 33% performance improvement as
> > > it sets the SD clk to 100 MHz instead of the max 133 MHz.
> > >
> > > All the patches in this series are cherry-picked from mainline.
> >
> > Ok, so as I understand it, we don't need this for 6.1-cip and others,
> > because it is already in mainline 6.1, so no backport is needed.
> 
> We recently (7.2-rc1) upstreamed this patch.
> 
> Yesterday, a job in Lava setup showed the problem in 5.10-y cip. So,
> just to fix that issue, I sent these patches
> Soon I will be sending patches for  6.1 and 6.12-cip.

Aha, one of patches was older and that confused me.

So 6.1 and 6.12 versions are just performance improvements, and 5.10
fixes a bug, too?

Thanks and best regards,
								Pavel

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

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

* Re: [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes
  2026-07-13 12:03 [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes Biju
                   ` (5 preceding siblings ...)
  2026-07-13 21:13 ` Pavel Machek
@ 2026-07-15 11:01 ` Pavel Machek
  6 siblings, 0 replies; 10+ messages in thread
From: Pavel Machek @ 2026-07-15 11:01 UTC (permalink / raw)
  To: Biju; +Cc: cip-dev, Nobuhiro Iwamatsu, Pavel Machek, Biju Das, Lad Prabhakar

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

Hi!

> This patch series aims to add the max-frequency property set to
> 133333333 Hz (133.33 MHz) to both SDHI0 and SDHI1 MMC controller nodes in
> the RZ/G2{L,LC,UL}/RZ/V2L device tree.
> 
> This change results in approximately 33% performance improvement as
> it sets the SD clk to 100 MHz instead of the max 133 MHz.
> 
> All the patches in this series are cherry-picked from mainline.

Thank you, applied.

Best regards,
								Pavel

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

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

end of thread, other threads:[~2026-07-15 11:02 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-13 12:03 [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: Add max-frequency to SDHI nodes Biju
2026-07-13 12:03 ` [PATCH 5.10.y-cip 1/4] arm64: dts: renesas: r9a07g043: " Biju
2026-07-13 12:03 ` [PATCH 5.10.y-cip 2/4] arm64: dts: renesas: r9a07g044: Rename SDHI clocks Biju
2026-07-13 12:03 ` [PATCH 5.10.y-cip 3/4] arm64: dts: renesas: r9a07g044: Add max-frequency to SDHI nodes Biju
2026-07-13 12:03 ` [PATCH 5.10.y-cip 4/4] arm64: dts: renesas: r9a07g054: " Biju
2026-07-13 21:09 ` [PATCH 5.10.y-cip 0/4] arm64: dts: renesas: " Pavel Machek
2026-07-14  6:30   ` Biju Das
2026-07-14 18:33     ` Pavel Machek
2026-07-13 21:13 ` Pavel Machek
2026-07-15 11:01 ` Pavel Machek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.