@@ -362,11 +362,12 @@ s32 e1000_set_mac_type(struct e1000_hw *hw)
case E1000_DEV_ID_I225_IT:
case E1000_DEV_ID_I220_V:
case E1000_DEV_ID_I225_BLANK_NVM:
- case E1000_DEV_ID_I226_K:
- case E1000_DEV_ID_I226_LMVP:
case E1000_DEV_ID_I226_LM:
case E1000_DEV_ID_I226_V:
case E1000_DEV_ID_I226_IT:
+ case E1000_DEV_ID_I226_K:
+ case E1000_DEV_ID_I221_V:
+ case E1000_DEV_ID_I226_LMVP:
case E1000_DEV_ID_I226_BLANK_NVM:
mac->type = e1000_i225;
break;
@@ -169,19 +169,21 @@ struct e1000_hw;
#define E1000_DEV_ID_I210_SGMII_FLASHLESS 0x15F6
#define E1000_DEV_ID_I211_COPPER 0x1539
#define E1000_DEV_ID_I225_LM 0x15F2
-#define E1000_DEV_ID_I225_LMVP 0x5502
#define E1000_DEV_ID_I225_V 0x15F3
#define E1000_DEV_ID_I225_K 0x3100
-#define E1000_DEV_ID_I225_I 0x15F8
+#define E1000_DEV_ID_I225_K2 0x3101
+#define E1000_DEV_ID_I225_LMVP 0x5502
#define E1000_DEV_ID_I225_IT 0x0D9F
+#define E1000_DEV_ID_I225_I 0x15F8
#define E1000_DEV_ID_I220_V 0x15F7
#define E1000_DEV_ID_I225_BLANK_NVM 0x15FD
-#define E1000_DEV_ID_I226_K 0x3102
-#define E1000_DEV_ID_I226_LMVP 0x5503
-#define E1000_DEV_ID_I226_LM 0x125B
-#define E1000_DEV_ID_I226_V 0x125C
-#define E1000_DEV_ID_I226_IT 0x125D
-#define E1000_DEV_ID_I226_BLANK_NVM 0x125F
+#define E1000_DEV_ID_I226_LM 0x125B
+#define E1000_DEV_ID_I226_V 0x125C
+#define E1000_DEV_ID_I226_IT 0x125D
+#define E1000_DEV_ID_I226_K 0x3102
+#define E1000_DEV_ID_I221_V 0x125E
+#define E1000_DEV_ID_I226_LMVP 0x5503
+#define E1000_DEV_ID_I226_BLANK_NVM 0x125F
#define E1000_DEV_ID_I354_BACKPLANE_1GBPS 0x1F40
#define E1000_DEV_ID_I354_SGMII 0x1F41
#define E1000_DEV_ID_I354_BACKPLANE_2_5GBPS 0x1F45
@@ -1910,6 +1910,7 @@ s32 e1000_phy_force_speed_duplex_m88(struct e1000_hw *hw)
case M88E1512_E_PHY_ID:
case I210_I_PHY_ID:
case I225_I_PHY_ID:
+ case I226_LM_PHY_ID:
reset_dsp = false;
break;
default:
@@ -1951,7 +1952,7 @@ s32 e1000_phy_force_speed_duplex_m88(struct e1000_hw *hw)
return E1000_SUCCESS;
if (hw->phy.id == I210_I_PHY_ID)
return E1000_SUCCESS;
- if (hw->phy.id == I225_I_PHY_ID)
+ if (hw->phy.id == I225_I_PHY_ID || hw->phy.id == I226_LM_PHY_ID)
return E1000_SUCCESS;
if ((hw->phy.id == M88E1543_E_PHY_ID) ||
(hw->phy.id == M88E1512_E_PHY_ID))
@@ -2509,6 +2510,7 @@ s32 e1000_get_cable_length_m88_gen2(struct e1000_hw *hw)
phy->cable_length = phy_data / (is_cm ? 100 : 1);
break;
case I225_I_PHY_ID:
+ case I226_LM_PHY_ID:
break;
case M88E1543_E_PHY_ID:
case M88E1512_E_PHY_ID:
@@ -3090,6 +3092,7 @@ enum e1000_phy_type e1000_get_phy_type_from_id(u32 phy_id)
phy_type = e1000_phy_i210;
break;
case I225_I_PHY_ID:
+ case I226_LM_PHY_ID:
phy_type = e1000_phy_i225;
break;
default:
@@ -107,16 +107,20 @@ static const struct rte_eth_desc_lim tx_desc_lim = {
static const struct rte_pci_id pci_id_igc_map[] = {
{ RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I225_LM) },
- { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I225_LMVP) },
{ RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I225_V) },
- { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I225_I) },
+ { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I225_K) },
+ { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I225_K2) },
+ { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I225_LMVP) },
{ RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I225_IT) },
- { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I225_K) },
- { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I226_K) },
- { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I226_LMVP) },
+ { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I225_I) },
+ { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I220_V) },
+ { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I225_BLANK_NVM) },
{ RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I226_LM) },
{ RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I226_V) },
{ RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I226_IT) },
+ { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I226_K) },
+ { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I221_V) },
+ { RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I226_LMVP) },
{ RTE_PCI_DEVICE(IGC_INTEL_VENDOR_ID, E1000_DEV_ID_I226_BLANK_NVM) },
{ .vendor_id = 0, /* sentinel */ },
};