diff options
| -rw-r--r-- | drivers/net/tg3.c | 8 | ||||
| -rw-r--r-- | drivers/net/tg3.h | 1 |
2 files changed, 7 insertions, 2 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index c32655ca3c46..2c36e70e37e5 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
| @@ -6157,8 +6157,12 @@ static int tg3_reset_hw(struct tg3 *tp, int reset_phy) | |||
| 6157 | #endif | 6157 | #endif |
| 6158 | 6158 | ||
| 6159 | /* Receive/send statistics. */ | 6159 | /* Receive/send statistics. */ |
| 6160 | if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) && | 6160 | if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) { |
| 6161 | (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) { | 6161 | val = tr32(RCVLPC_STATS_ENABLE); |
| 6162 | val &= ~RCVLPC_STATSENAB_DACK_FIX; | ||
| 6163 | tw32(RCVLPC_STATS_ENABLE, val); | ||
| 6164 | } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) && | ||
| 6165 | (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) { | ||
| 6162 | val = tr32(RCVLPC_STATS_ENABLE); | 6166 | val = tr32(RCVLPC_STATS_ENABLE); |
| 6163 | val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX; | 6167 | val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX; |
| 6164 | tw32(RCVLPC_STATS_ENABLE, val); | 6168 | tw32(RCVLPC_STATS_ENABLE, val); |
diff --git a/drivers/net/tg3.h b/drivers/net/tg3.h index e9177f8521df..97a860433b50 100644 --- a/drivers/net/tg3.h +++ b/drivers/net/tg3.h | |||
| @@ -760,6 +760,7 @@ | |||
| 760 | #define RCVLPC_STATSCTRL_ENABLE 0x00000001 | 760 | #define RCVLPC_STATSCTRL_ENABLE 0x00000001 |
| 761 | #define RCVLPC_STATSCTRL_FASTUPD 0x00000002 | 761 | #define RCVLPC_STATSCTRL_FASTUPD 0x00000002 |
| 762 | #define RCVLPC_STATS_ENABLE 0x00002018 | 762 | #define RCVLPC_STATS_ENABLE 0x00002018 |
| 763 | #define RCVLPC_STATSENAB_DACK_FIX 0x00040000 | ||
| 763 | #define RCVLPC_STATSENAB_LNGBRST_RFIX 0x00400000 | 764 | #define RCVLPC_STATSENAB_LNGBRST_RFIX 0x00400000 |
| 764 | #define RCVLPC_STATS_INCMASK 0x0000201c | 765 | #define RCVLPC_STATS_INCMASK 0x0000201c |
| 765 | /* 0x2020 --> 0x2100 unused */ | 766 | /* 0x2020 --> 0x2100 unused */ |
