|
@@ -6404,7 +6404,7 @@ void hdd_send_roam_scan_ch_list_event(struct hdd_context *hdd_ctx,
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * wlan_hdd_send_roam_auth_event() - Send the roamed and authorized event
|
|
|
+ * lan_hdd_send_roam_auth_event() - Send the roamed and authorized event
|
|
|
* @adapter: Pointer to adapter struct
|
|
|
* @bssid: pointer to bssid of roamed AP.
|
|
|
* @req_rsn_ie: Pointer to request RSN IE
|
|
@@ -7777,6 +7777,28 @@ static int hdd_config_total_beacon_miss_count(struct hdd_adapter *adapter,
|
|
|
return qdf_status_to_os_return(status);
|
|
|
}
|
|
|
|
|
|
+#if defined(CLD_PM_QOS) && defined(WLAN_FEATURE_LL_MODE)
|
|
|
+void wlan_hdd_set_wlm_mode(struct hdd_context *hdd_ctx, uint16_t latency_level)
|
|
|
+{
|
|
|
+ if (latency_level ==
|
|
|
+ QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_ULTRALOW) {
|
|
|
+ hdd_ctx->llm_enabled = true;
|
|
|
+ if (!hdd_ctx->hbw_requested) {
|
|
|
+ pm_qos_update_request(&hdd_ctx->pm_qos_req,
|
|
|
+ DISABLE_KRAIT_IDLE_PS_VAL);
|
|
|
+ hdd_ctx->hbw_requested = true;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if (hdd_ctx->hbw_requested) {
|
|
|
+ pm_qos_update_request(&hdd_ctx->pm_qos_req,
|
|
|
+ PM_QOS_DEFAULT_VALUE);
|
|
|
+ hdd_ctx->hbw_requested = false;
|
|
|
+ }
|
|
|
+ hdd_ctx->llm_enabled = false;
|
|
|
+ }
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
static int hdd_config_latency_level(struct hdd_adapter *adapter,
|
|
|
const struct nlattr *attr)
|
|
|
{
|
|
@@ -7797,6 +7819,8 @@ static int hdd_config_latency_level(struct hdd_adapter *adapter,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
+ wlan_hdd_set_wlm_mode(hdd_ctx, latency_level);
|
|
|
+
|
|
|
/* Map the latency value to the level which fw expected
|
|
|
* 0 - normal, 1 - moderate, 2 - low, 3 - ultralow
|
|
|
*/
|