All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-wired-lan] [PATCH iwl-next] ixgbe: increase SWFW semaphore timeout for X550 FW updates
@ 2026-03-27  7:30 ` Aleksandr Loktionov
  0 siblings, 0 replies; 60+ messages in thread
From: Aleksandr Loktionov @ 2026-03-27  7:30 UTC (permalink / raw)
  To: intel-wired-lan, anthony.l.nguyen, aleksandr.loktionov; +Cc: netdev

From: Soumen Karmakar <soumen.karmakar@intel.com>

According to FW documentation, the most time-consuming part of continuous
FW activity is Shadow RAM (SR) dump which takes up to 3.2 seconds.  For
X550 devices, the module-update FW command can take over 4.5 s.  Increase
the max Software/Firmware (SW/FW) semaphore wait time from the default
200 ms to 5 s for X550 to avoid spurious semaphore timeout failures
during FW update operations.

Signed-off-by: Soumen Karmakar <soumen.karmakar@intel.com>
Signed-off-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
---
 drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c
index e67e2fe..85047ef 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c
@@ -577,6 +577,9 @@ int ixgbe_acquire_swfw_sync_X540(struct ixgbe_hw *hw, u32 mask)
 
 	swmask |= swi2c_mask;
 	fwmask |= swi2c_mask << 2;
+	if (hw->mac.type == ixgbe_mac_X550)
+		timeout = 1000;
+
 	for (i = 0; i < timeout; i++) {
 		/* SW NVM semaphore bit is used for access to all
 		 * SW_FW_SYNC bits (not just NVM)
-- 
2.52.0


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

end of thread, other threads:[~2026-04-06 14:07 UTC | newest]

Thread overview: 60+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-27  7:30 [Intel-wired-lan] [PATCH iwl-next] ixgbe: increase SWFW semaphore timeout for X550 FW updates Aleksandr Loktionov
2026-03-27  7:30 ` Aleksandr Loktionov
2026-03-27  7:30 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: add bounds check for debugfs register access Aleksandr Loktionov
2026-03-27  7:30   ` Aleksandr Loktionov
2026-04-03 13:36   ` [Intel-wired-lan] " Simon Horman
2026-04-03 13:36     ` Simon Horman
2026-03-27  7:30 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: clean up adaptive interrupt moderation algorithm Aleksandr Loktionov
2026-03-27  7:30   ` Aleksandr Loktionov
2026-04-03 13:31   ` [Intel-wired-lan] " Simon Horman
2026-04-03 13:31     ` Simon Horman
2026-03-27  7:30 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: remove ixgbe_ping_all_vfs() from watchdog link-up handler Aleksandr Loktionov
2026-03-27  7:30   ` Aleksandr Loktionov
2026-04-03 13:25   ` [Intel-wired-lan] " Simon Horman
2026-03-27  7:30 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: use ktime_get_real_ns() in ixgbe_ptp_reset() Aleksandr Loktionov
2026-03-27  7:30   ` Aleksandr Loktionov
2026-04-03 13:10   ` [Intel-wired-lan] " Simon Horman
2026-04-03 13:10     ` Simon Horman
2026-04-03 13:11     ` [Intel-wired-lan] " Simon Horman
2026-04-03 13:11       ` Simon Horman
2026-04-03 20:26       ` [Intel-wired-lan] " Keller, Jacob E
2026-04-03 20:26         ` Keller, Jacob E
2026-04-06 14:07         ` [Intel-wired-lan] " Simon Horman
2026-04-06 14:07           ` Simon Horman
2026-03-27  7:30 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: call ixgbe_setup_fc() before fc_enable() after NVM update Aleksandr Loktionov
2026-03-27  7:30   ` Aleksandr Loktionov
2026-04-03 13:38   ` [Intel-wired-lan] " Simon Horman
2026-04-03 13:38     ` Simon Horman
2026-04-03 13:39   ` [Intel-wired-lan] " Simon Horman
2026-03-27  7:30 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: replace GFP_ATOMIC with GFP_KERNEL in ixgbe_fcoe_ddp_setup() Aleksandr Loktionov
2026-03-27  7:30   ` Aleksandr Loktionov
2026-04-03 13:21   ` [Intel-wired-lan] " Simon Horman
2026-04-03 13:38   ` Kohei Enju
2026-03-27  7:30 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: fix cls_u32 nexthdr path returning success when no entry installed Aleksandr Loktionov
2026-03-27  7:30   ` Aleksandr Loktionov
2026-04-03 13:46   ` [Intel-wired-lan] " Simon Horman
2026-04-03 13:46     ` Simon Horman
2026-03-27  7:30 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: use int instead of u32 for error code variables Aleksandr Loktionov
2026-03-27  7:30   ` Aleksandr Loktionov
2026-04-03 13:41   ` [Intel-wired-lan] " Simon Horman
2026-04-03 13:41     ` Simon Horman
2026-03-27  7:30 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: fix integer overflow and wrong bit position in ixgbe_validate_rtr() Aleksandr Loktionov
2026-03-27  7:30   ` Aleksandr Loktionov
2026-04-03  8:41   ` [Intel-wired-lan] " Simon Horman
2026-04-03  8:41     ` Simon Horman
2026-04-03 10:00   ` [Intel-wired-lan] " David Laight
2026-04-03 10:00     ` David Laight
2026-03-27  7:30 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: fix ITR value overflow in adaptive interrupt throttling Aleksandr Loktionov
2026-03-27  7:30   ` Aleksandr Loktionov
2026-04-03 13:18   ` [Intel-wired-lan] " Simon Horman
2026-04-03 13:18     ` Simon Horman
2026-04-03 16:12     ` [Intel-wired-lan] " Loktionov, Aleksandr
2026-04-03 16:12       ` Loktionov, Aleksandr
2026-04-06 14:06       ` [Intel-wired-lan] " Simon Horman
2026-04-06 14:06         ` Simon Horman
2026-03-27  7:30 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: extend 5 s SWFW semaphore timeout to all X550EM variants Aleksandr Loktionov
2026-03-27  7:30   ` Aleksandr Loktionov
2026-04-03 20:55   ` [Intel-wired-lan] " Tony Nguyen
2026-04-03 20:55     ` Tony Nguyen
2026-04-03 12:49 ` [Intel-wired-lan] [PATCH iwl-next] ixgbe: increase SWFW semaphore timeout for X550 FW updates Simon Horman
2026-04-03 12:49   ` Simon Horman

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.