mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-19 18:31:33 +00:00
639 lines
21 KiB
Diff
639 lines
21 KiB
Diff
From fe3c874eac42822252a8dff663bb14d520b73bc6 Mon Sep 17 00:00:00 2001
|
|
From: Manikanta Pubbisetty <mpubbise@codeaurora.org>
|
|
Date: Thu, 11 Jul 2019 17:02:32 +0530
|
|
Subject: [PATCH] ath11k: add rx histogram stats
|
|
|
|
Adding rx rate table and byte level peer rx statistics. Also,
|
|
adding a debugfs knob to reset rx stats specific to the peer.
|
|
|
|
Signed-off-by: Manikanta Pubbisetty <mpubbise@codeaurora.org>
|
|
---
|
|
drivers/net/wireless/ath/ath11k/core.h | 17 +++-
|
|
drivers/net/wireless/ath/ath11k/debugfs_sta.c | 134 +++++++++++++++++++++++---
|
|
drivers/net/wireless/ath/ath11k/dp_rx.c | 79 ++++++++++++---
|
|
drivers/net/wireless/ath/ath11k/hal_rx.c | 83 +++++++++++-----
|
|
drivers/net/wireless/ath/ath11k/hal_rx.h | 25 ++++-
|
|
5 files changed, 281 insertions(+), 57 deletions(-)
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/core.h
|
|
+++ b/drivers/net/wireless/ath/ath11k/core.h
|
|
@@ -36,6 +36,8 @@
|
|
#define ATH11K_PRB_RSP_DROP_THRESHOLD ((ATH11K_TX_MGMT_TARGET_MAX_SUPPORT_WMI * 3) / 4)
|
|
|
|
#define ATH11K_INVALID_HW_MAC_ID 0xFF
|
|
+#define ATH11K_RX_RATE_TABLE_NUM 320
|
|
+#define ATH11K_RX_RATE_TABLE_11AX_NUM 576
|
|
|
|
extern unsigned int ath11k_frame_mode;
|
|
|
|
@@ -252,6 +254,17 @@ struct ath11k_vif_iter {
|
|
struct ath11k_vif *arvif;
|
|
};
|
|
|
|
+struct ath11k_rx_peer_rate_stats {
|
|
+ u64 ht_mcs_count[HAL_RX_MAX_MCS_HT + 1];
|
|
+ u64 vht_mcs_count[HAL_RX_MAX_MCS_VHT + 1];
|
|
+ u64 he_mcs_count[HAL_RX_MAX_MCS_HE + 1];
|
|
+ u64 nss_count[HAL_RX_MAX_NSS];
|
|
+ u64 bw_count[HAL_RX_BW_MAX];
|
|
+ u64 gi_count[HAL_RX_GI_MAX];
|
|
+ u64 legacy_count[HAL_RX_MAX_NUM_LEGACY_RATES];
|
|
+ u64 rx_rate[ATH11K_RX_RATE_TABLE_11AX_NUM];
|
|
+};
|
|
+
|
|
struct ath11k_rx_peer_stats {
|
|
u64 num_msdu;
|
|
u64 num_mpdu_fcs_ok;
|
|
@@ -263,10 +276,6 @@ struct ath11k_rx_peer_stats {
|
|
u64 non_ampdu_msdu_count;
|
|
u64 stbc_count;
|
|
u64 beamformed_count;
|
|
- u64 mcs_count[HAL_RX_MAX_MCS + 1];
|
|
- u64 nss_count[HAL_RX_MAX_NSS];
|
|
- u64 bw_count[HAL_RX_BW_MAX];
|
|
- u64 gi_count[HAL_RX_GI_MAX];
|
|
u64 coding_count[HAL_RX_SU_MU_CODING_MAX];
|
|
u64 tid_count[IEEE80211_NUM_TIDS + 1];
|
|
u64 pream_cnt[HAL_RX_PREAMBLE_MAX];
|
|
@@ -274,6 +283,8 @@ struct ath11k_rx_peer_stats {
|
|
u64 rx_duration;
|
|
u64 dcm_count;
|
|
u64 ru_alloc_cnt[HAL_RX_RU_ALLOC_TYPE_MAX];
|
|
+ struct ath11k_rx_peer_rate_stats pkt_stats;
|
|
+ struct ath11k_rx_peer_rate_stats byte_stats;
|
|
};
|
|
|
|
#define ATH11K_HE_MCS_NUM 12
|
|
--- a/drivers/net/wireless/ath/ath11k/debugfs_sta.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/debugfs_sta.c
|
|
@@ -10,6 +10,7 @@
|
|
#include "peer.h"
|
|
#include "debug.h"
|
|
#include "dp_tx.h"
|
|
+#include "dp_rx.h"
|
|
#include "debugfs_htt_stats.h"
|
|
|
|
void ath11k_debugfs_sta_add_tx_stats(struct ath11k_sta *arsta,
|
|
@@ -194,7 +195,11 @@ void ath11k_debugfs_sta_update_txcompl(s
|
|
if (sgi)
|
|
arsta->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
|
|
} else if (pkt_type == HAL_TX_RATE_STATS_PKT_TYPE_11AX) {
|
|
- /* TODO */
|
|
+ arsta->txrate.mcs = ts->mcs;
|
|
+ arsta->txrate.flags = RATE_INFO_FLAGS_HE_MCS;
|
|
+ arsta->txrate.he_gi = ath11k_he_gi_to_nl80211_he_gi(ts->sgi);
|
|
+ arsta->txrate.he_ru_alloc = ath11k_he_ru_tones_to_nl80211_he_ru_alloc(
|
|
+ ts->num_tones_in_ru);
|
|
}
|
|
|
|
arsta->txrate.nss = arsta->last_txrate.nss;
|
|
@@ -323,8 +328,14 @@ static ssize_t ath11k_dbg_sta_dump_rx_st
|
|
struct ath11k *ar = arsta->arvif->ar;
|
|
struct ath11k_rx_peer_stats *rx_stats = arsta->rx_stats;
|
|
int len = 0, i, retval = 0;
|
|
- const int size = 4096;
|
|
+ const int size = 4 * 4096;
|
|
char *buf;
|
|
+ int he_rates_avail = (rx_stats->pream_cnt[HAL_RX_PREAMBLE_11AX] > 1) ? 1 : 0;
|
|
+ int rate_table_len = he_rates_avail ? ATH11K_RX_RATE_TABLE_11AX_NUM :
|
|
+ ATH11K_RX_RATE_TABLE_NUM;
|
|
+ char *legacy_rate_str[] = {"1Mbps", "2Mbps", "5.5Mbps", "6Mbps",
|
|
+ "9Mbps", "11Mbps", "12Mbps", "18Mbps",
|
|
+ "24Mbps", "36 Mbps", "48Mbps", "54Mbps"};
|
|
|
|
if (!rx_stats)
|
|
return -ENOENT;
|
|
@@ -355,14 +366,6 @@ static ssize_t ath11k_dbg_sta_dump_rx_st
|
|
rx_stats->num_mpdu_fcs_ok);
|
|
len += scnprintf(buf + len, size - len, "Num of MPDUs with FCS error: %llu\n",
|
|
rx_stats->num_mpdu_fcs_err);
|
|
- len += scnprintf(buf + len, size - len,
|
|
- "GI: 0.8us %llu 0.4us %llu 1.6us %llu 3.2us %llu\n",
|
|
- rx_stats->gi_count[0], rx_stats->gi_count[1],
|
|
- rx_stats->gi_count[2], rx_stats->gi_count[3]);
|
|
- len += scnprintf(buf + len, size - len,
|
|
- "BW: 20Mhz %llu 40Mhz %llu 80Mhz %llu 160Mhz %llu\n",
|
|
- rx_stats->bw_count[0], rx_stats->bw_count[1],
|
|
- rx_stats->bw_count[2], rx_stats->bw_count[3]);
|
|
len += scnprintf(buf + len, size - len, "BCC %llu LDPC %llu\n",
|
|
rx_stats->coding_count[0], rx_stats->coding_count[1]);
|
|
len += scnprintf(buf + len, size - len,
|
|
@@ -377,14 +380,96 @@ static ssize_t ath11k_dbg_sta_dump_rx_st
|
|
len += scnprintf(buf + len, size - len, "TID(0-15) Legacy TID(16):");
|
|
for (i = 0; i <= IEEE80211_NUM_TIDS; i++)
|
|
len += scnprintf(buf + len, size - len, "%llu ", rx_stats->tid_count[i]);
|
|
- len += scnprintf(buf + len, size - len, "\nMCS(0-11) Legacy MCS(12):");
|
|
- for (i = 0; i < HAL_RX_MAX_MCS + 1; i++)
|
|
- len += scnprintf(buf + len, size - len, "%llu ", rx_stats->mcs_count[i]);
|
|
- len += scnprintf(buf + len, size - len, "\nNSS(1-8):");
|
|
- for (i = 0; i < HAL_RX_MAX_NSS; i++)
|
|
- len += scnprintf(buf + len, size - len, "%llu ", rx_stats->nss_count[i]);
|
|
- len += scnprintf(buf + len, size - len, "\nRX Duration:%llu ",
|
|
+ len += scnprintf(buf + len, size - len, "\nRX Duration:%llu\n",
|
|
rx_stats->rx_duration);
|
|
+
|
|
+ len += scnprintf(buf + len, size - len, "\nRX success packet stats:\n");
|
|
+ len += scnprintf(buf + len, size - len, "\nHE packet stats:\n");
|
|
+ for (i = 0; i <= HAL_RX_MAX_MCS_HE; i++)
|
|
+ len += scnprintf(buf + len, size - len, "MCS %d: %llu%s", i,
|
|
+ rx_stats->pkt_stats.he_mcs_count[i],
|
|
+ (i + 1) % 6 ? "\t" : "\n");
|
|
+ len += scnprintf(buf + len, size - len, "\nVHT packet stats:\n");
|
|
+ for (i = 0; i <= HAL_RX_MAX_MCS_VHT; i++)
|
|
+ len += scnprintf(buf + len, size - len, "MCS %d: %llu%s", i,
|
|
+ rx_stats->pkt_stats.vht_mcs_count[i],
|
|
+ (i + 1) % 5 ? "\t" : "\n");
|
|
+ len += scnprintf(buf + len, size - len, "\nHT packet stats:\n");
|
|
+ for (i = 0; i <= HAL_RX_MAX_MCS_HT; i++)
|
|
+ len += scnprintf(buf + len, size - len, "MCS %d: %llu%s", i,
|
|
+ rx_stats->pkt_stats.ht_mcs_count[i],
|
|
+ (i + 1) % 8 ? "\t" : "\n");
|
|
+ len += scnprintf(buf + len, size - len, "\nLegacy rate packet stats:\n");
|
|
+ for (i = 0; i < HAL_RX_MAX_NUM_LEGACY_RATES; i++)
|
|
+ len += scnprintf(buf + len, size - len, "%s: %llu%s", legacy_rate_str[i],
|
|
+ rx_stats->pkt_stats.legacy_count[i],
|
|
+ (i + 1) % 4 ? "\t" : "\n");
|
|
+ len += scnprintf(buf + len, size - len, "\nNSS packet stats:\n");
|
|
+ for (i = 0; i < HAL_RX_MAX_NSS; i++)
|
|
+ len += scnprintf(buf + len, size - len, "%dx%d: %llu ", i + 1, i + 1,
|
|
+ rx_stats->pkt_stats.nss_count[i]);
|
|
+ len += scnprintf(buf + len, size - len,
|
|
+ "\n\nGI: 0.8us %llu 0.4us %llu 1.6us %llu 3.2us %llu\n",
|
|
+ rx_stats->pkt_stats.gi_count[0],
|
|
+ rx_stats->pkt_stats.gi_count[1],
|
|
+ rx_stats->pkt_stats.gi_count[2],
|
|
+ rx_stats->pkt_stats.gi_count[3]);
|
|
+ len += scnprintf(buf + len, size - len,
|
|
+ "BW: 20Mhz %llu 40Mhz %llu 80Mhz %llu 160Mhz %llu\n",
|
|
+ rx_stats->pkt_stats.bw_count[0],
|
|
+ rx_stats->pkt_stats.bw_count[1],
|
|
+ rx_stats->pkt_stats.bw_count[2],
|
|
+ rx_stats->pkt_stats.bw_count[3]);
|
|
+ len += scnprintf(buf + len, size - len, "\nRate Table (packets):\n");
|
|
+ for (i = 0; i < rate_table_len; i++)
|
|
+ len += scnprintf(buf + len, size - len, "%10llu%s",
|
|
+ rx_stats->pkt_stats.rx_rate[i],
|
|
+ (i + 1) % (he_rates_avail ? 12 : 8) ? "\t" : "\n");
|
|
+
|
|
+ len += scnprintf(buf + len, size - len, "\nRX success byte stats:\n");
|
|
+ len += scnprintf(buf + len, size - len, "\nHE byte stats:\n");
|
|
+ for (i = 0; i <= HAL_RX_MAX_MCS_HE; i++)
|
|
+ len += scnprintf(buf + len, size - len, "MCS %d: %llu%s", i,
|
|
+ rx_stats->byte_stats.he_mcs_count[i],
|
|
+ (i + 1) % 6 ? "\t" : "\n");
|
|
+
|
|
+ len += scnprintf(buf + len, size - len, "\nVHT byte stats:\n");
|
|
+ for (i = 0; i <= HAL_RX_MAX_MCS_VHT; i++)
|
|
+ len += scnprintf(buf + len, size - len, "MCS %d: %llu%s", i,
|
|
+ rx_stats->byte_stats.vht_mcs_count[i],
|
|
+ (i + 1) % 5 ? "\t" : "\n");
|
|
+ len += scnprintf(buf + len, size - len, "\nHT byte stats:\n");
|
|
+ for (i = 0; i <= HAL_RX_MAX_MCS_HT; i++)
|
|
+ len += scnprintf(buf + len, size - len, "MCS %d: %llu%s", i,
|
|
+ rx_stats->byte_stats.ht_mcs_count[i],
|
|
+ (i + 1) % 8 ? "\t" : "\n");
|
|
+ len += scnprintf(buf + len, size - len, "\nLegacy rate byte stats:\n");
|
|
+ for (i = 0; i < HAL_RX_MAX_NUM_LEGACY_RATES; i++)
|
|
+ len += scnprintf(buf + len, size - len, "%s: %llu%s", legacy_rate_str[i],
|
|
+ rx_stats->byte_stats.legacy_count[i],
|
|
+ (i + 1) % 4 ? "\t" : "\n");
|
|
+ len += scnprintf(buf + len, size - len, "\nNSS byte stats:\n");
|
|
+ for (i = 0; i < HAL_RX_MAX_NSS; i++)
|
|
+ len += scnprintf(buf + len, size - len, "%dx%d: %llu ", i + 1, i + 1,
|
|
+ rx_stats->byte_stats.nss_count[i]);
|
|
+ len += scnprintf(buf + len, size - len,
|
|
+ "\n\nGI: 0.8us %llu 0.4us %llu 1.6us %llu 3.2us %llu\n",
|
|
+ rx_stats->byte_stats.gi_count[0],
|
|
+ rx_stats->byte_stats.gi_count[1],
|
|
+ rx_stats->byte_stats.gi_count[2],
|
|
+ rx_stats->byte_stats.gi_count[3]);
|
|
+ len += scnprintf(buf + len, size - len,
|
|
+ "BW: 20Mhz %llu 40Mhz %llu 80Mhz %llu 160Mhz %llu\n",
|
|
+ rx_stats->byte_stats.bw_count[0],
|
|
+ rx_stats->byte_stats.bw_count[1],
|
|
+ rx_stats->byte_stats.bw_count[2],
|
|
+ rx_stats->byte_stats.bw_count[3]);
|
|
+ len += scnprintf(buf + len, size - len, "\nRate Table (bytes):\n");
|
|
+ for (i = 0; i < rate_table_len; i++)
|
|
+ len += scnprintf(buf + len, size - len, "%10llu%s",
|
|
+ rx_stats->byte_stats.rx_rate[i],
|
|
+ (i + 1) % (he_rates_avail ? 12 : 8) ? "\t" : "\n");
|
|
+
|
|
len += scnprintf(buf + len, size - len,
|
|
"\nDCM: %llu\nRU: 26 %llu 52: %llu 106: %llu 242: %llu 484: %llu 996: %llu\n",
|
|
rx_stats->dcm_count, rx_stats->ru_alloc_cnt[0],
|
|
@@ -821,6 +906,40 @@ static const struct file_operations fops
|
|
.llseek = default_llseek,
|
|
};
|
|
|
|
+static ssize_t ath11k_dbg_sta_reset_rx_stats(struct file *file,
|
|
+ const char __user *buf,
|
|
+ size_t count, loff_t *ppos)
|
|
+{
|
|
+ struct ieee80211_sta *sta = file->private_data;
|
|
+ struct ath11k_sta *arsta = (struct ath11k_sta *)sta->drv_priv;
|
|
+ struct ath11k *ar = arsta->arvif->ar;
|
|
+ int ret, reset;
|
|
+
|
|
+ if (!arsta->rx_stats)
|
|
+ return -ENOENT;
|
|
+
|
|
+ ret = kstrtoint_from_user(buf, count, 0, &reset);
|
|
+ if (ret)
|
|
+ return ret;
|
|
+
|
|
+ if (!reset || reset > 1)
|
|
+ return -EINVAL;
|
|
+
|
|
+ spin_lock_bh(&ar->ab->base_lock);
|
|
+ memset(arsta->rx_stats, 0, sizeof(*arsta->rx_stats));
|
|
+ spin_unlock_bh(&ar->ab->base_lock);
|
|
+
|
|
+ ret = count;
|
|
+ return ret;
|
|
+}
|
|
+
|
|
+static const struct file_operations fops_reset_rx_stats = {
|
|
+ .write = ath11k_dbg_sta_reset_rx_stats,
|
|
+ .open = simple_open,
|
|
+ .owner = THIS_MODULE,
|
|
+ .llseek = default_llseek,
|
|
+};
|
|
+
|
|
void ath11k_debugfs_sta_op_add(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
|
|
struct ieee80211_sta *sta, struct dentry *dir)
|
|
{
|
|
@@ -829,9 +948,12 @@ void ath11k_debugfs_sta_op_add(struct ie
|
|
if (ath11k_debugfs_is_extd_tx_stats_enabled(ar))
|
|
debugfs_create_file("tx_stats", 0400, dir, sta,
|
|
&fops_tx_stats);
|
|
- if (ath11k_debugfs_is_extd_rx_stats_enabled(ar))
|
|
+ if (ath11k_debugfs_is_extd_rx_stats_enabled(ar)) {
|
|
debugfs_create_file("rx_stats", 0400, dir, sta,
|
|
&fops_rx_stats);
|
|
+ debugfs_create_file("reset_rx_stats", 0600, dir, sta,
|
|
+ &fops_reset_rx_stats);
|
|
+ }
|
|
|
|
debugfs_create_file("htt_peer_stats", 0400, dir, sta,
|
|
&fops_htt_peer_stats);
|
|
--- a/drivers/net/wireless/ath/ath11k/dp_rx.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/dp_rx.c
|
|
@@ -1304,25 +1304,6 @@ int ath11k_dp_htt_tlv_iter(struct ath11k
|
|
return 0;
|
|
}
|
|
|
|
-static inline u32 ath11k_he_gi_to_nl80211_he_gi(u8 sgi)
|
|
-{
|
|
- u32 ret = 0;
|
|
-
|
|
- switch (sgi) {
|
|
- case RX_MSDU_START_SGI_0_8_US:
|
|
- ret = NL80211_RATE_INFO_HE_GI_0_8;
|
|
- break;
|
|
- case RX_MSDU_START_SGI_1_6_US:
|
|
- ret = NL80211_RATE_INFO_HE_GI_1_6;
|
|
- break;
|
|
- case RX_MSDU_START_SGI_3_2_US:
|
|
- ret = NL80211_RATE_INFO_HE_GI_3_2;
|
|
- break;
|
|
- }
|
|
-
|
|
- return ret;
|
|
-}
|
|
-
|
|
static void
|
|
ath11k_update_per_peer_tx_stats(struct ath11k *ar,
|
|
struct htt_ppdu_stats *ppdu_stats, u8 user)
|
|
@@ -2663,15 +2644,53 @@ exit:
|
|
return budget - quota;
|
|
}
|
|
|
|
+static void
|
|
+ath11k_dp_rx_update_peer_rate_table_stats(struct ath11k_rx_peer_stats *rx_stats,
|
|
+ struct hal_rx_mon_ppdu_info *ppdu_info,
|
|
+ u32 num_msdu)
|
|
+{
|
|
+ u32 rate_idx = 0;
|
|
+ u32 mcs_idx = ppdu_info->mcs;
|
|
+ u32 nss_idx = ppdu_info->nss - 1;
|
|
+ u32 bw_idx = ppdu_info->bw;
|
|
+ u32 gi_idx = ppdu_info->gi;
|
|
+
|
|
+ if ((mcs_idx > HAL_RX_MAX_MCS_HE) || (nss_idx >= HAL_RX_MAX_NSS) ||
|
|
+ (bw_idx >= HAL_RX_BW_MAX) || (gi_idx >= HAL_RX_GI_MAX)) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ if (ppdu_info->preamble_type == HAL_RX_PREAMBLE_11N ||
|
|
+ ppdu_info->preamble_type == HAL_RX_PREAMBLE_11AC) {
|
|
+ rate_idx = mcs_idx * 8 + 8 * 10 * nss_idx;
|
|
+ rate_idx += bw_idx * 2 + gi_idx;
|
|
+ } else if (ppdu_info->preamble_type == HAL_RX_PREAMBLE_11AX) {
|
|
+ gi_idx = ath11k_he_gi_to_nl80211_he_gi(ppdu_info->gi);
|
|
+ rate_idx = mcs_idx * 12 + 12 * 12 * nss_idx;
|
|
+ rate_idx += bw_idx * 3 + gi_idx;
|
|
+ } else {
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ rx_stats->pkt_stats.rx_rate[rate_idx] += num_msdu;
|
|
+ rx_stats->byte_stats.rx_rate[rate_idx] += ppdu_info->mpdu_len;
|
|
+}
|
|
+
|
|
static void ath11k_dp_rx_update_peer_stats(struct ath11k_sta *arsta,
|
|
struct hal_rx_mon_ppdu_info *ppdu_info)
|
|
{
|
|
struct ath11k_rx_peer_stats *rx_stats = arsta->rx_stats;
|
|
+ struct ath11k *ar = arsta->arvif->ar;
|
|
u32 num_msdu;
|
|
|
|
if (!rx_stats)
|
|
return;
|
|
|
|
+ arsta->rssi_comb = ppdu_info->rssi_comb;
|
|
+
|
|
+ if (!ath11k_debugfs_is_extd_rx_stats_enabled(ar))
|
|
+ return;
|
|
+
|
|
num_msdu = ppdu_info->tcp_msdu_count + ppdu_info->tcp_ack_msdu_count +
|
|
ppdu_info->udp_msdu_count + ppdu_info->other_msdu_count;
|
|
|
|
@@ -2688,18 +2707,6 @@ static void ath11k_dp_rx_update_peer_sta
|
|
ppdu_info->tid = IEEE80211_NUM_TIDS;
|
|
}
|
|
|
|
- if (ppdu_info->nss > 0 && ppdu_info->nss <= HAL_RX_MAX_NSS)
|
|
- rx_stats->nss_count[ppdu_info->nss - 1] += num_msdu;
|
|
-
|
|
- if (ppdu_info->mcs <= HAL_RX_MAX_MCS)
|
|
- rx_stats->mcs_count[ppdu_info->mcs] += num_msdu;
|
|
-
|
|
- if (ppdu_info->gi < HAL_RX_GI_MAX)
|
|
- rx_stats->gi_count[ppdu_info->gi] += num_msdu;
|
|
-
|
|
- if (ppdu_info->bw < HAL_RX_BW_MAX)
|
|
- rx_stats->bw_count[ppdu_info->bw] += num_msdu;
|
|
-
|
|
if (ppdu_info->ldpc < HAL_RX_SU_MU_CODING_MAX)
|
|
rx_stats->coding_count[ppdu_info->ldpc] += num_msdu;
|
|
|
|
@@ -2728,9 +2735,53 @@ static void ath11k_dp_rx_update_peer_sta
|
|
rx_stats->dcm_count += ppdu_info->dcm;
|
|
rx_stats->ru_alloc_cnt[ppdu_info->ru_alloc] += num_msdu;
|
|
|
|
- arsta->rssi_comb = ppdu_info->rssi_comb;
|
|
rx_stats->rx_duration += ppdu_info->rx_duration;
|
|
arsta->rx_duration = rx_stats->rx_duration;
|
|
+
|
|
+ if (ppdu_info->nss > 0 && ppdu_info->nss <= HAL_RX_MAX_NSS) {
|
|
+ rx_stats->pkt_stats.nss_count[ppdu_info->nss - 1] += num_msdu;
|
|
+ rx_stats->byte_stats.nss_count[ppdu_info->nss - 1] += ppdu_info->mpdu_len;
|
|
+ }
|
|
+
|
|
+ if (ppdu_info->preamble_type == HAL_RX_PREAMBLE_11N &&
|
|
+ ppdu_info->mcs <= HAL_RX_MAX_MCS_HT) {
|
|
+ rx_stats->pkt_stats.ht_mcs_count[ppdu_info->mcs] += num_msdu;
|
|
+ rx_stats->byte_stats.ht_mcs_count[ppdu_info->mcs] += ppdu_info->mpdu_len;
|
|
+ /* To fit into rate table for HT packets */
|
|
+ ppdu_info->mcs = ppdu_info->mcs % 8;
|
|
+ }
|
|
+
|
|
+ if (ppdu_info->preamble_type == HAL_RX_PREAMBLE_11AC &&
|
|
+ ppdu_info->mcs <= HAL_RX_MAX_MCS_VHT) {
|
|
+ rx_stats->pkt_stats.vht_mcs_count[ppdu_info->mcs] += num_msdu;
|
|
+ rx_stats->byte_stats.vht_mcs_count[ppdu_info->mcs] += ppdu_info->mpdu_len;
|
|
+ }
|
|
+
|
|
+ if (ppdu_info->preamble_type == HAL_RX_PREAMBLE_11AX &&
|
|
+ ppdu_info->mcs <= HAL_RX_MAX_MCS_HE) {
|
|
+ rx_stats->pkt_stats.he_mcs_count[ppdu_info->mcs] += num_msdu;
|
|
+ rx_stats->byte_stats.he_mcs_count[ppdu_info->mcs] += ppdu_info->mpdu_len;
|
|
+ }
|
|
+
|
|
+
|
|
+ if ((ppdu_info->preamble_type == HAL_RX_PREAMBLE_11A ||
|
|
+ ppdu_info->preamble_type == HAL_RX_PREAMBLE_11B) &&
|
|
+ ppdu_info->rate < HAL_RX_LEGACY_RATE_INVALID) {
|
|
+ rx_stats->pkt_stats.legacy_count[ppdu_info->rate] += num_msdu;
|
|
+ rx_stats->byte_stats.legacy_count[ppdu_info->rate] += ppdu_info->mpdu_len;
|
|
+ }
|
|
+
|
|
+ if (ppdu_info->gi < HAL_RX_GI_MAX) {
|
|
+ rx_stats->pkt_stats.gi_count[ppdu_info->gi] += num_msdu;
|
|
+ rx_stats->byte_stats.gi_count[ppdu_info->gi] += ppdu_info->mpdu_len;
|
|
+ }
|
|
+
|
|
+ if (ppdu_info->bw < HAL_RX_BW_MAX) {
|
|
+ rx_stats->pkt_stats.bw_count[ppdu_info->bw] += num_msdu;
|
|
+ rx_stats->byte_stats.bw_count[ppdu_info->bw] += ppdu_info->mpdu_len;
|
|
+ }
|
|
+
|
|
+ ath11k_dp_rx_update_peer_rate_table_stats(rx_stats, ppdu_info, num_msdu);
|
|
}
|
|
|
|
static struct sk_buff *ath11k_dp_rx_alloc_mon_status_buf(struct ath11k_base *ab,
|
|
--- a/drivers/net/wireless/ath/ath11k/hal_rx.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/hal_rx.c
|
|
@@ -1003,44 +1003,78 @@ ath11k_hal_rx_parse_mon_status_tlv(struc
|
|
ppdu_info->is_stbc = FIELD_GET(HAL_RX_HT_SIG_INFO_INFO1_STBC,
|
|
info1);
|
|
ppdu_info->ldpc = FIELD_GET(HAL_RX_HT_SIG_INFO_INFO1_FEC_CODING, info1);
|
|
- ppdu_info->gi = info1 & HAL_RX_HT_SIG_INFO_INFO1_GI;
|
|
-
|
|
- switch (ppdu_info->mcs) {
|
|
- case 0 ... 7:
|
|
- ppdu_info->nss = 1;
|
|
- break;
|
|
- case 8 ... 15:
|
|
- ppdu_info->nss = 2;
|
|
- break;
|
|
- case 16 ... 23:
|
|
- ppdu_info->nss = 3;
|
|
- break;
|
|
- case 24 ... 31:
|
|
- ppdu_info->nss = 4;
|
|
- break;
|
|
- }
|
|
-
|
|
- if (ppdu_info->nss > 1)
|
|
- ppdu_info->mcs = ppdu_info->mcs % 8;
|
|
-
|
|
+ ppdu_info->gi = FIELD_GET(HAL_RX_HT_SIG_INFO_INFO1_GI, info1);
|
|
+ ppdu_info->nss = (ppdu_info->mcs >> 3) + 1;
|
|
ppdu_info->reception_type = HAL_RX_RECEPTION_TYPE_SU;
|
|
break;
|
|
}
|
|
case HAL_PHYRX_L_SIG_B: {
|
|
struct hal_rx_lsig_b_info *lsigb =
|
|
(struct hal_rx_lsig_b_info *)tlv_data;
|
|
+ u8 rate;
|
|
+
|
|
+ rate = FIELD_GET(HAL_RX_LSIG_B_INFO_INFO0_RATE,
|
|
+ __le32_to_cpu(lsigb->info0));
|
|
|
|
- ppdu_info->rate = FIELD_GET(HAL_RX_LSIG_B_INFO_INFO0_RATE,
|
|
- __le32_to_cpu(lsigb->info0));
|
|
+ switch (rate) {
|
|
+ case 1:
|
|
+ rate = HAL_RX_LEGACY_RATE_1_MBPS;
|
|
+ break;
|
|
+ case 2:
|
|
+ case 5:
|
|
+ rate = HAL_RX_LEGACY_RATE_2_MBPS;
|
|
+ break;
|
|
+ case 3:
|
|
+ case 6:
|
|
+ rate = HAL_RX_LEGACY_RATE_5_5_MBPS;
|
|
+ break;
|
|
+ case 4:
|
|
+ case 7:
|
|
+ rate = HAL_RX_LEGACY_RATE_11_MBPS;
|
|
+ break;
|
|
+ default:
|
|
+ rate = HAL_RX_LEGACY_RATE_INVALID;
|
|
+ }
|
|
+ ppdu_info->rate = rate;
|
|
ppdu_info->reception_type = HAL_RX_RECEPTION_TYPE_SU;
|
|
break;
|
|
}
|
|
case HAL_PHYRX_L_SIG_A: {
|
|
struct hal_rx_lsig_a_info *lsiga =
|
|
(struct hal_rx_lsig_a_info *)tlv_data;
|
|
+ u8 rate;
|
|
|
|
- ppdu_info->rate = FIELD_GET(HAL_RX_LSIG_A_INFO_INFO0_RATE,
|
|
- __le32_to_cpu(lsiga->info0));
|
|
+ rate = FIELD_GET(HAL_RX_LSIG_A_INFO_INFO0_RATE,
|
|
+ __le32_to_cpu(lsiga->info0));
|
|
+ switch (rate) {
|
|
+ case 8:
|
|
+ rate = HAL_RX_LEGACY_RATE_48_MBPS;
|
|
+ break;
|
|
+ case 9:
|
|
+ rate = HAL_RX_LEGACY_RATE_24_MBPS;
|
|
+ break;
|
|
+ case 10:
|
|
+ rate = HAL_RX_LEGACY_RATE_12_MBPS;
|
|
+ break;
|
|
+ case 11:
|
|
+ rate = HAL_RX_LEGACY_RATE_6_MBPS;
|
|
+ break;
|
|
+ case 12:
|
|
+ rate = HAL_RX_LEGACY_RATE_54_MBPS;
|
|
+ break;
|
|
+ case 13:
|
|
+ rate = HAL_RX_LEGACY_RATE_36_MBPS;
|
|
+ break;
|
|
+ case 14:
|
|
+ rate = HAL_RX_LEGACY_RATE_18_MBPS;
|
|
+ break;
|
|
+ case 15:
|
|
+ rate = HAL_RX_LEGACY_RATE_9_MBPS;
|
|
+ break;
|
|
+ default:
|
|
+ rate = HAL_RX_LEGACY_RATE_INVALID;
|
|
+ }
|
|
+ ppdu_info->rate = rate;
|
|
ppdu_info->reception_type = HAL_RX_RECEPTION_TYPE_SU;
|
|
break;
|
|
}
|
|
@@ -1486,6 +1520,9 @@ ath11k_hal_rx_parse_mon_status_tlv(struc
|
|
__le32_to_cpu(mpdu_info->info0));
|
|
if (peer_id)
|
|
ppdu_info->peer_id = peer_id;
|
|
+
|
|
+ ppdu_info->mpdu_len += FIELD_GET(HAL_RX_MPDU_INFO_INFO1_MPDU_LEN,
|
|
+ __le32_to_cpu(mpdu_info->info1));
|
|
break;
|
|
}
|
|
case HAL_RXPCU_PPDU_END_INFO: {
|
|
--- a/drivers/net/wireless/ath/ath11k/hal_rx.h
|
|
+++ b/drivers/net/wireless/ath/ath11k/hal_rx.h
|
|
@@ -19,7 +19,11 @@ struct hal_rx_wbm_rel_info {
|
|
#define VHT_SIG_SU_NSS_MASK 0x7
|
|
|
|
#define HAL_RX_MAX_MCS 12
|
|
+#define HAL_RX_MAX_MCS_HT 31
|
|
+#define HAL_RX_MAX_MCS_VHT 9
|
|
+#define HAL_RX_MAX_MCS_HE 11
|
|
#define HAL_RX_MAX_NSS 8
|
|
+#define HAL_RX_MAX_NUM_LEGACY_RATES 12
|
|
|
|
struct hal_rx_mon_status_tlv_hdr {
|
|
u32 hdr;
|
|
@@ -65,6 +69,22 @@ enum hal_rx_reception_type {
|
|
HAL_RX_RECEPTION_TYPE_MAX,
|
|
};
|
|
|
|
+enum hal_rx_legacy_rate {
|
|
+ HAL_RX_LEGACY_RATE_1_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_2_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_5_5_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_6_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_9_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_11_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_12_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_18_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_24_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_36_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_48_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_54_MBPS,
|
|
+ HAL_RX_LEGACY_RATE_INVALID,
|
|
+};
|
|
+
|
|
#define HAL_TLV_STATUS_PPDU_NOT_DONE 0
|
|
#define HAL_TLV_STATUS_PPDU_DONE 1
|
|
#define HAL_TLV_STATUS_BUF_DONE 2
|
|
@@ -113,6 +133,7 @@ struct hal_rx_mon_ppdu_info {
|
|
u32 num_mpdu_fcs_ok;
|
|
u32 num_mpdu_fcs_err;
|
|
u32 preamble_type;
|
|
+ u32 mpdu_len;
|
|
u16 chan_num;
|
|
u16 tcp_msdu_count;
|
|
u16 tcp_ack_msdu_count;
|
|
@@ -381,10 +402,13 @@ struct hal_rx_phyrx_rssi_legacy_info {
|
|
} __packed;
|
|
|
|
#define HAL_RX_MPDU_INFO_INFO0_PEERID GENMASK(31, 16)
|
|
+#define HAL_RX_MPDU_INFO_INFO1_MPDU_LEN GENMASK(13, 0)
|
|
struct hal_rx_mpdu_info {
|
|
__le32 rsvd0;
|
|
__le32 info0;
|
|
- __le32 rsvd1[21];
|
|
+ __le32 rsvd1[11];
|
|
+ __le32 info1;
|
|
+ __le32 rsvd2[9];
|
|
} __packed;
|
|
|
|
#define HAL_RX_PPDU_END_DURATION GENMASK(23, 0)
|
|
--- a/drivers/net/wireless/ath/ath11k/dp_rx.h
|
|
+++ b/drivers/net/wireless/ath/ath11k/dp_rx.h
|
|
@@ -41,6 +41,25 @@ struct ath11k_dp_rfc1042_hdr {
|
|
__be16 snap_type;
|
|
} __packed;
|
|
|
|
+static inline u32 ath11k_he_gi_to_nl80211_he_gi(u8 sgi)
|
|
+{
|
|
+ u32 ret = 0;
|
|
+
|
|
+ switch (sgi) {
|
|
+ case RX_MSDU_START_SGI_0_8_US:
|
|
+ ret = NL80211_RATE_INFO_HE_GI_0_8;
|
|
+ break;
|
|
+ case RX_MSDU_START_SGI_1_6_US:
|
|
+ ret = NL80211_RATE_INFO_HE_GI_1_6;
|
|
+ break;
|
|
+ case RX_MSDU_START_SGI_3_2_US:
|
|
+ ret = NL80211_RATE_INFO_HE_GI_3_2;
|
|
+ break;
|
|
+ }
|
|
+
|
|
+ return ret;
|
|
+}
|
|
+
|
|
int ath11k_dp_rx_ampdu_start(struct ath11k *ar,
|
|
struct ieee80211_ampdu_params *params);
|
|
int ath11k_dp_rx_ampdu_stop(struct ath11k *ar,
|