public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
From: Maxime Chevallier <maxime.chevallier@bootlin.com>
To: Stefan Eichenberger <eichest@gmail.com>,
	"Russell King (Oracle)" <linux@armlinux.org.uk>
Cc: Andrew Lunn <andrew@lunn.ch>,
	andrew+netdev@lunn.ch, davem@davemloft.net, edumazet@google.com,
	kuba@kernel.org, pabeni@redhat.com, shawnguo@kernel.org,
	s.hauer@pengutronix.de, kernel@pengutronix.de,
	festevam@gmail.com, mcoquelin.stm32@gmail.com,
	alexandre.torgue@foss.st.com,
	linux-stm32@st-md-mailman.stormreply.com, netdev@vger.kernel.org,
	imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, francesco.dolcini@toradex.com,
	robh@kernel.org,
	Stefan Eichenberger <stefan.eichenberger@toradex.com>
Subject: Re: [PATCH RESEND net-next v2] net: stmmac: dwmac: Add a fixup for the Micrel KSZ9131 PHY
Date: Fri, 9 Jan 2026 10:38:30 +0100	[thread overview]
Message-ID: <8f70bd9d-747f-4ffa-b0f2-1020071b5adc@bootlin.com> (raw)
In-Reply-To: <aWC_ZDu0HipuVhQS@eichest-laptop>

Hi Stefan,

On 09/01/2026 09:42, Stefan Eichenberger wrote:
> Hi everyone,
> 
> On Mon, Jan 05, 2026 at 06:58:24PM +0100, Stefan Eichenberger wrote:
>> On Mon, Jan 05, 2026 at 05:09:13PM +0000, Russell King (Oracle) wrote:
>>> On Mon, Jan 05, 2026 at 05:42:23PM +0100, Stefan Eichenberger wrote:
>>>> Yes this is correct. ERR050694 from NXP states:
>>>> The IEEE 802.3 standard states that, in MII/GMII modes, the byte
>>>> preceding the SFD (0xD5), SMD-S (0xE6,0x4C, 0x7F, or 0xB3), or SMD-C
>>>> (0x61, 0x52, 0x9E, or 0x2A) byte can be a non-PREAMBLE byte or there can
>>>> be no preceding preamble byte. The MAC receiver must successfully
>>>> receive a packet without any preamble(0x55) byte preceding the SFD,
>>>> SMD-S, or SMD-C byte.
>>>> However due to the defect, in configurations where frame preemption is
>>>> enabled, when preamble byte does not precede the SFD, SMD-S, or SMD-C
>>>> byte, the received packet is discarded by the MAC receiver. This is
>>>> because, the start-of-packet detection logic of the MAC receiver
>>>> incorrectly checks for a preamble byte.
>>>>
>>>> NXP refers to IEEE 802.3 where in clause 35.2.3.2.2 Receive case (GMII)
>>>> they show two tables one where the preamble is preceding the SFD and one
>>>> where it is not. The text says:
>>>> The operation of 1000 Mb/s PHYs can result in shrinkage of the preamble
>>>> between transmission at the source GMII and reception at the destination
>>>> GMII. Table 35–3 depicts the case where no preamble bytes are conveyed
>>>> across the GMII. This case may not be possible with a specific PHY, but
>>>> illustrates the minimum preamble with which MAC shall be able to
>>>> operate. Table 35–4 depicts the case where the entire preamble is
>>>> conveyed across the GMII.
>>>>
>>>> We would change the behavior from "no preamble is preceding SFD" to "the
>>>> enitre preamble is preceding SFD". Both are listed in the standard and
>>>> shall be supported by the MAC.
>>>
>>> Thanks for providing the full explanation, it would be good to have
>>> that in the commit message.
>>
>> Okay thanks, I will provide the full explanation in the next commit
>> message.
>>
>>>
>>> The next question would be, is it just the NXP EQOS implementation
>>> that this breaks on, or are other EQOS implementations affected?
>>>
>>> In other words, if we choose to conditionally enable the preable at
>>> the PHY, should the generic parts of stmmac handle this rather than
>>> ending up with multiple platform specific glue having to code this.
>>> (This is something I really want to avoid - it doesn't scale.)
>>
>> From the errata from NXP it sounds to me like it is a configuration
>> issue by NXP. I checked the following ERRATAs from vendors where I have
>> access to:
>> - ST STM32MP1: not affected: https://www.st.com/resource/en/errata_sheet/es0438-stm32mp151x3x7x-device-errata-stmicroelectronics.pdf
>> - Renesas RZN1: not affected: https://www.renesas.com/en/document/tcu/ethernet-mac-gmac-function-issue-0?r=1054561
>> - Starvive JH7110: not affected: https://doc-en.rvspace.org/JH7110/PDF/JH7110_Errata.pdf
>> - NXP S32: affected: (ERR050706 under NDA)
>>
>> So from that I would conclude that it is an NXP specific issue and it's
>> not the full EQOS implementation that is broken.
> 
> I just wanted to check whether I should continue with the current
> approach or if I should instead enable the preamble in the PHY for all
> MACs. While I prefer the current approach, as the issue lies with the
> MAC rather than the PHY, I can also see the advantage of always enabling
> the feature.

My main concern was that we may end-up with a lot of different fixups
for the various KSZ-family PHY devices, especially since this feature is
sometimes undocumented.

I've gone through the micrel.c driver, and looked at the datasheet of
most PHYs in there, and so far I've found that to fix this issue, we
need to set :

KSZ9131 / KSZ8041: Register 0x14 bit 6
KSZ8061 / KSZ8051 : Register 0x18 bit 6

So in the end, the complexity appears to be a bit less exponential than
I originally thought, we may end-up with only a few fixups in this driver.

I'd say, I'm fine with you proceeding with this original approach as it
minimizes the impact and risk to break other setups.

I'm sorry for triggering this whole discussion only to get back to the
starting point :(

Maxime

  reply	other threads:[~2026-01-09  9:38 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-05 10:02 [PATCH RESEND net-next v2] net: stmmac: dwmac: Add a fixup for the Micrel KSZ9131 PHY Stefan Eichenberger
2026-01-05 12:23 ` Maxime Chevallier
2026-01-05 12:42   ` Stefan Eichenberger
2026-01-05 15:26     ` Andrew Lunn
2026-01-05 16:42       ` Stefan Eichenberger
2026-01-05 17:09         ` Russell King (Oracle)
2026-01-05 17:58           ` Stefan Eichenberger
2026-01-09  8:42             ` Stefan Eichenberger
2026-01-09  9:38               ` Maxime Chevallier [this message]
2026-01-10 13:42                 ` Stefan Eichenberger
2026-01-10 15:47                   ` Russell King (Oracle)
2026-01-12  9:23                     ` Stefan Eichenberger

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=8f70bd9d-747f-4ffa-b0f2-1020071b5adc@bootlin.com \
    --to=maxime.chevallier@bootlin.com \
    --cc=alexandre.torgue@foss.st.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=andrew@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=eichest@gmail.com \
    --cc=festevam@gmail.com \
    --cc=francesco.dolcini@toradex.com \
    --cc=imx@lists.linux.dev \
    --cc=kernel@pengutronix.de \
    --cc=kuba@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-stm32@st-md-mailman.stormreply.com \
    --cc=linux@armlinux.org.uk \
    --cc=mcoquelin.stm32@gmail.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=robh@kernel.org \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    --cc=stefan.eichenberger@toradex.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