blob: 57820a5f2c16c3c88cf565cbb643485e27759ae7 [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);
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100163 p += sprintf(p, "Average # of aggregated frames per A-MPDU: %d.%d\n",
Felix Fietkauec8aa662010-05-13 16:48:03 +0200164 MINSTREL_TRUNC(mi->avg_ampdu_len),
165 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
166 ms->len = p - ms->buf;
Karl Beldan92082472014-10-21 10:38:38 +0200167 WARN_ON(ms->len + sizeof(*ms) > 32768);
Karl Beldan11b23572014-10-20 10:54:36 +0200168
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200169 return nonseekable_open(inode, file);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200170}
171
172static const struct file_operations minstrel_ht_stat_fops = {
173 .owner = THIS_MODULE,
174 .open = minstrel_ht_stats_open,
175 .read = minstrel_stats_read,
176 .release = minstrel_stats_release,
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200177 .llseek = no_llseek,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200178};
179
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100180static char *
181minstrel_ht_stats_csv_dump(struct minstrel_ht_sta *mi, int i, char *p)
182{
183 const struct mcs_group *mg;
Felix Fietkau1109dc32016-12-14 20:46:58 +0100184 unsigned int j, tp_max, tp_avg, eprob, tx_time;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100185 char htmode = '2';
186 char gimode = 'L';
187 u32 gflags;
188
Felix Fietkau41d08582016-12-14 20:46:54 +0100189 if (!mi->supported[i])
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100190 return p;
191
192 mg = &minstrel_mcs_groups[i];
193 gflags = mg->flags;
194
195 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
196 htmode = '4';
197 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
198 htmode = '8';
199 if (gflags & IEEE80211_TX_RC_SHORT_GI)
200 gimode = 'S';
201
202 for (j = 0; j < MCS_GROUP_RATES; j++) {
Thomas Huehn91340732015-03-24 21:09:39 +0100203 struct minstrel_rate_stats *mrs = &mi->groups[i].rates[j];
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100204 static const int bitrates[4] = { 10, 20, 55, 110 };
205 int idx = i * MCS_GROUP_RATES + j;
Felix Fietkau202df502018-10-06 19:35:02 +0200206 unsigned int duration;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100207
Felix Fietkau41d08582016-12-14 20:46:54 +0100208 if (!(mi->supported[i] & BIT(j)))
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100209 continue;
210
211 if (gflags & IEEE80211_TX_RC_MCS) {
212 p += sprintf(p, "HT%c0,", htmode);
213 p += sprintf(p, "%cGI,", gimode);
214 p += sprintf(p, "%d,", mg->streams);
215 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
216 p += sprintf(p, "VHT%c0,", htmode);
217 p += sprintf(p, "%cGI,", gimode);
218 p += sprintf(p, "%d,", mg->streams);
219 } else {
220 p += sprintf(p, "CCK,");
221 p += sprintf(p, "%cP,", j < 4 ? 'L' : 'S');
222 p += sprintf(p, "1,");
223 }
224
225 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[0]) ? "A" : ""));
226 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[1]) ? "B" : ""));
227 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[2]) ? "C" : ""));
228 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[3]) ? "D" : ""));
229 p += sprintf(p, "%s" ,((idx == mi->max_prob_rate) ? "P" : ""));
230
231 if (gflags & IEEE80211_TX_RC_MCS) {
232 p += sprintf(p, ",MCS%-2u,", (mg->streams - 1) * 8 + j);
233 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
234 p += sprintf(p, ",MCS%-1u/%1u,", j, mg->streams);
235 } else {
236 int r = bitrates[j % 4];
237 p += sprintf(p, ",%2u.%1uM,", r / 10, r % 10);
238 }
239
240 p += sprintf(p, "%u,", idx);
Felix Fietkau202df502018-10-06 19:35:02 +0200241
242 duration = mg->duration[j];
243 duration <<= mg->shift;
244 tx_time = DIV_ROUND_CLOSEST(duration, 1000);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100245 p += sprintf(p, "%u,", tx_time);
246
Thomas Huehn50e55a82015-03-24 21:09:41 +0100247 tp_max = minstrel_ht_get_tp_avg(mi, i, j, MINSTREL_FRAC(100, 100));
248 tp_avg = minstrel_ht_get_tp_avg(mi, i, j, mrs->prob_ewma);
Thomas Huehn91340732015-03-24 21:09:39 +0100249 eprob = MINSTREL_TRUNC(mrs->prob_ewma * 1000);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100250
Felix Fietkau506dbf92018-10-06 19:35:07 +0200251 p += sprintf(p, "%u.%u,%u.%u,%u.%u,%u,%u,"
Thomas Huehn5f919ab2015-03-24 21:09:43 +0100252 "%u,%llu,%llu,",
Thomas Huehn50e55a82015-03-24 21:09:41 +0100253 tp_max / 10, tp_max % 10,
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100254 tp_avg / 10, tp_avg % 10,
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100255 eprob / 10, eprob % 10,
Thomas Huehn91340732015-03-24 21:09:39 +0100256 mrs->retry_count,
257 mrs->last_success,
258 mrs->last_attempts,
259 (unsigned long long)mrs->succ_hist,
260 (unsigned long long)mrs->att_hist);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100261 p += sprintf(p, "%d,%d,%d.%d\n",
262 max(0, (int) mi->total_packets -
263 (int) mi->sample_packets),
264 mi->sample_packets,
265 MINSTREL_TRUNC(mi->avg_ampdu_len),
266 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
267 }
268
269 return p;
270}
271
272static int
273minstrel_ht_stats_csv_open(struct inode *inode, struct file *file)
274{
275 struct minstrel_ht_sta_priv *msp = inode->i_private;
276 struct minstrel_ht_sta *mi = &msp->ht;
277 struct minstrel_debugfs_info *ms;
278 unsigned int i;
279 int ret;
280 char *p;
281
282 if (!msp->is_ht) {
283 inode->i_private = &msp->legacy;
284 ret = minstrel_stats_csv_open(inode, file);
285 inode->i_private = msp;
286 return ret;
287 }
288
289 ms = kmalloc(32768, GFP_KERNEL);
290
291 if (!ms)
292 return -ENOMEM;
293
294 file->private_data = ms;
295
296 p = ms->buf;
297
298 p = minstrel_ht_stats_csv_dump(mi, MINSTREL_CCK_GROUP, p);
299 for (i = 0; i < MINSTREL_CCK_GROUP; i++)
300 p = minstrel_ht_stats_csv_dump(mi, i, p);
301 for (i++; i < ARRAY_SIZE(mi->groups); i++)
302 p = minstrel_ht_stats_csv_dump(mi, i, p);
303
304 ms->len = p - ms->buf;
305 WARN_ON(ms->len + sizeof(*ms) > 32768);
306
307 return nonseekable_open(inode, file);
308}
309
310static const struct file_operations minstrel_ht_stat_csv_fops = {
311 .owner = THIS_MODULE,
312 .open = minstrel_ht_stats_csv_open,
313 .read = minstrel_stats_read,
314 .release = minstrel_stats_release,
315 .llseek = no_llseek,
316};
317
Felix Fietkauec8aa662010-05-13 16:48:03 +0200318void
319minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
320{
321 struct minstrel_ht_sta_priv *msp = priv_sta;
322
Felix Fietkau5b5e8732018-10-06 19:35:00 +0200323 debugfs_create_file("rc_stats", 0444, dir, msp,
324 &minstrel_ht_stat_fops);
325 debugfs_create_file("rc_stats_csv", 0444, dir, msp,
326 &minstrel_ht_stat_csv_fops);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200327}