[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <19746f65-bf10-4687-9e2b-b259220a9ea8@tuxon.dev>
Date: Wed, 15 Oct 2025 11:19:34 +0300
From: Claudiu Beznea <claudiu.beznea@...on.dev>
To: Philipp Zabel <p.zabel@...gutronix.de>, 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, Philipp,
On 10/14/25 19:42, Philipp Zabel wrote:
> 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.
I had a power domain driver implemented with its own genpd::power_{on,
off}, where the PWRRDY bit was set. I just pushed a branch here [1] with my
trials if you would like to check.
[1] https://github.com/claudiubeznea/linux/tree/usb-bringup%2Bpm-domain-v0
> 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)."
There were 2 approaches that I've tried with power domain:
1/ to provide both (cpg and PWRRDY) power domains phandle to the
reset-rzg2l-usbphy-ctrl DT node as:
power-domains = <&cpg R9A08G045_PD_USB_PHY>, <&sysc R9A08G045_SYSC_PD_USB>;
branch at [1] is for this approach (except, in there the cpg was used as
an always on power domain, not providing individual controls for each
IP, due to early implementation of MSTOP (please see above))
2/ to provide a single power domain phandle to the reset-rzg2l-usbphy-ctrl
DT node, that being the power domain that handled the PWRRDY, and to
model the PWRRDY-CPG power domains parent-child relation in the driver
code (as can be seen in commit 7788bcbc3ebe ("initial") from [2], files:
- arch/arm64/boot/dts/renesas/r9a08g045.dtsi
- drivers/clk/renesas/r9a08g045-cpg.c, diff:
+ DEF_PD("usb", RZG3S_PD_USB,
+ DEF_REG_CONF_COOKIE(SYS_USB_PWRRDY, BIT(0),
RZG3S_FW_SIP_ID),
+ RZG2L_PD_PARENT_DEFAULT, RZG2L_PD_F_NONE),
+ DEF_PD("usb0", R9A08G045_PD_USB0,
+ DEF_REG_CONF(CPG_BUS_PERI_COM_MSTOP,
GENMASK(6, 5)),
+ RZG2L_PD_PARENT_USB, RZG2L_PD_F_NONE),
+ DEF_PD("usb1", R9A08G045_PD_USB1,
+ DEF_REG_CONF(CPG_BUS_PERI_COM_MSTOP, BIT(7)),
+ RZG2L_PD_PARENT_USB, RZG2L_PD_F_NONE),
+ DEF_PD("usb-phy", R9A08G045_PD_USB_PHY,
+ DEF_REG_CONF(CPG_BUS_PERI_COM_MSTOP, BIT(4)),
+ RZG2L_PD_PARENT_USB, RZG2L_PD_F_NONE),
- drivers/clk/renesas/rzg2l-cpg.c
Please note that code in [2] is ugly.
By "And the USB SYSC PM domain is parent for all USB PM domains provided by
CPG (3 in this case)." I was referring to the solution 2/, implemented in
branch at [2]
Also, few other aspects that I missed to mention in this discussion, which
are important for the genpd notifier approach:
a/ by the time v1 was posted the MSTOP for each IP was abstracted as a
power domain; at that time the MSTOP was implemented as power domain
only in the drivers but it wasn't enabled in device tree due to some
bugs in the watchdog driver
b/ as a result of discussions with Renesas HW team on the USB PWRRDY it was
revealed that MSTOP must be strictly configured after/before clocks
enable/disable. Due to this, the MSTOP power domain abstraction was
dropped from the drivers code and now we are with a always on power
domain (CPG) for all the IPs, that is actually a clock power domain.
Today the MSTOP is set in the clock enable/disable APIs.
[2] https://github.com/claudiubeznea/linux/tree/usb-pwrrdy-parent-of-cpg-usb
>
>> 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?
I did tried on my side yesterday evening to prototype the genpd notifier
solution and, yes, you are right.
Because CPG is an always on clock power domain, shared by all it's clocks,
the _genpd_power_on(), where the notifier are invoked, is called only when
the 1st clock in the system is enabled, as there is genpd_status_on() check
in genpd_power_on(), which I missed when I inspected the code yesterday,
when replying to your email.
Because of this, you're right, we can't use the genpd notifier for this,
either.
> 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.
Now, that we found the genpd notifier is not a solution, could you please
let me know how would you like me to proceed?
Thank you,
Claudiu
Powered by blists - more mailing lists