ixgbe: add support for X540-AT1
This patch adds device support for Ethernet Controller X540-AT1. Signed-off-by: Josh Hay <joshua.a.hay@intel.com> Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
committed by
Jeff Kirsher
parent
4a97df0bfa
commit
df376f0de1
@@ -70,6 +70,7 @@ static s32 ixgbe_device_supports_autoneg_fc(struct ixgbe_hw *hw)
|
|||||||
|
|
||||||
switch (hw->device_id) {
|
switch (hw->device_id) {
|
||||||
case IXGBE_DEV_ID_X540T:
|
case IXGBE_DEV_ID_X540T:
|
||||||
|
case IXGBE_DEV_ID_X540T1:
|
||||||
return 0;
|
return 0;
|
||||||
case IXGBE_DEV_ID_82599_T3_LOM:
|
case IXGBE_DEV_ID_82599_T3_LOM:
|
||||||
return 0;
|
return 0;
|
||||||
|
@@ -114,6 +114,7 @@ static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
|
|||||||
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
|
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
|
||||||
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
|
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
|
||||||
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
|
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
|
||||||
|
{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T1), board_X540 },
|
||||||
/* required last entry */
|
/* required last entry */
|
||||||
{0, }
|
{0, }
|
||||||
};
|
};
|
||||||
@@ -7054,6 +7055,7 @@ int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
|
|||||||
is_wol_supported = 1;
|
is_wol_supported = 1;
|
||||||
break;
|
break;
|
||||||
case IXGBE_DEV_ID_X540T:
|
case IXGBE_DEV_ID_X540T:
|
||||||
|
case IXGBE_DEV_ID_X540T1:
|
||||||
/* check eeprom to see if enabled wol */
|
/* check eeprom to see if enabled wol */
|
||||||
if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
|
if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
|
||||||
((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
|
((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
|
||||||
|
@@ -65,6 +65,7 @@
|
|||||||
#define IXGBE_DEV_ID_82599_LS 0x154F
|
#define IXGBE_DEV_ID_82599_LS 0x154F
|
||||||
#define IXGBE_DEV_ID_X540T 0x1528
|
#define IXGBE_DEV_ID_X540T 0x1528
|
||||||
#define IXGBE_DEV_ID_82599_SFP_SF_QP 0x154A
|
#define IXGBE_DEV_ID_82599_SFP_SF_QP 0x154A
|
||||||
|
#define IXGBE_DEV_ID_X540T1 0x1560
|
||||||
|
|
||||||
/* VF Device IDs */
|
/* VF Device IDs */
|
||||||
#define IXGBE_DEV_ID_82599_VF 0x10ED
|
#define IXGBE_DEV_ID_82599_VF 0x10ED
|
||||||
|
Reference in New Issue
Block a user