Quellcode durchsuchen

qcacld-3.0: During load/unload ignore pdev suspend ack timeout

qcacld-2.0 to qcacld-3.0 propagation

Ignore the ack timeout in case of load/unload, as FW is anyways going to
get reset. This handles the CDF_BUG assertion when FW crashed during
driver unload and wma_suspend_target fails to receive ACK for pdev
suspend.

Change-Id: I0883c5161c6db18cf7af2b0c0ca23573ecd985ba
CRs-Fixed: 911696
Manjunathappa Prakash vor 9 Jahren
Ursprung
Commit
7b67e626c5
1 geänderte Dateien mit 36 neuen und 11 gelöschten Zeilen
  1. 36 11
      core/wma/src/wma_features.c

+ 36 - 11
core/wma/src/wma_features.c

@@ -5108,6 +5108,41 @@ int wma_bus_resume(void)
 	return __wma_bus_resume(handle);
 }
 
+/**
+ * wma_suspend_target_timeout() - Handles the target suspend timeout
+ * @is_self_recovery_enabled: Is self recovery enabled or not
+ *
+ * Return: NONE
+ */
+#ifdef QCA_WIFI_3_0_ADRASTEA
+static inline void wma_suspend_target_timeout(bool is_self_recovery_enabled)
+{
+	if (cds_is_driver_recovering()) {
+		WMA_LOGE("%s: recovery is in progress, ignore!", __func__);
+	} else {
+		if (is_self_recovery_enabled) {
+			cds_trigger_recovery();
+		} else {
+			QDF_BUG(0);
+		}
+	}
+}
+#else /* ROME chipset */
+static inline void wma_suspend_target_timeout(bool is_self_recovery_enabled)
+{
+	if (cds_is_load_or_unload_in_progress() || cds_is_driver_recovering()) {
+		WMA_LOGE("%s: Unloading/Loading/recovery is in progress, Ignore!",
+			 __func__);
+	} else {
+		if (is_self_recovery_enabled) {
+			cds_trigger_recovery();
+		} else {
+			QDF_BUG(0);
+		}
+	}
+}
+#endif
+
 /**
  * wma_suspend_target() - suspend target
  * @handle: wma handle
@@ -5152,17 +5187,7 @@ QDF_STATUS wma_suspend_target(WMA_HANDLE handle, int disable_target_intr)
 	    != QDF_STATUS_SUCCESS) {
 		WMA_LOGE("Failed to get ACK from firmware for pdev suspend");
 		wmi_set_target_suspend(wma_handle->wmi_handle, false);
-#ifdef CONFIG_CNSS
-		if (!cds_is_driver_recovering()) {
-			if (pmac->sme.enableSelfRecovery) {
-				cds_trigger_recovery();
-			} else {
-				QDF_BUG(0);
-			}
-		} else {
-			WMA_LOGE("%s: LOGP is in progress, ignore!", __func__);
-		}
-#endif
+		wma_suspend_target_timeout(pmac->sme.enableSelfRecovery);
 		return QDF_STATUS_E_FAULT;
 	}