[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <6ba1fd1f07753c9b98a57c87bffbbee16971da7a.camel@pengutronix.de>
Date: Tue, 14 Oct 2025 18:42:17 +0200
From: Philipp Zabel <p.zabel@...gutronix.de>
To: Claudiu Beznea <claudiu.beznea@...on.dev>, vkoul@...nel.org,
kishon@...nel.org, robh@...nel.org, krzk+dt@...nel.org,
conor+dt@...nel.org, geert+renesas@...der.be, magnus.damm@...il.com,
yoshihiro.shimoda.uh@...esas.com, biju.das.jz@...renesas.com
Cc: linux-phy@...ts.infradead.org, devicetree@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-renesas-soc@...r.kernel.org, Claudiu
Beznea <claudiu.beznea.uj@...renesas.com>, Wolfram Sang
<wsa+renesas@...g-engineering.com>
Subject: Re: [PATCH v7 4/7] reset: rzg2l-usbphy-ctrl: Add support for USB
PWRRDY
Hi Claudiu,
On Di, 2025-10-14 at 11:36 +0300, Claudiu Beznea wrote:
> On 10/13/25 17:57, Philipp Zabel wrote:
[...]
> > > > On 10/8/25 13:23, Philipp Zabel wrote:
> > > > > On Mi, 2025-10-08 at 12:29 +0300, Claudiu Beznea wrote:
[...]
> > > > > > The approaches considered were:
> > > > > > a/ power domain
[...]
> > > > > Could you point me to the discussion related to a?
[...]
> > Thank you! From this discussion it still isn't clear to me whether
> > Ulf's suggestion of using genpd on/off notifiers was considered and why
>
> The genpd on/off notifier suggestion wasn't tried, but only the
> implementation of PWRRDY handling through the power domain (what Ulf
> suggested though "Move the entire reset handling into the PM domain
> provider, as it obviously knows when the domain is getting turned on/off"
> in
> https://lore.kernel.org/all/fa9b3449-ea3e-4482-b7eb-96999445cea5@tuxon.dev/).
> Sorry if I mislead you.
No worries, misunderstandings happen. Here I assumed the "power domain
approach" meant letting the PWRRDY signal be controlled by power domain
state, not specifically all code in the power domain driver. And I only
learned about the genpd notifier suggestion after reading the thread.
> Ulf suggested then here
> https://lore.kernel.org/all/CAPDyKFpLnREr4C=wZ7o8Lb-CZbQa4Nr2VTuYdZHZ26Rcb1Masg@mail.gmail.com/
> that he is not agreeing anymore with having it as power domain due to the
> discussion in thread
> https://lore.kernel.org/all/TY3PR01MB1134652F9587CFA0ADE851CA486902@TY3PR01MB11346.jpnprd01.prod.outlook.com/
> (I can't remember what made him taking back is ack on this solution and I
> can't find something in the thread either).
>
> If I'm not wrong, with the information that we have at the moment, the best
> for the notifier would have to register it (before runtime resume) and
> implement it in this driver (reset-rzg2l-usbphy-ctrl) so that, when the
> pm_runtime_resume_and_get()/pm_runtime_put() in
> rzg2l_usbphy_ctrl_probe()/rzg2l_usbphy_ctrl_remove() will be called (or
> suspend/resume) the notifier will be called and set the PWRRDY bit. Please
> let me know if you see it otherwise.
That sounds like a clean abstraction to me.
> > it was dismissed.
>
> The power domain approach was dismissed as a result of discussion from this
> thread:
> https://lore.kernel.org/all/TY3PR01MB1134652F9587CFA0ADE851CA486902@TY3PR01MB11346.jpnprd01.prod.outlook.com/
>
> I don't remember exactly what triggered it and can't find it as well, sorry.
Ok.
> > From the DT patches it looks like there is no actual separate power
> > domain for USB, just the single always-on CPG power domain (in rzg2l-
> > cpg.c). Is that correct?
>
> That is correct, the CPG is a clock power domain. All the clocks that CPG
> can be provided (including USB clocks) are part of CPG clock power domain.
>
> > In the thread it sounded like there were
> > multiple domains.
>
> You probably refer to this:
> https://lore.kernel.org/all/fa9b3449-ea3e-4482-b7eb-96999445cea5@tuxon.dev/
Yes, I was confused by this sentence near the end: "And the USB SYSC PM
domain is parent for all USB PM domains provided by CPG (3 in this
case)."
> In there, I was trying to present to Ulf how I did implement (locally,
> nothing posted) the handling of PWRRDY though power domains. In that case
> the SYSC (System Controller), where the PWRRDY resides, was modeled as a
> power domain, I passed to the reset-rzg2l-usbphy-ctrl DT node the phandle
> to sysc USB power domain as:
>
> power-domains = <&cpg R9A08G045_PD_USB_PHY>, <&sysc R9A08G045_SYSC_PD_USB>;
>
> along with the cpg, and handled it in the reset-rzg2l-usbphy-ctrl probe().
Ok, thank you for the clarification.
> > Is the issue that you need the PWRRDY signal to be (de)asserted
> > independently from the CPG power domain enable/disable?
>
> Yes. I need to de-assert it before clocks, MSTOP on probe/resume and assert
> it back after clocks, MSTOP, on remove/suspend.
>
> > (Why?)
>
> Due to hardware constraints. This is how Renesas HW team recommended.
I still haven't understood this part. Isn't CPG the power domain
enabled "before clocks, MSTOP on probe resume" and disabled "after
clocks, MSTOP, on remove/suspend"? So PWRRDY could be toggled from
genpd notifications. If it needs to be (de)asserted independently,
wouldn't that mean the genpd notifier approach can not be used?
The notifiers are called from genpd_power_on/off(), after all.
> > Why can't the power domain provider (cpg) have the renesas,sysc-pwrrdy
> > property and set the signal together with the power domain?
>
> That can be done but, passing a SYSC phandle to the CPG DT node will not be
> valid from the HW description point of view.
>
> > > > > I see v2 and v3 tried to control the bit from the PHY drivers, and in
> > > > > v4 we were are already back to the reset driver.
> > > > v2 passed the system controller (SYSC) phandle to the USB PHYs only (though
> > > > renesas,sysc-signals DT property) where the PWRRDY bit was set. The PWRRDY
> > > > bit was referenced counted in the SYSC driver though regmap APIs.
> > > >
> > > > v3 used the approach from v2 but passed the renesas,sysc-signals to all the
> > > > USB related drivers.
> > > >
> > > > Then, in v4, the PWRRDY refcounting was dropped and passed
> > > > renesas,sysc-signals only to the USB PHY CTRL DT node in the idea that this
> > > > is the node that will always be probed first as all the other USB blocks
> > > > need it and request resets from it.
> > > >
> > > > v5 and v6 kept the approach from v4 and only addressed misc comments or
> > > > things that I noticed.
> > >
> > > Could you please let me know if you are OK with the approach proposed in
> > > v7, so that I can start preparing a new version addressing your comments?
> >
> > If the PWRRDY signal is an input to the USB2PHY control block, and not
> > only to the PHY blocks, I have no issue with this being handled in the
> > usb2phy reset driver -
>
> Yes, this is how the Renesas HW team confirmed they are related.
Ok, understood. I concur that usb2phy-ctrl is the right place for the
sysc property then.
> > iff it is not sensible to just control the
> > signal from the power domain driver.
>
> As mentioned above, that can be done as well but, passing a SYSC phandle to
> the CPG DT node will not be valid from the HW description point of view.
>
> > If we have to handle it in the reset driver, I'd prefer to see this
> > controlled with a dev_pm_genpd_add_notifier(). If that is not possible,
> > I'd like to understand why.
>
> From the code inspection I did, that can be done. From what I can tell at
> the moment, I'll have to register a gepnd notifier from
> reset-rzg2l-usbphy-ctrl, before runtime resuming the device and control the
> SYSC PWRRDY from it.
I'd like that.
regards
Philipp
Powered by blists - more mailing lists