[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241220201506.2791940-1-maxime.chevallier@bootlin.com>
Date: Fri, 20 Dec 2024 21:14:59 +0100
From: Maxime Chevallier <maxime.chevallier@...tlin.com>
To: davem@...emloft.net
Cc: Maxime Chevallier <maxime.chevallier@...tlin.com>,
netdev@...r.kernel.org,
linux-kernel@...r.kernel.org,
thomas.petazzoni@...tlin.com,
Andrew Lunn <andrew@...n.ch>,
Jakub Kicinski <kuba@...nel.org>,
Eric Dumazet <edumazet@...gle.com>,
Paolo Abeni <pabeni@...hat.com>,
Russell King <linux@...linux.org.uk>,
linux-arm-kernel@...ts.infradead.org,
Christophe Leroy <christophe.leroy@...roup.eu>,
Herve Codina <herve.codina@...tlin.com>,
Florian Fainelli <f.fainelli@...il.com>,
Heiner Kallweit <hkallweit1@...il.com>,
Vladimir Oltean <vladimir.oltean@....com>,
Köry Maincent <kory.maincent@...tlin.com>,
Marek Behún <kabel@...nel.org>,
Oleksij Rempel <o.rempel@...gutronix.de>,
Nicolò Veronese <nicveronese@...il.com>,
Simon Horman <horms@...nel.org>,
mwojtas@...omium.org,
Antoine Tenart <atenart@...nel.org>
Subject: [PATCH net-next RFC 0/5] net: phy: Introduce a port representation
Hello everyone,
This is a long overdue series to kick-off the introduction of a better representation
of front-facing ports for ethernet interfaces.
First, a short disclaimer. This series is RFC, and there are quite a lot of
shortcomings :
- There's no DT binding although this series adds a generic representation of
ports
- The port representation is in a minimal form
- No SFP support is included, but it will be required for that series to come
out of RFC as we can't gracefully handle multi-port interfaces without it.
These shortcomigs come from timing constraints, but also because I'd like to
start discussing that topic with some code as a basis.
For now, the only representation we have about the physical ports of an interface
come from the 'port' field (PORT_FIBRE, PORT_TP, PORT_MII, etc.), the presence or
not of an SFP module and the linkmodes reported by the ethtol ksettings ops. This
isn't enough to get a good idea of what the actual interface with the outside world
looks like.
The end-goal of the work this series is a part of is to get support for multi-port
interfaces. My end use-case has 2 ports, each driven by a dedicated PHY, but this
also applies to dual-port PHYs.
The current series introduces the object "struct phy_port". The naming may be
improved, as I think we could consider supporting port representation without
depending on phylib (not the case in this RFC). For now, not only do we integrate
that work in phylib, but only PHY-driven ports are supported.
In some situations, having a good representation of the physical port in devicetree
proves to be quite useful. We're seeing vendor properties to address the lack of
port representation such as micrel,fiber-mode or ti,fiber-mode, but there are needs
for more (glitchy straps that detect fiber mode on a PHY connected to copper,
RJ45 ports connected with 2 lanes only, ...).
As I said this RFC has no binding, sorry about that, but let's take a look at
the proposed DT syntax :
Example 1 : PHY with RJ45 connected with 2 lanes only
&mdio {
ge_phy: ethernet-phy@0 {
reg = <0>;
mdi {
port@0 {
media = "BaseT",
lanes = <2>;
};
};
};
};
Example 2 : PHY with a 100BaseFX port, without SFP
&mdio {
fiber-phy: ethernet-phy@0 {
reg = <0>;
mdi {
port@0 {
media = "BaseF",
lanes = <1>;
};
};
};
};
These ports may even be used to specify PSE-PD information for PoE ports that
are drivern by a dedicated PoE controller sitting in-between the PHY and the
connector :
&mdio {
ge_phy: ethernet-phy@0 {
reg = <0>;
mdi {
port@0 {
media = "BaseT",
lanes = <4>;
pse = <&pse1>;
};
};
};
};
The ports are initialized using the following sequence :
1: The PHY driver's probe() function indicated the max number of ports the device
can control
2: We parse the devicetree to find generic port representations
3: If we don't have at least one port from DT, we create one
4: We call the phy's .attach_port() for each port created so far. This allows
the phy driver either to take action based on the generic port devicetree
indications, or to populate the port information based on straps and
vendor-specific DT properties (think micrel,fiber-mode and similar)
5: If the ports are still not initialized (no .attach_port, no generic DT), then
we use snesible default value from what the PHY's supported modes.
6: We reconstruct the PHY's supported field in case there are limitations from the
port (2 lanes on BaseT for example). This last step will need to be changed
when SFP gets added.
So, the current work is only about init. The next steps for that work are :
- Introduce phy_port_ops, including a .configure() and a .read_status() to get
proper support for multi-port PHYs. This also means maintaining a list of
advertising/lp_advertising modes for each port.
- Add SFP support. It's a tricky part, the way I see that and have prototyped is
by representing the SFP cage itself as a port, as well as the SFP module's port.
ports therefore become chainable.
- Add the ability to list the ports in userspace.
Prototype work for the above parts exist, but due to lack of time I couldn't get
them polished enough for inclusion in that RFC.
Let me know if you see this going in the right direction, I'm really all ears
for suggestions on this, it's quite difficult to make sure no current use-case
breaks and no heavy rework is needed in PHY drivers.
Patches 1, 2 and 3 are preparatory work for the mediums representation. Patch 4
introduces the phy_port and patch 5 shows an example of usage in the dp83822 phy.
Thanks,
Maxime
Maxime Chevallier (5):
net: ethtool: common: Make BaseT a 4-lanes mode
net: ethtool: Introduce ETHTOOL_LINK_MEDIUM_* values
net: ethtool: Export the link_mode_params definitions
net: phy: Introduce PHY ports representation
net: phy: dp83822: Add support for phy_port representation
drivers/net/phy/Makefile | 2 +-
drivers/net/phy/dp83822.c | 60 +++++++----
drivers/net/phy/phy_device.c | 167 +++++++++++++++++++++++++++++
drivers/net/phy/phy_port.c | 159 ++++++++++++++++++++++++++++
include/linux/ethtool.h | 62 +++++++++++
include/linux/phy.h | 31 ++++++
include/linux/phy_port.h | 69 ++++++++++++
net/ethtool/common.c | 197 +++++++++++++++++++----------------
net/ethtool/common.h | 7 --
9 files changed, 633 insertions(+), 121 deletions(-)
create mode 100644 drivers/net/phy/phy_port.c
create mode 100644 include/linux/phy_port.h
--
2.47.1
Powered by blists - more mailing lists