Skip to content

Commit c2a3f8f

Browse files
aneftinJeff Kirsher
authored andcommitted
igc: Add new device IDs for i225 part
Add new device IDs for the next step of i225 Signed-off-by: Sasha Neftin <[email protected]> Tested-by: Aaron Brown <[email protected]> Signed-off-by: Jeff Kirsher <[email protected]>
1 parent 0fde6e3 commit c2a3f8f

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

drivers/net/ethernet/intel/igc/igc_base.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,9 @@ static s32 igc_get_invariants_base(struct igc_hw *hw)
212212
case IGC_DEV_ID_I225_I:
213213
case IGC_DEV_ID_I220_V:
214214
case IGC_DEV_ID_I225_K:
215+
case IGC_DEV_ID_I225_K2:
216+
case IGC_DEV_ID_I225_LMVP:
217+
case IGC_DEV_ID_I225_IT:
215218
case IGC_DEV_ID_I225_BLANK_NVM:
216219
mac->type = igc_i225;
217220
break;

drivers/net/ethernet/intel/igc/igc_hw.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
#define IGC_DEV_ID_I225_I 0x15F8
2222
#define IGC_DEV_ID_I220_V 0x15F7
2323
#define IGC_DEV_ID_I225_K 0x3100
24+
#define IGC_DEV_ID_I225_K2 0x3101
25+
#define IGC_DEV_ID_I225_LMVP 0x5502
26+
#define IGC_DEV_ID_I225_IT 0x0D9F
2427
#define IGC_DEV_ID_I225_BLANK_NVM 0x15FD
2528

2629
/* Function pointers for the MAC. */

drivers/net/ethernet/intel/igc/igc_main.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ static const struct pci_device_id igc_pci_tbl[] = {
4747
{ PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_I), board_base },
4848
{ PCI_VDEVICE(INTEL, IGC_DEV_ID_I220_V), board_base },
4949
{ PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_K), board_base },
50+
{ PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_K2), board_base },
51+
{ PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_LMVP), board_base },
52+
{ PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_IT), board_base },
5053
{ PCI_VDEVICE(INTEL, IGC_DEV_ID_I225_BLANK_NVM), board_base },
5154
/* required last entry */
5255
{0, }

0 commit comments

Comments
 (0)