blob: aca8b642661c8a5e22602201a170af240acfb0d8 [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"
17#include "rc80211_minstrel.h"
18#include "rc80211_minstrel_ht.h"
19
Felix Fietkaud66c2582015-03-13 10:54:44 +010020#define AVG_AMPDU_SIZE 16
Felix Fietkauec8aa662010-05-13 16:48:03 +020021#define AVG_PKT_SIZE 1200
Felix Fietkauec8aa662010-05-13 16:48:03 +020022
23/* 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 Fietkauec8aa662010-05-13 16:48:03 +020053/* MCS rate information for an MCS group */
Helmut Schaaa5f69d942011-11-14 15:28:20 +010054#define MCS_GROUP(_streams, _sgi, _ht40) \
55 [GROUP_IDX(_streams, _sgi, _ht40)] = { \
Felix Fietkauec8aa662010-05-13 16:48:03 +020056 .streams = _streams, \
57 .flags = \
Karl Beldan3ec373c2014-10-20 15:46:01 +020058 IEEE80211_TX_RC_MCS | \
Felix Fietkauec8aa662010-05-13 16:48:03 +020059 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
60 (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
61 .duration = { \
62 MCS_DURATION(_streams, _sgi, _ht40 ? 54 : 26), \
63 MCS_DURATION(_streams, _sgi, _ht40 ? 108 : 52), \
64 MCS_DURATION(_streams, _sgi, _ht40 ? 162 : 78), \
65 MCS_DURATION(_streams, _sgi, _ht40 ? 216 : 104), \
66 MCS_DURATION(_streams, _sgi, _ht40 ? 324 : 156), \
67 MCS_DURATION(_streams, _sgi, _ht40 ? 432 : 208), \
68 MCS_DURATION(_streams, _sgi, _ht40 ? 486 : 234), \
69 MCS_DURATION(_streams, _sgi, _ht40 ? 540 : 260) \
70 } \
71}
72
Karl Beldan92082472014-10-21 10:38:38 +020073#define VHT_GROUP_IDX(_streams, _sgi, _bw) \
74 (MINSTREL_VHT_GROUP_0 + \
75 MINSTREL_MAX_STREAMS * 2 * (_bw) + \
76 MINSTREL_MAX_STREAMS * (_sgi) + \
77 (_streams) - 1)
78
79#define BW2VBPS(_bw, r3, r2, r1) \
80 (_bw == BW_80 ? r3 : _bw == BW_40 ? r2 : r1)
81
82#define VHT_GROUP(_streams, _sgi, _bw) \
83 [VHT_GROUP_IDX(_streams, _sgi, _bw)] = { \
84 .streams = _streams, \
85 .flags = \
86 IEEE80211_TX_RC_VHT_MCS | \
87 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
88 (_bw == BW_80 ? IEEE80211_TX_RC_80_MHZ_WIDTH : \
89 _bw == BW_40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
90 .duration = { \
91 MCS_DURATION(_streams, _sgi, \
92 BW2VBPS(_bw, 117, 54, 26)), \
93 MCS_DURATION(_streams, _sgi, \
94 BW2VBPS(_bw, 234, 108, 52)), \
95 MCS_DURATION(_streams, _sgi, \
96 BW2VBPS(_bw, 351, 162, 78)), \
97 MCS_DURATION(_streams, _sgi, \
98 BW2VBPS(_bw, 468, 216, 104)), \
99 MCS_DURATION(_streams, _sgi, \
100 BW2VBPS(_bw, 702, 324, 156)), \
101 MCS_DURATION(_streams, _sgi, \
102 BW2VBPS(_bw, 936, 432, 208)), \
103 MCS_DURATION(_streams, _sgi, \
104 BW2VBPS(_bw, 1053, 486, 234)), \
105 MCS_DURATION(_streams, _sgi, \
106 BW2VBPS(_bw, 1170, 540, 260)), \
107 MCS_DURATION(_streams, _sgi, \
108 BW2VBPS(_bw, 1404, 648, 312)), \
109 MCS_DURATION(_streams, _sgi, \
110 BW2VBPS(_bw, 1560, 720, 346)) \
111 } \
112}
113
Felix Fietkaua0497f92013-02-13 10:51:08 +0100114#define CCK_DURATION(_bitrate, _short, _len) \
Felix Fietkaued97a132013-03-02 21:20:12 +0100115 (1000 * (10 /* SIFS */ + \
Weilong Chenf359d3f2013-12-18 15:44:16 +0800116 (_short ? 72 + 24 : 144 + 48) + \
Felix Fietkaued97a132013-03-02 21:20:12 +0100117 (8 * (_len + 4) * 10) / (_bitrate)))
Felix Fietkaua0497f92013-02-13 10:51:08 +0100118
119#define CCK_ACK_DURATION(_bitrate, _short) \
120 (CCK_DURATION((_bitrate > 10 ? 20 : 10), false, 60) + \
121 CCK_DURATION(_bitrate, _short, AVG_PKT_SIZE))
122
123#define CCK_DURATION_LIST(_short) \
124 CCK_ACK_DURATION(10, _short), \
125 CCK_ACK_DURATION(20, _short), \
126 CCK_ACK_DURATION(55, _short), \
127 CCK_ACK_DURATION(110, _short)
128
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200129#define CCK_GROUP \
130 [MINSTREL_CCK_GROUP] = { \
131 .streams = 0, \
Karl Beldan3ec373c2014-10-20 15:46:01 +0200132 .flags = 0, \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200133 .duration = { \
134 CCK_DURATION_LIST(false), \
135 CCK_DURATION_LIST(true) \
136 } \
Felix Fietkaua0497f92013-02-13 10:51:08 +0100137 }
138
Karl Beldan92082472014-10-21 10:38:38 +0200139#ifdef CONFIG_MAC80211_RC_MINSTREL_VHT
140static bool minstrel_vht_only = true;
141module_param(minstrel_vht_only, bool, 0644);
142MODULE_PARM_DESC(minstrel_vht_only,
143 "Use only VHT rates when VHT is supported by sta.");
144#endif
145
Felix Fietkauec8aa662010-05-13 16:48:03 +0200146/*
147 * To enable sufficiently targeted rate sampling, MCS rates are divided into
148 * groups, based on the number of streams and flags (HT40, SGI) that they
149 * use.
Helmut Schaaa5f69d942011-11-14 15:28:20 +0100150 *
151 * Sortorder has to be fixed for GROUP_IDX macro to be applicable:
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200152 * BW -> SGI -> #streams
Felix Fietkauec8aa662010-05-13 16:48:03 +0200153 */
154const struct mcs_group minstrel_mcs_groups[] = {
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200155 MCS_GROUP(1, 0, BW_20),
156 MCS_GROUP(2, 0, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200157#if MINSTREL_MAX_STREAMS >= 3
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200158 MCS_GROUP(3, 0, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200159#endif
160
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200161 MCS_GROUP(1, 1, BW_20),
162 MCS_GROUP(2, 1, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200163#if MINSTREL_MAX_STREAMS >= 3
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200164 MCS_GROUP(3, 1, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200165#endif
166
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200167 MCS_GROUP(1, 0, BW_40),
168 MCS_GROUP(2, 0, BW_40),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200169#if MINSTREL_MAX_STREAMS >= 3
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200170 MCS_GROUP(3, 0, BW_40),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200171#endif
172
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200173 MCS_GROUP(1, 1, BW_40),
174 MCS_GROUP(2, 1, BW_40),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200175#if MINSTREL_MAX_STREAMS >= 3
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200176 MCS_GROUP(3, 1, BW_40),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200177#endif
Felix Fietkaua0497f92013-02-13 10:51:08 +0100178
Karl Beldan92082472014-10-21 10:38:38 +0200179 CCK_GROUP,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200180
Karl Beldan92082472014-10-21 10:38:38 +0200181#ifdef CONFIG_MAC80211_RC_MINSTREL_VHT
182 VHT_GROUP(1, 0, BW_20),
183 VHT_GROUP(2, 0, BW_20),
184#if MINSTREL_MAX_STREAMS >= 3
185 VHT_GROUP(3, 0, BW_20),
186#endif
187
188 VHT_GROUP(1, 1, BW_20),
189 VHT_GROUP(2, 1, BW_20),
190#if MINSTREL_MAX_STREAMS >= 3
191 VHT_GROUP(3, 1, BW_20),
192#endif
193
194 VHT_GROUP(1, 0, BW_40),
195 VHT_GROUP(2, 0, BW_40),
196#if MINSTREL_MAX_STREAMS >= 3
197 VHT_GROUP(3, 0, BW_40),
198#endif
199
200 VHT_GROUP(1, 1, BW_40),
201 VHT_GROUP(2, 1, BW_40),
202#if MINSTREL_MAX_STREAMS >= 3
203 VHT_GROUP(3, 1, BW_40),
204#endif
205
206 VHT_GROUP(1, 0, BW_80),
207 VHT_GROUP(2, 0, BW_80),
208#if MINSTREL_MAX_STREAMS >= 3
209 VHT_GROUP(3, 0, BW_80),
210#endif
211
212 VHT_GROUP(1, 1, BW_80),
213 VHT_GROUP(2, 1, BW_80),
214#if MINSTREL_MAX_STREAMS >= 3
215 VHT_GROUP(3, 1, BW_80),
216#endif
217#endif
218};
Felix Fietkaua0497f92013-02-13 10:51:08 +0100219
Johannes Bergf6e1a732014-01-21 00:32:52 +0100220static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES] __read_mostly;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200221
Felix Fietkaua8566662013-04-22 16:14:42 +0200222static void
223minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi);
224
Felix Fietkauec8aa662010-05-13 16:48:03 +0200225/*
Karl Beldan92082472014-10-21 10:38:38 +0200226 * Some VHT MCSes are invalid (when Ndbps / Nes is not an integer)
227 * e.g for MCS9@20MHzx1Nss: Ndbps=8x52*(5/6) Nes=1
228 *
229 * Returns the valid mcs map for struct minstrel_mcs_group_data.supported
230 */
231static u16
232minstrel_get_valid_vht_rates(int bw, int nss, __le16 mcs_map)
233{
234 u16 mask = 0;
235
236 if (bw == BW_20) {
237 if (nss != 3 && nss != 6)
238 mask = BIT(9);
239 } else if (bw == BW_80) {
240 if (nss == 3 || nss == 7)
241 mask = BIT(6);
242 else if (nss == 6)
243 mask = BIT(9);
244 } else {
245 WARN_ON(bw != BW_40);
246 }
247
248 switch ((le16_to_cpu(mcs_map) >> (2 * (nss - 1))) & 3) {
249 case IEEE80211_VHT_MCS_SUPPORT_0_7:
250 mask |= 0x300;
251 break;
252 case IEEE80211_VHT_MCS_SUPPORT_0_8:
253 mask |= 0x200;
254 break;
255 case IEEE80211_VHT_MCS_SUPPORT_0_9:
256 break;
257 default:
258 mask = 0x3ff;
259 }
260
261 return 0x3ff & ~mask;
262}
263
264/*
Felix Fietkauec8aa662010-05-13 16:48:03 +0200265 * Look up an MCS group index based on mac80211 rate information
266 */
267static int
268minstrel_ht_get_group_idx(struct ieee80211_tx_rate *rate)
269{
Karl Beldancc61d8d2014-09-29 02:36:30 +0200270 return GROUP_IDX((rate->idx / 8) + 1,
Helmut Schaaa5f69d942011-11-14 15:28:20 +0100271 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
272 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200273}
274
Karl Beldan92082472014-10-21 10:38:38 +0200275static int
276minstrel_vht_get_group_idx(struct ieee80211_tx_rate *rate)
277{
278 return VHT_GROUP_IDX(ieee80211_rate_get_vht_nss(rate),
279 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
280 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH) +
281 2*!!(rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH));
282}
283
Felix Fietkaua0497f92013-02-13 10:51:08 +0100284static struct minstrel_rate_stats *
285minstrel_ht_get_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
286 struct ieee80211_tx_rate *rate)
287{
288 int group, idx;
289
290 if (rate->flags & IEEE80211_TX_RC_MCS) {
291 group = minstrel_ht_get_group_idx(rate);
Karl Beldan7a5e3fa2013-11-11 13:12:55 +0100292 idx = rate->idx % 8;
Karl Beldan92082472014-10-21 10:38:38 +0200293 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
294 group = minstrel_vht_get_group_idx(rate);
295 idx = ieee80211_rate_get_vht_mcs(rate);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100296 } else {
297 group = MINSTREL_CCK_GROUP;
298
299 for (idx = 0; idx < ARRAY_SIZE(mp->cck_rates); idx++)
300 if (rate->idx == mp->cck_rates[idx])
301 break;
302
303 /* short preamble */
304 if (!(mi->groups[group].supported & BIT(idx)))
305 idx += 4;
306 }
307 return &mi->groups[group].rates[idx];
308}
309
Felix Fietkauec8aa662010-05-13 16:48:03 +0200310static inline struct minstrel_rate_stats *
311minstrel_get_ratestats(struct minstrel_ht_sta *mi, int index)
312{
313 return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES];
314}
315
Felix Fietkauec8aa662010-05-13 16:48:03 +0200316/*
317 * Calculate throughput based on the average A-MPDU length, taking into account
318 * the expected number of retransmissions and their expected length
319 */
320static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100321minstrel_ht_calc_tp(struct minstrel_ht_sta *mi, int group, int rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200322{
Thomas Huehn91340732015-03-24 21:09:39 +0100323 struct minstrel_rate_stats *mrs;
Felix Fietkaued97a132013-03-02 21:20:12 +0100324 unsigned int nsecs = 0;
Thomas Huehn91340732015-03-24 21:09:39 +0100325 unsigned int tmp_prob_ewma;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200326
Thomas Huehn91340732015-03-24 21:09:39 +0100327 mrs = &mi->groups[group].rates[rate];
328 tmp_prob_ewma = mrs->prob_ewma;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200329
Thomas Huehn91340732015-03-24 21:09:39 +0100330 /* do not account throughput if sucess prob is below 10% */
331 if (mrs->prob_ewma < MINSTREL_FRAC(10, 100)) {
332 mrs->cur_tp = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200333 return;
334 }
335
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100336 /*
337 * For the throughput calculation, limit the probability value to 90% to
338 * account for collision related packet error rate fluctuation
339 */
Thomas Huehn91340732015-03-24 21:09:39 +0100340 if (mrs->prob_ewma > MINSTREL_FRAC(90, 100))
341 tmp_prob_ewma = MINSTREL_FRAC(90, 100);
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100342
Felix Fietkaua0497f92013-02-13 10:51:08 +0100343 if (group != MINSTREL_CCK_GROUP)
Felix Fietkaued97a132013-03-02 21:20:12 +0100344 nsecs = 1000 * mi->overhead / MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100345
Felix Fietkaued97a132013-03-02 21:20:12 +0100346 nsecs += minstrel_mcs_groups[group].duration[rate];
Felix Fietkaued97a132013-03-02 21:20:12 +0100347
Johannes Berg00591ce2014-05-19 11:24:19 +0200348 /* prob is scaled - see MINSTREL_FRAC above */
Thomas Huehn91340732015-03-24 21:09:39 +0100349 mrs->cur_tp = MINSTREL_TRUNC(1000000 * ((tmp_prob_ewma * 1000) / nsecs));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200350}
351
352/*
Thomas Huehn59358392014-09-09 23:22:14 +0200353 * Find & sort topmost throughput rates
354 *
355 * If multiple rates provide equal throughput the sorting is based on their
356 * current success probability. Higher success probability is preferred among
357 * MCS groups, CCK rates do not provide aggregation and are therefore at last.
358 */
359static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200360minstrel_ht_sort_best_tp_rates(struct minstrel_ht_sta *mi, u16 index,
361 u16 *tp_list)
Thomas Huehn59358392014-09-09 23:22:14 +0200362{
363 int cur_group, cur_idx, cur_thr, cur_prob;
364 int tmp_group, tmp_idx, tmp_thr, tmp_prob;
365 int j = MAX_THR_RATES;
366
367 cur_group = index / MCS_GROUP_RATES;
368 cur_idx = index % MCS_GROUP_RATES;
369 cur_thr = mi->groups[cur_group].rates[cur_idx].cur_tp;
Thomas Huehn91340732015-03-24 21:09:39 +0100370 cur_prob = mi->groups[cur_group].rates[cur_idx].prob_ewma;
Thomas Huehn59358392014-09-09 23:22:14 +0200371
Felix Fietkau280ba512014-11-18 22:35:31 +0100372 do {
Thomas Huehn59358392014-09-09 23:22:14 +0200373 tmp_group = tp_list[j - 1] / MCS_GROUP_RATES;
374 tmp_idx = tp_list[j - 1] % MCS_GROUP_RATES;
375 tmp_thr = mi->groups[tmp_group].rates[tmp_idx].cur_tp;
Thomas Huehn91340732015-03-24 21:09:39 +0100376 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_ewma;
Felix Fietkau280ba512014-11-18 22:35:31 +0100377 if (cur_thr < tmp_thr ||
378 (cur_thr == tmp_thr && cur_prob <= tmp_prob))
379 break;
380 j--;
381 } while (j > 0);
Thomas Huehn59358392014-09-09 23:22:14 +0200382
383 if (j < MAX_THR_RATES - 1) {
384 memmove(&tp_list[j + 1], &tp_list[j], (sizeof(*tp_list) *
385 (MAX_THR_RATES - (j + 1))));
386 }
387 if (j < MAX_THR_RATES)
388 tp_list[j] = index;
389}
390
391/*
392 * Find and set the topmost probability rate per sta and per group
393 */
394static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200395minstrel_ht_set_best_prob_rate(struct minstrel_ht_sta *mi, u16 index)
Thomas Huehn59358392014-09-09 23:22:14 +0200396{
397 struct minstrel_mcs_group_data *mg;
Thomas Huehn91340732015-03-24 21:09:39 +0100398 struct minstrel_rate_stats *mrs;
Thomas Huehn59358392014-09-09 23:22:14 +0200399 int tmp_group, tmp_idx, tmp_tp, tmp_prob, max_tp_group;
400
401 mg = &mi->groups[index / MCS_GROUP_RATES];
Thomas Huehn91340732015-03-24 21:09:39 +0100402 mrs = &mg->rates[index % MCS_GROUP_RATES];
Thomas Huehn59358392014-09-09 23:22:14 +0200403
404 tmp_group = mi->max_prob_rate / MCS_GROUP_RATES;
405 tmp_idx = mi->max_prob_rate % MCS_GROUP_RATES;
406 tmp_tp = mi->groups[tmp_group].rates[tmp_idx].cur_tp;
Thomas Huehn91340732015-03-24 21:09:39 +0100407 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_ewma;
Thomas Huehn59358392014-09-09 23:22:14 +0200408
409 /* if max_tp_rate[0] is from MCS_GROUP max_prob_rate get selected from
410 * MCS_GROUP as well as CCK_GROUP rates do not allow aggregation */
411 max_tp_group = mi->max_tp_rate[0] / MCS_GROUP_RATES;
412 if((index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) &&
413 (max_tp_group != MINSTREL_CCK_GROUP))
414 return;
415
Thomas Huehn91340732015-03-24 21:09:39 +0100416 if (mrs->prob_ewma > MINSTREL_FRAC(75, 100)) {
417 if (mrs->cur_tp > tmp_tp)
Thomas Huehn59358392014-09-09 23:22:14 +0200418 mi->max_prob_rate = index;
Thomas Huehn91340732015-03-24 21:09:39 +0100419 if (mrs->cur_tp > mg->rates[mg->max_group_prob_rate].cur_tp)
Thomas Huehn59358392014-09-09 23:22:14 +0200420 mg->max_group_prob_rate = index;
421 } else {
Thomas Huehn91340732015-03-24 21:09:39 +0100422 if (mrs->prob_ewma > tmp_prob)
Thomas Huehn59358392014-09-09 23:22:14 +0200423 mi->max_prob_rate = index;
Thomas Huehn91340732015-03-24 21:09:39 +0100424 if (mrs->prob_ewma > mg->rates[mg->max_group_prob_rate].prob_ewma)
Thomas Huehn59358392014-09-09 23:22:14 +0200425 mg->max_group_prob_rate = index;
426 }
427}
428
429
430/*
431 * Assign new rate set per sta and use CCK rates only if the fastest
432 * rate (max_tp_rate[0]) is from CCK group. This prohibits such sorted
433 * rate sets where MCS and CCK rates are mixed, because CCK rates can
434 * not use aggregation.
435 */
436static void
437minstrel_ht_assign_best_tp_rates(struct minstrel_ht_sta *mi,
Karl Beldand4d141c2014-10-20 15:45:59 +0200438 u16 tmp_mcs_tp_rate[MAX_THR_RATES],
439 u16 tmp_cck_tp_rate[MAX_THR_RATES])
Thomas Huehn59358392014-09-09 23:22:14 +0200440{
441 unsigned int tmp_group, tmp_idx, tmp_cck_tp, tmp_mcs_tp;
442 int i;
443
444 tmp_group = tmp_cck_tp_rate[0] / MCS_GROUP_RATES;
445 tmp_idx = tmp_cck_tp_rate[0] % MCS_GROUP_RATES;
446 tmp_cck_tp = mi->groups[tmp_group].rates[tmp_idx].cur_tp;
447
448 tmp_group = tmp_mcs_tp_rate[0] / MCS_GROUP_RATES;
449 tmp_idx = tmp_mcs_tp_rate[0] % MCS_GROUP_RATES;
450 tmp_mcs_tp = mi->groups[tmp_group].rates[tmp_idx].cur_tp;
451
452 if (tmp_cck_tp > tmp_mcs_tp) {
453 for(i = 0; i < MAX_THR_RATES; i++) {
454 minstrel_ht_sort_best_tp_rates(mi, tmp_cck_tp_rate[i],
455 tmp_mcs_tp_rate);
456 }
457 }
458
459}
460
461/*
462 * Try to increase robustness of max_prob rate by decrease number of
463 * streams if possible.
464 */
465static inline void
466minstrel_ht_prob_rate_reduce_streams(struct minstrel_ht_sta *mi)
467{
468 struct minstrel_mcs_group_data *mg;
Thomas Huehn91340732015-03-24 21:09:39 +0100469 struct minstrel_rate_stats *mrs;
Thomas Huehn59358392014-09-09 23:22:14 +0200470 int tmp_max_streams, group;
471 int tmp_tp = 0;
472
473 tmp_max_streams = minstrel_mcs_groups[mi->max_tp_rate[0] /
474 MCS_GROUP_RATES].streams;
475 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
476 mg = &mi->groups[group];
477 if (!mg->supported || group == MINSTREL_CCK_GROUP)
478 continue;
Thomas Huehn91340732015-03-24 21:09:39 +0100479 mrs = minstrel_get_ratestats(mi, mg->max_group_prob_rate);
480 if (tmp_tp < mrs->cur_tp &&
Thomas Huehn59358392014-09-09 23:22:14 +0200481 (minstrel_mcs_groups[group].streams < tmp_max_streams)) {
482 mi->max_prob_rate = mg->max_group_prob_rate;
Thomas Huehn91340732015-03-24 21:09:39 +0100483 tmp_tp = mrs->cur_tp;
Thomas Huehn59358392014-09-09 23:22:14 +0200484 }
485 }
486}
487
488/*
Felix Fietkauec8aa662010-05-13 16:48:03 +0200489 * Update rate statistics and select new primary rates
490 *
491 * Rules for rate selection:
492 * - max_prob_rate must use only one stream, as a tradeoff between delivery
493 * probability and throughput during strong fluctuations
Thomas Huehn59358392014-09-09 23:22:14 +0200494 * - as long as the max prob rate has a probability of more than 75%, pick
Felix Fietkauec8aa662010-05-13 16:48:03 +0200495 * higher throughput rates, even if the probablity is a bit lower
496 */
497static void
498minstrel_ht_update_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
499{
500 struct minstrel_mcs_group_data *mg;
Thomas Huehn91340732015-03-24 21:09:39 +0100501 struct minstrel_rate_stats *mrs;
Thomas Huehn59358392014-09-09 23:22:14 +0200502 int group, i, j;
Karl Beldand4d141c2014-10-20 15:45:59 +0200503 u16 tmp_mcs_tp_rate[MAX_THR_RATES], tmp_group_tp_rate[MAX_THR_RATES];
504 u16 tmp_cck_tp_rate[MAX_THR_RATES], index;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200505
506 if (mi->ampdu_packets > 0) {
507 mi->avg_ampdu_len = minstrel_ewma(mi->avg_ampdu_len,
508 MINSTREL_FRAC(mi->ampdu_len, mi->ampdu_packets), EWMA_LEVEL);
509 mi->ampdu_len = 0;
510 mi->ampdu_packets = 0;
511 }
512
513 mi->sample_slow = 0;
514 mi->sample_count = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200515
Thomas Huehn59358392014-09-09 23:22:14 +0200516 /* Initialize global rate indexes */
517 for(j = 0; j < MAX_THR_RATES; j++){
518 tmp_mcs_tp_rate[j] = 0;
519 tmp_cck_tp_rate[j] = 0;
520 }
Karl Beldanc2eb5b02013-04-18 14:26:20 +0200521
Thomas Huehn59358392014-09-09 23:22:14 +0200522 /* Find best rate sets within all MCS groups*/
523 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200524
525 mg = &mi->groups[group];
526 if (!mg->supported)
527 continue;
528
Felix Fietkauec8aa662010-05-13 16:48:03 +0200529 mi->sample_count++;
530
Thomas Huehn59358392014-09-09 23:22:14 +0200531 /* (re)Initialize group rate indexes */
532 for(j = 0; j < MAX_THR_RATES; j++)
533 tmp_group_tp_rate[j] = group;
534
Felix Fietkauec8aa662010-05-13 16:48:03 +0200535 for (i = 0; i < MCS_GROUP_RATES; i++) {
536 if (!(mg->supported & BIT(i)))
537 continue;
538
Karl Beldan351df092013-11-13 23:07:07 +0100539 index = MCS_GROUP_RATES * group + i;
540
Thomas Huehn91340732015-03-24 21:09:39 +0100541 mrs = &mg->rates[i];
542 mrs->retry_updated = false;
543 minstrel_calc_rate_stats(mrs);
Patrick Kelle6048d7632011-11-15 16:44:48 +0100544 minstrel_ht_calc_tp(mi, group, i);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200545
Thomas Huehn91340732015-03-24 21:09:39 +0100546 if (!mrs->cur_tp)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200547 continue;
548
Thomas Huehn59358392014-09-09 23:22:14 +0200549 /* Find max throughput rate set */
550 if (group != MINSTREL_CCK_GROUP) {
551 minstrel_ht_sort_best_tp_rates(mi, index,
552 tmp_mcs_tp_rate);
553 } else if (group == MINSTREL_CCK_GROUP) {
554 minstrel_ht_sort_best_tp_rates(mi, index,
555 tmp_cck_tp_rate);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200556 }
557
Thomas Huehn59358392014-09-09 23:22:14 +0200558 /* Find max throughput rate set within a group */
559 minstrel_ht_sort_best_tp_rates(mi, index,
560 tmp_group_tp_rate);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200561
Thomas Huehn59358392014-09-09 23:22:14 +0200562 /* Find max probability rate per group and global */
563 minstrel_ht_set_best_prob_rate(mi, index);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200564 }
Thomas Huehn59358392014-09-09 23:22:14 +0200565
566 memcpy(mg->max_group_tp_rate, tmp_group_tp_rate,
567 sizeof(mg->max_group_tp_rate));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200568 }
569
Thomas Huehn59358392014-09-09 23:22:14 +0200570 /* Assign new rate set per sta */
571 minstrel_ht_assign_best_tp_rates(mi, tmp_mcs_tp_rate, tmp_cck_tp_rate);
572 memcpy(mi->max_tp_rate, tmp_mcs_tp_rate, sizeof(mi->max_tp_rate));
573
574 /* Try to increase robustness of max_prob_rate*/
575 minstrel_ht_prob_rate_reduce_streams(mi);
576
Felix Fietkau96d4ac32013-03-02 21:20:14 +0100577 /* try to sample all available rates during each interval */
578 mi->sample_count *= 8;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200579
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +0200580#ifdef CONFIG_MAC80211_DEBUGFS
581 /* use fixed index if set */
582 if (mp->fixed_rate_idx != -1) {
Thomas Huehn59358392014-09-09 23:22:14 +0200583 for (i = 0; i < 4; i++)
584 mi->max_tp_rate[i] = mp->fixed_rate_idx;
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +0200585 mi->max_prob_rate = mp->fixed_rate_idx;
586 }
587#endif
Felix Fietkaua299c6d2013-03-02 21:20:13 +0100588
Thomas Huehn59358392014-09-09 23:22:14 +0200589 /* Reset update timer */
Thomas Huehn91340732015-03-24 21:09:39 +0100590 mi->last_stats_update = jiffies;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200591}
592
593static bool
Felix Fietkaua0497f92013-02-13 10:51:08 +0100594minstrel_ht_txstat_valid(struct minstrel_priv *mp, struct ieee80211_tx_rate *rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200595{
Helmut Schaab79296b2011-11-14 15:28:19 +0100596 if (rate->idx < 0)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200597 return false;
598
Helmut Schaab79296b2011-11-14 15:28:19 +0100599 if (!rate->count)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200600 return false;
601
Karl Beldan92082472014-10-21 10:38:38 +0200602 if (rate->flags & IEEE80211_TX_RC_MCS ||
603 rate->flags & IEEE80211_TX_RC_VHT_MCS)
Felix Fietkaua0497f92013-02-13 10:51:08 +0100604 return true;
605
606 return rate->idx == mp->cck_rates[0] ||
607 rate->idx == mp->cck_rates[1] ||
608 rate->idx == mp->cck_rates[2] ||
609 rate->idx == mp->cck_rates[3];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200610}
611
612static void
Thomas Huehn91340732015-03-24 21:09:39 +0100613minstrel_set_next_sample_idx(struct minstrel_ht_sta *mi)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200614{
615 struct minstrel_mcs_group_data *mg;
616
617 for (;;) {
618 mi->sample_group++;
619 mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups);
620 mg = &mi->groups[mi->sample_group];
621
622 if (!mg->supported)
623 continue;
624
625 if (++mg->index >= MCS_GROUP_RATES) {
626 mg->index = 0;
627 if (++mg->column >= ARRAY_SIZE(sample_table))
628 mg->column = 0;
629 }
630 break;
631 }
632}
633
634static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200635minstrel_downgrade_rate(struct minstrel_ht_sta *mi, u16 *idx, bool primary)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200636{
637 int group, orig_group;
638
639 orig_group = group = *idx / MCS_GROUP_RATES;
640 while (group > 0) {
641 group--;
642
643 if (!mi->groups[group].supported)
644 continue;
645
646 if (minstrel_mcs_groups[group].streams >
647 minstrel_mcs_groups[orig_group].streams)
648 continue;
649
650 if (primary)
Thomas Huehn59358392014-09-09 23:22:14 +0200651 *idx = mi->groups[group].max_group_tp_rate[0];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200652 else
Thomas Huehn59358392014-09-09 23:22:14 +0200653 *idx = mi->groups[group].max_group_tp_rate[1];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200654 break;
655 }
656}
657
658static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100659minstrel_aggr_check(struct ieee80211_sta *pubsta, struct sk_buff *skb)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200660{
661 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
662 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
663 u16 tid;
664
Felix Fietkau75769c82014-11-16 00:27:55 +0100665 if (skb_get_queue_mapping(skb) == IEEE80211_AC_VO)
666 return;
667
Felix Fietkauec8aa662010-05-13 16:48:03 +0200668 if (unlikely(!ieee80211_is_data_qos(hdr->frame_control)))
669 return;
670
Johannes Berge133fae2013-08-22 08:36:41 +0200671 if (unlikely(skb->protocol == cpu_to_be16(ETH_P_PAE)))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200672 return;
673
674 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
Johannes Berga622ab72010-06-10 10:21:39 +0200675 if (likely(sta->ampdu_mlme.tid_tx[tid]))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200676 return;
677
Sujith Manoharanbd2ce6e2010-12-15 07:47:10 +0530678 ieee80211_start_tx_ba_session(pubsta, tid, 5000);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200679}
680
681static void
682minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
683 struct ieee80211_sta *sta, void *priv_sta,
Felix Fietkau63558a62014-11-19 20:08:10 +0100684 struct ieee80211_tx_info *info)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200685{
686 struct minstrel_ht_sta_priv *msp = priv_sta;
687 struct minstrel_ht_sta *mi = &msp->ht;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200688 struct ieee80211_tx_rate *ar = info->status.rates;
689 struct minstrel_rate_stats *rate, *rate2;
690 struct minstrel_priv *mp = priv;
Felix Fietkaua8566662013-04-22 16:14:42 +0200691 bool last, update = false;
Johannes Berga544ab72012-11-13 21:36:27 +0100692 int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200693
694 if (!msp->is_ht)
Felix Fietkau63558a62014-11-19 20:08:10 +0100695 return mac80211_minstrel.tx_status_noskb(priv, sband, sta,
696 &msp->legacy, info);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200697
698 /* This packet was aggregated but doesn't carry status info */
699 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
700 !(info->flags & IEEE80211_TX_STAT_AMPDU))
701 return;
702
Björn Smedman15d46f32010-10-10 22:14:25 +0200703 if (!(info->flags & IEEE80211_TX_STAT_AMPDU)) {
704 info->status.ampdu_ack_len =
705 (info->flags & IEEE80211_TX_STAT_ACK ? 1 : 0);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200706 info->status.ampdu_len = 1;
707 }
708
709 mi->ampdu_packets++;
710 mi->ampdu_len += info->status.ampdu_len;
711
712 if (!mi->sample_wait && !mi->sample_tries && mi->sample_count > 0) {
Felix Fietkauc7317e42010-10-21 02:47:25 +0200713 mi->sample_wait = 16 + 2 * MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkau52c00a32013-03-05 14:20:19 +0100714 mi->sample_tries = 1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200715 mi->sample_count--;
716 }
717
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800718 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200719 mi->sample_packets += info->status.ampdu_len;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200720
Felix Fietkaua0497f92013-02-13 10:51:08 +0100721 last = !minstrel_ht_txstat_valid(mp, &ar[0]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200722 for (i = 0; !last; i++) {
723 last = (i == IEEE80211_TX_MAX_RATES - 1) ||
Felix Fietkaua0497f92013-02-13 10:51:08 +0100724 !minstrel_ht_txstat_valid(mp, &ar[i + 1]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200725
Felix Fietkaua0497f92013-02-13 10:51:08 +0100726 rate = minstrel_ht_get_stats(mp, mi, &ar[i]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200727
Björn Smedman15d46f32010-10-10 22:14:25 +0200728 if (last)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200729 rate->success += info->status.ampdu_ack_len;
730
731 rate->attempts += ar[i].count * info->status.ampdu_len;
732 }
733
734 /*
735 * check for sudden death of spatial multiplexing,
736 * downgrade to a lower number of streams if necessary.
737 */
Thomas Huehn59358392014-09-09 23:22:14 +0200738 rate = minstrel_get_ratestats(mi, mi->max_tp_rate[0]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200739 if (rate->attempts > 30 &&
740 MINSTREL_FRAC(rate->success, rate->attempts) <
Felix Fietkaua8566662013-04-22 16:14:42 +0200741 MINSTREL_FRAC(20, 100)) {
Thomas Huehn59358392014-09-09 23:22:14 +0200742 minstrel_downgrade_rate(mi, &mi->max_tp_rate[0], true);
Felix Fietkaua8566662013-04-22 16:14:42 +0200743 update = true;
744 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200745
Thomas Huehn59358392014-09-09 23:22:14 +0200746 rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate[1]);
Ming Leiecc3d5a2010-07-01 23:19:50 +0800747 if (rate2->attempts > 30 &&
748 MINSTREL_FRAC(rate2->success, rate2->attempts) <
Felix Fietkaua8566662013-04-22 16:14:42 +0200749 MINSTREL_FRAC(20, 100)) {
Thomas Huehn59358392014-09-09 23:22:14 +0200750 minstrel_downgrade_rate(mi, &mi->max_tp_rate[1], false);
Felix Fietkaua8566662013-04-22 16:14:42 +0200751 update = true;
752 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200753
Thomas Huehn91340732015-03-24 21:09:39 +0100754 if (time_after(jiffies, mi->last_stats_update +
755 (mp->update_interval / 2 * HZ) / 1000)) {
Felix Fietkaua8566662013-04-22 16:14:42 +0200756 update = true;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200757 minstrel_ht_update_stats(mp, mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200758 }
Felix Fietkaua8566662013-04-22 16:14:42 +0200759
760 if (update)
761 minstrel_ht_update_rates(mp, mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200762}
763
764static void
765minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
766 int index)
767{
Thomas Huehn91340732015-03-24 21:09:39 +0100768 struct minstrel_rate_stats *mrs;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200769 const struct mcs_group *group;
770 unsigned int tx_time, tx_time_rtscts, tx_time_data;
771 unsigned int cw = mp->cw_min;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700772 unsigned int ctime = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200773 unsigned int t_slot = 9; /* FIXME */
774 unsigned int ampdu_len = MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100775 unsigned int overhead = 0, overhead_rtscts = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200776
Thomas Huehn91340732015-03-24 21:09:39 +0100777 mrs = minstrel_get_ratestats(mi, index);
778 if (mrs->prob_ewma < MINSTREL_FRAC(1, 10)) {
779 mrs->retry_count = 1;
780 mrs->retry_count_rtscts = 1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200781 return;
782 }
783
Thomas Huehn91340732015-03-24 21:09:39 +0100784 mrs->retry_count = 2;
785 mrs->retry_count_rtscts = 2;
786 mrs->retry_updated = true;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200787
788 group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
Felix Fietkaued97a132013-03-02 21:20:12 +0100789 tx_time_data = group->duration[index % MCS_GROUP_RATES] * ampdu_len / 1000;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700790
791 /* Contention time for first 2 tries */
792 ctime = (t_slot * cw) >> 1;
793 cw = min((cw << 1) | 1, mp->cw_max);
794 ctime += (t_slot * cw) >> 1;
795 cw = min((cw << 1) | 1, mp->cw_max);
796
Felix Fietkaua0497f92013-02-13 10:51:08 +0100797 if (index / MCS_GROUP_RATES != MINSTREL_CCK_GROUP) {
798 overhead = mi->overhead;
799 overhead_rtscts = mi->overhead_rtscts;
800 }
801
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700802 /* Total TX time for data and Contention after first 2 tries */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100803 tx_time = ctime + 2 * (overhead + tx_time_data);
804 tx_time_rtscts = ctime + 2 * (overhead_rtscts + tx_time_data);
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700805
806 /* See how many more tries we can fit inside segment size */
Felix Fietkauec8aa662010-05-13 16:48:03 +0200807 do {
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700808 /* Contention time for this try */
809 ctime = (t_slot * cw) >> 1;
810 cw = min((cw << 1) | 1, mp->cw_max);
811
812 /* Total TX time after this try */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100813 tx_time += ctime + overhead + tx_time_data;
814 tx_time_rtscts += ctime + overhead_rtscts + tx_time_data;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700815
Felix Fietkauec8aa662010-05-13 16:48:03 +0200816 if (tx_time_rtscts < mp->segment_size)
Thomas Huehn91340732015-03-24 21:09:39 +0100817 mrs->retry_count_rtscts++;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200818 } while ((tx_time < mp->segment_size) &&
Thomas Huehn91340732015-03-24 21:09:39 +0100819 (++mrs->retry_count < mp->max_retry));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200820}
821
822
823static void
824minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
Felix Fietkaua8566662013-04-22 16:14:42 +0200825 struct ieee80211_sta_rates *ratetbl, int offset, int index)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200826{
827 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
Thomas Huehn91340732015-03-24 21:09:39 +0100828 struct minstrel_rate_stats *mrs;
Felix Fietkaua8566662013-04-22 16:14:42 +0200829 u8 idx;
Karl Beldan3ec373c2014-10-20 15:46:01 +0200830 u16 flags = group->flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200831
Thomas Huehn91340732015-03-24 21:09:39 +0100832 mrs = minstrel_get_ratestats(mi, index);
833 if (!mrs->retry_updated)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200834 minstrel_calc_retransmit(mp, mi, index);
835
Thomas Huehn91340732015-03-24 21:09:39 +0100836 if (mrs->prob_ewma < MINSTREL_FRAC(20, 100) || !mrs->retry_count) {
Felix Fietkaua8566662013-04-22 16:14:42 +0200837 ratetbl->rate[offset].count = 2;
838 ratetbl->rate[offset].count_rts = 2;
839 ratetbl->rate[offset].count_cts = 2;
840 } else {
Thomas Huehn91340732015-03-24 21:09:39 +0100841 ratetbl->rate[offset].count = mrs->retry_count;
842 ratetbl->rate[offset].count_cts = mrs->retry_count;
843 ratetbl->rate[offset].count_rts = mrs->retry_count_rtscts;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100844 }
845
Karl Beldan3ec373c2014-10-20 15:46:01 +0200846 if (index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP)
Felix Fietkaua8566662013-04-22 16:14:42 +0200847 idx = mp->cck_rates[index % ARRAY_SIZE(mp->cck_rates)];
Karl Beldan92082472014-10-21 10:38:38 +0200848 else if (flags & IEEE80211_TX_RC_VHT_MCS)
849 idx = ((group->streams - 1) << 4) |
850 ((index % MCS_GROUP_RATES) & 0xF);
Karl Beldan3ec373c2014-10-20 15:46:01 +0200851 else
Karl Beldan7a5e3fa2013-11-11 13:12:55 +0100852 idx = index % MCS_GROUP_RATES + (group->streams - 1) * 8;
Felix Fietkaua8566662013-04-22 16:14:42 +0200853
854 if (offset > 0) {
855 ratetbl->rate[offset].count = ratetbl->rate[offset].count_rts;
856 flags |= IEEE80211_TX_RC_USE_RTS_CTS;
857 }
858
859 ratetbl->rate[offset].idx = idx;
860 ratetbl->rate[offset].flags = flags;
861}
862
863static void
864minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
865{
866 struct ieee80211_sta_rates *rates;
867 int i = 0;
868
869 rates = kzalloc(sizeof(*rates), GFP_ATOMIC);
870 if (!rates)
871 return;
872
Thomas Huehn59358392014-09-09 23:22:14 +0200873 /* Start with max_tp_rate[0] */
874 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_tp_rate[0]);
Felix Fietkaua8566662013-04-22 16:14:42 +0200875
876 if (mp->hw->max_rates >= 3) {
Thomas Huehn59358392014-09-09 23:22:14 +0200877 /* At least 3 tx rates supported, use max_tp_rate[1] next */
878 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_tp_rate[1]);
Felix Fietkaua8566662013-04-22 16:14:42 +0200879 }
880
881 if (mp->hw->max_rates >= 2) {
882 /*
883 * At least 2 tx rates supported, use max_prob_rate next */
884 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_prob_rate);
885 }
886
887 rates->rate[i].idx = -1;
888 rate_control_set_rates(mp->hw, mi->sta, rates);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200889}
890
891static inline int
892minstrel_get_duration(int index)
893{
894 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
895 return group->duration[index % MCS_GROUP_RATES];
896}
897
898static int
899minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
900{
Thomas Huehn91340732015-03-24 21:09:39 +0100901 struct minstrel_rate_stats *mrs;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200902 struct minstrel_mcs_group_data *mg;
Thomas Huehn59358392014-09-09 23:22:14 +0200903 unsigned int sample_dur, sample_group, cur_max_tp_streams;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200904 int sample_idx = 0;
905
906 if (mi->sample_wait > 0) {
907 mi->sample_wait--;
908 return -1;
909 }
910
911 if (!mi->sample_tries)
912 return -1;
913
Felix Fietkau965237a2013-03-03 12:49:51 +0100914 sample_group = mi->sample_group;
Karl Beldanf12140c2013-11-11 13:10:49 +0100915 mg = &mi->groups[sample_group];
916 sample_idx = sample_table[mg->column][mg->index];
Thomas Huehn91340732015-03-24 21:09:39 +0100917 minstrel_set_next_sample_idx(mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200918
Karl Beldanf12140c2013-11-11 13:10:49 +0100919 if (!(mg->supported & BIT(sample_idx)))
920 return -1;
921
Thomas Huehn91340732015-03-24 21:09:39 +0100922 mrs = &mg->rates[sample_idx];
Karl Beldanf12140c2013-11-11 13:10:49 +0100923 sample_idx += sample_group * MCS_GROUP_RATES;
924
Felix Fietkauec8aa662010-05-13 16:48:03 +0200925 /*
Helmut Schaaba6fa292012-03-14 13:31:11 +0100926 * Sampling might add some overhead (RTS, no aggregation)
927 * to the frame. Hence, don't use sampling for the currently
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100928 * used rates.
Helmut Schaaba6fa292012-03-14 13:31:11 +0100929 */
Thomas Huehn59358392014-09-09 23:22:14 +0200930 if (sample_idx == mi->max_tp_rate[0] ||
931 sample_idx == mi->max_tp_rate[1] ||
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100932 sample_idx == mi->max_prob_rate)
Helmut Schaaba6fa292012-03-14 13:31:11 +0100933 return -1;
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100934
Helmut Schaaba6fa292012-03-14 13:31:11 +0100935 /*
Felix Fietkaubc96f242013-03-16 17:00:26 +0100936 * Do not sample if the probability is already higher than 95%
937 * to avoid wasting airtime.
Felix Fietkauec8aa662010-05-13 16:48:03 +0200938 */
Thomas Huehn91340732015-03-24 21:09:39 +0100939 if (mrs->prob_ewma > MINSTREL_FRAC(95, 100))
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800940 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200941
942 /*
943 * Make sure that lower rates get sampled only occasionally,
944 * if the link is working perfectly.
945 */
Thomas Huehn59358392014-09-09 23:22:14 +0200946
947 cur_max_tp_streams = minstrel_mcs_groups[mi->max_tp_rate[0] /
948 MCS_GROUP_RATES].streams;
Felix Fietkau965237a2013-03-03 12:49:51 +0100949 sample_dur = minstrel_get_duration(sample_idx);
Thomas Huehn59358392014-09-09 23:22:14 +0200950 if (sample_dur >= minstrel_get_duration(mi->max_tp_rate[1]) &&
951 (cur_max_tp_streams - 1 <
Felix Fietkau965237a2013-03-03 12:49:51 +0100952 minstrel_mcs_groups[sample_group].streams ||
953 sample_dur >= minstrel_get_duration(mi->max_prob_rate))) {
Thomas Huehn91340732015-03-24 21:09:39 +0100954 if (mrs->sample_skipped < 20)
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800955 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200956
957 if (mi->sample_slow++ > 2)
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800958 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200959 }
Felix Fietkau098b8af2013-03-03 12:49:52 +0100960 mi->sample_tries--;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200961
962 return sample_idx;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200963}
964
965static void
Felix Fietkaua0497f92013-02-13 10:51:08 +0100966minstrel_ht_check_cck_shortpreamble(struct minstrel_priv *mp,
967 struct minstrel_ht_sta *mi, bool val)
968{
969 u8 supported = mi->groups[MINSTREL_CCK_GROUP].supported;
970
971 if (!supported || !mi->cck_supported_short)
972 return;
973
974 if (supported & (mi->cck_supported_short << (val * 4)))
975 return;
976
977 supported ^= mi->cck_supported_short | (mi->cck_supported_short << 4);
978 mi->groups[MINSTREL_CCK_GROUP].supported = supported;
979}
980
981static void
Felix Fietkauec8aa662010-05-13 16:48:03 +0200982minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
983 struct ieee80211_tx_rate_control *txrc)
984{
Felix Fietkaua8566662013-04-22 16:14:42 +0200985 const struct mcs_group *sample_group;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200986 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
Felix Fietkaua8566662013-04-22 16:14:42 +0200987 struct ieee80211_tx_rate *rate = &info->status.rates[0];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200988 struct minstrel_ht_sta_priv *msp = priv_sta;
989 struct minstrel_ht_sta *mi = &msp->ht;
990 struct minstrel_priv *mp = priv;
991 int sample_idx;
992
993 if (rate_control_send_low(sta, priv_sta, txrc))
994 return;
995
996 if (!msp->is_ht)
997 return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
998
Felix Fietkau95943422014-11-19 20:08:07 +0100999 if (!(info->flags & IEEE80211_TX_CTL_AMPDU) &&
1000 mi->max_prob_rate / MCS_GROUP_RATES != MINSTREL_CCK_GROUP)
1001 minstrel_aggr_check(sta, txrc->skb);
1002
Felix Fietkauec8aa662010-05-13 16:48:03 +02001003 info->flags |= mi->tx_flags;
Felix Fietkaua0497f92013-02-13 10:51:08 +01001004 minstrel_ht_check_cck_shortpreamble(mp, mi, txrc->short_preamble);
Helmut Schaa6de062c2011-08-01 11:32:53 +02001005
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +02001006#ifdef CONFIG_MAC80211_DEBUGFS
1007 if (mp->fixed_rate_idx != -1)
1008 return;
1009#endif
1010
Helmut Schaa6de062c2011-08-01 11:32:53 +02001011 /* Don't use EAPOL frames for sampling on non-mrr hw */
1012 if (mp->hw->max_rates == 1 &&
Johannes Bergaf61a162013-07-02 18:09:12 +02001013 (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO))
Helmut Schaa6de062c2011-08-01 11:32:53 +02001014 sample_idx = -1;
1015 else
1016 sample_idx = minstrel_get_sample_rate(mp, mi);
Zefir Kurtisi24f75802011-05-20 20:29:17 +02001017
Felix Fietkauec8aa662010-05-13 16:48:03 +02001018 mi->total_packets++;
1019
1020 /* wraparound */
1021 if (mi->total_packets == ~0) {
1022 mi->total_packets = 0;
1023 mi->sample_packets = 0;
1024 }
Felix Fietkaua8566662013-04-22 16:14:42 +02001025
1026 if (sample_idx < 0)
1027 return;
1028
1029 sample_group = &minstrel_mcs_groups[sample_idx / MCS_GROUP_RATES];
1030 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Felix Fietkau1cd15852013-06-28 21:04:35 +02001031 rate->count = 1;
1032
1033 if (sample_idx / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) {
1034 int idx = sample_idx % ARRAY_SIZE(mp->cck_rates);
1035 rate->idx = mp->cck_rates[idx];
Karl Beldan92082472014-10-21 10:38:38 +02001036 } else if (sample_group->flags & IEEE80211_TX_RC_VHT_MCS) {
1037 ieee80211_rate_set_vht(rate, sample_idx % MCS_GROUP_RATES,
1038 sample_group->streams);
Karl Beldan3ec373c2014-10-20 15:46:01 +02001039 } else {
1040 rate->idx = sample_idx % MCS_GROUP_RATES +
1041 (sample_group->streams - 1) * 8;
Felix Fietkau1cd15852013-06-28 21:04:35 +02001042 }
1043
Karl Beldan3ec373c2014-10-20 15:46:01 +02001044 rate->flags = sample_group->flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001045}
1046
1047static void
Felix Fietkaua0497f92013-02-13 10:51:08 +01001048minstrel_ht_update_cck(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
1049 struct ieee80211_supported_band *sband,
1050 struct ieee80211_sta *sta)
1051{
1052 int i;
1053
1054 if (sband->band != IEEE80211_BAND_2GHZ)
1055 return;
1056
Felix Fietkau2dfca312013-08-20 19:43:54 +02001057 if (!(mp->hw->flags & IEEE80211_HW_SUPPORTS_HT_CCK_RATES))
1058 return;
1059
Felix Fietkaua0497f92013-02-13 10:51:08 +01001060 mi->cck_supported = 0;
1061 mi->cck_supported_short = 0;
1062 for (i = 0; i < 4; i++) {
1063 if (!rate_supported(sta, sband->band, mp->cck_rates[i]))
1064 continue;
1065
1066 mi->cck_supported |= BIT(i);
1067 if (sband->bitrates[i].flags & IEEE80211_RATE_SHORT_PREAMBLE)
1068 mi->cck_supported_short |= BIT(i);
1069 }
1070
1071 mi->groups[MINSTREL_CCK_GROUP].supported = mi->cck_supported;
1072}
1073
1074static void
Felix Fietkauec8aa662010-05-13 16:48:03 +02001075minstrel_ht_update_caps(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001076 struct cfg80211_chan_def *chandef,
Johannes Berg64f68e52012-03-28 10:58:37 +02001077 struct ieee80211_sta *sta, void *priv_sta)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001078{
1079 struct minstrel_priv *mp = priv;
1080 struct minstrel_ht_sta_priv *msp = priv_sta;
1081 struct minstrel_ht_sta *mi = &msp->ht;
1082 struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001083 u16 sta_cap = sta->ht_cap.cap;
Karl Beldan92082472014-10-21 10:38:38 +02001084 struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap;
1085 int use_vht;
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001086 int n_supported = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001087 int ack_dur;
1088 int stbc;
1089 int i;
1090
1091 /* fall back to the old minstrel for legacy stations */
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001092 if (!sta->ht_cap.ht_supported)
1093 goto use_legacy;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001094
Karl Beldan8a0ee4f2014-10-20 15:46:00 +02001095 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) != MINSTREL_GROUPS_NB);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001096
Karl Beldan92082472014-10-21 10:38:38 +02001097#ifdef CONFIG_MAC80211_RC_MINSTREL_VHT
1098 if (vht_cap->vht_supported)
1099 use_vht = vht_cap->vht_mcs.tx_mcs_map != cpu_to_le16(~0);
1100 else
1101#endif
1102 use_vht = 0;
1103
Felix Fietkauec8aa662010-05-13 16:48:03 +02001104 msp->is_ht = true;
1105 memset(mi, 0, sizeof(*mi));
Felix Fietkaua8566662013-04-22 16:14:42 +02001106
1107 mi->sta = sta;
Thomas Huehn91340732015-03-24 21:09:39 +01001108 mi->last_stats_update = jiffies;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001109
Simon Wunderlich438b61b2013-07-08 16:55:51 +02001110 ack_dur = ieee80211_frame_duration(sband->band, 10, 60, 1, 1, 0);
1111 mi->overhead = ieee80211_frame_duration(sband->band, 0, 60, 1, 1, 0);
1112 mi->overhead += ack_dur;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001113 mi->overhead_rtscts = mi->overhead + 2 * ack_dur;
1114
1115 mi->avg_ampdu_len = MINSTREL_FRAC(1, 1);
1116
1117 /* When using MRR, sample more on the first attempt, without delay */
1118 if (mp->has_mrr) {
1119 mi->sample_count = 16;
1120 mi->sample_wait = 0;
1121 } else {
1122 mi->sample_count = 8;
1123 mi->sample_wait = 8;
1124 }
1125 mi->sample_tries = 4;
1126
Karl Beldan92082472014-10-21 10:38:38 +02001127 /* TODO tx_flags for vht - ATM the RC API is not fine-grained enough */
1128 if (!use_vht) {
1129 stbc = (sta_cap & IEEE80211_HT_CAP_RX_STBC) >>
1130 IEEE80211_HT_CAP_RX_STBC_SHIFT;
1131 mi->tx_flags |= stbc << IEEE80211_TX_CTL_STBC_SHIFT;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001132
Karl Beldan92082472014-10-21 10:38:38 +02001133 if (sta_cap & IEEE80211_HT_CAP_LDPC_CODING)
1134 mi->tx_flags |= IEEE80211_TX_CTL_LDPC;
1135 }
Felix Fietkauec8aa662010-05-13 16:48:03 +02001136
Felix Fietkauec8aa662010-05-13 16:48:03 +02001137 for (i = 0; i < ARRAY_SIZE(mi->groups); i++) {
Karl Beldan3ec373c2014-10-20 15:46:01 +02001138 u32 gflags = minstrel_mcs_groups[i].flags;
Karl Beldan92082472014-10-21 10:38:38 +02001139 int bw, nss;
Karl Beldan3ec373c2014-10-20 15:46:01 +02001140
Felix Fietkauec8aa662010-05-13 16:48:03 +02001141 mi->groups[i].supported = 0;
Felix Fietkaua0497f92013-02-13 10:51:08 +01001142 if (i == MINSTREL_CCK_GROUP) {
1143 minstrel_ht_update_cck(mp, mi, sband, sta);
1144 continue;
1145 }
1146
Karl Beldan3ec373c2014-10-20 15:46:01 +02001147 if (gflags & IEEE80211_TX_RC_SHORT_GI) {
1148 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH) {
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001149 if (!(sta_cap & IEEE80211_HT_CAP_SGI_40))
1150 continue;
1151 } else {
1152 if (!(sta_cap & IEEE80211_HT_CAP_SGI_20))
1153 continue;
1154 }
Felix Fietkauec8aa662010-05-13 16:48:03 +02001155 }
1156
Karl Beldan3ec373c2014-10-20 15:46:01 +02001157 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH &&
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001158 sta->bandwidth < IEEE80211_STA_RX_BW_40)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001159 continue;
1160
Karl Beldan92082472014-10-21 10:38:38 +02001161 nss = minstrel_mcs_groups[i].streams;
1162
Helmut Schaae9219772012-03-09 14:13:45 +01001163 /* Mark MCS > 7 as unsupported if STA is in static SMPS mode */
Karl Beldan92082472014-10-21 10:38:38 +02001164 if (sta->smps_mode == IEEE80211_SMPS_STATIC && nss > 1)
Helmut Schaae9219772012-03-09 14:13:45 +01001165 continue;
1166
Karl Beldan92082472014-10-21 10:38:38 +02001167 /* HT rate */
1168 if (gflags & IEEE80211_TX_RC_MCS) {
1169#ifdef CONFIG_MAC80211_RC_MINSTREL_VHT
Karl Beldan9ffe9042014-10-24 14:34:49 +02001170 if (use_vht && minstrel_vht_only)
Karl Beldan92082472014-10-21 10:38:38 +02001171 continue;
1172#endif
1173 mi->groups[i].supported = mcs->rx_mask[nss - 1];
1174 if (mi->groups[i].supported)
1175 n_supported++;
1176 continue;
1177 }
1178
1179 /* VHT rate */
1180 if (!vht_cap->vht_supported ||
1181 WARN_ON(!(gflags & IEEE80211_TX_RC_VHT_MCS)) ||
1182 WARN_ON(gflags & IEEE80211_TX_RC_160_MHZ_WIDTH))
1183 continue;
1184
1185 if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH) {
1186 if (sta->bandwidth < IEEE80211_STA_RX_BW_80 ||
1187 ((gflags & IEEE80211_TX_RC_SHORT_GI) &&
1188 !(vht_cap->cap & IEEE80211_VHT_CAP_SHORT_GI_80))) {
1189 continue;
1190 }
1191 }
1192
1193 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
1194 bw = BW_40;
1195 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
1196 bw = BW_80;
1197 else
1198 bw = BW_20;
1199
1200 mi->groups[i].supported = minstrel_get_valid_vht_rates(bw, nss,
1201 vht_cap->vht_mcs.tx_mcs_map);
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001202
1203 if (mi->groups[i].supported)
1204 n_supported++;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001205 }
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001206
1207 if (!n_supported)
1208 goto use_legacy;
1209
Felix Fietkaua8566662013-04-22 16:14:42 +02001210 /* create an initial rate table with the lowest supported rates */
Karl Beldana3647362013-04-18 14:26:21 +02001211 minstrel_ht_update_stats(mp, mi);
Felix Fietkaua8566662013-04-22 16:14:42 +02001212 minstrel_ht_update_rates(mp, mi);
Karl Beldana3647362013-04-18 14:26:21 +02001213
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001214 return;
1215
1216use_legacy:
1217 msp->is_ht = false;
1218 memset(&msp->legacy, 0, sizeof(msp->legacy));
1219 msp->legacy.r = msp->ratelist;
1220 msp->legacy.sample_table = msp->sample_table;
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001221 return mac80211_minstrel.rate_init(priv, sband, chandef, sta,
1222 &msp->legacy);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001223}
1224
1225static void
1226minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001227 struct cfg80211_chan_def *chandef,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001228 struct ieee80211_sta *sta, void *priv_sta)
1229{
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001230 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001231}
1232
1233static void
1234minstrel_ht_rate_update(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001235 struct cfg80211_chan_def *chandef,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001236 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berg64f68e52012-03-28 10:58:37 +02001237 u32 changed)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001238{
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001239 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001240}
1241
1242static void *
1243minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
1244{
1245 struct ieee80211_supported_band *sband;
1246 struct minstrel_ht_sta_priv *msp;
1247 struct minstrel_priv *mp = priv;
1248 struct ieee80211_hw *hw = mp->hw;
1249 int max_rates = 0;
1250 int i;
1251
1252 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
1253 sband = hw->wiphy->bands[i];
1254 if (sband && sband->n_bitrates > max_rates)
1255 max_rates = sband->n_bitrates;
1256 }
1257
Thomas Huehn472dd352012-06-29 06:26:27 -07001258 msp = kzalloc(sizeof(*msp), gfp);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001259 if (!msp)
1260 return NULL;
1261
1262 msp->ratelist = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
1263 if (!msp->ratelist)
1264 goto error;
1265
1266 msp->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
1267 if (!msp->sample_table)
1268 goto error1;
1269
1270 return msp;
1271
1272error1:
Dan Carpenter7e988012010-07-22 13:14:19 +02001273 kfree(msp->ratelist);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001274error:
1275 kfree(msp);
1276 return NULL;
1277}
1278
1279static void
1280minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
1281{
1282 struct minstrel_ht_sta_priv *msp = priv_sta;
1283
1284 kfree(msp->sample_table);
1285 kfree(msp->ratelist);
1286 kfree(msp);
1287}
1288
1289static void *
1290minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
1291{
1292 return mac80211_minstrel.alloc(hw, debugfsdir);
1293}
1294
1295static void
1296minstrel_ht_free(void *priv)
1297{
1298 mac80211_minstrel.free(priv);
1299}
1300
Antonio Quartullicca674d2014-05-19 21:53:20 +02001301static u32 minstrel_ht_get_expected_throughput(void *priv_sta)
1302{
1303 struct minstrel_ht_sta_priv *msp = priv_sta;
1304 struct minstrel_ht_sta *mi = &msp->ht;
1305 int i, j;
1306
1307 if (!msp->is_ht)
1308 return mac80211_minstrel.get_expected_throughput(priv_sta);
1309
Thomas Huehn59358392014-09-09 23:22:14 +02001310 i = mi->max_tp_rate[0] / MCS_GROUP_RATES;
1311 j = mi->max_tp_rate[0] % MCS_GROUP_RATES;
Antonio Quartullicca674d2014-05-19 21:53:20 +02001312
1313 /* convert cur_tp from pkt per second in kbps */
1314 return mi->groups[i].rates[j].cur_tp * AVG_PKT_SIZE * 8 / 1024;
1315}
1316
Johannes Berg631ad702014-01-20 23:29:34 +01001317static const struct rate_control_ops mac80211_minstrel_ht = {
Felix Fietkauec8aa662010-05-13 16:48:03 +02001318 .name = "minstrel_ht",
Felix Fietkau63558a62014-11-19 20:08:10 +01001319 .tx_status_noskb = minstrel_ht_tx_status,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001320 .get_rate = minstrel_ht_get_rate,
1321 .rate_init = minstrel_ht_rate_init,
1322 .rate_update = minstrel_ht_rate_update,
1323 .alloc_sta = minstrel_ht_alloc_sta,
1324 .free_sta = minstrel_ht_free_sta,
1325 .alloc = minstrel_ht_alloc,
1326 .free = minstrel_ht_free,
1327#ifdef CONFIG_MAC80211_DEBUGFS
1328 .add_sta_debugfs = minstrel_ht_add_sta_debugfs,
1329 .remove_sta_debugfs = minstrel_ht_remove_sta_debugfs,
1330#endif
Antonio Quartullicca674d2014-05-19 21:53:20 +02001331 .get_expected_throughput = minstrel_ht_get_expected_throughput,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001332};
1333
1334
Johannes Bergf6e1a732014-01-21 00:32:52 +01001335static void __init init_sample_table(void)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001336{
1337 int col, i, new_idx;
1338 u8 rnd[MCS_GROUP_RATES];
1339
1340 memset(sample_table, 0xff, sizeof(sample_table));
1341 for (col = 0; col < SAMPLE_COLUMNS; col++) {
Karl Beldanf7d8ad82013-11-13 10:54:19 +01001342 prandom_bytes(rnd, sizeof(rnd));
Felix Fietkauec8aa662010-05-13 16:48:03 +02001343 for (i = 0; i < MCS_GROUP_RATES; i++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +02001344 new_idx = (i + rnd[i]) % MCS_GROUP_RATES;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001345 while (sample_table[col][new_idx] != 0xff)
1346 new_idx = (new_idx + 1) % MCS_GROUP_RATES;
1347
1348 sample_table[col][new_idx] = i;
1349 }
1350 }
1351}
1352
1353int __init
1354rc80211_minstrel_ht_init(void)
1355{
1356 init_sample_table();
1357 return ieee80211_rate_control_register(&mac80211_minstrel_ht);
1358}
1359
1360void
1361rc80211_minstrel_ht_exit(void)
1362{
1363 ieee80211_rate_control_unregister(&mac80211_minstrel_ht);
1364}