* [PATCH 0/2] Add RAA215300 PMIC support to RZ/V2H and RZ/V2N EVKs
@ 2025-06-19 13:55 Prabhakar
2025-06-19 13:55 ` [PATCH 1/2] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Add RAA215300 PMIC Prabhakar
2025-06-19 13:55 ` [PATCH 2/2] arm64: dts: renesas: r9a09g056n48-rzv2n-evk: " Prabhakar
0 siblings, 2 replies; 5+ messages in thread
From: Prabhakar @ 2025-06-19 13:55 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 support for the Renesas RAA215300 PMIC to the
RZ/V2H and RZ/V2N EVKs. The PMIC is connected to I2C8 and uses a
32.768kHz fixed clock source (x6).
Cheers,
Prabhakar
Lad Prabhakar (2):
arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Add RAA215300 PMIC
arm64: dts: renesas: r9a09g056n48-rzv2n-evk: Add RAA215300 PMIC
.../boot/dts/renesas/r9a09g056n48-rzv2n-evk.dts | 15 +++++++++++++++
.../boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts | 15 +++++++++++++++
2 files changed, 30 insertions(+)
--
2.49.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Add RAA215300 PMIC
2025-06-19 13:55 [PATCH 0/2] Add RAA215300 PMIC support to RZ/V2H and RZ/V2N EVKs Prabhakar
@ 2025-06-19 13:55 ` Prabhakar
2025-06-26 12:21 ` Geert Uytterhoeven
2025-06-19 13:55 ` [PATCH 2/2] arm64: dts: renesas: r9a09g056n48-rzv2n-evk: " Prabhakar
1 sibling, 1 reply; 5+ messages in thread
From: Prabhakar @ 2025-06-19 13:55 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 support for the Renesas RAA215300 PMIC to the RZ/V2H EVK. The PMIC is
connected to I2C8 and uses a 32.768kHz fixed clock source (x6).
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
.../boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts b/arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts
index dc80b40061e4..ef3683c8ebde 100644
--- a/arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts
+++ b/arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts
@@ -74,6 +74,13 @@ vqmmc_sdhi1: regulator-vccq-sdhi1 {
gpios-states = <0>;
states = <3300000 0>, <1800000 1>;
};
+
+ /* 32.768kHz crystal */
+ x6: x6-clock {
+ compatible = "fixed-clock";
+ #clock-cells = <0>;
+ clock-frequency = <32768>;
+ };
};
&audio_extal_clk {
@@ -169,6 +176,14 @@ &i2c8 {
clock-frequency = <400000>;
status = "okay";
+
+ raa215300: pmic@12 {
+ compatible = "renesas,raa215300";
+ reg = <0x12>, <0x6f>;
+ reg-names = "main", "rtc";
+ clocks = <&x6>;
+ clock-names = "xin";
+ };
};
&mdio0 {
--
2.49.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] arm64: dts: renesas: r9a09g056n48-rzv2n-evk: Add RAA215300 PMIC
2025-06-19 13:55 [PATCH 0/2] Add RAA215300 PMIC support to RZ/V2H and RZ/V2N EVKs Prabhakar
2025-06-19 13:55 ` [PATCH 1/2] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Add RAA215300 PMIC Prabhakar
@ 2025-06-19 13:55 ` Prabhakar
2025-06-26 12:21 ` Geert Uytterhoeven
1 sibling, 1 reply; 5+ messages in thread
From: Prabhakar @ 2025-06-19 13:55 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 support for the Renesas RAA215300 PMIC to the RZ/V2N EVK. The PMIC is
connected to I2C8 and uses a 32.768kHz fixed clock source (x6).
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
.../boot/dts/renesas/r9a09g056n48-rzv2n-evk.dts | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/arch/arm64/boot/dts/renesas/r9a09g056n48-rzv2n-evk.dts b/arch/arm64/boot/dts/renesas/r9a09g056n48-rzv2n-evk.dts
index b63ee1ff18d5..40014044bbc7 100644
--- a/arch/arm64/boot/dts/renesas/r9a09g056n48-rzv2n-evk.dts
+++ b/arch/arm64/boot/dts/renesas/r9a09g056n48-rzv2n-evk.dts
@@ -66,6 +66,13 @@ vqmmc_sdhi1: regulator-vqmmc-sdhi1 {
gpios-states = <0>;
states = <3300000 0>, <1800000 1>;
};
+
+ /* 32.768kHz crystal */
+ x6: x6-clock {
+ compatible = "fixed-clock";
+ #clock-cells = <0>;
+ clock-frequency = <32768>;
+ };
};
&audio_extal_clk {
@@ -150,6 +157,14 @@ &i2c8 {
pinctrl-names = "default";
clock-frequency = <400000>;
status = "okay";
+
+ raa215300: pmic@12 {
+ compatible = "renesas,raa215300";
+ reg = <0x12>, <0x6f>;
+ reg-names = "main", "rtc";
+ clocks = <&x6>;
+ clock-names = "xin";
+ };
};
&mdio0 {
--
2.49.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Add RAA215300 PMIC
2025-06-19 13:55 ` [PATCH 1/2] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Add RAA215300 PMIC Prabhakar
@ 2025-06-26 12:21 ` Geert Uytterhoeven
0 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2025-06-26 12:21 UTC (permalink / raw)
To: Prabhakar
Cc: Magnus Damm, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
linux-renesas-soc, devicetree, linux-kernel, Biju Das,
Fabrizio Castro, Lad Prabhakar
On Thu, 19 Jun 2025 at 15:55, Prabhakar <prabhakar.csengg@gmail.com> wrote:
> From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
>
> Add support for the Renesas RAA215300 PMIC to the RZ/V2H EVK. The PMIC is
> connected to I2C8 and uses a 32.768kHz fixed clock source (x6).
>
> 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 v6.17.
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] 5+ messages in thread
* Re: [PATCH 2/2] arm64: dts: renesas: r9a09g056n48-rzv2n-evk: Add RAA215300 PMIC
2025-06-19 13:55 ` [PATCH 2/2] arm64: dts: renesas: r9a09g056n48-rzv2n-evk: " Prabhakar
@ 2025-06-26 12:21 ` Geert Uytterhoeven
0 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2025-06-26 12:21 UTC (permalink / raw)
To: Prabhakar
Cc: Magnus Damm, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
linux-renesas-soc, devicetree, linux-kernel, Biju Das,
Fabrizio Castro, Lad Prabhakar
On Thu, 19 Jun 2025 at 15:55, Prabhakar <prabhakar.csengg@gmail.com> wrote:
> From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
>
> Add support for the Renesas RAA215300 PMIC to the RZ/V2N EVK. The PMIC is
> connected to I2C8 and uses a 32.768kHz fixed clock source (x6).
>
> 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 v6.17.
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] 5+ messages in thread
end of thread, other threads:[~2025-06-26 12:21 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-19 13:55 [PATCH 0/2] Add RAA215300 PMIC support to RZ/V2H and RZ/V2N EVKs Prabhakar
2025-06-19 13:55 ` [PATCH 1/2] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Add RAA215300 PMIC Prabhakar
2025-06-26 12:21 ` Geert Uytterhoeven
2025-06-19 13:55 ` [PATCH 2/2] arm64: dts: renesas: r9a09g056n48-rzv2n-evk: " Prabhakar
2025-06-26 12:21 ` 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).