blob: 694a31978a0443dacbdfdd91ce9dd48d46974afe [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Felix Fietkauec8aa662010-05-13 16:48:03 +02002/*
Felix Fietkaua0497f92013-02-13 10:51:08 +01003 * Copyright (C) 2010-2013 Felix Fietkau <nbd@openwrt.org>
Felix Fietkauec8aa662010-05-13 16:48:03 +02004 */
5#include <linux/netdevice.h>
6#include <linux/types.h>
7#include <linux/skbuff.h>
8#include <linux/debugfs.h>
9#include <linux/random.h>
Karl Beldan92082472014-10-21 10:38:38 +020010#include <linux/moduleparam.h>
Felix Fietkauec8aa662010-05-13 16:48:03 +020011#include <linux/ieee80211.h>
12#include <net/mac80211.h>
13#include "rate.h"
Felix Fietkau782dda02016-12-14 20:46:55 +010014#include "sta_info.h"
Felix Fietkauec8aa662010-05-13 16:48:03 +020015#include "rc80211_minstrel.h"
16#include "rc80211_minstrel_ht.h"
17
Felix Fietkaud66c2582015-03-13 10:54:44 +010018#define AVG_AMPDU_SIZE 16
Felix Fietkauec8aa662010-05-13 16:48:03 +020019#define AVG_PKT_SIZE 1200
Felix Fietkauec8aa662010-05-13 16:48:03 +020020
Felix Fietkau48cb3952019-08-20 11:54:49 +020021#define SAMPLE_SWITCH_THR 100
22
Felix Fietkauec8aa662010-05-13 16:48:03 +020023/* Number of bits for an average sized packet */
Felix Fietkaud66c2582015-03-13 10:54:44 +010024#define MCS_NBITS ((AVG_PKT_SIZE * AVG_AMPDU_SIZE) << 3)
Felix Fietkauec8aa662010-05-13 16:48:03 +020025
26/* Number of symbols for a packet with (bps) bits per symbol */
Johannes Berg00591ce2014-05-19 11:24:19 +020027#define MCS_NSYMS(bps) DIV_ROUND_UP(MCS_NBITS, (bps))
Felix Fietkauec8aa662010-05-13 16:48:03 +020028
Felix Fietkaued97a132013-03-02 21:20:12 +010029/* Transmission time (nanoseconds) for a packet containing (syms) symbols */
Felix Fietkauec8aa662010-05-13 16:48:03 +020030#define MCS_SYMBOL_TIME(sgi, syms) \
31 (sgi ? \
Felix Fietkaued97a132013-03-02 21:20:12 +010032 ((syms) * 18000 + 4000) / 5 : /* syms * 3.6 us */ \
33 ((syms) * 1000) << 2 /* syms * 4 us */ \
Felix Fietkauec8aa662010-05-13 16:48:03 +020034 )
35
36/* Transmit duration for the raw data part of an average sized packet */
Felix Fietkaud66c2582015-03-13 10:54:44 +010037#define MCS_DURATION(streams, sgi, bps) \
38 (MCS_SYMBOL_TIME(sgi, MCS_NSYMS((streams) * (bps))) / AVG_AMPDU_SIZE)
Felix Fietkauec8aa662010-05-13 16:48:03 +020039
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020040#define BW_20 0
41#define BW_40 1
Karl Beldan92082472014-10-21 10:38:38 +020042#define BW_80 2
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020043
Helmut Schaaa5f69d942011-11-14 15:28:20 +010044/*
45 * Define group sort order: HT40 -> SGI -> #streams
46 */
47#define GROUP_IDX(_streams, _sgi, _ht40) \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020048 MINSTREL_HT_GROUP_0 + \
Helmut Schaaa5f69d942011-11-14 15:28:20 +010049 MINSTREL_MAX_STREAMS * 2 * _ht40 + \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020050 MINSTREL_MAX_STREAMS * _sgi + \
Helmut Schaaa5f69d942011-11-14 15:28:20 +010051 _streams - 1
52
Felix Fietkauc2b17942019-03-25 09:50:16 +010053#define _MAX(a, b) (((a)>(b))?(a):(b))
54
55#define GROUP_SHIFT(duration) \
56 _MAX(0, 16 - __builtin_clz(duration))
57
Felix Fietkauec8aa662010-05-13 16:48:03 +020058/* MCS rate information for an MCS group */
Felix Fietkauc2b17942019-03-25 09:50:16 +010059#define __MCS_GROUP(_streams, _sgi, _ht40, _s) \
Helmut Schaaa5f69d942011-11-14 15:28:20 +010060 [GROUP_IDX(_streams, _sgi, _ht40)] = { \
Felix Fietkauec8aa662010-05-13 16:48:03 +020061 .streams = _streams, \
Felix Fietkau202df502018-10-06 19:35:02 +020062 .shift = _s, \
Felix Fietkau48cb3952019-08-20 11:54:49 +020063 .bw = _ht40, \
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, \
Felix Fietkau48cb3952019-08-20 11:54:49 +0200100 .bw = _bw, \
Karl Beldan92082472014-10-21 10:38:38 +0200101 .flags = \
102 IEEE80211_TX_RC_VHT_MCS | \
103 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
104 (_bw == BW_80 ? IEEE80211_TX_RC_80_MHZ_WIDTH : \
105 _bw == BW_40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
106 .duration = { \
107 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200108 BW2VBPS(_bw, 117, 54, 26)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200109 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200110 BW2VBPS(_bw, 234, 108, 52)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200111 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200112 BW2VBPS(_bw, 351, 162, 78)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200113 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200114 BW2VBPS(_bw, 468, 216, 104)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200115 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200116 BW2VBPS(_bw, 702, 324, 156)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200117 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200118 BW2VBPS(_bw, 936, 432, 208)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200119 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200120 BW2VBPS(_bw, 1053, 486, 234)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200121 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200122 BW2VBPS(_bw, 1170, 540, 260)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200123 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200124 BW2VBPS(_bw, 1404, 648, 312)) >> _s, \
Karl Beldan92082472014-10-21 10:38:38 +0200125 MCS_DURATION(_streams, _sgi, \
Felix Fietkau202df502018-10-06 19:35:02 +0200126 BW2VBPS(_bw, 1560, 720, 346)) >> _s \
Karl Beldan92082472014-10-21 10:38:38 +0200127 } \
128}
129
Felix Fietkauc2b17942019-03-25 09:50:16 +0100130#define VHT_GROUP_SHIFT(_streams, _sgi, _bw) \
131 GROUP_SHIFT(MCS_DURATION(_streams, _sgi, \
132 BW2VBPS(_bw, 117, 54, 26)))
133
134#define VHT_GROUP(_streams, _sgi, _bw) \
135 __VHT_GROUP(_streams, _sgi, _bw, \
136 VHT_GROUP_SHIFT(_streams, _sgi, _bw))
137
Felix Fietkaua0497f92013-02-13 10:51:08 +0100138#define CCK_DURATION(_bitrate, _short, _len) \
Felix Fietkaued97a132013-03-02 21:20:12 +0100139 (1000 * (10 /* SIFS */ + \
Weilong Chenf359d3f2013-12-18 15:44:16 +0800140 (_short ? 72 + 24 : 144 + 48) + \
Felix Fietkaued97a132013-03-02 21:20:12 +0100141 (8 * (_len + 4) * 10) / (_bitrate)))
Felix Fietkaua0497f92013-02-13 10:51:08 +0100142
143#define CCK_ACK_DURATION(_bitrate, _short) \
144 (CCK_DURATION((_bitrate > 10 ? 20 : 10), false, 60) + \
145 CCK_DURATION(_bitrate, _short, AVG_PKT_SIZE))
146
Felix Fietkau202df502018-10-06 19:35:02 +0200147#define CCK_DURATION_LIST(_short, _s) \
148 CCK_ACK_DURATION(10, _short) >> _s, \
149 CCK_ACK_DURATION(20, _short) >> _s, \
150 CCK_ACK_DURATION(55, _short) >> _s, \
151 CCK_ACK_DURATION(110, _short) >> _s
Felix Fietkaua0497f92013-02-13 10:51:08 +0100152
Felix Fietkauc2b17942019-03-25 09:50:16 +0100153#define __CCK_GROUP(_s) \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200154 [MINSTREL_CCK_GROUP] = { \
Felix Fietkau80df9be2018-10-06 19:35:04 +0200155 .streams = 1, \
Karl Beldan3ec373c2014-10-20 15:46:01 +0200156 .flags = 0, \
Felix Fietkau202df502018-10-06 19:35:02 +0200157 .shift = _s, \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200158 .duration = { \
Felix Fietkau202df502018-10-06 19:35:02 +0200159 CCK_DURATION_LIST(false, _s), \
160 CCK_DURATION_LIST(true, _s) \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200161 } \
Felix Fietkaua0497f92013-02-13 10:51:08 +0100162 }
163
Felix Fietkauc2b17942019-03-25 09:50:16 +0100164#define CCK_GROUP_SHIFT \
165 GROUP_SHIFT(CCK_ACK_DURATION(10, false))
166
167#define CCK_GROUP __CCK_GROUP(CCK_GROUP_SHIFT)
168
169
Karl Beldan92082472014-10-21 10:38:38 +0200170static bool minstrel_vht_only = true;
171module_param(minstrel_vht_only, bool, 0644);
172MODULE_PARM_DESC(minstrel_vht_only,
173 "Use only VHT rates when VHT is supported by sta.");
Karl Beldan92082472014-10-21 10:38:38 +0200174
Felix Fietkauec8aa662010-05-13 16:48:03 +0200175/*
176 * To enable sufficiently targeted rate sampling, MCS rates are divided into
177 * groups, based on the number of streams and flags (HT40, SGI) that they
178 * use.
Helmut Schaaa5f69d942011-11-14 15:28:20 +0100179 *
180 * Sortorder has to be fixed for GROUP_IDX macro to be applicable:
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200181 * BW -> SGI -> #streams
Felix Fietkauec8aa662010-05-13 16:48:03 +0200182 */
183const struct mcs_group minstrel_mcs_groups[] = {
Felix Fietkauc2b17942019-03-25 09:50:16 +0100184 MCS_GROUP(1, 0, BW_20),
185 MCS_GROUP(2, 0, BW_20),
186 MCS_GROUP(3, 0, BW_20),
187 MCS_GROUP(4, 0, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200188
Felix Fietkauc2b17942019-03-25 09:50:16 +0100189 MCS_GROUP(1, 1, BW_20),
190 MCS_GROUP(2, 1, BW_20),
191 MCS_GROUP(3, 1, BW_20),
192 MCS_GROUP(4, 1, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200193
Felix Fietkauc2b17942019-03-25 09:50:16 +0100194 MCS_GROUP(1, 0, BW_40),
195 MCS_GROUP(2, 0, BW_40),
196 MCS_GROUP(3, 0, BW_40),
197 MCS_GROUP(4, 0, BW_40),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200198
Felix Fietkauc2b17942019-03-25 09:50:16 +0100199 MCS_GROUP(1, 1, BW_40),
200 MCS_GROUP(2, 1, BW_40),
201 MCS_GROUP(3, 1, BW_40),
202 MCS_GROUP(4, 1, BW_40),
Felix Fietkaua0497f92013-02-13 10:51:08 +0100203
Felix Fietkauc2b17942019-03-25 09:50:16 +0100204 CCK_GROUP,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200205
Felix Fietkauc2b17942019-03-25 09:50:16 +0100206 VHT_GROUP(1, 0, BW_20),
207 VHT_GROUP(2, 0, BW_20),
208 VHT_GROUP(3, 0, BW_20),
209 VHT_GROUP(4, 0, BW_20),
Karl Beldan92082472014-10-21 10:38:38 +0200210
Felix Fietkauc2b17942019-03-25 09:50:16 +0100211 VHT_GROUP(1, 1, BW_20),
212 VHT_GROUP(2, 1, BW_20),
213 VHT_GROUP(3, 1, BW_20),
214 VHT_GROUP(4, 1, BW_20),
Karl Beldan92082472014-10-21 10:38:38 +0200215
Felix Fietkauc2b17942019-03-25 09:50:16 +0100216 VHT_GROUP(1, 0, BW_40),
217 VHT_GROUP(2, 0, BW_40),
218 VHT_GROUP(3, 0, BW_40),
219 VHT_GROUP(4, 0, BW_40),
Karl Beldan92082472014-10-21 10:38:38 +0200220
Felix Fietkauc2b17942019-03-25 09:50:16 +0100221 VHT_GROUP(1, 1, BW_40),
222 VHT_GROUP(2, 1, BW_40),
223 VHT_GROUP(3, 1, BW_40),
224 VHT_GROUP(4, 1, BW_40),
Karl Beldan92082472014-10-21 10:38:38 +0200225
Felix Fietkauc2b17942019-03-25 09:50:16 +0100226 VHT_GROUP(1, 0, BW_80),
227 VHT_GROUP(2, 0, BW_80),
228 VHT_GROUP(3, 0, BW_80),
229 VHT_GROUP(4, 0, BW_80),
Karl Beldan92082472014-10-21 10:38:38 +0200230
Felix Fietkauc2b17942019-03-25 09:50:16 +0100231 VHT_GROUP(1, 1, BW_80),
232 VHT_GROUP(2, 1, BW_80),
233 VHT_GROUP(3, 1, BW_80),
234 VHT_GROUP(4, 1, BW_80),
Karl Beldan92082472014-10-21 10:38:38 +0200235};
Felix Fietkaua0497f92013-02-13 10:51:08 +0100236
Johannes Bergf6e1a732014-01-21 00:32:52 +0100237static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES] __read_mostly;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200238
Felix Fietkaua8566662013-04-22 16:14:42 +0200239static void
240minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi);
241
Felix Fietkauec8aa662010-05-13 16:48:03 +0200242/*
Karl Beldan92082472014-10-21 10:38:38 +0200243 * Some VHT MCSes are invalid (when Ndbps / Nes is not an integer)
244 * e.g for MCS9@20MHzx1Nss: Ndbps=8x52*(5/6) Nes=1
245 *
246 * Returns the valid mcs map for struct minstrel_mcs_group_data.supported
247 */
248static u16
249minstrel_get_valid_vht_rates(int bw, int nss, __le16 mcs_map)
250{
251 u16 mask = 0;
252
253 if (bw == BW_20) {
254 if (nss != 3 && nss != 6)
255 mask = BIT(9);
256 } else if (bw == BW_80) {
257 if (nss == 3 || nss == 7)
258 mask = BIT(6);
259 else if (nss == 6)
260 mask = BIT(9);
261 } else {
262 WARN_ON(bw != BW_40);
263 }
264
265 switch ((le16_to_cpu(mcs_map) >> (2 * (nss - 1))) & 3) {
266 case IEEE80211_VHT_MCS_SUPPORT_0_7:
267 mask |= 0x300;
268 break;
269 case IEEE80211_VHT_MCS_SUPPORT_0_8:
270 mask |= 0x200;
271 break;
272 case IEEE80211_VHT_MCS_SUPPORT_0_9:
273 break;
274 default:
275 mask = 0x3ff;
276 }
277
278 return 0x3ff & ~mask;
279}
280
281/*
Felix Fietkauec8aa662010-05-13 16:48:03 +0200282 * Look up an MCS group index based on mac80211 rate information
283 */
284static int
285minstrel_ht_get_group_idx(struct ieee80211_tx_rate *rate)
286{
Karl Beldancc61d8d2014-09-29 02:36:30 +0200287 return GROUP_IDX((rate->idx / 8) + 1,
Helmut Schaaa5f69d942011-11-14 15:28:20 +0100288 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
289 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200290}
291
Karl Beldan92082472014-10-21 10:38:38 +0200292static int
293minstrel_vht_get_group_idx(struct ieee80211_tx_rate *rate)
294{
295 return VHT_GROUP_IDX(ieee80211_rate_get_vht_nss(rate),
296 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
297 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH) +
298 2*!!(rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH));
299}
300
Felix Fietkaua0497f92013-02-13 10:51:08 +0100301static struct minstrel_rate_stats *
302minstrel_ht_get_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
303 struct ieee80211_tx_rate *rate)
304{
305 int group, idx;
306
307 if (rate->flags & IEEE80211_TX_RC_MCS) {
308 group = minstrel_ht_get_group_idx(rate);
Karl Beldan7a5e3fa2013-11-11 13:12:55 +0100309 idx = rate->idx % 8;
Karl Beldan92082472014-10-21 10:38:38 +0200310 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
311 group = minstrel_vht_get_group_idx(rate);
312 idx = ieee80211_rate_get_vht_mcs(rate);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100313 } else {
314 group = MINSTREL_CCK_GROUP;
315
316 for (idx = 0; idx < ARRAY_SIZE(mp->cck_rates); idx++)
317 if (rate->idx == mp->cck_rates[idx])
318 break;
319
320 /* short preamble */
Felix Fietkau972b66b2018-10-06 19:35:05 +0200321 if ((mi->supported[group] & BIT(idx + 4)) &&
322 (rate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE))
Felix Fietkaua0497f92013-02-13 10:51:08 +0100323 idx += 4;
324 }
325 return &mi->groups[group].rates[idx];
326}
327
Felix Fietkauec8aa662010-05-13 16:48:03 +0200328static inline struct minstrel_rate_stats *
329minstrel_get_ratestats(struct minstrel_ht_sta *mi, int index)
330{
331 return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES];
332}
333
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100334static unsigned int
335minstrel_ht_avg_ampdu_len(struct minstrel_ht_sta *mi)
336{
337 if (!mi->avg_ampdu_len)
338 return AVG_AMPDU_SIZE;
339
340 return MINSTREL_TRUNC(mi->avg_ampdu_len);
341}
342
Felix Fietkauec8aa662010-05-13 16:48:03 +0200343/*
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100344 * Return current throughput based on the average A-MPDU length, taking into
345 * account the expected number of retransmissions and their expected length
Felix Fietkauec8aa662010-05-13 16:48:03 +0200346 */
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100347int
Thomas Huehn50e55a82015-03-24 21:09:41 +0100348minstrel_ht_get_tp_avg(struct minstrel_ht_sta *mi, int group, int rate,
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200349 int prob_avg)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200350{
Felix Fietkaued97a132013-03-02 21:20:12 +0100351 unsigned int nsecs = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200352
Thomas Huehn91340732015-03-24 21:09:39 +0100353 /* do not account throughput if sucess prob is below 10% */
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200354 if (prob_avg < MINSTREL_FRAC(10, 100))
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100355 return 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200356
Felix Fietkaua0497f92013-02-13 10:51:08 +0100357 if (group != MINSTREL_CCK_GROUP)
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100358 nsecs = 1000 * mi->overhead / minstrel_ht_avg_ampdu_len(mi);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100359
Felix Fietkau202df502018-10-06 19:35:02 +0200360 nsecs += minstrel_mcs_groups[group].duration[rate] <<
361 minstrel_mcs_groups[group].shift;
Felix Fietkaued97a132013-03-02 21:20:12 +0100362
Thomas Huehn50e55a82015-03-24 21:09:41 +0100363 /*
364 * For the throughput calculation, limit the probability value to 90% to
365 * account for collision related packet error rate fluctuation
366 * (prob is scaled - see MINSTREL_FRAC above)
367 */
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200368 if (prob_avg > MINSTREL_FRAC(90, 100))
Thomas Huehn50e55a82015-03-24 21:09:41 +0100369 return MINSTREL_TRUNC(100000 * ((MINSTREL_FRAC(90, 100) * 1000)
370 / nsecs));
371 else
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200372 return MINSTREL_TRUNC(100000 * ((prob_avg * 1000) / nsecs));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200373}
374
375/*
Thomas Huehn59358392014-09-09 23:22:14 +0200376 * Find & sort topmost throughput rates
377 *
378 * If multiple rates provide equal throughput the sorting is based on their
379 * current success probability. Higher success probability is preferred among
380 * MCS groups, CCK rates do not provide aggregation and are therefore at last.
381 */
382static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200383minstrel_ht_sort_best_tp_rates(struct minstrel_ht_sta *mi, u16 index,
384 u16 *tp_list)
Thomas Huehn59358392014-09-09 23:22:14 +0200385{
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100386 int cur_group, cur_idx, cur_tp_avg, cur_prob;
387 int tmp_group, tmp_idx, tmp_tp_avg, tmp_prob;
Thomas Huehn59358392014-09-09 23:22:14 +0200388 int j = MAX_THR_RATES;
389
390 cur_group = index / MCS_GROUP_RATES;
391 cur_idx = index % MCS_GROUP_RATES;
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200392 cur_prob = mi->groups[cur_group].rates[cur_idx].prob_avg;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100393 cur_tp_avg = minstrel_ht_get_tp_avg(mi, cur_group, cur_idx, cur_prob);
Thomas Huehn59358392014-09-09 23:22:14 +0200394
Felix Fietkau280ba512014-11-18 22:35:31 +0100395 do {
Thomas Huehn59358392014-09-09 23:22:14 +0200396 tmp_group = tp_list[j - 1] / MCS_GROUP_RATES;
397 tmp_idx = tp_list[j - 1] % MCS_GROUP_RATES;
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200398 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_avg;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100399 tmp_tp_avg = minstrel_ht_get_tp_avg(mi, tmp_group, tmp_idx,
400 tmp_prob);
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100401 if (cur_tp_avg < tmp_tp_avg ||
402 (cur_tp_avg == tmp_tp_avg && cur_prob <= tmp_prob))
Felix Fietkau280ba512014-11-18 22:35:31 +0100403 break;
404 j--;
405 } while (j > 0);
Thomas Huehn59358392014-09-09 23:22:14 +0200406
407 if (j < MAX_THR_RATES - 1) {
408 memmove(&tp_list[j + 1], &tp_list[j], (sizeof(*tp_list) *
409 (MAX_THR_RATES - (j + 1))));
410 }
411 if (j < MAX_THR_RATES)
412 tp_list[j] = index;
413}
414
415/*
416 * Find and set the topmost probability rate per sta and per group
417 */
418static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200419minstrel_ht_set_best_prob_rate(struct minstrel_ht_sta *mi, u16 index)
Thomas Huehn59358392014-09-09 23:22:14 +0200420{
421 struct minstrel_mcs_group_data *mg;
Thomas Huehn91340732015-03-24 21:09:39 +0100422 struct minstrel_rate_stats *mrs;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100423 int tmp_group, tmp_idx, tmp_tp_avg, tmp_prob;
424 int max_tp_group, cur_tp_avg, cur_group, cur_idx;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100425 int max_gpr_group, max_gpr_idx;
426 int max_gpr_tp_avg, max_gpr_prob;
Thomas Huehn59358392014-09-09 23:22:14 +0200427
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100428 cur_group = index / MCS_GROUP_RATES;
429 cur_idx = index % MCS_GROUP_RATES;
Thomas Huehn59358392014-09-09 23:22:14 +0200430 mg = &mi->groups[index / MCS_GROUP_RATES];
Thomas Huehn91340732015-03-24 21:09:39 +0100431 mrs = &mg->rates[index % MCS_GROUP_RATES];
Thomas Huehn59358392014-09-09 23:22:14 +0200432
433 tmp_group = mi->max_prob_rate / MCS_GROUP_RATES;
434 tmp_idx = mi->max_prob_rate % MCS_GROUP_RATES;
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200435 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_avg;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100436 tmp_tp_avg = minstrel_ht_get_tp_avg(mi, tmp_group, tmp_idx, tmp_prob);
Thomas Huehn59358392014-09-09 23:22:14 +0200437
438 /* if max_tp_rate[0] is from MCS_GROUP max_prob_rate get selected from
439 * MCS_GROUP as well as CCK_GROUP rates do not allow aggregation */
440 max_tp_group = mi->max_tp_rate[0] / MCS_GROUP_RATES;
441 if((index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) &&
442 (max_tp_group != MINSTREL_CCK_GROUP))
443 return;
444
Konstantin Khlebnikovf84a9372016-01-29 11:35:12 +0300445 max_gpr_group = mg->max_group_prob_rate / MCS_GROUP_RATES;
446 max_gpr_idx = mg->max_group_prob_rate % MCS_GROUP_RATES;
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200447 max_gpr_prob = mi->groups[max_gpr_group].rates[max_gpr_idx].prob_avg;
Konstantin Khlebnikovf84a9372016-01-29 11:35:12 +0300448
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200449 if (mrs->prob_avg > MINSTREL_FRAC(75, 100)) {
Thomas Huehn50e55a82015-03-24 21:09:41 +0100450 cur_tp_avg = minstrel_ht_get_tp_avg(mi, cur_group, cur_idx,
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200451 mrs->prob_avg);
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100452 if (cur_tp_avg > tmp_tp_avg)
Thomas Huehn59358392014-09-09 23:22:14 +0200453 mi->max_prob_rate = index;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100454
Thomas Huehn50e55a82015-03-24 21:09:41 +0100455 max_gpr_tp_avg = minstrel_ht_get_tp_avg(mi, max_gpr_group,
456 max_gpr_idx,
457 max_gpr_prob);
458 if (cur_tp_avg > max_gpr_tp_avg)
Thomas Huehn59358392014-09-09 23:22:14 +0200459 mg->max_group_prob_rate = index;
460 } else {
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200461 if (mrs->prob_avg > tmp_prob)
Thomas Huehn59358392014-09-09 23:22:14 +0200462 mi->max_prob_rate = index;
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200463 if (mrs->prob_avg > max_gpr_prob)
Thomas Huehn59358392014-09-09 23:22:14 +0200464 mg->max_group_prob_rate = index;
465 }
466}
467
468
469/*
470 * Assign new rate set per sta and use CCK rates only if the fastest
471 * rate (max_tp_rate[0]) is from CCK group. This prohibits such sorted
472 * rate sets where MCS and CCK rates are mixed, because CCK rates can
473 * not use aggregation.
474 */
475static void
476minstrel_ht_assign_best_tp_rates(struct minstrel_ht_sta *mi,
Karl Beldand4d141c2014-10-20 15:45:59 +0200477 u16 tmp_mcs_tp_rate[MAX_THR_RATES],
478 u16 tmp_cck_tp_rate[MAX_THR_RATES])
Thomas Huehn59358392014-09-09 23:22:14 +0200479{
Thomas Huehn50e55a82015-03-24 21:09:41 +0100480 unsigned int tmp_group, tmp_idx, tmp_cck_tp, tmp_mcs_tp, tmp_prob;
Thomas Huehn59358392014-09-09 23:22:14 +0200481 int i;
482
483 tmp_group = tmp_cck_tp_rate[0] / MCS_GROUP_RATES;
484 tmp_idx = tmp_cck_tp_rate[0] % MCS_GROUP_RATES;
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200485 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_avg;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100486 tmp_cck_tp = minstrel_ht_get_tp_avg(mi, tmp_group, tmp_idx, tmp_prob);
Thomas Huehn59358392014-09-09 23:22:14 +0200487
488 tmp_group = tmp_mcs_tp_rate[0] / MCS_GROUP_RATES;
489 tmp_idx = tmp_mcs_tp_rate[0] % MCS_GROUP_RATES;
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200490 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_avg;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100491 tmp_mcs_tp = minstrel_ht_get_tp_avg(mi, tmp_group, tmp_idx, tmp_prob);
Thomas Huehn59358392014-09-09 23:22:14 +0200492
Felix Fietkau21f79812019-08-20 11:54:48 +0200493 if (tmp_cck_tp_rate && tmp_cck_tp > tmp_mcs_tp) {
Thomas Huehn59358392014-09-09 23:22:14 +0200494 for(i = 0; i < MAX_THR_RATES; i++) {
495 minstrel_ht_sort_best_tp_rates(mi, tmp_cck_tp_rate[i],
496 tmp_mcs_tp_rate);
497 }
498 }
499
500}
501
502/*
503 * Try to increase robustness of max_prob rate by decrease number of
504 * streams if possible.
505 */
506static inline void
507minstrel_ht_prob_rate_reduce_streams(struct minstrel_ht_sta *mi)
508{
509 struct minstrel_mcs_group_data *mg;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100510 int tmp_max_streams, group, tmp_idx, tmp_prob;
Thomas Huehn59358392014-09-09 23:22:14 +0200511 int tmp_tp = 0;
512
513 tmp_max_streams = minstrel_mcs_groups[mi->max_tp_rate[0] /
514 MCS_GROUP_RATES].streams;
515 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
516 mg = &mi->groups[group];
Felix Fietkau41d08582016-12-14 20:46:54 +0100517 if (!mi->supported[group] || group == MINSTREL_CCK_GROUP)
Thomas Huehn59358392014-09-09 23:22:14 +0200518 continue;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100519
520 tmp_idx = mg->max_group_prob_rate % MCS_GROUP_RATES;
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200521 tmp_prob = mi->groups[group].rates[tmp_idx].prob_avg;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100522
Thomas Huehn50e55a82015-03-24 21:09:41 +0100523 if (tmp_tp < minstrel_ht_get_tp_avg(mi, group, tmp_idx, tmp_prob) &&
Thomas Huehn59358392014-09-09 23:22:14 +0200524 (minstrel_mcs_groups[group].streams < tmp_max_streams)) {
525 mi->max_prob_rate = mg->max_group_prob_rate;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100526 tmp_tp = minstrel_ht_get_tp_avg(mi, group,
Thomas Huehn50e55a82015-03-24 21:09:41 +0100527 tmp_idx,
528 tmp_prob);
Thomas Huehn59358392014-09-09 23:22:14 +0200529 }
530 }
531}
532
Felix Fietkau48cb3952019-08-20 11:54:49 +0200533static inline int
534minstrel_get_duration(int index)
535{
536 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
537 unsigned int duration = group->duration[index % MCS_GROUP_RATES];
538 return duration << group->shift;
539}
540
541static bool
542minstrel_ht_probe_group(struct minstrel_ht_sta *mi, const struct mcs_group *tp_group,
543 int tp_idx, const struct mcs_group *group)
544{
545 if (group->bw < tp_group->bw)
546 return false;
547
548 if (group->streams == tp_group->streams)
549 return true;
550
551 if (tp_idx < 4 && group->streams == tp_group->streams - 1)
552 return true;
553
554 return group->streams == tp_group->streams + 1;
555}
556
557static void
558minstrel_ht_find_probe_rates(struct minstrel_ht_sta *mi, u16 *rates, int *n_rates,
559 bool faster_rate)
560{
561 const struct mcs_group *group, *tp_group;
562 int i, g, max_dur;
563 int tp_idx;
564
565 tp_group = &minstrel_mcs_groups[mi->max_tp_rate[0] / MCS_GROUP_RATES];
566 tp_idx = mi->max_tp_rate[0] % MCS_GROUP_RATES;
567
568 max_dur = minstrel_get_duration(mi->max_tp_rate[0]);
569 if (faster_rate)
570 max_dur -= max_dur / 16;
571
572 for (g = 0; g < MINSTREL_GROUPS_NB; g++) {
573 u16 supported = mi->supported[g];
574
575 if (!supported)
576 continue;
577
578 group = &minstrel_mcs_groups[g];
579 if (!minstrel_ht_probe_group(mi, tp_group, tp_idx, group))
580 continue;
581
582 for (i = 0; supported; supported >>= 1, i++) {
583 int idx;
584
585 if (!(supported & 1))
586 continue;
587
588 if ((group->duration[i] << group->shift) > max_dur)
589 continue;
590
591 idx = g * MCS_GROUP_RATES + i;
592 if (idx == mi->max_tp_rate[0])
593 continue;
594
595 rates[(*n_rates)++] = idx;
596 break;
597 }
598 }
599}
600
601static void
602minstrel_ht_rate_sample_switch(struct minstrel_priv *mp,
603 struct minstrel_ht_sta *mi)
604{
605 struct minstrel_rate_stats *mrs;
606 u16 rates[MINSTREL_GROUPS_NB];
607 int n_rates = 0;
608 int probe_rate = 0;
609 bool faster_rate;
610 int i;
611 u8 random;
612
613 /*
614 * Use rate switching instead of probing packets for devices with
615 * little control over retry fallback behavior
616 */
617 if (mp->hw->max_rates > 1)
618 return;
619
620 /*
621 * If the current EWMA prob is >75%, look for a rate that's 6.25%
622 * faster than the max tp rate.
623 * If that fails, look again for a rate that is at least as fast
624 */
625 mrs = minstrel_get_ratestats(mi, mi->max_tp_rate[0]);
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200626 faster_rate = mrs->prob_avg > MINSTREL_FRAC(75, 100);
Felix Fietkau48cb3952019-08-20 11:54:49 +0200627 minstrel_ht_find_probe_rates(mi, rates, &n_rates, faster_rate);
628 if (!n_rates && faster_rate)
629 minstrel_ht_find_probe_rates(mi, rates, &n_rates, false);
630
631 /* If no suitable rate was found, try to pick the next one in the group */
632 if (!n_rates) {
633 int g_idx = mi->max_tp_rate[0] / MCS_GROUP_RATES;
634 u16 supported = mi->supported[g_idx];
635
636 supported >>= mi->max_tp_rate[0] % MCS_GROUP_RATES;
Colin Ian Kingb26af932019-08-22 13:20:34 +0100637 for (i = 0; supported; supported >>= 1, i++) {
Felix Fietkau48cb3952019-08-20 11:54:49 +0200638 if (!(supported & 1))
639 continue;
640
641 probe_rate = mi->max_tp_rate[0] + i;
642 goto out;
643 }
644
645 return;
646 }
647
648 i = 0;
649 if (n_rates > 1) {
650 random = prandom_u32();
651 i = random % n_rates;
652 }
653 probe_rate = rates[i];
654
655out:
656 mi->sample_rate = probe_rate;
657 mi->sample_mode = MINSTREL_SAMPLE_ACTIVE;
658}
659
Thomas Huehn59358392014-09-09 23:22:14 +0200660/*
Felix Fietkauec8aa662010-05-13 16:48:03 +0200661 * Update rate statistics and select new primary rates
662 *
663 * Rules for rate selection:
664 * - max_prob_rate must use only one stream, as a tradeoff between delivery
665 * probability and throughput during strong fluctuations
Thomas Huehn59358392014-09-09 23:22:14 +0200666 * - as long as the max prob rate has a probability of more than 75%, pick
Felix Fietkauec8aa662010-05-13 16:48:03 +0200667 * higher throughput rates, even if the probablity is a bit lower
668 */
669static void
Felix Fietkau48cb3952019-08-20 11:54:49 +0200670minstrel_ht_update_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
671 bool sample)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200672{
673 struct minstrel_mcs_group_data *mg;
Thomas Huehn91340732015-03-24 21:09:39 +0100674 struct minstrel_rate_stats *mrs;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100675 int group, i, j, cur_prob;
Karl Beldand4d141c2014-10-20 15:45:59 +0200676 u16 tmp_mcs_tp_rate[MAX_THR_RATES], tmp_group_tp_rate[MAX_THR_RATES];
677 u16 tmp_cck_tp_rate[MAX_THR_RATES], index;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200678
Felix Fietkau48cb3952019-08-20 11:54:49 +0200679 mi->sample_mode = MINSTREL_SAMPLE_IDLE;
680
681 if (sample) {
682 mi->total_packets_cur = mi->total_packets -
683 mi->total_packets_last;
684 mi->total_packets_last = mi->total_packets;
685 }
686 if (!mp->sample_switch)
687 sample = false;
688 if (mi->total_packets_cur < SAMPLE_SWITCH_THR && mp->sample_switch != 1)
689 sample = false;
690
Felix Fietkauec8aa662010-05-13 16:48:03 +0200691 if (mi->ampdu_packets > 0) {
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100692 if (!ieee80211_hw_check(mp->hw, TX_STATUS_NO_AMPDU_LEN))
693 mi->avg_ampdu_len = minstrel_ewma(mi->avg_ampdu_len,
694 MINSTREL_FRAC(mi->ampdu_len, mi->ampdu_packets),
695 EWMA_LEVEL);
696 else
697 mi->avg_ampdu_len = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200698 mi->ampdu_len = 0;
699 mi->ampdu_packets = 0;
700 }
701
702 mi->sample_slow = 0;
703 mi->sample_count = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200704
Felix Fietkau21f79812019-08-20 11:54:48 +0200705 memset(tmp_mcs_tp_rate, 0, sizeof(tmp_mcs_tp_rate));
706 memset(tmp_cck_tp_rate, 0, sizeof(tmp_cck_tp_rate));
707 if (mi->supported[MINSTREL_CCK_GROUP])
708 for (j = 0; j < ARRAY_SIZE(tmp_cck_tp_rate); j++)
709 tmp_cck_tp_rate[j] = MINSTREL_CCK_GROUP * MCS_GROUP_RATES;
710
711 if (mi->supported[MINSTREL_VHT_GROUP_0])
712 index = MINSTREL_VHT_GROUP_0 * MCS_GROUP_RATES;
713 else
714 index = MINSTREL_HT_GROUP_0 * MCS_GROUP_RATES;
715
716 for (j = 0; j < ARRAY_SIZE(tmp_mcs_tp_rate); j++)
717 tmp_mcs_tp_rate[j] = index;
Karl Beldanc2eb5b02013-04-18 14:26:20 +0200718
Thomas Huehn59358392014-09-09 23:22:14 +0200719 /* Find best rate sets within all MCS groups*/
720 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200721
722 mg = &mi->groups[group];
Felix Fietkau41d08582016-12-14 20:46:54 +0100723 if (!mi->supported[group])
Felix Fietkauec8aa662010-05-13 16:48:03 +0200724 continue;
725
Felix Fietkauec8aa662010-05-13 16:48:03 +0200726 mi->sample_count++;
727
Thomas Huehn59358392014-09-09 23:22:14 +0200728 /* (re)Initialize group rate indexes */
729 for(j = 0; j < MAX_THR_RATES; j++)
Felix Fietkau56dd9182019-08-20 11:54:46 +0200730 tmp_group_tp_rate[j] = MCS_GROUP_RATES * group;
Thomas Huehn59358392014-09-09 23:22:14 +0200731
Felix Fietkauec8aa662010-05-13 16:48:03 +0200732 for (i = 0; i < MCS_GROUP_RATES; i++) {
Felix Fietkau41d08582016-12-14 20:46:54 +0100733 if (!(mi->supported[group] & BIT(i)))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200734 continue;
735
Karl Beldan351df092013-11-13 23:07:07 +0100736 index = MCS_GROUP_RATES * group + i;
737
Thomas Huehn91340732015-03-24 21:09:39 +0100738 mrs = &mg->rates[i];
739 mrs->retry_updated = false;
Felix Fietkaub1103d22019-10-08 19:11:38 +0200740 minstrel_calc_rate_stats(mp, mrs);
Felix Fietkau5f63afe2019-10-08 19:11:39 +0200741 cur_prob = mrs->prob_avg;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200742
Thomas Huehn50e55a82015-03-24 21:09:41 +0100743 if (minstrel_ht_get_tp_avg(mi, group, i, cur_prob) == 0)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200744 continue;
745
Thomas Huehn59358392014-09-09 23:22:14 +0200746 /* Find max throughput rate set */
747 if (group != MINSTREL_CCK_GROUP) {
748 minstrel_ht_sort_best_tp_rates(mi, index,
749 tmp_mcs_tp_rate);
750 } else if (group == MINSTREL_CCK_GROUP) {
751 minstrel_ht_sort_best_tp_rates(mi, index,
752 tmp_cck_tp_rate);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200753 }
754
Thomas Huehn59358392014-09-09 23:22:14 +0200755 /* Find max throughput rate set within a group */
756 minstrel_ht_sort_best_tp_rates(mi, index,
757 tmp_group_tp_rate);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200758
Thomas Huehn59358392014-09-09 23:22:14 +0200759 /* Find max probability rate per group and global */
760 minstrel_ht_set_best_prob_rate(mi, index);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200761 }
Thomas Huehn59358392014-09-09 23:22:14 +0200762
763 memcpy(mg->max_group_tp_rate, tmp_group_tp_rate,
764 sizeof(mg->max_group_tp_rate));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200765 }
766
Thomas Huehn59358392014-09-09 23:22:14 +0200767 /* Assign new rate set per sta */
768 minstrel_ht_assign_best_tp_rates(mi, tmp_mcs_tp_rate, tmp_cck_tp_rate);
769 memcpy(mi->max_tp_rate, tmp_mcs_tp_rate, sizeof(mi->max_tp_rate));
770
771 /* Try to increase robustness of max_prob_rate*/
772 minstrel_ht_prob_rate_reduce_streams(mi);
773
Felix Fietkau96d4ac32013-03-02 21:20:14 +0100774 /* try to sample all available rates during each interval */
775 mi->sample_count *= 8;
Felix Fietkaub1103d22019-10-08 19:11:38 +0200776 if (mp->new_avg)
777 mi->sample_count /= 2;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200778
Felix Fietkau48cb3952019-08-20 11:54:49 +0200779 if (sample)
780 minstrel_ht_rate_sample_switch(mp, mi);
781
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +0200782#ifdef CONFIG_MAC80211_DEBUGFS
783 /* use fixed index if set */
784 if (mp->fixed_rate_idx != -1) {
Thomas Huehn59358392014-09-09 23:22:14 +0200785 for (i = 0; i < 4; i++)
786 mi->max_tp_rate[i] = mp->fixed_rate_idx;
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +0200787 mi->max_prob_rate = mp->fixed_rate_idx;
Felix Fietkau48cb3952019-08-20 11:54:49 +0200788 mi->sample_mode = MINSTREL_SAMPLE_IDLE;
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +0200789 }
790#endif
Felix Fietkaua299c6d2013-03-02 21:20:13 +0100791
Thomas Huehn59358392014-09-09 23:22:14 +0200792 /* Reset update timer */
Thomas Huehn91340732015-03-24 21:09:39 +0100793 mi->last_stats_update = jiffies;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200794}
795
796static bool
Felix Fietkaua0497f92013-02-13 10:51:08 +0100797minstrel_ht_txstat_valid(struct minstrel_priv *mp, struct ieee80211_tx_rate *rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200798{
Helmut Schaab79296b2011-11-14 15:28:19 +0100799 if (rate->idx < 0)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200800 return false;
801
Helmut Schaab79296b2011-11-14 15:28:19 +0100802 if (!rate->count)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200803 return false;
804
Karl Beldan92082472014-10-21 10:38:38 +0200805 if (rate->flags & IEEE80211_TX_RC_MCS ||
806 rate->flags & IEEE80211_TX_RC_VHT_MCS)
Felix Fietkaua0497f92013-02-13 10:51:08 +0100807 return true;
808
809 return rate->idx == mp->cck_rates[0] ||
810 rate->idx == mp->cck_rates[1] ||
811 rate->idx == mp->cck_rates[2] ||
812 rate->idx == mp->cck_rates[3];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200813}
814
815static void
Thomas Huehn91340732015-03-24 21:09:39 +0100816minstrel_set_next_sample_idx(struct minstrel_ht_sta *mi)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200817{
818 struct minstrel_mcs_group_data *mg;
819
820 for (;;) {
821 mi->sample_group++;
822 mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups);
823 mg = &mi->groups[mi->sample_group];
824
Felix Fietkau41d08582016-12-14 20:46:54 +0100825 if (!mi->supported[mi->sample_group])
Felix Fietkauec8aa662010-05-13 16:48:03 +0200826 continue;
827
828 if (++mg->index >= MCS_GROUP_RATES) {
829 mg->index = 0;
830 if (++mg->column >= ARRAY_SIZE(sample_table))
831 mg->column = 0;
832 }
833 break;
834 }
835}
836
837static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200838minstrel_downgrade_rate(struct minstrel_ht_sta *mi, u16 *idx, bool primary)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200839{
840 int group, orig_group;
841
842 orig_group = group = *idx / MCS_GROUP_RATES;
843 while (group > 0) {
844 group--;
845
Felix Fietkau41d08582016-12-14 20:46:54 +0100846 if (!mi->supported[group])
Felix Fietkauec8aa662010-05-13 16:48:03 +0200847 continue;
848
849 if (minstrel_mcs_groups[group].streams >
850 minstrel_mcs_groups[orig_group].streams)
851 continue;
852
853 if (primary)
Thomas Huehn59358392014-09-09 23:22:14 +0200854 *idx = mi->groups[group].max_group_tp_rate[0];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200855 else
Thomas Huehn59358392014-09-09 23:22:14 +0200856 *idx = mi->groups[group].max_group_tp_rate[1];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200857 break;
858 }
859}
860
861static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100862minstrel_aggr_check(struct ieee80211_sta *pubsta, struct sk_buff *skb)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200863{
864 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
865 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
866 u16 tid;
867
Felix Fietkau75769c82014-11-16 00:27:55 +0100868 if (skb_get_queue_mapping(skb) == IEEE80211_AC_VO)
869 return;
870
Felix Fietkauec8aa662010-05-13 16:48:03 +0200871 if (unlikely(!ieee80211_is_data_qos(hdr->frame_control)))
872 return;
873
Johannes Berge133fae2013-08-22 08:36:41 +0200874 if (unlikely(skb->protocol == cpu_to_be16(ETH_P_PAE)))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200875 return;
876
Sara Sharona1f2ba04c2018-02-19 14:48:40 +0200877 tid = ieee80211_get_tid(hdr);
Johannes Berga622ab72010-06-10 10:21:39 +0200878 if (likely(sta->ampdu_mlme.tid_tx[tid]))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200879 return;
880
Felix Fietkau7a36b932016-02-18 19:49:18 +0100881 ieee80211_start_tx_ba_session(pubsta, tid, 0);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200882}
883
884static void
885minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
Felix Fietkau18fb84d2017-04-26 17:11:35 +0200886 void *priv_sta, struct ieee80211_tx_status *st)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200887{
Felix Fietkau18fb84d2017-04-26 17:11:35 +0200888 struct ieee80211_tx_info *info = st->info;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200889 struct minstrel_ht_sta_priv *msp = priv_sta;
890 struct minstrel_ht_sta *mi = &msp->ht;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200891 struct ieee80211_tx_rate *ar = info->status.rates;
Felix Fietkau48cb3952019-08-20 11:54:49 +0200892 struct minstrel_rate_stats *rate, *rate2, *rate_sample = NULL;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200893 struct minstrel_priv *mp = priv;
Felix Fietkaub1103d22019-10-08 19:11:38 +0200894 u32 update_interval = mp->update_interval / 2;
Felix Fietkaua8566662013-04-22 16:14:42 +0200895 bool last, update = false;
Felix Fietkau48cb3952019-08-20 11:54:49 +0200896 bool sample_status = false;
Johannes Berga544ab72012-11-13 21:36:27 +0100897 int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200898
899 if (!msp->is_ht)
Felix Fietkau18fb84d2017-04-26 17:11:35 +0200900 return mac80211_minstrel.tx_status_ext(priv, sband,
901 &msp->legacy, st);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200902
Felix Fietkau48cb3952019-08-20 11:54:49 +0200903
Felix Fietkauec8aa662010-05-13 16:48:03 +0200904 /* This packet was aggregated but doesn't carry status info */
905 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
906 !(info->flags & IEEE80211_TX_STAT_AMPDU))
907 return;
908
Björn Smedman15d46f32010-10-10 22:14:25 +0200909 if (!(info->flags & IEEE80211_TX_STAT_AMPDU)) {
910 info->status.ampdu_ack_len =
911 (info->flags & IEEE80211_TX_STAT_ACK ? 1 : 0);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200912 info->status.ampdu_len = 1;
913 }
914
915 mi->ampdu_packets++;
916 mi->ampdu_len += info->status.ampdu_len;
917
918 if (!mi->sample_wait && !mi->sample_tries && mi->sample_count > 0) {
Felix Fietkau77f7ffd2019-01-16 22:32:12 +0100919 int avg_ampdu_len = minstrel_ht_avg_ampdu_len(mi);
920
921 mi->sample_wait = 16 + 2 * avg_ampdu_len;
Felix Fietkau52c00a32013-03-05 14:20:19 +0100922 mi->sample_tries = 1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200923 mi->sample_count--;
924 }
925
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800926 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200927 mi->sample_packets += info->status.ampdu_len;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200928
Felix Fietkau48cb3952019-08-20 11:54:49 +0200929 if (mi->sample_mode != MINSTREL_SAMPLE_IDLE)
930 rate_sample = minstrel_get_ratestats(mi, mi->sample_rate);
931
Felix Fietkaua0497f92013-02-13 10:51:08 +0100932 last = !minstrel_ht_txstat_valid(mp, &ar[0]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200933 for (i = 0; !last; i++) {
934 last = (i == IEEE80211_TX_MAX_RATES - 1) ||
Felix Fietkaua0497f92013-02-13 10:51:08 +0100935 !minstrel_ht_txstat_valid(mp, &ar[i + 1]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200936
Felix Fietkaua0497f92013-02-13 10:51:08 +0100937 rate = minstrel_ht_get_stats(mp, mi, &ar[i]);
Felix Fietkau48cb3952019-08-20 11:54:49 +0200938 if (rate == rate_sample)
939 sample_status = true;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200940
Björn Smedman15d46f32010-10-10 22:14:25 +0200941 if (last)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200942 rate->success += info->status.ampdu_ack_len;
943
944 rate->attempts += ar[i].count * info->status.ampdu_len;
945 }
946
Felix Fietkau48cb3952019-08-20 11:54:49 +0200947 switch (mi->sample_mode) {
948 case MINSTREL_SAMPLE_IDLE:
Felix Fietkaub1103d22019-10-08 19:11:38 +0200949 if (mp->new_avg &&
950 (mp->hw->max_rates > 1 ||
951 mi->total_packets_cur < SAMPLE_SWITCH_THR))
952 update_interval /= 2;
Felix Fietkau48cb3952019-08-20 11:54:49 +0200953 break;
954
955 case MINSTREL_SAMPLE_ACTIVE:
956 if (!sample_status)
957 break;
958
959 mi->sample_mode = MINSTREL_SAMPLE_PENDING;
Felix Fietkaua8566662013-04-22 16:14:42 +0200960 update = true;
Felix Fietkau48cb3952019-08-20 11:54:49 +0200961 break;
962
963 case MINSTREL_SAMPLE_PENDING:
964 if (sample_status)
965 break;
966
967 update = true;
968 minstrel_ht_update_stats(mp, mi, false);
969 break;
Felix Fietkaua8566662013-04-22 16:14:42 +0200970 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200971
Felix Fietkau48cb3952019-08-20 11:54:49 +0200972
973 if (mp->hw->max_rates > 1) {
974 /*
975 * check for sudden death of spatial multiplexing,
976 * downgrade to a lower number of streams if necessary.
977 */
978 rate = minstrel_get_ratestats(mi, mi->max_tp_rate[0]);
979 if (rate->attempts > 30 &&
Felix Fietkau8f2f4952019-10-08 19:11:37 +0200980 rate->success < rate->attempts / 4) {
Felix Fietkau48cb3952019-08-20 11:54:49 +0200981 minstrel_downgrade_rate(mi, &mi->max_tp_rate[0], true);
982 update = true;
983 }
984
985 rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate[1]);
986 if (rate2->attempts > 30 &&
Felix Fietkau8f2f4952019-10-08 19:11:37 +0200987 rate2->success < rate2->attempts / 4) {
Felix Fietkau48cb3952019-08-20 11:54:49 +0200988 minstrel_downgrade_rate(mi, &mi->max_tp_rate[1], false);
989 update = true;
990 }
Felix Fietkaua8566662013-04-22 16:14:42 +0200991 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200992
Felix Fietkaub1103d22019-10-08 19:11:38 +0200993 if (time_after(jiffies, mi->last_stats_update + update_interval)) {
Felix Fietkaua8566662013-04-22 16:14:42 +0200994 update = true;
Felix Fietkau48cb3952019-08-20 11:54:49 +0200995 minstrel_ht_update_stats(mp, mi, true);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200996 }
Felix Fietkaua8566662013-04-22 16:14:42 +0200997
998 if (update)
999 minstrel_ht_update_rates(mp, mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001000}
1001
1002static void
1003minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
1004 int index)
1005{
Thomas Huehn91340732015-03-24 21:09:39 +01001006 struct minstrel_rate_stats *mrs;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001007 unsigned int tx_time, tx_time_rtscts, tx_time_data;
1008 unsigned int cw = mp->cw_min;
Daniel Halperin8fddddf2011-05-10 19:00:45 -07001009 unsigned int ctime = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001010 unsigned int t_slot = 9; /* FIXME */
Felix Fietkau77f7ffd2019-01-16 22:32:12 +01001011 unsigned int ampdu_len = minstrel_ht_avg_ampdu_len(mi);
Felix Fietkaua0497f92013-02-13 10:51:08 +01001012 unsigned int overhead = 0, overhead_rtscts = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001013
Thomas Huehn91340732015-03-24 21:09:39 +01001014 mrs = minstrel_get_ratestats(mi, index);
Felix Fietkau5f63afe2019-10-08 19:11:39 +02001015 if (mrs->prob_avg < MINSTREL_FRAC(1, 10)) {
Thomas Huehn91340732015-03-24 21:09:39 +01001016 mrs->retry_count = 1;
1017 mrs->retry_count_rtscts = 1;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001018 return;
1019 }
1020
Thomas Huehn91340732015-03-24 21:09:39 +01001021 mrs->retry_count = 2;
1022 mrs->retry_count_rtscts = 2;
1023 mrs->retry_updated = true;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001024
Felix Fietkau202df502018-10-06 19:35:02 +02001025 tx_time_data = minstrel_get_duration(index) * ampdu_len / 1000;
Daniel Halperin8fddddf2011-05-10 19:00:45 -07001026
1027 /* Contention time for first 2 tries */
1028 ctime = (t_slot * cw) >> 1;
1029 cw = min((cw << 1) | 1, mp->cw_max);
1030 ctime += (t_slot * cw) >> 1;
1031 cw = min((cw << 1) | 1, mp->cw_max);
1032
Felix Fietkaua0497f92013-02-13 10:51:08 +01001033 if (index / MCS_GROUP_RATES != MINSTREL_CCK_GROUP) {
1034 overhead = mi->overhead;
1035 overhead_rtscts = mi->overhead_rtscts;
1036 }
1037
Daniel Halperin8fddddf2011-05-10 19:00:45 -07001038 /* Total TX time for data and Contention after first 2 tries */
Felix Fietkaua0497f92013-02-13 10:51:08 +01001039 tx_time = ctime + 2 * (overhead + tx_time_data);
1040 tx_time_rtscts = ctime + 2 * (overhead_rtscts + tx_time_data);
Daniel Halperin8fddddf2011-05-10 19:00:45 -07001041
1042 /* See how many more tries we can fit inside segment size */
Felix Fietkauec8aa662010-05-13 16:48:03 +02001043 do {
Daniel Halperin8fddddf2011-05-10 19:00:45 -07001044 /* Contention time for this try */
1045 ctime = (t_slot * cw) >> 1;
1046 cw = min((cw << 1) | 1, mp->cw_max);
1047
1048 /* Total TX time after this try */
Felix Fietkaua0497f92013-02-13 10:51:08 +01001049 tx_time += ctime + overhead + tx_time_data;
1050 tx_time_rtscts += ctime + overhead_rtscts + tx_time_data;
Daniel Halperin8fddddf2011-05-10 19:00:45 -07001051
Felix Fietkauec8aa662010-05-13 16:48:03 +02001052 if (tx_time_rtscts < mp->segment_size)
Thomas Huehn91340732015-03-24 21:09:39 +01001053 mrs->retry_count_rtscts++;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001054 } while ((tx_time < mp->segment_size) &&
Thomas Huehn91340732015-03-24 21:09:39 +01001055 (++mrs->retry_count < mp->max_retry));
Felix Fietkauec8aa662010-05-13 16:48:03 +02001056}
1057
1058
1059static void
1060minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
Felix Fietkaua8566662013-04-22 16:14:42 +02001061 struct ieee80211_sta_rates *ratetbl, int offset, int index)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001062{
1063 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
Thomas Huehn91340732015-03-24 21:09:39 +01001064 struct minstrel_rate_stats *mrs;
Felix Fietkaua8566662013-04-22 16:14:42 +02001065 u8 idx;
Karl Beldan3ec373c2014-10-20 15:46:01 +02001066 u16 flags = group->flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001067
Thomas Huehn91340732015-03-24 21:09:39 +01001068 mrs = minstrel_get_ratestats(mi, index);
1069 if (!mrs->retry_updated)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001070 minstrel_calc_retransmit(mp, mi, index);
1071
Felix Fietkau5f63afe2019-10-08 19:11:39 +02001072 if (mrs->prob_avg < MINSTREL_FRAC(20, 100) || !mrs->retry_count) {
Felix Fietkaua8566662013-04-22 16:14:42 +02001073 ratetbl->rate[offset].count = 2;
1074 ratetbl->rate[offset].count_rts = 2;
1075 ratetbl->rate[offset].count_cts = 2;
1076 } else {
Thomas Huehn91340732015-03-24 21:09:39 +01001077 ratetbl->rate[offset].count = mrs->retry_count;
1078 ratetbl->rate[offset].count_cts = mrs->retry_count;
1079 ratetbl->rate[offset].count_rts = mrs->retry_count_rtscts;
Felix Fietkaua0497f92013-02-13 10:51:08 +01001080 }
1081
Karl Beldan3ec373c2014-10-20 15:46:01 +02001082 if (index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP)
Felix Fietkaua8566662013-04-22 16:14:42 +02001083 idx = mp->cck_rates[index % ARRAY_SIZE(mp->cck_rates)];
Karl Beldan92082472014-10-21 10:38:38 +02001084 else if (flags & IEEE80211_TX_RC_VHT_MCS)
1085 idx = ((group->streams - 1) << 4) |
1086 ((index % MCS_GROUP_RATES) & 0xF);
Karl Beldan3ec373c2014-10-20 15:46:01 +02001087 else
Karl Beldan7a5e3fa2013-11-11 13:12:55 +01001088 idx = index % MCS_GROUP_RATES + (group->streams - 1) * 8;
Felix Fietkaua8566662013-04-22 16:14:42 +02001089
Krishna Chaitanyaa3ebb4e2015-06-12 02:34:52 +05301090 /* enable RTS/CTS if needed:
1091 * - if station is in dynamic SMPS (and streams > 1)
1092 * - for fallback rates, to increase chances of getting through
1093 */
Felix Fietkauc36dd3e2016-02-24 12:07:17 +01001094 if (offset > 0 ||
Krishna Chaitanyaa3ebb4e2015-06-12 02:34:52 +05301095 (mi->sta->smps_mode == IEEE80211_SMPS_DYNAMIC &&
1096 group->streams > 1)) {
Felix Fietkaua8566662013-04-22 16:14:42 +02001097 ratetbl->rate[offset].count = ratetbl->rate[offset].count_rts;
1098 flags |= IEEE80211_TX_RC_USE_RTS_CTS;
1099 }
1100
1101 ratetbl->rate[offset].idx = idx;
1102 ratetbl->rate[offset].flags = flags;
1103}
1104
Felix Fietkau918fe042016-03-03 22:59:01 +01001105static inline int
Felix Fietkau5f63afe2019-10-08 19:11:39 +02001106minstrel_ht_get_prob_avg(struct minstrel_ht_sta *mi, int rate)
Felix Fietkau918fe042016-03-03 22:59:01 +01001107{
1108 int group = rate / MCS_GROUP_RATES;
1109 rate %= MCS_GROUP_RATES;
Felix Fietkau5f63afe2019-10-08 19:11:39 +02001110 return mi->groups[group].rates[rate].prob_avg;
Felix Fietkau918fe042016-03-03 22:59:01 +01001111}
1112
1113static int
1114minstrel_ht_get_max_amsdu_len(struct minstrel_ht_sta *mi)
1115{
1116 int group = mi->max_prob_rate / MCS_GROUP_RATES;
1117 const struct mcs_group *g = &minstrel_mcs_groups[group];
1118 int rate = mi->max_prob_rate % MCS_GROUP_RATES;
Felix Fietkau202df502018-10-06 19:35:02 +02001119 unsigned int duration;
Felix Fietkau918fe042016-03-03 22:59:01 +01001120
1121 /* Disable A-MSDU if max_prob_rate is bad */
Felix Fietkau5f63afe2019-10-08 19:11:39 +02001122 if (mi->groups[group].rates[rate].prob_avg < MINSTREL_FRAC(50, 100))
Felix Fietkau918fe042016-03-03 22:59:01 +01001123 return 1;
1124
Felix Fietkau202df502018-10-06 19:35:02 +02001125 duration = g->duration[rate];
1126 duration <<= g->shift;
1127
Felix Fietkau918fe042016-03-03 22:59:01 +01001128 /* If the rate is slower than single-stream MCS1, make A-MSDU limit small */
Felix Fietkau202df502018-10-06 19:35:02 +02001129 if (duration > MCS_DURATION(1, 0, 52))
Felix Fietkau918fe042016-03-03 22:59:01 +01001130 return 500;
1131
1132 /*
1133 * If the rate is slower than single-stream MCS4, limit A-MSDU to usual
1134 * data packet size
1135 */
Felix Fietkau202df502018-10-06 19:35:02 +02001136 if (duration > MCS_DURATION(1, 0, 104))
Felix Fietkau918fe042016-03-03 22:59:01 +01001137 return 1600;
1138
1139 /*
1140 * If the rate is slower than single-stream MCS7, or if the max throughput
1141 * rate success probability is less than 75%, limit A-MSDU to twice the usual
1142 * data packet size
1143 */
Felix Fietkau202df502018-10-06 19:35:02 +02001144 if (duration > MCS_DURATION(1, 0, 260) ||
Felix Fietkau5f63afe2019-10-08 19:11:39 +02001145 (minstrel_ht_get_prob_avg(mi, mi->max_tp_rate[0]) <
Felix Fietkau918fe042016-03-03 22:59:01 +01001146 MINSTREL_FRAC(75, 100)))
1147 return 3200;
1148
1149 /*
1150 * HT A-MPDU limits maximum MPDU size under BA agreement to 4095 bytes.
1151 * Since aggregation sessions are started/stopped without txq flush, use
1152 * the limit here to avoid the complexity of having to de-aggregate
1153 * packets in the queue.
1154 */
1155 if (!mi->sta->vht_cap.vht_supported)
1156 return IEEE80211_MAX_MPDU_LEN_HT_BA;
1157
1158 /* unlimited */
1159 return 0;
1160}
1161
Felix Fietkaua8566662013-04-22 16:14:42 +02001162static void
1163minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
1164{
1165 struct ieee80211_sta_rates *rates;
Felix Fietkau48cb3952019-08-20 11:54:49 +02001166 u16 first_rate = mi->max_tp_rate[0];
Felix Fietkaua8566662013-04-22 16:14:42 +02001167 int i = 0;
1168
Felix Fietkau48cb3952019-08-20 11:54:49 +02001169 if (mi->sample_mode == MINSTREL_SAMPLE_ACTIVE)
1170 first_rate = mi->sample_rate;
1171
Felix Fietkaua8566662013-04-22 16:14:42 +02001172 rates = kzalloc(sizeof(*rates), GFP_ATOMIC);
1173 if (!rates)
1174 return;
1175
Thomas Huehn59358392014-09-09 23:22:14 +02001176 /* Start with max_tp_rate[0] */
Felix Fietkau48cb3952019-08-20 11:54:49 +02001177 minstrel_ht_set_rate(mp, mi, rates, i++, first_rate);
Felix Fietkaua8566662013-04-22 16:14:42 +02001178
1179 if (mp->hw->max_rates >= 3) {
Thomas Huehn59358392014-09-09 23:22:14 +02001180 /* At least 3 tx rates supported, use max_tp_rate[1] next */
1181 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_tp_rate[1]);
Felix Fietkaua8566662013-04-22 16:14:42 +02001182 }
1183
1184 if (mp->hw->max_rates >= 2) {
Felix Fietkaua8566662013-04-22 16:14:42 +02001185 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_prob_rate);
1186 }
1187
Felix Fietkau918fe042016-03-03 22:59:01 +01001188 mi->sta->max_rc_amsdu_len = minstrel_ht_get_max_amsdu_len(mi);
Felix Fietkaua8566662013-04-22 16:14:42 +02001189 rates->rate[i].idx = -1;
1190 rate_control_set_rates(mp->hw, mi->sta, rates);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001191}
1192
Felix Fietkauec8aa662010-05-13 16:48:03 +02001193static int
1194minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
1195{
Thomas Huehn91340732015-03-24 21:09:39 +01001196 struct minstrel_rate_stats *mrs;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001197 struct minstrel_mcs_group_data *mg;
Thomas Huehn59358392014-09-09 23:22:14 +02001198 unsigned int sample_dur, sample_group, cur_max_tp_streams;
Felix Fietkau06171e92016-03-03 23:25:42 +01001199 int tp_rate1, tp_rate2;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001200 int sample_idx = 0;
1201
Felix Fietkau48cb3952019-08-20 11:54:49 +02001202 if (mp->hw->max_rates == 1 && mp->sample_switch &&
1203 (mi->total_packets_cur >= SAMPLE_SWITCH_THR ||
1204 mp->sample_switch == 1))
1205 return -1;
1206
Felix Fietkauec8aa662010-05-13 16:48:03 +02001207 if (mi->sample_wait > 0) {
1208 mi->sample_wait--;
1209 return -1;
1210 }
1211
1212 if (!mi->sample_tries)
1213 return -1;
1214
Felix Fietkau965237a2013-03-03 12:49:51 +01001215 sample_group = mi->sample_group;
Karl Beldanf12140c2013-11-11 13:10:49 +01001216 mg = &mi->groups[sample_group];
1217 sample_idx = sample_table[mg->column][mg->index];
Thomas Huehn91340732015-03-24 21:09:39 +01001218 minstrel_set_next_sample_idx(mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001219
Felix Fietkau41d08582016-12-14 20:46:54 +01001220 if (!(mi->supported[sample_group] & BIT(sample_idx)))
Karl Beldanf12140c2013-11-11 13:10:49 +01001221 return -1;
1222
Thomas Huehn91340732015-03-24 21:09:39 +01001223 mrs = &mg->rates[sample_idx];
Karl Beldanf12140c2013-11-11 13:10:49 +01001224 sample_idx += sample_group * MCS_GROUP_RATES;
1225
Felix Fietkau06171e92016-03-03 23:25:42 +01001226 /* Set tp_rate1, tp_rate2 to the highest / second highest max_tp_rate */
1227 if (minstrel_get_duration(mi->max_tp_rate[0]) >
1228 minstrel_get_duration(mi->max_tp_rate[1])) {
1229 tp_rate1 = mi->max_tp_rate[1];
1230 tp_rate2 = mi->max_tp_rate[0];
1231 } else {
1232 tp_rate1 = mi->max_tp_rate[0];
1233 tp_rate2 = mi->max_tp_rate[1];
1234 }
1235
Felix Fietkauec8aa662010-05-13 16:48:03 +02001236 /*
Helmut Schaaba6fa292012-03-14 13:31:11 +01001237 * Sampling might add some overhead (RTS, no aggregation)
Felix Fietkau06171e92016-03-03 23:25:42 +01001238 * to the frame. Hence, don't use sampling for the highest currently
1239 * used highest throughput or probability rate.
Helmut Schaaba6fa292012-03-14 13:31:11 +01001240 */
Felix Fietkau06171e92016-03-03 23:25:42 +01001241 if (sample_idx == mi->max_tp_rate[0] || sample_idx == mi->max_prob_rate)
Helmut Schaaba6fa292012-03-14 13:31:11 +01001242 return -1;
Felix Fietkaua0ca7962013-03-16 17:00:27 +01001243
Helmut Schaaba6fa292012-03-14 13:31:11 +01001244 /*
Felix Fietkauf4ec7cb2018-10-06 19:35:06 +02001245 * Do not sample if the probability is already higher than 95%,
1246 * or if the rate is 3 times slower than the current max probability
1247 * rate, to avoid wasting airtime.
Felix Fietkauec8aa662010-05-13 16:48:03 +02001248 */
Felix Fietkauf4ec7cb2018-10-06 19:35:06 +02001249 sample_dur = minstrel_get_duration(sample_idx);
Felix Fietkau5f63afe2019-10-08 19:11:39 +02001250 if (mrs->prob_avg > MINSTREL_FRAC(95, 100) ||
Felix Fietkauf4ec7cb2018-10-06 19:35:06 +02001251 minstrel_get_duration(mi->max_prob_rate) * 3 < sample_dur)
Daniel Halperin8d5eab52011-03-09 03:10:18 -08001252 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001253
Felix Fietkauf793c7e2019-08-20 11:54:47 +02001254
1255 /*
1256 * For devices with no configurable multi-rate retry, skip sampling
1257 * below the per-group max throughput rate, and only use one sampling
1258 * attempt per rate
1259 */
1260 if (mp->hw->max_rates == 1 &&
1261 (minstrel_get_duration(mg->max_group_tp_rate[0]) < sample_dur ||
1262 mrs->attempts))
1263 return -1;
1264
1265 /* Skip already sampled slow rates */
1266 if (sample_dur >= minstrel_get_duration(tp_rate1) && mrs->attempts)
1267 return -1;
1268
Felix Fietkauec8aa662010-05-13 16:48:03 +02001269 /*
1270 * Make sure that lower rates get sampled only occasionally,
1271 * if the link is working perfectly.
1272 */
Thomas Huehn59358392014-09-09 23:22:14 +02001273
Felix Fietkau06171e92016-03-03 23:25:42 +01001274 cur_max_tp_streams = minstrel_mcs_groups[tp_rate1 /
Thomas Huehn59358392014-09-09 23:22:14 +02001275 MCS_GROUP_RATES].streams;
Felix Fietkau06171e92016-03-03 23:25:42 +01001276 if (sample_dur >= minstrel_get_duration(tp_rate2) &&
Thomas Huehn59358392014-09-09 23:22:14 +02001277 (cur_max_tp_streams - 1 <
Felix Fietkau965237a2013-03-03 12:49:51 +01001278 minstrel_mcs_groups[sample_group].streams ||
1279 sample_dur >= minstrel_get_duration(mi->max_prob_rate))) {
Thomas Huehn91340732015-03-24 21:09:39 +01001280 if (mrs->sample_skipped < 20)
Daniel Halperin8d5eab52011-03-09 03:10:18 -08001281 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001282
1283 if (mi->sample_slow++ > 2)
Daniel Halperin8d5eab52011-03-09 03:10:18 -08001284 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001285 }
Felix Fietkau098b8af2013-03-03 12:49:52 +01001286 mi->sample_tries--;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001287
1288 return sample_idx;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001289}
1290
1291static void
1292minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
1293 struct ieee80211_tx_rate_control *txrc)
1294{
Felix Fietkaua8566662013-04-22 16:14:42 +02001295 const struct mcs_group *sample_group;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001296 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
Felix Fietkaua8566662013-04-22 16:14:42 +02001297 struct ieee80211_tx_rate *rate = &info->status.rates[0];
Felix Fietkauec8aa662010-05-13 16:48:03 +02001298 struct minstrel_ht_sta_priv *msp = priv_sta;
1299 struct minstrel_ht_sta *mi = &msp->ht;
1300 struct minstrel_priv *mp = priv;
1301 int sample_idx;
1302
Felix Fietkauec8aa662010-05-13 16:48:03 +02001303 if (!msp->is_ht)
1304 return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
1305
Felix Fietkau95943422014-11-19 20:08:07 +01001306 if (!(info->flags & IEEE80211_TX_CTL_AMPDU) &&
1307 mi->max_prob_rate / MCS_GROUP_RATES != MINSTREL_CCK_GROUP)
1308 minstrel_aggr_check(sta, txrc->skb);
1309
Felix Fietkauec8aa662010-05-13 16:48:03 +02001310 info->flags |= mi->tx_flags;
Helmut Schaa6de062c2011-08-01 11:32:53 +02001311
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +02001312#ifdef CONFIG_MAC80211_DEBUGFS
1313 if (mp->fixed_rate_idx != -1)
1314 return;
1315#endif
1316
Helmut Schaa6de062c2011-08-01 11:32:53 +02001317 /* Don't use EAPOL frames for sampling on non-mrr hw */
1318 if (mp->hw->max_rates == 1 &&
Johannes Bergaf61a162013-07-02 18:09:12 +02001319 (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO))
Helmut Schaa6de062c2011-08-01 11:32:53 +02001320 sample_idx = -1;
1321 else
1322 sample_idx = minstrel_get_sample_rate(mp, mi);
Zefir Kurtisi24f75802011-05-20 20:29:17 +02001323
Felix Fietkauec8aa662010-05-13 16:48:03 +02001324 mi->total_packets++;
1325
1326 /* wraparound */
1327 if (mi->total_packets == ~0) {
1328 mi->total_packets = 0;
1329 mi->sample_packets = 0;
1330 }
Felix Fietkaua8566662013-04-22 16:14:42 +02001331
1332 if (sample_idx < 0)
1333 return;
1334
1335 sample_group = &minstrel_mcs_groups[sample_idx / MCS_GROUP_RATES];
Felix Fietkau972b66b2018-10-06 19:35:05 +02001336 sample_idx %= MCS_GROUP_RATES;
1337
1338 if (sample_group == &minstrel_mcs_groups[MINSTREL_CCK_GROUP] &&
1339 (sample_idx >= 4) != txrc->short_preamble)
1340 return;
1341
Felix Fietkaua8566662013-04-22 16:14:42 +02001342 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Felix Fietkau1cd15852013-06-28 21:04:35 +02001343 rate->count = 1;
1344
Felix Fietkau972b66b2018-10-06 19:35:05 +02001345 if (sample_group == &minstrel_mcs_groups[MINSTREL_CCK_GROUP]) {
Felix Fietkau1cd15852013-06-28 21:04:35 +02001346 int idx = sample_idx % ARRAY_SIZE(mp->cck_rates);
1347 rate->idx = mp->cck_rates[idx];
Karl Beldan92082472014-10-21 10:38:38 +02001348 } else if (sample_group->flags & IEEE80211_TX_RC_VHT_MCS) {
1349 ieee80211_rate_set_vht(rate, sample_idx % MCS_GROUP_RATES,
1350 sample_group->streams);
Karl Beldan3ec373c2014-10-20 15:46:01 +02001351 } else {
Felix Fietkau972b66b2018-10-06 19:35:05 +02001352 rate->idx = sample_idx + (sample_group->streams - 1) * 8;
Felix Fietkau1cd15852013-06-28 21:04:35 +02001353 }
1354
Karl Beldan3ec373c2014-10-20 15:46:01 +02001355 rate->flags = sample_group->flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001356}
1357
1358static void
Felix Fietkaua0497f92013-02-13 10:51:08 +01001359minstrel_ht_update_cck(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
1360 struct ieee80211_supported_band *sband,
1361 struct ieee80211_sta *sta)
1362{
1363 int i;
1364
Johannes Berg57fbcce2016-04-12 15:56:15 +02001365 if (sband->band != NL80211_BAND_2GHZ)
Felix Fietkaua0497f92013-02-13 10:51:08 +01001366 return;
1367
Johannes Berg30686bf2015-06-02 21:39:54 +02001368 if (!ieee80211_hw_check(mp->hw, SUPPORTS_HT_CCK_RATES))
Felix Fietkau2dfca312013-08-20 19:43:54 +02001369 return;
1370
Felix Fietkaua0497f92013-02-13 10:51:08 +01001371 mi->cck_supported = 0;
1372 mi->cck_supported_short = 0;
1373 for (i = 0; i < 4; i++) {
1374 if (!rate_supported(sta, sband->band, mp->cck_rates[i]))
1375 continue;
1376
1377 mi->cck_supported |= BIT(i);
1378 if (sband->bitrates[i].flags & IEEE80211_RATE_SHORT_PREAMBLE)
1379 mi->cck_supported_short |= BIT(i);
1380 }
1381
Felix Fietkau41d08582016-12-14 20:46:54 +01001382 mi->supported[MINSTREL_CCK_GROUP] = mi->cck_supported;
Felix Fietkaua0497f92013-02-13 10:51:08 +01001383}
1384
1385static void
Felix Fietkauec8aa662010-05-13 16:48:03 +02001386minstrel_ht_update_caps(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001387 struct cfg80211_chan_def *chandef,
Johannes Berg64f68e52012-03-28 10:58:37 +02001388 struct ieee80211_sta *sta, void *priv_sta)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001389{
1390 struct minstrel_priv *mp = priv;
1391 struct minstrel_ht_sta_priv *msp = priv_sta;
1392 struct minstrel_ht_sta *mi = &msp->ht;
1393 struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs;
Chaitanya T Kf458e832018-10-06 19:34:59 +02001394 u16 ht_cap = sta->ht_cap.cap;
Karl Beldan92082472014-10-21 10:38:38 +02001395 struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap;
1396 int use_vht;
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001397 int n_supported = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001398 int ack_dur;
1399 int stbc;
1400 int i;
Chaitanya T Kf458e832018-10-06 19:34:59 +02001401 bool ldpc;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001402
1403 /* fall back to the old minstrel for legacy stations */
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001404 if (!sta->ht_cap.ht_supported)
1405 goto use_legacy;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001406
Karl Beldan8a0ee4f2014-10-20 15:46:00 +02001407 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) != MINSTREL_GROUPS_NB);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001408
Karl Beldan92082472014-10-21 10:38:38 +02001409 if (vht_cap->vht_supported)
1410 use_vht = vht_cap->vht_mcs.tx_mcs_map != cpu_to_le16(~0);
1411 else
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001412 use_vht = 0;
Karl Beldan92082472014-10-21 10:38:38 +02001413
Felix Fietkauec8aa662010-05-13 16:48:03 +02001414 msp->is_ht = true;
1415 memset(mi, 0, sizeof(*mi));
Felix Fietkaua8566662013-04-22 16:14:42 +02001416
1417 mi->sta = sta;
Thomas Huehn91340732015-03-24 21:09:39 +01001418 mi->last_stats_update = jiffies;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001419
Simon Wunderlich438b61b2013-07-08 16:55:51 +02001420 ack_dur = ieee80211_frame_duration(sband->band, 10, 60, 1, 1, 0);
1421 mi->overhead = ieee80211_frame_duration(sband->band, 0, 60, 1, 1, 0);
1422 mi->overhead += ack_dur;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001423 mi->overhead_rtscts = mi->overhead + 2 * ack_dur;
1424
1425 mi->avg_ampdu_len = MINSTREL_FRAC(1, 1);
1426
1427 /* When using MRR, sample more on the first attempt, without delay */
1428 if (mp->has_mrr) {
1429 mi->sample_count = 16;
1430 mi->sample_wait = 0;
1431 } else {
1432 mi->sample_count = 8;
1433 mi->sample_wait = 8;
1434 }
1435 mi->sample_tries = 4;
1436
Karl Beldan92082472014-10-21 10:38:38 +02001437 if (!use_vht) {
Chaitanya T Kf458e832018-10-06 19:34:59 +02001438 stbc = (ht_cap & IEEE80211_HT_CAP_RX_STBC) >>
Karl Beldan92082472014-10-21 10:38:38 +02001439 IEEE80211_HT_CAP_RX_STBC_SHIFT;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001440
Chaitanya T Kf458e832018-10-06 19:34:59 +02001441 ldpc = ht_cap & IEEE80211_HT_CAP_LDPC_CODING;
1442 } else {
1443 stbc = (vht_cap->cap & IEEE80211_VHT_CAP_RXSTBC_MASK) >>
1444 IEEE80211_VHT_CAP_RXSTBC_SHIFT;
1445
1446 ldpc = vht_cap->cap & IEEE80211_VHT_CAP_RXLDPC;
Karl Beldan92082472014-10-21 10:38:38 +02001447 }
Felix Fietkauec8aa662010-05-13 16:48:03 +02001448
Chaitanya T Kf458e832018-10-06 19:34:59 +02001449 mi->tx_flags |= stbc << IEEE80211_TX_CTL_STBC_SHIFT;
1450 if (ldpc)
1451 mi->tx_flags |= IEEE80211_TX_CTL_LDPC;
1452
Felix Fietkauec8aa662010-05-13 16:48:03 +02001453 for (i = 0; i < ARRAY_SIZE(mi->groups); i++) {
Karl Beldan3ec373c2014-10-20 15:46:01 +02001454 u32 gflags = minstrel_mcs_groups[i].flags;
Karl Beldan92082472014-10-21 10:38:38 +02001455 int bw, nss;
Karl Beldan3ec373c2014-10-20 15:46:01 +02001456
Felix Fietkau41d08582016-12-14 20:46:54 +01001457 mi->supported[i] = 0;
Felix Fietkaua0497f92013-02-13 10:51:08 +01001458 if (i == MINSTREL_CCK_GROUP) {
1459 minstrel_ht_update_cck(mp, mi, sband, sta);
1460 continue;
1461 }
1462
Karl Beldan3ec373c2014-10-20 15:46:01 +02001463 if (gflags & IEEE80211_TX_RC_SHORT_GI) {
1464 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH) {
Chaitanya T Kf458e832018-10-06 19:34:59 +02001465 if (!(ht_cap & IEEE80211_HT_CAP_SGI_40))
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001466 continue;
1467 } else {
Chaitanya T Kf458e832018-10-06 19:34:59 +02001468 if (!(ht_cap & IEEE80211_HT_CAP_SGI_20))
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001469 continue;
1470 }
Felix Fietkauec8aa662010-05-13 16:48:03 +02001471 }
1472
Karl Beldan3ec373c2014-10-20 15:46:01 +02001473 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH &&
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001474 sta->bandwidth < IEEE80211_STA_RX_BW_40)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001475 continue;
1476
Karl Beldan92082472014-10-21 10:38:38 +02001477 nss = minstrel_mcs_groups[i].streams;
1478
Helmut Schaae9219772012-03-09 14:13:45 +01001479 /* Mark MCS > 7 as unsupported if STA is in static SMPS mode */
Karl Beldan92082472014-10-21 10:38:38 +02001480 if (sta->smps_mode == IEEE80211_SMPS_STATIC && nss > 1)
Helmut Schaae9219772012-03-09 14:13:45 +01001481 continue;
1482
Karl Beldan92082472014-10-21 10:38:38 +02001483 /* HT rate */
1484 if (gflags & IEEE80211_TX_RC_MCS) {
Karl Beldan9ffe9042014-10-24 14:34:49 +02001485 if (use_vht && minstrel_vht_only)
Karl Beldan92082472014-10-21 10:38:38 +02001486 continue;
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001487
Felix Fietkau41d08582016-12-14 20:46:54 +01001488 mi->supported[i] = mcs->rx_mask[nss - 1];
1489 if (mi->supported[i])
Karl Beldan92082472014-10-21 10:38:38 +02001490 n_supported++;
1491 continue;
1492 }
1493
1494 /* VHT rate */
1495 if (!vht_cap->vht_supported ||
1496 WARN_ON(!(gflags & IEEE80211_TX_RC_VHT_MCS)) ||
1497 WARN_ON(gflags & IEEE80211_TX_RC_160_MHZ_WIDTH))
1498 continue;
1499
1500 if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH) {
1501 if (sta->bandwidth < IEEE80211_STA_RX_BW_80 ||
1502 ((gflags & IEEE80211_TX_RC_SHORT_GI) &&
1503 !(vht_cap->cap & IEEE80211_VHT_CAP_SHORT_GI_80))) {
1504 continue;
1505 }
1506 }
1507
1508 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
1509 bw = BW_40;
1510 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
1511 bw = BW_80;
1512 else
1513 bw = BW_20;
1514
Felix Fietkau41d08582016-12-14 20:46:54 +01001515 mi->supported[i] = minstrel_get_valid_vht_rates(bw, nss,
Karl Beldan92082472014-10-21 10:38:38 +02001516 vht_cap->vht_mcs.tx_mcs_map);
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001517
Felix Fietkau41d08582016-12-14 20:46:54 +01001518 if (mi->supported[i])
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001519 n_supported++;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001520 }
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001521
1522 if (!n_supported)
1523 goto use_legacy;
1524
Felix Fietkau37439f22018-10-06 19:35:03 +02001525 mi->supported[MINSTREL_CCK_GROUP] |= mi->cck_supported_short << 4;
Felix Fietkau782dda02016-12-14 20:46:55 +01001526
Felix Fietkaua8566662013-04-22 16:14:42 +02001527 /* create an initial rate table with the lowest supported rates */
Felix Fietkau48cb3952019-08-20 11:54:49 +02001528 minstrel_ht_update_stats(mp, mi, true);
Felix Fietkaua8566662013-04-22 16:14:42 +02001529 minstrel_ht_update_rates(mp, mi);
Karl Beldana3647362013-04-18 14:26:21 +02001530
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001531 return;
1532
1533use_legacy:
1534 msp->is_ht = false;
1535 memset(&msp->legacy, 0, sizeof(msp->legacy));
1536 msp->legacy.r = msp->ratelist;
1537 msp->legacy.sample_table = msp->sample_table;
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001538 return mac80211_minstrel.rate_init(priv, sband, chandef, sta,
1539 &msp->legacy);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001540}
1541
1542static void
1543minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001544 struct cfg80211_chan_def *chandef,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001545 struct ieee80211_sta *sta, void *priv_sta)
1546{
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001547 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001548}
1549
1550static void
1551minstrel_ht_rate_update(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001552 struct cfg80211_chan_def *chandef,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001553 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berg64f68e52012-03-28 10:58:37 +02001554 u32 changed)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001555{
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001556 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001557}
1558
1559static void *
1560minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
1561{
1562 struct ieee80211_supported_band *sband;
1563 struct minstrel_ht_sta_priv *msp;
1564 struct minstrel_priv *mp = priv;
1565 struct ieee80211_hw *hw = mp->hw;
1566 int max_rates = 0;
1567 int i;
1568
Johannes Berg57fbcce2016-04-12 15:56:15 +02001569 for (i = 0; i < NUM_NL80211_BANDS; i++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +02001570 sband = hw->wiphy->bands[i];
1571 if (sband && sband->n_bitrates > max_rates)
1572 max_rates = sband->n_bitrates;
1573 }
1574
Thomas Huehn472dd352012-06-29 06:26:27 -07001575 msp = kzalloc(sizeof(*msp), gfp);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001576 if (!msp)
1577 return NULL;
1578
Kees Cook6396bb22018-06-12 14:03:40 -07001579 msp->ratelist = kcalloc(max_rates, sizeof(struct minstrel_rate), gfp);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001580 if (!msp->ratelist)
1581 goto error;
1582
Kees Cook6da2ec52018-06-12 13:55:00 -07001583 msp->sample_table = kmalloc_array(max_rates, SAMPLE_COLUMNS, gfp);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001584 if (!msp->sample_table)
1585 goto error1;
1586
1587 return msp;
1588
1589error1:
Dan Carpenter7e988012010-07-22 13:14:19 +02001590 kfree(msp->ratelist);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001591error:
1592 kfree(msp);
1593 return NULL;
1594}
1595
1596static void
1597minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
1598{
1599 struct minstrel_ht_sta_priv *msp = priv_sta;
1600
1601 kfree(msp->sample_table);
1602 kfree(msp->ratelist);
1603 kfree(msp);
1604}
1605
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001606static void
1607minstrel_ht_init_cck_rates(struct minstrel_priv *mp)
1608{
1609 static const int bitrates[4] = { 10, 20, 55, 110 };
1610 struct ieee80211_supported_band *sband;
1611 u32 rate_flags = ieee80211_chandef_rate_flags(&mp->hw->conf.chandef);
1612 int i, j;
1613
1614 sband = mp->hw->wiphy->bands[NL80211_BAND_2GHZ];
1615 if (!sband)
1616 return;
1617
1618 for (i = 0; i < sband->n_bitrates; i++) {
1619 struct ieee80211_rate *rate = &sband->bitrates[i];
1620
1621 if (rate->flags & IEEE80211_RATE_ERP_G)
1622 continue;
1623
1624 if ((rate_flags & sband->bitrates[i].flags) != rate_flags)
1625 continue;
1626
1627 for (j = 0; j < ARRAY_SIZE(bitrates); j++) {
1628 if (rate->bitrate != bitrates[j])
1629 continue;
1630
1631 mp->cck_rates[j] = i;
1632 break;
1633 }
1634 }
1635}
1636
Felix Fietkauec8aa662010-05-13 16:48:03 +02001637static void *
1638minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
1639{
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001640 struct minstrel_priv *mp;
1641
1642 mp = kzalloc(sizeof(struct minstrel_priv), GFP_ATOMIC);
1643 if (!mp)
1644 return NULL;
1645
Felix Fietkau48cb3952019-08-20 11:54:49 +02001646 mp->sample_switch = -1;
1647
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001648 /* contention window settings
1649 * Just an approximation. Using the per-queue values would complicate
1650 * the calculations and is probably unnecessary */
1651 mp->cw_min = 15;
1652 mp->cw_max = 1023;
1653
1654 /* number of packets (in %) to use for sampling other rates
1655 * sample less often for non-mrr packets, because the overhead
1656 * is much higher than with mrr */
1657 mp->lookaround_rate = 5;
1658 mp->lookaround_rate_mrr = 10;
1659
1660 /* maximum time that the hw is allowed to stay in one MRR segment */
1661 mp->segment_size = 6000;
1662
1663 if (hw->max_rate_tries > 0)
1664 mp->max_retry = hw->max_rate_tries;
1665 else
1666 /* safe default, does not necessarily have to match hw properties */
1667 mp->max_retry = 7;
1668
1669 if (hw->max_rates >= 4)
1670 mp->has_mrr = true;
1671
1672 mp->hw = hw;
Felix Fietkau8f2f4952019-10-08 19:11:37 +02001673 mp->update_interval = HZ / 10;
Felix Fietkaub1103d22019-10-08 19:11:38 +02001674 mp->new_avg = true;
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001675
1676#ifdef CONFIG_MAC80211_DEBUGFS
1677 mp->fixed_rate_idx = (u32) -1;
1678 debugfs_create_u32("fixed_rate_idx", S_IRUGO | S_IWUGO, debugfsdir,
1679 &mp->fixed_rate_idx);
Felix Fietkau48cb3952019-08-20 11:54:49 +02001680 debugfs_create_u32("sample_switch", S_IRUGO | S_IWUSR, debugfsdir,
1681 &mp->sample_switch);
Felix Fietkaub1103d22019-10-08 19:11:38 +02001682 debugfs_create_bool("new_avg", S_IRUGO | S_IWUSR, debugfsdir,
1683 &mp->new_avg);
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001684#endif
1685
1686 minstrel_ht_init_cck_rates(mp);
1687
1688 return mp;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001689}
1690
1691static void
1692minstrel_ht_free(void *priv)
1693{
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001694 kfree(priv);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001695}
1696
Antonio Quartullicca674d2014-05-19 21:53:20 +02001697static u32 minstrel_ht_get_expected_throughput(void *priv_sta)
1698{
1699 struct minstrel_ht_sta_priv *msp = priv_sta;
1700 struct minstrel_ht_sta *mi = &msp->ht;
Thomas Huehn50e55a82015-03-24 21:09:41 +01001701 int i, j, prob, tp_avg;
Antonio Quartullicca674d2014-05-19 21:53:20 +02001702
1703 if (!msp->is_ht)
1704 return mac80211_minstrel.get_expected_throughput(priv_sta);
1705
Thomas Huehn59358392014-09-09 23:22:14 +02001706 i = mi->max_tp_rate[0] / MCS_GROUP_RATES;
1707 j = mi->max_tp_rate[0] % MCS_GROUP_RATES;
Felix Fietkau5f63afe2019-10-08 19:11:39 +02001708 prob = mi->groups[i].rates[j].prob_avg;
Antonio Quartullicca674d2014-05-19 21:53:20 +02001709
Thomas Huehn6a27b2c402015-03-24 21:09:40 +01001710 /* convert tp_avg from pkt per second in kbps */
Sven Eckelmann212c5a52016-02-02 08:12:26 +01001711 tp_avg = minstrel_ht_get_tp_avg(mi, i, j, prob) * 10;
1712 tp_avg = tp_avg * AVG_PKT_SIZE * 8 / 1024;
Thomas Huehn6a27b2c402015-03-24 21:09:40 +01001713
1714 return tp_avg;
Antonio Quartullicca674d2014-05-19 21:53:20 +02001715}
1716
Johannes Berg631ad702014-01-20 23:29:34 +01001717static const struct rate_control_ops mac80211_minstrel_ht = {
Felix Fietkauec8aa662010-05-13 16:48:03 +02001718 .name = "minstrel_ht",
Felix Fietkau18fb84d2017-04-26 17:11:35 +02001719 .tx_status_ext = minstrel_ht_tx_status,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001720 .get_rate = minstrel_ht_get_rate,
1721 .rate_init = minstrel_ht_rate_init,
1722 .rate_update = minstrel_ht_rate_update,
1723 .alloc_sta = minstrel_ht_alloc_sta,
1724 .free_sta = minstrel_ht_free_sta,
1725 .alloc = minstrel_ht_alloc,
1726 .free = minstrel_ht_free,
1727#ifdef CONFIG_MAC80211_DEBUGFS
1728 .add_sta_debugfs = minstrel_ht_add_sta_debugfs,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001729#endif
Antonio Quartullicca674d2014-05-19 21:53:20 +02001730 .get_expected_throughput = minstrel_ht_get_expected_throughput,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001731};
1732
1733
Johannes Bergf6e1a732014-01-21 00:32:52 +01001734static void __init init_sample_table(void)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001735{
1736 int col, i, new_idx;
1737 u8 rnd[MCS_GROUP_RATES];
1738
1739 memset(sample_table, 0xff, sizeof(sample_table));
1740 for (col = 0; col < SAMPLE_COLUMNS; col++) {
Karl Beldanf7d8ad82013-11-13 10:54:19 +01001741 prandom_bytes(rnd, sizeof(rnd));
Felix Fietkauec8aa662010-05-13 16:48:03 +02001742 for (i = 0; i < MCS_GROUP_RATES; i++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +02001743 new_idx = (i + rnd[i]) % MCS_GROUP_RATES;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001744 while (sample_table[col][new_idx] != 0xff)
1745 new_idx = (new_idx + 1) % MCS_GROUP_RATES;
1746
1747 sample_table[col][new_idx] = i;
1748 }
1749 }
1750}
1751
1752int __init
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001753rc80211_minstrel_init(void)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001754{
1755 init_sample_table();
1756 return ieee80211_rate_control_register(&mac80211_minstrel_ht);
1757}
1758
1759void
Felix Fietkaub1c4f682018-10-06 19:35:01 +02001760rc80211_minstrel_exit(void)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001761{
1762 ieee80211_rate_control_unregister(&mac80211_minstrel_ht);
1763}