diff options
author | Alexander Duyck <alexander.h.duyck@intel.com> | 2010-03-22 10:08:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-22 21:30:05 -0400 |
commit | d2ba2ed8fe3aa796a671a6922119d7171bb49515 (patch) | |
tree | 8265da058e55fb264bdd94b1e41ed6ac9d8cbf03 /drivers/net/igb/e1000_hw.h | |
parent | 52a1dd4d15cc28da5d3e9bfb1526c314d65fdff8 (diff) |
igb: add support for Intel I350 Gigabit Network Connection
This patch adds support for the the I350 Gigabit network connection which
is the follow-on part to the 82580.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
CC: James Hearn <james.r.hearn@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/igb/e1000_hw.h')
-rw-r--r-- | drivers/net/igb/e1000_hw.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/igb/e1000_hw.h b/drivers/net/igb/e1000_hw.h index 82a533f5192a..593d5fa5a3de 100644 --- a/drivers/net/igb/e1000_hw.h +++ b/drivers/net/igb/e1000_hw.h | |||
@@ -53,6 +53,10 @@ struct e1000_hw; | |||
53 | #define E1000_DEV_ID_82580_SERDES 0x1510 | 53 | #define E1000_DEV_ID_82580_SERDES 0x1510 |
54 | #define E1000_DEV_ID_82580_SGMII 0x1511 | 54 | #define E1000_DEV_ID_82580_SGMII 0x1511 |
55 | #define E1000_DEV_ID_82580_COPPER_DUAL 0x1516 | 55 | #define E1000_DEV_ID_82580_COPPER_DUAL 0x1516 |
56 | #define E1000_DEV_ID_I350_COPPER 0x1521 | ||
57 | #define E1000_DEV_ID_I350_FIBER 0x1522 | ||
58 | #define E1000_DEV_ID_I350_SERDES 0x1523 | ||
59 | #define E1000_DEV_ID_I350_SGMII 0x1524 | ||
56 | 60 | ||
57 | #define E1000_REVISION_2 2 | 61 | #define E1000_REVISION_2 2 |
58 | #define E1000_REVISION_4 4 | 62 | #define E1000_REVISION_4 4 |
@@ -72,6 +76,7 @@ enum e1000_mac_type { | |||
72 | e1000_82575, | 76 | e1000_82575, |
73 | e1000_82576, | 77 | e1000_82576, |
74 | e1000_82580, | 78 | e1000_82580, |
79 | e1000_i350, | ||
75 | e1000_num_macs /* List is 1-based, so subtract 1 for true count. */ | 80 | e1000_num_macs /* List is 1-based, so subtract 1 for true count. */ |
76 | }; | 81 | }; |
77 | 82 | ||