Browse Source

qcacld-3.0: Always kick htc queue if suspend failure

Possible wmi cmd is queued in suspend, if no more
htc_try_send comes from credit response or new wmi
cmd, wmi cmd will pending.

Fix is always kick htc queue if suspend failure.

Change-Id: I05e0cd6983e1d27de5bf109c3ddf05e4bdc12fd8
CRs-Fixed: 2895808
Jingxiang Ge 4 năm trước cách đây
mục cha
commit
f375f66fe5
1 tập tin đã thay đổi với 7 bổ sung9 xóa
  1. 7 9
      components/pmo/core/src/wlan_pmo_suspend_resume.c

+ 7 - 9
components/pmo/core/src/wlan_pmo_suspend_resume.c

@@ -1015,7 +1015,7 @@ QDF_STATUS pmo_core_psoc_bus_runtime_suspend(struct wlan_objmgr_psoc *psoc,
 	ret = hif_pre_runtime_suspend(hif_ctx);
 	if (ret) {
 		status = qdf_status_from_os_return(ret);
-		goto pre_runtime_failure;
+		goto runtime_failure;
 	}
 
 	status = cdp_runtime_suspend(dp_soc, pdev_id);
@@ -1110,17 +1110,15 @@ cdp_runtime_resume:
 	PMO_CORE_PSOC_RUNTIME_PM_QDF_BUG(QDF_STATUS_SUCCESS !=
 		cdp_runtime_resume(dp_soc, pdev_id));
 
-/*
- * A race condition was observed where htc_try_send was called before
- * runtime pm state was set to active and it was not called again.
- * Schedule HTC queue kicker here to send the pending commands.
- */
 runtime_failure:
-	PMO_CORE_PSOC_RUNTIME_PM_QDF_BUG(htc_runtime_resume(htc_ctx));
-
-pre_runtime_failure:
 	hif_process_runtime_suspend_failure(hif_ctx);
 
+/* always make sure HTC queue kicker is at the end, so if any
+ * cmd is pending during suspending, it can re-trigger if suspend
+ * failure.
+ */
+PMO_CORE_PSOC_RUNTIME_PM_QDF_BUG(htc_runtime_resume(htc_ctx));
+
 dec_psoc_ref:
 	pmo_psoc_put_ref(psoc);