All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-wired-lan] [PATCH] e1000e: Fixed issue with LSC pending.
@ 2020-04-17 11:06 andrew
  2020-04-17 18:40 ` Jesse Brandeburg
  2020-04-17 19:31 ` Alexander Duyck
  0 siblings, 2 replies; 3+ messages in thread
From: andrew @ 2020-04-17 11:06 UTC (permalink / raw)
  To: intel-wired-lan

From: Andrew Melnychenko <andrew@daynix.com>

Bug: https://bugzilla.redhat.com/show_bug.cgi?id=1707441
The issue was detected with QEMU and doesn't reproduce on Windows guest.
CTRL_EXT.IAME is disabled by
rev 0a8047ac68e50e4ccbadcfc6b6b070805b976885:
"to avoid disruption from potential programs that access the registers
directly."
So let's leave it like that and add interrupt pending clearance
using write to ICR. It fixes the issue when removed cable can't be detected
by the driver.

Signed-off-by: Andrew Melnychenko <andrew@daynix.com>
---
 drivers/net/ethernet/intel/e1000e/netdev.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c
index 177c6da80c57..064bb4a47131 100644
--- a/drivers/net/ethernet/intel/e1000e/netdev.c
+++ b/drivers/net/ethernet/intel/e1000e/netdev.c
@@ -1898,6 +1898,9 @@ static irqreturn_t e1000_msix_other(int __always_unused irq, void *data)
 	struct e1000_hw *hw = &adapter->hw;
 	u32 icr = er32(ICR);
 
+	if (!(er32(CTRL_EXT) & E1000_CTRL_EXT_IAME))
+		ew32(ICR, icr & ~E1000_ICR_INT_ASSERTED);
+
 	if (icr & adapter->eiac_mask)
 		ew32(ICS, (icr & adapter->eiac_mask));
 
-- 
2.24.1


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

end of thread, other threads:[~2020-04-17 19:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-17 11:06 [Intel-wired-lan] [PATCH] e1000e: Fixed issue with LSC pending andrew
2020-04-17 18:40 ` Jesse Brandeburg
2020-04-17 19:31 ` Alexander Duyck

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.