lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <aLf162kc8_VB163Z@debianbuilder>
Date: Wed, 3 Sep 2025 10:01:47 +0200
From: Buday Csaba <buday.csaba@...lan.hu>
To: Ahmad Fatoum <a.fatoum@...gutronix.de>
CC: Csókás Bence <csokas.bence@...lan.hu>, Rob Herring
	<robh@...nel.org>, Krzysztof Kozlowski <krzk+dt@...nel.org>, Conor Dooley
	<conor+dt@...nel.org>, Shawn Guo <shawnguo@...nel.org>, Sascha Hauer
	<s.hauer@...gutronix.de>, Pengutronix Kernel Team <kernel@...gutronix.de>,
	Fabio Estevam <festevam@...il.com>, <devicetree@...r.kernel.org>,
	<imx@...ts.linux.dev>, <linux-kernel@...r.kernel.org>,
	<linux-arm-kernel@...ts.infradead.org>
Subject: Re: [PATCH] ARM: dts: imx6ul-tx6ul: Switch away from deprecated
 `phy-reset-gpios`

On Wed, Sep 03, 2025 at 09:50:08AM +0200, Ahmad Fatoum wrote:
> Hi,
> 
> On 03.09.25 09:43, Csókás Bence wrote:
> > Hi,
> > 
> > On 2025. 09. 03. 9:28, Ahmad Fatoum wrote:
> >> Hello,
> >>
> >> On 15.08.25 17:17, Bence Csókás wrote:
> >>> The Ethernet PHY's reset GPIO should be specified in the node of the PHY
> >>> itself, instead of the MAC (`fec`). The latter is deprecated, and was an
> >>> i.MX-specific extension, incompatible with the new reset controller
> >>> subsystem.
> >>
> >> One reason to do it this way is that the PHY is in reset when the OS starts
> >> and the external phy-reset-gpios allows MAC probe to get the PHY out of
> >> reset, so it can be probed after reading its vendor/device IDs.
> >>
> >> Does switching to this new binding address this scenario? If so, it should
> >> be noted in the commit message.
> > 
> > Yes, but after it has been reset, if the platform supports Power Management, the PHY's clock will be turned off, which some PHYs (in our case the LAN8710) don't tolerate. This has been reported many times, just search LKML for "lan8710 reset".
> > 
> > So we want a more general solution [1] where the PHY subsystem resets them before enumerating. However, if the MAC driver claims the GPIO, then it can't be used by the PHY.
> 
> I agree that it makes sense for a PHY reset to be associated with the PHY
> device and controlled by the PHY driver. I am wary of regressions though,
> which is why I wanted the commit message to clearly spell out the implications.
> 
> > I will clarify the commit msg with this in mind.
> 
> Thanks.
> 
> > [1] https://lore.kernel.org/lkml/20250709133222.48802-4-buday.csaba@prolan.hu/
> 
> Is this mainline yet?
> 

No, it is not. It was never the most beautiful piece of code, so I understand
that.

But if you could give us some guidance, that would help a lot.

Specifically:

1)  If `phy-reset-gpios` is deprecated, than we should start treating it as
    such, and not rely on it in future releases. Perhaps we should also add a
    warning message, when it is found in the device tree.
2)  On the other hand, if it is here to stay for a long time, it should be
    fixed. Now the gpio is claimed during fec_reset_phy(), and never released.
    It can not be used by the driver later, like in fec_init(), because the
    gpio reference is only stored in a local variable of fec_reset_phy().
    Previous patches that would have stored the reference in the driver were
    rejected on the grounds that it is deprecated. But if it is not, then we
    can create a patch that would make it work properly.
3)  Andrew pointed out, that resetting a PHY before probing it may cause
    regressions. That is certainly a valid concern, but for most of the 
    devices resetting it means starting from a known state, and should be the
    default. But we could create a device tree property, that controls this
    behaviour.

Regards,
Csaba

> Cheers,
> Ahmad
> 
> > 
> >>>
> >>> Co-developed-by: Csaba Buday <buday.csaba@...lan.hu>
> >>> Signed-off-by: Csaba Buday <buday.csaba@...lan.hu>lan8710 reset
> >>> Signed-off-by: Bence Csókás <csokas.bence@...lan.hu>
> >>> ---
> >>>   arch/arm/boot/dts/nxp/imx/imx6ul-tx6ul.dtsi | 8 +++++++-
> >>>   1 file changed, 7 insertions(+), 1 deletion(-)
> >>>
> >>> diff --git a/arch/arm/boot/dts/nxp/imx/imx6ul-tx6ul.dtsi b/arch/arm/boot/dts/nxp/imx/imx6ul-tx6ul.dtsi
> >>> index f053358bc9317f8447d65013a18670cb470106b2..0a5e90704ea481b0716d6ff6bc6d2110914d4f31 100644
> >>> --- a/arch/arm/boot/dts/nxp/imx/imx6ul-tx6ul.dtsi
> >>> +++ b/arch/arm/boot/dts/nxp/imx/imx6ul-tx6ul.dtsi
> >>> @@ -246,7 +246,6 @@ &fec1 {
> >>>       pinctrl-names = "default";
> >>>       pinctrl-0 = <&pinctrl_enet1 &pinctrl_enet1_mdio &pinctrl_etnphy0_rst>;
> >>>       phy-mode = "rmii";
> >>> -    phy-reset-gpios = <&gpio5 6 GPIO_ACTIVE_LOW>;
> >>>       phy-supply = <&reg_3v3_etn>;
> >>>       phy-handle = <&etnphy0>;
> >>>       status = "okay";
> >>> @@ -262,6 +261,13 @@ etnphy0: ethernet-phy@0 {
> >>>               pinctrl-0 = <&pinctrl_etnphy0_int>;
> >>>               interrupt-parent = <&gpio5>;
> >>>               interrupts = <5 IRQ_TYPE_EDGE_FALLING>;
> >>> +            /* Reset SHOULD be a PHY property */
> >>
> >> Comment belongs into commit message.
> > 
> > Agreed.
> > 
> >>> +            reset-names = "phy";
> >>> +            reset-gpios = <&gpio5 6 GPIO_ACTIVE_LOW>;
> >>> +            reset-assert-us = <100>;
> >>> +            reset-deassert-us = <25000>;
> >>> +            /* Energy detect sometimes causes link failures */
> >>> +            smsc,disable-energy-detect;
> >>
> >> Unrelated change not described in the commit message.
> > 
> > Oh, this has accidentally made it into here from our DT. Thanks for spotting it!
> > 
> >> Cheers,
> >> Ahmad
> >>
> >>>               status = "okay";
> >>>           };
> >>>  
> >>> ---
> >>> base-commit: 0cc53520e68bea7fb80fdc6bdf8d226d1b6a98d9
> >>> change-id: 20250815-b4-tx6ul-dt-phy-rst-7afc190a6907
> >>>
> >>> Best regards,
> >>
> >>
> > 
> > Bence
> > 
> > 
> 
> 
> -- 
> Pengutronix e.K.                           |                             |
> Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
> 31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
> 


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ