blob: 135ed39790c084d8b0d90b8e531ccaeb4bb2b1f6 [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 Huehn50e55a82015-03-24 21:09:41 +010022 unsigned int j, tp_max, tp_avg, 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++) {
Thomas Huehn91340732015-03-24 21:09:39 +010041 struct minstrel_rate_stats *mrs = &mi->groups[i].rates[j];
Felix Fietkaua0497f92013-02-13 10:51:08 +010042 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);
Thomas Huehn50e55a82015-03-24 21:09:41 +010082 p += sprintf(p, "%6u ", tx_time);
Thomas Huehn9c00bb72015-03-24 21:09:35 +010083
Thomas Huehn50e55a82015-03-24 21:09:41 +010084 tp_max = minstrel_ht_get_tp_avg(mi, i, j, MINSTREL_FRAC(100, 100));
85 tp_avg = minstrel_ht_get_tp_avg(mi, i, j, mrs->prob_ewma);
Thomas Huehn91340732015-03-24 21:09:39 +010086 prob = MINSTREL_TRUNC(mrs->cur_prob * 1000);
87 eprob = MINSTREL_TRUNC(mrs->prob_ewma * 1000);
Felix Fietkaua0497f92013-02-13 10:51:08 +010088
Thomas Huehn50e55a82015-03-24 21:09:41 +010089 p += sprintf(p, "%4u.%1u %4u.%1u %3u.%1u %3u.%1u "
Thomas Huehn9c00bb72015-03-24 21:09:35 +010090 "%3u %3u %-3u %9llu %-9llu\n",
Thomas Huehn50e55a82015-03-24 21:09:41 +010091 tp_max / 10, tp_max % 10,
Thomas Huehn6a27b2c2015-03-24 21:09:40 +010092 tp_avg / 10, tp_avg % 10,
Felix Fietkaua0497f92013-02-13 10:51:08 +010093 eprob / 10, eprob % 10,
94 prob / 10, prob % 10,
Thomas Huehn91340732015-03-24 21:09:39 +010095 mrs->retry_count,
96 mrs->last_success,
97 mrs->last_attempts,
98 (unsigned long long)mrs->succ_hist,
99 (unsigned long long)mrs->att_hist);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100100 }
101
102 return p;
103}
104
Felix Fietkauec8aa662010-05-13 16:48:03 +0200105static int
106minstrel_ht_stats_open(struct inode *inode, struct file *file)
107{
108 struct minstrel_ht_sta_priv *msp = inode->i_private;
109 struct minstrel_ht_sta *mi = &msp->ht;
110 struct minstrel_debugfs_info *ms;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100111 unsigned int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200112 int ret;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100113 char *p;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200114
115 if (!msp->is_ht) {
116 inode->i_private = &msp->legacy;
117 ret = minstrel_stats_open(inode, file);
118 inode->i_private = msp;
119 return ret;
120 }
121
Karl Beldan92082472014-10-21 10:38:38 +0200122 ms = kmalloc(32768, GFP_KERNEL);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200123 if (!ms)
124 return -ENOMEM;
125
126 file->private_data = ms;
127 p = ms->buf;
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100128
129 p += sprintf(p, "\n");
Thomas Huehn50e55a82015-03-24 21:09:41 +0100130 p += sprintf(p, " best ____________rate__________ "
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100131 "__statistics__ ________last_______ "
132 "______sum-of________\n");
Thomas Huehn50e55a82015-03-24 21:09:41 +0100133 p += sprintf(p, "mode guard # rate [name idx airtime max_tp] "
134 "[ ø(tp) ø(prob)] [prob.|retry|suc|att] [#success | "
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100135 "#attempts]\n");
Karl Beldan11b23572014-10-20 10:54:36 +0200136
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200137 p = minstrel_ht_stats_dump(mi, MINSTREL_CCK_GROUP, p);
138 for (i = 0; i < MINSTREL_CCK_GROUP; i++)
Felix Fietkaua0497f92013-02-13 10:51:08 +0100139 p = minstrel_ht_stats_dump(mi, i, p);
Karl Beldan92082472014-10-21 10:38:38 +0200140 for (i++; i < ARRAY_SIZE(mi->groups); i++)
141 p = minstrel_ht_stats_dump(mi, i, p);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200142
Felix Fietkauec8aa662010-05-13 16:48:03 +0200143 p += sprintf(p, "\nTotal packet count:: ideal %d "
144 "lookaround %d\n",
145 max(0, (int) mi->total_packets - (int) mi->sample_packets),
146 mi->sample_packets);
Thomas Huehn9c00bb72015-03-24 21:09:35 +0100147 p += sprintf(p, "Average # of aggregated frames per A-MPDU: %d.%d\n",
Felix Fietkauec8aa662010-05-13 16:48:03 +0200148 MINSTREL_TRUNC(mi->avg_ampdu_len),
149 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
150 ms->len = p - ms->buf;
Karl Beldan92082472014-10-21 10:38:38 +0200151 WARN_ON(ms->len + sizeof(*ms) > 32768);
Karl Beldan11b23572014-10-20 10:54:36 +0200152
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200153 return nonseekable_open(inode, file);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200154}
155
156static const struct file_operations minstrel_ht_stat_fops = {
157 .owner = THIS_MODULE,
158 .open = minstrel_ht_stats_open,
159 .read = minstrel_stats_read,
160 .release = minstrel_stats_release,
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200161 .llseek = no_llseek,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200162};
163
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100164static char *
165minstrel_ht_stats_csv_dump(struct minstrel_ht_sta *mi, int i, char *p)
166{
167 const struct mcs_group *mg;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100168 unsigned int j, tp_max, tp_avg, prob, eprob, tx_time;
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100169 char htmode = '2';
170 char gimode = 'L';
171 u32 gflags;
172
173 if (!mi->groups[i].supported)
174 return p;
175
176 mg = &minstrel_mcs_groups[i];
177 gflags = mg->flags;
178
179 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
180 htmode = '4';
181 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
182 htmode = '8';
183 if (gflags & IEEE80211_TX_RC_SHORT_GI)
184 gimode = 'S';
185
186 for (j = 0; j < MCS_GROUP_RATES; j++) {
Thomas Huehn91340732015-03-24 21:09:39 +0100187 struct minstrel_rate_stats *mrs = &mi->groups[i].rates[j];
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100188 static const int bitrates[4] = { 10, 20, 55, 110 };
189 int idx = i * MCS_GROUP_RATES + j;
190
191 if (!(mi->groups[i].supported & BIT(j)))
192 continue;
193
194 if (gflags & IEEE80211_TX_RC_MCS) {
195 p += sprintf(p, "HT%c0,", htmode);
196 p += sprintf(p, "%cGI,", gimode);
197 p += sprintf(p, "%d,", mg->streams);
198 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
199 p += sprintf(p, "VHT%c0,", htmode);
200 p += sprintf(p, "%cGI,", gimode);
201 p += sprintf(p, "%d,", mg->streams);
202 } else {
203 p += sprintf(p, "CCK,");
204 p += sprintf(p, "%cP,", j < 4 ? 'L' : 'S');
205 p += sprintf(p, "1,");
206 }
207
208 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[0]) ? "A" : ""));
209 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[1]) ? "B" : ""));
210 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[2]) ? "C" : ""));
211 p += sprintf(p, "%s" ,((idx == mi->max_tp_rate[3]) ? "D" : ""));
212 p += sprintf(p, "%s" ,((idx == mi->max_prob_rate) ? "P" : ""));
213
214 if (gflags & IEEE80211_TX_RC_MCS) {
215 p += sprintf(p, ",MCS%-2u,", (mg->streams - 1) * 8 + j);
216 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
217 p += sprintf(p, ",MCS%-1u/%1u,", j, mg->streams);
218 } else {
219 int r = bitrates[j % 4];
220 p += sprintf(p, ",%2u.%1uM,", r / 10, r % 10);
221 }
222
223 p += sprintf(p, "%u,", idx);
224 tx_time = DIV_ROUND_CLOSEST(mg->duration[j], 1000);
225 p += sprintf(p, "%u,", tx_time);
226
Thomas Huehn50e55a82015-03-24 21:09:41 +0100227 tp_max = minstrel_ht_get_tp_avg(mi, i, j, MINSTREL_FRAC(100, 100));
228 tp_avg = minstrel_ht_get_tp_avg(mi, i, j, mrs->prob_ewma);
Thomas Huehn91340732015-03-24 21:09:39 +0100229 prob = MINSTREL_TRUNC(mrs->cur_prob * 1000);
230 eprob = MINSTREL_TRUNC(mrs->prob_ewma * 1000);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100231
Thomas Huehn50e55a82015-03-24 21:09:41 +0100232 p += sprintf(p, "%u.%u,%u.%u,%u.%u,%u.%u,%u,%u,%u,%llu,%llu,",
233 tp_max / 10, tp_max % 10,
Thomas Huehn6a27b2c2015-03-24 21:09:40 +0100234 tp_avg / 10, tp_avg % 10,
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100235 eprob / 10, eprob % 10,
236 prob / 10, prob % 10,
Thomas Huehn91340732015-03-24 21:09:39 +0100237 mrs->retry_count,
238 mrs->last_success,
239 mrs->last_attempts,
240 (unsigned long long)mrs->succ_hist,
241 (unsigned long long)mrs->att_hist);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100242 p += sprintf(p, "%d,%d,%d.%d\n",
243 max(0, (int) mi->total_packets -
244 (int) mi->sample_packets),
245 mi->sample_packets,
246 MINSTREL_TRUNC(mi->avg_ampdu_len),
247 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
248 }
249
250 return p;
251}
252
253static int
254minstrel_ht_stats_csv_open(struct inode *inode, struct file *file)
255{
256 struct minstrel_ht_sta_priv *msp = inode->i_private;
257 struct minstrel_ht_sta *mi = &msp->ht;
258 struct minstrel_debugfs_info *ms;
259 unsigned int i;
260 int ret;
261 char *p;
262
263 if (!msp->is_ht) {
264 inode->i_private = &msp->legacy;
265 ret = minstrel_stats_csv_open(inode, file);
266 inode->i_private = msp;
267 return ret;
268 }
269
270 ms = kmalloc(32768, GFP_KERNEL);
271
272 if (!ms)
273 return -ENOMEM;
274
275 file->private_data = ms;
276
277 p = ms->buf;
278
279 p = minstrel_ht_stats_csv_dump(mi, MINSTREL_CCK_GROUP, p);
280 for (i = 0; i < MINSTREL_CCK_GROUP; i++)
281 p = minstrel_ht_stats_csv_dump(mi, i, p);
282 for (i++; i < ARRAY_SIZE(mi->groups); i++)
283 p = minstrel_ht_stats_csv_dump(mi, i, p);
284
285 ms->len = p - ms->buf;
286 WARN_ON(ms->len + sizeof(*ms) > 32768);
287
288 return nonseekable_open(inode, file);
289}
290
291static const struct file_operations minstrel_ht_stat_csv_fops = {
292 .owner = THIS_MODULE,
293 .open = minstrel_ht_stats_csv_open,
294 .read = minstrel_stats_read,
295 .release = minstrel_stats_release,
296 .llseek = no_llseek,
297};
298
Felix Fietkauec8aa662010-05-13 16:48:03 +0200299void
300minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
301{
302 struct minstrel_ht_sta_priv *msp = priv_sta;
303
304 msp->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, msp,
305 &minstrel_ht_stat_fops);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100306 msp->dbg_stats_csv = debugfs_create_file("rc_stats_csv", S_IRUGO,
307 dir, msp, &minstrel_ht_stat_csv_fops);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200308}
309
310void
311minstrel_ht_remove_sta_debugfs(void *priv, void *priv_sta)
312{
313 struct minstrel_ht_sta_priv *msp = priv_sta;
314
315 debugfs_remove(msp->dbg_stats);
Thomas Huehn2cae0b62015-03-24 21:09:37 +0100316 debugfs_remove(msp->dbg_stats_csv);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200317}