From: Daniel Golle <daniel@makrotopia.org>
To: Vladimir Oltean <olteanv@gmail.com>
Cc: Andrew Lunn <andrew@lunn.ch>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Heiner Kallweit <hkallweit1@gmail.com>,
Russell King <linux@armlinux.org.uk>,
Simon Horman <horms@kernel.org>,
netdev@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, Frank Wunderlich <frankwu@gmx.de>,
Chad Monroe <chad@monroe.io>,
Cezary Wilmanski <cezary.wilmanski@adtran.com>,
Liang Xu <lxu@maxlinear.com>, John Crispin <john@phrozen.org>
Subject: Re: [PATCH net-next v14 4/4] net: dsa: add basic initial driver for MxL862xx switches
Date: Sun, 8 Feb 2026 00:06:40 +0000 [thread overview]
Message-ID: <aYfTkEg4ijo_qjqJ@makrotopia.org> (raw)
In-Reply-To: <20260207215902.mtsg43zeoadqqfz5@skbuf>
On Sat, Feb 07, 2026 at 11:59:02PM +0200, Vladimir Oltean wrote:
> On Sat, Feb 07, 2026 at 03:07:27AM +0000, Daniel Golle wrote:
> > +/* PHY access via firmware relay */
> > +static int mxl862xx_phy_read_mmd(struct mxl862xx_priv *priv, int port,
> > + int devadd, int reg)
> > +{
> > + struct mdio_relay_data param = {
> > + .phy = port,
> > + .mmd = devadd,
> > + .reg = cpu_to_le16(reg),
> > + };
> > + int ret;
> > +
> > + ret = MXL862XX_API_READ(priv, INT_GPHY_READ, param);
> > + if (ret)
> > + return ret;
> > +
> > + return le16_to_cpu(param.data);
> > +}
> > +
> > +static int mxl862xx_phy_write_mmd(struct mxl862xx_priv *priv, int port,
> > + int devadd, int reg, u16 data)
> > +{
> > + struct mdio_relay_data param = {
> > + .phy = port,
> > + .mmd = devadd,
> > + .reg = cpu_to_le16(reg),
> > + .data = cpu_to_le16(data),
> > + };
> > +
> > + return MXL862XX_API_WRITE(priv, INT_GPHY_WRITE, param);
> > +}
> > +
> > +static int mxl862xx_phy_read_mii_bus(struct mii_bus *bus, int port, int regnum)
> > +{
> > + return mxl862xx_phy_read_mmd(bus->priv, port, 0, regnum);
> > +}
> > +
> > +static int mxl862xx_phy_write_mii_bus(struct mii_bus *bus, int port,
> > + int regnum, u16 val)
> > +{
> > + return mxl862xx_phy_write_mmd(bus->priv, port, 0, regnum, val);
> > +}
> > +
> > +static int mxl862xx_phy_read_c45_mii_bus(struct mii_bus *bus, int port,
> > + int devadd, int regnum)
> > +{
> > + return mxl862xx_phy_read_mmd(bus->priv, port, devadd, regnum);
> > +}
> > +
> > +static int mxl862xx_phy_write_c45_mii_bus(struct mii_bus *bus, int port,
> > + int devadd, int regnum, u16 val)
> > +{
> > + return mxl862xx_phy_write_mmd(bus->priv, port, devadd, regnum, val);
> > +}
>
> You took inspiration from the wrong place with the mii_bus ops prototypes,
> specifically with the "int port" argument.
>
> The second argument does not hold the port, it holds the PHY address.
> I.e. in this case:
> port@6 {
> reg = <6>;
> phy-handle = <&phy5>;
> phy-mode = "internal";
> };
> phy5: ethernet-phy@5 {
> reg = <5>;
> };
>
> "int port" is 5, not 6.
>
> Your source of inspiration are the prototypes of an mii_bus used as
> ds->user_mii_bus. We have a different set of requirements there, because
> ds->user_mii_bus exists for the case where the PHY is not described in
> the device tree, so the port index is given as argument and the
> user_mii_bus is responsible for internally translating the port index to
> a PHY address.
>
> So while the use of "int port" as argument name for these operations is
> justifiable in some cases, it is not applicable to this driver, and will
> be a pitfall for anyone who has to modify or debug this code.
Ack. While not completely correct from the beginning I should have
addressed that and changed the parameter to 'int addr' when I started to
count physical ports from 0 and no longer hide the microcontroller --
from that moment on the PHY address and the port address are no longer
equal.
I will post a follow-up series to address this and also the removal of
the 'label' property from the DT binding example once this has been
merged. Both cases don't justify a "Fixes:"-tag though, but I'll just
try to be fast, so both can still be applied before net-next closes.
next prev parent reply other threads:[~2026-02-08 0:06 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-07 3:06 [PATCH net-next v14 0/4] net: dsa: initial support for MaxLinear MxL862xx switches Daniel Golle
2026-02-07 3:07 ` [PATCH net-next v14 1/4] dt-bindings: net: dsa: add MaxLinear MxL862xx Daniel Golle
2026-02-07 21:48 ` Vladimir Oltean
2026-02-07 3:07 ` [PATCH net-next v14 2/4] net: dsa: add tag format for MxL862xx switches Daniel Golle
2026-02-07 3:07 ` [PATCH net-next v14 3/4] net: mdio: add unlocked mdiodev C45 bus accessors Daniel Golle
2026-02-07 3:07 ` [PATCH net-next v14 4/4] net: dsa: add basic initial driver for MxL862xx switches Daniel Golle
2026-02-07 21:59 ` Vladimir Oltean
2026-02-08 0:06 ` Daniel Golle [this message]
2026-02-07 21:47 ` [PATCH net-next v14 0/4] net: dsa: initial support for MaxLinear " Vladimir Oltean
2026-02-11 9:49 ` Paolo Abeni
2026-02-11 9:57 ` Vladimir Oltean
2026-02-11 10:01 ` Daniel Golle
2026-02-11 10:09 ` Paolo Abeni
2026-02-11 11:10 ` patchwork-bot+netdevbpf
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=aYfTkEg4ijo_qjqJ@makrotopia.org \
--to=daniel@makrotopia.org \
--cc=andrew@lunn.ch \
--cc=cezary.wilmanski@adtran.com \
--cc=chad@monroe.io \
--cc=conor+dt@kernel.org \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=edumazet@google.com \
--cc=frankwu@gmx.de \
--cc=hkallweit1@gmail.com \
--cc=horms@kernel.org \
--cc=john@phrozen.org \
--cc=krzk+dt@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=lxu@maxlinear.com \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=pabeni@redhat.com \
--cc=robh@kernel.org \
/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