2 * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
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.
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>
13 #include <linux/export.h>
14 #include <net/mac80211.h>
15 #include "rc80211_minstrel.h"
16 #include "rc80211_minstrel_ht.h"
19 minstrel_stats_read(struct file
*file
, char __user
*buf
, size_t len
, loff_t
*ppos
)
21 struct minstrel_debugfs_info
*ms
;
23 ms
= file
->private_data
;
24 return simple_read_from_buffer(buf
, len
, ppos
, ms
->buf
, ms
->len
);
28 minstrel_stats_release(struct inode
*inode
, struct file
*file
)
30 kfree(file
->private_data
);
35 minstrel_ht_stats_dump(struct minstrel_ht_sta
*mi
, int i
, char *p
)
37 const struct mcs_group
*mg
;
38 unsigned int j
, tp_max
, tp_avg
, eprob
, tx_time
;
43 if (!mi
->supported
[i
])
46 mg
= &minstrel_mcs_groups
[i
];
49 if (gflags
& IEEE80211_TX_RC_40_MHZ_WIDTH
)
51 else if (gflags
& IEEE80211_TX_RC_80_MHZ_WIDTH
)
53 if (gflags
& IEEE80211_TX_RC_SHORT_GI
)
56 for (j
= 0; j
< MCS_GROUP_RATES
; j
++) {
57 struct minstrel_rate_stats
*mrs
= &mi
->groups
[i
].rates
[j
];
58 static const int bitrates
[4] = { 10, 20, 55, 110 };
59 int idx
= i
* MCS_GROUP_RATES
+ j
;
60 unsigned int duration
;
62 if (!(mi
->supported
[i
] & BIT(j
)))
65 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
);
74 p
+= sprintf(p
, "CCK ");
75 p
+= sprintf(p
, "%cP ", j
< 4 ? 'L' : 'S');
76 p
+= sprintf(p
, "1 ");
79 *(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' : ' ';
83 *(p
++) = (idx
== mi
->max_prob_rate
) ? 'P' : ' ';
85 if (gflags
& IEEE80211_TX_RC_MCS
) {
86 p
+= sprintf(p
, " MCS%-2u", (mg
->streams
- 1) * 8 + j
);
87 } else if (gflags
& IEEE80211_TX_RC_VHT_MCS
) {
88 p
+= sprintf(p
, " MCS%-1u/%1u", j
, mg
->streams
);
90 int r
= bitrates
[j
% 4];
92 p
+= sprintf(p
, " %2u.%1uM", r
/ 10, r
% 10);
95 p
+= sprintf(p
, " %3u ", idx
);
97 /* tx_time[rate(i)] in usec */
98 duration
= mg
->duration
[j
];
99 duration
<<= mg
->shift
;
100 tx_time
= DIV_ROUND_CLOSEST(duration
, 1000);
101 p
+= sprintf(p
, "%6u ", tx_time
);
103 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
);
105 eprob
= MINSTREL_TRUNC(mrs
->prob_ewma
* 1000);
107 p
+= sprintf(p
, "%4u.%1u %4u.%1u %3u.%1u"
110 tp_max
/ 10, tp_max
% 10,
111 tp_avg
/ 10, tp_avg
% 10,
112 eprob
/ 10, eprob
% 10,
116 (unsigned long long)mrs
->succ_hist
,
117 (unsigned long long)mrs
->att_hist
);
124 minstrel_ht_stats_open(struct inode
*inode
, struct file
*file
)
126 struct minstrel_ht_sta_priv
*msp
= inode
->i_private
;
127 struct minstrel_ht_sta
*mi
= &msp
->ht
;
128 struct minstrel_debugfs_info
*ms
;
134 inode
->i_private
= &msp
->legacy
;
135 ret
= minstrel_stats_open(inode
, file
);
136 inode
->i_private
= msp
;
140 ms
= kmalloc(32768, GFP_KERNEL
);
144 file
->private_data
= ms
;
147 p
+= sprintf(p
, "\n");
149 " best ____________rate__________ ____statistics___ _____last____ ______sum-of________\n");
151 "mode guard # rate [name idx airtime max_tp] [avg(tp) avg(prob)] [retry|suc|att] [#success | #attempts]\n");
153 p
= minstrel_ht_stats_dump(mi
, MINSTREL_CCK_GROUP
, p
);
154 for (i
= 0; i
< MINSTREL_CCK_GROUP
; i
++)
155 p
= minstrel_ht_stats_dump(mi
, i
, p
);
156 for (i
++; i
< ARRAY_SIZE(mi
->groups
); i
++)
157 p
= minstrel_ht_stats_dump(mi
, i
, p
);
159 p
+= sprintf(p
, "\nTotal packet count:: ideal %d "
161 max(0, (int) mi
->total_packets
- (int) mi
->sample_packets
),
163 p
+= sprintf(p
, "Average # of aggregated frames per A-MPDU: %d.%d\n",
164 MINSTREL_TRUNC(mi
->avg_ampdu_len
),
165 MINSTREL_TRUNC(mi
->avg_ampdu_len
* 10) % 10);
166 ms
->len
= p
- ms
->buf
;
167 WARN_ON(ms
->len
+ sizeof(*ms
) > 32768);
169 return nonseekable_open(inode
, file
);
172 static 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
,
181 minstrel_ht_stats_csv_dump(struct minstrel_ht_sta
*mi
, int i
, char *p
)
183 const struct mcs_group
*mg
;
184 unsigned int j
, tp_max
, tp_avg
, eprob
, tx_time
;
189 if (!mi
->supported
[i
])
192 mg
= &minstrel_mcs_groups
[i
];
195 if (gflags
& IEEE80211_TX_RC_40_MHZ_WIDTH
)
197 else if (gflags
& IEEE80211_TX_RC_80_MHZ_WIDTH
)
199 if (gflags
& IEEE80211_TX_RC_SHORT_GI
)
202 for (j
= 0; j
< MCS_GROUP_RATES
; j
++) {
203 struct minstrel_rate_stats
*mrs
= &mi
->groups
[i
].rates
[j
];
204 static const int bitrates
[4] = { 10, 20, 55, 110 };
205 int idx
= i
* MCS_GROUP_RATES
+ j
;
206 unsigned int duration
;
208 if (!(mi
->supported
[i
] & BIT(j
)))
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
);
220 p
+= sprintf(p
, "CCK,");
221 p
+= sprintf(p
, "%cP,", j
< 4 ? 'L' : 'S');
222 p
+= sprintf(p
, "1,");
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" : ""));
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
);
236 int r
= bitrates
[j
% 4];
237 p
+= sprintf(p
, ",%2u.%1uM,", r
/ 10, r
% 10);
240 p
+= sprintf(p
, "%u,", idx
);
242 duration
= mg
->duration
[j
];
243 duration
<<= mg
->shift
;
244 tx_time
= DIV_ROUND_CLOSEST(duration
, 1000);
245 p
+= sprintf(p
, "%u,", tx_time
);
247 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
);
249 eprob
= MINSTREL_TRUNC(mrs
->prob_ewma
* 1000);
251 p
+= sprintf(p
, "%u.%u,%u.%u,%u.%u,%u,%u,"
253 tp_max
/ 10, tp_max
% 10,
254 tp_avg
/ 10, tp_avg
% 10,
255 eprob
/ 10, eprob
% 10,
259 (unsigned long long)mrs
->succ_hist
,
260 (unsigned long long)mrs
->att_hist
);
261 p
+= sprintf(p
, "%d,%d,%d.%d\n",
262 max(0, (int) mi
->total_packets
-
263 (int) mi
->sample_packets
),
265 MINSTREL_TRUNC(mi
->avg_ampdu_len
),
266 MINSTREL_TRUNC(mi
->avg_ampdu_len
* 10) % 10);
273 minstrel_ht_stats_csv_open(struct inode
*inode
, struct file
*file
)
275 struct minstrel_ht_sta_priv
*msp
= inode
->i_private
;
276 struct minstrel_ht_sta
*mi
= &msp
->ht
;
277 struct minstrel_debugfs_info
*ms
;
283 inode
->i_private
= &msp
->legacy
;
284 ret
= minstrel_stats_csv_open(inode
, file
);
285 inode
->i_private
= msp
;
289 ms
= kmalloc(32768, GFP_KERNEL
);
294 file
->private_data
= ms
;
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
);
304 ms
->len
= p
- ms
->buf
;
305 WARN_ON(ms
->len
+ sizeof(*ms
) > 32768);
307 return nonseekable_open(inode
, file
);
310 static 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
,
319 minstrel_ht_add_sta_debugfs(void *priv
, void *priv_sta
, struct dentry
*dir
)
321 struct minstrel_ht_sta_priv
*msp
= priv_sta
;
323 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
);