From: Nicolai Buchwitz <nb@tipi-net.de>
To: netdev-bot+sashiko@kernel.org
Cc: florian.fainelli@broadcom.com,
bcm-kernel-feedback-list@broadcom.com, andrew@lunn.ch,
hkallweit1@gmail.com, linux@armlinux.org.uk, davem@davemloft.net,
edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
justin.chen@broadcom.com, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH net-next] net: phy: broadcom: enable jumbo frames on BCM54xx
Date: Tue, 15 Sep 2026 12:31:51 +0200 [thread overview]
Message-ID: <073f27830fa5e448448cb9cf9de132d3@tipi-net.de> (raw)
In-Reply-To: <178946564204.22033.11365695579281446109@kernel.org>
On 15.9.2026 11:47, netdev-bot+sashiko@kernel.org wrote:
> Thank you for your contribution! Sashiko AI review found 1 potential
> issue(s) to consider:
>
> Critical: 0 · High: 0 · Medium: 1 · Low: 0
>
> - [Medium] The new unconditional bcm_phy_enable_jumbo() call in
> bcm54xx_config_init() (drivers/net/phy/broadcom.c:543) sets…
>
> --
>
> net: phy: broadcom: enable jumbo frames on BCM54xx
>
> This adds an unconditional bcm_phy_enable_jumbo() call to
> bcm54xx_config_init(), which sets the extended packet length bit in the
> auxiliary control register and the PCS transmit FIFO elasticity bit in
> the
> extended control register so that jumbo frames are not dropped at 100M.
>
>> diff --git a/drivers/net/phy/broadcom.c b/drivers/net/phy/broadcom.c
>> index d1a4edb34ad2e..b515e38755041 100644
>> --- a/drivers/net/phy/broadcom.c
>> +++ b/drivers/net/phy/broadcom.c
>> @@ -537,6 +537,13 @@ static int bcm54xx_config_init(struct phy_device
>> *phydev)
>>
>> bcm54xx_ptp_config_init(phydev);
>>
>> + /* Transmit is limited to 4.5 KB without it, see the BCM54210PE
>> + * datasheet section 5.4.12.14.
>> + */
>> + err = bcm_phy_enable_jumbo(phydev);
>> + if (err < 0)
>> + return err;
>> +
>
> [Severity: Medium]
> This lands directly after bcm54xx_ptp_config_init() has armed the
> TimeSync block on PTP-capable parts such as the BCM54210E, whose driver
> entry in broadcom_drivers uses this same .config_init. How does the
> added
> elastic FIFO delay interact with the PHY timestamping path?
>
> bcm_phy_enable_jumbo() in drivers/net/phy/bcm-phy-lib.c ends with:
>
> /* Enable the elastic FIFO for raising the transmission limit from
> * 4.5KB to 10KB, at the expense of an additional 16 ns in propagation
> * latency.
> */
> return phy_set_bits(phydev, MII_BCM54XX_ECR, MII_BCM54XX_ECR_FIFOE);
>
> If that FIFO sits in the copper PCS transmit path downstream of the
> 1588
> egress capture point, would egress timestamps then be reported
> systematically early by that fixed delay? A link where only one end
> has
> MII_BCM54XX_ECR_FIFOE set would also become asymmetric.
>
> Grepping drivers/net/phy/bcm-phy-ptp.c for latency or compensat returns
> no
> matches, so there appears to be no TX/RX latency correction programmed
> anywhere in the PHY PTP driver that could absorb the new delay.
>
> There is also no gating here: no MTU or jumbo condition, no device tree
> property and no ethtool knob, and the bit is re-armed on every
> config_init() and via bcm54xx_resume(). tg3 sets the same hardware bit
> only when tg3_flag(tp, JUMBO_CAPABLE) is set.
>
> Would it make sense to gate the FIFO elasticity bit on an actual
> jumbo/large-MTU requirement, or to account for the extra delay in the
> PTP
> path?
Regarding mtu guard:
tg3 gates on JUMBO_CAPABLE, a device capability rather than the
configured MTU.
Also phylib does not have a MTU hook without any further changes.
config_init()
runs on attach and resume, not on an MTU change. bcm7xxx.c enables it
unconditionally
for the very same reason.
Regarding PTP compensation:
egress timestamping happens at the MDI, so the transmit FIFO sits ahead
of the
capture point and its 16 ns does not end up in the timestamp. So AFAIU
nothing
to compensate here.
>
>> /* Acknowledge any left over interrupt and charge the device for
>> * wake-up.
>> */
>
> Also, the changelog says the elasticity bit raises the transmit limit
> "from 4.5 KB to 9 KB", while the in-tree comment on the same register
> write in bcm_phy_enable_jumbo() says 4.5KB to 10KB. Which figure is
> intended, and could the two be reconciled?
The datasheet gives 4.5 KB to 9 KB for the elasticity bit alone and 10
KB
for copper mode with both bits set. The existing comment in
bcm_phy_enable_jumbo() attributes the 10 KB to that one bit.
I can send a separate patch for the existing comment if wanted?
Thanks,
Nicolai
next prev parent reply other threads:[~2026-09-15 10:31 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-14 9:47 Nicolai Buchwitz
2026-09-15 9:47 ` netdev-bot+sashiko
2026-09-15 10:31 ` Nicolai Buchwitz [this message]
2026-09-16 23:17 ` Florian Fainelli
2026-09-17 0:40 ` patchwork-bot+netdevbpf
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=073f27830fa5e448448cb9cf9de132d3@tipi-net.de \
--to=nb@tipi-net.de \
--cc=andrew@lunn.ch \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=florian.fainelli@broadcom.com \
--cc=hkallweit1@gmail.com \
--cc=justin.chen@broadcom.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=netdev-bot+sashiko@kernel.org \
--cc=netdev@vger.kernel.org \
--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
all inboxes | Powered by JetHome®