From: Florian Fainelli <f.fainelli@gmail.com>
To: Lukasz Majewski <lukma@denx.de>,
Woojung Huh <woojung.huh@microchip.com>,
UNGLinuxDriver@microchip.com
Cc: Andrew Lunn <andrew@lunn.ch>, Vladimir Oltean <olteanv@gmail.com>,
davem@davemloft.net, Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] net: dsa: microchip: Provide Module 4 KSZ9477 errata (DS80000754C)
Date: Thu, 24 Aug 2023 08:54:37 -0700 [thread overview]
Message-ID: <9504d420-c137-2fde-312d-2c8e6f84ddd1@gmail.com> (raw)
In-Reply-To: <20230824154827.166274-2-lukma@denx.de>
On 8/24/2023 8:48 AM, Lukasz Majewski wrote:
> The KSZ9477 errata points out the link up/down problem when EEE is enabled
> in the device to which the KSZ9477 tries to auto negotiate.
>
> The suggested workaround is to clear advertisement EEE registers
> (accessed as per port MMD one).
>
> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> ---
> drivers/net/dsa/microchip/ksz9477.c | 40 ++++++++++++++++++++++++++++-
> 1 file changed, 39 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/dsa/microchip/ksz9477.c b/drivers/net/dsa/microchip/ksz9477.c
> index cb6aa7c668a8..563f497ba656 100644
> --- a/drivers/net/dsa/microchip/ksz9477.c
> +++ b/drivers/net/dsa/microchip/ksz9477.c
> @@ -1128,6 +1128,44 @@ int ksz9477_enable_stp_addr(struct ksz_device *dev)
> return 0;
> }
>
> +static int ksz9477_errata(struct dsa_switch *ds)
> +{
> + struct ksz_device *dev = ds->priv;
> + u16 val;
> + int p;
> +
> + /* KSZ9477 Errata DS80000754C
> + *
> + * Module 4: Energy Efficient Ethernet (EEE) feature select must be
> + * manually disabled
> + * The EEE feature is enabled by default, but it is not fully
> + * operational. It must be manually disabled through register
> + * controls. If not disabled, the PHY ports can auto-negotiate
> + * to enable EEE, and this feature can cause link drops when linked
> + * to another device supporting EEE.
> + *
> + * Only PHY ports (dsa user) [0-4] need to have the EEE advertisement
> + * bits cleared.
> + */
> +
> + for (p = 0; p < ds->num_ports; p++) {
> + if (!dsa_is_user_port(ds, p))
> + continue;
> +
> + ksz9477_port_mmd_read(dev, p, MMD_DEVICE_ID_EEE_ADV,
> + MMD_EEE_ADV, &val, 1);
> +
> + pr_err("%s: PORT: %d val: 0x%x pc: %d\n", __func__, p, val,
> + ds->num_ports);
Left over debugging?
> +
> + val &= ~(EEE_ADV_100MBIT | EEE_ADV_1GBIT);
> + ksz9477_port_mmd_write(dev, p, MMD_DEVICE_ID_EEE_ADV,
> + MMD_EEE_ADV, &val, 1);
> + }
> +
> + return 0;
You don't propagate any error, so make this return void?
--
Florian
next prev parent reply other threads:[~2023-08-24 15:55 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-24 15:48 [PATCH 1/2] net: dsa: microchip: KSZ9477: Provide functions to access MMD registers Lukasz Majewski
2023-08-24 15:48 ` [PATCH 2/2] net: dsa: microchip: Provide Module 4 KSZ9477 errata (DS80000754C) Lukasz Majewski
2023-08-24 15:54 ` Florian Fainelli [this message]
2023-08-25 7:42 ` Lukasz Majewski
2023-08-25 1:12 ` Tristram.Ha
2023-08-25 8:39 ` Lukasz Majewski
2023-08-25 15:26 ` Florian Fainelli
2023-08-25 18:48 ` Tristram.Ha
2023-08-26 10:49 ` Vladimir Oltean
2023-08-29 8:35 ` Lukasz Majewski
2023-08-29 10:18 ` Vladimir Oltean
2023-08-29 11:24 ` Lukasz Majewski
2023-08-29 11:47 ` Oleksij Rempel
2023-08-29 12:38 ` Lukasz Majewski
2023-08-29 14:42 ` Oleksij Rempel
2023-08-29 15:29 ` Lukasz Majewski
2023-08-29 17:12 ` Oleksij Rempel
2023-08-29 22:23 ` Tristram.Ha
2023-08-30 6:16 ` Oleksij Rempel
2023-08-30 8:13 ` Lukasz Majewski
2023-08-29 21:57 ` Tristram.Ha
2023-08-29 22:00 ` Florian Fainelli
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=9504d420-c137-2fde-312d-2c8e6f84ddd1@gmail.com \
--to=f.fainelli@gmail.com \
--cc=UNGLinuxDriver@microchip.com \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lukma@denx.de \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=pabeni@redhat.com \
--cc=woojung.huh@microchip.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