|
@@ -769,6 +769,129 @@ get_twt_stats_fail:
|
|
|
|
|
|
return NULL;
|
|
|
}
|
|
|
+
|
|
|
+/**
|
|
|
+ * infra_cp_stats_reset_cb() - callback function to handle stats event
|
|
|
+ * due to reset action
|
|
|
+ * @ev: stats event buffer
|
|
|
+ * @cookie: a cookie for the request context
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static void infra_cp_stats_reset_cb(struct infra_cp_stats_event *ev,
|
|
|
+ void *cookie)
|
|
|
+{
|
|
|
+ struct infra_cp_stats_event *priv;
|
|
|
+ struct osif_request *request;
|
|
|
+
|
|
|
+ request = osif_request_get(cookie);
|
|
|
+ if (!request) {
|
|
|
+ osif_err("Obsolete request");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ priv = osif_request_priv(request);
|
|
|
+
|
|
|
+ osif_debug("clear stats action %d req_id %d, status %d num_cp_stats %d",
|
|
|
+ ev->action, ev->request_id, ev->status,
|
|
|
+ ev->num_twt_infra_cp_stats);
|
|
|
+
|
|
|
+ osif_request_complete(request);
|
|
|
+ osif_request_put(request);
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @wlan_cfg80211_mc_twt_clear_infra_cp_stats() - send clear twt statistics
|
|
|
+ * request to firmware
|
|
|
+ * @vdev: vdev id
|
|
|
+ * @dialog_id: dialog id of the twt session.
|
|
|
+ * @twt_peer_mac: peer mac address
|
|
|
+ *
|
|
|
+ * Return: 0 for success or error code for failure
|
|
|
+ */
|
|
|
+int
|
|
|
+wlan_cfg80211_mc_twt_clear_infra_cp_stats(
|
|
|
+ struct wlan_objmgr_vdev *vdev,
|
|
|
+ uint32_t dialog_id,
|
|
|
+ uint8_t twt_peer_mac[QDF_MAC_ADDR_SIZE])
|
|
|
+{
|
|
|
+ int ret;
|
|
|
+ void *cookie;
|
|
|
+ QDF_STATUS status;
|
|
|
+ struct infra_cp_stats_event *priv;
|
|
|
+ struct wlan_objmgr_peer *peer;
|
|
|
+ struct osif_request *request;
|
|
|
+ struct infra_cp_stats_cmd_info info = {0};
|
|
|
+ static const struct osif_request_params params = {
|
|
|
+ .priv_size = sizeof(*priv),
|
|
|
+ .timeout_ms = 2 * CP_STATS_WAIT_TIME_STAT,
|
|
|
+ .dealloc = wlan_cfg80211_mc_infra_cp_stats_dealloc,
|
|
|
+ };
|
|
|
+
|
|
|
+ osif_debug("Enter");
|
|
|
+
|
|
|
+ request = osif_request_alloc(¶ms);
|
|
|
+ if (!request)
|
|
|
+ return -ENOMEM;
|
|
|
+
|
|
|
+ cookie = osif_request_cookie(request);
|
|
|
+ priv = osif_request_priv(request);
|
|
|
+
|
|
|
+ priv->twt_infra_cp_stats =
|
|
|
+ qdf_mem_malloc(sizeof(*priv->twt_infra_cp_stats));
|
|
|
+ if (!priv->twt_infra_cp_stats) {
|
|
|
+ ret = -ENOMEM;
|
|
|
+ goto clear_twt_stats_fail;
|
|
|
+ }
|
|
|
+
|
|
|
+ info.request_cookie = cookie;
|
|
|
+ info.stats_id = TYPE_REQ_CTRL_PATH_TWT_STAT;
|
|
|
+ info.action = ACTION_REQ_CTRL_PATH_STAT_RESET;
|
|
|
+
|
|
|
+ info.infra_cp_stats_resp_cb = infra_cp_stats_reset_cb;
|
|
|
+ info.num_pdev_ids = 0;
|
|
|
+ info.num_vdev_ids = MAX_TWT_STAT_VDEV_ENTRIES;
|
|
|
+ info.vdev_id[0] = wlan_vdev_get_id(vdev);
|
|
|
+ info.num_mac_addr_list = MAX_TWT_STAT_MAC_ADDR_ENTRIES;
|
|
|
+ qdf_mem_copy(&info.peer_mac_addr[0], twt_peer_mac, QDF_MAC_ADDR_SIZE);
|
|
|
+
|
|
|
+ info.dialog_id = dialog_id;
|
|
|
+ info.num_pdev_ids = 0;
|
|
|
+
|
|
|
+ peer = wlan_objmgr_vdev_try_get_bsspeer(vdev, WLAN_CP_STATS_ID);
|
|
|
+ if (!peer) {
|
|
|
+ osif_err("peer is null");
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto clear_twt_stats_fail;
|
|
|
+ }
|
|
|
+ wlan_objmgr_peer_release_ref(peer, WLAN_CP_STATS_ID);
|
|
|
+
|
|
|
+ status = ucfg_infra_cp_stats_register_resp_cb(wlan_vdev_get_psoc(vdev),
|
|
|
+ &info);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ osif_err("Failed to register resp callback: %d", status);
|
|
|
+ ret = qdf_status_to_os_return(status);
|
|
|
+ goto clear_twt_stats_fail;
|
|
|
+ }
|
|
|
+
|
|
|
+ status = ucfg_send_infra_cp_stats_request(vdev, &info);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ osif_err("Failed to send twt stats request status: %d",
|
|
|
+ status);
|
|
|
+ ret = qdf_status_to_os_return(status);
|
|
|
+ goto clear_twt_stats_fail;
|
|
|
+ }
|
|
|
+
|
|
|
+ ret = osif_request_wait_for_response(request);
|
|
|
+ if (ret)
|
|
|
+ osif_err("wait failed or timed out ret: %d", ret);
|
|
|
+
|
|
|
+clear_twt_stats_fail:
|
|
|
+ osif_request_put(request);
|
|
|
+ osif_debug("Exit");
|
|
|
+
|
|
|
+ return ret;
|
|
|
+}
|
|
|
#endif
|
|
|
#endif /* WLAN_SUPPORT_INFRA_CTRL_PATH_STATS */
|
|
|
|