* [PATCH 6.1.y-cip 0/3] Add RZ/V2H GPU support
@ 2026-02-16 15:17 Ovidiu Panait
2026-02-16 15:17 ` [PATCH 6.1.y-cip 1/3] arm64: dts: renesas: r9a09g057: Add Mali-G31 GPU node Ovidiu Panait
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Ovidiu Panait @ 2026-02-16 15:17 UTC (permalink / raw)
To: cip-dev, pavel, nobuhiro.iwamatsu.x90
Hi,
This series adds GPU (Mali-G31) support for the Renesas RZ/V2H SoC.
Patches were cherry-picked from mainline kernel.
Best regards,
Ovidiu
Lad Prabhakar (3):
arm64: dts: renesas: r9a09g057: Add Mali-G31 GPU node
arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Enable Mali-G31
arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Rename fixed regulator
node names
arch/arm64/boot/dts/renesas/r9a09g057.dtsi | 51 +++++++++++++++++++
.../dts/renesas/r9a09g057h44-rzv2h-evk.dts | 17 ++++++-
2 files changed, 67 insertions(+), 1 deletion(-)
--
2.51.0
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 6.1.y-cip 1/3] arm64: dts: renesas: r9a09g057: Add Mali-G31 GPU node 2026-02-16 15:17 [PATCH 6.1.y-cip 0/3] Add RZ/V2H GPU support Ovidiu Panait @ 2026-02-16 15:17 ` Ovidiu Panait 2026-02-16 15:17 ` [PATCH 6.1.y-cip 2/3] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Enable Mali-G31 Ovidiu Panait ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Ovidiu Panait @ 2026-02-16 15:17 UTC (permalink / raw) To: cip-dev, pavel, nobuhiro.iwamatsu.x90 From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> commit 88e83915d89cb413c58f66ef2975b63d4d91f27c upstream. Add Mali-G31 GPU node to SoC DTSI. Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/20250218115922.407816-3-prabhakar.mahadev-lad.rj@bp.renesas.com Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Ovidiu Panait <ovidiu.panait.rb@renesas.com> --- arch/arm64/boot/dts/renesas/r9a09g057.dtsi | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/arch/arm64/boot/dts/renesas/r9a09g057.dtsi b/arch/arm64/boot/dts/renesas/r9a09g057.dtsi index daa1fa24c219..112d289c0b14 100644 --- a/arch/arm64/boot/dts/renesas/r9a09g057.dtsi +++ b/arch/arm64/boot/dts/renesas/r9a09g057.dtsi @@ -110,6 +110,35 @@ L3_CA55: cache-controller-0 { }; }; + gpu_opp_table: opp-table-1 { + compatible = "operating-points-v2"; + + opp-630000000 { + opp-hz = /bits/ 64 <630000000>; + opp-microvolt = <800000>; + }; + + opp-315000000 { + opp-hz = /bits/ 64 <315000000>; + opp-microvolt = <800000>; + }; + + opp-157500000 { + opp-hz = /bits/ 64 <157500000>; + opp-microvolt = <800000>; + }; + + opp-78750000 { + opp-hz = /bits/ 64 <78750000>; + opp-microvolt = <800000>; + }; + + opp-19687500 { + opp-hz = /bits/ 64 <19687500>; + opp-microvolt = <800000>; + }; + }; + psci { compatible = "arm,psci-1.0", "arm,psci-0.2"; method = "smc"; @@ -812,6 +841,28 @@ i2c8: i2c@11c01000 { status = "disabled"; }; + gpu: gpu@14850000 { + compatible = "renesas,r9a09g057-mali", + "arm,mali-bifrost"; + reg = <0x0 0x14850000 0x0 0x10000>; + interrupts = <GIC_SPI 884 IRQ_TYPE_LEVEL_HIGH>, + <GIC_SPI 885 IRQ_TYPE_LEVEL_HIGH>, + <GIC_SPI 883 IRQ_TYPE_LEVEL_HIGH>, + <GIC_SPI 886 IRQ_TYPE_LEVEL_HIGH>; + interrupt-names = "job", "mmu", "gpu", "event"; + clocks = <&cpg CPG_MOD 0xf0>, + <&cpg CPG_MOD 0xf1>, + <&cpg CPG_MOD 0xf2>; + clock-names = "gpu", "bus", "bus_ace"; + power-domains = <&cpg>; + resets = <&cpg 0xdd>, + <&cpg 0xde>, + <&cpg 0xdf>; + reset-names = "rst", "axi_rst", "ace_rst"; + operating-points-v2 = <&gpu_opp_table>; + status = "disabled"; + }; + gic: interrupt-controller@14900000 { compatible = "arm,gic-v3"; reg = <0x0 0x14900000 0 0x20000>, -- 2.51.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 6.1.y-cip 2/3] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Enable Mali-G31 2026-02-16 15:17 [PATCH 6.1.y-cip 0/3] Add RZ/V2H GPU support Ovidiu Panait 2026-02-16 15:17 ` [PATCH 6.1.y-cip 1/3] arm64: dts: renesas: r9a09g057: Add Mali-G31 GPU node Ovidiu Panait @ 2026-02-16 15:17 ` Ovidiu Panait 2026-02-16 15:17 ` [PATCH 6.1.y-cip 3/3] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Rename fixed regulator node names Ovidiu Panait 2026-02-16 19:14 ` [cip-dev] [PATCH 6.1.y-cip 0/3] Add RZ/V2H GPU support Pavel Machek 3 siblings, 0 replies; 5+ messages in thread From: Ovidiu Panait @ 2026-02-16 15:17 UTC (permalink / raw) To: cip-dev, pavel, nobuhiro.iwamatsu.x90 From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> commit 8bf8ad268e46403c7140ea5aaa85e9c659117dbc upstream. Enable Mali-G31 (GPU) node on EVK board. Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/20250218115922.407816-4-prabhakar.mahadev-lad.rj@bp.renesas.com Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Ovidiu Panait <ovidiu.panait.rb@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 a75101fe848a..380e8c706a29 100644 --- a/arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts +++ b/arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts @@ -69,6 +69,16 @@ memory@240000000 { reg = <0x2 0x40000000 0x2 0x00000000>; }; + reg_0p8v: regulator0 { + compatible = "regulator-fixed"; + + regulator-name = "fixed-0.8V"; + regulator-min-microvolt = <800000>; + regulator-max-microvolt = <800000>; + regulator-boot-on; + regulator-always-on; + }; + reg_1p8v: regulator-1p8v { compatible = "regulator-fixed"; regulator-name = "fixed-1.8V"; @@ -152,6 +162,11 @@ ð1 { status = "okay"; }; +&gpu { + status = "okay"; + mali-supply = <®_0p8v>; +}; + &hsusb { dr_mode = "otg"; status = "okay"; -- 2.51.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 6.1.y-cip 3/3] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Rename fixed regulator node names 2026-02-16 15:17 [PATCH 6.1.y-cip 0/3] Add RZ/V2H GPU support Ovidiu Panait 2026-02-16 15:17 ` [PATCH 6.1.y-cip 1/3] arm64: dts: renesas: r9a09g057: Add Mali-G31 GPU node Ovidiu Panait 2026-02-16 15:17 ` [PATCH 6.1.y-cip 2/3] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Enable Mali-G31 Ovidiu Panait @ 2026-02-16 15:17 ` Ovidiu Panait 2026-02-16 19:14 ` [cip-dev] [PATCH 6.1.y-cip 0/3] Add RZ/V2H GPU support Pavel Machek 3 siblings, 0 replies; 5+ messages in thread From: Ovidiu Panait @ 2026-02-16 15:17 UTC (permalink / raw) To: cip-dev, pavel, nobuhiro.iwamatsu.x90 From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> commit c0cd5213d409994f65ebd900f7f54d6d7a6435a4 upstream. Rename "regulator0" to "regulator-0p8v" and "regulator1" to "regulator-3p3v" for consistency as done in the RZ/V2N EVK. Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/20250620121045.56114-3-prabhakar.mahadev-lad.rj@bp.renesas.com Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Ovidiu Panait <ovidiu.panait.rb@renesas.com> --- arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts b/arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts index 380e8c706a29..a2c8509648b6 100644 --- a/arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts +++ b/arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts @@ -69,7 +69,7 @@ memory@240000000 { reg = <0x2 0x40000000 0x2 0x00000000>; }; - reg_0p8v: regulator0 { + reg_0p8v: regulator-0p8v { compatible = "regulator-fixed"; regulator-name = "fixed-0.8V"; @@ -88,7 +88,7 @@ reg_1p8v: regulator-1p8v { regulator-always-on; }; - reg_3p3v: regulator1 { + reg_3p3v: regulator-3p3v { compatible = "regulator-fixed"; regulator-name = "fixed-3.3V"; -- 2.51.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [cip-dev] [PATCH 6.1.y-cip 0/3] Add RZ/V2H GPU support 2026-02-16 15:17 [PATCH 6.1.y-cip 0/3] Add RZ/V2H GPU support Ovidiu Panait ` (2 preceding siblings ...) 2026-02-16 15:17 ` [PATCH 6.1.y-cip 3/3] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Rename fixed regulator node names Ovidiu Panait @ 2026-02-16 19:14 ` Pavel Machek 3 siblings, 0 replies; 5+ messages in thread From: Pavel Machek @ 2026-02-16 19:14 UTC (permalink / raw) To: ovidiu.panait.rb; +Cc: cip-dev, pavel, nobuhiro.iwamatsu.x90 [-- Attachment #1: Type: text/plain, Size: 412 bytes --] Hi! > This series adds GPU (Mali-G31) support for the Renesas RZ/V2H SoC. > > Patches were cherry-picked from mainline kernel. 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 -- In cooperation with Nabla. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 195 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-02-16 19:14 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-16 15:17 [PATCH 6.1.y-cip 0/3] Add RZ/V2H GPU support Ovidiu Panait 2026-02-16 15:17 ` [PATCH 6.1.y-cip 1/3] arm64: dts: renesas: r9a09g057: Add Mali-G31 GPU node Ovidiu Panait 2026-02-16 15:17 ` [PATCH 6.1.y-cip 2/3] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Enable Mali-G31 Ovidiu Panait 2026-02-16 15:17 ` [PATCH 6.1.y-cip 3/3] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Rename fixed regulator node names Ovidiu Panait 2026-02-16 19:14 ` [cip-dev] [PATCH 6.1.y-cip 0/3] Add RZ/V2H GPU support Pavel Machek
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox