]> git.baikalelectronics.ru Git - kernel.git/commit
net: macb: Limit maximum GEM TX length in TSO
authorHarini Katakam <harini.katakam@xilinx.com>
Wed, 5 Feb 2020 12:38:12 +0000 (18:08 +0530)
committerDavid S. Miller <davem@davemloft.net>
Wed, 5 Feb 2020 13:46:03 +0000 (14:46 +0100)
commit9b7f0b02dc8cc24ced70b6e133378b7643636343
tree1464d57123026b76b4b9a9c6c8fc8e89a928adf4
parentfc3c73f45804a3c8fe7127c4f93fb6501171e0c4
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 <harini.katakam@xilinx.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/cadence/macb_main.c