From: Maxime Chevallier <maxime.chevallier@bootlin.com>
To: Wei Fang <wei.fang@nxp.com>,
andrew@lunn.ch, hkallweit1@gmail.com, linux@armlinux.org.uk,
davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com, florian.fainelli@broadcom.com,
xiaolei.wang@windriver.com, quic_abchauha@quicinc.com,
quic_sarohasa@quicinc.com
Cc: imx@lists.linux.dev, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH net] net: phy: add device link between MAC device and MDIO device
Date: Thu, 29 Jan 2026 10:10:12 +0100 [thread overview]
Message-ID: <7df10272-a06b-4509-ab8a-519d43944424@bootlin.com> (raw)
In-Reply-To: <20260126104409.1070403-1-wei.fang@nxp.com>
Hi
[...]
>
> diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
> index 81984d4ebb7c..d5ac7506fe39 100644
> --- a/drivers/net/phy/phy_device.c
> +++ b/drivers/net/phy/phy_device.c
> @@ -1768,12 +1768,21 @@ int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
>
> /**
> * If the external phy used by current mac interface is managed by
> - * another mac interface, so we should create a device link between
> - * phy dev and mac dev.
> + * another MDIO controller, which means that the MAC and MDIO are
> + * separated devices, then we should create a device link between
> + * the MAC device and the MDIO device.
> */
I was confused by the use of the "MDIO device" terminology here, which
refers to a device sitting on an mdio bus, such as a PHY. I think though
that what you actually refer to is the MDIO controller itself, right ?
> - if (dev && phydev->mdio.bus->parent && dev->dev.parent != phydev->mdio.bus->parent)
> - phydev->devlink = device_link_add(dev->dev.parent, &phydev->mdio.dev,
> - DL_FLAG_PM_RUNTIME | DL_FLAG_STATELESS);
> + if (dev && phydev->mdio.bus->parent &&
> + dev->dev.parent != phydev->mdio.bus->parent) {
> + if (!device_link_add(dev->dev.parent, phydev->mdio.bus->parent,
> + DL_FLAG_PM_RUNTIME |
> + DL_FLAG_AUTOREMOVE_SUPPLIER)) {
Don't we have the same problem with SFP ? The struct mii_bus for SFP
PHYs also completely disappears when you remove the module.
That being said, I ran some tests with SFP and this patch, and the
netdev actually didn't dissapear under my feet.
I'm a total noob with fw_devlink, but I can see there seems to already
be a link between MAC devices and the associated SFP bus :
on cyclone V :
# ls /sys/class/devlink
[...]
platform:sfp--platform:ff702000.ethernet
on macchiatobin :
# ls /sys/class/devlink
[...]
platform:sfp-eth3--platform:f4000000.ethernet
So I guess this is what's preventing the netdev from going away.
Now, these seems to be automagically populated based on DT, but I don't
know if it also works with non-DT platforms. If this is DT-specific,
then I guess we still can't use DL_FLAG_AUTOREMOVE_SUPPLIER.
Maxime
next prev parent reply other threads:[~2026-01-29 9:10 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-26 10:44 [PATCH net] net: phy: add device link between MAC device and MDIO device Wei Fang
2026-01-26 14:13 ` Andrew Lunn
2026-01-26 14:19 ` Russell King (Oracle)
2026-01-27 3:01 ` Wei Fang
2026-01-29 4:15 ` Jakub Kicinski
2026-01-29 10:06 ` Russell King (Oracle)
2026-01-30 3:41 ` Wei Fang
2026-01-30 8:29 ` Maxime Chevallier
2026-01-30 8:45 ` Wei Fang
2026-01-30 9:12 ` Maxime Chevallier
2026-01-30 10:09 ` Wei Fang
2026-01-29 9:10 ` Maxime Chevallier [this message]
2026-01-29 10:00 ` Wei Fang
2026-01-29 10:18 ` Maxime Chevallier
2026-01-29 10:47 ` Wei Fang
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=7df10272-a06b-4509-ab8a-519d43944424@bootlin.com \
--to=maxime.chevallier@bootlin.com \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=florian.fainelli@broadcom.com \
--cc=hkallweit1@gmail.com \
--cc=imx@lists.linux.dev \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=quic_abchauha@quicinc.com \
--cc=quic_sarohasa@quicinc.com \
--cc=wei.fang@nxp.com \
--cc=xiaolei.wang@windriver.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