|
@@ -7659,6 +7659,74 @@ void hdd_set_disconnect_status(struct hdd_adapter *adapter, bool status)
|
|
|
hdd_debug("setting disconnection status: %d", status);
|
|
|
}
|
|
|
|
|
|
+#ifdef FEATURE_RUNTIME_PM
|
|
|
+/**
|
|
|
+ * hdd_wlan_register_pm_qos_notifier() - register PM QOS notifier
|
|
|
+ * @hdd_ctx: Pointer to hdd context
|
|
|
+ *
|
|
|
+ * Register for PM QOS change notifications.
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static int hdd_wlan_register_pm_qos_notifier(struct hdd_context *hdd_ctx)
|
|
|
+{
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ /* if gRuntimePM is 1 then feature is enabled without CXPC */
|
|
|
+ if (hdd_ctx->config->runtime_pm != hdd_runtime_pm_dynamic) {
|
|
|
+ hdd_debug("Dynamic Runtime PM disabled");
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ qdf_spinlock_create(&hdd_ctx->pm_qos_lock);
|
|
|
+ hdd_ctx->pm_qos_notifier.notifier_call = wlan_hdd_pm_qos_notify;
|
|
|
+ ret = pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY,
|
|
|
+ &hdd_ctx->pm_qos_notifier);
|
|
|
+ if (ret)
|
|
|
+ hdd_err("Failed to register PM_QOS notifier: %d", ret);
|
|
|
+ else
|
|
|
+ hdd_debug("PM QOS Notifier registered");
|
|
|
+
|
|
|
+ return ret;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * hdd_wlan_unregister_pm_qos_notifier() - unregister PM QOS notifier
|
|
|
+ * @hdd_ctx: Pointer to hdd context
|
|
|
+ *
|
|
|
+ * Unregister for PM QOS change notifications.
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static void hdd_wlan_unregister_pm_qos_notifier(struct hdd_context *hdd_ctx)
|
|
|
+{
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ ret = pm_qos_remove_notifier(PM_QOS_CPU_DMA_LATENCY,
|
|
|
+ &hdd_ctx->pm_qos_notifier);
|
|
|
+ if (ret)
|
|
|
+ hdd_warn("Failed to remove qos notifier, err = %d\n", ret);
|
|
|
+
|
|
|
+ qdf_spin_lock_irqsave(&hdd_ctx->pm_qos_lock);
|
|
|
+
|
|
|
+ if (hdd_ctx->runtime_pm_prevented) {
|
|
|
+ pm_runtime_put_noidle(hdd_ctx->parent_dev);
|
|
|
+ hdd_ctx->runtime_pm_prevented = false;
|
|
|
+ }
|
|
|
+
|
|
|
+ qdf_spin_unlock_irqrestore(&hdd_ctx->pm_qos_lock);
|
|
|
+}
|
|
|
+#else
|
|
|
+static int hdd_wlan_register_pm_qos_notifier(struct hdd_context *hdd_ctx)
|
|
|
+{
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static void hdd_wlan_unregister_pm_qos_notifier(struct hdd_context *hdd_ctx)
|
|
|
+{
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
/**
|
|
|
* hdd_register_notifiers - Register netdev notifiers.
|
|
|
* @hdd_ctx: HDD context
|
|
@@ -7688,15 +7756,21 @@ static int hdd_register_notifiers(struct hdd_context *hdd_ctx)
|
|
|
ret);
|
|
|
goto unregister_inetaddr_notifier;
|
|
|
}
|
|
|
+
|
|
|
+ ret = hdd_wlan_register_pm_qos_notifier(hdd_ctx);
|
|
|
+ if (ret)
|
|
|
+ goto unregister_nud_notifier;
|
|
|
+
|
|
|
return 0;
|
|
|
|
|
|
+unregister_nud_notifier:
|
|
|
+ hdd_nud_unregister_netevent_notifier(hdd_ctx);
|
|
|
unregister_inetaddr_notifier:
|
|
|
unregister_inetaddr_notifier(&hdd_ctx->ipv4_notifier);
|
|
|
unregister_ip6_notifier:
|
|
|
hdd_wlan_unregister_ip6_notifier(hdd_ctx);
|
|
|
out:
|
|
|
return ret;
|
|
|
-
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -7709,6 +7783,7 @@ out:
|
|
|
*/
|
|
|
void hdd_unregister_notifiers(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
+ hdd_wlan_unregister_pm_qos_notifier(hdd_ctx);
|
|
|
hdd_nud_unregister_netevent_notifier(hdd_ctx);
|
|
|
hdd_wlan_unregister_ip6_notifier(hdd_ctx);
|
|
|
|
|
@@ -8346,6 +8421,21 @@ static inline void hdd_pm_qos_update_cpu_mask(cpumask_t *mask,
|
|
|
*
|
|
|
* Return: none
|
|
|
*/
|
|
|
+#ifdef FEATURE_RUNTIME_PM
|
|
|
+static inline void hdd_pm_qos_update_request(struct hdd_context *hdd_ctx,
|
|
|
+ cpumask_t *pm_qos_cpu_mask)
|
|
|
+{
|
|
|
+ cpumask_copy(&hdd_ctx->pm_qos_req.cpus_affine, pm_qos_cpu_mask);
|
|
|
+
|
|
|
+ /* Latency value to be read from INI */
|
|
|
+ if (cpumask_empty(pm_qos_cpu_mask) &&
|
|
|
+ hdd_ctx->config->runtime_pm == hdd_runtime_pm_dynamic)
|
|
|
+ pm_qos_update_request(&hdd_ctx->pm_qos_req,
|
|
|
+ PM_QOS_DEFAULT_VALUE);
|
|
|
+ else
|
|
|
+ pm_qos_update_request(&hdd_ctx->pm_qos_req, 1);
|
|
|
+}
|
|
|
+#else
|
|
|
static inline void hdd_pm_qos_update_request(struct hdd_context *hdd_ctx,
|
|
|
cpumask_t *pm_qos_cpu_mask)
|
|
|
{
|
|
@@ -8358,6 +8448,7 @@ static inline void hdd_pm_qos_update_request(struct hdd_context *hdd_ctx,
|
|
|
else
|
|
|
pm_qos_update_request(&hdd_ctx->pm_qos_req, 1);
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
/**
|