blob: b91655a0d8f090867d1bdb9c8d2de2d5a63f5919 [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>
13#include <linux/ieee80211.h>
14#include <net/mac80211.h>
15#include "rate.h"
16#include "rc80211_minstrel.h"
17#include "rc80211_minstrel_ht.h"
18
19#define AVG_PKT_SIZE 1200
Felix Fietkauec8aa662010-05-13 16:48:03 +020020
21/* Number of bits for an average sized packet */
22#define MCS_NBITS (AVG_PKT_SIZE << 3)
23
24/* Number of symbols for a packet with (bps) bits per symbol */
25#define MCS_NSYMS(bps) ((MCS_NBITS + (bps) - 1) / (bps))
26
Felix Fietkaued97a132013-03-02 21:20:12 +010027/* Transmission time (nanoseconds) for a packet containing (syms) symbols */
Felix Fietkauec8aa662010-05-13 16:48:03 +020028#define MCS_SYMBOL_TIME(sgi, syms) \
29 (sgi ? \
Felix Fietkaued97a132013-03-02 21:20:12 +010030 ((syms) * 18000 + 4000) / 5 : /* syms * 3.6 us */ \
31 ((syms) * 1000) << 2 /* syms * 4 us */ \
Felix Fietkauec8aa662010-05-13 16:48:03 +020032 )
33
34/* Transmit duration for the raw data part of an average sized packet */
35#define MCS_DURATION(streams, sgi, bps) MCS_SYMBOL_TIME(sgi, MCS_NSYMS((streams) * (bps)))
36
Helmut Schaaa5f69d942011-11-14 15:28:20 +010037/*
38 * Define group sort order: HT40 -> SGI -> #streams
39 */
40#define GROUP_IDX(_streams, _sgi, _ht40) \
41 MINSTREL_MAX_STREAMS * 2 * _ht40 + \
42 MINSTREL_MAX_STREAMS * _sgi + \
43 _streams - 1
44
Felix Fietkauec8aa662010-05-13 16:48:03 +020045/* MCS rate information for an MCS group */
Helmut Schaaa5f69d942011-11-14 15:28:20 +010046#define MCS_GROUP(_streams, _sgi, _ht40) \
47 [GROUP_IDX(_streams, _sgi, _ht40)] = { \
Felix Fietkauec8aa662010-05-13 16:48:03 +020048 .streams = _streams, \
49 .flags = \
50 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
51 (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
52 .duration = { \
53 MCS_DURATION(_streams, _sgi, _ht40 ? 54 : 26), \
54 MCS_DURATION(_streams, _sgi, _ht40 ? 108 : 52), \
55 MCS_DURATION(_streams, _sgi, _ht40 ? 162 : 78), \
56 MCS_DURATION(_streams, _sgi, _ht40 ? 216 : 104), \
57 MCS_DURATION(_streams, _sgi, _ht40 ? 324 : 156), \
58 MCS_DURATION(_streams, _sgi, _ht40 ? 432 : 208), \
59 MCS_DURATION(_streams, _sgi, _ht40 ? 486 : 234), \
60 MCS_DURATION(_streams, _sgi, _ht40 ? 540 : 260) \
61 } \
62}
63
Felix Fietkaua0497f92013-02-13 10:51:08 +010064#define CCK_DURATION(_bitrate, _short, _len) \
Felix Fietkaued97a132013-03-02 21:20:12 +010065 (1000 * (10 /* SIFS */ + \
Felix Fietkaua0497f92013-02-13 10:51:08 +010066 (_short ? 72 + 24 : 144 + 48 ) + \
Felix Fietkaued97a132013-03-02 21:20:12 +010067 (8 * (_len + 4) * 10) / (_bitrate)))
Felix Fietkaua0497f92013-02-13 10:51:08 +010068
69#define CCK_ACK_DURATION(_bitrate, _short) \
70 (CCK_DURATION((_bitrate > 10 ? 20 : 10), false, 60) + \
71 CCK_DURATION(_bitrate, _short, AVG_PKT_SIZE))
72
73#define CCK_DURATION_LIST(_short) \
74 CCK_ACK_DURATION(10, _short), \
75 CCK_ACK_DURATION(20, _short), \
76 CCK_ACK_DURATION(55, _short), \
77 CCK_ACK_DURATION(110, _short)
78
79#define CCK_GROUP \
80 [MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS] = { \
81 .streams = 0, \
82 .duration = { \
83 CCK_DURATION_LIST(false), \
84 CCK_DURATION_LIST(true) \
85 } \
86 }
87
Felix Fietkauec8aa662010-05-13 16:48:03 +020088/*
89 * To enable sufficiently targeted rate sampling, MCS rates are divided into
90 * groups, based on the number of streams and flags (HT40, SGI) that they
91 * use.
Helmut Schaaa5f69d942011-11-14 15:28:20 +010092 *
93 * Sortorder has to be fixed for GROUP_IDX macro to be applicable:
94 * HT40 -> SGI -> #streams
Felix Fietkauec8aa662010-05-13 16:48:03 +020095 */
96const struct mcs_group minstrel_mcs_groups[] = {
97 MCS_GROUP(1, 0, 0),
98 MCS_GROUP(2, 0, 0),
99#if MINSTREL_MAX_STREAMS >= 3
100 MCS_GROUP(3, 0, 0),
101#endif
102
103 MCS_GROUP(1, 1, 0),
104 MCS_GROUP(2, 1, 0),
105#if MINSTREL_MAX_STREAMS >= 3
106 MCS_GROUP(3, 1, 0),
107#endif
108
109 MCS_GROUP(1, 0, 1),
110 MCS_GROUP(2, 0, 1),
111#if MINSTREL_MAX_STREAMS >= 3
112 MCS_GROUP(3, 0, 1),
113#endif
114
115 MCS_GROUP(1, 1, 1),
116 MCS_GROUP(2, 1, 1),
117#if MINSTREL_MAX_STREAMS >= 3
118 MCS_GROUP(3, 1, 1),
119#endif
Felix Fietkaua0497f92013-02-13 10:51:08 +0100120
121 /* must be last */
122 CCK_GROUP
Felix Fietkauec8aa662010-05-13 16:48:03 +0200123};
124
Felix Fietkaua0497f92013-02-13 10:51:08 +0100125#define MINSTREL_CCK_GROUP (ARRAY_SIZE(minstrel_mcs_groups) - 1)
126
Felix Fietkauec8aa662010-05-13 16:48:03 +0200127static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES];
128
Felix Fietkaua8566662013-04-22 16:14:42 +0200129static void
130minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi);
131
Felix Fietkauec8aa662010-05-13 16:48:03 +0200132/*
Felix Fietkauec8aa662010-05-13 16:48:03 +0200133 * Look up an MCS group index based on mac80211 rate information
134 */
135static int
136minstrel_ht_get_group_idx(struct ieee80211_tx_rate *rate)
137{
Karl Beldan7a5e3fa2013-11-11 13:12:55 +0100138 return GROUP_IDX((rate->idx / 8) + 1,
Helmut Schaaa5f69d942011-11-14 15:28:20 +0100139 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
140 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200141}
142
Felix Fietkaua0497f92013-02-13 10:51:08 +0100143static struct minstrel_rate_stats *
144minstrel_ht_get_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
145 struct ieee80211_tx_rate *rate)
146{
147 int group, idx;
148
149 if (rate->flags & IEEE80211_TX_RC_MCS) {
150 group = minstrel_ht_get_group_idx(rate);
Karl Beldan7a5e3fa2013-11-11 13:12:55 +0100151 idx = rate->idx % 8;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100152 } else {
153 group = MINSTREL_CCK_GROUP;
154
155 for (idx = 0; idx < ARRAY_SIZE(mp->cck_rates); idx++)
156 if (rate->idx == mp->cck_rates[idx])
157 break;
158
159 /* short preamble */
160 if (!(mi->groups[group].supported & BIT(idx)))
161 idx += 4;
162 }
163 return &mi->groups[group].rates[idx];
164}
165
Felix Fietkauec8aa662010-05-13 16:48:03 +0200166static inline struct minstrel_rate_stats *
167minstrel_get_ratestats(struct minstrel_ht_sta *mi, int index)
168{
169 return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES];
170}
171
172
173/*
174 * Recalculate success probabilities and counters for a rate using EWMA
175 */
176static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100177minstrel_calc_rate_ewma(struct minstrel_rate_stats *mr)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200178{
179 if (unlikely(mr->attempts > 0)) {
180 mr->sample_skipped = 0;
181 mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
182 if (!mr->att_hist)
183 mr->probability = mr->cur_prob;
184 else
185 mr->probability = minstrel_ewma(mr->probability,
186 mr->cur_prob, EWMA_LEVEL);
187 mr->att_hist += mr->attempts;
188 mr->succ_hist += mr->success;
189 } else {
190 mr->sample_skipped++;
191 }
192 mr->last_success = mr->success;
193 mr->last_attempts = mr->attempts;
194 mr->success = 0;
195 mr->attempts = 0;
196}
197
198/*
199 * Calculate throughput based on the average A-MPDU length, taking into account
200 * the expected number of retransmissions and their expected length
201 */
202static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100203minstrel_ht_calc_tp(struct minstrel_ht_sta *mi, int group, int rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200204{
205 struct minstrel_rate_stats *mr;
Felix Fietkaued97a132013-03-02 21:20:12 +0100206 unsigned int nsecs = 0;
207 unsigned int tp;
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100208 unsigned int prob;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200209
210 mr = &mi->groups[group].rates[rate];
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100211 prob = mr->probability;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200212
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100213 if (prob < MINSTREL_FRAC(1, 10)) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200214 mr->cur_tp = 0;
215 return;
216 }
217
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100218 /*
219 * For the throughput calculation, limit the probability value to 90% to
220 * account for collision related packet error rate fluctuation
221 */
222 if (prob > MINSTREL_FRAC(9, 10))
223 prob = MINSTREL_FRAC(9, 10);
224
Felix Fietkaua0497f92013-02-13 10:51:08 +0100225 if (group != MINSTREL_CCK_GROUP)
Felix Fietkaued97a132013-03-02 21:20:12 +0100226 nsecs = 1000 * mi->overhead / MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100227
Felix Fietkaued97a132013-03-02 21:20:12 +0100228 nsecs += minstrel_mcs_groups[group].duration[rate];
229 tp = 1000000 * ((mr->probability * 1000) / nsecs);
230
231 mr->cur_tp = MINSTREL_TRUNC(tp);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200232}
233
234/*
235 * Update rate statistics and select new primary rates
236 *
237 * Rules for rate selection:
238 * - max_prob_rate must use only one stream, as a tradeoff between delivery
239 * probability and throughput during strong fluctuations
240 * - as long as the max prob rate has a probability of more than 3/4, pick
241 * higher throughput rates, even if the probablity is a bit lower
242 */
243static void
244minstrel_ht_update_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
245{
246 struct minstrel_mcs_group_data *mg;
247 struct minstrel_rate_stats *mr;
248 int cur_prob, cur_prob_tp, cur_tp, cur_tp2;
249 int group, i, index;
Karl Beldanc2eb5b02013-04-18 14:26:20 +0200250 bool mi_rates_valid = false;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200251
252 if (mi->ampdu_packets > 0) {
253 mi->avg_ampdu_len = minstrel_ewma(mi->avg_ampdu_len,
254 MINSTREL_FRAC(mi->ampdu_len, mi->ampdu_packets), EWMA_LEVEL);
255 mi->ampdu_len = 0;
256 mi->ampdu_packets = 0;
257 }
258
259 mi->sample_slow = 0;
260 mi->sample_count = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200261
262 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
Karl Beldanc2eb5b02013-04-18 14:26:20 +0200263 bool mg_rates_valid = false;
264
Felix Fietkauec8aa662010-05-13 16:48:03 +0200265 cur_prob = 0;
266 cur_prob_tp = 0;
267 cur_tp = 0;
268 cur_tp2 = 0;
269
270 mg = &mi->groups[group];
271 if (!mg->supported)
272 continue;
273
Felix Fietkauec8aa662010-05-13 16:48:03 +0200274 mi->sample_count++;
275
276 for (i = 0; i < MCS_GROUP_RATES; i++) {
277 if (!(mg->supported & BIT(i)))
278 continue;
279
Karl Beldanc2eb5b02013-04-18 14:26:20 +0200280 /* initialize rates selections starting indexes */
281 if (!mg_rates_valid) {
282 mg->max_tp_rate = mg->max_tp_rate2 =
283 mg->max_prob_rate = i;
284 if (!mi_rates_valid) {
285 mi->max_tp_rate = mi->max_tp_rate2 =
286 mi->max_prob_rate = i;
287 mi_rates_valid = true;
288 }
289 mg_rates_valid = true;
290 }
291
Felix Fietkauec8aa662010-05-13 16:48:03 +0200292 mr = &mg->rates[i];
293 mr->retry_updated = false;
294 index = MCS_GROUP_RATES * group + i;
Patrick Kelle6048d7632011-11-15 16:44:48 +0100295 minstrel_calc_rate_ewma(mr);
296 minstrel_ht_calc_tp(mi, group, i);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200297
298 if (!mr->cur_tp)
299 continue;
300
Felix Fietkauec8aa662010-05-13 16:48:03 +0200301 if ((mr->cur_tp > cur_prob_tp && mr->probability >
302 MINSTREL_FRAC(3, 4)) || mr->probability > cur_prob) {
303 mg->max_prob_rate = index;
304 cur_prob = mr->probability;
Ming Lei009271f2010-07-01 23:18:42 +0800305 cur_prob_tp = mr->cur_tp;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200306 }
307
308 if (mr->cur_tp > cur_tp) {
309 swap(index, mg->max_tp_rate);
310 cur_tp = mr->cur_tp;
311 mr = minstrel_get_ratestats(mi, index);
312 }
313
314 if (index >= mg->max_tp_rate)
315 continue;
316
317 if (mr->cur_tp > cur_tp2) {
318 mg->max_tp_rate2 = index;
319 cur_tp2 = mr->cur_tp;
320 }
321 }
322 }
323
Felix Fietkau96d4ac32013-03-02 21:20:14 +0100324 /* try to sample all available rates during each interval */
325 mi->sample_count *= 8;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200326
327 cur_prob = 0;
328 cur_prob_tp = 0;
329 cur_tp = 0;
330 cur_tp2 = 0;
331 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
332 mg = &mi->groups[group];
333 if (!mg->supported)
334 continue;
335
Felix Fietkauec8aa662010-05-13 16:48:03 +0200336 mr = minstrel_get_ratestats(mi, mg->max_tp_rate);
337 if (cur_tp < mr->cur_tp) {
Lorenzo Bianconi89888e32011-09-24 18:48:26 +0200338 mi->max_tp_rate2 = mi->max_tp_rate;
339 cur_tp2 = cur_tp;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200340 mi->max_tp_rate = mg->max_tp_rate;
341 cur_tp = mr->cur_tp;
Felix Fietkau965237a2013-03-03 12:49:51 +0100342 mi->max_prob_streams = minstrel_mcs_groups[group].streams - 1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200343 }
344
345 mr = minstrel_get_ratestats(mi, mg->max_tp_rate2);
346 if (cur_tp2 < mr->cur_tp) {
347 mi->max_tp_rate2 = mg->max_tp_rate2;
348 cur_tp2 = mr->cur_tp;
349 }
350 }
351
Felix Fietkau965237a2013-03-03 12:49:51 +0100352 if (mi->max_prob_streams < 1)
353 mi->max_prob_streams = 1;
Felix Fietkaua299c6d2013-03-02 21:20:13 +0100354
355 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
356 mg = &mi->groups[group];
357 if (!mg->supported)
358 continue;
359 mr = minstrel_get_ratestats(mi, mg->max_prob_rate);
360 if (cur_prob_tp < mr->cur_tp &&
Felix Fietkau965237a2013-03-03 12:49:51 +0100361 minstrel_mcs_groups[group].streams <= mi->max_prob_streams) {
Felix Fietkaua299c6d2013-03-02 21:20:13 +0100362 mi->max_prob_rate = mg->max_prob_rate;
363 cur_prob = mr->cur_prob;
364 cur_prob_tp = mr->cur_tp;
365 }
366 }
367
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +0200368#ifdef CONFIG_MAC80211_DEBUGFS
369 /* use fixed index if set */
370 if (mp->fixed_rate_idx != -1) {
371 mi->max_tp_rate = mp->fixed_rate_idx;
372 mi->max_tp_rate2 = mp->fixed_rate_idx;
373 mi->max_prob_rate = mp->fixed_rate_idx;
374 }
375#endif
Felix Fietkaua299c6d2013-03-02 21:20:13 +0100376
Felix Fietkauec8aa662010-05-13 16:48:03 +0200377 mi->stats_update = jiffies;
378}
379
380static bool
Felix Fietkaua0497f92013-02-13 10:51:08 +0100381minstrel_ht_txstat_valid(struct minstrel_priv *mp, struct ieee80211_tx_rate *rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200382{
Helmut Schaab79296b2011-11-14 15:28:19 +0100383 if (rate->idx < 0)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200384 return false;
385
Helmut Schaab79296b2011-11-14 15:28:19 +0100386 if (!rate->count)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200387 return false;
388
Felix Fietkaua0497f92013-02-13 10:51:08 +0100389 if (rate->flags & IEEE80211_TX_RC_MCS)
390 return true;
391
392 return rate->idx == mp->cck_rates[0] ||
393 rate->idx == mp->cck_rates[1] ||
394 rate->idx == mp->cck_rates[2] ||
395 rate->idx == mp->cck_rates[3];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200396}
397
398static void
399minstrel_next_sample_idx(struct minstrel_ht_sta *mi)
400{
401 struct minstrel_mcs_group_data *mg;
402
403 for (;;) {
404 mi->sample_group++;
405 mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups);
406 mg = &mi->groups[mi->sample_group];
407
408 if (!mg->supported)
409 continue;
410
411 if (++mg->index >= MCS_GROUP_RATES) {
412 mg->index = 0;
413 if (++mg->column >= ARRAY_SIZE(sample_table))
414 mg->column = 0;
415 }
416 break;
417 }
418}
419
420static void
John W. Linvilled5ece212010-06-24 11:18:38 -0400421minstrel_downgrade_rate(struct minstrel_ht_sta *mi, unsigned int *idx,
422 bool primary)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200423{
424 int group, orig_group;
425
426 orig_group = group = *idx / MCS_GROUP_RATES;
427 while (group > 0) {
428 group--;
429
430 if (!mi->groups[group].supported)
431 continue;
432
433 if (minstrel_mcs_groups[group].streams >
434 minstrel_mcs_groups[orig_group].streams)
435 continue;
436
437 if (primary)
438 *idx = mi->groups[group].max_tp_rate;
439 else
440 *idx = mi->groups[group].max_tp_rate2;
441 break;
442 }
443}
444
445static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100446minstrel_aggr_check(struct ieee80211_sta *pubsta, struct sk_buff *skb)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200447{
448 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
449 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
450 u16 tid;
451
452 if (unlikely(!ieee80211_is_data_qos(hdr->frame_control)))
453 return;
454
Johannes Berge133fae2013-08-22 08:36:41 +0200455 if (unlikely(skb->protocol == cpu_to_be16(ETH_P_PAE)))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200456 return;
457
458 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
Johannes Berga622ab72010-06-10 10:21:39 +0200459 if (likely(sta->ampdu_mlme.tid_tx[tid]))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200460 return;
461
Luis R. Rodriguez48124d12010-11-23 15:05:02 -0800462 if (skb_get_queue_mapping(skb) == IEEE80211_AC_VO)
463 return;
464
Sujith Manoharanbd2ce6e2010-12-15 07:47:10 +0530465 ieee80211_start_tx_ba_session(pubsta, tid, 5000);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200466}
467
468static void
469minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
470 struct ieee80211_sta *sta, void *priv_sta,
471 struct sk_buff *skb)
472{
473 struct minstrel_ht_sta_priv *msp = priv_sta;
474 struct minstrel_ht_sta *mi = &msp->ht;
475 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
476 struct ieee80211_tx_rate *ar = info->status.rates;
477 struct minstrel_rate_stats *rate, *rate2;
478 struct minstrel_priv *mp = priv;
Felix Fietkaua8566662013-04-22 16:14:42 +0200479 bool last, update = false;
Johannes Berga544ab72012-11-13 21:36:27 +0100480 int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200481
482 if (!msp->is_ht)
483 return mac80211_minstrel.tx_status(priv, sband, sta, &msp->legacy, skb);
484
485 /* This packet was aggregated but doesn't carry status info */
486 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
487 !(info->flags & IEEE80211_TX_STAT_AMPDU))
488 return;
489
Björn Smedman15d46f32010-10-10 22:14:25 +0200490 if (!(info->flags & IEEE80211_TX_STAT_AMPDU)) {
491 info->status.ampdu_ack_len =
492 (info->flags & IEEE80211_TX_STAT_ACK ? 1 : 0);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200493 info->status.ampdu_len = 1;
494 }
495
496 mi->ampdu_packets++;
497 mi->ampdu_len += info->status.ampdu_len;
498
499 if (!mi->sample_wait && !mi->sample_tries && mi->sample_count > 0) {
Felix Fietkauc7317e42010-10-21 02:47:25 +0200500 mi->sample_wait = 16 + 2 * MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkau52c00a32013-03-05 14:20:19 +0100501 mi->sample_tries = 1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200502 mi->sample_count--;
503 }
504
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800505 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200506 mi->sample_packets += info->status.ampdu_len;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200507
Felix Fietkaua0497f92013-02-13 10:51:08 +0100508 last = !minstrel_ht_txstat_valid(mp, &ar[0]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200509 for (i = 0; !last; i++) {
510 last = (i == IEEE80211_TX_MAX_RATES - 1) ||
Felix Fietkaua0497f92013-02-13 10:51:08 +0100511 !minstrel_ht_txstat_valid(mp, &ar[i + 1]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200512
Felix Fietkaua0497f92013-02-13 10:51:08 +0100513 rate = minstrel_ht_get_stats(mp, mi, &ar[i]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200514
Björn Smedman15d46f32010-10-10 22:14:25 +0200515 if (last)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200516 rate->success += info->status.ampdu_ack_len;
517
518 rate->attempts += ar[i].count * info->status.ampdu_len;
519 }
520
521 /*
522 * check for sudden death of spatial multiplexing,
523 * downgrade to a lower number of streams if necessary.
524 */
525 rate = minstrel_get_ratestats(mi, mi->max_tp_rate);
526 if (rate->attempts > 30 &&
527 MINSTREL_FRAC(rate->success, rate->attempts) <
Felix Fietkaua8566662013-04-22 16:14:42 +0200528 MINSTREL_FRAC(20, 100)) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200529 minstrel_downgrade_rate(mi, &mi->max_tp_rate, true);
Felix Fietkaua8566662013-04-22 16:14:42 +0200530 update = true;
531 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200532
533 rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate2);
Ming Leiecc3d5a2010-07-01 23:19:50 +0800534 if (rate2->attempts > 30 &&
535 MINSTREL_FRAC(rate2->success, rate2->attempts) <
Felix Fietkaua8566662013-04-22 16:14:42 +0200536 MINSTREL_FRAC(20, 100)) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200537 minstrel_downgrade_rate(mi, &mi->max_tp_rate2, false);
Felix Fietkaua8566662013-04-22 16:14:42 +0200538 update = true;
539 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200540
541 if (time_after(jiffies, mi->stats_update + (mp->update_interval / 2 * HZ) / 1000)) {
Felix Fietkaua8566662013-04-22 16:14:42 +0200542 update = true;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200543 minstrel_ht_update_stats(mp, mi);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100544 if (!(info->flags & IEEE80211_TX_CTL_AMPDU) &&
545 mi->max_prob_rate / MCS_GROUP_RATES != MINSTREL_CCK_GROUP)
Patrick Kelle6048d7632011-11-15 16:44:48 +0100546 minstrel_aggr_check(sta, skb);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200547 }
Felix Fietkaua8566662013-04-22 16:14:42 +0200548
549 if (update)
550 minstrel_ht_update_rates(mp, mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200551}
552
553static void
554minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
555 int index)
556{
557 struct minstrel_rate_stats *mr;
558 const struct mcs_group *group;
559 unsigned int tx_time, tx_time_rtscts, tx_time_data;
560 unsigned int cw = mp->cw_min;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700561 unsigned int ctime = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200562 unsigned int t_slot = 9; /* FIXME */
563 unsigned int ampdu_len = MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100564 unsigned int overhead = 0, overhead_rtscts = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200565
566 mr = minstrel_get_ratestats(mi, index);
567 if (mr->probability < MINSTREL_FRAC(1, 10)) {
568 mr->retry_count = 1;
569 mr->retry_count_rtscts = 1;
570 return;
571 }
572
573 mr->retry_count = 2;
574 mr->retry_count_rtscts = 2;
575 mr->retry_updated = true;
576
577 group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
Felix Fietkaued97a132013-03-02 21:20:12 +0100578 tx_time_data = group->duration[index % MCS_GROUP_RATES] * ampdu_len / 1000;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700579
580 /* Contention time for first 2 tries */
581 ctime = (t_slot * cw) >> 1;
582 cw = min((cw << 1) | 1, mp->cw_max);
583 ctime += (t_slot * cw) >> 1;
584 cw = min((cw << 1) | 1, mp->cw_max);
585
Felix Fietkaua0497f92013-02-13 10:51:08 +0100586 if (index / MCS_GROUP_RATES != MINSTREL_CCK_GROUP) {
587 overhead = mi->overhead;
588 overhead_rtscts = mi->overhead_rtscts;
589 }
590
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700591 /* Total TX time for data and Contention after first 2 tries */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100592 tx_time = ctime + 2 * (overhead + tx_time_data);
593 tx_time_rtscts = ctime + 2 * (overhead_rtscts + tx_time_data);
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700594
595 /* See how many more tries we can fit inside segment size */
Felix Fietkauec8aa662010-05-13 16:48:03 +0200596 do {
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700597 /* Contention time for this try */
598 ctime = (t_slot * cw) >> 1;
599 cw = min((cw << 1) | 1, mp->cw_max);
600
601 /* Total TX time after this try */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100602 tx_time += ctime + overhead + tx_time_data;
603 tx_time_rtscts += ctime + overhead_rtscts + tx_time_data;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700604
Felix Fietkauec8aa662010-05-13 16:48:03 +0200605 if (tx_time_rtscts < mp->segment_size)
606 mr->retry_count_rtscts++;
607 } while ((tx_time < mp->segment_size) &&
608 (++mr->retry_count < mp->max_retry));
609}
610
611
612static void
613minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
Felix Fietkaua8566662013-04-22 16:14:42 +0200614 struct ieee80211_sta_rates *ratetbl, int offset, int index)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200615{
616 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
617 struct minstrel_rate_stats *mr;
Felix Fietkaua8566662013-04-22 16:14:42 +0200618 u8 idx;
619 u16 flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200620
621 mr = minstrel_get_ratestats(mi, index);
622 if (!mr->retry_updated)
623 minstrel_calc_retransmit(mp, mi, index);
624
Felix Fietkaua8566662013-04-22 16:14:42 +0200625 if (mr->probability < MINSTREL_FRAC(20, 100) || !mr->retry_count) {
626 ratetbl->rate[offset].count = 2;
627 ratetbl->rate[offset].count_rts = 2;
628 ratetbl->rate[offset].count_cts = 2;
629 } else {
630 ratetbl->rate[offset].count = mr->retry_count;
631 ratetbl->rate[offset].count_cts = mr->retry_count;
632 ratetbl->rate[offset].count_rts = mr->retry_count_rtscts;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100633 }
634
Felix Fietkaua8566662013-04-22 16:14:42 +0200635 if (index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) {
636 idx = mp->cck_rates[index % ARRAY_SIZE(mp->cck_rates)];
637 flags = 0;
638 } else {
Karl Beldan7a5e3fa2013-11-11 13:12:55 +0100639 idx = index % MCS_GROUP_RATES + (group->streams - 1) * 8;
Felix Fietkaua8566662013-04-22 16:14:42 +0200640 flags = IEEE80211_TX_RC_MCS | group->flags;
641 }
642
643 if (offset > 0) {
644 ratetbl->rate[offset].count = ratetbl->rate[offset].count_rts;
645 flags |= IEEE80211_TX_RC_USE_RTS_CTS;
646 }
647
648 ratetbl->rate[offset].idx = idx;
649 ratetbl->rate[offset].flags = flags;
650}
651
652static void
653minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
654{
655 struct ieee80211_sta_rates *rates;
656 int i = 0;
657
658 rates = kzalloc(sizeof(*rates), GFP_ATOMIC);
659 if (!rates)
660 return;
661
662 /* Start with max_tp_rate */
663 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_tp_rate);
664
665 if (mp->hw->max_rates >= 3) {
666 /* At least 3 tx rates supported, use max_tp_rate2 next */
667 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_tp_rate2);
668 }
669
670 if (mp->hw->max_rates >= 2) {
671 /*
672 * At least 2 tx rates supported, use max_prob_rate next */
673 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_prob_rate);
674 }
675
676 rates->rate[i].idx = -1;
677 rate_control_set_rates(mp->hw, mi->sta, rates);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200678}
679
680static inline int
681minstrel_get_duration(int index)
682{
683 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
684 return group->duration[index % MCS_GROUP_RATES];
685}
686
687static int
688minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
689{
690 struct minstrel_rate_stats *mr;
691 struct minstrel_mcs_group_data *mg;
Felix Fietkau965237a2013-03-03 12:49:51 +0100692 unsigned int sample_dur, sample_group;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200693 int sample_idx = 0;
694
695 if (mi->sample_wait > 0) {
696 mi->sample_wait--;
697 return -1;
698 }
699
700 if (!mi->sample_tries)
701 return -1;
702
Felix Fietkau965237a2013-03-03 12:49:51 +0100703 sample_group = mi->sample_group;
Karl Beldanf12140c2013-11-11 13:10:49 +0100704 mg = &mi->groups[sample_group];
705 sample_idx = sample_table[mg->column][mg->index];
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800706 minstrel_next_sample_idx(mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200707
Karl Beldanf12140c2013-11-11 13:10:49 +0100708 if (!(mg->supported & BIT(sample_idx)))
709 return -1;
710
711 mr = &mg->rates[sample_idx];
712 sample_idx += sample_group * MCS_GROUP_RATES;
713
Felix Fietkauec8aa662010-05-13 16:48:03 +0200714 /*
Helmut Schaaba6fa292012-03-14 13:31:11 +0100715 * Sampling might add some overhead (RTS, no aggregation)
716 * to the frame. Hence, don't use sampling for the currently
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100717 * used rates.
Helmut Schaaba6fa292012-03-14 13:31:11 +0100718 */
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100719 if (sample_idx == mi->max_tp_rate ||
720 sample_idx == mi->max_tp_rate2 ||
721 sample_idx == mi->max_prob_rate)
Helmut Schaaba6fa292012-03-14 13:31:11 +0100722 return -1;
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100723
Helmut Schaaba6fa292012-03-14 13:31:11 +0100724 /*
Felix Fietkaubc96f242013-03-16 17:00:26 +0100725 * Do not sample if the probability is already higher than 95%
726 * to avoid wasting airtime.
Felix Fietkauec8aa662010-05-13 16:48:03 +0200727 */
Felix Fietkaubc96f242013-03-16 17:00:26 +0100728 if (mr->probability > MINSTREL_FRAC(95, 100))
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800729 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200730
731 /*
732 * Make sure that lower rates get sampled only occasionally,
733 * if the link is working perfectly.
734 */
Felix Fietkau965237a2013-03-03 12:49:51 +0100735 sample_dur = minstrel_get_duration(sample_idx);
736 if (sample_dur >= minstrel_get_duration(mi->max_tp_rate2) &&
737 (mi->max_prob_streams <
738 minstrel_mcs_groups[sample_group].streams ||
739 sample_dur >= minstrel_get_duration(mi->max_prob_rate))) {
Felix Fietkauc7317e42010-10-21 02:47:25 +0200740 if (mr->sample_skipped < 20)
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800741 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200742
743 if (mi->sample_slow++ > 2)
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800744 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200745 }
Felix Fietkau098b8af2013-03-03 12:49:52 +0100746 mi->sample_tries--;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200747
748 return sample_idx;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200749}
750
751static void
Felix Fietkaua0497f92013-02-13 10:51:08 +0100752minstrel_ht_check_cck_shortpreamble(struct minstrel_priv *mp,
753 struct minstrel_ht_sta *mi, bool val)
754{
755 u8 supported = mi->groups[MINSTREL_CCK_GROUP].supported;
756
757 if (!supported || !mi->cck_supported_short)
758 return;
759
760 if (supported & (mi->cck_supported_short << (val * 4)))
761 return;
762
763 supported ^= mi->cck_supported_short | (mi->cck_supported_short << 4);
764 mi->groups[MINSTREL_CCK_GROUP].supported = supported;
765}
766
767static void
Felix Fietkauec8aa662010-05-13 16:48:03 +0200768minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
769 struct ieee80211_tx_rate_control *txrc)
770{
Felix Fietkaua8566662013-04-22 16:14:42 +0200771 const struct mcs_group *sample_group;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200772 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
Felix Fietkaua8566662013-04-22 16:14:42 +0200773 struct ieee80211_tx_rate *rate = &info->status.rates[0];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200774 struct minstrel_ht_sta_priv *msp = priv_sta;
775 struct minstrel_ht_sta *mi = &msp->ht;
776 struct minstrel_priv *mp = priv;
777 int sample_idx;
778
779 if (rate_control_send_low(sta, priv_sta, txrc))
780 return;
781
782 if (!msp->is_ht)
783 return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
784
785 info->flags |= mi->tx_flags;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100786 minstrel_ht_check_cck_shortpreamble(mp, mi, txrc->short_preamble);
Helmut Schaa6de062c2011-08-01 11:32:53 +0200787
Lorenzo Bianconi37feb7e2013-08-27 16:59:47 +0200788#ifdef CONFIG_MAC80211_DEBUGFS
789 if (mp->fixed_rate_idx != -1)
790 return;
791#endif
792
Helmut Schaa6de062c2011-08-01 11:32:53 +0200793 /* Don't use EAPOL frames for sampling on non-mrr hw */
794 if (mp->hw->max_rates == 1 &&
Johannes Bergaf61a162013-07-02 18:09:12 +0200795 (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO))
Helmut Schaa6de062c2011-08-01 11:32:53 +0200796 sample_idx = -1;
797 else
798 sample_idx = minstrel_get_sample_rate(mp, mi);
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200799
Felix Fietkauec8aa662010-05-13 16:48:03 +0200800 mi->total_packets++;
801
802 /* wraparound */
803 if (mi->total_packets == ~0) {
804 mi->total_packets = 0;
805 mi->sample_packets = 0;
806 }
Felix Fietkaua8566662013-04-22 16:14:42 +0200807
808 if (sample_idx < 0)
809 return;
810
811 sample_group = &minstrel_mcs_groups[sample_idx / MCS_GROUP_RATES];
812 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Felix Fietkau1cd15852013-06-28 21:04:35 +0200813 rate->count = 1;
814
815 if (sample_idx / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) {
816 int idx = sample_idx % ARRAY_SIZE(mp->cck_rates);
817 rate->idx = mp->cck_rates[idx];
818 rate->flags = 0;
819 return;
820 }
821
Felix Fietkaua8566662013-04-22 16:14:42 +0200822 rate->idx = sample_idx % MCS_GROUP_RATES +
Karl Beldan7a5e3fa2013-11-11 13:12:55 +0100823 (sample_group->streams - 1) * 8;
Felix Fietkaua8566662013-04-22 16:14:42 +0200824 rate->flags = IEEE80211_TX_RC_MCS | sample_group->flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200825}
826
827static void
Felix Fietkaua0497f92013-02-13 10:51:08 +0100828minstrel_ht_update_cck(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
829 struct ieee80211_supported_band *sband,
830 struct ieee80211_sta *sta)
831{
832 int i;
833
834 if (sband->band != IEEE80211_BAND_2GHZ)
835 return;
836
Felix Fietkau2dfca312013-08-20 19:43:54 +0200837 if (!(mp->hw->flags & IEEE80211_HW_SUPPORTS_HT_CCK_RATES))
838 return;
839
Felix Fietkaua0497f92013-02-13 10:51:08 +0100840 mi->cck_supported = 0;
841 mi->cck_supported_short = 0;
842 for (i = 0; i < 4; i++) {
843 if (!rate_supported(sta, sband->band, mp->cck_rates[i]))
844 continue;
845
846 mi->cck_supported |= BIT(i);
847 if (sband->bitrates[i].flags & IEEE80211_RATE_SHORT_PREAMBLE)
848 mi->cck_supported_short |= BIT(i);
849 }
850
851 mi->groups[MINSTREL_CCK_GROUP].supported = mi->cck_supported;
852}
853
854static void
Felix Fietkauec8aa662010-05-13 16:48:03 +0200855minstrel_ht_update_caps(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +0200856 struct cfg80211_chan_def *chandef,
Johannes Berg64f68e52012-03-28 10:58:37 +0200857 struct ieee80211_sta *sta, void *priv_sta)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200858{
859 struct minstrel_priv *mp = priv;
860 struct minstrel_ht_sta_priv *msp = priv_sta;
861 struct minstrel_ht_sta *mi = &msp->ht;
862 struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200863 u16 sta_cap = sta->ht_cap.cap;
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100864 int n_supported = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200865 int ack_dur;
866 int stbc;
867 int i;
868
869 /* fall back to the old minstrel for legacy stations */
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100870 if (!sta->ht_cap.ht_supported)
871 goto use_legacy;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200872
873 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) !=
Felix Fietkaua0497f92013-02-13 10:51:08 +0100874 MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS + 1);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200875
876 msp->is_ht = true;
877 memset(mi, 0, sizeof(*mi));
Felix Fietkaua8566662013-04-22 16:14:42 +0200878
879 mi->sta = sta;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200880 mi->stats_update = jiffies;
881
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200882 ack_dur = ieee80211_frame_duration(sband->band, 10, 60, 1, 1, 0);
883 mi->overhead = ieee80211_frame_duration(sband->band, 0, 60, 1, 1, 0);
884 mi->overhead += ack_dur;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200885 mi->overhead_rtscts = mi->overhead + 2 * ack_dur;
886
887 mi->avg_ampdu_len = MINSTREL_FRAC(1, 1);
888
889 /* When using MRR, sample more on the first attempt, without delay */
890 if (mp->has_mrr) {
891 mi->sample_count = 16;
892 mi->sample_wait = 0;
893 } else {
894 mi->sample_count = 8;
895 mi->sample_wait = 8;
896 }
897 mi->sample_tries = 4;
898
899 stbc = (sta_cap & IEEE80211_HT_CAP_RX_STBC) >>
900 IEEE80211_HT_CAP_RX_STBC_SHIFT;
901 mi->tx_flags |= stbc << IEEE80211_TX_CTL_STBC_SHIFT;
902
903 if (sta_cap & IEEE80211_HT_CAP_LDPC_CODING)
904 mi->tx_flags |= IEEE80211_TX_CTL_LDPC;
905
Felix Fietkauec8aa662010-05-13 16:48:03 +0200906 for (i = 0; i < ARRAY_SIZE(mi->groups); i++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200907 mi->groups[i].supported = 0;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100908 if (i == MINSTREL_CCK_GROUP) {
909 minstrel_ht_update_cck(mp, mi, sband, sta);
910 continue;
911 }
912
Felix Fietkauec8aa662010-05-13 16:48:03 +0200913 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_SHORT_GI) {
Johannes Berge1a0c6b2013-02-07 11:47:44 +0100914 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) {
915 if (!(sta_cap & IEEE80211_HT_CAP_SGI_40))
916 continue;
917 } else {
918 if (!(sta_cap & IEEE80211_HT_CAP_SGI_20))
919 continue;
920 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200921 }
922
Johannes Berge1a0c6b2013-02-07 11:47:44 +0100923 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH &&
924 sta->bandwidth < IEEE80211_STA_RX_BW_40)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200925 continue;
926
Helmut Schaae9219772012-03-09 14:13:45 +0100927 /* Mark MCS > 7 as unsupported if STA is in static SMPS mode */
Johannes Bergaf0ed692013-02-12 14:21:00 +0100928 if (sta->smps_mode == IEEE80211_SMPS_STATIC &&
Helmut Schaae9219772012-03-09 14:13:45 +0100929 minstrel_mcs_groups[i].streams > 1)
930 continue;
931
Felix Fietkauec8aa662010-05-13 16:48:03 +0200932 mi->groups[i].supported =
933 mcs->rx_mask[minstrel_mcs_groups[i].streams - 1];
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100934
935 if (mi->groups[i].supported)
936 n_supported++;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200937 }
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100938
939 if (!n_supported)
940 goto use_legacy;
941
Felix Fietkaua8566662013-04-22 16:14:42 +0200942 /* create an initial rate table with the lowest supported rates */
Karl Beldana3647362013-04-18 14:26:21 +0200943 minstrel_ht_update_stats(mp, mi);
Felix Fietkaua8566662013-04-22 16:14:42 +0200944 minstrel_ht_update_rates(mp, mi);
Karl Beldana3647362013-04-18 14:26:21 +0200945
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100946 return;
947
948use_legacy:
949 msp->is_ht = false;
950 memset(&msp->legacy, 0, sizeof(msp->legacy));
951 msp->legacy.r = msp->ratelist;
952 msp->legacy.sample_table = msp->sample_table;
Simon Wunderlich3de805c2013-07-08 16:55:50 +0200953 return mac80211_minstrel.rate_init(priv, sband, chandef, sta,
954 &msp->legacy);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200955}
956
957static void
958minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +0200959 struct cfg80211_chan_def *chandef,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200960 struct ieee80211_sta *sta, void *priv_sta)
961{
Simon Wunderlich3de805c2013-07-08 16:55:50 +0200962 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200963}
964
965static void
966minstrel_ht_rate_update(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +0200967 struct cfg80211_chan_def *chandef,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200968 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berg64f68e52012-03-28 10:58:37 +0200969 u32 changed)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200970{
Simon Wunderlich3de805c2013-07-08 16:55:50 +0200971 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200972}
973
974static void *
975minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
976{
977 struct ieee80211_supported_band *sband;
978 struct minstrel_ht_sta_priv *msp;
979 struct minstrel_priv *mp = priv;
980 struct ieee80211_hw *hw = mp->hw;
981 int max_rates = 0;
982 int i;
983
984 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
985 sband = hw->wiphy->bands[i];
986 if (sband && sband->n_bitrates > max_rates)
987 max_rates = sband->n_bitrates;
988 }
989
Thomas Huehn472dd352012-06-29 06:26:27 -0700990 msp = kzalloc(sizeof(*msp), gfp);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200991 if (!msp)
992 return NULL;
993
994 msp->ratelist = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
995 if (!msp->ratelist)
996 goto error;
997
998 msp->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
999 if (!msp->sample_table)
1000 goto error1;
1001
1002 return msp;
1003
1004error1:
Dan Carpenter7e988012010-07-22 13:14:19 +02001005 kfree(msp->ratelist);
Felix Fietkauec8aa662010-05-13 16:48:03 +02001006error:
1007 kfree(msp);
1008 return NULL;
1009}
1010
1011static void
1012minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
1013{
1014 struct minstrel_ht_sta_priv *msp = priv_sta;
1015
1016 kfree(msp->sample_table);
1017 kfree(msp->ratelist);
1018 kfree(msp);
1019}
1020
1021static void *
1022minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
1023{
1024 return mac80211_minstrel.alloc(hw, debugfsdir);
1025}
1026
1027static void
1028minstrel_ht_free(void *priv)
1029{
1030 mac80211_minstrel.free(priv);
1031}
1032
1033static struct rate_control_ops mac80211_minstrel_ht = {
1034 .name = "minstrel_ht",
1035 .tx_status = minstrel_ht_tx_status,
1036 .get_rate = minstrel_ht_get_rate,
1037 .rate_init = minstrel_ht_rate_init,
1038 .rate_update = minstrel_ht_rate_update,
1039 .alloc_sta = minstrel_ht_alloc_sta,
1040 .free_sta = minstrel_ht_free_sta,
1041 .alloc = minstrel_ht_alloc,
1042 .free = minstrel_ht_free,
1043#ifdef CONFIG_MAC80211_DEBUGFS
1044 .add_sta_debugfs = minstrel_ht_add_sta_debugfs,
1045 .remove_sta_debugfs = minstrel_ht_remove_sta_debugfs,
1046#endif
1047};
1048
1049
1050static void
1051init_sample_table(void)
1052{
1053 int col, i, new_idx;
1054 u8 rnd[MCS_GROUP_RATES];
1055
1056 memset(sample_table, 0xff, sizeof(sample_table));
1057 for (col = 0; col < SAMPLE_COLUMNS; col++) {
Karl Beldanf7d8ad82013-11-13 10:54:19 +01001058 prandom_bytes(rnd, sizeof(rnd));
Felix Fietkauec8aa662010-05-13 16:48:03 +02001059 for (i = 0; i < MCS_GROUP_RATES; i++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +02001060 new_idx = (i + rnd[i]) % MCS_GROUP_RATES;
Felix Fietkauec8aa662010-05-13 16:48:03 +02001061 while (sample_table[col][new_idx] != 0xff)
1062 new_idx = (new_idx + 1) % MCS_GROUP_RATES;
1063
1064 sample_table[col][new_idx] = i;
1065 }
1066 }
1067}
1068
1069int __init
1070rc80211_minstrel_ht_init(void)
1071{
1072 init_sample_table();
1073 return ieee80211_rate_control_register(&mac80211_minstrel_ht);
1074}
1075
1076void
1077rc80211_minstrel_ht_exit(void)
1078{
1079 ieee80211_rate_control_unregister(&mac80211_minstrel_ht);
1080}