All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-wired-lan] [PATCH] e1000e: Link flap workaround option for false IRP events
@ 2025-02-26 19:44 ` Mark Pearson
  0 siblings, 0 replies; 22+ messages in thread
From: Mark Pearson @ 2025-02-26 19:44 UTC (permalink / raw)
  To: mpearson-lenovo
  Cc: anthony.l.nguyen, przemyslaw.kitszel, andrew+netdev, davem,
	edumazet, kuba, pabeni, intel-wired-lan, netdev, linux-kernel

Issue is seen on some Lenovo desktop workstations where there
is a false IRP event which triggers a link flap.
Condition is rare and only seen on networks where link speed
may differ along the path between nodes (e.g 10M/100M)

Intel are not able to determine root cause but provided a
workaround that does fix the issue. Tested extensively at Lenovo.

Adding a module option to enable this workaround for users
who are impacted by this issue.

Signed-off-by: Mark Pearson <mpearson-lenovo@squebb.ca>
---
 drivers/net/ethernet/intel/e1000e/netdev.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c
index 286155efcedf..06774fb4b2dd 100644
--- a/drivers/net/ethernet/intel/e1000e/netdev.c
+++ b/drivers/net/ethernet/intel/e1000e/netdev.c
@@ -37,6 +37,10 @@ static int debug = -1;
 module_param(debug, int, 0);
 MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
 
+static int false_irp_workaround;
+module_param(false_irp_workaround, int, 0);
+MODULE_PARM_DESC(false_irp_workaround, "Enable workaround for rare false IRP event causing link flap");
+
 static const struct e1000_info *e1000_info_tbl[] = {
 	[board_82571]		= &e1000_82571_info,
 	[board_82572]		= &e1000_82572_info,
@@ -1757,6 +1761,21 @@ static irqreturn_t e1000_intr_msi(int __always_unused irq, void *data)
 	/* read ICR disables interrupts using IAM */
 	if (icr & E1000_ICR_LSC) {
 		hw->mac.get_link_status = true;
+
+		/*
+		 * False IRP workaround
+		 * Issue seen on Lenovo P5 and P7 workstations where if there
+		 * are different link speeds in the network a false IRP event
+		 * is received, leading to a link flap.
+		 * Intel unable to determine root cause. This read prevents
+		 * the issue occurring
+		 */
+		if (false_irp_workaround) {
+			u16 phy_data;
+
+			e1e_rphy(hw, PHY_REG(772, 26), &phy_data);
+		}
+
 		/* ICH8 workaround-- Call gig speed drop workaround on cable
 		 * disconnect (LSC) before accessing any PHY registers
 		 */
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2025-03-04 22:24 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-26 19:44 [Intel-wired-lan] [PATCH] e1000e: Link flap workaround option for false IRP events Mark Pearson
2025-02-26 19:44 ` Mark Pearson
2025-02-26 22:52 ` [Intel-wired-lan] " Andrew Lunn
2025-02-26 22:52   ` Andrew Lunn
2025-02-27 15:05   ` [Intel-wired-lan] " Mark Pearson
2025-02-27 15:05     ` Mark Pearson
2025-02-27 16:02     ` [Intel-wired-lan] " Andrew Lunn
2025-02-27 16:02       ` Andrew Lunn
2025-02-27 16:07     ` [Intel-wired-lan] " Andrew Lunn
2025-02-27 16:07       ` Andrew Lunn
2025-02-28 14:59       ` [Intel-wired-lan] " Mark Pearson
2025-02-28 14:59         ` Mark Pearson
2025-02-28 16:37         ` [Intel-wired-lan] " Andrew Lunn
2025-02-28 16:37           ` Andrew Lunn
2025-03-02 13:09         ` [Intel-wired-lan] " Lifshits, Vitaly
2025-03-02 16:13           ` Andrew Lunn
2025-03-03  3:34             ` Mark Pearson
2025-03-04 10:48               ` Lifshits, Vitaly
2025-03-04 13:41                 ` Andrew Lunn
2025-03-04 14:12                 ` Mark Pearson
2025-03-04 22:24                   ` Andrew Lunn
2025-03-03  3:05           ` Mark Pearson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.