* [Intel-wired-lan] [PATCH v1 1/1] e1000e: Check the PCIm state
@ 2021-06-07 6:19 Sasha Neftin
2021-06-24 13:31 ` Fuxbrumer, Dvora
0 siblings, 1 reply; 2+ messages in thread
From: Sasha Neftin @ 2021-06-07 6:19 UTC (permalink / raw)
To: intel-wired-lan
Complete to commit def4ec6dce393e ("e1000e: PCIm function state support")
Check the PCIm state only on CSME systems. There is no point to do this
check on none CSME systems.
This patch fixes a generation a false-positive warning:
"Error in exiting dmoff"
Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
---
drivers/net/ethernet/intel/e1000e/netdev.c | 24 ++++++++++++----------
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c
index 781b751f066f..6a20c7f82fc9 100644
--- a/drivers/net/ethernet/intel/e1000e/netdev.c
+++ b/drivers/net/ethernet/intel/e1000e/netdev.c
@@ -5225,18 +5225,20 @@ static void e1000_watchdog_task(struct work_struct *work)
pm_runtime_resume(netdev->dev.parent);
/* Checking if MAC is in DMoff state*/
- pcim_state = er32(STATUS);
- while (pcim_state & E1000_STATUS_PCIM_STATE) {
- if (tries++ == dmoff_exit_timeout) {
- e_dbg("Error in exiting dmoff\n");
- break;
- }
- usleep_range(10000, 20000);
+ if (er32(FWSM) & E1000_ICH_FWSM_FW_VALID) {
pcim_state = er32(STATUS);
-
- /* Checking if MAC exited DMoff state */
- if (!(pcim_state & E1000_STATUS_PCIM_STATE))
- e1000_phy_hw_reset(&adapter->hw);
+ while (pcim_state & E1000_STATUS_PCIM_STATE) {
+ if (tries++ == dmoff_exit_timeout) {
+ e_dbg("Error in exiting dmoff\n");
+ break;
+ }
+ usleep_range(10000, 20000);
+ pcim_state = er32(STATUS);
+
+ /* Checking if MAC exited DMoff state */
+ if (!(pcim_state & E1000_STATUS_PCIM_STATE))
+ e1000_phy_hw_reset(&adapter->hw);
+ }
}
/* update snapshot of PHY registers on LSC */
--
2.25.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Intel-wired-lan] [PATCH v1 1/1] e1000e: Check the PCIm state
2021-06-07 6:19 [Intel-wired-lan] [PATCH v1 1/1] e1000e: Check the PCIm state Sasha Neftin
@ 2021-06-24 13:31 ` Fuxbrumer, Dvora
0 siblings, 0 replies; 2+ messages in thread
From: Fuxbrumer, Dvora @ 2021-06-24 13:31 UTC (permalink / raw)
To: intel-wired-lan
On 6/7/2021 09:19, Sasha Neftin wrote:
> Complete to commit def4ec6dce393e ("e1000e: PCIm function state support")
> Check the PCIm state only on CSME systems. There is no point to do this
> check on none CSME systems.
> This patch fixes a generation a false-positive warning:
> "Error in exiting dmoff"
>
> Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
> ---
> drivers/net/ethernet/intel/e1000e/netdev.c | 24 ++++++++++++----------
> 1 file changed, 13 insertions(+), 11 deletions(-)
>
Tested-by: Dvora Fuxbrumer <dvorax.fuxbrumer@linux.intel.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-06-24 13:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-07 6:19 [Intel-wired-lan] [PATCH v1 1/1] e1000e: Check the PCIm state Sasha Neftin
2021-06-24 13:31 ` Fuxbrumer, Dvora
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox