netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Buday Csaba <buday.csaba@prolan.hu>
To: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Andrew Lunn <andrew@lunn.ch>,
	Heiner Kallweit <hkallweit1@gmail.com>,
	Russell King <linux@armlinux.org.uk>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Florian Fainelli <f.fainelli@gmail.com>, <netdev@vger.kernel.org>,
	<devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH net-next v3 4/4] net: mdio: reset PHY before attempting to access registers in fwnode_mdiobus_register_phy
Date: Tue, 21 Oct 2025 09:24:18 +0200	[thread overview]
Message-ID: <aPc1Ii7eVFRaXy4-@debianbuilder> (raw)
In-Reply-To: <af5211fbb818c873f22b6622526fa8e0c9eb2fde.camel@pengutronix.de>

Thank you!
I do not know how that slipped.
I will fix it in v4.

Regards,
Csaba

On Mon, Oct 20, 2025 at 11:16:11AM +0200, Philipp Zabel wrote:
> On Fr, 2025-10-17 at 18:10 +0200, Buday Csaba wrote:
> > Implement support for the `phy-id-read-needs-reset` device tree
> > property.
> > 
> > When the ID of an ethernet PHY is not provided by the 'compatible'
> > string in the device tree, its actual ID is read via the MDIO bus.
> > For some PHYs this could be unsafe, since a hard reset may be
> > necessary to safely access the MDIO registers.
> > 
> > This patch performs the hard-reset before attempting to read the ID,
> > when the mentioned device tree property is present.
> > 
> > Signed-off-by: Buday Csaba <buday.csaba@prolan.hu>
> > ---
> > V2 -> V3: kernel-doc replaced with a comment (fixed warning)
> > V1 -> V2:
> >  - renamed DT property `reset-phy-before-probe` to
> >   `phy-id-read-needs-reset`
> 
> Not completely, see below.
> 
> >  - renamed fwnode_reset_phy_before_probe() to
> >    fwnode_reset_phy()
> >  - added kernel-doc for fwnode_reset_phy()
> >  - improved error handling in fwnode_reset_phy()
> > ---
> >  drivers/net/mdio/fwnode_mdio.c | 35 +++++++++++++++++++++++++++++++++-
> >  1 file changed, 34 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/net/mdio/fwnode_mdio.c b/drivers/net/mdio/fwnode_mdio.c
> > index ba7091518..8e8f9182a 100644
> > --- a/drivers/net/mdio/fwnode_mdio.c
> > +++ b/drivers/net/mdio/fwnode_mdio.c
> > @@ -114,6 +114,36 @@ int fwnode_mdiobus_phy_device_register(struct mii_bus *mdio,
> >  }
> >  EXPORT_SYMBOL(fwnode_mdiobus_phy_device_register);
> >  
> > +/* Hard-reset a PHY before registration */
> > +static int fwnode_reset_phy(struct mii_bus *bus, u32 addr,
> > +			    struct fwnode_handle *phy_node)
> > +{
> > +	struct mdio_device *tmpdev;
> > +	int err;
> > +
> > +	tmpdev = mdio_device_create(bus, addr);
> > +	if (IS_ERR(tmpdev))
> > +		return PTR_ERR(tmpdev);
> > +
> > +	fwnode_handle_get(phy_node);
> > +	device_set_node(&tmpdev->dev, phy_node);
> > +	err = mdio_device_register_reset(tmpdev);
> > +	if (err) {
> > +		mdio_device_free(tmpdev);
> > +		return err;
> > +	}
> > +
> > +	mdio_device_reset(tmpdev, 1);
> > +	mdio_device_reset(tmpdev, 0);
> > +
> > +	mdio_device_unregister_reset(tmpdev);
> > +
> > +	mdio_device_free(tmpdev);
> > +	fwnode_handle_put(phy_node);
> > +
> > +	return 0;
> > +}
> > +
> >  int fwnode_mdiobus_register_phy(struct mii_bus *bus,
> >  				struct fwnode_handle *child, u32 addr)
> >  {
> > @@ -129,8 +159,11 @@ int fwnode_mdiobus_register_phy(struct mii_bus *bus,
> >  		return PTR_ERR(mii_ts);
> >  
> >  	is_c45 = fwnode_device_is_compatible(child, "ethernet-phy-ieee802.3-c45");
> > -	if (is_c45 || fwnode_get_phy_id(child, &phy_id))
> > +	if (is_c45 || fwnode_get_phy_id(child, &phy_id)) {
> > +		if (fwnode_property_present(child, "reset-phy-before-probe"))
> 
> Commit message says this should be "phy-id-read-needs-reset" now.
> 
> regards
> Philipp
> 


      reply	other threads:[~2025-10-21  7:24 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-17 16:10 [PATCH net-next v3 0/4] net: mdio: implement optional PHY reset before MDIO access Buday Csaba
2025-10-17 16:10 ` [PATCH net-next v3 1/4] net: mdio: common handling of phy reset properties Buday Csaba
2025-10-17 16:10 ` [PATCH net-next v3 2/4] net: mdio: change property read from fwnode_property_read_u32() to device_property_read_u32() Buday Csaba
2025-10-17 16:10 ` [PATCH net-next v3 3/4] dt-bindings: net: mdio: add phy-id-read-needs-reset property Buday Csaba
2025-10-26 21:20   ` Rob Herring
2025-10-17 16:10 ` [PATCH net-next v3 4/4] net: mdio: reset PHY before attempting to access registers in fwnode_mdiobus_register_phy Buday Csaba
2025-10-20  9:16   ` Philipp Zabel
2025-10-21  7:24     ` Buday Csaba [this message]

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=aPc1Ii7eVFRaXy4-@debianbuilder \
    --to=buday.csaba@prolan.hu \
    --cc=andrew@lunn.ch \
    --cc=conor+dt@kernel.org \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=edumazet@google.com \
    --cc=f.fainelli@gmail.com \
    --cc=hkallweit1@gmail.com \
    --cc=krzk+dt@kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=netdev@vger.kernel.org \
    --cc=p.zabel@pengutronix.de \
    --cc=pabeni@redhat.com \
    --cc=robh@kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).