blob: ba0e378ff5929402d6e4b6da64d57dd397c52fa5 [file] [log] [blame]
developer36fe7092023-09-27 12:24:47 +08001From fd7730026ccef8b0d5a52ac07ddb21af48def17d Mon Sep 17 00:00:00 2001
developer281084d2023-06-19 12:03:50 +08002From: Howard Hsu <howard-yh.hsu@mediatek.com>
3Date: Thu, 20 Apr 2023 16:34:47 +0800
developer36fe7092023-09-27 12:24:47 +08004Subject: [PATCH 32/39] wifi: mt76: mt7996: add eht mode tx stats
developer281084d2023-06-19 12:03:50 +08005
6Add eht mode bf fbk stats and bw320 through debugfs tx_stats command
7
8Signed-off-by: Howard Hsu <howard-yh.hsu@mediatek.com>
9---
10 mt7996/debugfs.c | 5 +++--
11 1 file changed, 3 insertions(+), 2 deletions(-)
12
13diff --git a/mt7996/debugfs.c b/mt7996/debugfs.c
developer36fe7092023-09-27 12:24:47 +080014index 0422018..ca4d615 100644
developer281084d2023-06-19 12:03:50 +080015--- a/mt7996/debugfs.c
16+++ b/mt7996/debugfs.c
developer36fe7092023-09-27 12:24:47 +080017@@ -481,7 +481,7 @@ static void
18 mt7996_txbf_stat_read_phy(struct mt7996_phy *phy, struct seq_file *s)
developer281084d2023-06-19 12:03:50 +080019 {
20 static const char * const bw[] = {
21- "BW20", "BW40", "BW80", "BW160"
22+ "BW20", "BW40", "BW80", "BW160", "BW320"
23 };
developer36fe7092023-09-27 12:24:47 +080024 struct mib_stats *mib = &phy->mib;
developer281084d2023-06-19 12:03:50 +080025
developer36fe7092023-09-27 12:24:47 +080026@@ -495,8 +495,9 @@ mt7996_txbf_stat_read_phy(struct mt7996_phy *phy, struct seq_file *s)
developer281084d2023-06-19 12:03:50 +080027 /* Tx Beamformer Rx feedback monitor */
28 seq_puts(s, "Tx Beamformer Rx feedback statistics: ");
29
30- seq_printf(s, "All: %d, HE: %d, VHT: %d, HT: %d, ",
31+ seq_printf(s, "All: %d, EHT: %d, HE: %d, VHT: %d, HT: %d, ",
32 mib->tx_bf_rx_fb_all_cnt,
33+ mib->tx_bf_rx_fb_eht_cnt,
34 mib->tx_bf_rx_fb_he_cnt,
35 mib->tx_bf_rx_fb_vht_cnt,
36 mib->tx_bf_rx_fb_ht_cnt);
37--
developer36fe7092023-09-27 12:24:47 +0800382.18.0
developer281084d2023-06-19 12:03:50 +080039