Linux GPIO subsystem development
 help / color / mirror / Atom feed
* [PATCH RESEND 0/9] Add Renesas RZ/G3L PINCONTROL support
@ 2026-01-29 10:16 Biju
  2026-01-29 10:16 ` [PATCH RESEND 1/9] dt-bindings: pinctrl: renesas: Document reset-names Biju
                   ` (8 more replies)
  0 siblings, 9 replies; 16+ messages in thread
From: Biju @ 2026-01-29 10:16 UTC (permalink / raw)
  To: biju.das.au
  Cc: linux-renesas-soc, biju.das.jz, Geert Uytterhoeven, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Magnus Damm,
	Michael Turquette, Stephen Boyd, Lad Prabhakar, linux-gpio,
	devicetree, linux-kernel, linux-clk

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

Hi All,

This patch series aims to add basic pincontrol support for RZ/G3L SoC. The
RZ/G3L pinctrl has OTHER_POC register compared to other SoCs for setting
IO domain volage for AWO, ISO and WDT.

Document the reset-names as all SOCs has multiple resets.

Document the bindings for RZ/G3L SOC and add pinctrl definitions in
driver.

Add pincontrol device node and add pincontrol support for SCIF0 and GBETH
nodes.

Note:
Some IPs needs to set the register IPCONT_SEL_CLONECH in SYSC to control
the clone channel of the IP. Plan to add clone channel control support
later. The IP's involing clone channel needs to do the setup as per the
below flow

(1) Set SYS_IPCONT_SEL_CLONECH register as necessary
(2) Set the PWPR register to allow writing to the PFC_m register.
    After setting the PWPR.B0WI bit to “0” (initial value = 1), 
    set the PWPR.PFCWE bit to “1” (initial value = 0).
    Select the required function from Functions 0-15.
    (Hereafter, Function1 setting example)
(3) Set PFC_m = 0001b and switch to Function1.
(4) Set the PMC_m register to “1” (initial value = 0).
(5) Set the PFC_m register to write-protected. After setting
    the PWPR.PFCWE bit to “0”, set the PWPR.B0WI bit to “1”.

The clock and dtsi/dts patches depend upon [1]
[1] https://lore.kernel.org/all/20260128125850.425264-1-biju.das.jz@bp.renesas.com/

Biju Das (9):
  dt-bindings: pinctrl: renesas: Document reset-names
  dt-bindings: pinctrl: renesas: Document RZ/G3L SoC
  clk: renesas: r9a08g046: Add GPIO clocks/resets
  pinctrl: renesas: rzg2l: Add support for selecting power source for
    {WDT,AWO,ISO}
  pinctrl: renesas: rzg2l: Add OEN support for RZ/G3L
  pinctrl: renesas: rzg2l: Add support for RZ/G3L SoC
  arm64: dts: renesas: r9a08g046: Add pincontrol node
  arm64: dts: renesas: r9a08g046l48-smarc: Add SCIF0 pincontrol
  arm64: dts: renesas: rzg3l-smarc-som: Enable eth1 (GBETH1) interface

 .../pinctrl/renesas,rzg2l-pinctrl.yaml        |  16 +
 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    |  10 +
 .../boot/dts/renesas/r9a08g046l48-smarc.dts   |  13 +
 arch/arm64/boot/dts/renesas/r9a09g047.dtsi    |   1 +
 arch/arm64/boot/dts/renesas/r9a09g056.dtsi    |   1 +
 arch/arm64/boot/dts/renesas/r9a09g057.dtsi    |   1 +
 .../boot/dts/renesas/rzg3l-smarc-som.dtsi     |  92 ++++++
 drivers/clk/renesas/r9a08g046-cpg.c           |   6 +
 drivers/pinctrl/renesas/pinctrl-rzg2l.c       | 285 +++++++++++++++++-
 .../pinctrl/renesas,r9a08g046-pinctrl.h       |  39 +++
 14 files changed, 465 insertions(+), 3 deletions(-)
 create mode 100644 include/dt-bindings/pinctrl/renesas,r9a08g046-pinctrl.h

-- 
2.43.0


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

end of thread, other threads:[~2026-01-29 18:09 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-29 10:16 [PATCH RESEND 0/9] Add Renesas RZ/G3L PINCONTROL support Biju
2026-01-29 10:16 ` [PATCH RESEND 1/9] dt-bindings: pinctrl: renesas: Document reset-names Biju
2026-01-29 17:40   ` Conor Dooley
2026-01-29 17:43     ` Biju Das
2026-01-29 17:46       ` Conor Dooley
2026-01-29 17:46         ` Conor Dooley
2026-01-29 18:09           ` Biju Das
2026-01-29 10:16 ` [PATCH RESEND 2/9] dt-bindings: pinctrl: renesas: Document RZ/G3L SoC Biju
2026-01-29 17:40   ` Conor Dooley
2026-01-29 10:16 ` [PATCH RESEND 3/9] clk: renesas: r9a08g046: Add GPIO clocks/resets Biju
2026-01-29 10:16 ` [PATCH RESEND 4/9] pinctrl: renesas: rzg2l: Add support for selecting power source for {WDT,AWO,ISO} Biju
2026-01-29 10:16 ` [PATCH RESEND 5/9] pinctrl: renesas: rzg2l: Add OEN support for RZ/G3L Biju
2026-01-29 10:16 ` [PATCH RESEND 6/9] pinctrl: renesas: rzg2l: Add support for RZ/G3L SoC Biju
2026-01-29 10:16 ` [PATCH RESEND 7/9] arm64: dts: renesas: r9a08g046: Add pincontrol node Biju
2026-01-29 10:16 ` [PATCH RESEND 8/9] arm64: dts: renesas: r9a08g046l48-smarc: Add SCIF0 pincontrol Biju
2026-01-29 10:16 ` [PATCH RESEND 9/9] arm64: dts: renesas: rzg3l-smarc-som: Enable eth1 (GBETH1) interface Biju

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