mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
gianfar: Enable eTSEC-20 erratum w/a for P2020 Rev1
Enable workaround for P2020/P2010 erratum eTSEC 20, "Excess delays when transmitting TOE=1 large frames". The impact is that frames lager than 2500-bytes for which TOE (i.e. TCP/IP hw accelerations like Tx csum) is enabled may see excess delay before start of transmission. This erratum was fixed in Rev 2.0. Signed-off-by: Claudiu Manoil <claudiu.manoil@freescale.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2969b1f725
commit
53fad77375
@ -968,6 +968,9 @@ static void __gfar_detect_errata_85xx(struct gfar_private *priv)
|
||||
|
||||
if ((SVR_SOC_VER(svr) == SVR_8548) && (SVR_REV(svr) == 0x20))
|
||||
priv->errata |= GFAR_ERRATA_12;
|
||||
if (((SVR_SOC_VER(svr) == SVR_P2020) && (SVR_REV(svr) < 0x20)) ||
|
||||
((SVR_SOC_VER(svr) == SVR_P2010) && (SVR_REV(svr) < 0x20)))
|
||||
priv->errata |= GFAR_ERRATA_76; /* aka eTSEC 20 */
|
||||
}
|
||||
|
||||
static void gfar_detect_errata(struct gfar_private *priv)
|
||||
|
Loading…
Reference in New Issue
Block a user