From: xuanqiang.luo@linux.dev
To: netdev@vger.kernel.org, andrew@lunn.ch, kuba@kernel.org,
richardcochran@gmail.com, hkallweit1@gmail.com
Cc: linux@armlinux.org.uk, davem@davemloft.net, edumazet@google.com,
pabeni@redhat.com, maxime.chevallier@bootlin.com,
luoxuanqiang@kylinos.cn
Subject: [PATCH net v4 4/4] net: phy: dp83640: fix per-bus clock lifetime
Date: Fri, 7 Aug 2026 15:07:29 +0800 [thread overview]
Message-ID: <20260807070729.12545-5-xuanqiang.luo@linux.dev> (raw)
In-Reply-To: <20260807070729.12545-1-xuanqiang.luo@linux.dev>
From: Xuanqiang Luo <luoxuanqiang@kylinos.cn>
Commit 42e2a9e11a1d ("net: phy: dp83640: improve phydev and driver
removal handling") moved per-bus clock cleanup from module exit to the
remove path. This leaves two lifetime problems.
dp83640_clock_get_bus() publishes a newly allocated clock before the
driver allocates its per-PHY data and registers the PTP clock. If either
operation fails, no PHY is bound and the remove callback cannot release
the clock, leaking the clock and the MII bus device reference.
The remove path can also free a clock after dropping clock_lock. A
concurrent probe may already have found the clock under
phyter_clocks_lock and be waiting for clock_lock, allowing it to acquire
a freed mutex and access the freed clock.
Use the PHY package infrastructure for the per-bus clock. The package
table is scoped to each MII bus and holds the shared object until the
last joined PHY leaves. Serialize the one-time clock initialization with
the package lock because phy_package_probe_once() elects an initializer
but does not wait for initialization to finish.
Manage both the package reference and the per-PHY state with devres.
This is needed because dp83640_probe() may succeed before later PHY core
initialization fails, and the driver remove callback is not called for
that failure. Register the per-PHY cleanup action after the package
reference so probe unwinding first unregisters the PTP clock or removes
the PHY from the clock list, then releases the shared clock. Let devres
run the same action on normal driver detach.
Fixes: 42e2a9e11a1d ("net: phy: dp83640: improve phydev and driver removal handling")
Signed-off-by: Xuanqiang Luo <luoxuanqiang@kylinos.cn>
---
drivers/net/phy/dp83640.c | 172 ++++++++++++++------------------------
drivers/ptp/Kconfig | 1 +
2 files changed, 65 insertions(+), 108 deletions(-)
diff --git a/drivers/net/phy/dp83640.c b/drivers/net/phy/dp83640.c
index 7aa5cf0a7bb03..543f63eac9caf 100644
--- a/drivers/net/phy/dp83640.c
+++ b/drivers/net/phy/dp83640.c
@@ -8,6 +8,7 @@
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/crc32.h>
+#include <linux/device/devres.h>
#include <linux/ethtool.h>
#include <linux/kernel.h>
#include <linux/list.h>
@@ -21,6 +22,7 @@
#include <linux/ptp_clock_kernel.h>
#include "dp83640_reg.h"
+#include "phylib.h"
#define DP83640_PHY_ID 0x20005ce1
#define PAGESEL 0x13
@@ -128,10 +130,6 @@ struct dp83640_private {
};
struct dp83640_clock {
- /* keeps the instance in the 'phyter_clocks' list */
- struct list_head list;
- /* we create one clock instance per MII bus */
- struct mii_bus *bus;
/* protects extended registers from concurrent access */
struct mutex extreg_lock;
/* remembers which page was last selected */
@@ -208,10 +206,6 @@ static void dp83640_gpio_defaults(struct ptp_pin_desc *pd)
}
}
-/* a list of clocks and a mutex to protect it */
-static LIST_HEAD(phyter_clocks);
-static DEFINE_MUTEX(phyter_clocks_lock);
-
static void rx_timestamp_work(struct work_struct *work);
/* extended register access functions */
@@ -955,10 +949,8 @@ static void decode_status_frame(struct dp83640_private *dp83640,
}
}
-static void dp83640_clock_init(struct dp83640_clock *clock, struct mii_bus *bus)
+static void dp83640_clock_init(struct dp83640_clock *clock)
{
- INIT_LIST_HEAD(&clock->list);
- clock->bus = bus;
mutex_init(&clock->extreg_lock);
mutex_init(&clock->clock_lock);
INIT_LIST_HEAD(&clock->phylist);
@@ -982,10 +974,6 @@ static void dp83640_clock_init(struct dp83640_clock *clock, struct mii_bus *bus)
clock->caps.verify = ptp_dp83640_verify;
/* Initialize the runtime pin configuration from gpio_tab. */
dp83640_gpio_defaults(clock->caps.pin_config);
- /*
- * Get a reference to this bus instance.
- */
- get_device(&bus->dev);
}
static int choose_this_phy(struct dp83640_clock *clock,
@@ -1000,51 +988,6 @@ static int choose_this_phy(struct dp83640_clock *clock,
return 0;
}
-static struct dp83640_clock *dp83640_clock_get(struct dp83640_clock *clock)
-{
- if (clock)
- mutex_lock(&clock->clock_lock);
- return clock;
-}
-
-/*
- * Look up and lock a clock by bus instance.
- * If there is no clock for this bus, then create it first.
- */
-static struct dp83640_clock *dp83640_clock_get_bus(struct mii_bus *bus)
-{
- struct dp83640_clock *clock = NULL, *tmp;
- struct list_head *this;
-
- mutex_lock(&phyter_clocks_lock);
-
- list_for_each(this, &phyter_clocks) {
- tmp = list_entry(this, struct dp83640_clock, list);
- if (tmp->bus == bus) {
- clock = tmp;
- break;
- }
- }
- if (clock)
- goto out;
-
- clock = kzalloc_obj(struct dp83640_clock);
- if (!clock)
- goto out;
-
- dp83640_clock_init(clock, bus);
- list_add_tail(&clock->list, &phyter_clocks);
-out:
- mutex_unlock(&phyter_clocks_lock);
-
- return dp83640_clock_get(clock);
-}
-
-static void dp83640_clock_put(struct dp83640_clock *clock)
-{
- mutex_unlock(&clock->clock_lock);
-}
-
static int dp83640_soft_reset(struct phy_device *phydev)
{
int ret;
@@ -1392,22 +1335,70 @@ static int dp83640_ts_info(struct mii_timestamper *mii_ts,
return 0;
}
-static int dp83640_probe(struct phy_device *phydev)
+static void dp83640_phy_release(void *data)
{
+ struct dp83640_private *dp83640 = data;
+ struct dp83640_private *tmp;
+ struct list_head *this, *next;
struct dp83640_clock *clock;
+ struct phy_device *phydev;
+
+ clock = dp83640->clock;
+ phydev = dp83640->phydev;
+ phydev->mii_ts = NULL;
+ cancel_delayed_work_sync(&dp83640->ts_work);
+ skb_queue_purge(&dp83640->rx_queue);
+ skb_queue_purge(&dp83640->tx_queue);
+
+ mutex_lock(&clock->clock_lock);
+ if (dp83640 == clock->chosen) {
+ ptp_clock_unregister(clock->ptp_clock);
+ clock->ptp_clock = NULL;
+ clock->chosen = NULL;
+ } else {
+ list_for_each_safe(this, next, &clock->phylist) {
+ tmp = list_entry(this, struct dp83640_private, list);
+ if (tmp == dp83640) {
+ list_del_init(&tmp->list);
+ break;
+ }
+ }
+ }
+ mutex_unlock(&clock->clock_lock);
+
+ phydev->default_timestamp = false;
+ phydev->priv = NULL;
+ kfree(dp83640);
+}
+
+static int dp83640_probe(struct phy_device *phydev)
+{
struct dp83640_private *dp83640;
- int err = -ENOMEM, i;
+ struct dp83640_clock *clock;
+ int err, i;
if (phydev->mdio.addr == BROADCAST_ADDR)
return 0;
- clock = dp83640_clock_get_bus(phydev->mdio.bus);
- if (!clock)
+ err = devm_phy_package_join(&phydev->mdio.dev, phydev,
+ BROADCAST_ADDR, sizeof(*clock));
+ if (err)
goto no_clock;
+ clock = phy_package_get_priv(phydev);
+ /* Ensure other PHY probes wait for shared clock initialization. */
+ phy_package_lock(phydev);
+ if (phy_package_probe_once(phydev))
+ dp83640_clock_init(clock);
+ phy_package_unlock(phydev);
+
+ mutex_lock(&clock->clock_lock);
+
dp83640 = kzalloc_obj(struct dp83640_private);
- if (!dp83640)
+ if (!dp83640) {
+ err = -ENOMEM;
goto no_memory;
+ }
dp83640->phydev = phydev;
dp83640->mii_ts.rxtstamp = dp83640_rxtstamp;
@@ -1444,7 +1435,13 @@ static int dp83640_probe(struct phy_device *phydev)
} else
list_add_tail(&dp83640->list, &clock->phylist);
- dp83640_clock_put(clock);
+ mutex_unlock(&clock->clock_lock);
+
+ err = devm_add_action_or_reset(&phydev->mdio.dev,
+ dp83640_phy_release, dp83640);
+ if (err)
+ return err;
+
return 0;
no_register:
@@ -1455,60 +1452,19 @@ static int dp83640_probe(struct phy_device *phydev)
phydev->priv = NULL;
kfree(dp83640);
no_memory:
- dp83640_clock_put(clock);
+ mutex_unlock(&clock->clock_lock);
no_clock:
return err;
}
static void dp83640_remove(struct phy_device *phydev)
{
- struct dp83640_clock *clock;
- struct list_head *this, *next;
- struct dp83640_private *tmp, *dp83640 = phydev->priv;
- bool remove_clock = false;
-
if (phydev->mdio.addr == BROADCAST_ADDR)
return;
phydev->mii_ts = NULL;
enable_status_frames(phydev, false);
- cancel_delayed_work_sync(&dp83640->ts_work);
-
- skb_queue_purge(&dp83640->rx_queue);
- skb_queue_purge(&dp83640->tx_queue);
-
- clock = dp83640_clock_get(dp83640->clock);
-
- if (dp83640 == clock->chosen) {
- ptp_clock_unregister(clock->ptp_clock);
- clock->chosen = NULL;
- } else {
- list_for_each_safe(this, next, &clock->phylist) {
- tmp = list_entry(this, struct dp83640_private, list);
- if (tmp == dp83640) {
- list_del_init(&tmp->list);
- break;
- }
- }
- }
-
- if (!clock->chosen && list_empty(&clock->phylist))
- remove_clock = true;
-
- dp83640_clock_put(clock);
- kfree(dp83640);
-
- if (remove_clock) {
- mutex_lock(&phyter_clocks_lock);
- list_del(&clock->list);
- mutex_unlock(&phyter_clocks_lock);
-
- mutex_destroy(&clock->extreg_lock);
- mutex_destroy(&clock->clock_lock);
- put_device(&clock->bus->dev);
- kfree(clock);
- }
}
static struct phy_driver dp83640_driver[] = {
diff --git a/drivers/ptp/Kconfig b/drivers/ptp/Kconfig
index b93640ca08b72..feb50f8cc406a 100644
--- a/drivers/ptp/Kconfig
+++ b/drivers/ptp/Kconfig
@@ -78,6 +78,7 @@ config DP83640_PHY
depends on PHYLIB
depends on PTP_1588_CLOCK
select CRC32
+ select PHY_PACKAGE
help
Supports the DP83640 PHYTER with IEEE 1588 features.
--
2.43.0
next prev parent reply other threads:[~2026-08-07 7:09 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-07 7:07 [PATCH net v4 0/4] net: phy: dp83640: fix shared clock lifetime and probe error cleanup xuanqiang.luo
2026-08-07 7:07 ` [PATCH net v4 1/4] net: phy: add PHY package locking helpers xuanqiang.luo
2026-08-07 13:36 ` Andrew Lunn
2026-08-07 7:07 ` [PATCH net v4 2/4] net: phy: dp83640: embed pin configuration in clock xuanqiang.luo
2026-08-07 13:38 ` Andrew Lunn
2026-08-07 7:07 ` [PATCH net v4 3/4] net: phy: dp83640: clear state after PTP registration failure xuanqiang.luo
2026-08-07 13:42 ` Andrew Lunn
2026-08-07 7:07 ` xuanqiang.luo [this message]
2026-08-07 13:59 ` [PATCH net v4 4/4] net: phy: dp83640: fix per-bus clock lifetime Andrew Lunn
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=20260807070729.12545-5-xuanqiang.luo@linux.dev \
--to=xuanqiang.luo@linux.dev \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=hkallweit1@gmail.com \
--cc=kuba@kernel.org \
--cc=linux@armlinux.org.uk \
--cc=luoxuanqiang@kylinos.cn \
--cc=maxime.chevallier@bootlin.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=richardcochran@gmail.com \
/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