blob: d537bec9375463eb115b0f26260f8f3d03759596 [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{
21 unsigned int max_mcs = MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS;
22 const struct mcs_group *mg;
23 unsigned int j, tp, prob, eprob;
24 char htmode = '2';
25 char gimode = 'L';
26
27 if (!mi->groups[i].supported)
28 return p;
29
30 mg = &minstrel_mcs_groups[i];
31 if (mg->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
32 htmode = '4';
33 if (mg->flags & IEEE80211_TX_RC_SHORT_GI)
34 gimode = 'S';
35
36 for (j = 0; j < MCS_GROUP_RATES; j++) {
37 struct minstrel_rate_stats *mr = &mi->groups[i].rates[j];
38 static const int bitrates[4] = { 10, 20, 55, 110 };
39 int idx = i * MCS_GROUP_RATES + j;
40
41 if (!(mi->groups[i].supported & BIT(j)))
42 continue;
43
44 if (i == max_mcs)
45 p += sprintf(p, "CCK/%cP ", j < 4 ? 'L' : 'S');
46 else
47 p += sprintf(p, "HT%c0/%cGI ", htmode, gimode);
48
Thomas Huehn59358392014-09-09 23:22:14 +020049 *(p++) = (idx == mi->max_tp_rate[0]) ? 'A' : ' ';
50 *(p++) = (idx == mi->max_tp_rate[1]) ? 'B' : ' ';
51 *(p++) = (idx == mi->max_tp_rate[2]) ? 'C' : ' ';
52 *(p++) = (idx == mi->max_tp_rate[3]) ? 'D' : ' ';
Felix Fietkaua0497f92013-02-13 10:51:08 +010053 *(p++) = (idx == mi->max_prob_rate) ? 'P' : ' ';
54
55 if (i == max_mcs) {
56 int r = bitrates[j % 4];
57 p += sprintf(p, " %2u.%1uM", r / 10, r % 10);
58 } else {
Karl Beldan7a5e3fa2013-11-11 13:12:55 +010059 p += sprintf(p, " MCS%-2u", (mg->streams - 1) * 8 + j);
Felix Fietkaua0497f92013-02-13 10:51:08 +010060 }
61
62 tp = mr->cur_tp / 10;
63 prob = MINSTREL_TRUNC(mr->cur_prob * 1000);
64 eprob = MINSTREL_TRUNC(mr->probability * 1000);
65
Karl Beldan11b23572014-10-20 10:54:36 +020066 p += sprintf(p, " %4u.%1u %3u.%1u %3u.%1u "
67 "%3u %4u(%4u) %9llu(%9llu)\n",
Felix Fietkaua0497f92013-02-13 10:51:08 +010068 tp / 10, tp % 10,
69 eprob / 10, eprob % 10,
70 prob / 10, prob % 10,
71 mr->retry_count,
72 mr->last_success,
73 mr->last_attempts,
74 (unsigned long long)mr->succ_hist,
75 (unsigned long long)mr->att_hist);
76 }
77
78 return p;
79}
80
Felix Fietkauec8aa662010-05-13 16:48:03 +020081static int
82minstrel_ht_stats_open(struct inode *inode, struct file *file)
83{
84 struct minstrel_ht_sta_priv *msp = inode->i_private;
85 struct minstrel_ht_sta *mi = &msp->ht;
86 struct minstrel_debugfs_info *ms;
Felix Fietkaua0497f92013-02-13 10:51:08 +010087 unsigned int i;
88 unsigned int max_mcs = MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS;
Felix Fietkauec8aa662010-05-13 16:48:03 +020089 char *p;
90 int ret;
91
92 if (!msp->is_ht) {
93 inode->i_private = &msp->legacy;
94 ret = minstrel_stats_open(inode, file);
95 inode->i_private = msp;
96 return ret;
97 }
98
Karl Beldan11b23572014-10-20 10:54:36 +020099 ms = kmalloc(8192, GFP_KERNEL);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200100 if (!ms)
101 return -ENOMEM;
102
103 file->private_data = ms;
104 p = ms->buf;
Karl Beldan11b23572014-10-20 10:54:36 +0200105 p += sprintf(p, "type rate tpt eprob *prob "
106 "ret *ok(*cum) ok( cum)\n");
107
Felix Fietkauec8aa662010-05-13 16:48:03 +0200108
Felix Fietkaua0497f92013-02-13 10:51:08 +0100109 p = minstrel_ht_stats_dump(mi, max_mcs, p);
110 for (i = 0; i < max_mcs; i++)
111 p = minstrel_ht_stats_dump(mi, i, p);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200112
Felix Fietkauec8aa662010-05-13 16:48:03 +0200113 p += sprintf(p, "\nTotal packet count:: ideal %d "
114 "lookaround %d\n",
115 max(0, (int) mi->total_packets - (int) mi->sample_packets),
116 mi->sample_packets);
117 p += sprintf(p, "Average A-MPDU length: %d.%d\n",
118 MINSTREL_TRUNC(mi->avg_ampdu_len),
119 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
120 ms->len = p - ms->buf;
121
Karl Beldan11b23572014-10-20 10:54:36 +0200122 WARN_ON(ms->len + sizeof(*ms) > 8192);
123
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200124 return nonseekable_open(inode, file);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200125}
126
127static const struct file_operations minstrel_ht_stat_fops = {
128 .owner = THIS_MODULE,
129 .open = minstrel_ht_stats_open,
130 .read = minstrel_stats_read,
131 .release = minstrel_stats_release,
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200132 .llseek = no_llseek,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200133};
134
135void
136minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
137{
138 struct minstrel_ht_sta_priv *msp = priv_sta;
139
140 msp->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, msp,
141 &minstrel_ht_stat_fops);
142}
143
144void
145minstrel_ht_remove_sta_debugfs(void *priv, void *priv_sta)
146{
147 struct minstrel_ht_sta_priv *msp = priv_sta;
148
149 debugfs_remove(msp->dbg_stats);
150}