|
@@ -2856,6 +2856,7 @@ void hif_process_runtime_resume_success(struct hif_opaque_softc *hif_ctx)
|
|
|
*/
|
|
|
int hif_runtime_suspend(struct hif_opaque_softc *hif_ctx)
|
|
|
{
|
|
|
+ struct hif_pci_softc *sc = HIF_GET_PCI_SOFTC(hif_ctx);
|
|
|
int errno;
|
|
|
|
|
|
errno = hif_bus_suspend(hif_ctx);
|
|
@@ -2873,6 +2874,8 @@ int hif_runtime_suspend(struct hif_opaque_softc *hif_ctx)
|
|
|
goto bus_resume;
|
|
|
}
|
|
|
|
|
|
+ qdf_atomic_set(&sc->pm_dp_rx_busy, 0);
|
|
|
+
|
|
|
return 0;
|
|
|
|
|
|
bus_resume:
|
|
@@ -4522,6 +4525,58 @@ void hif_pm_runtime_set_monitor_wake_intr(struct hif_opaque_softc *hif_ctx,
|
|
|
|
|
|
qdf_atomic_set(&sc->monitor_wake_intr, val);
|
|
|
}
|
|
|
+
|
|
|
+/**
|
|
|
+ * hif_pm_runtime_mark_dp_rx_busy() - Set last busy mark my data path
|
|
|
+ * @hif_ctx: HIF context
|
|
|
+ *
|
|
|
+ * Return: void
|
|
|
+ */
|
|
|
+void hif_pm_runtime_mark_dp_rx_busy(struct hif_opaque_softc *hif_ctx)
|
|
|
+{
|
|
|
+ struct hif_pci_softc *sc = HIF_GET_PCI_SOFTC(hif_ctx);
|
|
|
+
|
|
|
+ if (!sc)
|
|
|
+ return;
|
|
|
+
|
|
|
+ qdf_atomic_set(&sc->pm_dp_rx_busy, 1);
|
|
|
+ sc->dp_last_busy_timestamp = qdf_get_log_timestamp_usecs();
|
|
|
+
|
|
|
+ hif_pm_runtime_mark_last_busy(hif_ctx);
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * hif_pm_runtime_is_dp_rx_busy() - Check if last mark busy by dp rx
|
|
|
+ * @hif_ctx: HIF context
|
|
|
+ *
|
|
|
+ * Return: dp rx busy set value
|
|
|
+ */
|
|
|
+int hif_pm_runtime_is_dp_rx_busy(struct hif_opaque_softc *hif_ctx)
|
|
|
+{
|
|
|
+ struct hif_pci_softc *sc = HIF_GET_PCI_SOFTC(hif_ctx);
|
|
|
+
|
|
|
+ if (!sc)
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ return qdf_atomic_read(&sc->pm_dp_rx_busy);
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * hif_pm_runtime_get_dp_rx_busy_mark() - Get last busy by dp rx timestamp
|
|
|
+ * @hif_ctx: HIF context
|
|
|
+ *
|
|
|
+ * Return: timestamp of last mark busy by dp rx
|
|
|
+ */
|
|
|
+qdf_time_t hif_pm_runtime_get_dp_rx_busy_mark(struct hif_opaque_softc *hif_ctx)
|
|
|
+{
|
|
|
+ struct hif_pci_softc *sc = HIF_GET_PCI_SOFTC(hif_ctx);
|
|
|
+
|
|
|
+ if (!sc)
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ return sc->dp_last_busy_timestamp;
|
|
|
+}
|
|
|
+
|
|
|
#endif /* FEATURE_RUNTIME_PM */
|
|
|
|
|
|
int hif_pci_legacy_map_ce_to_irq(struct hif_softc *scn, int ce_id)
|