Forráskód Böngészése

qcacld-3.0: Initiate ipa cleanup as part of the shutdown sequence

Currently as part of the linkdown detection in the RTPM resume sequence
host cleans up below:

a.	Intimating the kernel for the pending scan complete
b.	Setting the wmi flag to make sure there is no CE access
	to send the wmi commands.
c.	Notifying the IPA to disable the IPA pipes.

Performing operation c) involves accessing ipa doorbell register
by doing soc force wake resulting in internally again calling
runtime_resume leading to deadlock.

Initiate ipa cleanup as part of the shutdown sequence rather than
early cleanup.

Change-Id: I1edb44fbdefad3c21bd60a42baa285705a7ed4a9
CRs-Fixed: 3719988
Arun Kumar Khandavalli 1 éve
szülő
commit
0b18742864
2 módosított fájl, 9 hozzáadás és 9 törlés
  1. 1 9
      core/hdd/src/wlan_hdd_driver_ops.c
  2. 8 0
      core/hdd/src/wlan_hdd_power.c

+ 1 - 9
core/hdd/src/wlan_hdd_driver_ops.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2015-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2024 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -310,14 +310,6 @@ static void hdd_psoc_shutdown_notify(struct hdd_context *hdd_ctx)
 	hdd_enter();
 	wlan_cfg80211_cleanup_scan_queue(hdd_ctx->pdev, NULL);
 
-	if (ucfg_ipa_is_enabled()) {
-		ucfg_ipa_uc_force_pipe_shutdown(hdd_ctx->pdev);
-
-		if (pld_is_fw_rejuvenate(hdd_ctx->parent_dev) ||
-		    pld_is_pdr(hdd_ctx->parent_dev))
-			ucfg_ipa_fw_rejuvenate_send_msg(hdd_ctx->pdev);
-	}
-
 	cds_shutdown_notifier_call();
 	cds_shutdown_notifier_purge();
 

+ 8 - 0
core/hdd/src/wlan_hdd_power.c

@@ -1881,6 +1881,14 @@ QDF_STATUS hdd_wlan_shutdown(void)
 	if (!hdd_ctx)
 		return QDF_STATUS_E_FAILURE;
 
+	if (ucfg_ipa_is_enabled()) {
+		ucfg_ipa_uc_force_pipe_shutdown(hdd_ctx->pdev);
+
+		if (pld_is_fw_rejuvenate(hdd_ctx->parent_dev) ||
+		    pld_is_pdr(hdd_ctx->parent_dev))
+			ucfg_ipa_fw_rejuvenate_send_msg(hdd_ctx->pdev);
+	}
+
 	hdd_set_connection_in_progress(false);
 
 	hdd_debug("Invoking packetdump deregistration API");