From: Jakub Kicinski <kuba@kernel.org>
To: devnull+george.moussalem.outlook.com@kernel.org
Cc: Jakub Kicinski <kuba@kernel.org>,
andrew@lunn.ch, olteanv@gmail.com, davem@davemloft.net,
edumazet@google.com, pabeni@redhat.com, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, george.moussalem@outlook.com
Subject: Re: [PATCH next-next] net: dsa: qca8k: Add support for force mode for fixed link topology
Date: Thu, 4 Jun 2026 18:24:20 -0700 [thread overview]
Message-ID: <20260605012421.3517532-1-kuba@kernel.org> (raw)
In-Reply-To: <20260603-qca8337-force-mode-v1-1-caf7670ffab3@outlook.com>
This is an AI-generated review of your patch. The human sending this
email has considered the AI review valid, or at least plausible.
---
net: dsa: qca8k: Add support for force mode for fixed link topology
A fixed link topology is commonly used to connect this switch (on port
0 or 6) to a SoC's MAC over SGMII. When inband negotiation is not used,
the switch needs to be configured to operate in force mode. As such,
enable support for force mode.
> diff --git a/drivers/net/dsa/qca/qca8k-8xxx.c b/drivers/net/dsa/qca/qca8k-8xxx.c
> index a36b8b07030e3..3dbd18ab86380 100644
> --- a/drivers/net/dsa/qca/qca8k-8xxx.c
> +++ b/drivers/net/dsa/qca/qca8k-8xxx.c
[ ... ]
> @@ -1611,10 +1611,14 @@ static int qca8k_pcs_config(struct phylink_pcs *pcs, unsigned int neg_mode,
> if (priv->ports_config.sgmii_tx_clk_falling_edge)
> val |= QCA8K_PORT0_PAD_SGMII_TXCLK_FALLING_EDGE;
>
> + if (neg_mode == PHYLINK_PCS_NEG_OUTBAND)
> + val |= QCA8K_PORT_PAD_SGMII_FORCE_MODE;
> +
[Severity: High]
Could there be an issue with configuring port 6 on QCA8327 and QCA8337
hardware?
Earlier in qca8k_pcs_config(), reg is overridden for these models:
if (priv->switch_id == QCA8K_ID_QCA8327 ||
priv->switch_id == QCA8K_ID_QCA8337)
reg = QCA8K_REG_PORT0_PAD_CTRL;
Since the SGMII force mode configuration uses this same reg variable,
won't this cause the FORCE_MODE bit for port 6 to be incorrectly written
to port 0's PAD control register on these specific switches?
> if (val)
> ret = qca8k_rmw(priv, reg,
> QCA8K_PORT0_PAD_SGMII_RXCLK_FALLING_EDGE |
> - QCA8K_PORT0_PAD_SGMII_TXCLK_FALLING_EDGE,
> + QCA8K_PORT0_PAD_SGMII_TXCLK_FALLING_EDGE |
> + QCA8K_PORT_PAD_SGMII_FORCE_MODE,
> val);
[Severity: High]
Is FORCE_MODE properly cleared if it was previously set by a bootloader,
but we don't use outband negotiation and no clock falling edge properties
are configured?
If neg_mode != PHYLINK_PCS_NEG_OUTBAND and the clock phase bits are not set,
val will be 0. This causes the if (val) check to fail, skipping the
qca8k_rmw() call entirely, leaving FORCE_MODE unchanged in hardware.
However, if clock phases are configured in the device tree, val will be
non-zero, and qca8k_rmw() will clear FORCE_MODE. Does this create a
scenario where clearing this mode unpredictably depends on unrelated clock
configurations?
>
> return 0;
--
pw-bot: cr
next prev parent reply other threads:[~2026-06-05 1:24 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-03 7:57 [PATCH next-next] net: dsa: qca8k: Add support for force mode for fixed link topology George Moussalem via B4 Relay
2026-06-03 12:08 ` Andrew Lunn
2026-06-05 1:24 ` Jakub Kicinski [this message]
2026-06-05 5:18 ` George Moussalem
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=20260605012421.3517532-1-kuba@kernel.org \
--to=kuba@kernel.org \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=devnull+george.moussalem.outlook.com@kernel.org \
--cc=edumazet@google.com \
--cc=george.moussalem@outlook.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=pabeni@redhat.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