blob: 8b168724c5e7ead9ac04b5efa689e1855b9bc842 [file] [log] [blame]
Felix Fietkauec8aa662010-05-13 16:48:03 +02001/*
Felix Fietkaua0497f92013-02-13 10:51:08 +01002 * Copyright (C) 2010-2013 Felix Fietkau <nbd@openwrt.org>
Felix Fietkauec8aa662010-05-13 16:48:03 +02003 *
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/random.h>
Karl Beldan92082472014-10-21 10:38:38 +020013#include <linux/moduleparam.h>
Felix Fietkauec8aa662010-05-13 16:48:03 +020014#include <linux/ieee80211.h>
15#include <net/mac80211.h>
16#include "rate.h"
Felix Fietkau782dda02016-12-14 20:46:55 +010017#include "sta_info.h"
Felix Fietkauec8aa662010-05-13 16:48:03 +020018#include "rc80211_minstrel.h"
19#include "rc80211_minstrel_ht.h"
20
Felix Fietkaud66c2582015-03-13 10:54:44 +010021#define AVG_AMPDU_SIZE 16
Felix Fietkauec8aa662010-05-13 16:48:03 +020022#define AVG_PKT_SIZE 1200
Felix Fietkauec8aa662010-05-13 16:48:03 +020023
24/* Number of bits for an average sized packet */
Felix Fietkaud66c2582015-03-13 10:54:44 +010025#define MCS_NBITS ((AVG_PKT_SIZE * AVG_AMPDU_SIZE) << 3)
Felix Fietkauec8aa662010-05-13 16:48:03 +020026
27/* Number of symbols for a packet with (bps) bits per symbol */
Johannes Berg00591ce2014-05-19 11:24:19 +020028#define MCS_NSYMS(bps) DIV_ROUND_UP(MCS_NBITS, (bps))
Felix Fietkauec8aa662010-05-13 16:48:03 +020029
Felix Fietkaued97a132013-03-02 21:20:12 +010030/* Transmission time (nanoseconds) for a packet containing (syms) symbols */
Felix Fietkauec8aa662010-05-13 16:48:03 +020031#define MCS_SYMBOL_TIME(sgi, syms) \
32 (sgi ? \
Felix Fietkaued97a132013-03-02 21:20:12 +010033 ((syms) * 18000 + 4000) / 5 : /* syms * 3.6 us */ \
34 ((syms) * 1000) << 2 /* syms * 4 us */ \
Felix Fietkauec8aa662010-05-13 16:48:03 +020035 )
36
37/* Transmit duration for the raw data part of an average sized packet */
Felix Fietkaud66c2582015-03-13 10:54:44 +010038#define MCS_DURATION(streams, sgi, bps) \
39 (MCS_SYMBOL_TIME(sgi, MCS_NSYMS((streams) * (bps))) / AVG_AMPDU_SIZE)
Felix Fietkauec8aa662010-05-13 16:48:03 +020040
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020041#define BW_20 0
42#define BW_40 1
Karl Beldan92082472014-10-21 10:38:38 +020043#define BW_80 2
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020044
Helmut Schaaa5f69d942011-11-14 15:28:20 +010045/*
46 * Define group sort order: HT40 -> SGI -> #streams
47 */
48#define GROUP_IDX(_streams, _sgi, _ht40) \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020049 MINSTREL_HT_GROUP_0 + \
Helmut Schaaa5f69d942011-11-14 15:28:20 +010050 MINSTREL_MAX_STREAMS * 2 * _ht40 + \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020051 MINSTREL_MAX_STREAMS * _sgi + \
Helmut Schaaa5f69d942011-11-14 15:28:20 +010052 _streams - 1
53
Felix Fietkauc2b17942019-03-25 09:50:16 +010054#define _MAX(a, b) (((a)>(b))?(a):(b))
55
56#define GROUP_SHIFT(duration) \
57 _MAX(0, 16 - __builtin_clz(duration))
58
Felix Fietkauec8aa662010-05-13 16:48:03 +020059/* MCS rate information for an MCS group */
Felix Fietkauc2b17942019-03-25 09:50:16 +010060#define __MCS_GROUP(_streams, _sgi, _ht40, _s) \
Helmut Schaaa5f69d942011-11-14 15:28:20 +010061 [GROUP_IDX(_streams, _sgi, _ht40)] = { \
Felix Fietkauec8aa662010-05-13 16:48:03 +020062 .streams = _streams, \
Felix Fietkau202df502018-10-06 19:35:02 +020063 .shift = _s, \
Felix Fietkauec8aa662010-05-13 16:48:03 +020064 .flags = \
Karl Beldan3ec373c2014-10-20 15:46:01 +020065 IEEE80211_TX_RC_MCS | \
Felix Fietkauec8aa662010-05-13 16:48:03 +020066 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
67 (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
68 .duration = { \
Felix Fietkau202df502018-10-06 19:35:02 +020069 MCS_DURATION(_streams, _sgi, _ht40 ? 54 : 26) >> _s, \
70 MCS_DURATION(_streams, _sgi, _ht40 ? 108 : 52) >> _s, \
71 MCS_DURATION(_streams, _sgi, _ht40 ? 162 : 78) >> _s, \
72 MCS_DURATION(_streams, _sgi, _ht40 ? 216 : 104) >> _s, \
73 MCS_DURATION(_streams, _sgi, _ht40 ? 324 : 156) >> _s, \
74 MCS_DURATION(_streams, _sgi, _ht40 ? 432 : 208) >> _s, \
75 MCS_DURATION(_streams, _sgi, _ht40 ? 486 : 234) >> _s, \
76 MCS_DURATION(_streams, _sgi, _ht40 ? 540 : 260) >> _s \
Felix Fietkauec8aa662010-05-13 16:48:03 +020077 } \
78}
79
Felix Fietkauc2b17942019-03-25 09:50:16 +010080#define MCS_GROUP_SHIFT(_streams, _sgi, _ht40) \
81 GROUP_SHIFT(MCS_DURATION(_streams, _sgi, _ht40 ? 54 : 26))
82
83#define MCS_GROUP(_streams, _sgi, _ht40) \
84 __MCS_GROUP(_streams, _sgi, _ht40, \
85 MCS_GROUP_SHIFT(_streams, _sgi, _ht40))
86
Karl Beldan92082472014-10-21 10:38:38 +020087#define VHT_GROUP_IDX(_streams, _sgi, _bw) \
88 (MINSTREL_VHT_GROUP_0 + \
89 MINSTREL_MAX_STREAMS * 2 * (_bw) + \
90 MINSTREL_MAX_STREAMS * (_sgi) + \
91 (_streams) - 1)
92
93#define BW2VBPS(_bw, r3, r2, r1) \
94 (_bw == BW_80 ? r3 : _bw == BW_40 ? r2 : r1)
95
Felix Fietkauc2b17942019-03-25 09:50:16 +010096#define __VHT_GROUP(_streams, _sgi, _bw, _s) \
Karl Beldan92082472014-10-21 10:38:38 +020097 [VHT_GROUP_IDX(_streams, _sgi, _bw)] = { \
98 .streams = _streams, \
Felix Fietkau202df502018-10-06 19:35:02 +020099 .shift = _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200100 .flags = \
101 IEEE80211_TX_RC_VHT_MCS | \
102 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
103 (_bw == BW_80 ? IEEE80211_TX_RC_80_MHZ_WIDTH : \
104 _bw == BW_40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
105 .duration = { \
106 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200107 BW2VBPS(_bw, 117, 54, 26)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200108 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200109 BW2VBPS(_bw, 234, 108, 52)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200110 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200111 BW2VBPS(_bw, 351, 162, 78)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200112 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200113 BW2VBPS(_bw, 468, 216, 104)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200114 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200115 BW2VBPS(_bw, 702, 324, 156)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200116 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200117 BW2VBPS(_bw, 936, 432, 208)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200118 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200119 BW2VBPS(_bw, 1053, 486, 234)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200120 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200121 BW2VBPS(_bw, 1170, 540, 260)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200122 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200123 BW2VBPS(_bw, 1404, 648, 312)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200124 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200125 BW2VBPS(_bw, 1560, 720, 346)) >> _s \
Karl Beldan92082472014-10-21 10:38:38 +0200126 } \
127}
128
Felix Fietkauc2b17942019-03-25 09:50:16 +0100129#define VHT_GROUP_SHIFT(_streams, _sgi, _bw) \
130 GROUP_SHIFT(MCS_DURATION(_streams, _sgi, \
131 BW2VBPS(_bw, 117, 54, 26)))
132
133#define VHT_GROUP(_streams, _sgi, _bw) \
134 __VHT_GROUP(_streams, _sgi, _bw, \
135 VHT_GROUP_SHIFT(_streams, _sgi, _bw))
136
Felix Fietkaua0497f92013-02-13 10:51:08 +0100137#define CCK_DURATION(_bitrate, _short, _len) \
Felix Fietkaued97a132013-03-02 21:20:12 +0100138 (1000 * (10 /* SIFS */ + \
Weilong Chenf359d3f2013-12-18 15:44:16 +0800139 (_short ? 72 + 24 : 144 + 48) + \
Felix Fietkaued97a132013-03-02 21:20:12 +0100140 (8 * (_len + 4) * 10) / (_bitrate)))
Felix Fietkaua0497f92013-02-13 10:51:08 +0100141
142#define CCK_ACK_DURATION(_bitrate, _short) \
143 (CCK_DURATION((_bitrate > 10 ? 20 : 10), false, 60) + \
144 CCK_DURATION(_bitrate, _short, AVG_PKT_SIZE))
145
Felix Fietkau202df502018-10-06 19:35:02 +0200146#define CCK_DURATION_LIST(_short, _s) \
147 CCK_ACK_DURATION(10, _short) >> _s, \
148 CCK_ACK_DURATION(20, _short) >> _s, \
149 CCK_ACK_DURATION(55, _short) >> _s, \
150 CCK_ACK_DURATION(110, _short) >> _s
Felix Fietkaua0497f92013-02-13 10:51:08 +0100151
Felix Fietkauc2b17942019-03-25 09:50:16 +0100152#define __CCK_GROUP(_s) \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200153 [MINSTREL_CCK_GROUP] = { \
Felix Fietkau80df9be2018-10-06 19:35:04 +0200154 .streams = 1, \
Karl Beldan3ec373c2014-10-20 15:46:01 +0200155 .flags = 0, \
Felix Fietkau202df502018-10-06 19:35:02 +0200156 .shift = _s, \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200157 .duration = { \
Felix Fietkau202df502018-10-06 19:35:02 +0200158 CCK_DURATION_LIST(false, _s), \
159 CCK_DURATION_LIST(true, _s) \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200160 } \
Felix Fietkaua0497f92013-02-13 10:51:08 +0100161 }
162
Felix Fietkauc2b17942019-03-25 09:50:16 +0100163#define CCK_GROUP_SHIFT \
164 GROUP_SHIFT(CCK_ACK_DURATION(10, false))
165
166#define CCK_GROUP __CCK_GROUP(CCK_GROUP_SHIFT)
167
168
Karl Beldan92082472014-10-21 10:38:38 +0200169static bool minstrel_vht_only = true;
170module_param(minstrel_vht_only, bool, 0644);
171MODULE_PARM_DESC(minstrel_vht_only,
172 "Use only VHT rates when VHT is supported by sta.");
Karl Beldan92082472014-10-21 10:38:38 +0200173
Felix Fietkauec8aa662010-05-13 16:48:03 +0200174/*
175 * To enable sufficiently targeted rate sampling, MCS rates are divided into
176 * groups, based on the number of streams and flags (HT40, SGI) that they
177 * use.
Helmut Schaaa5f69d942011-11-14 15:28:20 +0100178 *
179 * Sortorder has to be fixed for GROUP_IDX macro to be applicable:
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200180 * BW -> SGI -> #streams
Felix Fietkauec8aa662010-05-13 16:48:03 +0200181 */
182const struct mcs_group minstrel_mcs_groups[] = {
Felix Fietkauc2b17942019-03-25 09:50:16 +0100183 MCS_GROUP(1, 0, BW_20),
184 MCS_GROUP(2, 0, BW_20),
185 MCS_GROUP(3, 0, BW_20),
186 MCS_GROUP(4, 0, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200187
Felix Fietkauc2b17942019-03-25 09:50:16 +0100188 MCS_GROUP(1, 1, BW_20),
189 MCS_GROUP(2, 1, BW_20),
190 MCS_GROUP(3, 1, BW_20),
191 MCS_GROUP(4, 1, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200192
Felix Fietkauc2b17942019-03-25 09:50:16 +0100193 MCS_GROUP(1, 0, BW_40),
194 MCS_GROUP(2, 0, BW_40),
195 MCS_GROUP(3, 0, BW_40),
196 MCS_GROUP(4, 0, BW_40),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200197
Felix Fietkauc2b17942019-03-25 09:50:16 +0100198 MCS_GROUP(1, 1, BW_40),
199 MCS_GROUP(2, 1, BW_40),
200 MCS_GROUP(3, 1, BW_40),
201 MCS_GROUP(4, 1, BW_40),
Felix Fietkaua0497f92013-02-13 10:51:08 +0100202
Felix Fietkauc2b17942019-03-25 09:50:16 +0100203 CCK_GROUP,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200204
Felix Fietkauc2b17942019-03-25 09:50:16 +0100205 VHT_GROUP(1, 0, BW_20),
206 VHT_GROUP(2, 0, BW_20),
207 VHT_GROUP(3, 0, BW_20),
208 VHT_GROUP(4, 0, BW_20),
Karl Beldan92082472014-10-21 10:38:38 +0200209
Felix Fietkauc2b17942019-03-25 09:50:16 +0100210 VHT_GROUP(1, 1, BW_20),
211 VHT_GROUP(2, 1, BW_20),
212 VHT_GROUP(3, 1, BW_20),
213 VHT_GROUP(4, 1, BW_20),
Karl Beldan92082472014-10-21 10:38:38 +0200214
Felix Fietkauc2b17942019-03-25 09:50:16 +0100215 VHT_GROUP(1, 0, BW_40),
216 VHT_GROUP(2, 0, BW_40),
217 VHT_GROUP(3, 0, BW_40),
218 VHT_GROUP(4, 0, BW_40),
Karl Beldan92082472014-10-21 10:38:38 +0200219
Felix Fietkauc2b17942019-03-25 09:50:16 +0100220 VHT_GROUP(1, 1, BW_40),
221 VHT_GROUP(2, 1, BW_40),
222 VHT_GROUP(3, 1, BW_40),
223 VHT_GROUP(4, 1, BW_40),
Karl Beldan92082472014-10-21 10:38:38 +0200224
Felix Fietkauc2b17942019-03-25 09:50:16 +0100225 VHT_GROUP(1, 0, BW_80),
226 VHT_GROUP(2, 0, BW_80),
227 VHT_GROUP(3, 0, BW_80),
228 VHT_GROUP(4, 0, BW_80),
Karl Beldan92082472014-10-21 10:38:38 +0200229
Felix Fietkauc2b17942019-03-25 09:50:16 +0100230 VHT_GROUP(1, 1, BW_80),
231 VHT_GROUP(2, 1, BW_80),
232 VHT_GROUP(3, 1, BW_80),
233 VHT_GROUP(4, 1, BW_80),
Karl Beldan92082472014-10-21 10:38:38 +0200234};
Felix Fietkaua0497f92013-02-13 10:51:08 +0100235
Johannes Bergf6e1a732014-01-21 00:32:52 +0100236static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES] __read_mostly;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200237
Felix Fietkaua8566662013-04-22 16:14:42 +0200238static void
239minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi);
240
Felix Fietkauec8aa662010-05-13 16:48:03 +0200241/*
Karl Beldan92082472014-10-21 10:38:38 +0200242 * Some VHT MCSes are invalid (when Ndbps / Nes is not an integer)
243 * e.g for MCS9@20MHzx1Nss: Ndbps=8x52*(5/6) Nes=1
244 *
245 * Returns the valid mcs map for struct minstrel_mcs_group_data.supported
246 */
247static u16
248minstrel_get_valid_vht_rates(int bw, int nss, __le16 mcs_map)
249{
250 u16 mask = 0;
251
252 if (bw == BW_20) {
253 if (nss != 3 && nss != 6)
254 mask = BIT(9);
255 } else if (bw == BW_80) {
256 if (nss == 3 || nss == 7)
257 mask = BIT(6);
258 else if (nss == 6)
259 mask = BIT(9);
260 } else {
261 WARN_ON(bw != BW_40);
262 }
263
264 switch ((le16_to_cpu(mcs_map) >> (2 * (nss - 1))) & 3) {
265 case IEEE80211_VHT_MCS_SUPPORT_0_7:
266 mask |= 0x300;
267 break;
268 case IEEE80211_VHT_MCS_SUPPORT_0_8:
269 mask |= 0x200;
270 break;
271 case IEEE80211_VHT_MCS_SUPPORT_0_9:
272 break;
273 default:
274 mask = 0x3ff;
275 }
276
277 return 0x3ff & ~mask;
278}
279
280/*
Felix Fietkauec8aa662010-05-13 16:48:03 +0200281 * Look up an MCS group index based on mac80211 rate information
282 */
283static int
284minstrel_ht_get_group_idx(struct ieee80211_tx_rate *rate)
285{
Karl Beldancc61d8d2014-09-29 02:36:30 +0200286 return GROUP_IDX((rate->idx / 8) + 1,
Helmut Schaaa5f69d942011-11-14 15:28:20 +0100287 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
288 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200289}
290
Karl Beldan92082472014-10-21 10:38:38 +0200291static int
292minstrel_vht_get_group_idx(struct ieee80211_tx_rate *rate)
293{
294 return VHT_GROUP_IDX(ieee80211_rate_get_vht_nss(rate),
295 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
296 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH) +
297 2*!!(rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH));
298}
299
Felix Fietkaua0497f92013-02-13 10:51:08 +0100300static struct minstrel_rate_stats *
301minstrel_ht_get_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
302 struct ieee80211_tx_rate *rate)
303{
304 int group, idx;
305
306 if (rate->flags & IEEE80211_TX_RC_MCS) {
307 group = minstrel_ht_get_group_idx(rate);
Karl Beldan7a5e3fa2013-11-11 13:12:55 +0100308 idx = rate->idx % 8;
Karl Beldan92082472014-10-21 10:38:38 +0200309 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
310 group = minstrel_vht_get_group_idx(rate);
311 idx = ieee80211_rate_get_vht_mcs(rate);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100312 } else {
313 group = MINSTREL_CCK_GROUP;
314
315 for (idx = 0; idx < ARRAY_SIZE(mp->cck_rates); idx++)
316 if (rate->idx == mp->cck_rates[idx])
317 break;
318
319 /* short preamble */
Felix Fietkau972b66b2018-10-06 19:35:05 +0200320 if ((mi->supported[group] & BIT(idx + 4)) &&
321 (rate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE))
Felix Fietkaua0497f92013-02-13 10:51:08 +0100322 idx += 4;
323 }
324 return &mi->groups[group].rates[idx];
325}
326
Felix Fietkauec8aa662010-05-13 16:48:03 +0200327static inline struct minstrel_rate_stats *
328minstrel_get_ratestats(struct minstrel_ht_sta *mi, int index)
329{
330 return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES];
331}
332
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100333static unsigned int
334minstrel_ht_avg_ampdu_len(struct minstrel_ht_sta *mi)
335{
336 if (!mi->avg_ampdu_len)
337 return AVG_AMPDU_SIZE;
338
339 return MINSTREL_TRUNC(mi->avg_ampdu_len);
340}
341
Felix Fietkauec8aa662010-05-13 16:48:03 +0200342/*
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100343 * Return current throughput based on the average A-MPDU length, taking into
344 * account the expected number of retransmissions and their expected length
Felix Fietkauec8aa662010-05-13 16:48:03 +0200345 */
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100346int
Thomas Huehn50e55a82015-03-24 21:09:41 +0100347minstrel_ht_get_tp_avg(struct minstrel_ht_sta *mi, int group, int rate,
348 int prob_ewma)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200349{
Felix Fietkaued97a132013-03-02 21:20:12 +0100350 unsigned int nsecs = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200351
Thomas Huehn91340732015-03-24 21:09:39 +0100352 /* do not account throughput if sucess prob is below 10% */
Thomas Huehn50e55a82015-03-24 21:09:41 +0100353 if (prob_ewma < MINSTREL_FRAC(10, 100))
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100354 return 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200355
Felix Fietkaua0497f92013-02-13 10:51:08 +0100356 if (group != MINSTREL_CCK_GROUP)
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100357 nsecs = 1000 * mi->overhead / minstrel_ht_avg_ampdu_len(mi);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100358
Felix Fietkau202df502018-10-06 19:35:02 +0200359 nsecs += minstrel_mcs_groups[group].duration[rate] <<
360 minstrel_mcs_groups[group].shift;
Felix Fietkaued97a132013-03-02 21:20:12 +0100361
Thomas Huehn50e55a82015-03-24 21:09:41 +0100362 /*
363 * For the throughput calculation, limit the probability value to 90% to
364 * account for collision related packet error rate fluctuation
365 * (prob is scaled - see MINSTREL_FRAC above)
366 */
367 if (prob_ewma > MINSTREL_FRAC(90, 100))
368 return MINSTREL_TRUNC(100000 * ((MINSTREL_FRAC(90, 100) * 1000)
369 / nsecs));
370 else
371 return MINSTREL_TRUNC(100000 * ((prob_ewma * 1000) / nsecs));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200372}
373
374/*
Thomas Huehn59358392014-09-09 23:22:14 +0200375 * Find & sort topmost throughput rates
376 *
377 * If multiple rates provide equal throughput the sorting is based on their
378 * current success probability. Higher success probability is preferred among
379 * MCS groups, CCK rates do not provide aggregation and are therefore at last.
380 */
381static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200382minstrel_ht_sort_best_tp_rates(struct minstrel_ht_sta *mi, u16 index,
383 u16 *tp_list)
Thomas Huehn59358392014-09-09 23:22:14 +0200384{
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100385 int cur_group, cur_idx, cur_tp_avg, cur_prob;
386 int tmp_group, tmp_idx, tmp_tp_avg, tmp_prob;
Thomas Huehn59358392014-09-09 23:22:14 +0200387 int j = MAX_THR_RATES;
388
389 cur_group = index / MCS_GROUP_RATES;
390 cur_idx = index % MCS_GROUP_RATES;
Thomas Huehn91340732015-03-24 21:09:39 +0100391 cur_prob = mi->groups[cur_group].rates[cur_idx].prob_ewma;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100392 cur_tp_avg = minstrel_ht_get_tp_avg(mi, cur_group, cur_idx, cur_prob);
Thomas Huehn59358392014-09-09 23:22:14 +0200393
Felix Fietkau280ba512014-11-18 22:35:31 +0100394 do {
Thomas Huehn59358392014-09-09 23:22:14 +0200395 tmp_group = tp_list[j - 1] / MCS_GROUP_RATES;
396 tmp_idx = tp_list[j - 1] % MCS_GROUP_RATES;
Thomas Huehn91340732015-03-24 21:09:39 +0100397 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_ewma;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100398 tmp_tp_avg = minstrel_ht_get_tp_avg(mi, tmp_group, tmp_idx,
399 tmp_prob);
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100400 if (cur_tp_avg < tmp_tp_avg ||
401 (cur_tp_avg == tmp_tp_avg && cur_prob <= tmp_prob))
Felix Fietkau280ba512014-11-18 22:35:31 +0100402 break;
403 j--;
404 } while (j > 0);
Thomas Huehn59358392014-09-09 23:22:14 +0200405
406 if (j < MAX_THR_RATES - 1) {
407 memmove(&tp_list[j + 1], &tp_list[j], (sizeof(*tp_list) *
408 (MAX_THR_RATES - (j + 1))));
409 }
410 if (j < MAX_THR_RATES)
411 tp_list[j] = index;
412}
413
414/*
415 * Find and set the topmost probability rate per sta and per group
416 */
417static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200418minstrel_ht_set_best_prob_rate(struct minstrel_ht_sta *mi, u16 index)
Thomas Huehn59358392014-09-09 23:22:14 +0200419{
420 struct minstrel_mcs_group_data *mg;
Thomas Huehn91340732015-03-24 21:09:39 +0100421 struct minstrel_rate_stats *mrs;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100422 int tmp_group, tmp_idx, tmp_tp_avg, tmp_prob;
423 int max_tp_group, cur_tp_avg, cur_group, cur_idx;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100424 int max_gpr_group, max_gpr_idx;
425 int max_gpr_tp_avg, max_gpr_prob;
Thomas Huehn59358392014-09-09 23:22:14 +0200426
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100427 cur_group = index / MCS_GROUP_RATES;
428 cur_idx = index % MCS_GROUP_RATES;
Thomas Huehn59358392014-09-09 23:22:14 +0200429 mg = &mi->groups[index / MCS_GROUP_RATES];
Thomas Huehn91340732015-03-24 21:09:39 +0100430 mrs = &mg->rates[index % MCS_GROUP_RATES];
Thomas Huehn59358392014-09-09 23:22:14 +0200431
432 tmp_group = mi->max_prob_rate / MCS_GROUP_RATES;
433 tmp_idx = mi->max_prob_rate % MCS_GROUP_RATES;
Thomas Huehn91340732015-03-24 21:09:39 +0100434 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_ewma;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100435 tmp_tp_avg = minstrel_ht_get_tp_avg(mi, tmp_group, tmp_idx, tmp_prob);
Thomas Huehn59358392014-09-09 23:22:14 +0200436
437 /* if max_tp_rate[0] is from MCS_GROUP max_prob_rate get selected from
438 * MCS_GROUP as well as CCK_GROUP rates do not allow aggregation */
439 max_tp_group = mi->max_tp_rate[0] / MCS_GROUP_RATES;
440 if((index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) &&
441 (max_tp_group != MINSTREL_CCK_GROUP))
442 return;
443
Konstantin Khlebnikovf84a9372016-01-29 11:35:12 +0300444 max_gpr_group = mg->max_group_prob_rate / MCS_GROUP_RATES;
445 max_gpr_idx = mg->max_group_prob_rate % MCS_GROUP_RATES;
446 max_gpr_prob = mi->groups[max_gpr_group].rates[max_gpr_idx].prob_ewma;
447
Thomas Huehn91340732015-03-24 21:09:39 +0100448 if (mrs->prob_ewma > MINSTREL_FRAC(75, 100)) {
Thomas Huehn50e55a82015-03-24 21:09:41 +0100449 cur_tp_avg = minstrel_ht_get_tp_avg(mi, cur_group, cur_idx,
450 mrs->prob_ewma);
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100451 if (cur_tp_avg > tmp_tp_avg)
Thomas Huehn59358392014-09-09 23:22:14 +0200452 mi->max_prob_rate = index;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100453
Thomas Huehn50e55a82015-03-24 21:09:41 +0100454 max_gpr_tp_avg = minstrel_ht_get_tp_avg(mi, max_gpr_group,
455 max_gpr_idx,
456 max_gpr_prob);
457 if (cur_tp_avg > max_gpr_tp_avg)
Thomas Huehn59358392014-09-09 23:22:14 +0200458 mg->max_group_prob_rate = index;
459 } else {
Thomas Huehn91340732015-03-24 21:09:39 +0100460 if (mrs->prob_ewma > tmp_prob)
Thomas Huehn59358392014-09-09 23:22:14 +0200461 mi->max_prob_rate = index;
Konstantin Khlebnikovf84a9372016-01-29 11:35:12 +0300462 if (mrs->prob_ewma > max_gpr_prob)
Thomas Huehn59358392014-09-09 23:22:14 +0200463 mg->max_group_prob_rate = index;
464 }
465}
466
467
468/*
469 * Assign new rate set per sta and use CCK rates only if the fastest
470 * rate (max_tp_rate[0]) is from CCK group. This prohibits such sorted
471 * rate sets where MCS and CCK rates are mixed, because CCK rates can
472 * not use aggregation.
473 */
474static void
475minstrel_ht_assign_best_tp_rates(struct minstrel_ht_sta *mi,
Karl Beldand4d141c2014-10-20 15:45:59 +0200476 u16 tmp_mcs_tp_rate[MAX_THR_RATES],
477 u16 tmp_cck_tp_rate[MAX_THR_RATES])
Thomas Huehn59358392014-09-09 23:22:14 +0200478{
Thomas Huehn50e55a82015-03-24 21:09:41 +0100479 unsigned int tmp_group, tmp_idx, tmp_cck_tp, tmp_mcs_tp, tmp_prob;
Thomas Huehn59358392014-09-09 23:22:14 +0200480 int i;
481
482 tmp_group = tmp_cck_tp_rate[0] / MCS_GROUP_RATES;
483 tmp_idx = tmp_cck_tp_rate[0] % MCS_GROUP_RATES;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100484 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_ewma;
485 tmp_cck_tp = minstrel_ht_get_tp_avg(mi, tmp_group, tmp_idx, tmp_prob);
Thomas Huehn59358392014-09-09 23:22:14 +0200486
487 tmp_group = tmp_mcs_tp_rate[0] / MCS_GROUP_RATES;
488 tmp_idx = tmp_mcs_tp_rate[0] % MCS_GROUP_RATES;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100489 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_ewma;
490 tmp_mcs_tp = minstrel_ht_get_tp_avg(mi, tmp_group, tmp_idx, tmp_prob);
Thomas Huehn59358392014-09-09 23:22:14 +0200491
492 if (tmp_cck_tp > tmp_mcs_tp) {
493 for(i = 0; i < MAX_THR_RATES; i++) {
494 minstrel_ht_sort_best_tp_rates(mi, tmp_cck_tp_rate[i],
495 tmp_mcs_tp_rate);
496 }
497 }
498
499}
500
501/*
502 * Try to increase robustness of max_prob rate by decrease number of
503 * streams if possible.
504 */
505static inline void
506minstrel_ht_prob_rate_reduce_streams(struct minstrel_ht_sta *mi)
507{
508 struct minstrel_mcs_group_data *mg;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100509 int tmp_max_streams, group, tmp_idx, tmp_prob;
Thomas Huehn59358392014-09-09 23:22:14 +0200510 int tmp_tp = 0;
511
512 tmp_max_streams = minstrel_mcs_groups[mi->max_tp_rate[0] /
513 MCS_GROUP_RATES].streams;
514 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
515 mg = &mi->groups[group];
Felix Fietkau41d08582016-12-14 20:46:54 +0100516 if (!mi->supported[group] || group == MINSTREL_CCK_GROUP)
Thomas Huehn59358392014-09-09 23:22:14 +0200517 continue;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100518
519 tmp_idx = mg->max_group_prob_rate % MCS_GROUP_RATES;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100520 tmp_prob = mi->groups[group].rates[tmp_idx].prob_ewma;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100521
Thomas Huehn50e55a82015-03-24 21:09:41 +0100522 if (tmp_tp < minstrel_ht_get_tp_avg(mi, group, tmp_idx, tmp_prob) &&
Thomas Huehn59358392014-09-09 23:22:14 +0200523 (minstrel_mcs_groups[group].streams < tmp_max_streams)) {
524 mi->max_prob_rate = mg->max_group_prob_rate;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100525 tmp_tp = minstrel_ht_get_tp_avg(mi, group,
Thomas Huehn50e55a82015-03-24 21:09:41 +0100526 tmp_idx,
527 tmp_prob);
Thomas Huehn59358392014-09-09 23:22:14 +0200528 }
529 }
530}
531
532/*
Felix Fietkauec8aa662010-05-13 16:48:03 +0200533 * Update rate statistics and select new primary rates
534 *
535 * Rules for rate selection:
536 * - max_prob_rate must use only one stream, as a tradeoff between delivery
537 * probability and throughput during strong fluctuations
Thomas Huehn59358392014-09-09 23:22:14 +0200538 * - as long as the max prob rate has a probability of more than 75%, pick
Felix Fietkauec8aa662010-05-13 16:48:03 +0200539 * higher throughput rates, even if the probablity is a bit lower
540 */
541static void
542minstrel_ht_update_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
543{
544 struct minstrel_mcs_group_data *mg;
Thomas Huehn91340732015-03-24 21:09:39 +0100545 struct minstrel_rate_stats *mrs;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100546 int group, i, j, cur_prob;
Karl Beldand4d141c2014-10-20 15:45:59 +0200547 u16 tmp_mcs_tp_rate[MAX_THR_RATES], tmp_group_tp_rate[MAX_THR_RATES];
548 u16 tmp_cck_tp_rate[MAX_THR_RATES], index;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200549
550 if (mi->ampdu_packets > 0) {
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100551 if (!ieee80211_hw_check(mp->hw, TX_STATUS_NO_AMPDU_LEN))
552 mi->avg_ampdu_len = minstrel_ewma(mi->avg_ampdu_len,
553 MINSTREL_FRAC(mi->ampdu_len, mi->ampdu_packets),
554 EWMA_LEVEL);
555 else
556 mi->avg_ampdu_len = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200557 mi->ampdu_len = 0;
558 mi->ampdu_packets = 0;
559 }
560
561 mi->sample_slow = 0;
562 mi->sample_count = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200563
Thomas Huehn59358392014-09-09 23:22:14 +0200564 /* Initialize global rate indexes */
565 for(j = 0; j < MAX_THR_RATES; j++){
566 tmp_mcs_tp_rate[j] = 0;
567 tmp_cck_tp_rate[j] = 0;
568 }
Karl Beldanc2eb5b02013-04-18 14:26:20 +0200569
Thomas Huehn59358392014-09-09 23:22:14 +0200570 /* Find best rate sets within all MCS groups*/
571 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200572
573 mg = &mi->groups[group];
Felix Fietkau41d08582016-12-14 20:46:54 +0100574 if (!mi->supported[group])
Felix Fietkauec8aa662010-05-13 16:48:03 +0200575 continue;
576
Felix Fietkauec8aa662010-05-13 16:48:03 +0200577 mi->sample_count++;
578
Thomas Huehn59358392014-09-09 23:22:14 +0200579 /* (re)Initialize group rate indexes */
580 for(j = 0; j < MAX_THR_RATES; j++)
581 tmp_group_tp_rate[j] = group;
582
Felix Fietkauec8aa662010-05-13 16:48:03 +0200583 for (i = 0; i < MCS_GROUP_RATES; i++) {
Felix Fietkau41d08582016-12-14 20:46:54 +0100584 if (!(mi->supported[group] & BIT(i)))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200585 continue;
586
Karl Beldan351df092013-11-13 23:07:07 +0100587 index = MCS_GROUP_RATES * group + i;
588
Thomas Huehn91340732015-03-24 21:09:39 +0100589 mrs = &mg->rates[i];
590 mrs->retry_updated = false;
591 minstrel_calc_rate_stats(mrs);
Thomas Huehn50e55a82015-03-24 21:09:41 +0100592 cur_prob = mrs->prob_ewma;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200593
Thomas Huehn50e55a82015-03-24 21:09:41 +0100594 if (minstrel_ht_get_tp_avg(mi, group, i, cur_prob) == 0)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200595 continue;
596
Thomas Huehn59358392014-09-09 23:22:14 +0200597 /* Find max throughput rate set */
598 if (group != MINSTREL_CCK_GROUP) {
599 minstrel_ht_sort_best_tp_rates(mi, index,
600 tmp_mcs_tp_rate);
601 } else if (group == MINSTREL_CCK_GROUP) {
602 minstrel_ht_sort_best_tp_rates(mi, index,
603 tmp_cck_tp_rate);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200604 }
605
Thomas Huehn59358392014-09-09 23:22:14 +0200606 /* Find max throughput rate set within a group */
607 minstrel_ht_sort_best_tp_rates(mi, index,
608 tmp_group_tp_rate);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200609
Thomas Huehn59358392014-09-09 23:22:14 +0200610 /* Find max probability rate per group and global */
611 minstrel_ht_set_best_prob_rate(mi, index);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200612 }
Thomas Huehn59358392014-09-09 23:22:14 +0200613
614 memcpy(mg->max_group_tp_rate, tmp_group_tp_rate,
615 sizeof(mg->max_group_tp_rate));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200616 }
617
Thomas Huehn59358392014-09-09 23:22:14 +0200618 /* Assign new rate set per sta */
619 minstrel_ht_assign_best_tp_rates(mi, tmp_mcs_tp_rate, tmp_cck_tp_rate);
620 memcpy(mi->max_tp_rate, tmp_mcs_tp_rate, sizeof(mi->max_tp_rate));
621
622 /* Try to increase robustness of max_prob_rate*/
623 minstrel_ht_prob_rate_reduce_streams(mi);
624
Felix Fietkau96d4ac32013-03-02 21:20:14 +0100625 /* try to sample all available rates during each interval */
626 mi->sample_count *= 8;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200627
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +0200628#ifdef CONFIG_MAC80211_DEBUGFS
629 /* use fixed index if set */
630 if (mp->fixed_rate_idx != -1) {
Thomas Huehn59358392014-09-09 23:22:14 +0200631 for (i = 0; i < 4; i++)
632 mi->max_tp_rate[i] = mp->fixed_rate_idx;
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +0200633 mi->max_prob_rate = mp->fixed_rate_idx;
634 }
635#endif
Felix Fietkaua299c6d2013-03-02 21:20:13 +0100636
Thomas Huehn59358392014-09-09 23:22:14 +0200637 /* Reset update timer */
Thomas Huehn91340732015-03-24 21:09:39 +0100638 mi->last_stats_update = jiffies;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200639}
640
641static bool
Felix Fietkaua0497f92013-02-13 10:51:08 +0100642minstrel_ht_txstat_valid(struct minstrel_priv *mp, struct ieee80211_tx_rate *rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200643{
Helmut Schaab79296b2011-11-14 15:28:19 +0100644 if (rate->idx < 0)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200645 return false;
646
Helmut Schaab79296b2011-11-14 15:28:19 +0100647 if (!rate->count)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200648 return false;
649
Karl Beldan92082472014-10-21 10:38:38 +0200650 if (rate->flags & IEEE80211_TX_RC_MCS ||
651 rate->flags & IEEE80211_TX_RC_VHT_MCS)
Felix Fietkaua0497f92013-02-13 10:51:08 +0100652 return true;
653
654 return rate->idx == mp->cck_rates[0] ||
655 rate->idx == mp->cck_rates[1] ||
656 rate->idx == mp->cck_rates[2] ||
657 rate->idx == mp->cck_rates[3];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200658}
659
660static void
Thomas Huehn91340732015-03-24 21:09:39 +0100661minstrel_set_next_sample_idx(struct minstrel_ht_sta *mi)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200662{
663 struct minstrel_mcs_group_data *mg;
664
665 for (;;) {
666 mi->sample_group++;
667 mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups);
668 mg = &mi->groups[mi->sample_group];
669
Felix Fietkau41d08582016-12-14 20:46:54 +0100670 if (!mi->supported[mi->sample_group])
Felix Fietkauec8aa662010-05-13 16:48:03 +0200671 continue;
672
673 if (++mg->index >= MCS_GROUP_RATES) {
674 mg->index = 0;
675 if (++mg->column >= ARRAY_SIZE(sample_table))
676 mg->column = 0;
677 }
678 break;
679 }
680}
681
682static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200683minstrel_downgrade_rate(struct minstrel_ht_sta *mi, u16 *idx, bool primary)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200684{
685 int group, orig_group;
686
687 orig_group = group = *idx / MCS_GROUP_RATES;
688 while (group > 0) {
689 group--;
690
Felix Fietkau41d08582016-12-14 20:46:54 +0100691 if (!mi->supported[group])
Felix Fietkauec8aa662010-05-13 16:48:03 +0200692 continue;
693
694 if (minstrel_mcs_groups[group].streams >
695 minstrel_mcs_groups[orig_group].streams)
696 continue;
697
698 if (primary)
Thomas Huehn59358392014-09-09 23:22:14 +0200699 *idx = mi->groups[group].max_group_tp_rate[0];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200700 else
Thomas Huehn59358392014-09-09 23:22:14 +0200701 *idx = mi->groups[group].max_group_tp_rate[1];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200702 break;
703 }
704}
705
706static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100707minstrel_aggr_check(struct ieee80211_sta *pubsta, struct sk_buff *skb)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200708{
709 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
710 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
711 u16 tid;
712
Felix Fietkau75769c82014-11-16 00:27:55 +0100713 if (skb_get_queue_mapping(skb) == IEEE80211_AC_VO)
714 return;
715
Felix Fietkauec8aa662010-05-13 16:48:03 +0200716 if (unlikely(!ieee80211_is_data_qos(hdr->frame_control)))
717 return;
718
Johannes Berge133fae2013-08-22 08:36:41 +0200719 if (unlikely(skb->protocol == cpu_to_be16(ETH_P_PAE)))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200720 return;
721
Sara Sharona1f2ba04c2018-02-19 14:48:40 +0200722 tid = ieee80211_get_tid(hdr);
Johannes Berga622ab72010-06-10 10:21:39 +0200723 if (likely(sta->ampdu_mlme.tid_tx[tid]))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200724 return;
725
Felix Fietkau7a36b932016-02-18 19:49:18 +0100726 ieee80211_start_tx_ba_session(pubsta, tid, 0);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200727}
728
729static void
730minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
Felix Fietkau18fb84d2017-04-26 17:11:35 +0200731 void *priv_sta, struct ieee80211_tx_status *st)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200732{
Felix Fietkau18fb84d2017-04-26 17:11:35 +0200733 struct ieee80211_tx_info *info = st->info;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200734 struct minstrel_ht_sta_priv *msp = priv_sta;
735 struct minstrel_ht_sta *mi = &msp->ht;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200736 struct ieee80211_tx_rate *ar = info->status.rates;
737 struct minstrel_rate_stats *rate, *rate2;
738 struct minstrel_priv *mp = priv;
Felix Fietkaua8566662013-04-22 16:14:42 +0200739 bool last, update = false;
Johannes Berga544ab72012-11-13 21:36:27 +0100740 int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200741
742 if (!msp->is_ht)
Felix Fietkau18fb84d2017-04-26 17:11:35 +0200743 return mac80211_minstrel.tx_status_ext(priv, sband,
744 &msp->legacy, st);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200745
746 /* This packet was aggregated but doesn't carry status info */
747 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
748 !(info->flags & IEEE80211_TX_STAT_AMPDU))
749 return;
750
Björn Smedman15d46f32010-10-10 22:14:25 +0200751 if (!(info->flags & IEEE80211_TX_STAT_AMPDU)) {
752 info->status.ampdu_ack_len =
753 (info->flags & IEEE80211_TX_STAT_ACK ? 1 : 0);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200754 info->status.ampdu_len = 1;
755 }
756
757 mi->ampdu_packets++;
758 mi->ampdu_len += info->status.ampdu_len;
759
760 if (!mi->sample_wait && !mi->sample_tries && mi->sample_count > 0) {
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100761 int avg_ampdu_len = minstrel_ht_avg_ampdu_len(mi);
762
763 mi->sample_wait = 16 + 2 * avg_ampdu_len;
Felix Fietkau52c00a32013-03-05 14:20:19 +0100764 mi->sample_tries = 1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200765 mi->sample_count--;
766 }
767
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800768 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200769 mi->sample_packets += info->status.ampdu_len;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200770
Felix Fietkaua0497f92013-02-13 10:51:08 +0100771 last = !minstrel_ht_txstat_valid(mp, &ar[0]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200772 for (i = 0; !last; i++) {
773 last = (i == IEEE80211_TX_MAX_RATES - 1) ||
Felix Fietkaua0497f92013-02-13 10:51:08 +0100774 !minstrel_ht_txstat_valid(mp, &ar[i + 1]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200775
Felix Fietkaua0497f92013-02-13 10:51:08 +0100776 rate = minstrel_ht_get_stats(mp, mi, &ar[i]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200777
Björn Smedman15d46f32010-10-10 22:14:25 +0200778 if (last)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200779 rate->success += info->status.ampdu_ack_len;
780
781 rate->attempts += ar[i].count * info->status.ampdu_len;
782 }
783
784 /*
785 * check for sudden death of spatial multiplexing,
786 * downgrade to a lower number of streams if necessary.
787 */
Thomas Huehn59358392014-09-09 23:22:14 +0200788 rate = minstrel_get_ratestats(mi, mi->max_tp_rate[0]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200789 if (rate->attempts > 30 &&
790 MINSTREL_FRAC(rate->success, rate->attempts) <
Felix Fietkaua8566662013-04-22 16:14:42 +0200791 MINSTREL_FRAC(20, 100)) {
Thomas Huehn59358392014-09-09 23:22:14 +0200792 minstrel_downgrade_rate(mi, &mi->max_tp_rate[0], true);
Felix Fietkaua8566662013-04-22 16:14:42 +0200793 update = true;
794 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200795
Thomas Huehn59358392014-09-09 23:22:14 +0200796 rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate[1]);
Ming Leiecc3d5a2010-07-01 23:19:50 +0800797 if (rate2->attempts > 30 &&
798 MINSTREL_FRAC(rate2->success, rate2->attempts) <
Felix Fietkaua8566662013-04-22 16:14:42 +0200799 MINSTREL_FRAC(20, 100)) {
Thomas Huehn59358392014-09-09 23:22:14 +0200800 minstrel_downgrade_rate(mi, &mi->max_tp_rate[1], false);
Felix Fietkaua8566662013-04-22 16:14:42 +0200801 update = true;
802 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200803
Thomas Huehn91340732015-03-24 21:09:39 +0100804 if (time_after(jiffies, mi->last_stats_update +
805 (mp->update_interval / 2 * HZ) / 1000)) {
Felix Fietkaua8566662013-04-22 16:14:42 +0200806 update = true;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200807 minstrel_ht_update_stats(mp, mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200808 }
Felix Fietkaua8566662013-04-22 16:14:42 +0200809
810 if (update)
811 minstrel_ht_update_rates(mp, mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200812}
813
Felix Fietkau202df502018-10-06 19:35:02 +0200814static inline int
815minstrel_get_duration(int index)
816{
817 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
818 unsigned int duration = group->duration[index % MCS_GROUP_RATES];
819 return duration << group->shift;
820}
821
Felix Fietkauec8aa662010-05-13 16:48:03 +0200822static void
823minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
824 int index)
825{
Thomas Huehn91340732015-03-24 21:09:39 +0100826 struct minstrel_rate_stats *mrs;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200827 unsigned int tx_time, tx_time_rtscts, tx_time_data;
828 unsigned int cw = mp->cw_min;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700829 unsigned int ctime = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200830 unsigned int t_slot = 9; /* FIXME */
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100831 unsigned int ampdu_len = minstrel_ht_avg_ampdu_len(mi);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100832 unsigned int overhead = 0, overhead_rtscts = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200833
Thomas Huehn91340732015-03-24 21:09:39 +0100834 mrs = minstrel_get_ratestats(mi, index);
835 if (mrs->prob_ewma < MINSTREL_FRAC(1, 10)) {
836 mrs->retry_count = 1;
837 mrs->retry_count_rtscts = 1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200838 return;
839 }
840
Thomas Huehn91340732015-03-24 21:09:39 +0100841 mrs->retry_count = 2;
842 mrs->retry_count_rtscts = 2;
843 mrs->retry_updated = true;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200844
Felix Fietkau202df502018-10-06 19:35:02 +0200845 tx_time_data = minstrel_get_duration(index) * ampdu_len / 1000;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700846
847 /* Contention time for first 2 tries */
848 ctime = (t_slot * cw) >> 1;
849 cw = min((cw << 1) | 1, mp->cw_max);
850 ctime += (t_slot * cw) >> 1;
851 cw = min((cw << 1) | 1, mp->cw_max);
852
Felix Fietkaua0497f92013-02-13 10:51:08 +0100853 if (index / MCS_GROUP_RATES != MINSTREL_CCK_GROUP) {
854 overhead = mi->overhead;
855 overhead_rtscts = mi->overhead_rtscts;
856 }
857
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700858 /* Total TX time for data and Contention after first 2 tries */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100859 tx_time = ctime + 2 * (overhead + tx_time_data);
860 tx_time_rtscts = ctime + 2 * (overhead_rtscts + tx_time_data);
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700861
862 /* See how many more tries we can fit inside segment size */
Felix Fietkauec8aa662010-05-13 16:48:03 +0200863 do {
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700864 /* Contention time for this try */
865 ctime = (t_slot * cw) >> 1;
866 cw = min((cw << 1) | 1, mp->cw_max);
867
868 /* Total TX time after this try */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100869 tx_time += ctime + overhead + tx_time_data;
870 tx_time_rtscts += ctime + overhead_rtscts + tx_time_data;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700871
Felix Fietkauec8aa662010-05-13 16:48:03 +0200872 if (tx_time_rtscts < mp->segment_size)
Thomas Huehn91340732015-03-24 21:09:39 +0100873 mrs->retry_count_rtscts++;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200874 } while ((tx_time < mp->segment_size) &&
Thomas Huehn91340732015-03-24 21:09:39 +0100875 (++mrs->retry_count < mp->max_retry));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200876}
877
878
879static void
880minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
Felix Fietkaua8566662013-04-22 16:14:42 +0200881 struct ieee80211_sta_rates *ratetbl, int offset, int index)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200882{
883 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
Thomas Huehn91340732015-03-24 21:09:39 +0100884 struct minstrel_rate_stats *mrs;
Felix Fietkaua8566662013-04-22 16:14:42 +0200885 u8 idx;
Karl Beldan3ec373c2014-10-20 15:46:01 +0200886 u16 flags = group->flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200887
Thomas Huehn91340732015-03-24 21:09:39 +0100888 mrs = minstrel_get_ratestats(mi, index);
889 if (!mrs->retry_updated)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200890 minstrel_calc_retransmit(mp, mi, index);
891
Thomas Huehn91340732015-03-24 21:09:39 +0100892 if (mrs->prob_ewma < MINSTREL_FRAC(20, 100) || !mrs->retry_count) {
Felix Fietkaua8566662013-04-22 16:14:42 +0200893 ratetbl->rate[offset].count = 2;
894 ratetbl->rate[offset].count_rts = 2;
895 ratetbl->rate[offset].count_cts = 2;
896 } else {
Thomas Huehn91340732015-03-24 21:09:39 +0100897 ratetbl->rate[offset].count = mrs->retry_count;
898 ratetbl->rate[offset].count_cts = mrs->retry_count;
899 ratetbl->rate[offset].count_rts = mrs->retry_count_rtscts;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100900 }
901
Karl Beldan3ec373c2014-10-20 15:46:01 +0200902 if (index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP)
Felix Fietkaua8566662013-04-22 16:14:42 +0200903 idx = mp->cck_rates[index % ARRAY_SIZE(mp->cck_rates)];
Karl Beldan92082472014-10-21 10:38:38 +0200904 else if (flags & IEEE80211_TX_RC_VHT_MCS)
905 idx = ((group->streams - 1) << 4) |
906 ((index % MCS_GROUP_RATES) & 0xF);
Karl Beldan3ec373c2014-10-20 15:46:01 +0200907 else
Karl Beldan7a5e3fa2013-11-11 13:12:55 +0100908 idx = index % MCS_GROUP_RATES + (group->streams - 1) * 8;
Felix Fietkaua8566662013-04-22 16:14:42 +0200909
Krishna Chaitanyaa3ebb4e2015-06-12 02:34:52 +0530910 /* enable RTS/CTS if needed:
911 * - if station is in dynamic SMPS (and streams > 1)
912 * - for fallback rates, to increase chances of getting through
913 */
Felix Fietkauc36dd3e2016-02-24 12:07:17 +0100914 if (offset > 0 ||
Krishna Chaitanyaa3ebb4e2015-06-12 02:34:52 +0530915 (mi->sta->smps_mode == IEEE80211_SMPS_DYNAMIC &&
916 group->streams > 1)) {
Felix Fietkaua8566662013-04-22 16:14:42 +0200917 ratetbl->rate[offset].count = ratetbl->rate[offset].count_rts;
918 flags |= IEEE80211_TX_RC_USE_RTS_CTS;
919 }
920
921 ratetbl->rate[offset].idx = idx;
922 ratetbl->rate[offset].flags = flags;
923}
924
Felix Fietkau918fe042016-03-03 22:59:01 +0100925static inline int
926minstrel_ht_get_prob_ewma(struct minstrel_ht_sta *mi, int rate)
927{
928 int group = rate / MCS_GROUP_RATES;
929 rate %= MCS_GROUP_RATES;
930 return mi->groups[group].rates[rate].prob_ewma;
931}
932
933static int
934minstrel_ht_get_max_amsdu_len(struct minstrel_ht_sta *mi)
935{
936 int group = mi->max_prob_rate / MCS_GROUP_RATES;
937 const struct mcs_group *g = &minstrel_mcs_groups[group];
938 int rate = mi->max_prob_rate % MCS_GROUP_RATES;
Felix Fietkau202df502018-10-06 19:35:02 +0200939 unsigned int duration;
Felix Fietkau918fe042016-03-03 22:59:01 +0100940
941 /* Disable A-MSDU if max_prob_rate is bad */
942 if (mi->groups[group].rates[rate].prob_ewma < MINSTREL_FRAC(50, 100))
943 return 1;
944
Felix Fietkau202df502018-10-06 19:35:02 +0200945 duration = g->duration[rate];
946 duration <<= g->shift;
947
Felix Fietkau918fe042016-03-03 22:59:01 +0100948 /* If the rate is slower than single-stream MCS1, make A-MSDU limit small */
Felix Fietkau202df502018-10-06 19:35:02 +0200949 if (duration > MCS_DURATION(1, 0, 52))
Felix Fietkau918fe042016-03-03 22:59:01 +0100950 return 500;
951
952 /*
953 * If the rate is slower than single-stream MCS4, limit A-MSDU to usual
954 * data packet size
955 */
Felix Fietkau202df502018-10-06 19:35:02 +0200956 if (duration > MCS_DURATION(1, 0, 104))
Felix Fietkau918fe042016-03-03 22:59:01 +0100957 return 1600;
958
959 /*
960 * If the rate is slower than single-stream MCS7, or if the max throughput
961 * rate success probability is less than 75%, limit A-MSDU to twice the usual
962 * data packet size
963 */
Felix Fietkau202df502018-10-06 19:35:02 +0200964 if (duration > MCS_DURATION(1, 0, 260) ||
Felix Fietkau918fe042016-03-03 22:59:01 +0100965 (minstrel_ht_get_prob_ewma(mi, mi->max_tp_rate[0]) <
966 MINSTREL_FRAC(75, 100)))
967 return 3200;
968
969 /*
970 * HT A-MPDU limits maximum MPDU size under BA agreement to 4095 bytes.
971 * Since aggregation sessions are started/stopped without txq flush, use
972 * the limit here to avoid the complexity of having to de-aggregate
973 * packets in the queue.
974 */
975 if (!mi->sta->vht_cap.vht_supported)
976 return IEEE80211_MAX_MPDU_LEN_HT_BA;
977
978 /* unlimited */
979 return 0;
980}
981
Felix Fietkaua8566662013-04-22 16:14:42 +0200982static void
983minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
984{
985 struct ieee80211_sta_rates *rates;
986 int i = 0;
987
988 rates = kzalloc(sizeof(*rates), GFP_ATOMIC);
989 if (!rates)
990 return;
991
Thomas Huehn59358392014-09-09 23:22:14 +0200992 /* Start with max_tp_rate[0] */
993 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_tp_rate[0]);
Felix Fietkaua8566662013-04-22 16:14:42 +0200994
995 if (mp->hw->max_rates >= 3) {
Thomas Huehn59358392014-09-09 23:22:14 +0200996 /* At least 3 tx rates supported, use max_tp_rate[1] next */
997 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_tp_rate[1]);
Felix Fietkaua8566662013-04-22 16:14:42 +0200998 }
999
1000 if (mp->hw->max_rates >= 2) {
1001 /*
1002 * At least 2 tx rates supported, use max_prob_rate next */
1003 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_prob_rate);
1004 }
1005
Felix Fietkau918fe042016-03-03 22:59:01 +01001006 mi->sta->max_rc_amsdu_len = minstrel_ht_get_max_amsdu_len(mi);
Felix Fietkaua8566662013-04-22 16:14:42 +02001007 rates->rate[i].idx = -1;
1008 rate_control_set_rates(mp->hw, mi->sta, rates);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001009}
1010
Felix Fietkauec8aa662010-05-13 16:48:03 +02001011static int
1012minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
1013{
Thomas Huehn91340732015-03-24 21:09:39 +01001014 struct minstrel_rate_stats *mrs;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001015 struct minstrel_mcs_group_data *mg;
Thomas Huehn59358392014-09-09 23:22:14 +02001016 unsigned int sample_dur, sample_group, cur_max_tp_streams;
Felix Fietkau06171e92016-03-03 23:25:42 +01001017 int tp_rate1, tp_rate2;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001018 int sample_idx = 0;
1019
1020 if (mi->sample_wait > 0) {
1021 mi->sample_wait--;
1022 return -1;
1023 }
1024
1025 if (!mi->sample_tries)
1026 return -1;
1027
Felix Fietkau965237a2013-03-03 12:49:51 +01001028 sample_group = mi->sample_group;
Karl Beldanf12140c2013-11-11 13:10:49 +01001029 mg = &mi->groups[sample_group];
1030 sample_idx = sample_table[mg->column][mg->index];
Thomas Huehn91340732015-03-24 21:09:39 +01001031 minstrel_set_next_sample_idx(mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001032
Felix Fietkau41d08582016-12-14 20:46:54 +01001033 if (!(mi->supported[sample_group] & BIT(sample_idx)))
Karl Beldanf12140c2013-11-11 13:10:49 +01001034 return -1;
1035
Thomas Huehn91340732015-03-24 21:09:39 +01001036 mrs = &mg->rates[sample_idx];
Karl Beldanf12140c2013-11-11 13:10:49 +01001037 sample_idx += sample_group * MCS_GROUP_RATES;
1038
Felix Fietkau06171e92016-03-03 23:25:42 +01001039 /* Set tp_rate1, tp_rate2 to the highest / second highest max_tp_rate */
1040 if (minstrel_get_duration(mi->max_tp_rate[0]) >
1041 minstrel_get_duration(mi->max_tp_rate[1])) {
1042 tp_rate1 = mi->max_tp_rate[1];
1043 tp_rate2 = mi->max_tp_rate[0];
1044 } else {
1045 tp_rate1 = mi->max_tp_rate[0];
1046 tp_rate2 = mi->max_tp_rate[1];
1047 }
1048
Felix Fietkauec8aa662010-05-13 16:48:03 +02001049 /*
Helmut Schaaba6fa292012-03-14 13:31:11 +01001050 * Sampling might add some overhead (RTS, no aggregation)
Felix Fietkau06171e92016-03-03 23:25:42 +01001051 * to the frame. Hence, don't use sampling for the highest currently
1052 * used highest throughput or probability rate.
Helmut Schaaba6fa292012-03-14 13:31:11 +01001053 */
Felix Fietkau06171e92016-03-03 23:25:42 +01001054 if (sample_idx == mi->max_tp_rate[0] || sample_idx == mi->max_prob_rate)
Helmut Schaaba6fa292012-03-14 13:31:11 +01001055 return -1;
Felix Fietkaua0ca7962013-03-16 17:00:27 +01001056
Helmut Schaaba6fa292012-03-14 13:31:11 +01001057 /*
Felix Fietkauf4ec7cb2018-10-06 19:35:06 +02001058 * Do not sample if the probability is already higher than 95%,
1059 * or if the rate is 3 times slower than the current max probability
1060 * rate, to avoid wasting airtime.
Felix Fietkauec8aa662010-05-13 16:48:03 +02001061 */
Felix Fietkauf4ec7cb2018-10-06 19:35:06 +02001062 sample_dur = minstrel_get_duration(sample_idx);
1063 if (mrs->prob_ewma > MINSTREL_FRAC(95, 100) ||
1064 minstrel_get_duration(mi->max_prob_rate) * 3 < sample_dur)
Daniel Halperin8d5eab52011-03-09 03:10:18 -08001065 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001066
1067 /*
1068 * Make sure that lower rates get sampled only occasionally,
1069 * if the link is working perfectly.
1070 */
Thomas Huehn59358392014-09-09 23:22:14 +02001071
Felix Fietkau06171e92016-03-03 23:25:42 +01001072 cur_max_tp_streams = minstrel_mcs_groups[tp_rate1 /
Thomas Huehn59358392014-09-09 23:22:14 +02001073 MCS_GROUP_RATES].streams;
Felix Fietkau06171e92016-03-03 23:25:42 +01001074 if (sample_dur >= minstrel_get_duration(tp_rate2) &&
Thomas Huehn59358392014-09-09 23:22:14 +02001075 (cur_max_tp_streams - 1 <
Felix Fietkau965237a2013-03-03 12:49:51 +01001076 minstrel_mcs_groups[sample_group].streams ||
1077 sample_dur >= minstrel_get_duration(mi->max_prob_rate))) {
Thomas Huehn91340732015-03-24 21:09:39 +01001078 if (mrs->sample_skipped < 20)
Daniel Halperin8d5eab52011-03-09 03:10:18 -08001079 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001080
1081 if (mi->sample_slow++ > 2)
Daniel Halperin8d5eab52011-03-09 03:10:18 -08001082 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001083 }
Felix Fietkau098b8af2013-03-03 12:49:52 +01001084 mi->sample_tries--;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001085
1086 return sample_idx;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001087}
1088
1089static void
1090minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
1091 struct ieee80211_tx_rate_control *txrc)
1092{
Felix Fietkaua8566662013-04-22 16:14:42 +02001093 const struct mcs_group *sample_group;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001094 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
Felix Fietkaua8566662013-04-22 16:14:42 +02001095 struct ieee80211_tx_rate *rate = &info->status.rates[0];
Felix Fietkauec8aa662010-05-13 16:48:03 +02001096 struct minstrel_ht_sta_priv *msp = priv_sta;
1097 struct minstrel_ht_sta *mi = &msp->ht;
1098 struct minstrel_priv *mp = priv;
1099 int sample_idx;
1100
1101 if (rate_control_send_low(sta, priv_sta, txrc))
1102 return;
1103
1104 if (!msp->is_ht)
1105 return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
1106
Felix Fietkau95943422014-11-19 20:08:07 +01001107 if (!(info->flags & IEEE80211_TX_CTL_AMPDU) &&
1108 mi->max_prob_rate / MCS_GROUP_RATES != MINSTREL_CCK_GROUP)
1109 minstrel_aggr_check(sta, txrc->skb);
1110
Felix Fietkauec8aa662010-05-13 16:48:03 +02001111 info->flags |= mi->tx_flags;
Helmut Schaa6de062c2011-08-01 11:32:53 +02001112
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +02001113#ifdef CONFIG_MAC80211_DEBUGFS
1114 if (mp->fixed_rate_idx != -1)
1115 return;
1116#endif
1117
Helmut Schaa6de062c2011-08-01 11:32:53 +02001118 /* Don't use EAPOL frames for sampling on non-mrr hw */
1119 if (mp->hw->max_rates == 1 &&
Johannes Bergaf61a162013-07-02 18:09:12 +02001120 (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO))
Helmut Schaa6de062c2011-08-01 11:32:53 +02001121 sample_idx = -1;
1122 else
1123 sample_idx = minstrel_get_sample_rate(mp, mi);
Zefir Kurtisi24f75802011-05-20 20:29:17 +02001124
Felix Fietkauec8aa662010-05-13 16:48:03 +02001125 mi->total_packets++;
1126
1127 /* wraparound */
1128 if (mi->total_packets == ~0) {
1129 mi->total_packets = 0;
1130 mi->sample_packets = 0;
1131 }
Felix Fietkaua8566662013-04-22 16:14:42 +02001132
1133 if (sample_idx < 0)
1134 return;
1135
1136 sample_group = &minstrel_mcs_groups[sample_idx / MCS_GROUP_RATES];
Felix Fietkau972b66b2018-10-06 19:35:05 +02001137 sample_idx %= MCS_GROUP_RATES;
1138
1139 if (sample_group == &minstrel_mcs_groups[MINSTREL_CCK_GROUP] &&
1140 (sample_idx >= 4) != txrc->short_preamble)
1141 return;
1142
Felix Fietkaua8566662013-04-22 16:14:42 +02001143 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Felix Fietkau1cd15852013-06-28 21:04:35 +02001144 rate->count = 1;
1145
Felix Fietkau972b66b2018-10-06 19:35:05 +02001146 if (sample_group == &minstrel_mcs_groups[MINSTREL_CCK_GROUP]) {
Felix Fietkau1cd15852013-06-28 21:04:35 +02001147 int idx = sample_idx % ARRAY_SIZE(mp->cck_rates);
1148 rate->idx = mp->cck_rates[idx];
Karl Beldan92082472014-10-21 10:38:38 +02001149 } else if (sample_group->flags & IEEE80211_TX_RC_VHT_MCS) {
1150 ieee80211_rate_set_vht(rate, sample_idx % MCS_GROUP_RATES,
1151 sample_group->streams);
Karl Beldan3ec373c2014-10-20 15:46:01 +02001152 } else {
Felix Fietkau972b66b2018-10-06 19:35:05 +02001153 rate->idx = sample_idx + (sample_group->streams - 1) * 8;
Felix Fietkau1cd15852013-06-28 21:04:35 +02001154 }
1155
Karl Beldan3ec373c2014-10-20 15:46:01 +02001156 rate->flags = sample_group->flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001157}
1158
1159static void
Felix Fietkaua0497f92013-02-13 10:51:08 +01001160minstrel_ht_update_cck(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
1161 struct ieee80211_supported_band *sband,
1162 struct ieee80211_sta *sta)
1163{
1164 int i;
1165
Johannes Berg57fbcce2016-04-12 15:56:15 +02001166 if (sband->band != NL80211_BAND_2GHZ)
Felix Fietkaua0497f92013-02-13 10:51:08 +01001167 return;
1168
Johannes Berg30686bf2015-06-02 21:39:54 +02001169 if (!ieee80211_hw_check(mp->hw, SUPPORTS_HT_CCK_RATES))
Felix Fietkau2dfca312013-08-20 19:43:54 +02001170 return;
1171
Felix Fietkaua0497f92013-02-13 10:51:08 +01001172 mi->cck_supported = 0;
1173 mi->cck_supported_short = 0;
1174 for (i = 0; i < 4; i++) {
1175 if (!rate_supported(sta, sband->band, mp->cck_rates[i]))
1176 continue;
1177
1178 mi->cck_supported |= BIT(i);
1179 if (sband->bitrates[i].flags & IEEE80211_RATE_SHORT_PREAMBLE)
1180 mi->cck_supported_short |= BIT(i);
1181 }
1182
Felix Fietkau41d08582016-12-14 20:46:54 +01001183 mi->supported[MINSTREL_CCK_GROUP] = mi->cck_supported;
Felix Fietkaua0497f92013-02-13 10:51:08 +01001184}
1185
1186static void
Felix Fietkauec8aa662010-05-13 16:48:03 +02001187minstrel_ht_update_caps(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001188 struct cfg80211_chan_def *chandef,
Johannes Berg64f68e52012-03-28 10:58:37 +02001189 struct ieee80211_sta *sta, void *priv_sta)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001190{
1191 struct minstrel_priv *mp = priv;
1192 struct minstrel_ht_sta_priv *msp = priv_sta;
1193 struct minstrel_ht_sta *mi = &msp->ht;
1194 struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs;
Chaitanya T Kf458e832018-10-06 19:34:59 +02001195 u16 ht_cap = sta->ht_cap.cap;
Karl Beldan92082472014-10-21 10:38:38 +02001196 struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap;
1197 int use_vht;
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001198 int n_supported = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001199 int ack_dur;
1200 int stbc;
1201 int i;
Chaitanya T Kf458e832018-10-06 19:34:59 +02001202 bool ldpc;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001203
1204 /* fall back to the old minstrel for legacy stations */
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001205 if (!sta->ht_cap.ht_supported)
1206 goto use_legacy;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001207
Karl Beldan8a0ee4f2014-10-20 15:46:00 +02001208 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) != MINSTREL_GROUPS_NB);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001209
Karl Beldan92082472014-10-21 10:38:38 +02001210 if (vht_cap->vht_supported)
1211 use_vht = vht_cap->vht_mcs.tx_mcs_map != cpu_to_le16(~0);
1212 else
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001213 use_vht = 0;
Karl Beldan92082472014-10-21 10:38:38 +02001214
Felix Fietkauec8aa662010-05-13 16:48:03 +02001215 msp->is_ht = true;
1216 memset(mi, 0, sizeof(*mi));
Felix Fietkaua8566662013-04-22 16:14:42 +02001217
1218 mi->sta = sta;
Thomas Huehn91340732015-03-24 21:09:39 +01001219 mi->last_stats_update = jiffies;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001220
Simon Wunderlich438b61b2013-07-08 16:55:51 +02001221 ack_dur = ieee80211_frame_duration(sband->band, 10, 60, 1, 1, 0);
1222 mi->overhead = ieee80211_frame_duration(sband->band, 0, 60, 1, 1, 0);
1223 mi->overhead += ack_dur;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001224 mi->overhead_rtscts = mi->overhead + 2 * ack_dur;
1225
1226 mi->avg_ampdu_len = MINSTREL_FRAC(1, 1);
1227
1228 /* When using MRR, sample more on the first attempt, without delay */
1229 if (mp->has_mrr) {
1230 mi->sample_count = 16;
1231 mi->sample_wait = 0;
1232 } else {
1233 mi->sample_count = 8;
1234 mi->sample_wait = 8;
1235 }
1236 mi->sample_tries = 4;
1237
Karl Beldan92082472014-10-21 10:38:38 +02001238 if (!use_vht) {
Chaitanya T Kf458e832018-10-06 19:34:59 +02001239 stbc = (ht_cap & IEEE80211_HT_CAP_RX_STBC) >>
Karl Beldan92082472014-10-21 10:38:38 +02001240 IEEE80211_HT_CAP_RX_STBC_SHIFT;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001241
Chaitanya T Kf458e832018-10-06 19:34:59 +02001242 ldpc = ht_cap & IEEE80211_HT_CAP_LDPC_CODING;
1243 } else {
1244 stbc = (vht_cap->cap & IEEE80211_VHT_CAP_RXSTBC_MASK) >>
1245 IEEE80211_VHT_CAP_RXSTBC_SHIFT;
1246
1247 ldpc = vht_cap->cap & IEEE80211_VHT_CAP_RXLDPC;
Karl Beldan92082472014-10-21 10:38:38 +02001248 }
Felix Fietkauec8aa662010-05-13 16:48:03 +02001249
Chaitanya T Kf458e832018-10-06 19:34:59 +02001250 mi->tx_flags |= stbc << IEEE80211_TX_CTL_STBC_SHIFT;
1251 if (ldpc)
1252 mi->tx_flags |= IEEE80211_TX_CTL_LDPC;
1253
Felix Fietkauec8aa662010-05-13 16:48:03 +02001254 for (i = 0; i < ARRAY_SIZE(mi->groups); i++) {
Karl Beldan3ec373c2014-10-20 15:46:01 +02001255 u32 gflags = minstrel_mcs_groups[i].flags;
Karl Beldan92082472014-10-21 10:38:38 +02001256 int bw, nss;
Karl Beldan3ec373c2014-10-20 15:46:01 +02001257
Felix Fietkau41d08582016-12-14 20:46:54 +01001258 mi->supported[i] = 0;
Felix Fietkaua0497f92013-02-13 10:51:08 +01001259 if (i == MINSTREL_CCK_GROUP) {
1260 minstrel_ht_update_cck(mp, mi, sband, sta);
1261 continue;
1262 }
1263
Karl Beldan3ec373c2014-10-20 15:46:01 +02001264 if (gflags & IEEE80211_TX_RC_SHORT_GI) {
1265 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH) {
Chaitanya T Kf458e832018-10-06 19:34:59 +02001266 if (!(ht_cap & IEEE80211_HT_CAP_SGI_40))
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001267 continue;
1268 } else {
Chaitanya T Kf458e832018-10-06 19:34:59 +02001269 if (!(ht_cap & IEEE80211_HT_CAP_SGI_20))
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001270 continue;
1271 }
Felix Fietkauec8aa662010-05-13 16:48:03 +02001272 }
1273
Karl Beldan3ec373c2014-10-20 15:46:01 +02001274 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH &&
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001275 sta->bandwidth < IEEE80211_STA_RX_BW_40)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001276 continue;
1277
Karl Beldan92082472014-10-21 10:38:38 +02001278 nss = minstrel_mcs_groups[i].streams;
1279
Helmut Schaae9219772012-03-09 14:13:45 +01001280 /* Mark MCS > 7 as unsupported if STA is in static SMPS mode */
Karl Beldan92082472014-10-21 10:38:38 +02001281 if (sta->smps_mode == IEEE80211_SMPS_STATIC && nss > 1)
Helmut Schaae9219772012-03-09 14:13:45 +01001282 continue;
1283
Karl Beldan92082472014-10-21 10:38:38 +02001284 /* HT rate */
1285 if (gflags & IEEE80211_TX_RC_MCS) {
Karl Beldan9ffe9042014-10-24 14:34:49 +02001286 if (use_vht && minstrel_vht_only)
Karl Beldan92082472014-10-21 10:38:38 +02001287 continue;
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001288
Felix Fietkau41d08582016-12-14 20:46:54 +01001289 mi->supported[i] = mcs->rx_mask[nss - 1];
1290 if (mi->supported[i])
Karl Beldan92082472014-10-21 10:38:38 +02001291 n_supported++;
1292 continue;
1293 }
1294
1295 /* VHT rate */
1296 if (!vht_cap->vht_supported ||
1297 WARN_ON(!(gflags & IEEE80211_TX_RC_VHT_MCS)) ||
1298 WARN_ON(gflags & IEEE80211_TX_RC_160_MHZ_WIDTH))
1299 continue;
1300
1301 if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH) {
1302 if (sta->bandwidth < IEEE80211_STA_RX_BW_80 ||
1303 ((gflags & IEEE80211_TX_RC_SHORT_GI) &&
1304 !(vht_cap->cap & IEEE80211_VHT_CAP_SHORT_GI_80))) {
1305 continue;
1306 }
1307 }
1308
1309 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
1310 bw = BW_40;
1311 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
1312 bw = BW_80;
1313 else
1314 bw = BW_20;
1315
Felix Fietkau41d08582016-12-14 20:46:54 +01001316 mi->supported[i] = minstrel_get_valid_vht_rates(bw, nss,
Karl Beldan92082472014-10-21 10:38:38 +02001317 vht_cap->vht_mcs.tx_mcs_map);
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001318
Felix Fietkau41d08582016-12-14 20:46:54 +01001319 if (mi->supported[i])
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001320 n_supported++;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001321 }
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001322
1323 if (!n_supported)
1324 goto use_legacy;
1325
Felix Fietkau37439f22018-10-06 19:35:03 +02001326 mi->supported[MINSTREL_CCK_GROUP] |= mi->cck_supported_short << 4;
Felix Fietkau782dda02016-12-14 20:46:55 +01001327
Felix Fietkaua8566662013-04-22 16:14:42 +02001328 /* create an initial rate table with the lowest supported rates */
Karl Beldana3647362013-04-18 14:26:21 +02001329 minstrel_ht_update_stats(mp, mi);
Felix Fietkaua8566662013-04-22 16:14:42 +02001330 minstrel_ht_update_rates(mp, mi);
Karl Beldana3647362013-04-18 14:26:21 +02001331
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001332 return;
1333
1334use_legacy:
1335 msp->is_ht = false;
1336 memset(&msp->legacy, 0, sizeof(msp->legacy));
1337 msp->legacy.r = msp->ratelist;
1338 msp->legacy.sample_table = msp->sample_table;
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001339 return mac80211_minstrel.rate_init(priv, sband, chandef, sta,
1340 &msp->legacy);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001341}
1342
1343static void
1344minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001345 struct cfg80211_chan_def *chandef,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001346 struct ieee80211_sta *sta, void *priv_sta)
1347{
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001348 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001349}
1350
1351static void
1352minstrel_ht_rate_update(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001353 struct cfg80211_chan_def *chandef,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001354 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berg64f68e52012-03-28 10:58:37 +02001355 u32 changed)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001356{
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001357 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001358}
1359
1360static void *
1361minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
1362{
1363 struct ieee80211_supported_band *sband;
1364 struct minstrel_ht_sta_priv *msp;
1365 struct minstrel_priv *mp = priv;
1366 struct ieee80211_hw *hw = mp->hw;
1367 int max_rates = 0;
1368 int i;
1369
Johannes Berg57fbcce2016-04-12 15:56:15 +02001370 for (i = 0; i < NUM_NL80211_BANDS; i++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +02001371 sband = hw->wiphy->bands[i];
1372 if (sband && sband->n_bitrates > max_rates)
1373 max_rates = sband->n_bitrates;
1374 }
1375
Thomas Huehn472dd352012-06-29 06:26:27 -07001376 msp = kzalloc(sizeof(*msp), gfp);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001377 if (!msp)
1378 return NULL;
1379
Kees Cook6396bb22018-06-12 14:03:40 -07001380 msp->ratelist = kcalloc(max_rates, sizeof(struct minstrel_rate), gfp);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001381 if (!msp->ratelist)
1382 goto error;
1383
Kees Cook6da2ec52018-06-12 13:55:00 -07001384 msp->sample_table = kmalloc_array(max_rates, SAMPLE_COLUMNS, gfp);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001385 if (!msp->sample_table)
1386 goto error1;
1387
1388 return msp;
1389
1390error1:
Dan Carpenter7e988012010-07-22 13:14:19 +02001391 kfree(msp->ratelist);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001392error:
1393 kfree(msp);
1394 return NULL;
1395}
1396
1397static void
1398minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
1399{
1400 struct minstrel_ht_sta_priv *msp = priv_sta;
1401
1402 kfree(msp->sample_table);
1403 kfree(msp->ratelist);
1404 kfree(msp);
1405}
1406
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001407static void
1408minstrel_ht_init_cck_rates(struct minstrel_priv *mp)
1409{
1410 static const int bitrates[4] = { 10, 20, 55, 110 };
1411 struct ieee80211_supported_band *sband;
1412 u32 rate_flags = ieee80211_chandef_rate_flags(&mp->hw->conf.chandef);
1413 int i, j;
1414
1415 sband = mp->hw->wiphy->bands[NL80211_BAND_2GHZ];
1416 if (!sband)
1417 return;
1418
1419 for (i = 0; i < sband->n_bitrates; i++) {
1420 struct ieee80211_rate *rate = &sband->bitrates[i];
1421
1422 if (rate->flags & IEEE80211_RATE_ERP_G)
1423 continue;
1424
1425 if ((rate_flags & sband->bitrates[i].flags) != rate_flags)
1426 continue;
1427
1428 for (j = 0; j < ARRAY_SIZE(bitrates); j++) {
1429 if (rate->bitrate != bitrates[j])
1430 continue;
1431
1432 mp->cck_rates[j] = i;
1433 break;
1434 }
1435 }
1436}
1437
Felix Fietkauec8aa662010-05-13 16:48:03 +02001438static void *
1439minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
1440{
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001441 struct minstrel_priv *mp;
1442
1443 mp = kzalloc(sizeof(struct minstrel_priv), GFP_ATOMIC);
1444 if (!mp)
1445 return NULL;
1446
1447 /* contention window settings
1448 * Just an approximation. Using the per-queue values would complicate
1449 * the calculations and is probably unnecessary */
1450 mp->cw_min = 15;
1451 mp->cw_max = 1023;
1452
1453 /* number of packets (in %) to use for sampling other rates
1454 * sample less often for non-mrr packets, because the overhead
1455 * is much higher than with mrr */
1456 mp->lookaround_rate = 5;
1457 mp->lookaround_rate_mrr = 10;
1458
1459 /* maximum time that the hw is allowed to stay in one MRR segment */
1460 mp->segment_size = 6000;
1461
1462 if (hw->max_rate_tries > 0)
1463 mp->max_retry = hw->max_rate_tries;
1464 else
1465 /* safe default, does not necessarily have to match hw properties */
1466 mp->max_retry = 7;
1467
1468 if (hw->max_rates >= 4)
1469 mp->has_mrr = true;
1470
1471 mp->hw = hw;
1472 mp->update_interval = 100;
1473
1474#ifdef CONFIG_MAC80211_DEBUGFS
1475 mp->fixed_rate_idx = (u32) -1;
1476 debugfs_create_u32("fixed_rate_idx", S_IRUGO | S_IWUGO, debugfsdir,
1477 &mp->fixed_rate_idx);
1478#endif
1479
1480 minstrel_ht_init_cck_rates(mp);
1481
1482 return mp;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001483}
1484
1485static void
1486minstrel_ht_free(void *priv)
1487{
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001488 kfree(priv);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001489}
1490
Antonio Quartullicca674d2014-05-19 21:53:20 +02001491static u32 minstrel_ht_get_expected_throughput(void *priv_sta)
1492{
1493 struct minstrel_ht_sta_priv *msp = priv_sta;
1494 struct minstrel_ht_sta *mi = &msp->ht;
Thomas Huehn50e55a82015-03-24 21:09:41 +01001495 int i, j, prob, tp_avg;
Antonio Quartullicca674d2014-05-19 21:53:20 +02001496
1497 if (!msp->is_ht)
1498 return mac80211_minstrel.get_expected_throughput(priv_sta);
1499
Thomas Huehn59358392014-09-09 23:22:14 +02001500 i = mi->max_tp_rate[0] / MCS_GROUP_RATES;
1501 j = mi->max_tp_rate[0] % MCS_GROUP_RATES;
Thomas Huehn50e55a82015-03-24 21:09:41 +01001502 prob = mi->groups[i].rates[j].prob_ewma;
Antonio Quartullicca674d2014-05-19 21:53:20 +02001503
Thomas Huehn6a27b2c402015-03-24 21:09:40 +01001504 /* convert tp_avg from pkt per second in kbps */
Sven Eckelmann212c5a52016-02-02 08:12:26 +01001505 tp_avg = minstrel_ht_get_tp_avg(mi, i, j, prob) * 10;
1506 tp_avg = tp_avg * AVG_PKT_SIZE * 8 / 1024;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +01001507
1508 return tp_avg;
Antonio Quartullicca674d2014-05-19 21:53:20 +02001509}
1510
Johannes Berg631ad702014-01-20 23:29:34 +01001511static const struct rate_control_ops mac80211_minstrel_ht = {
Felix Fietkauec8aa662010-05-13 16:48:03 +02001512 .name = "minstrel_ht",
Felix Fietkau18fb84d2017-04-26 17:11:35 +02001513 .tx_status_ext = minstrel_ht_tx_status,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001514 .get_rate = minstrel_ht_get_rate,
1515 .rate_init = minstrel_ht_rate_init,
1516 .rate_update = minstrel_ht_rate_update,
1517 .alloc_sta = minstrel_ht_alloc_sta,
1518 .free_sta = minstrel_ht_free_sta,
1519 .alloc = minstrel_ht_alloc,
1520 .free = minstrel_ht_free,
1521#ifdef CONFIG_MAC80211_DEBUGFS
1522 .add_sta_debugfs = minstrel_ht_add_sta_debugfs,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001523#endif
Antonio Quartullicca674d2014-05-19 21:53:20 +02001524 .get_expected_throughput = minstrel_ht_get_expected_throughput,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001525};
1526
1527
Johannes Bergf6e1a732014-01-21 00:32:52 +01001528static void __init init_sample_table(void)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001529{
1530 int col, i, new_idx;
1531 u8 rnd[MCS_GROUP_RATES];
1532
1533 memset(sample_table, 0xff, sizeof(sample_table));
1534 for (col = 0; col < SAMPLE_COLUMNS; col++) {
Karl Beldanf7d8ad82013-11-13 10:54:19 +01001535 prandom_bytes(rnd, sizeof(rnd));
Felix Fietkauec8aa662010-05-13 16:48:03 +02001536 for (i = 0; i < MCS_GROUP_RATES; i++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +02001537 new_idx = (i + rnd[i]) % MCS_GROUP_RATES;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001538 while (sample_table[col][new_idx] != 0xff)
1539 new_idx = (new_idx + 1) % MCS_GROUP_RATES;
1540
1541 sample_table[col][new_idx] = i;
1542 }
1543 }
1544}
1545
1546int __init
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001547rc80211_minstrel_init(void)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001548{
1549 init_sample_table();
1550 return ieee80211_rate_control_register(&mac80211_minstrel_ht);
1551}
1552
1553void
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001554rc80211_minstrel_exit(void)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001555{
1556 ieee80211_rate_control_unregister(&mac80211_minstrel_ht);
1557}