qcacmn: Add WMI for estimated airtime calculation
Add support for sending WMI command to firmware
to measure estimated airtime that a new client
will get and populate the result that firmware
returns in the ESP IE.
Change-Id: Ic5fcb11100ecd0597ba02dfa5512e2f4ff3558c9
CRs-Fixed: 2261469
diff --git a/wmi_unified_api.c b/wmi_unified_api.c
index 562b605..eb94cba 100644
--- a/wmi_unified_api.c
+++ b/wmi_unified_api.c
@@ -5423,6 +5423,27 @@
}
/**
+ * wmi_extract_esp_estimate_ev_param() - extract air time from event
+ * @wmi_handle: wmi handle
+ * @evt_buf: pointer to event buffer
+ * @param: Pointer to hold esp event
+ *
+ * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
+ */
+QDF_STATUS
+wmi_extract_esp_estimate_ev_param(void *wmi_hdl, void *evt_buf,
+ struct esp_estimation_event *param)
+{
+ wmi_unified_t wmi_handle = (wmi_unified_t)wmi_hdl;
+
+ if (wmi_handle->ops->extract_esp_estimation_ev_param)
+ return wmi_handle->ops->extract_esp_estimation_ev_param(
+ wmi_handle, evt_buf, param);
+
+ return QDF_STATUS_E_FAILURE;
+}
+
+/**
* wmi_extract_pdev_caldata_version_check_ev_param() - extract caldata
* from event
* @wmi_handle: wmi handle
diff --git a/wmi_unified_non_tlv.c b/wmi_unified_non_tlv.c
index 0fd91ed..84d1d4e 100644
--- a/wmi_unified_non_tlv.c
+++ b/wmi_unified_non_tlv.c
@@ -6567,8 +6567,29 @@
}
/**
+ * extract_esp_estimation_ev_param_non_tlv() - extract air time from event
+ * @wmi_handle: wmi handle
+ * @evt_buf: pointer to event buffer
+ * @param: Pointer to hold esp event
+ *
+ * Return: QDF_STATUS_SUCCESS
+ */
+QDF_STATUS extract_esp_estimation_ev_param_non_tlv(
+ wmi_unified_t wmi_handle,
+ void *evt_buf,
+ struct esp_estimation_event *param)
+{
+ wmi_esp_estimation_event *event = (wmi_esp_estimation_event *)evt_buf;
+
+ param->ac_airtime_percentage = event->ac_airtime_percentage;
+ param->pdev_id = WMI_NON_TLV_DEFAULT_PDEV_ID;
+
+ return QDF_STATUS_SUCCESS;
+}
+
+/**
* extract_peer_gid_userpos_list_ev_param_non_tlv() - extract gid user position
- * from event
+ * from event
* @wmi_handle: wmi handle
* @param evt_buf: pointer to event buffer
* @param param: Pointer to hold peer user position list
@@ -8866,6 +8887,8 @@
send_dfs_average_radar_params_cmd_non_tlv,
.extract_dfs_status_from_fw = extract_dfs_status_from_fw_non_tlv,
#endif
+ .extract_esp_estimation_ev_param =
+ extract_esp_estimation_ev_param_non_tlv,
};
/**
@@ -9171,6 +9194,8 @@
event_ids[wmi_host_dfs_status_check_event_id] =
WMI_HOST_DFS_STATUS_CHECK_EVENTID;
#endif
+ event_ids[wmi_esp_estimate_event_id] =
+ WMI_ESP_ESTIMATE_EVENTID;
}
/**
@@ -9359,6 +9384,8 @@
pdev_param[wmi_pdev_param_tx_ack_timeout] = WMI_UNAVAILABLE_PARAM;
pdev_param[wmi_pdev_param_soft_tx_chain_mask] =
WMI_PDEV_PARAM_SOFT_TX_CHAIN_MASK;
+ pdev_param[wmi_pdev_param_esp_indication_period] =
+ WMI_PDEV_PARAM_ESP_INDICATION_PERIOD;
pdev_param[wmi_pdev_param_rfkill_enable] = WMI_UNAVAILABLE_PARAM;
pdev_param[wmi_pdev_param_hw_rfkill_config] = WMI_UNAVAILABLE_PARAM;
pdev_param[wmi_pdev_param_low_power_rf_enable] = WMI_UNAVAILABLE_PARAM;