* [GIT PULL 0/2] Renesas SoC updates for v7.2
@ 2026-05-19 10:35 Geert Uytterhoeven
2026-05-19 10:35 ` [GIT PULL 1/2] Renesas driver " Geert Uytterhoeven
2026-05-19 10:35 ` [GIT PULL 2/2] Renesas DTS " Geert Uytterhoeven
0 siblings, 2 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2026-05-19 10:35 UTC (permalink / raw)
To: soc, soc
Cc: Magnus Damm, linux-arm-kernel, linux-renesas-soc,
Geert Uytterhoeven
Hi SoC folks,
This is my first pull request for the inclusion of Renesas SoC updates
for v7.2.
It consists of 2 parts:
[GIT PULL 1/2] Renesas driver updates for v7.2
- Add Multifunctional Interface (MFIS) mailbox and product register
support for R-Car X5H,
- Miscellaneous fixes and improvements.
[GIT PULL 2/2] Renesas DTS updates for v7.2
- Add GPU support for R-Car M3-W(+)-based ULCB and Salvator-X(S)
development boards,
- Add Ethernet, OPP table, interrupt, pin control, and watchdog
support for the RZ/G3L SoC and the RZ/G3L SMARC SoM board,
- Add Coresight support for the R-Mobile A1 and APE6 SoCs, and the
Armadillo-800 EVA and APE6EVM development boards,
- Miscellaneous fixes and improvements.
Note that the first PR includes DT binding definitions for R-Car X5H,
which are shared by driver and DT source files.
Note that the second PR (1) is based on v7.1-rc3, as PowerVR GPU
enablement has a dependency on commit 26735dfdd8930d9e ("pmdomain: core:
Fix detach procedure for virtual devices in genpd"), and (2) includes:
- Renesas SoC fixes for v7.1, which are already present in
soc/for-next, but not yet in v7.1-rc4,
- DT binding definition updates for the R-Mobile A1 and APE6 SoCs,
which are shared by the clock subsystem and DT source files,
- DT binding definitions for the RZ/G3L SoC, which are shared by the
pin control subsystem and DT source files.
Thanks for pulling!
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] 3+ messages in thread
* [GIT PULL 1/2] Renesas driver updates for v7.2
2026-05-19 10:35 [GIT PULL 0/2] Renesas SoC updates for v7.2 Geert Uytterhoeven
@ 2026-05-19 10:35 ` Geert Uytterhoeven
2026-05-19 10:35 ` [GIT PULL 2/2] Renesas DTS " Geert Uytterhoeven
1 sibling, 0 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2026-05-19 10:35 UTC (permalink / raw)
To: soc, soc
Cc: Magnus Damm, linux-arm-kernel, linux-renesas-soc,
Geert Uytterhoeven
The following changes since commit 254f49634ee16a731174d2ae34bc50bd5f45e731:
Linux 7.1-rc1 (2026-04-26 14:19:00 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git tags/renesas-drivers-for-v7.2-tag1
for you to fetch changes up to 17e48e7e5f18b45fd4a9411090148aae3b74f7f3:
soc: renesas: Convert to of_machine_get_match() (2026-05-11 09:56:17 +0200)
----------------------------------------------------------------
Renesas driver updates for v7.2
- Add Multifunctional Interface (MFIS) mailbox and product register
support for R-Car X5H,
- Miscellaneous fixes and improvements.
Note that this includes DT binding definitions for R-Car X5H, which are
shared by driver and DT source files.
Thanks for pulling!
----------------------------------------------------------------
Claudiu Beznea (5):
soc: renesas: r9a08g045-sysc: Move common code to a helper
soc: renesas: r9a08g046-sysc: Move common code to a helper
soc: renesas: r9a09g047-sys: Move common code to a helper
soc: renesas: r9a09g056-sys: Move common code to a helper
soc: renesas: r9a09g057-sys: Move common code to a helper
Geert Uytterhoeven (2):
Merge tag 'renesas-r8a78000-dt-binding-defs-tag1' into renesas-drivers-for-v7.2
soc: renesas: Convert to of_machine_get_match()
Wolfram Sang (3):
dt-bindings: soc: renesas: Document MFIS IP core
soc: renesas: Add Renesas R-Car MFIS driver
soc: renesas: Add R-Car X5H PRR support
.../soc/renesas/renesas,r8a78000-mfis.yaml | 187 +++++++++++
drivers/soc/renesas/Kconfig | 9 +
drivers/soc/renesas/Makefile | 1 +
drivers/soc/renesas/r9a08g045-sysc.c | 33 +-
drivers/soc/renesas/r9a08g046-sysc.c | 31 +-
drivers/soc/renesas/r9a09g047-sys.c | 34 +-
drivers/soc/renesas/r9a09g056-sys.c | 33 +-
drivers/soc/renesas/r9a09g057-sys.c | 44 +--
drivers/soc/renesas/rcar-mfis.c | 344 +++++++++++++++++++++
drivers/soc/renesas/renesas-soc.c | 10 +-
include/dt-bindings/soc/renesas,r8a78000-mfis.h | 28 ++
11 files changed, 644 insertions(+), 110 deletions(-)
create mode 100644 Documentation/devicetree/bindings/soc/renesas/renesas,r8a78000-mfis.yaml
create mode 100644 drivers/soc/renesas/rcar-mfis.c
create mode 100644 include/dt-bindings/soc/renesas,r8a78000-mfis.h
^ permalink raw reply [flat|nested] 3+ messages in thread
* [GIT PULL 2/2] Renesas DTS updates for v7.2
2026-05-19 10:35 [GIT PULL 0/2] Renesas SoC updates for v7.2 Geert Uytterhoeven
2026-05-19 10:35 ` [GIT PULL 1/2] Renesas driver " Geert Uytterhoeven
@ 2026-05-19 10:35 ` Geert Uytterhoeven
1 sibling, 0 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2026-05-19 10:35 UTC (permalink / raw)
To: soc, soc
Cc: Magnus Damm, linux-arm-kernel, linux-renesas-soc,
Geert Uytterhoeven
The following changes since commit 5d6919055dec134de3c40167a490f33c74c12581:
Linux 7.1-rc3 (2026-05-10 14:08:09 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git tags/renesas-dts-for-v7.2-tag1
for you to fetch changes up to 44f1ef06ceec55b7704c7d773d6136ca8b90f8b7:
ARM: dts: renesas: r8a73a4: Describe coresight on R-Mobile APE6 (2026-05-15 11:35:25 +0200)
----------------------------------------------------------------
Renesas DTS updates for v7.2
- Add GPU support for R-Car M3-W(+)-based ULCB and Salvator-X(S)
development boards,
- Add Ethernet, OPP table, interrupt, pin control, and watchdog
support for the RZ/G3L SoC and the RZ/G3L SMARC SoM board,
- Add Coresight support for the R-Mobile A1 and APE6 SoCs, and the
Armadillo-800 EVA and APE6EVM development boards,
- Miscellaneous fixes and improvements.
Note that this (1) is based on v7.1-rc3, as PowerVR GPU enablement has a
dependency on commit 26735dfdd8930d9e ("pmdomain: core: Fix detach
procedure for virtual devices in genpd"), and (2) includes:
- Renesas SoC fixes for v7.1, which are already present in
soc/for-next, but not yet in v7.1-rc4,
- DT binding definition updates for the R-Mobile A1 and APE6 SoCs,
which are shared by the clock subsystem and DT source files,
- DT binding definitions for the RZ/G3L SoC, which are shared by the
pin control subsystem and DT source files.
Thanks for pulling!
----------------------------------------------------------------
Biju Das (13):
dt-bindings: pinctrl: renesas,rzg2l-pinctrl: Document reset-names
dt-bindings: pinctrl: renesas: Document RZ/G3L SoC
arm64: dts: renesas: r9a08g046: Add GBETH nodes
arm64: dts: renesas: rzg3l-smarc-som: Enable eth0 (GBETH0) interface
arm64: dts: renesas: Add pinctrl reset-names for RZ/G2L and RZ/V2H family SoCs
arm64: dts: renesas: r9a08g046: Add OPP table
arm64: dts: renesas: r9a08g046: Add ICU node
arm64: dts: renesas: r9a08g046: Add pincontrol node
arm64: dts: renesas: r9a08g046l48-smarc: Add SCIF0 pincontrol
arm64: dts: renesas: rzg3l-smarc-som: Add pinctrl configuration for ETH0
arm64: dts: renesas: rzg3l-smarc-som: Enable eth1 (GBETH1) interface
arm64: dts: renesas: r9a08g046: Add wdt device node
arm64: dts: renesas: rzg3l-smarc-som: Enable watchdog
Geert Uytterhoeven (5):
arm64: dts: renesas: r8a78000: Fix SCIF brg_int clocks
Merge tag 'renesas-fixes-for-v7.1-tag1' into renesas-dts-for-v7.2
Merge tag 'renesas-r8a7740-dt-binding-defs-tag1' into renesas-dts-for-v7.2
Merge tag 'renesas-r9a08g046-dt-binding-defs-tag2' into renesas-dts-for-v7.2
Merge tag 'renesas-r8a73a4-dt-binding-defs-tag1' into renesas-dts-for-v7.2
Marek Vasut (24):
arm64: dts: renesas: draak/ebisu-panel: Fix missing cells and reg in DTO
arm64: dts: renesas: salvator-panel: Fix missing cells and reg in DTO
arm64: dts: renesas: rz-smarc-cru-csi-ov5645: Fix missing cells and reg in CSI2 subnode
arm64: dts: renesas: rz-smarc-du-adv7513-smarc: Fix missing cells and reg in DU subnode
ARM: dts: renesas: r8a7778: Add missing unit address to bus node
ARM: dts: renesas: r8a7779: Add missing unit address to bus node
ARM: dts: renesas: r8a7792: Add missing unit address to bus node
ARM: dts: renesas: r7s72100: Add missing unit address to bus node
ARM: dts: renesas: genmai: Drop superfluous cells
ARM: dts: renesas: rskrza1: Drop superfluous cells
dt-bindings: clock: renesas,cpg-clocks: Document ZT/ZTR trace clock on R-Mobile A1
arm64: dts: renesas: r8a77960-ulcb: Enable GPU support
arm64: dts: renesas: r8a77960-salvator-x: Enable GPU support
arm64: dts: renesas: r8a77960-salvator-xs: Enable GPU support
arm64: dts: renesas: r8a77961-ulcb: Enable GPU support
arm64: dts: renesas: r8a77961-salvator-xs: Enable GPU support
ARM: dts: renesas: r8a7740: Add ZT/ZTR trace clocks
ARM: dts: renesas: r8a7740: Describe coresight
arm64: dts: renesas: gray-hawk-single: Fix AVB0 PHY node alignment
arm64: dts: renesas: ebisu: Sort sound node
arm64: dts: renesas: salvator-common: Sort sound node
dt-bindings: clock: renesas,cpg-clocks: Document ZT/ZTR trace clock on R-Mobile APE6
ARM: dts: renesas: r8a73a4: Add ZT/ZTR trace clock on R-Mobile APE6
ARM: dts: renesas: r8a73a4: Describe coresight on R-Mobile APE6
Tommaso Merciai (2):
arm64: dts: renesas: r9a09g057: Add #mux-state-cells to usb2{0,1}phyrst
arm64: dts: renesas: r9a09g056: Add #mux-state-cells to usb20phyrst
.../bindings/clock/renesas,cpg-clocks.yaml | 8 +-
.../bindings/pinctrl/renesas,rzg2l-pinctrl.yaml | 35 ++
arch/arm/boot/dts/renesas/r7s72100-genmai.dts | 3 -
arch/arm/boot/dts/renesas/r7s72100-rskrza1.dts | 2 -
arch/arm/boot/dts/renesas/r7s72100.dtsi | 2 +-
arch/arm/boot/dts/renesas/r8a73a4.dtsi | 114 +++++-
arch/arm/boot/dts/renesas/r8a7740.dtsi | 116 +++++-
arch/arm/boot/dts/renesas/r8a7778.dtsi | 2 +-
arch/arm/boot/dts/renesas/r8a7779.dtsi | 2 +-
arch/arm/boot/dts/renesas/r8a7792.dtsi | 2 +-
.../dts/renesas/draak-ebisu-panel-aa104xd12.dtso | 5 +
arch/arm64/boot/dts/renesas/ebisu.dtsi | 34 +-
arch/arm64/boot/dts/renesas/gray-hawk-single.dtsi | 10 +-
.../arm64/boot/dts/renesas/r8a77960-salvator-x.dts | 4 +
.../boot/dts/renesas/r8a77960-salvator-xs.dts | 4 +
arch/arm64/boot/dts/renesas/r8a77960-ulcb.dts | 4 +
.../boot/dts/renesas/r8a77961-salvator-xs.dts | 4 +
arch/arm64/boot/dts/renesas/r8a77961-ulcb.dts | 4 +
arch/arm64/boot/dts/renesas/r8a78000.dtsi | 8 +-
arch/arm64/boot/dts/renesas/r9a07g043.dtsi | 1 +
arch/arm64/boot/dts/renesas/r9a07g044.dtsi | 1 +
arch/arm64/boot/dts/renesas/r9a07g054.dtsi | 1 +
arch/arm64/boot/dts/renesas/r9a08g045.dtsi | 1 +
arch/arm64/boot/dts/renesas/r9a08g046.dtsi | 402 ++++++++++++++++++++-
arch/arm64/boot/dts/renesas/r9a08g046l48-smarc.dts | 13 +
arch/arm64/boot/dts/renesas/r9a09g047.dtsi | 1 +
arch/arm64/boot/dts/renesas/r9a09g056.dtsi | 2 +
arch/arm64/boot/dts/renesas/r9a09g057.dtsi | 3 +
.../boot/dts/renesas/rz-smarc-cru-csi-ov5645.dtsi | 5 +
.../boot/dts/renesas/rz-smarc-du-adv7513.dtsi | 5 +
arch/arm64/boot/dts/renesas/rzg3l-smarc-som.dtsi | 132 +++++++
arch/arm64/boot/dts/renesas/salvator-common.dtsi | 26 +-
.../boot/dts/renesas/salvator-panel-aa104xd12.dtso | 5 +
include/dt-bindings/clock/r8a73a4-clock.h | 2 +
include/dt-bindings/clock/r8a7740-clock.h | 2 +
.../pinctrl/renesas,r9a08g046-pinctrl.h | 38 ++
36 files changed, 945 insertions(+), 58 deletions(-)
create mode 100644 include/dt-bindings/pinctrl/renesas,r9a08g046-pinctrl.h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-05-19 10:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-19 10:35 [GIT PULL 0/2] Renesas SoC updates for v7.2 Geert Uytterhoeven
2026-05-19 10:35 ` [GIT PULL 1/2] Renesas driver " Geert Uytterhoeven
2026-05-19 10:35 ` [GIT PULL 2/2] Renesas DTS " Geert Uytterhoeven
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox