* [PATCH v1] net: phy: dp83tg720: Decouple PHY reset frequency from link polling interval
@ 2024-06-14 12:51 Oleksij Rempel
2024-06-18 6:50 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Oleksij Rempel @ 2024-06-14 12:51 UTC (permalink / raw)
To: barebox; +Cc: Oleksij Rempel
Reduce PHY reset frequency to allow for more frequent link polling in
certain cases. This is necessary to ensure barebox can establish a link on
"ifup -a".
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
drivers/net/phy/dp83tg720.c | 34 +++++++++++++++++++++++-----------
1 file changed, 23 insertions(+), 11 deletions(-)
diff --git a/drivers/net/phy/dp83tg720.c b/drivers/net/phy/dp83tg720.c
index 7e807314ce..385b32046e 100644
--- a/drivers/net/phy/dp83tg720.c
+++ b/drivers/net/phy/dp83tg720.c
@@ -29,6 +29,10 @@
#define DP83TG720S_POLL_TIMEOUT_MS 100
+struct dp83tg720_priv {
+ uint64_t last_reset;
+};
+
static int dp83tg720_config_rgmii_delay(struct phy_device *phydev)
{
u16 rgmii_delay_mask;
@@ -62,6 +66,7 @@ static int dp83tg720_config_rgmii_delay(struct phy_device *phydev)
static int dp83tg720_phy_init(struct phy_device *phydev)
{
+ struct dp83tg720_priv *priv = phydev->priv;
int ret = 0;
/* HW reset is needed to recover link if previous link was lost. SW
@@ -71,6 +76,12 @@ static int dp83tg720_phy_init(struct phy_device *phydev)
phydev->supported = SUPPORTED_1000baseT_Full;
phydev->advertising = SUPPORTED_1000baseT_Full;
+ priv->last_reset = get_time_ns();
+ /* Randomize the polling interval to avoid reset synchronization with
+ * the link partner. The polling interval is set to 150ms +/- 50ms.
+ */
+ phydev->polling_interval = (DP83TG720S_POLL_TIMEOUT_MS +
+ (rand() % 10) * 10) * MSECOND;
/* According to the "DP83TG720R-Q1 1000BASE-T1 Automotive Ethernet PHY
* datasheet (Rev. C)" - "T6.2 Post reset stabilization-time prior to
@@ -93,14 +104,9 @@ static int dp83tg720_phy_init(struct phy_device *phydev)
static int dp83tg720_read_status(struct phy_device *phydev)
{
+ struct dp83tg720_priv *priv = phydev->priv;
u16 phy_sts;
- /* Randomize the polling interval to avoid reset synchronization with
- * the link partner. The polling interval is set to 150ms +/- 50ms.
- */
- phydev->polling_interval = (DP83TG720S_POLL_TIMEOUT_MS +
- (rand() % 10) * 10) * MSECOND;
-
phy_sts = phy_read(phydev, DP83TG720S_MII_REG_10);
phydev->link = !!(phy_sts & DP83TG720S_LINK_STATUS);
if (!phydev->link) {
@@ -111,18 +117,24 @@ static int dp83tg720_read_status(struct phy_device *phydev)
* Implementation Guide", the PHY needs to be reset after a
* link loss or if no link is created after at least 100ms.
*/
- dp83tg720_phy_init(phydev);
- return 0;
+ if (!priv->last_reset ||
+ is_timeout(priv->last_reset, phydev->polling_interval))
+ dp83tg720_phy_init(phydev);
+ } else {
+ phydev->duplex = DUPLEX_FULL;
+ phydev->speed = SPEED_1000;
}
- phydev->duplex = DUPLEX_FULL;
- phydev->speed = SPEED_1000;
-
return 0;
}
static int dp83tg720_probe(struct phy_device *phydev)
{
+ struct dp83tg720_priv *priv;
+
+ priv = xzalloc(sizeof(*priv));
+
+ phydev->priv = priv;
phydev->polling_interval = DP83TG720S_POLL_TIMEOUT_MS * MSECOND;
return 0;
--
2.39.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH v1] net: phy: dp83tg720: Decouple PHY reset frequency from link polling interval
2024-06-14 12:51 [PATCH v1] net: phy: dp83tg720: Decouple PHY reset frequency from link polling interval Oleksij Rempel
@ 2024-06-18 6:50 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2024-06-18 6:50 UTC (permalink / raw)
To: barebox, Oleksij Rempel
On Fri, 14 Jun 2024 14:51:17 +0200, Oleksij Rempel wrote:
> Reduce PHY reset frequency to allow for more frequent link polling in
> certain cases. This is necessary to ensure barebox can establish a link on
> "ifup -a".
>
>
Applied, thanks!
[1/1] net: phy: dp83tg720: Decouple PHY reset frequency from link polling interval
https://git.pengutronix.de/cgit/barebox/commit/?id=eee174c530b0 (link may not be stable)
Best regards,
--
Sascha Hauer <s.hauer@pengutronix.de>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-06-18 6:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-14 12:51 [PATCH v1] net: phy: dp83tg720: Decouple PHY reset frequency from link polling interval Oleksij Rempel
2024-06-18 6:50 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox