|
@@ -115,6 +115,7 @@ static void peer_rssi_iterator(struct wlan_objmgr_pdev *pdev,
|
|
|
struct stats_event *ev;
|
|
|
struct peer_mc_cp_stats *peer_mc_stats;
|
|
|
struct peer_cp_stats *peer_cp_stats_priv;
|
|
|
+ struct peer_extd_stats *peer_extd_mc_stats;
|
|
|
|
|
|
if (WLAN_PEER_SELF == wlan_peer_get_peer_type(peer)) {
|
|
|
cp_stats_err("ignore self peer: %pM",
|
|
@@ -133,6 +134,10 @@ static void peer_rssi_iterator(struct wlan_objmgr_pdev *pdev,
|
|
|
ev = arg;
|
|
|
ev->peer_stats[ev->num_peer_stats] = *peer_mc_stats;
|
|
|
ev->num_peer_stats++;
|
|
|
+
|
|
|
+ peer_extd_mc_stats = peer_cp_stats_priv->peer_extd_stats;
|
|
|
+ ev->peer_extended_stats[ev->num_peer_extd_stats] = *peer_extd_mc_stats;
|
|
|
+ ev->num_peer_extd_stats++;
|
|
|
wlan_cp_stats_peer_obj_unlock(peer_cp_stats_priv);
|
|
|
}
|
|
|
|
|
@@ -147,6 +152,7 @@ tgt_mc_cp_stats_prepare_raw_peer_rssi(struct wlan_objmgr_psoc *psoc,
|
|
|
struct wlan_objmgr_vdev *vdev;
|
|
|
struct wlan_objmgr_peer *peer = NULL;
|
|
|
struct peer_mc_cp_stats *peer_mc_stats;
|
|
|
+ struct peer_extd_stats *peer_mc_extd_stats;
|
|
|
struct peer_cp_stats *peer_cp_stats_priv;
|
|
|
void (*get_peer_rssi_cb)(struct stats_event *ev, void *cookie);
|
|
|
|
|
@@ -172,6 +178,12 @@ tgt_mc_cp_stats_prepare_raw_peer_rssi(struct wlan_objmgr_psoc *psoc,
|
|
|
if (!ev.peer_stats)
|
|
|
goto end;
|
|
|
|
|
|
+ ev.peer_extended_stats =
|
|
|
+ qdf_mem_malloc(sizeof(*ev.peer_extended_stats) *
|
|
|
+ peer_count);
|
|
|
+ if (!ev.peer_extended_stats)
|
|
|
+ goto end;
|
|
|
+
|
|
|
wlan_objmgr_pdev_iterate_obj_list(pdev, WLAN_PEER_OP,
|
|
|
peer_rssi_iterator, &ev,
|
|
|
true, WLAN_CP_STATS_ID);
|
|
@@ -194,9 +206,20 @@ tgt_mc_cp_stats_prepare_raw_peer_rssi(struct wlan_objmgr_psoc *psoc,
|
|
|
goto end;
|
|
|
|
|
|
ev.num_peer_stats = 1;
|
|
|
+
|
|
|
+ ev.peer_extended_stats =
|
|
|
+ qdf_mem_malloc(sizeof(*ev.peer_extended_stats));
|
|
|
+ if (!ev.peer_extended_stats)
|
|
|
+ goto end;
|
|
|
+
|
|
|
+ ev.num_peer_extd_stats = 1;
|
|
|
+
|
|
|
wlan_cp_stats_peer_obj_lock(peer_cp_stats_priv);
|
|
|
peer_mc_stats = peer_cp_stats_priv->peer_stats;
|
|
|
*ev.peer_stats = *peer_mc_stats;
|
|
|
+
|
|
|
+ peer_mc_extd_stats = peer_cp_stats_priv->peer_extd_stats;
|
|
|
+ *ev.peer_extended_stats = *peer_mc_extd_stats;
|
|
|
wlan_cp_stats_peer_obj_unlock(peer_cp_stats_priv);
|
|
|
}
|
|
|
|
|
@@ -299,8 +322,7 @@ tgt_mc_cp_stats_update_peer_stats(struct wlan_objmgr_psoc *psoc,
|
|
|
peer_mc_stats->rx_rate = peer_stats->rx_rate;
|
|
|
if (peer_stats->peer_rssi)
|
|
|
peer_mc_stats->peer_rssi = peer_stats->peer_rssi;
|
|
|
-
|
|
|
- cp_stats_debug("peer_mac=%pM, tx_rate=%u, rx_rate=%u, peer_rssi=%u",
|
|
|
+ cp_stats_debug("peer_mac=%pM, tx_rate=%u, rx_rate=%u, peer_rssi=%d",
|
|
|
peer_mc_stats->peer_macaddr, peer_mc_stats->tx_rate,
|
|
|
peer_mc_stats->rx_rate, peer_mc_stats->peer_rssi);
|
|
|
wlan_cp_stats_peer_obj_unlock(peer_cp_stats_priv);
|
|
@@ -312,6 +334,103 @@ end:
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
+static QDF_STATUS
|
|
|
+tgt_mc_cp_stats_update_peer_extd_stats(
|
|
|
+ struct wlan_objmgr_psoc *psoc,
|
|
|
+ struct peer_extd_stats *peer_extended_stats)
|
|
|
+{
|
|
|
+ uint8_t *peer_mac_addr;
|
|
|
+ struct wlan_objmgr_peer *peer;
|
|
|
+ struct peer_extd_stats *peer_extd_mc_stats;
|
|
|
+ QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
|
+ struct peer_cp_stats *peer_cp_stats_priv;
|
|
|
+
|
|
|
+ if (!peer_extended_stats)
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
+
|
|
|
+ peer_mac_addr = peer_extended_stats->peer_macaddr;
|
|
|
+ peer = wlan_objmgr_get_peer_by_mac(psoc, peer_mac_addr,
|
|
|
+ WLAN_CP_STATS_ID);
|
|
|
+ if (!peer) {
|
|
|
+ cp_stats_err("peer is null");
|
|
|
+ return QDF_STATUS_E_EXISTS;
|
|
|
+ }
|
|
|
+
|
|
|
+ peer_cp_stats_priv = wlan_cp_stats_get_peer_stats_obj(peer);
|
|
|
+ if (!peer_cp_stats_priv) {
|
|
|
+ cp_stats_err("peer_cp_stats_priv is null");
|
|
|
+ status = QDF_STATUS_E_EXISTS;
|
|
|
+ goto end;
|
|
|
+ }
|
|
|
+
|
|
|
+ wlan_cp_stats_peer_obj_lock(peer_cp_stats_priv);
|
|
|
+ peer_extd_mc_stats = peer_cp_stats_priv->peer_extd_stats;
|
|
|
+ if (!peer_extd_mc_stats) {
|
|
|
+ wlan_cp_stats_peer_obj_unlock(peer_cp_stats_priv);
|
|
|
+ cp_stats_err("No peer_extd_mc_stats");
|
|
|
+ status = QDF_STATUS_E_INVAL;
|
|
|
+ goto end;
|
|
|
+ }
|
|
|
+ qdf_mem_copy(peer_extd_mc_stats->peer_macaddr,
|
|
|
+ peer_extended_stats->peer_macaddr,
|
|
|
+ QDF_MAC_ADDR_SIZE);
|
|
|
+ if (peer_extended_stats->rx_mc_bc_cnt)
|
|
|
+ peer_extd_mc_stats->rx_mc_bc_cnt =
|
|
|
+ peer_extended_stats->rx_mc_bc_cnt;
|
|
|
+ wlan_cp_stats_peer_obj_unlock(peer_cp_stats_priv);
|
|
|
+
|
|
|
+ cp_stats_debug("peer_mac=%pM, rx_mc_bc_cnt=%u",
|
|
|
+ peer_extended_stats->peer_macaddr,
|
|
|
+ peer_extended_stats->rx_mc_bc_cnt);
|
|
|
+
|
|
|
+end:
|
|
|
+ wlan_objmgr_peer_release_ref(peer, WLAN_CP_STATS_ID);
|
|
|
+
|
|
|
+ return status;
|
|
|
+}
|
|
|
+
|
|
|
+static void tgt_mc_cp_stats_extract_peer_extd_stats(
|
|
|
+ struct wlan_objmgr_psoc *psoc,
|
|
|
+ struct stats_event *ev)
|
|
|
+{
|
|
|
+ uint32_t i, selected;
|
|
|
+ QDF_STATUS status;
|
|
|
+ struct request_info last_req = {0};
|
|
|
+
|
|
|
+ status = ucfg_mc_cp_stats_get_pending_req(psoc,
|
|
|
+ TYPE_PEER_STATS,
|
|
|
+ &last_req);
|
|
|
+
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ cp_stats_err("ucfg_mc_cp_stats_get_pending_req failed");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ selected = ev->num_peer_extd_stats;
|
|
|
+ for (i = 0; i < ev->num_peer_extd_stats; i++) {
|
|
|
+ status = tgt_mc_cp_stats_update_peer_extd_stats(
|
|
|
+ psoc,
|
|
|
+ &ev->peer_extended_stats[i]);
|
|
|
+ if (!QDF_IS_ADDR_BROADCAST(last_req.peer_mac_addr) &&
|
|
|
+ !qdf_mem_cmp(ev->peer_stats[i].peer_macaddr,
|
|
|
+ last_req.peer_mac_addr,
|
|
|
+ QDF_MAC_ADDR_SIZE)) {
|
|
|
+ /* mac is specified, but failed to update the peer */
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
+ return;
|
|
|
+
|
|
|
+ selected = i;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /* no matched peer */
|
|
|
+ if (!QDF_IS_ADDR_BROADCAST(last_req.peer_mac_addr) &&
|
|
|
+ selected == ev->num_peer_extd_stats) {
|
|
|
+ cp_stats_err("peer not found stats");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
static void tgt_mc_cp_stats_extract_peer_stats(struct wlan_objmgr_psoc *psoc,
|
|
|
struct stats_event *ev,
|
|
|
bool is_station_stats)
|
|
@@ -397,6 +516,7 @@ complete:
|
|
|
if (is_station_stats)
|
|
|
return;
|
|
|
|
|
|
+ tgt_mc_cp_stats_extract_peer_extd_stats(psoc, ev);
|
|
|
tgt_mc_cp_stats_prepare_raw_peer_rssi(psoc, &last_req);
|
|
|
ucfg_mc_cp_stats_reset_pending_req(psoc, TYPE_PEER_STATS);
|
|
|
}
|