blob: 20c676b8e5b68fa366ed670640e9091c39ebfde3 [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;
22 unsigned int j, tp, prob, eprob;
23 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++) {
41 struct minstrel_rate_stats *mr = &mi->groups[i].rates[j];
42 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
Karl Beldan8ec78862014-10-22 18:20:37 +020048 if (gflags & IEEE80211_TX_RC_MCS)
49 p += sprintf(p, " HT%c0/%cGI ", htmode, gimode);
50 else if (gflags & IEEE80211_TX_RC_VHT_MCS)
Karl Beldan92082472014-10-21 10:38:38 +020051 p += sprintf(p, "VHT%c0/%cGI ", htmode, gimode);
Felix Fietkaua0497f92013-02-13 10:51:08 +010052 else
Karl Beldan8ec78862014-10-22 18:20:37 +020053 p += sprintf(p, " CCK/%cP ", j < 4 ? 'L' : 'S');
Felix Fietkaua0497f92013-02-13 10:51:08 +010054
Thomas Huehn59358392014-09-09 23:22:14 +020055 *(p++) = (idx == mi->max_tp_rate[0]) ? 'A' : ' ';
56 *(p++) = (idx == mi->max_tp_rate[1]) ? 'B' : ' ';
57 *(p++) = (idx == mi->max_tp_rate[2]) ? 'C' : ' ';
58 *(p++) = (idx == mi->max_tp_rate[3]) ? 'D' : ' ';
Felix Fietkaua0497f92013-02-13 10:51:08 +010059 *(p++) = (idx == mi->max_prob_rate) ? 'P' : ' ';
60
Karl Beldan8ec78862014-10-22 18:20:37 +020061 if (gflags & IEEE80211_TX_RC_MCS) {
62 p += sprintf(p, " MCS%-2u ", (mg->streams - 1) * 8 + j);
63 } else if (gflags & IEEE80211_TX_RC_VHT_MCS) {
Karl Beldan92082472014-10-21 10:38:38 +020064 p += sprintf(p, " MCS%-1u/%1u", j, mg->streams);
Felix Fietkaua0497f92013-02-13 10:51:08 +010065 } else {
Karl Beldan8ec78862014-10-22 18:20:37 +020066 int r = bitrates[j % 4];
67
68 p += sprintf(p, " %2u.%1uM ", r / 10, r % 10);
Felix Fietkaua0497f92013-02-13 10:51:08 +010069 }
70
71 tp = mr->cur_tp / 10;
72 prob = MINSTREL_TRUNC(mr->cur_prob * 1000);
73 eprob = MINSTREL_TRUNC(mr->probability * 1000);
74
Karl Beldan11b23572014-10-20 10:54:36 +020075 p += sprintf(p, " %4u.%1u %3u.%1u %3u.%1u "
76 "%3u %4u(%4u) %9llu(%9llu)\n",
Felix Fietkaua0497f92013-02-13 10:51:08 +010077 tp / 10, tp % 10,
78 eprob / 10, eprob % 10,
79 prob / 10, prob % 10,
80 mr->retry_count,
81 mr->last_success,
82 mr->last_attempts,
83 (unsigned long long)mr->succ_hist,
84 (unsigned long long)mr->att_hist);
85 }
86
87 return p;
88}
89
Felix Fietkauec8aa662010-05-13 16:48:03 +020090static int
91minstrel_ht_stats_open(struct inode *inode, struct file *file)
92{
93 struct minstrel_ht_sta_priv *msp = inode->i_private;
94 struct minstrel_ht_sta *mi = &msp->ht;
95 struct minstrel_debugfs_info *ms;
Felix Fietkaua0497f92013-02-13 10:51:08 +010096 unsigned int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +020097 char *p;
98 int ret;
99
100 if (!msp->is_ht) {
101 inode->i_private = &msp->legacy;
102 ret = minstrel_stats_open(inode, file);
103 inode->i_private = msp;
104 return ret;
105 }
106
Karl Beldan92082472014-10-21 10:38:38 +0200107 ms = kmalloc(32768, GFP_KERNEL);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200108 if (!ms)
109 return -ENOMEM;
110
111 file->private_data = ms;
112 p = ms->buf;
Karl Beldan92082472014-10-21 10:38:38 +0200113 p += sprintf(p, " type rate tpt eprob *prob "
Karl Beldan11b23572014-10-20 10:54:36 +0200114 "ret *ok(*cum) ok( cum)\n");
115
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200116 p = minstrel_ht_stats_dump(mi, MINSTREL_CCK_GROUP, p);
117 for (i = 0; i < MINSTREL_CCK_GROUP; i++)
Felix Fietkaua0497f92013-02-13 10:51:08 +0100118 p = minstrel_ht_stats_dump(mi, i, p);
Karl Beldan92082472014-10-21 10:38:38 +0200119 for (i++; i < ARRAY_SIZE(mi->groups); i++)
120 p = minstrel_ht_stats_dump(mi, i, p);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200121
Felix Fietkauec8aa662010-05-13 16:48:03 +0200122 p += sprintf(p, "\nTotal packet count:: ideal %d "
123 "lookaround %d\n",
124 max(0, (int) mi->total_packets - (int) mi->sample_packets),
125 mi->sample_packets);
126 p += sprintf(p, "Average A-MPDU length: %d.%d\n",
127 MINSTREL_TRUNC(mi->avg_ampdu_len),
128 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
129 ms->len = p - ms->buf;
130
Karl Beldan92082472014-10-21 10:38:38 +0200131 WARN_ON(ms->len + sizeof(*ms) > 32768);
Karl Beldan11b23572014-10-20 10:54:36 +0200132
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200133 return nonseekable_open(inode, file);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200134}
135
136static const struct file_operations minstrel_ht_stat_fops = {
137 .owner = THIS_MODULE,
138 .open = minstrel_ht_stats_open,
139 .read = minstrel_stats_read,
140 .release = minstrel_stats_release,
Arnd Bergmanna0572d92010-08-15 18:32:42 +0200141 .llseek = no_llseek,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200142};
143
144void
145minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
146{
147 struct minstrel_ht_sta_priv *msp = priv_sta;
148
149 msp->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, msp,
150 &minstrel_ht_stat_fops);
151}
152
153void
154minstrel_ht_remove_sta_debugfs(void *priv, void *priv_sta)
155{
156 struct minstrel_ht_sta_priv *msp = priv_sta;
157
158 debugfs_remove(msp->dbg_stats);
159}