From: "Russell King (Oracle)" <linux@armlinux.org.uk>
To: Andrew Lunn <andrew@lunn.ch>
Cc: Daniel Golle <daniel@makrotopia.org>,
Vladimir Oltean <olteanv@gmail.com>,
"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>,
Simon Horman <horms@kernel.org>,
netdev@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, Frank Wunderlich <frankwu@gmx.de>,
Avinash Jayaraman <ajayaraman@maxlinear.com>,
Bing tao Xu <bxu@maxlinear.com>, Liang Xu <lxu@maxlinear.com>,
Juraj Povazanec <jpovazanec@maxlinear.com>,
"Fanni (Fang-Yi) Chan" <fchan@maxlinear.com>,
"Benny (Ying-Tsan) Weng" <yweng@maxlinear.com>,
"Livia M. Rosu" <lrosu@maxlinear.com>,
John Crispin <john@phrozen.org>
Subject: Re: [PATCH RFC net-next 3/3] net: dsa: add basic initial driver for MxL862xx switches
Date: Wed, 3 Dec 2025 09:29:35 +0000 [thread overview]
Message-ID: <aTAC_xLUztl9ZHqT@shell.armlinux.org.uk> (raw)
In-Reply-To: <c6525467-2229-4941-803d-1be5efb431c3@lunn.ch>
On Wed, Dec 03, 2025 at 03:07:20AM +0100, Andrew Lunn wrote:
> > +/**
> > + * struct mxl862xx_ss_sp_tag
> > + * @pid: port ID (1~16)
> > + * @mask: bit value 1 to indicate valid field
> > + * 0 - rx
> > + * 1 - tx
> > + * 2 - rx_pen
> > + * 3 - tx_pen
> > + * @rx: RX special tag mode
> > + * 0 - packet does NOT have special tag and special tag is NOT inserted
> > + * 1 - packet does NOT have special tag and special tag is inserted
> > + * 2 - packet has special tag and special tag is NOT inserted
> > + * @tx: TX special tag mode
> > + * 0 - packet does NOT have special tag and special tag is NOT removed
> > + * 1 - packet has special tag and special tag is replaced
> > + * 2 - packet has special tag and special tag is NOT removed
> > + * 3 - packet has special tag and special tag is removed
> > + * @rx_pen: RX special tag info over preamble
> > + * 0 - special tag info inserted from byte 2 to 7 are all 0
> > + * 1 - special tag byte 5 is 16, other bytes from 2 to 7 are 0
> > + * 2 - special tag byte 5 is from preamble field, others are 0
> > + * 3 - special tag byte 2 to 7 are from preabmle field
> > + * @tx_pen: TX special tag info over preamble
> > + * 0 - disabled
> > + * 1 - enabled
> > + */
> > +struct mxl862xx_ss_sp_tag {
> > + u8 pid;
> > + u8 mask;
> > + u8 rx;
> > + u8 tx;
> > + u8 rx_pen;
> > + u8 tx_pen;
> > +} __packed;
> > +
> > +/**
> > + * enum mxl862xx_logical_port_mode - Logical port mode
> > + * @MXL862XX_LOGICAL_PORT_8BIT_WLAN: WLAN with 8-bit station ID
> > + * @MXL862XX_LOGICAL_PORT_9BIT_WLAN: WLAN with 9-bit station ID
> > + * @MXL862XX_LOGICAL_PORT_GPON: GPON OMCI context
> > + * @MXL862XX_LOGICAL_PORT_EPON: EPON context
> > + * @MXL862XX_LOGICAL_PORT_GINT: G.INT context
> > + * @MXL862XX_LOGICAL_PORT_OTHER: Others
> > + */
> > +enum mxl862xx_logical_port_mode {
> > + MXL862XX_LOGICAL_PORT_8BIT_WLAN = 0,
> > + MXL862XX_LOGICAL_PORT_9BIT_WLAN,
> > + MXL862XX_LOGICAL_PORT_GPON,
> > + MXL862XX_LOGICAL_PORT_EPON,
> > + MXL862XX_LOGICAL_PORT_GINT,
> > + MXL862XX_LOGICAL_PORT_OTHER = 0xFF,
> > +};
> > +
> > +/**
> > + * struct mxl862xx_ctp_port_assignment - CTP Port Assignment/association with logical port
> > + * @logical_port_id: Logical Port Id. The valid range is hardware dependent
> > + * @first_ctp_port_id: First CTP Port ID mapped to above logical port ID
> > + * @number_of_ctp_port: Total number of CTP Ports mapped above logical port ID
> > + * @mode: See &enum mxl862xx_logical_port_mode
> > + * @bridge_port_id: Bridge ID (FID)
> > + */
> > +struct mxl862xx_ctp_port_assignment {
> > + u8 logical_port_id;
> > + __le16 first_ctp_port_id;
> > + __le16 number_of_ctp_port;
> > + enum mxl862xx_logical_port_mode mode;
> > + __le16 bridge_port_id;
> > +} __packed;
>
> Does the C standard define the size of an enum? Do you assume this is
> a byte?
It does not. Some architectures are allowed to choose the storage size
of enum depending on the range of values.
> > +static int mxl862xx_send_cmd(struct mxl862xx_priv *dev, u16 cmd, u16 size,
> > + s16 *presult)
> > +{
> > + int ret;
> > +
> > + ret = __mdiobus_c45_write(dev->bus, dev->sw_addr, MXL862XX_MMD_DEV,
> > + MXL862XX_MMD_REG_LEN_RET, size);
> > + if (ret)
> > + return ret;
> > +
> > + ret = __mdiobus_c45_write(dev->bus, dev->sw_addr, MXL862XX_MMD_DEV,
> > + MXL862XX_MMD_REG_CTRL, cmd | CTRL_BUSY_MASK);
> > + if (ret)
> > + return ret;
> > +
> > + ret = mxl862xx_busy_wait(dev);
> > + if (ret)
> > + return ret;
> > +
> > + ret = __mdiobus_c45_read(dev->bus, dev->sw_addr, MXL862XX_MMD_DEV,
> > + MXL862XX_MMD_REG_LEN_RET);
> > + if (ret < 0)
> > + return ret;
Error codes go via this path.
> > +
> > + *presult = ret;
Register values via this, and if the sign bit is set, *presult is
negative.
> > + ret = mxl862xx_send_cmd(priv, cmd, size, &result);
> > + if (ret < 0)
> > + goto out;
> > +
> > + if (result < 0) {
> > + ret = result;
> > + goto out;
> > + }
>
> If i'm reading mxl862xx_send_cmd() correct, result is the value of a
> register. It seems unlikely this is a Linux error code?
result here is the register value, and a negative value is the value
from the register. So I agree - this assigns a register value to
"ret" which gets promoted from s16 to int (sign extension) and thus
gets returned as a Linux error code. So yes, this doesn't seem right.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
next prev parent reply other threads:[~2025-12-03 9:29 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-02 23:37 [PATCH RFC net-next 0/3] net: dsa: initial support for MaxLinear MxL862xx switches Daniel Golle
2025-12-02 23:37 ` [PATCH RFC net-next 1/3] dt-bindings: net: dsa: add bindings for MaxLinear MxL862xx Daniel Golle
2025-12-02 23:37 ` [PATCH RFC net-next 2/3] net: dsa: add tag formats for MxL862xx switches Daniel Golle
2025-12-03 1:15 ` Andrew Lunn
2025-12-02 23:38 ` [PATCH RFC net-next 3/3] net: dsa: add basic initial driver " Daniel Golle
2025-12-03 2:07 ` Andrew Lunn
2025-12-03 9:29 ` Russell King (Oracle) [this message]
2025-12-10 15:19 ` Daniel Golle
2025-12-10 18:56 ` Andrew Lunn
2025-12-10 19:05 ` Daniel Golle
2025-12-12 16:49 ` Daniel Golle
2025-12-12 17:02 ` Andrew Lunn
2025-12-04 0:59 ` Russell King (Oracle)
2025-12-03 20:26 ` [PATCH RFC net-next 0/3] net: dsa: initial support for MaxLinear " Vladimir Oltean
2025-12-03 23:23 ` Daniel Golle
2025-12-04 1:02 ` Russell King (Oracle)
2025-12-04 13:08 ` Daniel Golle
2025-12-04 14:05 ` Russell King (Oracle)
2025-12-04 8:46 ` Vladimir Oltean
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=aTAC_xLUztl9ZHqT@shell.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=ajayaraman@maxlinear.com \
--cc=andrew@lunn.ch \
--cc=bxu@maxlinear.com \
--cc=conor+dt@kernel.org \
--cc=daniel@makrotopia.org \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=edumazet@google.com \
--cc=fchan@maxlinear.com \
--cc=frankwu@gmx.de \
--cc=horms@kernel.org \
--cc=john@phrozen.org \
--cc=jpovazanec@maxlinear.com \
--cc=krzk+dt@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lrosu@maxlinear.com \
--cc=lxu@maxlinear.com \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=pabeni@redhat.com \
--cc=robh@kernel.org \
--cc=yweng@maxlinear.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;
as well as URLs for NNTP newsgroup(s).