blob: bebb71917742a73f35f2d7f2dff72f342200e32a [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Felix Fietkauec8aa662010-05-13 16:48:03 +02002/*
3 * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
Felix Fietkauec8aa662010-05-13 16:48:03 +02004 */
5#include <linux/netdevice.h>
6#include <linux/types.h>
7#include <linux/skbuff.h>
8#include <linux/debugfs.h>
9#include <linux/ieee80211.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040010#include <linux/export.h>
Felix Fietkauec8aa662010-05-13 16:48:03 +020011#include <net/mac80211.h>
12#include "rc80211_minstrel.h"
13#include "rc80211_minstrel_ht.h"
14
Felix Fietkaub1c4f682018-10-06 19:35:01 +020015static ssize_t
16minstrel_stats_read(struct file *file, char __user *buf, size_t len, loff_t *ppos)
17{
18 struct minstrel_debugfs_info *ms;
19
20 ms = file->private_data;
21 return simple_read_from_buffer(buf, len, ppos, ms->buf, ms->len);
22}
23
24static int
25minstrel_stats_release(struct inode *inode, struct file *file)
26{
27 kfree(file->private_data);
28 return 0;
29}
30
Felix Fietkaua0497f92013-02-13 10:51:08 +010031static char *
32minstrel_ht_stats_dump(struct minstrel_ht_sta *mi, int i, char *p)
33{
Felix Fietkaua0497f92013-02-13 10:51:08 +010034 const struct mcs_group *mg;
Felix Fietkau1109dc32016-12-14 20:46:58 +010035 unsigned int j, tp_max, tp_avg, eprob, tx_time;
Felix Fietkaua0497f92013-02-13 10:51:08 +010036 char htmode = '2';
37 char gimode = 'L';
Karl Beldan8ec78862014-10-22 18:20:37 +020038 u32 gflags;
Felix Fietkaua0497f92013-02-13 10:51:08 +010039
Felix Fietkau41d08582016-12-14 20:46:54 +010040 if (!mi->supported[i])
Felix Fietkaua0497f92013-02-13 10:51:08 +010041 return p;
42
43 mg = &minstrel_mcs_groups[i];
Karl Beldan8ec78862014-10-22 18:20:37 +020044 gflags = mg->flags;
45
46 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
Felix Fietkaua0497f92013-02-13 10:51:08 +010047 htmode = '4';
Karl Beldan8ec78862014-10-22 18:20:37 +020048 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
Karl Beldan92082472014-10-21 10:38:38 +020049 htmode = '8';
Karl Beldan8ec78862014-10-22 18:20:37 +020050 if (gflags & IEEE80211_TX_RC_SHORT_GI)
Felix Fietkaua0497f92013-02-13 10:51:08 +010051 gimode = 'S';
52
53 for (j = 0; j < MCS_GROUP_RATES; j++) {
Thomas Huehn91340732015-03-24 21:09:39 +010054 struct minstrel_rate_stats *mrs = &mi->groups[i].rates[j];
Felix Fietkaua0497f92013-02-13 10:51:08 +010055 static const int bitrates[4] = { 10, 20, 55, 110 };
56 int idx = i * MCS_GROUP_RATES + j;
Felix Fietkau202df502018-10-06 19:35:02 +020057 unsigned int duration;
Felix Fietkaua0497f92013-02-13 10:51:08 +010058
Felix Fietkau41d08582016-12-14 20:46:54 +010059 if (!(mi->supported[i] & BIT(j)))
Felix Fietkaua0497f92013-02-13 10:51:08 +010060 continue;
61
Thomas Huehn9c00bb72015-03-24 21:09:35 +010062 if (gflags & IEEE80211_TX_RC_MCS) {
63 p += sprintf(p, "HT%c0 ", htmode);
64 p += sprintf(p, "%cGI ", gimode);
65 p += sprintf(p, "%d ", mg->streams);
66 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
67 p += sprintf(p, "VHT%c0 ", htmode);
68 p += sprintf(p, "%cGI ", gimode);
69 p += sprintf(p, "%d ", mg->streams);
70 } else {
71 p += sprintf(p, "CCK ");
72 p += sprintf(p, "%cP ", j < 4 ? 'L' : 'S');
73 p += sprintf(p, "1 ");
74 }
Felix Fietkaua0497f92013-02-13 10:51:08 +010075
Thomas Huehn59358392014-09-09 23:22:14 +020076 *(p++) = (idx == mi->max_tp_rate[0]) ? 'A' : ' ';
77 *(p++) = (idx == mi->max_tp_rate[1]) ? 'B' : ' ';
78 *(p++) = (idx == mi->max_tp_rate[2]) ? 'C' : ' ';
79 *(p++) = (idx == mi->max_tp_rate[3]) ? 'D' : ' ';
Felix Fietkaua0497f92013-02-13 10:51:08 +010080 *(p++) = (idx == mi->max_prob_rate) ? 'P' : ' ';
81
Karl Beldan8ec78862014-10-22 18:20:37 +020082 if (gflags & IEEE80211_TX_RC_MCS) {
Thomas Huehn9c00bb72015-03-24 21:09:35 +010083 p += sprintf(p, " MCS%-2u", (mg->streams - 1) * 8 + j);
Karl Beldan8ec78862014-10-22 18:20:37 +020084 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
Thomas Huehn9c00bb72015-03-24 21:09:35 +010085 p += sprintf(p, " MCS%-1u/%1u", j, mg->streams);
Felix Fietkaua0497f92013-02-13 10:51:08 +010086 } else {
Karl Beldan8ec78862014-10-22 18:20:37 +020087 int r = bitrates[j % 4];
88
Thomas Huehn9c00bb72015-03-24 21:09:35 +010089 p += sprintf(p, " %2u.%1uM", r / 10, r % 10);
Felix Fietkaua0497f92013-02-13 10:51:08 +010090 }
91
Thomas Huehn9c00bb72015-03-24 21:09:35 +010092 p += sprintf(p, " %3u ", idx);
93
94 /* tx_time[rate(i)] in usec */
Felix Fietkau202df502018-10-06 19:35:02 +020095 duration = mg->duration[j];
96 duration <<= mg->shift;
97 tx_time = DIV_ROUND_CLOSEST(duration, 1000);
Thomas Huehn50e55a82015-03-24 21:09:41 +010098 p += sprintf(p, "%6u ", tx_time);
Thomas Huehn9c00bb72015-03-24 21:09:35 +010099
Thomas Huehn50e55a82015-03-24 21:09:41 +0100100 tp_max = minstrel_ht_get_tp_avg(mi, i, j, MINSTREL_FRAC(100, 100));
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200101 tp_avg = minstrel_ht_get_tp_avg(mi, i, j, mrs->prob_avg);
102 eprob = MINSTREL_TRUNC(mrs->prob_avg * 1000);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100103
Felix Fietkau506dbf92018-10-06 19:35:07 +0200104 p += sprintf(p, "%4u.%1u %4u.%1u %3u.%1u"
Felix Fietkau1109dc32016-12-14 20:46:58 +0100105 " %3u %3u %-3u "
Thomas Huehn5f919ab2015-03-24 21:09:43 +0100106 "%9llu %-9llu\n",
Thomas Huehn50e55a82015-03-24 21:09:41 +0100107 tp_max / 10, tp_max % 10,
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100108 tp_avg / 10, tp_avg % 10,
Felix Fietkaua0497f92013-02-13 10:51:08 +0100109 eprob / 10, eprob % 10,
Thomas Huehn91340732015-03-24 21:09:39 +0100110 mrs->retry_count,
111 mrs->last_success,
112 mrs->last_attempts,
113 (unsigned long long)mrs->succ_hist,
114 (unsigned long long)mrs->att_hist);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100115 }
116
117 return p;
118}
119
Felix Fietkauec8aa662010-05-13 16:48:03 +0200120static int
121minstrel_ht_stats_open(struct inode *inode, struct file *file)
122{
123 struct minstrel_ht_sta_priv *msp = inode->i_private;
124 struct minstrel_ht_sta *mi = &msp->ht;
125 struct minstrel_debugfs_info *ms;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100126 unsigned int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200127 int ret;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100128 char *p;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200129
130 if (!msp->is_ht) {
131 inode->i_private = &msp->legacy;
132 ret = minstrel_stats_open(inode, file);
133 inode->i_private = msp;
134 return ret;
135 }
136
Karl Beldan92082472014-10-21 10:38:38 +0200137 ms = kmalloc(32768, GFP_KERNEL);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200138 if (!ms)
139 return -ENOMEM;
140
141 file->private_data = ms;
142 p = ms->buf;
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100143
144 p += sprintf(p, "\n");
Johannes Berga0c391b2015-09-23 10:29:20 +0200145 p += sprintf(p,
Felix Fietkau506dbf92018-10-06 19:35:07 +0200146 " best ____________rate__________ ____statistics___ _____last____ ______sum-of________\n");
Johannes Berga0c391b2015-09-23 10:29:20 +0200147 p += sprintf(p,
Felix Fietkau506dbf92018-10-06 19:35:07 +0200148 "mode guard # rate [name idx airtime max_tp] [avg(tp) avg(prob)] [retry|suc|att] [#success | #attempts]\n");
Karl Beldan11b23572014-10-20 10:54:36 +0200149
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200150 p = minstrel_ht_stats_dump(mi, MINSTREL_CCK_GROUP, p);
151 for (i = 0; i < MINSTREL_CCK_GROUP; i++)
Felix Fietkaua0497f92013-02-13 10:51:08 +0100152 p = minstrel_ht_stats_dump(mi, i, p);
Karl Beldan92082472014-10-21 10:38:38 +0200153 for (i++; i < ARRAY_SIZE(mi->groups); i++)
154 p = minstrel_ht_stats_dump(mi, i, p);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200155
Felix Fietkauec8aa662010-05-13 16:48:03 +0200156 p += sprintf(p, "\nTotal packet count:: ideal %d "
157 "lookaround %d\n",
158 max(0, (int) mi->total_packets - (int) mi->sample_packets),
159 mi->sample_packets);
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100160 if (mi->avg_ampdu_len)
161 p += sprintf(p, "Average # of aggregated frames per A-MPDU: %d.%d\n",
162 MINSTREL_TRUNC(mi->avg_ampdu_len),
163 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200164 ms->len = p - ms->buf;
Karl Beldan92082472014-10-21 10:38:38 +0200165 WARN_ON(ms->len + sizeof(*ms) > 32768);
Karl Beldan11b23572014-10-20 10:54:36 +0200166
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200167 return nonseekable_open(inode, file);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200168}
169
170static const struct file_operations minstrel_ht_stat_fops = {
171 .owner = THIS_MODULE,
172 .open = minstrel_ht_stats_open,
173 .read = minstrel_stats_read,
174 .release = minstrel_stats_release,
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200175 .llseek = no_llseek,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200176};
177
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100178static char *
179minstrel_ht_stats_csv_dump(struct minstrel_ht_sta *mi, int i, char *p)
180{
181 const struct mcs_group *mg;
Felix Fietkau1109dc32016-12-14 20:46:58 +0100182 unsigned int j, tp_max, tp_avg, eprob, tx_time;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100183 char htmode = '2';
184 char gimode = 'L';
185 u32 gflags;
186
Felix Fietkau41d08582016-12-14 20:46:54 +0100187 if (!mi->supported[i])
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100188 return p;
189
190 mg = &minstrel_mcs_groups[i];
191 gflags = mg->flags;
192
193 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
194 htmode = '4';
195 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
196 htmode = '8';
197 if (gflags & IEEE80211_TX_RC_SHORT_GI)
198 gimode = 'S';
199
200 for (j = 0; j < MCS_GROUP_RATES; j++) {
Thomas Huehn91340732015-03-24 21:09:39 +0100201 struct minstrel_rate_stats *mrs = &mi->groups[i].rates[j];
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100202 static const int bitrates[4] = { 10, 20, 55, 110 };
203 int idx = i * MCS_GROUP_RATES + j;
Felix Fietkau202df502018-10-06 19:35:02 +0200204 unsigned int duration;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100205
Felix Fietkau41d08582016-12-14 20:46:54 +0100206 if (!(mi->supported[i] & BIT(j)))
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100207 continue;
208
209 if (gflags & IEEE80211_TX_RC_MCS) {
210 p += sprintf(p, "HT%c0,", htmode);
211 p += sprintf(p, "%cGI,", gimode);
212 p += sprintf(p, "%d,", mg->streams);
213 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
214 p += sprintf(p, "VHT%c0,", htmode);
215 p += sprintf(p, "%cGI,", gimode);
216 p += sprintf(p, "%d,", mg->streams);
217 } else {
218 p += sprintf(p, "CCK,");
219 p += sprintf(p, "%cP,", j < 4 ? 'L' : 'S');
220 p += sprintf(p, "1,");
221 }
222
223 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[0]) ? "A" : ""));
224 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[1]) ? "B" : ""));
225 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[2]) ? "C" : ""));
226 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[3]) ? "D" : ""));
227 p += sprintf(p, "%s" ,((idx == mi->max_prob_rate) ? "P" : ""));
228
229 if (gflags & IEEE80211_TX_RC_MCS) {
230 p += sprintf(p, ",MCS%-2u,", (mg->streams - 1) * 8 + j);
231 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
232 p += sprintf(p, ",MCS%-1u/%1u,", j, mg->streams);
233 } else {
234 int r = bitrates[j % 4];
235 p += sprintf(p, ",%2u.%1uM,", r / 10, r % 10);
236 }
237
238 p += sprintf(p, "%u,", idx);
Felix Fietkau202df502018-10-06 19:35:02 +0200239
240 duration = mg->duration[j];
241 duration <<= mg->shift;
242 tx_time = DIV_ROUND_CLOSEST(duration, 1000);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100243 p += sprintf(p, "%u,", tx_time);
244
Thomas Huehn50e55a82015-03-24 21:09:41 +0100245 tp_max = minstrel_ht_get_tp_avg(mi, i, j, MINSTREL_FRAC(100, 100));
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200246 tp_avg = minstrel_ht_get_tp_avg(mi, i, j, mrs->prob_avg);
247 eprob = MINSTREL_TRUNC(mrs->prob_avg * 1000);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100248
Felix Fietkau506dbf92018-10-06 19:35:07 +0200249 p += sprintf(p, "%u.%u,%u.%u,%u.%u,%u,%u,"
Thomas Huehn5f919ab2015-03-24 21:09:43 +0100250 "%u,%llu,%llu,",
Thomas Huehn50e55a82015-03-24 21:09:41 +0100251 tp_max / 10, tp_max % 10,
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100252 tp_avg / 10, tp_avg % 10,
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100253 eprob / 10, eprob % 10,
Thomas Huehn91340732015-03-24 21:09:39 +0100254 mrs->retry_count,
255 mrs->last_success,
256 mrs->last_attempts,
257 (unsigned long long)mrs->succ_hist,
258 (unsigned long long)mrs->att_hist);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100259 p += sprintf(p, "%d,%d,%d.%d\n",
260 max(0, (int) mi->total_packets -
261 (int) mi->sample_packets),
262 mi->sample_packets,
263 MINSTREL_TRUNC(mi->avg_ampdu_len),
264 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
265 }
266
267 return p;
268}
269
270static int
271minstrel_ht_stats_csv_open(struct inode *inode, struct file *file)
272{
273 struct minstrel_ht_sta_priv *msp = inode->i_private;
274 struct minstrel_ht_sta *mi = &msp->ht;
275 struct minstrel_debugfs_info *ms;
276 unsigned int i;
277 int ret;
278 char *p;
279
280 if (!msp->is_ht) {
281 inode->i_private = &msp->legacy;
282 ret = minstrel_stats_csv_open(inode, file);
283 inode->i_private = msp;
284 return ret;
285 }
286
287 ms = kmalloc(32768, GFP_KERNEL);
288
289 if (!ms)
290 return -ENOMEM;
291
292 file->private_data = ms;
293
294 p = ms->buf;
295
296 p = minstrel_ht_stats_csv_dump(mi, MINSTREL_CCK_GROUP, p);
297 for (i = 0; i < MINSTREL_CCK_GROUP; i++)
298 p = minstrel_ht_stats_csv_dump(mi, i, p);
299 for (i++; i < ARRAY_SIZE(mi->groups); i++)
300 p = minstrel_ht_stats_csv_dump(mi, i, p);
301
302 ms->len = p - ms->buf;
303 WARN_ON(ms->len + sizeof(*ms) > 32768);
304
305 return nonseekable_open(inode, file);
306}
307
308static const struct file_operations minstrel_ht_stat_csv_fops = {
309 .owner = THIS_MODULE,
310 .open = minstrel_ht_stats_csv_open,
311 .read = minstrel_stats_read,
312 .release = minstrel_stats_release,
313 .llseek = no_llseek,
314};
315
Felix Fietkauec8aa662010-05-13 16:48:03 +0200316void
317minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
318{
319 struct minstrel_ht_sta_priv *msp = priv_sta;
320
Felix Fietkau5b5e8732018-10-06 19:35:00 +0200321 debugfs_create_file("rc_stats", 0444, dir, msp,
322 &minstrel_ht_stat_fops);
323 debugfs_create_file("rc_stats_csv", 0444, dir, msp,
324 &minstrel_ht_stat_csv_fops);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200325}