From: Conor Dooley <conor@kernel.org>
To: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com>
Cc: tomm.merciai@gmail.com, linux-renesas-soc@vger.kernel.org,
biju.das.jz@bp.renesas.com,
Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>,
Vinod Koul <vkoul@kernel.org>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Geert Uytterhoeven <geert+renesas@glider.be>,
Magnus Damm <magnus.damm@gmail.com>,
linux-phy@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 00/18] Add USB2.0 support for RZ/G3E
Date: Thu, 2 Oct 2025 19:48:57 +0100 [thread overview]
Message-ID: <20251002-mystify-idiom-0273ef40b4dd@spud> (raw)
In-Reply-To: <20251001212709.579080-1-tommaso.merciai.xr@bp.renesas.com>
[-- Attachment #1.1: Type: text/plain, Size: 3322 bytes --]
On Wed, Oct 01, 2025 at 11:26:44PM +0200, Tommaso Merciai wrote:
> Dear All,
>
> This patch series adds USB2.0 support for the Renesas R9A09G047 (RZ/G3E)
> SoC and enables it on the RZ/G3E SMARC II board.
> The RZ/G3E USB2.0 IP is identical to that used in the RZ/V2H (R9A09G057),
> so the existing support has been extended accordingly.
>
> The series applies on top of [1] and [2] and includes driver cleanups,
> VBUS/OTG handling fixes, regulator improvements, clock/reset additions,
> and device tree updates for RZ/G3E, RZ/V2H, and RZ/V2N SoCs and boards.
>
> Thanks & Regards,
> Tommaso
If you're not gonna CC me on all the patches in the series, please at
least CC me on the cover so I have an idea about what is going on in the
rest of the set.
All the bindings are
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Cheers,
Conor.
>
> [1] https://patchwork.kernel.org/project/linux-renesas-soc/list/?series=1001788
> [2] https://patchwork.kernel.org/project/linux-renesas-soc/list/?series=1006104
>
> Tommaso Merciai (18):
> phy: renesas: rcar-gen3-usb2: Use devm_pm_runtime_enable()
> phy: renesas: rcar-gen3-usb2: Factor out VBUS control logic
> reset: rzv2h-usb2phy: Simplify pm_runtime driver handling
> reset: rzv2h-usb2phy: Set VBENCTL register for OTG mode
> dt-bindings: phy: renesas,usb2-phy: Document USB VBUS regulator
> phy: renesas: rcar-gen3-usb2: Add regulator for OTG VBUS control
> regulator: devres: Disable exclusive regulator before releasing
> dt-bindings: clock: renesas,r9a09g047-cpg: Add USB2 PHY core clocks
> clk: renesas: r9a09g047: Add clock and reset entries for USB2
> dt-bindings: usb: renesas,usbhs: Add RZ/G3E SoC support
> dt-bindings: phy: renesas,usb2-phy: Document RZ/G3E SoC
> dt-bindings: reset: Document RZ/G3E USB2PHY reset
> arm64: dts: renesas: r9a09g056: Add USB2.0 PHY VBUS internal regulator
> node
> arm64: dts: renesas: r9a09g056n48-rzv2n-evk: Enable USB2 PHY0 VBUS
> support
> arm64: dts: renesas: r9a09g057: Add USB2.0 PHY VBUS internal regulator
> node
> arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Enable USB2 PHY0 VBUS
> support
> arm64: dts: renesas: r9a09g047: Add USB2.0 support
> arm64: dts: renesas: r9a09g047e57-smarc: Enable USB2.0 support
>
> .../bindings/phy/renesas,usb2-phy.yaml | 10 +-
> .../reset/renesas,rzv2h-usb2phy-reset.yaml | 4 +-
> .../bindings/usb/renesas,usbhs.yaml | 1 +
> arch/arm64/boot/dts/renesas/r9a09g047.dtsi | 122 +++++++++++
> .../boot/dts/renesas/r9a09g047e57-smarc.dts | 49 +++++
> arch/arm64/boot/dts/renesas/r9a09g056.dtsi | 6 +
> .../dts/renesas/r9a09g056n48-rzv2n-evk.dts | 5 +
> arch/arm64/boot/dts/renesas/r9a09g057.dtsi | 6 +
> .../dts/renesas/r9a09g057h44-rzv2h-evk.dts | 5 +
> .../boot/dts/renesas/renesas-smarc2.dtsi | 23 ++
> drivers/clk/renesas/r9a09g047-cpg.c | 18 +-
> drivers/phy/renesas/phy-rcar-gen3-usb2.c | 199 +++++++++++++-----
> drivers/regulator/devres.c | 8 +-
> drivers/reset/reset-rzv2h-usb2phy.c | 105 ++++++---
> .../dt-bindings/clock/renesas,r9a09g047-cpg.h | 2 +
> 15 files changed, 478 insertions(+), 85 deletions(-)
>
> --
> 2.43.0
>
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
[-- Attachment #2: Type: text/plain, Size: 112 bytes --]
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
next prev parent reply other threads:[~2025-10-02 18:49 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-01 21:26 [PATCH 00/18] Add USB2.0 support for RZ/G3E Tommaso Merciai
2025-10-01 21:26 ` [PATCH 01/18] phy: renesas: rcar-gen3-usb2: Use devm_pm_runtime_enable() Tommaso Merciai
2025-10-01 21:26 ` [PATCH 02/18] phy: renesas: rcar-gen3-usb2: Factor out VBUS control logic Tommaso Merciai
2025-10-01 21:26 ` [PATCH 03/18] reset: rzv2h-usb2phy: Simplify pm_runtime driver handling Tommaso Merciai
2025-10-06 16:21 ` Philipp Zabel
2025-10-07 7:01 ` Tommaso Merciai
2025-10-01 21:26 ` [PATCH 04/18] reset: rzv2h-usb2phy: Set VBENCTL register for OTG mode Tommaso Merciai
2025-10-06 16:31 ` Philipp Zabel
2025-10-07 4:02 ` Biju Das
2025-10-07 9:44 ` Philipp Zabel
2025-10-07 11:04 ` Biju Das
2025-10-07 14:13 ` Philipp Zabel
2025-10-07 15:20 ` Biju Das
2025-10-01 21:26 ` [PATCH 05/18] dt-bindings: phy: renesas,usb2-phy: Document USB VBUS regulator Tommaso Merciai
2025-10-01 21:26 ` [PATCH 06/18] phy: renesas: rcar-gen3-usb2: Add regulator for OTG VBUS control Tommaso Merciai
2025-10-01 21:26 ` [PATCH 07/18] regulator: devres: Disable exclusive regulator before releasing Tommaso Merciai
2025-10-02 16:29 ` Mark Brown
2025-10-03 17:33 ` Tommaso Merciai
2025-10-06 11:52 ` Mark Brown
2025-10-06 12:53 ` Tommaso Merciai
2025-10-01 21:26 ` [PATCH 08/18] dt-bindings: clock: renesas,r9a09g047-cpg: Add USB2 PHY core clocks Tommaso Merciai
2025-10-09 13:48 ` Geert Uytterhoeven
2025-10-01 21:26 ` [PATCH 09/18] clk: renesas: r9a09g047: Add clock and reset entries for USB2 Tommaso Merciai
2025-10-09 13:49 ` Geert Uytterhoeven
2025-10-01 21:26 ` [PATCH 10/18] dt-bindings: usb: renesas,usbhs: Add RZ/G3E SoC support Tommaso Merciai
2025-10-01 21:26 ` [PATCH 11/18] dt-bindings: phy: renesas,usb2-phy: Document RZ/G3E SoC Tommaso Merciai
2025-10-01 21:26 ` [PATCH 12/18] dt-bindings: reset: Document RZ/G3E USB2PHY reset Tommaso Merciai
2025-10-01 21:26 ` [PATCH 13/18] arm64: dts: renesas: r9a09g056: Add USB2.0 PHY VBUS internal regulator node Tommaso Merciai
2025-10-01 21:26 ` [PATCH 14/18] arm64: dts: renesas: r9a09g056n48-rzv2n-evk: Enable USB2 PHY0 VBUS support Tommaso Merciai
2025-10-01 21:26 ` [PATCH 15/18] arm64: dts: renesas: r9a09g057: Add USB2.0 PHY VBUS internal regulator node Tommaso Merciai
2025-10-01 21:27 ` [PATCH 16/18] arm64: dts: renesas: r9a09g057h44-rzv2h-evk: Enable USB2 PHY0 VBUS support Tommaso Merciai
2025-10-01 21:27 ` [PATCH 17/18] arm64: dts: renesas: r9a09g047: Add USB2.0 support Tommaso Merciai
2025-10-01 21:27 ` [PATCH 18/18] arm64: dts: renesas: r9a09g047e57-smarc: Enable " Tommaso Merciai
2025-10-02 18:48 ` Conor Dooley [this message]
2025-10-03 10:03 ` [PATCH 00/18] Add USB2.0 support for RZ/G3E Tommaso Merciai
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251002-mystify-idiom-0273ef40b4dd@spud \
--to=conor@kernel.org \
--cc=biju.das.jz@bp.renesas.com \
--cc=geert+renesas@glider.be \
--cc=kishon@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=tomm.merciai@gmail.com \
--cc=tommaso.merciai.xr@bp.renesas.com \
--cc=vkoul@kernel.org \
--cc=yoshihiro.shimoda.uh@renesas.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox