Skip to content

Commit f822e9c

Browse files
harini-katakamdavem330
authored andcommitted
net: macb: Limit maximum GEM TX length in TSO
GEM_MAX_TX_LEN currently resolves to 0x3FF8 for any IP version supporting TSO with full 14bits of length field in payload descriptor. But an IP errata causes false amba_error (bit 6 of ISR) when length in payload descriptors is specified above 16387. The error occurs because the DMA falsely concludes that there is not enough space in SRAM for incoming payload. These errors were observed continuously under stress of large packets using iperf on a version where SRAM was 16K for each queue. This errata will be documented shortly and affects all versions since TSO functionality was added. Hence limit the max length to 0x3FC0 (rounded). Signed-off-by: Harini Katakam <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 41c1ef9 commit f822e9c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

drivers/net/ethernet/cadence/macb_main.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,11 @@ struct sifive_fu540_macb_mgmt {
7373
/* Max length of transmit frame must be a multiple of 8 bytes */
7474
#define MACB_TX_LEN_ALIGN 8
7575
#define MACB_MAX_TX_LEN ((unsigned int)((1 << MACB_TX_FRMLEN_SIZE) - 1) & ~((unsigned int)(MACB_TX_LEN_ALIGN - 1)))
76-
#define GEM_MAX_TX_LEN ((unsigned int)((1 << GEM_TX_FRMLEN_SIZE) - 1) & ~((unsigned int)(MACB_TX_LEN_ALIGN - 1)))
76+
/* Limit maximum TX length as per Cadence TSO errata. This is to avoid a
77+
* false amba_error in TX path from the DMA assuming there is not enough
78+
* space in the SRAM (16KB) even when there is.
79+
*/
80+
#define GEM_MAX_TX_LEN (unsigned int)(0x3FC0)
7781

7882
#define GEM_MTU_MIN_SIZE ETH_MIN_MTU
7983
#define MACB_NETIF_LSO NETIF_F_TSO

0 commit comments

Comments
 (0)