blob: 2641dc8aac13432011ced5fb28695ddd77e39aae [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
20#define AVG_PKT_SIZE 1200
Felix Fietkauec8aa662010-05-13 16:48:03 +020021
22/* Number of bits for an average sized packet */
23#define MCS_NBITS (AVG_PKT_SIZE << 3)
24
25/* Number of symbols for a packet with (bps) bits per symbol */
Johannes Berg00591ce2014-05-19 11:24:19 +020026#define MCS_NSYMS(bps) DIV_ROUND_UP(MCS_NBITS, (bps))
Felix Fietkauec8aa662010-05-13 16:48:03 +020027
Felix Fietkaued97a132013-03-02 21:20:12 +010028/* Transmission time (nanoseconds) for a packet containing (syms) symbols */
Felix Fietkauec8aa662010-05-13 16:48:03 +020029#define MCS_SYMBOL_TIME(sgi, syms) \
30 (sgi ? \
Felix Fietkaued97a132013-03-02 21:20:12 +010031 ((syms) * 18000 + 4000) / 5 : /* syms * 3.6 us */ \
32 ((syms) * 1000) << 2 /* syms * 4 us */ \
Felix Fietkauec8aa662010-05-13 16:48:03 +020033 )
34
35/* Transmit duration for the raw data part of an average sized packet */
36#define MCS_DURATION(streams, sgi, bps) MCS_SYMBOL_TIME(sgi, MCS_NSYMS((streams) * (bps)))
37
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020038#define BW_20 0
39#define BW_40 1
Karl Beldan92082472014-10-21 10:38:38 +020040#define BW_80 2
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020041
Helmut Schaaa5f69d942011-11-14 15:28:20 +010042/*
43 * Define group sort order: HT40 -> SGI -> #streams
44 */
45#define GROUP_IDX(_streams, _sgi, _ht40) \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020046 MINSTREL_HT_GROUP_0 + \
Helmut Schaaa5f69d942011-11-14 15:28:20 +010047 MINSTREL_MAX_STREAMS * 2 * _ht40 + \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +020048 MINSTREL_MAX_STREAMS * _sgi + \
Helmut Schaaa5f69d942011-11-14 15:28:20 +010049 _streams - 1
50
Felix Fietkauec8aa662010-05-13 16:48:03 +020051/* MCS rate information for an MCS group */
Helmut Schaaa5f69d942011-11-14 15:28:20 +010052#define MCS_GROUP(_streams, _sgi, _ht40) \
53 [GROUP_IDX(_streams, _sgi, _ht40)] = { \
Felix Fietkauec8aa662010-05-13 16:48:03 +020054 .streams = _streams, \
55 .flags = \
Karl Beldan3ec373c2014-10-20 15:46:01 +020056 IEEE80211_TX_RC_MCS | \
Felix Fietkauec8aa662010-05-13 16:48:03 +020057 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
58 (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
59 .duration = { \
60 MCS_DURATION(_streams, _sgi, _ht40 ? 54 : 26), \
61 MCS_DURATION(_streams, _sgi, _ht40 ? 108 : 52), \
62 MCS_DURATION(_streams, _sgi, _ht40 ? 162 : 78), \
63 MCS_DURATION(_streams, _sgi, _ht40 ? 216 : 104), \
64 MCS_DURATION(_streams, _sgi, _ht40 ? 324 : 156), \
65 MCS_DURATION(_streams, _sgi, _ht40 ? 432 : 208), \
66 MCS_DURATION(_streams, _sgi, _ht40 ? 486 : 234), \
67 MCS_DURATION(_streams, _sgi, _ht40 ? 540 : 260) \
68 } \
69}
70
Karl Beldan92082472014-10-21 10:38:38 +020071#define VHT_GROUP_IDX(_streams, _sgi, _bw) \
72 (MINSTREL_VHT_GROUP_0 + \
73 MINSTREL_MAX_STREAMS * 2 * (_bw) + \
74 MINSTREL_MAX_STREAMS * (_sgi) + \
75 (_streams) - 1)
76
77#define BW2VBPS(_bw, r3, r2, r1) \
78 (_bw == BW_80 ? r3 : _bw == BW_40 ? r2 : r1)
79
80#define VHT_GROUP(_streams, _sgi, _bw) \
81 [VHT_GROUP_IDX(_streams, _sgi, _bw)] = { \
82 .streams = _streams, \
83 .flags = \
84 IEEE80211_TX_RC_VHT_MCS | \
85 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
86 (_bw == BW_80 ? IEEE80211_TX_RC_80_MHZ_WIDTH : \
87 _bw == BW_40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
88 .duration = { \
89 MCS_DURATION(_streams, _sgi, \
90 BW2VBPS(_bw, 117, 54, 26)), \
91 MCS_DURATION(_streams, _sgi, \
92 BW2VBPS(_bw, 234, 108, 52)), \
93 MCS_DURATION(_streams, _sgi, \
94 BW2VBPS(_bw, 351, 162, 78)), \
95 MCS_DURATION(_streams, _sgi, \
96 BW2VBPS(_bw, 468, 216, 104)), \
97 MCS_DURATION(_streams, _sgi, \
98 BW2VBPS(_bw, 702, 324, 156)), \
99 MCS_DURATION(_streams, _sgi, \
100 BW2VBPS(_bw, 936, 432, 208)), \
101 MCS_DURATION(_streams, _sgi, \
102 BW2VBPS(_bw, 1053, 486, 234)), \
103 MCS_DURATION(_streams, _sgi, \
104 BW2VBPS(_bw, 1170, 540, 260)), \
105 MCS_DURATION(_streams, _sgi, \
106 BW2VBPS(_bw, 1404, 648, 312)), \
107 MCS_DURATION(_streams, _sgi, \
108 BW2VBPS(_bw, 1560, 720, 346)) \
109 } \
110}
111
Felix Fietkaua0497f92013-02-13 10:51:08 +0100112#define CCK_DURATION(_bitrate, _short, _len) \
Felix Fietkaued97a132013-03-02 21:20:12 +0100113 (1000 * (10 /* SIFS */ + \
Weilong Chenf359d3f2013-12-18 15:44:16 +0800114 (_short ? 72 + 24 : 144 + 48) + \
Felix Fietkaued97a132013-03-02 21:20:12 +0100115 (8 * (_len + 4) * 10) / (_bitrate)))
Felix Fietkaua0497f92013-02-13 10:51:08 +0100116
117#define CCK_ACK_DURATION(_bitrate, _short) \
118 (CCK_DURATION((_bitrate > 10 ? 20 : 10), false, 60) + \
119 CCK_DURATION(_bitrate, _short, AVG_PKT_SIZE))
120
121#define CCK_DURATION_LIST(_short) \
122 CCK_ACK_DURATION(10, _short), \
123 CCK_ACK_DURATION(20, _short), \
124 CCK_ACK_DURATION(55, _short), \
125 CCK_ACK_DURATION(110, _short)
126
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200127#define CCK_GROUP \
128 [MINSTREL_CCK_GROUP] = { \
129 .streams = 0, \
Karl Beldan3ec373c2014-10-20 15:46:01 +0200130 .flags = 0, \
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200131 .duration = { \
132 CCK_DURATION_LIST(false), \
133 CCK_DURATION_LIST(true) \
134 } \
Felix Fietkaua0497f92013-02-13 10:51:08 +0100135 }
136
Karl Beldan92082472014-10-21 10:38:38 +0200137#ifdef CONFIG_MAC80211_RC_MINSTREL_VHT
138static bool minstrel_vht_only = true;
139module_param(minstrel_vht_only, bool, 0644);
140MODULE_PARM_DESC(minstrel_vht_only,
141 "Use only VHT rates when VHT is supported by sta.");
142#endif
143
Felix Fietkauec8aa662010-05-13 16:48:03 +0200144/*
145 * To enable sufficiently targeted rate sampling, MCS rates are divided into
146 * groups, based on the number of streams and flags (HT40, SGI) that they
147 * use.
Helmut Schaaa5f69d942011-11-14 15:28:20 +0100148 *
149 * Sortorder has to be fixed for GROUP_IDX macro to be applicable:
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200150 * BW -> SGI -> #streams
Felix Fietkauec8aa662010-05-13 16:48:03 +0200151 */
152const struct mcs_group minstrel_mcs_groups[] = {
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200153 MCS_GROUP(1, 0, BW_20),
154 MCS_GROUP(2, 0, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200155#if MINSTREL_MAX_STREAMS >= 3
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200156 MCS_GROUP(3, 0, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200157#endif
158
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200159 MCS_GROUP(1, 1, BW_20),
160 MCS_GROUP(2, 1, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200161#if MINSTREL_MAX_STREAMS >= 3
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200162 MCS_GROUP(3, 1, BW_20),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200163#endif
164
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200165 MCS_GROUP(1, 0, BW_40),
166 MCS_GROUP(2, 0, BW_40),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200167#if MINSTREL_MAX_STREAMS >= 3
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200168 MCS_GROUP(3, 0, BW_40),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200169#endif
170
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200171 MCS_GROUP(1, 1, BW_40),
172 MCS_GROUP(2, 1, BW_40),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200173#if MINSTREL_MAX_STREAMS >= 3
Karl Beldan8a0ee4f2014-10-20 15:46:00 +0200174 MCS_GROUP(3, 1, BW_40),
Felix Fietkauec8aa662010-05-13 16:48:03 +0200175#endif
Felix Fietkaua0497f92013-02-13 10:51:08 +0100176
Karl Beldan92082472014-10-21 10:38:38 +0200177 CCK_GROUP,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200178
Karl Beldan92082472014-10-21 10:38:38 +0200179#ifdef CONFIG_MAC80211_RC_MINSTREL_VHT
180 VHT_GROUP(1, 0, BW_20),
181 VHT_GROUP(2, 0, BW_20),
182#if MINSTREL_MAX_STREAMS >= 3
183 VHT_GROUP(3, 0, BW_20),
184#endif
185
186 VHT_GROUP(1, 1, BW_20),
187 VHT_GROUP(2, 1, BW_20),
188#if MINSTREL_MAX_STREAMS >= 3
189 VHT_GROUP(3, 1, BW_20),
190#endif
191
192 VHT_GROUP(1, 0, BW_40),
193 VHT_GROUP(2, 0, BW_40),
194#if MINSTREL_MAX_STREAMS >= 3
195 VHT_GROUP(3, 0, BW_40),
196#endif
197
198 VHT_GROUP(1, 1, BW_40),
199 VHT_GROUP(2, 1, BW_40),
200#if MINSTREL_MAX_STREAMS >= 3
201 VHT_GROUP(3, 1, BW_40),
202#endif
203
204 VHT_GROUP(1, 0, BW_80),
205 VHT_GROUP(2, 0, BW_80),
206#if MINSTREL_MAX_STREAMS >= 3
207 VHT_GROUP(3, 0, BW_80),
208#endif
209
210 VHT_GROUP(1, 1, BW_80),
211 VHT_GROUP(2, 1, BW_80),
212#if MINSTREL_MAX_STREAMS >= 3
213 VHT_GROUP(3, 1, BW_80),
214#endif
215#endif
216};
Felix Fietkaua0497f92013-02-13 10:51:08 +0100217
Johannes Bergf6e1a732014-01-21 00:32:52 +0100218static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES] __read_mostly;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200219
Felix Fietkaua8566662013-04-22 16:14:42 +0200220static void
221minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi);
222
Felix Fietkauec8aa662010-05-13 16:48:03 +0200223/*
Karl Beldan92082472014-10-21 10:38:38 +0200224 * Some VHT MCSes are invalid (when Ndbps / Nes is not an integer)
225 * e.g for MCS9@20MHzx1Nss: Ndbps=8x52*(5/6) Nes=1
226 *
227 * Returns the valid mcs map for struct minstrel_mcs_group_data.supported
228 */
229static u16
230minstrel_get_valid_vht_rates(int bw, int nss, __le16 mcs_map)
231{
232 u16 mask = 0;
233
234 if (bw == BW_20) {
235 if (nss != 3 && nss != 6)
236 mask = BIT(9);
237 } else if (bw == BW_80) {
238 if (nss == 3 || nss == 7)
239 mask = BIT(6);
240 else if (nss == 6)
241 mask = BIT(9);
242 } else {
243 WARN_ON(bw != BW_40);
244 }
245
246 switch ((le16_to_cpu(mcs_map) >> (2 * (nss - 1))) & 3) {
247 case IEEE80211_VHT_MCS_SUPPORT_0_7:
248 mask |= 0x300;
249 break;
250 case IEEE80211_VHT_MCS_SUPPORT_0_8:
251 mask |= 0x200;
252 break;
253 case IEEE80211_VHT_MCS_SUPPORT_0_9:
254 break;
255 default:
256 mask = 0x3ff;
257 }
258
259 return 0x3ff & ~mask;
260}
261
262/*
Felix Fietkauec8aa662010-05-13 16:48:03 +0200263 * Look up an MCS group index based on mac80211 rate information
264 */
265static int
266minstrel_ht_get_group_idx(struct ieee80211_tx_rate *rate)
267{
Karl Beldancc61d8d2014-09-29 02:36:30 +0200268 return GROUP_IDX((rate->idx / 8) + 1,
Helmut Schaaa5f69d942011-11-14 15:28:20 +0100269 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
270 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200271}
272
Karl Beldan92082472014-10-21 10:38:38 +0200273static int
274minstrel_vht_get_group_idx(struct ieee80211_tx_rate *rate)
275{
276 return VHT_GROUP_IDX(ieee80211_rate_get_vht_nss(rate),
277 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
278 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH) +
279 2*!!(rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH));
280}
281
Felix Fietkaua0497f92013-02-13 10:51:08 +0100282static struct minstrel_rate_stats *
283minstrel_ht_get_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
284 struct ieee80211_tx_rate *rate)
285{
286 int group, idx;
287
288 if (rate->flags & IEEE80211_TX_RC_MCS) {
289 group = minstrel_ht_get_group_idx(rate);
Karl Beldan7a5e3fa2013-11-11 13:12:55 +0100290 idx = rate->idx % 8;
Karl Beldan92082472014-10-21 10:38:38 +0200291 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
292 group = minstrel_vht_get_group_idx(rate);
293 idx = ieee80211_rate_get_vht_mcs(rate);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100294 } else {
295 group = MINSTREL_CCK_GROUP;
296
297 for (idx = 0; idx < ARRAY_SIZE(mp->cck_rates); idx++)
298 if (rate->idx == mp->cck_rates[idx])
299 break;
300
301 /* short preamble */
302 if (!(mi->groups[group].supported & BIT(idx)))
303 idx += 4;
304 }
305 return &mi->groups[group].rates[idx];
306}
307
Felix Fietkauec8aa662010-05-13 16:48:03 +0200308static inline struct minstrel_rate_stats *
309minstrel_get_ratestats(struct minstrel_ht_sta *mi, int index)
310{
311 return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES];
312}
313
314
315/*
316 * Recalculate success probabilities and counters for a rate using EWMA
317 */
318static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100319minstrel_calc_rate_ewma(struct minstrel_rate_stats *mr)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200320{
321 if (unlikely(mr->attempts > 0)) {
322 mr->sample_skipped = 0;
323 mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
324 if (!mr->att_hist)
325 mr->probability = mr->cur_prob;
326 else
327 mr->probability = minstrel_ewma(mr->probability,
328 mr->cur_prob, EWMA_LEVEL);
329 mr->att_hist += mr->attempts;
330 mr->succ_hist += mr->success;
331 } else {
332 mr->sample_skipped++;
333 }
334 mr->last_success = mr->success;
335 mr->last_attempts = mr->attempts;
336 mr->success = 0;
337 mr->attempts = 0;
338}
339
340/*
341 * Calculate throughput based on the average A-MPDU length, taking into account
342 * the expected number of retransmissions and their expected length
343 */
344static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100345minstrel_ht_calc_tp(struct minstrel_ht_sta *mi, int group, int rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200346{
347 struct minstrel_rate_stats *mr;
Felix Fietkaued97a132013-03-02 21:20:12 +0100348 unsigned int nsecs = 0;
349 unsigned int tp;
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100350 unsigned int prob;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200351
352 mr = &mi->groups[group].rates[rate];
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100353 prob = mr->probability;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200354
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100355 if (prob < MINSTREL_FRAC(1, 10)) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200356 mr->cur_tp = 0;
357 return;
358 }
359
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100360 /*
361 * For the throughput calculation, limit the probability value to 90% to
362 * account for collision related packet error rate fluctuation
363 */
364 if (prob > MINSTREL_FRAC(9, 10))
365 prob = MINSTREL_FRAC(9, 10);
366
Felix Fietkaua0497f92013-02-13 10:51:08 +0100367 if (group != MINSTREL_CCK_GROUP)
Felix Fietkaued97a132013-03-02 21:20:12 +0100368 nsecs = 1000 * mi->overhead / MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100369
Felix Fietkaued97a132013-03-02 21:20:12 +0100370 nsecs += minstrel_mcs_groups[group].duration[rate];
Felix Fietkaued97a132013-03-02 21:20:12 +0100371
Johannes Berg00591ce2014-05-19 11:24:19 +0200372 /* prob is scaled - see MINSTREL_FRAC above */
373 tp = 1000000 * ((prob * 1000) / nsecs);
Felix Fietkaued97a132013-03-02 21:20:12 +0100374 mr->cur_tp = MINSTREL_TRUNC(tp);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200375}
376
377/*
Thomas Huehn59358392014-09-09 23:22:14 +0200378 * Find & sort topmost throughput rates
379 *
380 * If multiple rates provide equal throughput the sorting is based on their
381 * current success probability. Higher success probability is preferred among
382 * MCS groups, CCK rates do not provide aggregation and are therefore at last.
383 */
384static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200385minstrel_ht_sort_best_tp_rates(struct minstrel_ht_sta *mi, u16 index,
386 u16 *tp_list)
Thomas Huehn59358392014-09-09 23:22:14 +0200387{
388 int cur_group, cur_idx, cur_thr, cur_prob;
389 int tmp_group, tmp_idx, tmp_thr, tmp_prob;
390 int j = MAX_THR_RATES;
391
392 cur_group = index / MCS_GROUP_RATES;
393 cur_idx = index % MCS_GROUP_RATES;
394 cur_thr = mi->groups[cur_group].rates[cur_idx].cur_tp;
395 cur_prob = mi->groups[cur_group].rates[cur_idx].probability;
396
397 tmp_group = tp_list[j - 1] / MCS_GROUP_RATES;
398 tmp_idx = tp_list[j - 1] % MCS_GROUP_RATES;
399 tmp_thr = mi->groups[tmp_group].rates[tmp_idx].cur_tp;
400 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].probability;
401
402 while (j > 0 && (cur_thr > tmp_thr ||
403 (cur_thr == tmp_thr && cur_prob > tmp_prob))) {
404 j--;
405 tmp_group = tp_list[j - 1] / MCS_GROUP_RATES;
406 tmp_idx = tp_list[j - 1] % MCS_GROUP_RATES;
407 tmp_thr = mi->groups[tmp_group].rates[tmp_idx].cur_tp;
408 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].probability;
409 }
410
411 if (j < MAX_THR_RATES - 1) {
412 memmove(&tp_list[j + 1], &tp_list[j], (sizeof(*tp_list) *
413 (MAX_THR_RATES - (j + 1))));
414 }
415 if (j < MAX_THR_RATES)
416 tp_list[j] = index;
417}
418
419/*
420 * Find and set the topmost probability rate per sta and per group
421 */
422static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200423minstrel_ht_set_best_prob_rate(struct minstrel_ht_sta *mi, u16 index)
Thomas Huehn59358392014-09-09 23:22:14 +0200424{
425 struct minstrel_mcs_group_data *mg;
426 struct minstrel_rate_stats *mr;
427 int tmp_group, tmp_idx, tmp_tp, tmp_prob, max_tp_group;
428
429 mg = &mi->groups[index / MCS_GROUP_RATES];
430 mr = &mg->rates[index % MCS_GROUP_RATES];
431
432 tmp_group = mi->max_prob_rate / MCS_GROUP_RATES;
433 tmp_idx = mi->max_prob_rate % MCS_GROUP_RATES;
434 tmp_tp = mi->groups[tmp_group].rates[tmp_idx].cur_tp;
435 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].probability;
436
437 /* if max_tp_rate[0] is from MCS_GROUP max_prob_rate get selected from
438 * MCS_GROUP as well as CCK_GROUP rates do not allow aggregation */
439 max_tp_group = mi->max_tp_rate[0] / MCS_GROUP_RATES;
440 if((index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) &&
441 (max_tp_group != MINSTREL_CCK_GROUP))
442 return;
443
444 if (mr->probability > MINSTREL_FRAC(75, 100)) {
445 if (mr->cur_tp > tmp_tp)
446 mi->max_prob_rate = index;
447 if (mr->cur_tp > mg->rates[mg->max_group_prob_rate].cur_tp)
448 mg->max_group_prob_rate = index;
449 } else {
450 if (mr->probability > tmp_prob)
451 mi->max_prob_rate = index;
452 if (mr->probability > mg->rates[mg->max_group_prob_rate].probability)
453 mg->max_group_prob_rate = index;
454 }
455}
456
457
458/*
459 * Assign new rate set per sta and use CCK rates only if the fastest
460 * rate (max_tp_rate[0]) is from CCK group. This prohibits such sorted
461 * rate sets where MCS and CCK rates are mixed, because CCK rates can
462 * not use aggregation.
463 */
464static void
465minstrel_ht_assign_best_tp_rates(struct minstrel_ht_sta *mi,
Karl Beldand4d141c2014-10-20 15:45:59 +0200466 u16 tmp_mcs_tp_rate[MAX_THR_RATES],
467 u16 tmp_cck_tp_rate[MAX_THR_RATES])
Thomas Huehn59358392014-09-09 23:22:14 +0200468{
469 unsigned int tmp_group, tmp_idx, tmp_cck_tp, tmp_mcs_tp;
470 int i;
471
472 tmp_group = tmp_cck_tp_rate[0] / MCS_GROUP_RATES;
473 tmp_idx = tmp_cck_tp_rate[0] % MCS_GROUP_RATES;
474 tmp_cck_tp = mi->groups[tmp_group].rates[tmp_idx].cur_tp;
475
476 tmp_group = tmp_mcs_tp_rate[0] / MCS_GROUP_RATES;
477 tmp_idx = tmp_mcs_tp_rate[0] % MCS_GROUP_RATES;
478 tmp_mcs_tp = mi->groups[tmp_group].rates[tmp_idx].cur_tp;
479
480 if (tmp_cck_tp > tmp_mcs_tp) {
481 for(i = 0; i < MAX_THR_RATES; i++) {
482 minstrel_ht_sort_best_tp_rates(mi, tmp_cck_tp_rate[i],
483 tmp_mcs_tp_rate);
484 }
485 }
486
487}
488
489/*
490 * Try to increase robustness of max_prob rate by decrease number of
491 * streams if possible.
492 */
493static inline void
494minstrel_ht_prob_rate_reduce_streams(struct minstrel_ht_sta *mi)
495{
496 struct minstrel_mcs_group_data *mg;
497 struct minstrel_rate_stats *mr;
498 int tmp_max_streams, group;
499 int tmp_tp = 0;
500
501 tmp_max_streams = minstrel_mcs_groups[mi->max_tp_rate[0] /
502 MCS_GROUP_RATES].streams;
503 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
504 mg = &mi->groups[group];
505 if (!mg->supported || group == MINSTREL_CCK_GROUP)
506 continue;
507 mr = minstrel_get_ratestats(mi, mg->max_group_prob_rate);
508 if (tmp_tp < mr->cur_tp &&
509 (minstrel_mcs_groups[group].streams < tmp_max_streams)) {
510 mi->max_prob_rate = mg->max_group_prob_rate;
511 tmp_tp = mr->cur_tp;
512 }
513 }
514}
515
516/*
Felix Fietkauec8aa662010-05-13 16:48:03 +0200517 * Update rate statistics and select new primary rates
518 *
519 * Rules for rate selection:
520 * - max_prob_rate must use only one stream, as a tradeoff between delivery
521 * probability and throughput during strong fluctuations
Thomas Huehn59358392014-09-09 23:22:14 +0200522 * - as long as the max prob rate has a probability of more than 75%, pick
Felix Fietkauec8aa662010-05-13 16:48:03 +0200523 * higher throughput rates, even if the probablity is a bit lower
524 */
525static void
526minstrel_ht_update_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
527{
528 struct minstrel_mcs_group_data *mg;
529 struct minstrel_rate_stats *mr;
Thomas Huehn59358392014-09-09 23:22:14 +0200530 int group, i, j;
Karl Beldand4d141c2014-10-20 15:45:59 +0200531 u16 tmp_mcs_tp_rate[MAX_THR_RATES], tmp_group_tp_rate[MAX_THR_RATES];
532 u16 tmp_cck_tp_rate[MAX_THR_RATES], index;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200533
534 if (mi->ampdu_packets > 0) {
535 mi->avg_ampdu_len = minstrel_ewma(mi->avg_ampdu_len,
536 MINSTREL_FRAC(mi->ampdu_len, mi->ampdu_packets), EWMA_LEVEL);
537 mi->ampdu_len = 0;
538 mi->ampdu_packets = 0;
539 }
540
541 mi->sample_slow = 0;
542 mi->sample_count = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200543
Thomas Huehn59358392014-09-09 23:22:14 +0200544 /* Initialize global rate indexes */
545 for(j = 0; j < MAX_THR_RATES; j++){
546 tmp_mcs_tp_rate[j] = 0;
547 tmp_cck_tp_rate[j] = 0;
548 }
Karl Beldanc2eb5b02013-04-18 14:26:20 +0200549
Thomas Huehn59358392014-09-09 23:22:14 +0200550 /* Find best rate sets within all MCS groups*/
551 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200552
553 mg = &mi->groups[group];
554 if (!mg->supported)
555 continue;
556
Felix Fietkauec8aa662010-05-13 16:48:03 +0200557 mi->sample_count++;
558
Thomas Huehn59358392014-09-09 23:22:14 +0200559 /* (re)Initialize group rate indexes */
560 for(j = 0; j < MAX_THR_RATES; j++)
561 tmp_group_tp_rate[j] = group;
562
Felix Fietkauec8aa662010-05-13 16:48:03 +0200563 for (i = 0; i < MCS_GROUP_RATES; i++) {
564 if (!(mg->supported & BIT(i)))
565 continue;
566
Karl Beldan351df092013-11-13 23:07:07 +0100567 index = MCS_GROUP_RATES * group + i;
568
Felix Fietkauec8aa662010-05-13 16:48:03 +0200569 mr = &mg->rates[i];
570 mr->retry_updated = false;
Patrick Kelle6048d7632011-11-15 16:44:48 +0100571 minstrel_calc_rate_ewma(mr);
572 minstrel_ht_calc_tp(mi, group, i);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200573
574 if (!mr->cur_tp)
575 continue;
576
Thomas Huehn59358392014-09-09 23:22:14 +0200577 /* Find max throughput rate set */
578 if (group != MINSTREL_CCK_GROUP) {
579 minstrel_ht_sort_best_tp_rates(mi, index,
580 tmp_mcs_tp_rate);
581 } else if (group == MINSTREL_CCK_GROUP) {
582 minstrel_ht_sort_best_tp_rates(mi, index,
583 tmp_cck_tp_rate);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200584 }
585
Thomas Huehn59358392014-09-09 23:22:14 +0200586 /* Find max throughput rate set within a group */
587 minstrel_ht_sort_best_tp_rates(mi, index,
588 tmp_group_tp_rate);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200589
Thomas Huehn59358392014-09-09 23:22:14 +0200590 /* Find max probability rate per group and global */
591 minstrel_ht_set_best_prob_rate(mi, index);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200592 }
Thomas Huehn59358392014-09-09 23:22:14 +0200593
594 memcpy(mg->max_group_tp_rate, tmp_group_tp_rate,
595 sizeof(mg->max_group_tp_rate));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200596 }
597
Thomas Huehn59358392014-09-09 23:22:14 +0200598 /* Assign new rate set per sta */
599 minstrel_ht_assign_best_tp_rates(mi, tmp_mcs_tp_rate, tmp_cck_tp_rate);
600 memcpy(mi->max_tp_rate, tmp_mcs_tp_rate, sizeof(mi->max_tp_rate));
601
602 /* Try to increase robustness of max_prob_rate*/
603 minstrel_ht_prob_rate_reduce_streams(mi);
604
Felix Fietkau96d4ac32013-03-02 21:20:14 +0100605 /* try to sample all available rates during each interval */
606 mi->sample_count *= 8;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200607
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +0200608#ifdef CONFIG_MAC80211_DEBUGFS
609 /* use fixed index if set */
610 if (mp->fixed_rate_idx != -1) {
Thomas Huehn59358392014-09-09 23:22:14 +0200611 for (i = 0; i < 4; i++)
612 mi->max_tp_rate[i] = mp->fixed_rate_idx;
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +0200613 mi->max_prob_rate = mp->fixed_rate_idx;
614 }
615#endif
Felix Fietkaua299c6d2013-03-02 21:20:13 +0100616
Thomas Huehn59358392014-09-09 23:22:14 +0200617 /* Reset update timer */
Felix Fietkauec8aa662010-05-13 16:48:03 +0200618 mi->stats_update = jiffies;
619}
620
621static bool
Felix Fietkaua0497f92013-02-13 10:51:08 +0100622minstrel_ht_txstat_valid(struct minstrel_priv *mp, struct ieee80211_tx_rate *rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200623{
Helmut Schaab79296b2011-11-14 15:28:19 +0100624 if (rate->idx < 0)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200625 return false;
626
Helmut Schaab79296b2011-11-14 15:28:19 +0100627 if (!rate->count)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200628 return false;
629
Karl Beldan92082472014-10-21 10:38:38 +0200630 if (rate->flags & IEEE80211_TX_RC_MCS ||
631 rate->flags & IEEE80211_TX_RC_VHT_MCS)
Felix Fietkaua0497f92013-02-13 10:51:08 +0100632 return true;
633
634 return rate->idx == mp->cck_rates[0] ||
635 rate->idx == mp->cck_rates[1] ||
636 rate->idx == mp->cck_rates[2] ||
637 rate->idx == mp->cck_rates[3];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200638}
639
640static void
641minstrel_next_sample_idx(struct minstrel_ht_sta *mi)
642{
643 struct minstrel_mcs_group_data *mg;
644
645 for (;;) {
646 mi->sample_group++;
647 mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups);
648 mg = &mi->groups[mi->sample_group];
649
650 if (!mg->supported)
651 continue;
652
653 if (++mg->index >= MCS_GROUP_RATES) {
654 mg->index = 0;
655 if (++mg->column >= ARRAY_SIZE(sample_table))
656 mg->column = 0;
657 }
658 break;
659 }
660}
661
662static void
Karl Beldand4d141c2014-10-20 15:45:59 +0200663minstrel_downgrade_rate(struct minstrel_ht_sta *mi, u16 *idx, bool primary)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200664{
665 int group, orig_group;
666
667 orig_group = group = *idx / MCS_GROUP_RATES;
668 while (group > 0) {
669 group--;
670
671 if (!mi->groups[group].supported)
672 continue;
673
674 if (minstrel_mcs_groups[group].streams >
675 minstrel_mcs_groups[orig_group].streams)
676 continue;
677
678 if (primary)
Thomas Huehn59358392014-09-09 23:22:14 +0200679 *idx = mi->groups[group].max_group_tp_rate[0];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200680 else
Thomas Huehn59358392014-09-09 23:22:14 +0200681 *idx = mi->groups[group].max_group_tp_rate[1];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200682 break;
683 }
684}
685
686static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100687minstrel_aggr_check(struct ieee80211_sta *pubsta, struct sk_buff *skb)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200688{
689 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
690 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
691 u16 tid;
692
Felix Fietkau75769c82014-11-16 00:27:55 +0100693 if (skb_get_queue_mapping(skb) == IEEE80211_AC_VO)
694 return;
695
Felix Fietkauec8aa662010-05-13 16:48:03 +0200696 if (unlikely(!ieee80211_is_data_qos(hdr->frame_control)))
697 return;
698
Johannes Berge133fae2013-08-22 08:36:41 +0200699 if (unlikely(skb->protocol == cpu_to_be16(ETH_P_PAE)))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200700 return;
701
702 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
Johannes Berga622ab72010-06-10 10:21:39 +0200703 if (likely(sta->ampdu_mlme.tid_tx[tid]))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200704 return;
705
Sujith Manoharanbd2ce6e2010-12-15 07:47:10 +0530706 ieee80211_start_tx_ba_session(pubsta, tid, 5000);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200707}
708
709static void
710minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
711 struct ieee80211_sta *sta, void *priv_sta,
712 struct sk_buff *skb)
713{
714 struct minstrel_ht_sta_priv *msp = priv_sta;
715 struct minstrel_ht_sta *mi = &msp->ht;
716 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
717 struct ieee80211_tx_rate *ar = info->status.rates;
718 struct minstrel_rate_stats *rate, *rate2;
719 struct minstrel_priv *mp = priv;
Felix Fietkaua8566662013-04-22 16:14:42 +0200720 bool last, update = false;
Johannes Berga544ab72012-11-13 21:36:27 +0100721 int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200722
723 if (!msp->is_ht)
724 return mac80211_minstrel.tx_status(priv, sband, sta, &msp->legacy, skb);
725
726 /* This packet was aggregated but doesn't carry status info */
727 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
728 !(info->flags & IEEE80211_TX_STAT_AMPDU))
729 return;
730
Björn Smedman15d46f32010-10-10 22:14:25 +0200731 if (!(info->flags & IEEE80211_TX_STAT_AMPDU)) {
732 info->status.ampdu_ack_len =
733 (info->flags & IEEE80211_TX_STAT_ACK ? 1 : 0);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200734 info->status.ampdu_len = 1;
735 }
736
737 mi->ampdu_packets++;
738 mi->ampdu_len += info->status.ampdu_len;
739
740 if (!mi->sample_wait && !mi->sample_tries && mi->sample_count > 0) {
Felix Fietkauc7317e42010-10-21 02:47:25 +0200741 mi->sample_wait = 16 + 2 * MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkau52c00a32013-03-05 14:20:19 +0100742 mi->sample_tries = 1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200743 mi->sample_count--;
744 }
745
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800746 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200747 mi->sample_packets += info->status.ampdu_len;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200748
Felix Fietkaua0497f92013-02-13 10:51:08 +0100749 last = !minstrel_ht_txstat_valid(mp, &ar[0]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200750 for (i = 0; !last; i++) {
751 last = (i == IEEE80211_TX_MAX_RATES - 1) ||
Felix Fietkaua0497f92013-02-13 10:51:08 +0100752 !minstrel_ht_txstat_valid(mp, &ar[i + 1]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200753
Felix Fietkaua0497f92013-02-13 10:51:08 +0100754 rate = minstrel_ht_get_stats(mp, mi, &ar[i]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200755
Björn Smedman15d46f32010-10-10 22:14:25 +0200756 if (last)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200757 rate->success += info->status.ampdu_ack_len;
758
759 rate->attempts += ar[i].count * info->status.ampdu_len;
760 }
761
762 /*
763 * check for sudden death of spatial multiplexing,
764 * downgrade to a lower number of streams if necessary.
765 */
Thomas Huehn59358392014-09-09 23:22:14 +0200766 rate = minstrel_get_ratestats(mi, mi->max_tp_rate[0]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200767 if (rate->attempts > 30 &&
768 MINSTREL_FRAC(rate->success, rate->attempts) <
Felix Fietkaua8566662013-04-22 16:14:42 +0200769 MINSTREL_FRAC(20, 100)) {
Thomas Huehn59358392014-09-09 23:22:14 +0200770 minstrel_downgrade_rate(mi, &mi->max_tp_rate[0], true);
Felix Fietkaua8566662013-04-22 16:14:42 +0200771 update = true;
772 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200773
Thomas Huehn59358392014-09-09 23:22:14 +0200774 rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate[1]);
Ming Leiecc3d5a2010-07-01 23:19:50 +0800775 if (rate2->attempts > 30 &&
776 MINSTREL_FRAC(rate2->success, rate2->attempts) <
Felix Fietkaua8566662013-04-22 16:14:42 +0200777 MINSTREL_FRAC(20, 100)) {
Thomas Huehn59358392014-09-09 23:22:14 +0200778 minstrel_downgrade_rate(mi, &mi->max_tp_rate[1], false);
Felix Fietkaua8566662013-04-22 16:14:42 +0200779 update = true;
780 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200781
782 if (time_after(jiffies, mi->stats_update + (mp->update_interval / 2 * HZ) / 1000)) {
Felix Fietkaua8566662013-04-22 16:14:42 +0200783 update = true;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200784 minstrel_ht_update_stats(mp, mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200785 }
Felix Fietkaua8566662013-04-22 16:14:42 +0200786
787 if (update)
788 minstrel_ht_update_rates(mp, mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200789}
790
791static void
792minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
793 int index)
794{
795 struct minstrel_rate_stats *mr;
796 const struct mcs_group *group;
797 unsigned int tx_time, tx_time_rtscts, tx_time_data;
798 unsigned int cw = mp->cw_min;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700799 unsigned int ctime = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200800 unsigned int t_slot = 9; /* FIXME */
801 unsigned int ampdu_len = MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100802 unsigned int overhead = 0, overhead_rtscts = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200803
804 mr = minstrel_get_ratestats(mi, index);
805 if (mr->probability < MINSTREL_FRAC(1, 10)) {
806 mr->retry_count = 1;
807 mr->retry_count_rtscts = 1;
808 return;
809 }
810
811 mr->retry_count = 2;
812 mr->retry_count_rtscts = 2;
813 mr->retry_updated = true;
814
815 group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
Felix Fietkaued97a132013-03-02 21:20:12 +0100816 tx_time_data = group->duration[index % MCS_GROUP_RATES] * ampdu_len / 1000;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700817
818 /* Contention time for first 2 tries */
819 ctime = (t_slot * cw) >> 1;
820 cw = min((cw << 1) | 1, mp->cw_max);
821 ctime += (t_slot * cw) >> 1;
822 cw = min((cw << 1) | 1, mp->cw_max);
823
Felix Fietkaua0497f92013-02-13 10:51:08 +0100824 if (index / MCS_GROUP_RATES != MINSTREL_CCK_GROUP) {
825 overhead = mi->overhead;
826 overhead_rtscts = mi->overhead_rtscts;
827 }
828
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700829 /* Total TX time for data and Contention after first 2 tries */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100830 tx_time = ctime + 2 * (overhead + tx_time_data);
831 tx_time_rtscts = ctime + 2 * (overhead_rtscts + tx_time_data);
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700832
833 /* See how many more tries we can fit inside segment size */
Felix Fietkauec8aa662010-05-13 16:48:03 +0200834 do {
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700835 /* Contention time for this try */
836 ctime = (t_slot * cw) >> 1;
837 cw = min((cw << 1) | 1, mp->cw_max);
838
839 /* Total TX time after this try */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100840 tx_time += ctime + overhead + tx_time_data;
841 tx_time_rtscts += ctime + overhead_rtscts + tx_time_data;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700842
Felix Fietkauec8aa662010-05-13 16:48:03 +0200843 if (tx_time_rtscts < mp->segment_size)
844 mr->retry_count_rtscts++;
845 } while ((tx_time < mp->segment_size) &&
846 (++mr->retry_count < mp->max_retry));
847}
848
849
850static void
851minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
Felix Fietkaua8566662013-04-22 16:14:42 +0200852 struct ieee80211_sta_rates *ratetbl, int offset, int index)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200853{
854 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
855 struct minstrel_rate_stats *mr;
Felix Fietkaua8566662013-04-22 16:14:42 +0200856 u8 idx;
Karl Beldan3ec373c2014-10-20 15:46:01 +0200857 u16 flags = group->flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200858
859 mr = minstrel_get_ratestats(mi, index);
860 if (!mr->retry_updated)
861 minstrel_calc_retransmit(mp, mi, index);
862
Felix Fietkaua8566662013-04-22 16:14:42 +0200863 if (mr->probability < MINSTREL_FRAC(20, 100) || !mr->retry_count) {
864 ratetbl->rate[offset].count = 2;
865 ratetbl->rate[offset].count_rts = 2;
866 ratetbl->rate[offset].count_cts = 2;
867 } else {
868 ratetbl->rate[offset].count = mr->retry_count;
869 ratetbl->rate[offset].count_cts = mr->retry_count;
870 ratetbl->rate[offset].count_rts = mr->retry_count_rtscts;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100871 }
872
Karl Beldan3ec373c2014-10-20 15:46:01 +0200873 if (index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP)
Felix Fietkaua8566662013-04-22 16:14:42 +0200874 idx = mp->cck_rates[index % ARRAY_SIZE(mp->cck_rates)];
Karl Beldan92082472014-10-21 10:38:38 +0200875 else if (flags & IEEE80211_TX_RC_VHT_MCS)
876 idx = ((group->streams - 1) << 4) |
877 ((index % MCS_GROUP_RATES) & 0xF);
Karl Beldan3ec373c2014-10-20 15:46:01 +0200878 else
Karl Beldan7a5e3fa2013-11-11 13:12:55 +0100879 idx = index % MCS_GROUP_RATES + (group->streams - 1) * 8;
Felix Fietkaua8566662013-04-22 16:14:42 +0200880
881 if (offset > 0) {
882 ratetbl->rate[offset].count = ratetbl->rate[offset].count_rts;
883 flags |= IEEE80211_TX_RC_USE_RTS_CTS;
884 }
885
886 ratetbl->rate[offset].idx = idx;
887 ratetbl->rate[offset].flags = flags;
888}
889
890static void
891minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
892{
893 struct ieee80211_sta_rates *rates;
894 int i = 0;
895
896 rates = kzalloc(sizeof(*rates), GFP_ATOMIC);
897 if (!rates)
898 return;
899
Thomas Huehn59358392014-09-09 23:22:14 +0200900 /* Start with max_tp_rate[0] */
901 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_tp_rate[0]);
Felix Fietkaua8566662013-04-22 16:14:42 +0200902
903 if (mp->hw->max_rates >= 3) {
Thomas Huehn59358392014-09-09 23:22:14 +0200904 /* At least 3 tx rates supported, use max_tp_rate[1] next */
905 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_tp_rate[1]);
Felix Fietkaua8566662013-04-22 16:14:42 +0200906 }
907
908 if (mp->hw->max_rates >= 2) {
909 /*
910 * At least 2 tx rates supported, use max_prob_rate next */
911 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_prob_rate);
912 }
913
914 rates->rate[i].idx = -1;
915 rate_control_set_rates(mp->hw, mi->sta, rates);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200916}
917
918static inline int
919minstrel_get_duration(int index)
920{
921 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
922 return group->duration[index % MCS_GROUP_RATES];
923}
924
925static int
926minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
927{
928 struct minstrel_rate_stats *mr;
929 struct minstrel_mcs_group_data *mg;
Thomas Huehn59358392014-09-09 23:22:14 +0200930 unsigned int sample_dur, sample_group, cur_max_tp_streams;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200931 int sample_idx = 0;
932
933 if (mi->sample_wait > 0) {
934 mi->sample_wait--;
935 return -1;
936 }
937
938 if (!mi->sample_tries)
939 return -1;
940
Felix Fietkau965237a2013-03-03 12:49:51 +0100941 sample_group = mi->sample_group;
Karl Beldanf12140c2013-11-11 13:10:49 +0100942 mg = &mi->groups[sample_group];
943 sample_idx = sample_table[mg->column][mg->index];
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800944 minstrel_next_sample_idx(mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200945
Karl Beldanf12140c2013-11-11 13:10:49 +0100946 if (!(mg->supported & BIT(sample_idx)))
947 return -1;
948
949 mr = &mg->rates[sample_idx];
950 sample_idx += sample_group * MCS_GROUP_RATES;
951
Felix Fietkauec8aa662010-05-13 16:48:03 +0200952 /*
Helmut Schaaba6fa292012-03-14 13:31:11 +0100953 * Sampling might add some overhead (RTS, no aggregation)
954 * to the frame. Hence, don't use sampling for the currently
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100955 * used rates.
Helmut Schaaba6fa292012-03-14 13:31:11 +0100956 */
Thomas Huehn59358392014-09-09 23:22:14 +0200957 if (sample_idx == mi->max_tp_rate[0] ||
958 sample_idx == mi->max_tp_rate[1] ||
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100959 sample_idx == mi->max_prob_rate)
Helmut Schaaba6fa292012-03-14 13:31:11 +0100960 return -1;
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100961
Helmut Schaaba6fa292012-03-14 13:31:11 +0100962 /*
Felix Fietkaubc96f242013-03-16 17:00:26 +0100963 * Do not sample if the probability is already higher than 95%
964 * to avoid wasting airtime.
Felix Fietkauec8aa662010-05-13 16:48:03 +0200965 */
Felix Fietkaubc96f242013-03-16 17:00:26 +0100966 if (mr->probability > MINSTREL_FRAC(95, 100))
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800967 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200968
969 /*
970 * Make sure that lower rates get sampled only occasionally,
971 * if the link is working perfectly.
972 */
Thomas Huehn59358392014-09-09 23:22:14 +0200973
974 cur_max_tp_streams = minstrel_mcs_groups[mi->max_tp_rate[0] /
975 MCS_GROUP_RATES].streams;
Felix Fietkau965237a2013-03-03 12:49:51 +0100976 sample_dur = minstrel_get_duration(sample_idx);
Thomas Huehn59358392014-09-09 23:22:14 +0200977 if (sample_dur >= minstrel_get_duration(mi->max_tp_rate[1]) &&
978 (cur_max_tp_streams - 1 <
Felix Fietkau965237a2013-03-03 12:49:51 +0100979 minstrel_mcs_groups[sample_group].streams ||
980 sample_dur >= minstrel_get_duration(mi->max_prob_rate))) {
Felix Fietkauc7317e42010-10-21 02:47:25 +0200981 if (mr->sample_skipped < 20)
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800982 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200983
984 if (mi->sample_slow++ > 2)
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800985 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200986 }
Felix Fietkau098b8af2013-03-03 12:49:52 +0100987 mi->sample_tries--;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200988
989 return sample_idx;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200990}
991
992static void
Felix Fietkaua0497f92013-02-13 10:51:08 +0100993minstrel_ht_check_cck_shortpreamble(struct minstrel_priv *mp,
994 struct minstrel_ht_sta *mi, bool val)
995{
996 u8 supported = mi->groups[MINSTREL_CCK_GROUP].supported;
997
998 if (!supported || !mi->cck_supported_short)
999 return;
1000
1001 if (supported & (mi->cck_supported_short << (val * 4)))
1002 return;
1003
1004 supported ^= mi->cck_supported_short | (mi->cck_supported_short << 4);
1005 mi->groups[MINSTREL_CCK_GROUP].supported = supported;
1006}
1007
1008static void
Felix Fietkauec8aa662010-05-13 16:48:03 +02001009minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
1010 struct ieee80211_tx_rate_control *txrc)
1011{
Felix Fietkaua8566662013-04-22 16:14:42 +02001012 const struct mcs_group *sample_group;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001013 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
Felix Fietkaua8566662013-04-22 16:14:42 +02001014 struct ieee80211_tx_rate *rate = &info->status.rates[0];
Felix Fietkauec8aa662010-05-13 16:48:03 +02001015 struct minstrel_ht_sta_priv *msp = priv_sta;
1016 struct minstrel_ht_sta *mi = &msp->ht;
1017 struct minstrel_priv *mp = priv;
1018 int sample_idx;
1019
1020 if (rate_control_send_low(sta, priv_sta, txrc))
1021 return;
1022
1023 if (!msp->is_ht)
1024 return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
1025
Felix Fietkau95943422014-11-19 20:08:07 +01001026 if (!(info->flags & IEEE80211_TX_CTL_AMPDU) &&
1027 mi->max_prob_rate / MCS_GROUP_RATES != MINSTREL_CCK_GROUP)
1028 minstrel_aggr_check(sta, txrc->skb);
1029
Felix Fietkauec8aa662010-05-13 16:48:03 +02001030 info->flags |= mi->tx_flags;
Felix Fietkaua0497f92013-02-13 10:51:08 +01001031 minstrel_ht_check_cck_shortpreamble(mp, mi, txrc->short_preamble);
Helmut Schaa6de062c2011-08-01 11:32:53 +02001032
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +02001033#ifdef CONFIG_MAC80211_DEBUGFS
1034 if (mp->fixed_rate_idx != -1)
1035 return;
1036#endif
1037
Helmut Schaa6de062c2011-08-01 11:32:53 +02001038 /* Don't use EAPOL frames for sampling on non-mrr hw */
1039 if (mp->hw->max_rates == 1 &&
Johannes Bergaf61a162013-07-02 18:09:12 +02001040 (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO))
Helmut Schaa6de062c2011-08-01 11:32:53 +02001041 sample_idx = -1;
1042 else
1043 sample_idx = minstrel_get_sample_rate(mp, mi);
Zefir Kurtisi24f75802011-05-20 20:29:17 +02001044
Felix Fietkauec8aa662010-05-13 16:48:03 +02001045 mi->total_packets++;
1046
1047 /* wraparound */
1048 if (mi->total_packets == ~0) {
1049 mi->total_packets = 0;
1050 mi->sample_packets = 0;
1051 }
Felix Fietkaua8566662013-04-22 16:14:42 +02001052
1053 if (sample_idx < 0)
1054 return;
1055
1056 sample_group = &minstrel_mcs_groups[sample_idx / MCS_GROUP_RATES];
1057 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Felix Fietkau1cd15852013-06-28 21:04:35 +02001058 rate->count = 1;
1059
1060 if (sample_idx / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) {
1061 int idx = sample_idx % ARRAY_SIZE(mp->cck_rates);
1062 rate->idx = mp->cck_rates[idx];
Karl Beldan92082472014-10-21 10:38:38 +02001063 } else if (sample_group->flags & IEEE80211_TX_RC_VHT_MCS) {
1064 ieee80211_rate_set_vht(rate, sample_idx % MCS_GROUP_RATES,
1065 sample_group->streams);
Karl Beldan3ec373c2014-10-20 15:46:01 +02001066 } else {
1067 rate->idx = sample_idx % MCS_GROUP_RATES +
1068 (sample_group->streams - 1) * 8;
Felix Fietkau1cd15852013-06-28 21:04:35 +02001069 }
1070
Karl Beldan3ec373c2014-10-20 15:46:01 +02001071 rate->flags = sample_group->flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001072}
1073
1074static void
Felix Fietkaua0497f92013-02-13 10:51:08 +01001075minstrel_ht_update_cck(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
1076 struct ieee80211_supported_band *sband,
1077 struct ieee80211_sta *sta)
1078{
1079 int i;
1080
1081 if (sband->band != IEEE80211_BAND_2GHZ)
1082 return;
1083
Felix Fietkau2dfca312013-08-20 19:43:54 +02001084 if (!(mp->hw->flags & IEEE80211_HW_SUPPORTS_HT_CCK_RATES))
1085 return;
1086
Felix Fietkaua0497f92013-02-13 10:51:08 +01001087 mi->cck_supported = 0;
1088 mi->cck_supported_short = 0;
1089 for (i = 0; i < 4; i++) {
1090 if (!rate_supported(sta, sband->band, mp->cck_rates[i]))
1091 continue;
1092
1093 mi->cck_supported |= BIT(i);
1094 if (sband->bitrates[i].flags & IEEE80211_RATE_SHORT_PREAMBLE)
1095 mi->cck_supported_short |= BIT(i);
1096 }
1097
1098 mi->groups[MINSTREL_CCK_GROUP].supported = mi->cck_supported;
1099}
1100
1101static void
Felix Fietkauec8aa662010-05-13 16:48:03 +02001102minstrel_ht_update_caps(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001103 struct cfg80211_chan_def *chandef,
Johannes Berg64f68e52012-03-28 10:58:37 +02001104 struct ieee80211_sta *sta, void *priv_sta)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001105{
1106 struct minstrel_priv *mp = priv;
1107 struct minstrel_ht_sta_priv *msp = priv_sta;
1108 struct minstrel_ht_sta *mi = &msp->ht;
1109 struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001110 u16 sta_cap = sta->ht_cap.cap;
Karl Beldan92082472014-10-21 10:38:38 +02001111 struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap;
1112 int use_vht;
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001113 int n_supported = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001114 int ack_dur;
1115 int stbc;
1116 int i;
1117
1118 /* fall back to the old minstrel for legacy stations */
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001119 if (!sta->ht_cap.ht_supported)
1120 goto use_legacy;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001121
Karl Beldan8a0ee4f2014-10-20 15:46:00 +02001122 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) != MINSTREL_GROUPS_NB);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001123
Karl Beldan92082472014-10-21 10:38:38 +02001124#ifdef CONFIG_MAC80211_RC_MINSTREL_VHT
1125 if (vht_cap->vht_supported)
1126 use_vht = vht_cap->vht_mcs.tx_mcs_map != cpu_to_le16(~0);
1127 else
1128#endif
1129 use_vht = 0;
1130
Felix Fietkauec8aa662010-05-13 16:48:03 +02001131 msp->is_ht = true;
1132 memset(mi, 0, sizeof(*mi));
Felix Fietkaua8566662013-04-22 16:14:42 +02001133
1134 mi->sta = sta;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001135 mi->stats_update = jiffies;
1136
Simon Wunderlich438b61b2013-07-08 16:55:51 +02001137 ack_dur = ieee80211_frame_duration(sband->band, 10, 60, 1, 1, 0);
1138 mi->overhead = ieee80211_frame_duration(sband->band, 0, 60, 1, 1, 0);
1139 mi->overhead += ack_dur;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001140 mi->overhead_rtscts = mi->overhead + 2 * ack_dur;
1141
1142 mi->avg_ampdu_len = MINSTREL_FRAC(1, 1);
1143
1144 /* When using MRR, sample more on the first attempt, without delay */
1145 if (mp->has_mrr) {
1146 mi->sample_count = 16;
1147 mi->sample_wait = 0;
1148 } else {
1149 mi->sample_count = 8;
1150 mi->sample_wait = 8;
1151 }
1152 mi->sample_tries = 4;
1153
Karl Beldan92082472014-10-21 10:38:38 +02001154 /* TODO tx_flags for vht - ATM the RC API is not fine-grained enough */
1155 if (!use_vht) {
1156 stbc = (sta_cap & IEEE80211_HT_CAP_RX_STBC) >>
1157 IEEE80211_HT_CAP_RX_STBC_SHIFT;
1158 mi->tx_flags |= stbc << IEEE80211_TX_CTL_STBC_SHIFT;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001159
Karl Beldan92082472014-10-21 10:38:38 +02001160 if (sta_cap & IEEE80211_HT_CAP_LDPC_CODING)
1161 mi->tx_flags |= IEEE80211_TX_CTL_LDPC;
1162 }
Felix Fietkauec8aa662010-05-13 16:48:03 +02001163
Felix Fietkauec8aa662010-05-13 16:48:03 +02001164 for (i = 0; i < ARRAY_SIZE(mi->groups); i++) {
Karl Beldan3ec373c2014-10-20 15:46:01 +02001165 u32 gflags = minstrel_mcs_groups[i].flags;
Karl Beldan92082472014-10-21 10:38:38 +02001166 int bw, nss;
Karl Beldan3ec373c2014-10-20 15:46:01 +02001167
Felix Fietkauec8aa662010-05-13 16:48:03 +02001168 mi->groups[i].supported = 0;
Felix Fietkaua0497f92013-02-13 10:51:08 +01001169 if (i == MINSTREL_CCK_GROUP) {
1170 minstrel_ht_update_cck(mp, mi, sband, sta);
1171 continue;
1172 }
1173
Karl Beldan3ec373c2014-10-20 15:46:01 +02001174 if (gflags & IEEE80211_TX_RC_SHORT_GI) {
1175 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH) {
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001176 if (!(sta_cap & IEEE80211_HT_CAP_SGI_40))
1177 continue;
1178 } else {
1179 if (!(sta_cap & IEEE80211_HT_CAP_SGI_20))
1180 continue;
1181 }
Felix Fietkauec8aa662010-05-13 16:48:03 +02001182 }
1183
Karl Beldan3ec373c2014-10-20 15:46:01 +02001184 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH &&
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001185 sta->bandwidth < IEEE80211_STA_RX_BW_40)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001186 continue;
1187
Karl Beldan92082472014-10-21 10:38:38 +02001188 nss = minstrel_mcs_groups[i].streams;
1189
Helmut Schaae9219772012-03-09 14:13:45 +01001190 /* Mark MCS > 7 as unsupported if STA is in static SMPS mode */
Karl Beldan92082472014-10-21 10:38:38 +02001191 if (sta->smps_mode == IEEE80211_SMPS_STATIC && nss > 1)
Helmut Schaae9219772012-03-09 14:13:45 +01001192 continue;
1193
Karl Beldan92082472014-10-21 10:38:38 +02001194 /* HT rate */
1195 if (gflags & IEEE80211_TX_RC_MCS) {
1196#ifdef CONFIG_MAC80211_RC_MINSTREL_VHT
Karl Beldan9ffe9042014-10-24 14:34:49 +02001197 if (use_vht && minstrel_vht_only)
Karl Beldan92082472014-10-21 10:38:38 +02001198 continue;
1199#endif
1200 mi->groups[i].supported = mcs->rx_mask[nss - 1];
1201 if (mi->groups[i].supported)
1202 n_supported++;
1203 continue;
1204 }
1205
1206 /* VHT rate */
1207 if (!vht_cap->vht_supported ||
1208 WARN_ON(!(gflags & IEEE80211_TX_RC_VHT_MCS)) ||
1209 WARN_ON(gflags & IEEE80211_TX_RC_160_MHZ_WIDTH))
1210 continue;
1211
1212 if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH) {
1213 if (sta->bandwidth < IEEE80211_STA_RX_BW_80 ||
1214 ((gflags & IEEE80211_TX_RC_SHORT_GI) &&
1215 !(vht_cap->cap & IEEE80211_VHT_CAP_SHORT_GI_80))) {
1216 continue;
1217 }
1218 }
1219
1220 if (gflags & IEEE80211_TX_RC_40_MHZ_WIDTH)
1221 bw = BW_40;
1222 else if (gflags & IEEE80211_TX_RC_80_MHZ_WIDTH)
1223 bw = BW_80;
1224 else
1225 bw = BW_20;
1226
1227 mi->groups[i].supported = minstrel_get_valid_vht_rates(bw, nss,
1228 vht_cap->vht_mcs.tx_mcs_map);
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001229
1230 if (mi->groups[i].supported)
1231 n_supported++;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001232 }
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001233
1234 if (!n_supported)
1235 goto use_legacy;
1236
Felix Fietkaua8566662013-04-22 16:14:42 +02001237 /* create an initial rate table with the lowest supported rates */
Karl Beldana3647362013-04-18 14:26:21 +02001238 minstrel_ht_update_stats(mp, mi);
Felix Fietkaua8566662013-04-22 16:14:42 +02001239 minstrel_ht_update_rates(mp, mi);
Karl Beldana3647362013-04-18 14:26:21 +02001240
Felix Fietkau4dc217d2011-03-25 15:30:38 +01001241 return;
1242
1243use_legacy:
1244 msp->is_ht = false;
1245 memset(&msp->legacy, 0, sizeof(msp->legacy));
1246 msp->legacy.r = msp->ratelist;
1247 msp->legacy.sample_table = msp->sample_table;
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001248 return mac80211_minstrel.rate_init(priv, sband, chandef, sta,
1249 &msp->legacy);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001250}
1251
1252static void
1253minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001254 struct cfg80211_chan_def *chandef,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001255 struct ieee80211_sta *sta, void *priv_sta)
1256{
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001257 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001258}
1259
1260static void
1261minstrel_ht_rate_update(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001262 struct cfg80211_chan_def *chandef,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001263 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berg64f68e52012-03-28 10:58:37 +02001264 u32 changed)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001265{
Simon Wunderlich3de805c2013-07-08 16:55:50 +02001266 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001267}
1268
1269static void *
1270minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
1271{
1272 struct ieee80211_supported_band *sband;
1273 struct minstrel_ht_sta_priv *msp;
1274 struct minstrel_priv *mp = priv;
1275 struct ieee80211_hw *hw = mp->hw;
1276 int max_rates = 0;
1277 int i;
1278
1279 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
1280 sband = hw->wiphy->bands[i];
1281 if (sband && sband->n_bitrates > max_rates)
1282 max_rates = sband->n_bitrates;
1283 }
1284
Thomas Huehn472dd352012-06-29 06:26:27 -07001285 msp = kzalloc(sizeof(*msp), gfp);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001286 if (!msp)
1287 return NULL;
1288
1289 msp->ratelist = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
1290 if (!msp->ratelist)
1291 goto error;
1292
1293 msp->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
1294 if (!msp->sample_table)
1295 goto error1;
1296
1297 return msp;
1298
1299error1:
Dan Carpenter7e988012010-07-22 13:14:19 +02001300 kfree(msp->ratelist);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001301error:
1302 kfree(msp);
1303 return NULL;
1304}
1305
1306static void
1307minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
1308{
1309 struct minstrel_ht_sta_priv *msp = priv_sta;
1310
1311 kfree(msp->sample_table);
1312 kfree(msp->ratelist);
1313 kfree(msp);
1314}
1315
1316static void *
1317minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
1318{
1319 return mac80211_minstrel.alloc(hw, debugfsdir);
1320}
1321
1322static void
1323minstrel_ht_free(void *priv)
1324{
1325 mac80211_minstrel.free(priv);
1326}
1327
Antonio Quartullicca674d2014-05-19 21:53:20 +02001328static u32 minstrel_ht_get_expected_throughput(void *priv_sta)
1329{
1330 struct minstrel_ht_sta_priv *msp = priv_sta;
1331 struct minstrel_ht_sta *mi = &msp->ht;
1332 int i, j;
1333
1334 if (!msp->is_ht)
1335 return mac80211_minstrel.get_expected_throughput(priv_sta);
1336
Thomas Huehn59358392014-09-09 23:22:14 +02001337 i = mi->max_tp_rate[0] / MCS_GROUP_RATES;
1338 j = mi->max_tp_rate[0] % MCS_GROUP_RATES;
Antonio Quartullicca674d2014-05-19 21:53:20 +02001339
1340 /* convert cur_tp from pkt per second in kbps */
1341 return mi->groups[i].rates[j].cur_tp * AVG_PKT_SIZE * 8 / 1024;
1342}
1343
Johannes Berg631ad702014-01-20 23:29:34 +01001344static const struct rate_control_ops mac80211_minstrel_ht = {
Felix Fietkauec8aa662010-05-13 16:48:03 +02001345 .name = "minstrel_ht",
1346 .tx_status = minstrel_ht_tx_status,
1347 .get_rate = minstrel_ht_get_rate,
1348 .rate_init = minstrel_ht_rate_init,
1349 .rate_update = minstrel_ht_rate_update,
1350 .alloc_sta = minstrel_ht_alloc_sta,
1351 .free_sta = minstrel_ht_free_sta,
1352 .alloc = minstrel_ht_alloc,
1353 .free = minstrel_ht_free,
1354#ifdef CONFIG_MAC80211_DEBUGFS
1355 .add_sta_debugfs = minstrel_ht_add_sta_debugfs,
1356 .remove_sta_debugfs = minstrel_ht_remove_sta_debugfs,
1357#endif
Antonio Quartullicca674d2014-05-19 21:53:20 +02001358 .get_expected_throughput = minstrel_ht_get_expected_throughput,
Felix Fietkauec8aa662010-05-13 16:48:03 +02001359};
1360
1361
Johannes Bergf6e1a732014-01-21 00:32:52 +01001362static void __init init_sample_table(void)
Felix Fietkauec8aa662010-05-13 16:48:03 +02001363{
1364 int col, i, new_idx;
1365 u8 rnd[MCS_GROUP_RATES];
1366
1367 memset(sample_table, 0xff, sizeof(sample_table));
1368 for (col = 0; col < SAMPLE_COLUMNS; col++) {
Karl Beldanf7d8ad82013-11-13 10:54:19 +01001369 prandom_bytes(rnd, sizeof(rnd));
Felix Fietkauec8aa662010-05-13 16:48:03 +02001370 for (i = 0; i < MCS_GROUP_RATES; i++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +02001371 new_idx = (i + rnd[i]) % MCS_GROUP_RATES;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001372 while (sample_table[col][new_idx] != 0xff)
1373 new_idx = (new_idx + 1) % MCS_GROUP_RATES;
1374
1375 sample_table[col][new_idx] = i;
1376 }
1377 }
1378}
1379
1380int __init
1381rc80211_minstrel_ht_init(void)
1382{
1383 init_sample_table();
1384 return ieee80211_rate_control_register(&mac80211_minstrel_ht);
1385}
1386
1387void
1388rc80211_minstrel_ht_exit(void)
1389{
1390 ieee80211_rate_control_unregister(&mac80211_minstrel_ht);
1391}