blob: 25b8a67a63a4e703873c45b7acd1baa7a6d00e3c [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>
Felix Fietkauec8aa662010-05-13 16:48:03 +020012#include "rc80211_minstrel_ht.h"
13
Felix Fietkaucbda98c2021-01-15 13:02:36 +010014struct minstrel_debugfs_info {
15 size_t len;
16 char buf[];
17};
18
Felix Fietkaub1c4f682018-10-06 19:35:01 +020019static ssize_t
20minstrel_stats_read(struct file *file, char __user *buf, size_t len, loff_t *ppos)
21{
22 struct minstrel_debugfs_info *ms;
23
24 ms = file->private_data;
25 return simple_read_from_buffer(buf, len, ppos, ms->buf, ms->len);
26}
27
28static int
29minstrel_stats_release(struct inode *inode, struct file *file)
30{
31 kfree(file->private_data);
32 return 0;
33}
34
Felix Fietkau4a8d0c92021-01-27 06:57:34 +010035static bool
36minstrel_ht_is_sample_rate(struct minstrel_ht_sta *mi, int idx)
37{
38 int type, i;
39
40 for (type = 0; type < ARRAY_SIZE(mi->sample); type++)
41 for (i = 0; i < MINSTREL_SAMPLE_RATES; i++)
42 if (mi->sample[type].cur_sample_rates[i] == idx)
43 return true;
44 return false;
45}
46
Felix Fietkaua0497f92013-02-13 10:51:08 +010047static char *
48minstrel_ht_stats_dump(struct minstrel_ht_sta *mi, int i, char *p)
49{
Felix Fietkaua0497f92013-02-13 10:51:08 +010050 const struct mcs_group *mg;
Felix Fietkau1109dc32016-12-14 20:46:58 +010051 unsigned int j, tp_max, tp_avg, eprob, tx_time;
Felix Fietkaua0497f92013-02-13 10:51:08 +010052 char htmode = '2';
53 char gimode = 'L';
Karl Beldan8ec78862014-10-22 18:20:37 +020054 u32 gflags;
Felix Fietkaua0497f92013-02-13 10:51:08 +010055
Felix Fietkau41d08582016-12-14 20:46:54 +010056 if (!mi->supported[i])
Felix Fietkaua0497f92013-02-13 10:51:08 +010057 return p;
58
59 mg = &minstrel_mcs_groups[i];
Karl Beldan8ec78862014-10-22 18:20:37 +020060 gflags = mg->flags;
61
62 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
Felix Fietkaua0497f92013-02-13 10:51:08 +010063 htmode = '4';
Karl Beldan8ec78862014-10-22 18:20:37 +020064 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
Karl Beldan92082472014-10-21 10:38:38 +020065 htmode = '8';
Karl Beldan8ec78862014-10-22 18:20:37 +020066 if (gflags & IEEE80211_TX_RC_SHORT_GI)
Felix Fietkaua0497f92013-02-13 10:51:08 +010067 gimode = 'S';
68
69 for (j = 0; j < MCS_GROUP_RATES; j++) {
Thomas Huehn91340732015-03-24 21:09:39 +010070 struct minstrel_rate_stats *mrs = &mi->groups[i].rates[j];
Felix Fietkaua42fa252021-01-27 06:57:30 +010071 int idx = MI_RATE(i, j);
Felix Fietkau202df502018-10-06 19:35:02 +020072 unsigned int duration;
Felix Fietkaua0497f92013-02-13 10:51:08 +010073
Felix Fietkau41d08582016-12-14 20:46:54 +010074 if (!(mi->supported[i] & BIT(j)))
Felix Fietkaua0497f92013-02-13 10:51:08 +010075 continue;
76
Thomas Huehn9c00bb72015-03-24 21:09:35 +010077 if (gflags & IEEE80211_TX_RC_MCS) {
78 p += sprintf(p, "HT%c0 ", htmode);
79 p += sprintf(p, "%cGI ", gimode);
80 p += sprintf(p, "%d ", mg->streams);
81 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
82 p += sprintf(p, "VHT%c0 ", htmode);
83 p += sprintf(p, "%cGI ", gimode);
84 p += sprintf(p, "%d ", mg->streams);
Felix Fietkaua7844a52021-01-15 13:02:35 +010085 } else if (i == MINSTREL_OFDM_GROUP) {
86 p += sprintf(p, "OFDM ");
87 p += sprintf(p, "1 ");
Thomas Huehn9c00bb72015-03-24 21:09:35 +010088 } else {
89 p += sprintf(p, "CCK ");
90 p += sprintf(p, "%cP ", j < 4 ? 'L' : 'S');
91 p += sprintf(p, "1 ");
92 }
Felix Fietkaua0497f92013-02-13 10:51:08 +010093
Thomas Huehn59358392014-09-09 23:22:14 +020094 *(p++) = (idx == mi->max_tp_rate[0]) ? 'A' : ' ';
95 *(p++) = (idx == mi->max_tp_rate[1]) ? 'B' : ' ';
96 *(p++) = (idx == mi->max_tp_rate[2]) ? 'C' : ' ';
97 *(p++) = (idx == mi->max_tp_rate[3]) ? 'D' : ' ';
Felix Fietkaua0497f92013-02-13 10:51:08 +010098 *(p++) = (idx == mi->max_prob_rate) ? 'P' : ' ';
Felix Fietkau4a8d0c92021-01-27 06:57:34 +010099 *(p++) = minstrel_ht_is_sample_rate(mi, idx) ? 'S' : ' ';
Felix Fietkaua0497f92013-02-13 10:51:08 +0100100
Karl Beldan8ec78862014-10-22 18:20:37 +0200101 if (gflags & IEEE80211_TX_RC_MCS) {
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100102 p += sprintf(p, " MCS%-2u", (mg->streams - 1) * 8 + j);
Karl Beldan8ec78862014-10-22 18:20:37 +0200103 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100104 p += sprintf(p, " MCS%-1u/%1u", j, mg->streams);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100105 } else {
Felix Fietkaua7844a52021-01-15 13:02:35 +0100106 int r;
107
108 if (i == MINSTREL_OFDM_GROUP)
109 r = minstrel_ofdm_bitrates[j % 8];
110 else
111 r = minstrel_cck_bitrates[j % 4];
Karl Beldan8ec78862014-10-22 18:20:37 +0200112
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100113 p += sprintf(p, " %2u.%1uM", r / 10, r % 10);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100114 }
115
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100116 p += sprintf(p, " %3u ", idx);
117
118 /* tx_time[rate(i)] in usec */
Felix Fietkau202df502018-10-06 19:35:02 +0200119 duration = mg->duration[j];
120 duration <<= mg->shift;
121 tx_time = DIV_ROUND_CLOSEST(duration, 1000);
Thomas Huehn50e55a82015-03-24 21:09:41 +0100122 p += sprintf(p, "%6u ", tx_time);
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100123
Thomas Huehn50e55a82015-03-24 21:09:41 +0100124 tp_max = minstrel_ht_get_tp_avg(mi, i, j, MINSTREL_FRAC(100, 100));
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200125 tp_avg = minstrel_ht_get_tp_avg(mi, i, j, mrs->prob_avg);
126 eprob = MINSTREL_TRUNC(mrs->prob_avg * 1000);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100127
Felix Fietkau506dbf92018-10-06 19:35:07 +0200128 p += sprintf(p, "%4u.%1u %4u.%1u %3u.%1u"
Felix Fietkau1109dc32016-12-14 20:46:58 +0100129 " %3u %3u %-3u "
Thomas Huehn5f919ab2015-03-24 21:09:43 +0100130 "%9llu %-9llu\n",
Thomas Huehn50e55a82015-03-24 21:09:41 +0100131 tp_max / 10, tp_max % 10,
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100132 tp_avg / 10, tp_avg % 10,
Felix Fietkaua0497f92013-02-13 10:51:08 +0100133 eprob / 10, eprob % 10,
Thomas Huehn91340732015-03-24 21:09:39 +0100134 mrs->retry_count,
135 mrs->last_success,
136 mrs->last_attempts,
137 (unsigned long long)mrs->succ_hist,
138 (unsigned long long)mrs->att_hist);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100139 }
140
141 return p;
142}
143
Felix Fietkauec8aa662010-05-13 16:48:03 +0200144static int
145minstrel_ht_stats_open(struct inode *inode, struct file *file)
146{
Felix Fietkaucbda98c2021-01-15 13:02:36 +0100147 struct minstrel_ht_sta *mi = inode->i_private;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200148 struct minstrel_debugfs_info *ms;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100149 unsigned int i;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100150 char *p;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200151
Karl Beldan92082472014-10-21 10:38:38 +0200152 ms = kmalloc(32768, GFP_KERNEL);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200153 if (!ms)
154 return -ENOMEM;
155
156 file->private_data = ms;
157 p = ms->buf;
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100158
159 p += sprintf(p, "\n");
Johannes Berga0c391b2015-09-23 10:29:20 +0200160 p += sprintf(p,
Felix Fietkau4a8d0c92021-01-27 06:57:34 +0100161 " best ____________rate__________ ____statistics___ _____last____ ______sum-of________\n");
Johannes Berga0c391b2015-09-23 10:29:20 +0200162 p += sprintf(p,
Felix Fietkau4a8d0c92021-01-27 06:57:34 +0100163 "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 +0200164
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200165 p = minstrel_ht_stats_dump(mi, MINSTREL_CCK_GROUP, p);
166 for (i = 0; i < MINSTREL_CCK_GROUP; i++)
Felix Fietkaua0497f92013-02-13 10:51:08 +0100167 p = minstrel_ht_stats_dump(mi, i, p);
Karl Beldan92082472014-10-21 10:38:38 +0200168 for (i++; i < ARRAY_SIZE(mi->groups); i++)
169 p = minstrel_ht_stats_dump(mi, i, p);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200170
Felix Fietkauec8aa662010-05-13 16:48:03 +0200171 p += sprintf(p, "\nTotal packet count:: ideal %d "
172 "lookaround %d\n",
173 max(0, (int) mi->total_packets - (int) mi->sample_packets),
174 mi->sample_packets);
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100175 if (mi->avg_ampdu_len)
176 p += sprintf(p, "Average # of aggregated frames per A-MPDU: %d.%d\n",
177 MINSTREL_TRUNC(mi->avg_ampdu_len),
178 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200179 ms->len = p - ms->buf;
Karl Beldan92082472014-10-21 10:38:38 +0200180 WARN_ON(ms->len + sizeof(*ms) > 32768);
Karl Beldan11b23572014-10-20 10:54:36 +0200181
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200182 return nonseekable_open(inode, file);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200183}
184
185static const struct file_operations minstrel_ht_stat_fops = {
186 .owner = THIS_MODULE,
187 .open = minstrel_ht_stats_open,
188 .read = minstrel_stats_read,
189 .release = minstrel_stats_release,
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200190 .llseek = no_llseek,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200191};
192
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100193static char *
194minstrel_ht_stats_csv_dump(struct minstrel_ht_sta *mi, int i, char *p)
195{
196 const struct mcs_group *mg;
Felix Fietkau1109dc32016-12-14 20:46:58 +0100197 unsigned int j, tp_max, tp_avg, eprob, tx_time;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100198 char htmode = '2';
199 char gimode = 'L';
200 u32 gflags;
201
Felix Fietkau41d08582016-12-14 20:46:54 +0100202 if (!mi->supported[i])
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100203 return p;
204
205 mg = &minstrel_mcs_groups[i];
206 gflags = mg->flags;
207
208 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
209 htmode = '4';
210 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
211 htmode = '8';
212 if (gflags & IEEE80211_TX_RC_SHORT_GI)
213 gimode = 'S';
214
215 for (j = 0; j < MCS_GROUP_RATES; j++) {
Thomas Huehn91340732015-03-24 21:09:39 +0100216 struct minstrel_rate_stats *mrs = &mi->groups[i].rates[j];
Felix Fietkaua42fa252021-01-27 06:57:30 +0100217 int idx = MI_RATE(i, j);
Felix Fietkau202df502018-10-06 19:35:02 +0200218 unsigned int duration;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100219
Felix Fietkau41d08582016-12-14 20:46:54 +0100220 if (!(mi->supported[i] & BIT(j)))
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100221 continue;
222
223 if (gflags & IEEE80211_TX_RC_MCS) {
224 p += sprintf(p, "HT%c0,", htmode);
225 p += sprintf(p, "%cGI,", gimode);
226 p += sprintf(p, "%d,", mg->streams);
227 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
228 p += sprintf(p, "VHT%c0,", htmode);
229 p += sprintf(p, "%cGI,", gimode);
230 p += sprintf(p, "%d,", mg->streams);
Felix Fietkaua7844a52021-01-15 13:02:35 +0100231 } else if (i == MINSTREL_OFDM_GROUP) {
232 p += sprintf(p, "OFDM,,1,");
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100233 } else {
234 p += sprintf(p, "CCK,");
235 p += sprintf(p, "%cP,", j < 4 ? 'L' : 'S');
236 p += sprintf(p, "1,");
237 }
238
239 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[0]) ? "A" : ""));
240 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[1]) ? "B" : ""));
241 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[2]) ? "C" : ""));
242 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[3]) ? "D" : ""));
243 p += sprintf(p, "%s" ,((idx == mi->max_prob_rate) ? "P" : ""));
Felix Fietkau4a8d0c92021-01-27 06:57:34 +0100244 p += sprintf(p, "%s", (minstrel_ht_is_sample_rate(mi, idx) ? "S" : ""));
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100245
246 if (gflags & IEEE80211_TX_RC_MCS) {
247 p += sprintf(p, ",MCS%-2u,", (mg->streams - 1) * 8 + j);
248 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
249 p += sprintf(p, ",MCS%-1u/%1u,", j, mg->streams);
250 } else {
Felix Fietkaua7844a52021-01-15 13:02:35 +0100251 int r;
252
253 if (i == MINSTREL_OFDM_GROUP)
254 r = minstrel_ofdm_bitrates[j % 8];
255 else
256 r = minstrel_cck_bitrates[j % 4];
257
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100258 p += sprintf(p, ",%2u.%1uM,", r / 10, r % 10);
259 }
260
261 p += sprintf(p, "%u,", idx);
Felix Fietkau202df502018-10-06 19:35:02 +0200262
263 duration = mg->duration[j];
264 duration <<= mg->shift;
265 tx_time = DIV_ROUND_CLOSEST(duration, 1000);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100266 p += sprintf(p, "%u,", tx_time);
267
Thomas Huehn50e55a82015-03-24 21:09:41 +0100268 tp_max = minstrel_ht_get_tp_avg(mi, i, j, MINSTREL_FRAC(100, 100));
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200269 tp_avg = minstrel_ht_get_tp_avg(mi, i, j, mrs->prob_avg);
270 eprob = MINSTREL_TRUNC(mrs->prob_avg * 1000);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100271
Felix Fietkau506dbf92018-10-06 19:35:07 +0200272 p += sprintf(p, "%u.%u,%u.%u,%u.%u,%u,%u,"
Thomas Huehn5f919ab2015-03-24 21:09:43 +0100273 "%u,%llu,%llu,",
Thomas Huehn50e55a82015-03-24 21:09:41 +0100274 tp_max / 10, tp_max % 10,
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100275 tp_avg / 10, tp_avg % 10,
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100276 eprob / 10, eprob % 10,
Thomas Huehn91340732015-03-24 21:09:39 +0100277 mrs->retry_count,
278 mrs->last_success,
279 mrs->last_attempts,
280 (unsigned long long)mrs->succ_hist,
281 (unsigned long long)mrs->att_hist);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100282 p += sprintf(p, "%d,%d,%d.%d\n",
283 max(0, (int) mi->total_packets -
284 (int) mi->sample_packets),
285 mi->sample_packets,
286 MINSTREL_TRUNC(mi->avg_ampdu_len),
287 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
288 }
289
290 return p;
291}
292
293static int
294minstrel_ht_stats_csv_open(struct inode *inode, struct file *file)
295{
Felix Fietkaucbda98c2021-01-15 13:02:36 +0100296 struct minstrel_ht_sta *mi = inode->i_private;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100297 struct minstrel_debugfs_info *ms;
298 unsigned int i;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100299 char *p;
300
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100301 ms = kmalloc(32768, GFP_KERNEL);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100302 if (!ms)
303 return -ENOMEM;
304
305 file->private_data = ms;
306
307 p = ms->buf;
308
309 p = minstrel_ht_stats_csv_dump(mi, MINSTREL_CCK_GROUP, p);
310 for (i = 0; i < MINSTREL_CCK_GROUP; i++)
311 p = minstrel_ht_stats_csv_dump(mi, i, p);
312 for (i++; i < ARRAY_SIZE(mi->groups); i++)
313 p = minstrel_ht_stats_csv_dump(mi, i, p);
314
315 ms->len = p - ms->buf;
316 WARN_ON(ms->len + sizeof(*ms) > 32768);
317
318 return nonseekable_open(inode, file);
319}
320
321static const struct file_operations minstrel_ht_stat_csv_fops = {
322 .owner = THIS_MODULE,
323 .open = minstrel_ht_stats_csv_open,
324 .read = minstrel_stats_read,
325 .release = minstrel_stats_release,
326 .llseek = no_llseek,
327};
328
Felix Fietkauec8aa662010-05-13 16:48:03 +0200329void
330minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
331{
Felix Fietkaucbda98c2021-01-15 13:02:36 +0100332 debugfs_create_file("rc_stats", 0444, dir, priv_sta,
Felix Fietkau5b5e8732018-10-06 19:35:00 +0200333 &minstrel_ht_stat_fops);
Felix Fietkaucbda98c2021-01-15 13:02:36 +0100334 debugfs_create_file("rc_stats_csv", 0444, dir, priv_sta,
Felix Fietkau5b5e8732018-10-06 19:35:00 +0200335 &minstrel_ht_stat_csv_fops);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200336}