Переглянути джерело

qcacmn: cancel target sleep timer in hif suspend callback

According to PCIe controller suspend logic, RC will disable its regulator
and clock in suspend phase that means in noirq suspend phase, client EP
should not access PCIe bus anymore.
Target sleep timer will access soc register, so wlan driver needs
guarantee this timer is stopped after RC shutdown its power and clock.

CRs-Fixed: 2376675
Change-Id: If76abab1fd4d8d6f36beb13d1b62a7e0a0e7aa4f
Kai Liu 6 роки тому
батько
коміт
f26fa0e5a4
1 змінених файлів з 2 додано та 3 видалено
  1. 2 3
      hif/src/pcie/if_pci.c

+ 2 - 3
hif/src/pcie/if_pci.c

@@ -2532,6 +2532,8 @@ void hif_pci_prevent_linkdown(struct hif_softc *scn, bool flag)
  */
 int hif_pci_bus_suspend(struct hif_softc *scn)
 {
+	/* Stop the HIF Sleep Timer */
+	hif_cancel_deferred_target_sleep(scn);
 	return 0;
 }
 
@@ -2598,9 +2600,6 @@ int hif_pci_bus_suspend_noirq(struct hif_softc *scn)
 	if (hif_drain_tasklets(scn) != 0)
 		return -EBUSY;
 
-	/* Stop the HIF Sleep Timer */
-	hif_cancel_deferred_target_sleep(scn);
-
 	if (hif_can_suspend_link(GET_HIF_OPAQUE_HDL(scn)))
 		qdf_atomic_set(&scn->link_suspended, 1);