Re: [PATCH net-next 0/8] Improvements for RealTek 2.5G Ethernet PHYs

From: Russell King (Oracle)
Date: Thu May 11 2023 - 14:10:06 EST


On Thu, May 11, 2023 at 06:30:57PM +0100, Russell King (Oracle) wrote:
> On Thu, May 11, 2023 at 07:14:48PM +0200, Daniel Golle wrote:
> > On Thu, May 11, 2023 at 02:28:15AM +0200, Andrew Lunn wrote:
> > > On Thu, May 11, 2023 at 12:53:22AM +0200, Daniel Golle wrote:
> > > > Improve support for RealTek 2.5G Ethernet PHYs (RTL822x series).
> > > > The PHYs can operate with Clause-22 and Clause-45 MDIO.
> > > >
> > > > When using Clause-45 it is desireable to avoid rate-adapter mode and
> > > > rather have the MAC interface mode follow the PHY speed. The PHYs
> > > > support 2500Base-X for 2500M, and Cisco SGMII for 1000M/100M/10M.
> > >
> > > I don't see what clause-45 has to do with this. The driver knows that
> > > both C22 and C45 addresses spaces exists in the hardware. It can do
> > > reads/writes on both. If the bus master does not support C45, C45 over
> > > C22 will be performed by the core.
> >
> > My understanding is/was that switching the SerDes interface mode is only
> > intended with Clause-45 PHYs, derived from this comment and code:
> >
> > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/net/phy/phylink.c#n1661
>
> It's only because:
>
> 1) Clause 22 PHYs haven't done this.
> 2) There is currently no way to know what set of interfaces a PHY would
> make use of - and that affects what ethtool linkmodes are possible.
>
> What you point to is nothing more than a hack to make Clause 45 PHYs
> work with the code that we currently have.
>
> To sort this properly, we need PHY drivers to tell phylink what
> interfaces they are going to switch between once they have been
> attached to the network interface. This is what these patches in my
> net-queue branch are doing:
>
> net: phy: add possible interfaces
> net: phy: marvell10g: fill in possible_interfaces
> net: phy: bcm84881: fill in possible_interfaces
> net: phylink: split out PHY validation from phylink_bringup_phy()
> net: phylink: validate only used interfaces for c45 PHYs
>
> Why only C45 PHYs again? Because the two PHY drivers that I've added
> support for "possible_interfaces" to are both C45. There's no reason
> we can't make that work for C22 PHYs as well.
>
> We could probably make it work for C22 PHYs out of the box by setting
> the appropriate bit for the supplied interface in "possible_interfaces"
> inside phy_attach_direct() after the call to phy_init_hw() if
> "possible_interfaces" is still empty, which means that if a PHY driver
> isn't updated to setup "possible_interfaces" then we get basically
> whatever interface mode we're attaching with there.
>
> There may be a problem if phy_attach_direct() gets called with
> PHY_INTERFACE_MODE_NA (which I believe is possible with DSA.)

Maybe something like the below on top of those patches I've pointed
to above? Note that this requires all MAC users of phylink to fill
in the supported_interfaces bitmap. One of the other patches in my
net-queue is:

net: phylink: require supported_interfaces to be filled

which comes before the above patches. I think that's a reasonable
expectation today but needs testing and review of all users (esp.
the DSA drivers.)

diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c
index af070be717ec..1cfa101960b9 100644
--- a/drivers/net/phy/phylink.c
+++ b/drivers/net/phy/phylink.c
@@ -1787,8 +1787,26 @@ static int phylink_validate_phy(struct phylink *pl, struct phy_device *phy,
*/
state->rate_matching = phy_get_rate_matching(phy, state->interface);

- /* If this is a clause 22 PHY or is using rate matching, it only
- * operates in a single mode.
+ /* If the PHY provides a bitmap of the interfaces it will be using,
+ * use this to validate the PHY. This can be used for both clause 22
+ * and clause 45 PHYs.
+ */
+ if (!phy_interface_empty(phy->possible_interfaces)) {
+ /* Calculate the union of the interfaces the PHY supports in
+ * its configured state, and the host's supported interfaces.
+ * We never want an interface that isn't supported by the host.
+ */
+ phy_interface_and(interfaces, phy->possible_interfaces,
+ pl->config->supported_interfaces);
+
+ return phylink_validate_mask(pl, mode, supported, state,
+ interfaces);
+ }
+
+ /* If the PHY doesn't provide it a bitmap of the interfaces it will
+ * be using, or is a traditional clause 22 PHY driver that doesn't
+ * set ->possible_interfaces, or if we're using rate matching, then
+ * we're operating in a single mode.
*/
if (!phy->is_c45 || state->rate_matching != RATE_MATCH_NONE)
return phylink_validate(pl, mode, supported, state);
@@ -1797,28 +1815,18 @@ static int phylink_validate_phy(struct phylink *pl, struct phy_device *phy,
* modes according to the negotiated media speed. For example, the
* interface may switch between 10GBASE-R, 5GBASE-R, 2500BASE-X and
* SGMII.
+ *
+ * If we're operating in such a mode, but haven't been provided a
+ * possible_interfaces bitmap, then we need to validate all possible
+ * interfaces.
*/
-
- /* Backwards compatibility for those MAC drivers that don't set
- * their supported_interfaces, or PHY drivers that don't set
- * their possible_interfaces.
- */
- if (phy_interface_empty(phy->possible_interfaces) &&
+ if (phy->is_c45 &&
state->interface != PHY_INTERFACE_MODE_RXAUI &&
state->interface != PHY_INTERFACE_MODE_XAUI &&
- state->interface != PHY_INTERFACE_MODE_USXGMII) {
+ state->interface != PHY_INTERFACE_MODE_USXGMII)
state->interface = PHY_INTERFACE_MODE_NA;
- return phylink_validate(pl, mode, supported, state);
- }
-
- /* Calculate the union of the interfaces the PHY supports in
- * its configured state, and the host's supported interfaces.
- * We never want an interface that isn't supported by the host.
- */
- phy_interface_and(interfaces, phy->possible_interfaces,
- pl->config->supported_interfaces);

- return phylink_validate_mask(pl, mode, supported, state, interfaces);
+ return phylink_validate(pl, mode, supported, state);
}

static int phylink_bringup_phy(struct phylink *pl, struct phy_device *phy,
diff --git a/include/linux/phy.h b/include/linux/phy.h
index 4e0db4a14f30..b54aa9e8c122 100644
--- a/include/linux/phy.h
+++ b/include/linux/phy.h
@@ -178,6 +178,11 @@ static inline bool phy_interface_empty(const unsigned long *intf)
return bitmap_empty(intf, PHY_INTERFACE_MODE_MAX);
}

+static inline unsigned int phy_interface_weight(const unsigned long *intf)
+{
+ return bitmap_weight(intf, PHY_INTERFACE_MODE_MAX);
+}
+
static inline void phy_interface_and(unsigned long *dst, const unsigned long *a,
const unsigned long *b)
{

--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!