Skip to content

Commit f1e0b72

Browse files
committed
e1000e: change I219 (19) devices to ADP
JIRA: https://issues.redhat.com/browse/RHEL-49812 commit 9d9e534 Author: Vitaly Lifshits <[email protected]> Date: Sun Sep 8 09:49:17 2024 +0300 e1000e: change I219 (19) devices to ADP Sporadic issues, such as PHY access loss, have been observed on I219 (19) devices. It was found that these devices have hardware more closely related to ADP than MTP and the issues were caused by taking MTP-specific flows. Change the MAC and board types of these devices from MTP to ADP to correctly reflect the LAN hardware, and flows, of these devices. Fixes: db2d737 ("e1000e: Separate MTP board type from ADP") Signed-off-by: Vitaly Lifshits <[email protected]> Tested-by: Mor Bar-Gabay <[email protected]> Signed-off-by: Tony Nguyen <[email protected]> Signed-off-by: Ivan Vecera <[email protected]>
1 parent 804f638 commit f1e0b72

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

drivers/net/ethernet/intel/e1000e/hw.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ struct e1000_hw;
108108
#define E1000_DEV_ID_PCH_RPL_I219_V22 0x0DC8
109109
#define E1000_DEV_ID_PCH_MTP_I219_LM18 0x550A
110110
#define E1000_DEV_ID_PCH_MTP_I219_V18 0x550B
111-
#define E1000_DEV_ID_PCH_MTP_I219_LM19 0x550C
112-
#define E1000_DEV_ID_PCH_MTP_I219_V19 0x550D
111+
#define E1000_DEV_ID_PCH_ADP_I219_LM19 0x550C
112+
#define E1000_DEV_ID_PCH_ADP_I219_V19 0x550D
113113
#define E1000_DEV_ID_PCH_LNP_I219_LM20 0x550E
114114
#define E1000_DEV_ID_PCH_LNP_I219_V20 0x550F
115115
#define E1000_DEV_ID_PCH_LNP_I219_LM21 0x5510

drivers/net/ethernet/intel/e1000e/netdev.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7899,10 +7899,10 @@ static const struct pci_device_id e1000_pci_tbl[] = {
78997899
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ADP_I219_V17), board_pch_adp },
79007900
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_RPL_I219_LM22), board_pch_adp },
79017901
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_RPL_I219_V22), board_pch_adp },
7902+
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ADP_I219_LM19), board_pch_adp },
7903+
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ADP_I219_V19), board_pch_adp },
79027904
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_MTP_I219_LM18), board_pch_mtp },
79037905
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_MTP_I219_V18), board_pch_mtp },
7904-
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_MTP_I219_LM19), board_pch_mtp },
7905-
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_MTP_I219_V19), board_pch_mtp },
79067906
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LNP_I219_LM20), board_pch_mtp },
79077907
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LNP_I219_V20), board_pch_mtp },
79087908
{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LNP_I219_LM21), board_pch_mtp },

0 commit comments

Comments
 (0)