blob: 7fc690ffd85a987bf3fe185204fb744cdfcbbf36 [file] [log] [blame]
Felix Fietkauec8aa662010-05-13 16:48:03 +02001/*
2 * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8#include <linux/netdevice.h>
9#include <linux/types.h>
10#include <linux/skbuff.h>
11#include <linux/debugfs.h>
12#include <linux/ieee80211.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040013#include <linux/export.h>
Felix Fietkauec8aa662010-05-13 16:48:03 +020014#include <net/mac80211.h>
15#include "rc80211_minstrel.h"
16#include "rc80211_minstrel_ht.h"
17
Felix Fietkaua0497f92013-02-13 10:51:08 +010018static char *
19minstrel_ht_stats_dump(struct minstrel_ht_sta *mi, int i, char *p)
20{
Felix Fietkaua0497f92013-02-13 10:51:08 +010021 const struct mcs_group *mg;
Thomas Huehn9c00bb72015-03-24 21:09:35 +010022 unsigned int j, tp, prob, eprob, tx_time;
Felix Fietkaua0497f92013-02-13 10:51:08 +010023 char htmode = '2';
24 char gimode = 'L';
Karl Beldan8ec78862014-10-22 18:20:37 +020025 u32 gflags;
Felix Fietkaua0497f92013-02-13 10:51:08 +010026
27 if (!mi->groups[i].supported)
28 return p;
29
30 mg = &minstrel_mcs_groups[i];
Karl Beldan8ec78862014-10-22 18:20:37 +020031 gflags = mg->flags;
32
33 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
Felix Fietkaua0497f92013-02-13 10:51:08 +010034 htmode = '4';
Karl Beldan8ec78862014-10-22 18:20:37 +020035 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
Karl Beldan92082472014-10-21 10:38:38 +020036 htmode = '8';
Karl Beldan8ec78862014-10-22 18:20:37 +020037 if (gflags & IEEE80211_TX_RC_SHORT_GI)
Felix Fietkaua0497f92013-02-13 10:51:08 +010038 gimode = 'S';
39
40 for (j = 0; j < MCS_GROUP_RATES; j++) {
41 struct minstrel_rate_stats *mr = &mi->groups[i].rates[j];
42 static const int bitrates[4] = { 10, 20, 55, 110 };
43 int idx = i * MCS_GROUP_RATES + j;
44
45 if (!(mi->groups[i].supported & BIT(j)))
46 continue;
47
Thomas Huehn9c00bb72015-03-24 21:09:35 +010048 if (gflags & IEEE80211_TX_RC_MCS) {
49 p += sprintf(p, "HT%c0 ", htmode);
50 p += sprintf(p, "%cGI ", gimode);
51 p += sprintf(p, "%d ", mg->streams);
52 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
53 p += sprintf(p, "VHT%c0 ", htmode);
54 p += sprintf(p, "%cGI ", gimode);
55 p += sprintf(p, "%d ", mg->streams);
56 } else {
57 p += sprintf(p, "CCK ");
58 p += sprintf(p, "%cP ", j < 4 ? 'L' : 'S');
59 p += sprintf(p, "1 ");
60 }
Felix Fietkaua0497f92013-02-13 10:51:08 +010061
Thomas Huehn59358392014-09-09 23:22:14 +020062 *(p++) = (idx == mi->max_tp_rate[0]) ? 'A' : ' ';
63 *(p++) = (idx == mi->max_tp_rate[1]) ? 'B' : ' ';
64 *(p++) = (idx == mi->max_tp_rate[2]) ? 'C' : ' ';
65 *(p++) = (idx == mi->max_tp_rate[3]) ? 'D' : ' ';
Felix Fietkaua0497f92013-02-13 10:51:08 +010066 *(p++) = (idx == mi->max_prob_rate) ? 'P' : ' ';
67
Karl Beldan8ec78862014-10-22 18:20:37 +020068 if (gflags & IEEE80211_TX_RC_MCS) {
Thomas Huehn9c00bb72015-03-24 21:09:35 +010069 p += sprintf(p, " MCS%-2u", (mg->streams - 1) * 8 + j);
Karl Beldan8ec78862014-10-22 18:20:37 +020070 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
Thomas Huehn9c00bb72015-03-24 21:09:35 +010071 p += sprintf(p, " MCS%-1u/%1u", j, mg->streams);
Felix Fietkaua0497f92013-02-13 10:51:08 +010072 } else {
Karl Beldan8ec78862014-10-22 18:20:37 +020073 int r = bitrates[j % 4];
74
Thomas Huehn9c00bb72015-03-24 21:09:35 +010075 p += sprintf(p, " %2u.%1uM", r / 10, r % 10);
Felix Fietkaua0497f92013-02-13 10:51:08 +010076 }
77
Thomas Huehn9c00bb72015-03-24 21:09:35 +010078 p += sprintf(p, " %3u ", idx);
79
80 /* tx_time[rate(i)] in usec */
81 tx_time = DIV_ROUND_CLOSEST(mg->duration[j], 1000);
82 p += sprintf(p, "%6u ", tx_time);
83
Felix Fietkaua0497f92013-02-13 10:51:08 +010084 tp = mr->cur_tp / 10;
85 prob = MINSTREL_TRUNC(mr->cur_prob * 1000);
86 eprob = MINSTREL_TRUNC(mr->probability * 1000);
87
Thomas Huehn9c00bb72015-03-24 21:09:35 +010088 p += sprintf(p, "%4u.%1u %3u.%1u %3u.%1u "
89 "%3u %3u %-3u %9llu %-9llu\n",
Felix Fietkaua0497f92013-02-13 10:51:08 +010090 tp / 10, tp % 10,
91 eprob / 10, eprob % 10,
92 prob / 10, prob % 10,
93 mr->retry_count,
94 mr->last_success,
95 mr->last_attempts,
96 (unsigned long long)mr->succ_hist,
97 (unsigned long long)mr->att_hist);
98 }
99
100 return p;
101}
102
Felix Fietkauec8aa662010-05-13 16:48:03 +0200103static int
104minstrel_ht_stats_open(struct inode *inode, struct file *file)
105{
106 struct minstrel_ht_sta_priv *msp = inode->i_private;
107 struct minstrel_ht_sta *mi = &msp->ht;
108 struct minstrel_debugfs_info *ms;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100109 unsigned int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200110 char *p;
111 int ret;
112
113 if (!msp->is_ht) {
114 inode->i_private = &msp->legacy;
115 ret = minstrel_stats_open(inode, file);
116 inode->i_private = msp;
117 return ret;
118 }
119
Karl Beldan92082472014-10-21 10:38:38 +0200120 ms = kmalloc(32768, GFP_KERNEL);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200121 if (!ms)
122 return -ENOMEM;
123
124 file->private_data = ms;
125 p = ms->buf;
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100126
127 p += sprintf(p, "\n");
128 p += sprintf(p, " best ________rate______ "
129 "__statistics__ ________last_______ "
130 "______sum-of________\n");
131 p += sprintf(p, "mode guard # rate [name idx airtime] [ ø(tp) "
132 "ø(prob)] [prob.|retry|suc|att] [#success | "
133 "#attempts]\n");
Karl Beldan11b23572014-10-20 10:54:36 +0200134
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200135 p = minstrel_ht_stats_dump(mi, MINSTREL_CCK_GROUP, p);
136 for (i = 0; i < MINSTREL_CCK_GROUP; i++)
Felix Fietkaua0497f92013-02-13 10:51:08 +0100137 p = minstrel_ht_stats_dump(mi, i, p);
Karl Beldan92082472014-10-21 10:38:38 +0200138 for (i++; i < ARRAY_SIZE(mi->groups); i++)
139 p = minstrel_ht_stats_dump(mi, i, p);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200140
Felix Fietkauec8aa662010-05-13 16:48:03 +0200141 p += sprintf(p, "\nTotal packet count:: ideal %d "
142 "lookaround %d\n",
143 max(0, (int) mi->total_packets - (int) mi->sample_packets),
144 mi->sample_packets);
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100145 p += sprintf(p, "Average # of aggregated frames per A-MPDU: %d.%d\n",
Felix Fietkauec8aa662010-05-13 16:48:03 +0200146 MINSTREL_TRUNC(mi->avg_ampdu_len),
147 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
148 ms->len = p - ms->buf;
149
Karl Beldan92082472014-10-21 10:38:38 +0200150 WARN_ON(ms->len + sizeof(*ms) > 32768);
Karl Beldan11b23572014-10-20 10:54:36 +0200151
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200152 return nonseekable_open(inode, file);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200153}
154
155static const struct file_operations minstrel_ht_stat_fops = {
156 .owner = THIS_MODULE,
157 .open = minstrel_ht_stats_open,
158 .read = minstrel_stats_read,
159 .release = minstrel_stats_release,
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200160 .llseek = no_llseek,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200161};
162
163void
164minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
165{
166 struct minstrel_ht_sta_priv *msp = priv_sta;
167
168 msp->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, msp,
169 &minstrel_ht_stat_fops);
170}
171
172void
173minstrel_ht_remove_sta_debugfs(void *priv, void *priv_sta)
174{
175 struct minstrel_ht_sta_priv *msp = priv_sta;
176
177 debugfs_remove(msp->dbg_stats);
178}