igc: Add new device ID
authorSasha Neftin <sasha.neftin@intel.com>
Tue, 31 Aug 2021 07:39:02 +0000 (10:39 +0300)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Fri, 29 Oct 2021 16:51:26 +0000 (09:51 -0700)
Add new device ID for the next step of the silicon and
reflect the I226_LMVP part.

Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
Tested-by: Nechama Kraus <nechamax.kraus@linux.intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/igc/igc_base.c
drivers/net/ethernet/intel/igc/igc_hw.h
drivers/net/ethernet/intel/igc/igc_main.c

index 30b1f02cef150f991bf4bb95ba108400c20a32d0..2612a58fc52a4e7f47e4767e1a7f2424ecf1604e 100644 (file)
@@ -202,6 +202,7 @@ static s32 igc_get_invariants_base(struct igc_hw *hw)
        case IGC_DEV_ID_I225_K2:
        case IGC_DEV_ID_I226_K:
        case IGC_DEV_ID_I225_LMVP:
+       case IGC_DEV_ID_I226_LMVP:
        case IGC_DEV_ID_I225_IT:
        case IGC_DEV_ID_I226_LM:
        case IGC_DEV_ID_I226_V:
index 4e0203336c6bfe2cc5d8ef848043ac84ec57649b..587db7483f2557c109f4e04f31cb6cf24bc072d9 100644 (file)
@@ -24,6 +24,7 @@
 #define IGC_DEV_ID_I225_K2                     0x3101
 #define IGC_DEV_ID_I226_K                      0x3102
 #define IGC_DEV_ID_I225_LMVP                   0x5502
+#define IGC_DEV_ID_I226_LMVP                   0x5503
 #define IGC_DEV_ID_I225_IT                     0x0D9F
 #define IGC_DEV_ID_I226_LM                     0x125B
 #define IGC_DEV_ID_I226_V                      0x125C
index 7ffb1045f00c2287e2ea7f12ef56ca4ace4a1889..8e448288ee2657183db69c515fb9c2b9b84981e5 100644 (file)
@@ -56,6 +56,7 @@ static const struct pci_device_id igc_pci_tbl[] = {
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_K2), board_base },
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I226_K), board_base },
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_LMVP), board_base },
+       { PCI_VDEVICE(INTEL, IGC_DEV_ID_I226_LMVP), board_base },
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_IT), board_base },
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I226_LM), board_base },
        { PCI_VDEVICE(INTEL, IGC_DEV_ID_I226_V), board_base },