From: "Andrey Jr. Melnikov" <temnota.am@gmail.com>
To: netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Subject: Re: [net-next PATCH 1/1] drivers: net: dsa: qca8k: fix sgmii with some specific switch revision
Date: Tue, 21 Sep 2021 18:02:30 +0300 [thread overview]
Message-ID: <4p8p1i-pce.ln1@banana.localnet> (raw)
In-Reply-To: 20210920164745.30162-2-ansuelsmth@gmail.com
In gmane.linux.network Ansuel Smith <ansuelsmth@gmail.com> wrote:
> Enable sgmii pll, tx driver and rx chain only on switch revision 1. This
> is not needed on later revision and with qca8327 cause the sgmii
> connection to not work at all. This is a case with some router that use
> the qca8327 switch and have the cpu port 0 using a sgmii connection.
> Without this, routers with this specific configuration won't work as the
> ports won't be able to communicate with the cpu port with the result of
> no traffic.
> Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
> ---
> drivers/net/dsa/qca8k.c | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
> diff --git a/drivers/net/dsa/qca8k.c b/drivers/net/dsa/qca8k.c
> index bda5a9bf4f52..efeed8094865 100644
> --- a/drivers/net/dsa/qca8k.c
> +++ b/drivers/net/dsa/qca8k.c
> @@ -1227,8 +1227,14 @@ qca8k_phylink_mac_config(struct dsa_switch *ds, int port, unsigned int mode,
> if (ret)
> return;
>
> - val |= QCA8K_SGMII_EN_PLL | QCA8K_SGMII_EN_RX |
> - QCA8K_SGMII_EN_TX | QCA8K_SGMII_EN_SD;
> + /* SGMII PLL, TX driver and RX chain is only needed in
> + * switch revision 1, later revision doesn't need this.
> + */
> + if (priv->switch_revision == 1)
> + val |= QCA8K_SGMII_EN_PLL | QCA8K_SGMII_EN_RX |
> + QCA8K_SGMII_EN_TX | QCA8K_SGMII_EN_SD;
> + else
> + val |= QCA8K_SGMII_EN_SD;
maybe better
+ val |= QCA8K_SGMII_EN_SD;
+ /* SGMII PLL, TX driver and RX chain is only needed in
+ * switch revision 1, later revision doesn't need this.
+ */
+ if (priv->switch_revision == 1)
+ val |= QCA8K_SGMII_EN_PLL | QCA8K_SGMII_EN_RX |
+ QCA8K_SGMII_EN_TX;
without else branch ?
> if (dsa_is_cpu_port(ds, port)) {
> /* CPU port, we're talking to the CPU MAC, be a PHY */
prev parent reply other threads:[~2021-09-21 15:17 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-20 16:47 [net-next PATCH 0/1] Sgmii fix for qca8k qca8327 switch Ansuel Smith
2021-09-20 16:47 ` [net-next PATCH 1/1] drivers: net: dsa: qca8k: fix sgmii with some specific switch revision Ansuel Smith
2021-09-21 15:02 ` Andrey Jr. Melnikov [this message]
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=4p8p1i-pce.ln1@banana.localnet \
--to=temnota.am@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.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