blob: 31641d0b0f5cd25fff4eb7672a00fd37f285daeb [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 Fietkaub1c4f682018-10-06 19:35:01 +020018static ssize_t
19minstrel_stats_read(struct file *file, char __user *buf, size_t len, loff_t *ppos)
20{
21 struct minstrel_debugfs_info *ms;
22
23 ms = file->private_data;
24 return simple_read_from_buffer(buf, len, ppos, ms->buf, ms->len);
25}
26
27static int
28minstrel_stats_release(struct inode *inode, struct file *file)
29{
30 kfree(file->private_data);
31 return 0;
32}
33
Felix Fietkaua0497f92013-02-13 10:51:08 +010034static char *
35minstrel_ht_stats_dump(struct minstrel_ht_sta *mi, int i, char *p)
36{
Felix Fietkaua0497f92013-02-13 10:51:08 +010037 const struct mcs_group *mg;
Felix Fietkau1109dc32016-12-14 20:46:58 +010038 unsigned int j, tp_max, tp_avg, eprob, tx_time;
Felix Fietkaua0497f92013-02-13 10:51:08 +010039 char htmode = '2';
40 char gimode = 'L';
Karl Beldan8ec78862014-10-22 18:20:37 +020041 u32 gflags;
Felix Fietkaua0497f92013-02-13 10:51:08 +010042
Felix Fietkau41d08582016-12-14 20:46:54 +010043 if (!mi->supported[i])
Felix Fietkaua0497f92013-02-13 10:51:08 +010044 return p;
45
46 mg = &minstrel_mcs_groups[i];
Karl Beldan8ec78862014-10-22 18:20:37 +020047 gflags = mg->flags;
48
49 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
Felix Fietkaua0497f92013-02-13 10:51:08 +010050 htmode = '4';
Karl Beldan8ec78862014-10-22 18:20:37 +020051 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
Karl Beldan92082472014-10-21 10:38:38 +020052 htmode = '8';
Karl Beldan8ec78862014-10-22 18:20:37 +020053 if (gflags & IEEE80211_TX_RC_SHORT_GI)
Felix Fietkaua0497f92013-02-13 10:51:08 +010054 gimode = 'S';
55
56 for (j = 0; j < MCS_GROUP_RATES; j++) {
Thomas Huehn91340732015-03-24 21:09:39 +010057 struct minstrel_rate_stats *mrs = &mi->groups[i].rates[j];
Felix Fietkaua0497f92013-02-13 10:51:08 +010058 static const int bitrates[4] = { 10, 20, 55, 110 };
59 int idx = i * MCS_GROUP_RATES + j;
Felix Fietkau202df502018-10-06 19:35:02 +020060 unsigned int duration;
Felix Fietkaua0497f92013-02-13 10:51:08 +010061
Felix Fietkau41d08582016-12-14 20:46:54 +010062 if (!(mi->supported[i] & BIT(j)))
Felix Fietkaua0497f92013-02-13 10:51:08 +010063 continue;
64
Thomas Huehn9c00bb72015-03-24 21:09:35 +010065 if (gflags & IEEE80211_TX_RC_MCS) {
66 p += sprintf(p, "HT%c0 ", htmode);
67 p += sprintf(p, "%cGI ", gimode);
68 p += sprintf(p, "%d ", mg->streams);
69 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
70 p += sprintf(p, "VHT%c0 ", htmode);
71 p += sprintf(p, "%cGI ", gimode);
72 p += sprintf(p, "%d ", mg->streams);
73 } else {
74 p += sprintf(p, "CCK ");
75 p += sprintf(p, "%cP ", j < 4 ? 'L' : 'S');
76 p += sprintf(p, "1 ");
77 }
Felix Fietkaua0497f92013-02-13 10:51:08 +010078
Thomas Huehn59358392014-09-09 23:22:14 +020079 *(p++) = (idx == mi->max_tp_rate[0]) ? 'A' : ' ';
80 *(p++) = (idx == mi->max_tp_rate[1]) ? 'B' : ' ';
81 *(p++) = (idx == mi->max_tp_rate[2]) ? 'C' : ' ';
82 *(p++) = (idx == mi->max_tp_rate[3]) ? 'D' : ' ';
Felix Fietkaua0497f92013-02-13 10:51:08 +010083 *(p++) = (idx == mi->max_prob_rate) ? 'P' : ' ';
84
Karl Beldan8ec78862014-10-22 18:20:37 +020085 if (gflags & IEEE80211_TX_RC_MCS) {
Thomas Huehn9c00bb72015-03-24 21:09:35 +010086 p += sprintf(p, " MCS%-2u", (mg->streams - 1) * 8 + j);
Karl Beldan8ec78862014-10-22 18:20:37 +020087 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
Thomas Huehn9c00bb72015-03-24 21:09:35 +010088 p += sprintf(p, " MCS%-1u/%1u", j, mg->streams);
Felix Fietkaua0497f92013-02-13 10:51:08 +010089 } else {
Karl Beldan8ec78862014-10-22 18:20:37 +020090 int r = bitrates[j % 4];
91
Thomas Huehn9c00bb72015-03-24 21:09:35 +010092 p += sprintf(p, " %2u.%1uM", r / 10, r % 10);
Felix Fietkaua0497f92013-02-13 10:51:08 +010093 }
94
Thomas Huehn9c00bb72015-03-24 21:09:35 +010095 p += sprintf(p, " %3u ", idx);
96
97 /* tx_time[rate(i)] in usec */
Felix Fietkau202df502018-10-06 19:35:02 +020098 duration = mg->duration[j];
99 duration <<= mg->shift;
100 tx_time = DIV_ROUND_CLOSEST(duration, 1000);
Thomas Huehn50e55a82015-03-24 21:09:41 +0100101 p += sprintf(p, "%6u ", tx_time);
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100102
Thomas Huehn50e55a82015-03-24 21:09:41 +0100103 tp_max = minstrel_ht_get_tp_avg(mi, i, j, MINSTREL_FRAC(100, 100));
104 tp_avg = minstrel_ht_get_tp_avg(mi, i, j, mrs->prob_ewma);
Thomas Huehn91340732015-03-24 21:09:39 +0100105 eprob = MINSTREL_TRUNC(mrs->prob_ewma * 1000);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100106
Felix Fietkau506dbf92018-10-06 19:35:07 +0200107 p += sprintf(p, "%4u.%1u %4u.%1u %3u.%1u"
Felix Fietkau1109dc32016-12-14 20:46:58 +0100108 " %3u %3u %-3u "
Thomas Huehn5f919ab2015-03-24 21:09:43 +0100109 "%9llu %-9llu\n",
Thomas Huehn50e55a82015-03-24 21:09:41 +0100110 tp_max / 10, tp_max % 10,
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100111 tp_avg / 10, tp_avg % 10,
Felix Fietkaua0497f92013-02-13 10:51:08 +0100112 eprob / 10, eprob % 10,
Thomas Huehn91340732015-03-24 21:09:39 +0100113 mrs->retry_count,
114 mrs->last_success,
115 mrs->last_attempts,
116 (unsigned long long)mrs->succ_hist,
117 (unsigned long long)mrs->att_hist);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100118 }
119
120 return p;
121}
122
Felix Fietkauec8aa662010-05-13 16:48:03 +0200123static int
124minstrel_ht_stats_open(struct inode *inode, struct file *file)
125{
126 struct minstrel_ht_sta_priv *msp = inode->i_private;
127 struct minstrel_ht_sta *mi = &msp->ht;
128 struct minstrel_debugfs_info *ms;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100129 unsigned int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200130 int ret;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100131 char *p;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200132
133 if (!msp->is_ht) {
134 inode->i_private = &msp->legacy;
135 ret = minstrel_stats_open(inode, file);
136 inode->i_private = msp;
137 return ret;
138 }
139
Karl Beldan92082472014-10-21 10:38:38 +0200140 ms = kmalloc(32768, GFP_KERNEL);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200141 if (!ms)
142 return -ENOMEM;
143
144 file->private_data = ms;
145 p = ms->buf;
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100146
147 p += sprintf(p, "\n");
Johannes Berga0c391b2015-09-23 10:29:20 +0200148 p += sprintf(p,
Felix Fietkau506dbf92018-10-06 19:35:07 +0200149 " best ____________rate__________ ____statistics___ _____last____ ______sum-of________\n");
Johannes Berga0c391b2015-09-23 10:29:20 +0200150 p += sprintf(p,
Felix Fietkau506dbf92018-10-06 19:35:07 +0200151 "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 +0200152
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200153 p = minstrel_ht_stats_dump(mi, MINSTREL_CCK_GROUP, p);
154 for (i = 0; i < MINSTREL_CCK_GROUP; i++)
Felix Fietkaua0497f92013-02-13 10:51:08 +0100155 p = minstrel_ht_stats_dump(mi, i, p);
Karl Beldan92082472014-10-21 10:38:38 +0200156 for (i++; i < ARRAY_SIZE(mi->groups); i++)
157 p = minstrel_ht_stats_dump(mi, i, p);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200158
Felix Fietkauec8aa662010-05-13 16:48:03 +0200159 p += sprintf(p, "\nTotal packet count:: ideal %d "
160 "lookaround %d\n",
161 max(0, (int) mi->total_packets - (int) mi->sample_packets),
162 mi->sample_packets);
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100163 if (mi->avg_ampdu_len)
164 p += sprintf(p, "Average # of aggregated frames per A-MPDU: %d.%d\n",
165 MINSTREL_TRUNC(mi->avg_ampdu_len),
166 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200167 ms->len = p - ms->buf;
Karl Beldan92082472014-10-21 10:38:38 +0200168 WARN_ON(ms->len + sizeof(*ms) > 32768);
Karl Beldan11b23572014-10-20 10:54:36 +0200169
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200170 return nonseekable_open(inode, file);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200171}
172
173static const struct file_operations minstrel_ht_stat_fops = {
174 .owner = THIS_MODULE,
175 .open = minstrel_ht_stats_open,
176 .read = minstrel_stats_read,
177 .release = minstrel_stats_release,
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200178 .llseek = no_llseek,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200179};
180
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100181static char *
182minstrel_ht_stats_csv_dump(struct minstrel_ht_sta *mi, int i, char *p)
183{
184 const struct mcs_group *mg;
Felix Fietkau1109dc32016-12-14 20:46:58 +0100185 unsigned int j, tp_max, tp_avg, eprob, tx_time;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100186 char htmode = '2';
187 char gimode = 'L';
188 u32 gflags;
189
Felix Fietkau41d08582016-12-14 20:46:54 +0100190 if (!mi->supported[i])
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100191 return p;
192
193 mg = &minstrel_mcs_groups[i];
194 gflags = mg->flags;
195
196 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
197 htmode = '4';
198 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
199 htmode = '8';
200 if (gflags & IEEE80211_TX_RC_SHORT_GI)
201 gimode = 'S';
202
203 for (j = 0; j < MCS_GROUP_RATES; j++) {
Thomas Huehn91340732015-03-24 21:09:39 +0100204 struct minstrel_rate_stats *mrs = &mi->groups[i].rates[j];
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100205 static const int bitrates[4] = { 10, 20, 55, 110 };
206 int idx = i * MCS_GROUP_RATES + j;
Felix Fietkau202df502018-10-06 19:35:02 +0200207 unsigned int duration;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100208
Felix Fietkau41d08582016-12-14 20:46:54 +0100209 if (!(mi->supported[i] & BIT(j)))
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100210 continue;
211
212 if (gflags & IEEE80211_TX_RC_MCS) {
213 p += sprintf(p, "HT%c0,", htmode);
214 p += sprintf(p, "%cGI,", gimode);
215 p += sprintf(p, "%d,", mg->streams);
216 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
217 p += sprintf(p, "VHT%c0,", htmode);
218 p += sprintf(p, "%cGI,", gimode);
219 p += sprintf(p, "%d,", mg->streams);
220 } else {
221 p += sprintf(p, "CCK,");
222 p += sprintf(p, "%cP,", j < 4 ? 'L' : 'S');
223 p += sprintf(p, "1,");
224 }
225
226 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[0]) ? "A" : ""));
227 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[1]) ? "B" : ""));
228 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[2]) ? "C" : ""));
229 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[3]) ? "D" : ""));
230 p += sprintf(p, "%s" ,((idx == mi->max_prob_rate) ? "P" : ""));
231
232 if (gflags & IEEE80211_TX_RC_MCS) {
233 p += sprintf(p, ",MCS%-2u,", (mg->streams - 1) * 8 + j);
234 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
235 p += sprintf(p, ",MCS%-1u/%1u,", j, mg->streams);
236 } else {
237 int r = bitrates[j % 4];
238 p += sprintf(p, ",%2u.%1uM,", r / 10, r % 10);
239 }
240
241 p += sprintf(p, "%u,", idx);
Felix Fietkau202df502018-10-06 19:35:02 +0200242
243 duration = mg->duration[j];
244 duration <<= mg->shift;
245 tx_time = DIV_ROUND_CLOSEST(duration, 1000);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100246 p += sprintf(p, "%u,", tx_time);
247
Thomas Huehn50e55a82015-03-24 21:09:41 +0100248 tp_max = minstrel_ht_get_tp_avg(mi, i, j, MINSTREL_FRAC(100, 100));
249 tp_avg = minstrel_ht_get_tp_avg(mi, i, j, mrs->prob_ewma);
Thomas Huehn91340732015-03-24 21:09:39 +0100250 eprob = MINSTREL_TRUNC(mrs->prob_ewma * 1000);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100251
Felix Fietkau506dbf92018-10-06 19:35:07 +0200252 p += sprintf(p, "%u.%u,%u.%u,%u.%u,%u,%u,"
Thomas Huehn5f919ab2015-03-24 21:09:43 +0100253 "%u,%llu,%llu,",
Thomas Huehn50e55a82015-03-24 21:09:41 +0100254 tp_max / 10, tp_max % 10,
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100255 tp_avg / 10, tp_avg % 10,
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100256 eprob / 10, eprob % 10,
Thomas Huehn91340732015-03-24 21:09:39 +0100257 mrs->retry_count,
258 mrs->last_success,
259 mrs->last_attempts,
260 (unsigned long long)mrs->succ_hist,
261 (unsigned long long)mrs->att_hist);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100262 p += sprintf(p, "%d,%d,%d.%d\n",
263 max(0, (int) mi->total_packets -
264 (int) mi->sample_packets),
265 mi->sample_packets,
266 MINSTREL_TRUNC(mi->avg_ampdu_len),
267 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
268 }
269
270 return p;
271}
272
273static int
274minstrel_ht_stats_csv_open(struct inode *inode, struct file *file)
275{
276 struct minstrel_ht_sta_priv *msp = inode->i_private;
277 struct minstrel_ht_sta *mi = &msp->ht;
278 struct minstrel_debugfs_info *ms;
279 unsigned int i;
280 int ret;
281 char *p;
282
283 if (!msp->is_ht) {
284 inode->i_private = &msp->legacy;
285 ret = minstrel_stats_csv_open(inode, file);
286 inode->i_private = msp;
287 return ret;
288 }
289
290 ms = kmalloc(32768, GFP_KERNEL);
291
292 if (!ms)
293 return -ENOMEM;
294
295 file->private_data = ms;
296
297 p = ms->buf;
298
299 p = minstrel_ht_stats_csv_dump(mi, MINSTREL_CCK_GROUP, p);
300 for (i = 0; i < MINSTREL_CCK_GROUP; i++)
301 p = minstrel_ht_stats_csv_dump(mi, i, p);
302 for (i++; i < ARRAY_SIZE(mi->groups); i++)
303 p = minstrel_ht_stats_csv_dump(mi, i, p);
304
305 ms->len = p - ms->buf;
306 WARN_ON(ms->len + sizeof(*ms) > 32768);
307
308 return nonseekable_open(inode, file);
309}
310
311static const struct file_operations minstrel_ht_stat_csv_fops = {
312 .owner = THIS_MODULE,
313 .open = minstrel_ht_stats_csv_open,
314 .read = minstrel_stats_read,
315 .release = minstrel_stats_release,
316 .llseek = no_llseek,
317};
318
Felix Fietkauec8aa662010-05-13 16:48:03 +0200319void
320minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
321{
322 struct minstrel_ht_sta_priv *msp = priv_sta;
323
Felix Fietkau5b5e8732018-10-06 19:35:00 +0200324 debugfs_create_file("rc_stats", 0444, dir, msp,
325 &minstrel_ht_stat_fops);
326 debugfs_create_file("rc_stats_csv", 0444, dir, msp,
327 &minstrel_ht_stat_csv_fops);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200328}