diff options
author | Alexander Duyck <alexander.h.duyck@intel.com> | 2008-11-14 01:54:36 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-16 22:09:43 -0500 |
commit | 6ea7ae1d0fc02a6c4ccd27e43346f67c44226e7a (patch) | |
tree | cb07bd55c0d908cae9e3539dda6fa1c5bf6512f4 /drivers/net/e1000e/defines.h | |
parent | f004f3ea34209d8b836426b26ade3dc502631b18 (diff) |
e1000e: enable ECC correction on 82571 silicon
This change enables ECC correction for the packet buffer on all 82571
silicon.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/e1000e/defines.h')
-rw-r--r-- | drivers/net/e1000e/defines.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/e1000e/defines.h b/drivers/net/e1000e/defines.h index 48f79ecb82a0..34a68fcab5a9 100644 --- a/drivers/net/e1000e/defines.h +++ b/drivers/net/e1000e/defines.h | |||
@@ -372,6 +372,13 @@ | |||
372 | #define E1000_ICR_TXQ1 0x00800000 /* Tx Queue 1 Interrupt */ | 372 | #define E1000_ICR_TXQ1 0x00800000 /* Tx Queue 1 Interrupt */ |
373 | #define E1000_ICR_OTHER 0x01000000 /* Other Interrupts */ | 373 | #define E1000_ICR_OTHER 0x01000000 /* Other Interrupts */ |
374 | 374 | ||
375 | /* PBA ECC Register */ | ||
376 | #define E1000_PBA_ECC_COUNTER_MASK 0xFFF00000 /* ECC counter mask */ | ||
377 | #define E1000_PBA_ECC_COUNTER_SHIFT 20 /* ECC counter shift value */ | ||
378 | #define E1000_PBA_ECC_CORR_EN 0x00000001 /* ECC correction enable */ | ||
379 | #define E1000_PBA_ECC_STAT_CLR 0x00000002 /* Clear ECC error counter */ | ||
380 | #define E1000_PBA_ECC_INT_EN 0x00000004 /* Enable ICR bit 5 for ECC */ | ||
381 | |||
375 | /* | 382 | /* |
376 | * This defines the bits that are set in the Interrupt Mask | 383 | * This defines the bits that are set in the Interrupt Mask |
377 | * Set/Read Register. Each bit is documented below: | 384 | * Set/Read Register. Each bit is documented below: |