* stmmac: TX stalls with head OWN=1; requiring manual DMA kick (6.12.63)
@ 2026-03-11 18:34 Tomer Maimon
2026-03-11 19:46 ` Andrew Lunn
0 siblings, 1 reply; 5+ messages in thread
From: Tomer Maimon @ 2026-03-11 18:34 UTC (permalink / raw)
To: Giuseppe Cavallaro; +Cc: netdev
Hi Giuseppe,
On kernel 6.12.63 (GMAC, normal 16‑byte TX descriptors), we observe
brief TX stalls when sending small packets.
During these pauses, when stmmac_tx_clean() runs, the head descriptor
(dirty_tx) consistently still has OWN=1 across multiple NAPI polls.
Descriptor programming in xmit() looks correct (OWN=1, FD/LD=1, CIC=2,
length ≈ 60–110 bytes), but reclamation does not proceed until a later
event (typically the next TX).
Reading DMA_STATUS during the stall shows the Transmit Process State
(TS) remains active (TS = 6), so the TX DMA engine appears to be
running, but it is not fetching the head descriptor, and the OWN bit
remains set until something nudges the engine.
As a work‑around, we added the following logic inside stmmac_tx_clean():
If the head descriptor still has OWN=1, issue a Transmit Poll Demand
via stmmac_enable_dma_transmission().
This immediately resumes the DMA and clears the stall.
We would appreciate your feedback on the following questions:
Are you familiar with this behavior in the stmmac TX path (head OWN=1
in tx_clean despite TS being active)?
What conditions could cause the TX DMA not to fetch new descriptors
even when TS=6?
Is this work‑around acceptable, or would you recommend a different
trigger/condition for issuing Transmit Poll Demand?
Thank you,
Tomer
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: stmmac: TX stalls with head OWN=1; requiring manual DMA kick (6.12.63)
2026-03-11 18:34 stmmac: TX stalls with head OWN=1; requiring manual DMA kick (6.12.63) Tomer Maimon
@ 2026-03-11 19:46 ` Andrew Lunn
2026-03-11 20:51 ` Russell King (Oracle)
0 siblings, 1 reply; 5+ messages in thread
From: Andrew Lunn @ 2026-03-11 19:46 UTC (permalink / raw)
To: Tomer Maimon; +Cc: Giuseppe Cavallaro, netdev, Russell King
On Wed, Mar 11, 2026 at 08:34:36PM +0200, Tomer Maimon wrote:
> Hi Giuseppe,
>
> On kernel 6.12.63 (GMAC, normal 16‑byte TX descriptors), we observe
> brief TX stalls when sending small packets.
You might want to look at Russell Kings patches from this week to
rework the descriptor handling.
Also, please don't report problems on dead kernels. 6.12.76 is the
current version for the 6.12 LTS. There is a small chance your problem
has already been fixed, and you are wasting everybody's time.
Andrew
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: stmmac: TX stalls with head OWN=1; requiring manual DMA kick (6.12.63)
2026-03-11 19:46 ` Andrew Lunn
@ 2026-03-11 20:51 ` Russell King (Oracle)
2026-03-12 14:02 ` Tomer Maimon
0 siblings, 1 reply; 5+ messages in thread
From: Russell King (Oracle) @ 2026-03-11 20:51 UTC (permalink / raw)
To: Andrew Lunn; +Cc: Tomer Maimon, Giuseppe Cavallaro, netdev
On Wed, Mar 11, 2026 at 08:46:04PM +0100, Andrew Lunn wrote:
> On Wed, Mar 11, 2026 at 08:34:36PM +0200, Tomer Maimon wrote:
> > Hi Giuseppe,
> >
> > On kernel 6.12.63 (GMAC, normal 16‑byte TX descriptors), we observe
> > brief TX stalls when sending small packets.
>
> You might want to look at Russell Kings patches from this week to
> rework the descriptor handling.
>
> Also, please don't report problems on dead kernels. 6.12.76 is the
> current version for the 6.12 LTS. There is a small chance your problem
> has already been fixed, and you are wasting everybody's time.
Yep.
Not sure they'll materially affect any problem, because I try to avoid
functional changes in stuff like those.
What's missing from the original report is a description of the
hardware. stmmac drives multiple different versions of the Synopsys
IP which have significant changes between them. Which platform glue
is being used, which core driver is being used (dwmac1000? dwmac4?
etc.)
Also what isn't mentioned is whether this is a regression, or whether
it's something that has never worked. If it's a regression, which
kernel version previously worked?
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: stmmac: TX stalls with head OWN=1; requiring manual DMA kick (6.12.63)
2026-03-11 20:51 ` Russell King (Oracle)
@ 2026-03-12 14:02 ` Tomer Maimon
2026-03-18 11:05 ` Tomer Maimon
0 siblings, 1 reply; 5+ messages in thread
From: Tomer Maimon @ 2026-03-12 14:02 UTC (permalink / raw)
To: Russell King (Oracle); +Cc: Andrew Lunn, Giuseppe Cavallaro, netdev
Hi Andrew and Russell,
On Wed, 11 Mar 2026 at 22:52, Russell King (Oracle)
<linux@armlinux.org.uk> wrote:
>
> On Wed, Mar 11, 2026 at 08:46:04PM +0100, Andrew Lunn wrote:
> > On Wed, Mar 11, 2026 at 08:34:36PM +0200, Tomer Maimon wrote:
> > > Hi Giuseppe,
> > >
> > > On kernel 6.12.63 (GMAC, normal 16‑byte TX descriptors), we observe
> > > brief TX stalls when sending small packets.
> >
> > You might want to look at Russell Kings patches from this week to
> > rework the descriptor handling.
Could you point me to Russell Kings patches?
> >
> > Also, please don't report problems on dead kernels. 6.12.76 is the
> > current version for the 6.12 LTS. There is a small chance your problem
> > has already been fixed, and you are wasting everybody's time.
Sorry, I mean 6.12 LTS.
>
> Yep.
>
> Not sure they'll materially affect any problem, because I try to avoid
> functional changes in stuff like those.
>
> What's missing from the original report is a description of the
> hardware. stmmac drives multiple different versions of the Synopsys
> IP which have significant changes between them. Which platform glue
> is being used, which core driver is being used (dwmac1000? dwmac4?
> etc.)
stmmac IP version is 3.73a
The platform is glue is "snps,dwmac" and the core driver is "dwmac1000"
>
> Also what isn't mentioned is whether this is a regression, or whether
> it's something that has never worked. If it's a regression, which
> kernel version previously worked?
We ran the test with kernel 5.10 LTS, and it didn't work.
>
> --
> RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
> FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
Thanks,
Tomer
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: stmmac: TX stalls with head OWN=1; requiring manual DMA kick (6.12.63)
2026-03-12 14:02 ` Tomer Maimon
@ 2026-03-18 11:05 ` Tomer Maimon
0 siblings, 0 replies; 5+ messages in thread
From: Tomer Maimon @ 2026-03-18 11:05 UTC (permalink / raw)
To: Russell King (Oracle); +Cc: Andrew Lunn, Giuseppe Cavallaro, netdev
Hi All,
Appreciate your comments on the reply that I sent a few days ago
Thanks,
Tomer
On Thu, 12 Mar 2026 at 16:02, Tomer Maimon <tmaimon77@gmail.com> wrote:
>
> Hi Andrew and Russell,
>
> On Wed, 11 Mar 2026 at 22:52, Russell King (Oracle)
> <linux@armlinux.org.uk> wrote:
> >
> > On Wed, Mar 11, 2026 at 08:46:04PM +0100, Andrew Lunn wrote:
> > > On Wed, Mar 11, 2026 at 08:34:36PM +0200, Tomer Maimon wrote:
> > > > Hi Giuseppe,
> > > >
> > > > On kernel 6.12.63 (GMAC, normal 16‑byte TX descriptors), we observe
> > > > brief TX stalls when sending small packets.
> > >
> > > You might want to look at Russell Kings patches from this week to
> > > rework the descriptor handling.
> Could you point me to Russell Kings patches?
> > >
> > > Also, please don't report problems on dead kernels. 6.12.76 is the
> > > current version for the 6.12 LTS. There is a small chance your problem
> > > has already been fixed, and you are wasting everybody's time.
> Sorry, I mean 6.12 LTS.
> >
> > Yep.
> >
> > Not sure they'll materially affect any problem, because I try to avoid
> > functional changes in stuff like those.
> >
> > What's missing from the original report is a description of the
> > hardware. stmmac drives multiple different versions of the Synopsys
> > IP which have significant changes between them. Which platform glue
> > is being used, which core driver is being used (dwmac1000? dwmac4?
> > etc.)
> stmmac IP version is 3.73a
> The platform is glue is "snps,dwmac" and the core driver is "dwmac1000"
> >
> > Also what isn't mentioned is whether this is a regression, or whether
> > it's something that has never worked. If it's a regression, which
> > kernel version previously worked?
> We ran the test with kernel 5.10 LTS, and it didn't work.
> >
> > --
> > RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
> > FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
>
> Thanks,
>
> Tomer
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-03-18 11:05 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-11 18:34 stmmac: TX stalls with head OWN=1; requiring manual DMA kick (6.12.63) Tomer Maimon
2026-03-11 19:46 ` Andrew Lunn
2026-03-11 20:51 ` Russell King (Oracle)
2026-03-12 14:02 ` Tomer Maimon
2026-03-18 11:05 ` Tomer Maimon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox