mac80211: add APIs to allow keeping connections after WoWLAN
[deliverable/linux.git] / net / mac80211 / rc80211_minstrel_ht.c
CommitLineData
ec8aa669 1/*
a0497f9f 2 * Copyright (C) 2010-2013 Felix Fietkau <nbd@openwrt.org>
ec8aa669
FF
3 *
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
ec8aa669
FF
20
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
ed97a13c 27/* Transmission time (nanoseconds) for a packet containing (syms) symbols */
ec8aa669
FF
28#define MCS_SYMBOL_TIME(sgi, syms) \
29 (sgi ? \
ed97a13c
FF
30 ((syms) * 18000 + 4000) / 5 : /* syms * 3.6 us */ \
31 ((syms) * 1000) << 2 /* syms * 4 us */ \
ec8aa669
FF
32 )
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
a5f69d94
HS
37/*
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
ec8aa669 45/* MCS rate information for an MCS group */
a5f69d94
HS
46#define MCS_GROUP(_streams, _sgi, _ht40) \
47 [GROUP_IDX(_streams, _sgi, _ht40)] = { \
ec8aa669
FF
48 .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
a0497f9f 64#define CCK_DURATION(_bitrate, _short, _len) \
ed97a13c 65 (1000 * (10 /* SIFS */ + \
a0497f9f 66 (_short ? 72 + 24 : 144 + 48 ) + \
ed97a13c 67 (8 * (_len + 4) * 10) / (_bitrate)))
a0497f9f
FF
68
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
ec8aa669
FF
88/*
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.
a5f69d94
HS
92 *
93 * Sortorder has to be fixed for GROUP_IDX macro to be applicable:
94 * HT40 -> SGI -> #streams
ec8aa669
FF
95 */
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
a0497f9f
FF
120
121 /* must be last */
122 CCK_GROUP
ec8aa669
FF
123};
124
a0497f9f
FF
125#define MINSTREL_CCK_GROUP (ARRAY_SIZE(minstrel_mcs_groups) - 1)
126
ec8aa669
FF
127static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES];
128
a8566662
FF
129static void
130minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi);
131
ec8aa669
FF
132/*
133 * 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{
a5f69d94
HS
138 return GROUP_IDX((rate->idx / MCS_GROUP_RATES) + 1,
139 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
140 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH));
ec8aa669
FF
141}
142
a0497f9f
FF
143static 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);
151 idx = rate->idx % MCS_GROUP_RATES;
152 } 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
ec8aa669
FF
166static 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
6048d763 177minstrel_calc_rate_ewma(struct minstrel_rate_stats *mr)
ec8aa669
FF
178{
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
6048d763 203minstrel_ht_calc_tp(struct minstrel_ht_sta *mi, int group, int rate)
ec8aa669
FF
204{
205 struct minstrel_rate_stats *mr;
ed97a13c
FF
206 unsigned int nsecs = 0;
207 unsigned int tp;
3e8b1eb2 208 unsigned int prob;
ec8aa669
FF
209
210 mr = &mi->groups[group].rates[rate];
3e8b1eb2 211 prob = mr->probability;
ec8aa669 212
3e8b1eb2 213 if (prob < MINSTREL_FRAC(1, 10)) {
ec8aa669
FF
214 mr->cur_tp = 0;
215 return;
216 }
217
3e8b1eb2
FF
218 /*
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
a0497f9f 225 if (group != MINSTREL_CCK_GROUP)
ed97a13c 226 nsecs = 1000 * mi->overhead / MINSTREL_TRUNC(mi->avg_ampdu_len);
a0497f9f 227
ed97a13c
FF
228 nsecs += minstrel_mcs_groups[group].duration[rate];
229 tp = 1000000 * ((mr->probability * 1000) / nsecs);
230
231 mr->cur_tp = MINSTREL_TRUNC(tp);
ec8aa669
FF
232}
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;
c2eb5b0f 250 bool mi_rates_valid = false;
ec8aa669
FF
251
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;
ec8aa669
FF
261
262 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
c2eb5b0f
KB
263 bool mg_rates_valid = false;
264
ec8aa669
FF
265 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
ec8aa669
FF
274 mi->sample_count++;
275
276 for (i = 0; i < MCS_GROUP_RATES; i++) {
277 if (!(mg->supported & BIT(i)))
278 continue;
279
c2eb5b0f
KB
280 /* 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
ec8aa669
FF
292 mr = &mg->rates[i];
293 mr->retry_updated = false;
294 index = MCS_GROUP_RATES * group + i;
6048d763
PK
295 minstrel_calc_rate_ewma(mr);
296 minstrel_ht_calc_tp(mi, group, i);
ec8aa669
FF
297
298 if (!mr->cur_tp)
299 continue;
300
ec8aa669
FF
301 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;
009271f9 305 cur_prob_tp = mr->cur_tp;
ec8aa669
FF
306 }
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
96d4ac3f
FF
324 /* try to sample all available rates during each interval */
325 mi->sample_count *= 8;
ec8aa669
FF
326
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
ec8aa669
FF
336 mr = minstrel_get_ratestats(mi, mg->max_tp_rate);
337 if (cur_tp < mr->cur_tp) {
89888e36
LB
338 mi->max_tp_rate2 = mi->max_tp_rate;
339 cur_tp2 = cur_tp;
ec8aa669
FF
340 mi->max_tp_rate = mg->max_tp_rate;
341 cur_tp = mr->cur_tp;
965237ab 342 mi->max_prob_streams = minstrel_mcs_groups[group].streams - 1;
ec8aa669
FF
343 }
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
965237ab
FF
352 if (mi->max_prob_streams < 1)
353 mi->max_prob_streams = 1;
a299c6d5
FF
354
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 &&
965237ab 361 minstrel_mcs_groups[group].streams <= mi->max_prob_streams) {
a299c6d5
FF
362 mi->max_prob_rate = mg->max_prob_rate;
363 cur_prob = mr->cur_prob;
364 cur_prob_tp = mr->cur_tp;
365 }
366 }
367
368
ec8aa669
FF
369 mi->stats_update = jiffies;
370}
371
372static bool
a0497f9f 373minstrel_ht_txstat_valid(struct minstrel_priv *mp, struct ieee80211_tx_rate *rate)
ec8aa669 374{
b79296be 375 if (rate->idx < 0)
ec8aa669
FF
376 return false;
377
b79296be 378 if (!rate->count)
ec8aa669
FF
379 return false;
380
a0497f9f
FF
381 if (rate->flags & IEEE80211_TX_RC_MCS)
382 return true;
383
384 return rate->idx == mp->cck_rates[0] ||
385 rate->idx == mp->cck_rates[1] ||
386 rate->idx == mp->cck_rates[2] ||
387 rate->idx == mp->cck_rates[3];
ec8aa669
FF
388}
389
390static void
391minstrel_next_sample_idx(struct minstrel_ht_sta *mi)
392{
393 struct minstrel_mcs_group_data *mg;
394
395 for (;;) {
396 mi->sample_group++;
397 mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups);
398 mg = &mi->groups[mi->sample_group];
399
400 if (!mg->supported)
401 continue;
402
403 if (++mg->index >= MCS_GROUP_RATES) {
404 mg->index = 0;
405 if (++mg->column >= ARRAY_SIZE(sample_table))
406 mg->column = 0;
407 }
408 break;
409 }
410}
411
412static void
d5ece215
JL
413minstrel_downgrade_rate(struct minstrel_ht_sta *mi, unsigned int *idx,
414 bool primary)
ec8aa669
FF
415{
416 int group, orig_group;
417
418 orig_group = group = *idx / MCS_GROUP_RATES;
419 while (group > 0) {
420 group--;
421
422 if (!mi->groups[group].supported)
423 continue;
424
425 if (minstrel_mcs_groups[group].streams >
426 minstrel_mcs_groups[orig_group].streams)
427 continue;
428
429 if (primary)
430 *idx = mi->groups[group].max_tp_rate;
431 else
432 *idx = mi->groups[group].max_tp_rate2;
433 break;
434 }
435}
436
437static void
6048d763 438minstrel_aggr_check(struct ieee80211_sta *pubsta, struct sk_buff *skb)
ec8aa669
FF
439{
440 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
441 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
af61a165 442 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
ec8aa669
FF
443 u16 tid;
444
445 if (unlikely(!ieee80211_is_data_qos(hdr->frame_control)))
446 return;
447
af61a165 448 if (unlikely(info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO))
ec8aa669
FF
449 return;
450
451 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
a622ab72 452 if (likely(sta->ampdu_mlme.tid_tx[tid]))
ec8aa669
FF
453 return;
454
48124d1a
LR
455 if (skb_get_queue_mapping(skb) == IEEE80211_AC_VO)
456 return;
457
bd2ce6e4 458 ieee80211_start_tx_ba_session(pubsta, tid, 5000);
ec8aa669
FF
459}
460
461static void
462minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
463 struct ieee80211_sta *sta, void *priv_sta,
464 struct sk_buff *skb)
465{
466 struct minstrel_ht_sta_priv *msp = priv_sta;
467 struct minstrel_ht_sta *mi = &msp->ht;
468 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
469 struct ieee80211_tx_rate *ar = info->status.rates;
470 struct minstrel_rate_stats *rate, *rate2;
471 struct minstrel_priv *mp = priv;
a8566662 472 bool last, update = false;
a544ab7f 473 int i;
ec8aa669
FF
474
475 if (!msp->is_ht)
476 return mac80211_minstrel.tx_status(priv, sband, sta, &msp->legacy, skb);
477
478 /* This packet was aggregated but doesn't carry status info */
479 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
480 !(info->flags & IEEE80211_TX_STAT_AMPDU))
481 return;
482
15d46f38
BS
483 if (!(info->flags & IEEE80211_TX_STAT_AMPDU)) {
484 info->status.ampdu_ack_len =
485 (info->flags & IEEE80211_TX_STAT_ACK ? 1 : 0);
ec8aa669
FF
486 info->status.ampdu_len = 1;
487 }
488
489 mi->ampdu_packets++;
490 mi->ampdu_len += info->status.ampdu_len;
491
492 if (!mi->sample_wait && !mi->sample_tries && mi->sample_count > 0) {
c7317e41 493 mi->sample_wait = 16 + 2 * MINSTREL_TRUNC(mi->avg_ampdu_len);
52c00a37 494 mi->sample_tries = 1;
ec8aa669
FF
495 mi->sample_count--;
496 }
497
8d5eab5a 498 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
ec8aa669 499 mi->sample_packets += info->status.ampdu_len;
ec8aa669 500
a0497f9f 501 last = !minstrel_ht_txstat_valid(mp, &ar[0]);
ec8aa669
FF
502 for (i = 0; !last; i++) {
503 last = (i == IEEE80211_TX_MAX_RATES - 1) ||
a0497f9f 504 !minstrel_ht_txstat_valid(mp, &ar[i + 1]);
ec8aa669 505
a0497f9f 506 rate = minstrel_ht_get_stats(mp, mi, &ar[i]);
ec8aa669 507
15d46f38 508 if (last)
ec8aa669
FF
509 rate->success += info->status.ampdu_ack_len;
510
511 rate->attempts += ar[i].count * info->status.ampdu_len;
512 }
513
514 /*
515 * check for sudden death of spatial multiplexing,
516 * downgrade to a lower number of streams if necessary.
517 */
518 rate = minstrel_get_ratestats(mi, mi->max_tp_rate);
519 if (rate->attempts > 30 &&
520 MINSTREL_FRAC(rate->success, rate->attempts) <
a8566662 521 MINSTREL_FRAC(20, 100)) {
ec8aa669 522 minstrel_downgrade_rate(mi, &mi->max_tp_rate, true);
a8566662
FF
523 update = true;
524 }
ec8aa669
FF
525
526 rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate2);
ecc3d5ae
ML
527 if (rate2->attempts > 30 &&
528 MINSTREL_FRAC(rate2->success, rate2->attempts) <
a8566662 529 MINSTREL_FRAC(20, 100)) {
ec8aa669 530 minstrel_downgrade_rate(mi, &mi->max_tp_rate2, false);
a8566662
FF
531 update = true;
532 }
ec8aa669
FF
533
534 if (time_after(jiffies, mi->stats_update + (mp->update_interval / 2 * HZ) / 1000)) {
a8566662 535 update = true;
ec8aa669 536 minstrel_ht_update_stats(mp, mi);
a0497f9f
FF
537 if (!(info->flags & IEEE80211_TX_CTL_AMPDU) &&
538 mi->max_prob_rate / MCS_GROUP_RATES != MINSTREL_CCK_GROUP)
6048d763 539 minstrel_aggr_check(sta, skb);
ec8aa669 540 }
a8566662
FF
541
542 if (update)
543 minstrel_ht_update_rates(mp, mi);
ec8aa669
FF
544}
545
546static void
547minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
548 int index)
549{
550 struct minstrel_rate_stats *mr;
551 const struct mcs_group *group;
552 unsigned int tx_time, tx_time_rtscts, tx_time_data;
553 unsigned int cw = mp->cw_min;
8fddddff 554 unsigned int ctime = 0;
ec8aa669
FF
555 unsigned int t_slot = 9; /* FIXME */
556 unsigned int ampdu_len = MINSTREL_TRUNC(mi->avg_ampdu_len);
a0497f9f 557 unsigned int overhead = 0, overhead_rtscts = 0;
ec8aa669
FF
558
559 mr = minstrel_get_ratestats(mi, index);
560 if (mr->probability < MINSTREL_FRAC(1, 10)) {
561 mr->retry_count = 1;
562 mr->retry_count_rtscts = 1;
563 return;
564 }
565
566 mr->retry_count = 2;
567 mr->retry_count_rtscts = 2;
568 mr->retry_updated = true;
569
570 group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
ed97a13c 571 tx_time_data = group->duration[index % MCS_GROUP_RATES] * ampdu_len / 1000;
8fddddff
DH
572
573 /* Contention time for first 2 tries */
574 ctime = (t_slot * cw) >> 1;
575 cw = min((cw << 1) | 1, mp->cw_max);
576 ctime += (t_slot * cw) >> 1;
577 cw = min((cw << 1) | 1, mp->cw_max);
578
a0497f9f
FF
579 if (index / MCS_GROUP_RATES != MINSTREL_CCK_GROUP) {
580 overhead = mi->overhead;
581 overhead_rtscts = mi->overhead_rtscts;
582 }
583
8fddddff 584 /* Total TX time for data and Contention after first 2 tries */
a0497f9f
FF
585 tx_time = ctime + 2 * (overhead + tx_time_data);
586 tx_time_rtscts = ctime + 2 * (overhead_rtscts + tx_time_data);
8fddddff
DH
587
588 /* See how many more tries we can fit inside segment size */
ec8aa669 589 do {
8fddddff
DH
590 /* Contention time for this try */
591 ctime = (t_slot * cw) >> 1;
592 cw = min((cw << 1) | 1, mp->cw_max);
593
594 /* Total TX time after this try */
a0497f9f
FF
595 tx_time += ctime + overhead + tx_time_data;
596 tx_time_rtscts += ctime + overhead_rtscts + tx_time_data;
8fddddff 597
ec8aa669
FF
598 if (tx_time_rtscts < mp->segment_size)
599 mr->retry_count_rtscts++;
600 } while ((tx_time < mp->segment_size) &&
601 (++mr->retry_count < mp->max_retry));
602}
603
604
605static void
606minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
a8566662 607 struct ieee80211_sta_rates *ratetbl, int offset, int index)
ec8aa669
FF
608{
609 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
610 struct minstrel_rate_stats *mr;
a8566662
FF
611 u8 idx;
612 u16 flags;
ec8aa669
FF
613
614 mr = minstrel_get_ratestats(mi, index);
615 if (!mr->retry_updated)
616 minstrel_calc_retransmit(mp, mi, index);
617
a8566662
FF
618 if (mr->probability < MINSTREL_FRAC(20, 100) || !mr->retry_count) {
619 ratetbl->rate[offset].count = 2;
620 ratetbl->rate[offset].count_rts = 2;
621 ratetbl->rate[offset].count_cts = 2;
622 } else {
623 ratetbl->rate[offset].count = mr->retry_count;
624 ratetbl->rate[offset].count_cts = mr->retry_count;
625 ratetbl->rate[offset].count_rts = mr->retry_count_rtscts;
626 }
a0497f9f
FF
627
628 if (index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) {
a8566662
FF
629 idx = mp->cck_rates[index % ARRAY_SIZE(mp->cck_rates)];
630 flags = 0;
631 } else {
632 idx = index % MCS_GROUP_RATES +
633 (group->streams - 1) * MCS_GROUP_RATES;
634 flags = IEEE80211_TX_RC_MCS | group->flags;
635 }
636
637 if (offset > 0) {
638 ratetbl->rate[offset].count = ratetbl->rate[offset].count_rts;
639 flags |= IEEE80211_TX_RC_USE_RTS_CTS;
640 }
641
642 ratetbl->rate[offset].idx = idx;
643 ratetbl->rate[offset].flags = flags;
644}
645
646static void
647minstrel_ht_update_rates(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
648{
649 struct ieee80211_sta_rates *rates;
650 int i = 0;
651
652 rates = kzalloc(sizeof(*rates), GFP_ATOMIC);
653 if (!rates)
a0497f9f 654 return;
a8566662
FF
655
656 /* Start with max_tp_rate */
657 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_tp_rate);
658
659 if (mp->hw->max_rates >= 3) {
660 /* At least 3 tx rates supported, use max_tp_rate2 next */
661 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_tp_rate2);
662 }
663
664 if (mp->hw->max_rates >= 2) {
665 /*
666 * At least 2 tx rates supported, use max_prob_rate next */
667 minstrel_ht_set_rate(mp, mi, rates, i++, mi->max_prob_rate);
a0497f9f
FF
668 }
669
a8566662
FF
670 rates->rate[i].idx = -1;
671 rate_control_set_rates(mp->hw, mi->sta, rates);
ec8aa669
FF
672}
673
674static inline int
675minstrel_get_duration(int index)
676{
677 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
678 return group->duration[index % MCS_GROUP_RATES];
679}
680
681static int
682minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
683{
684 struct minstrel_rate_stats *mr;
685 struct minstrel_mcs_group_data *mg;
965237ab 686 unsigned int sample_dur, sample_group;
ec8aa669
FF
687 int sample_idx = 0;
688
689 if (mi->sample_wait > 0) {
690 mi->sample_wait--;
691 return -1;
692 }
693
694 if (!mi->sample_tries)
695 return -1;
696
ec8aa669
FF
697 mg = &mi->groups[mi->sample_group];
698 sample_idx = sample_table[mg->column][mg->index];
699 mr = &mg->rates[sample_idx];
965237ab
FF
700 sample_group = mi->sample_group;
701 sample_idx += sample_group * MCS_GROUP_RATES;
8d5eab5a 702 minstrel_next_sample_idx(mi);
ec8aa669 703
ba6fa29c
HS
704 /*
705 * Sampling might add some overhead (RTS, no aggregation)
706 * to the frame. Hence, don't use sampling for the currently
a0ca796c 707 * used rates.
ba6fa29c 708 */
a0ca796c
FF
709 if (sample_idx == mi->max_tp_rate ||
710 sample_idx == mi->max_tp_rate2 ||
711 sample_idx == mi->max_prob_rate)
ba6fa29c 712 return -1;
a0ca796c 713
ec8aa669 714 /*
bc96f242
FF
715 * Do not sample if the probability is already higher than 95%
716 * to avoid wasting airtime.
ec8aa669 717 */
bc96f242 718 if (mr->probability > MINSTREL_FRAC(95, 100))
8d5eab5a 719 return -1;
ec8aa669
FF
720
721 /*
722 * Make sure that lower rates get sampled only occasionally,
723 * if the link is working perfectly.
724 */
965237ab
FF
725 sample_dur = minstrel_get_duration(sample_idx);
726 if (sample_dur >= minstrel_get_duration(mi->max_tp_rate2) &&
727 (mi->max_prob_streams <
728 minstrel_mcs_groups[sample_group].streams ||
729 sample_dur >= minstrel_get_duration(mi->max_prob_rate))) {
c7317e41 730 if (mr->sample_skipped < 20)
8d5eab5a 731 return -1;
ec8aa669
FF
732
733 if (mi->sample_slow++ > 2)
8d5eab5a 734 return -1;
ec8aa669 735 }
098b8afb 736 mi->sample_tries--;
ec8aa669
FF
737
738 return sample_idx;
ec8aa669
FF
739}
740
a0497f9f
FF
741static void
742minstrel_ht_check_cck_shortpreamble(struct minstrel_priv *mp,
743 struct minstrel_ht_sta *mi, bool val)
744{
745 u8 supported = mi->groups[MINSTREL_CCK_GROUP].supported;
746
747 if (!supported || !mi->cck_supported_short)
748 return;
749
750 if (supported & (mi->cck_supported_short << (val * 4)))
751 return;
752
753 supported ^= mi->cck_supported_short | (mi->cck_supported_short << 4);
754 mi->groups[MINSTREL_CCK_GROUP].supported = supported;
755}
756
ec8aa669
FF
757static void
758minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
759 struct ieee80211_tx_rate_control *txrc)
760{
a8566662 761 const struct mcs_group *sample_group;
ec8aa669 762 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
a8566662 763 struct ieee80211_tx_rate *rate = &info->status.rates[0];
ec8aa669
FF
764 struct minstrel_ht_sta_priv *msp = priv_sta;
765 struct minstrel_ht_sta *mi = &msp->ht;
766 struct minstrel_priv *mp = priv;
767 int sample_idx;
768
769 if (rate_control_send_low(sta, priv_sta, txrc))
770 return;
771
772 if (!msp->is_ht)
773 return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
774
775 info->flags |= mi->tx_flags;
a0497f9f 776 minstrel_ht_check_cck_shortpreamble(mp, mi, txrc->short_preamble);
6de062ce
HS
777
778 /* Don't use EAPOL frames for sampling on non-mrr hw */
779 if (mp->hw->max_rates == 1 &&
af61a165 780 (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO))
6de062ce
HS
781 sample_idx = -1;
782 else
783 sample_idx = minstrel_get_sample_rate(mp, mi);
24f7580e
ZK
784
785#ifdef CONFIG_MAC80211_DEBUGFS
786 /* use fixed index if set */
2a9e6c58
SRR
787 if (mp->fixed_rate_idx != -1) {
788 mi->max_tp_rate = mp->fixed_rate_idx;
789 mi->max_tp_rate2 = mp->fixed_rate_idx;
790 mi->max_prob_rate = mp->fixed_rate_idx;
791 sample_idx = -1;
792 }
24f7580e
ZK
793#endif
794
ec8aa669
FF
795 mi->total_packets++;
796
797 /* wraparound */
798 if (mi->total_packets == ~0) {
799 mi->total_packets = 0;
800 mi->sample_packets = 0;
801 }
a8566662
FF
802
803 if (sample_idx < 0)
804 return;
805
806 sample_group = &minstrel_mcs_groups[sample_idx / MCS_GROUP_RATES];
807 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
808 rate->idx = sample_idx % MCS_GROUP_RATES +
809 (sample_group->streams - 1) * MCS_GROUP_RATES;
810 rate->flags = IEEE80211_TX_RC_MCS | sample_group->flags;
811 rate->count = 1;
ec8aa669
FF
812}
813
a0497f9f
FF
814static void
815minstrel_ht_update_cck(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
816 struct ieee80211_supported_band *sband,
817 struct ieee80211_sta *sta)
818{
819 int i;
820
821 if (sband->band != IEEE80211_BAND_2GHZ)
822 return;
823
824 mi->cck_supported = 0;
825 mi->cck_supported_short = 0;
826 for (i = 0; i < 4; i++) {
827 if (!rate_supported(sta, sband->band, mp->cck_rates[i]))
828 continue;
829
830 mi->cck_supported |= BIT(i);
831 if (sband->bitrates[i].flags & IEEE80211_RATE_SHORT_PREAMBLE)
832 mi->cck_supported_short |= BIT(i);
833 }
834
835 mi->groups[MINSTREL_CCK_GROUP].supported = mi->cck_supported;
836}
837
ec8aa669
FF
838static void
839minstrel_ht_update_caps(void *priv, struct ieee80211_supported_band *sband,
3de805cf 840 struct cfg80211_chan_def *chandef,
64f68e5d 841 struct ieee80211_sta *sta, void *priv_sta)
ec8aa669
FF
842{
843 struct minstrel_priv *mp = priv;
844 struct minstrel_ht_sta_priv *msp = priv_sta;
845 struct minstrel_ht_sta *mi = &msp->ht;
846 struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs;
ec8aa669 847 u16 sta_cap = sta->ht_cap.cap;
4dc217df 848 int n_supported = 0;
ec8aa669
FF
849 int ack_dur;
850 int stbc;
851 int i;
852
853 /* fall back to the old minstrel for legacy stations */
4dc217df
FF
854 if (!sta->ht_cap.ht_supported)
855 goto use_legacy;
ec8aa669
FF
856
857 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) !=
a0497f9f 858 MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS + 1);
ec8aa669
FF
859
860 msp->is_ht = true;
861 memset(mi, 0, sizeof(*mi));
a8566662
FF
862
863 mi->sta = sta;
ec8aa669
FF
864 mi->stats_update = jiffies;
865
438b61b7
SW
866 ack_dur = ieee80211_frame_duration(sband->band, 10, 60, 1, 1, 0);
867 mi->overhead = ieee80211_frame_duration(sband->band, 0, 60, 1, 1, 0);
868 mi->overhead += ack_dur;
ec8aa669
FF
869 mi->overhead_rtscts = mi->overhead + 2 * ack_dur;
870
871 mi->avg_ampdu_len = MINSTREL_FRAC(1, 1);
872
873 /* When using MRR, sample more on the first attempt, without delay */
874 if (mp->has_mrr) {
875 mi->sample_count = 16;
876 mi->sample_wait = 0;
877 } else {
878 mi->sample_count = 8;
879 mi->sample_wait = 8;
880 }
881 mi->sample_tries = 4;
882
883 stbc = (sta_cap & IEEE80211_HT_CAP_RX_STBC) >>
884 IEEE80211_HT_CAP_RX_STBC_SHIFT;
885 mi->tx_flags |= stbc << IEEE80211_TX_CTL_STBC_SHIFT;
886
887 if (sta_cap & IEEE80211_HT_CAP_LDPC_CODING)
888 mi->tx_flags |= IEEE80211_TX_CTL_LDPC;
889
ec8aa669 890 for (i = 0; i < ARRAY_SIZE(mi->groups); i++) {
ec8aa669 891 mi->groups[i].supported = 0;
a0497f9f
FF
892 if (i == MINSTREL_CCK_GROUP) {
893 minstrel_ht_update_cck(mp, mi, sband, sta);
894 continue;
895 }
896
ec8aa669 897 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_SHORT_GI) {
e1a0c6b3
JB
898 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) {
899 if (!(sta_cap & IEEE80211_HT_CAP_SGI_40))
900 continue;
901 } else {
902 if (!(sta_cap & IEEE80211_HT_CAP_SGI_20))
903 continue;
904 }
ec8aa669
FF
905 }
906
e1a0c6b3
JB
907 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH &&
908 sta->bandwidth < IEEE80211_STA_RX_BW_40)
ec8aa669
FF
909 continue;
910
e9219779 911 /* Mark MCS > 7 as unsupported if STA is in static SMPS mode */
af0ed69b 912 if (sta->smps_mode == IEEE80211_SMPS_STATIC &&
e9219779
HS
913 minstrel_mcs_groups[i].streams > 1)
914 continue;
915
ec8aa669
FF
916 mi->groups[i].supported =
917 mcs->rx_mask[minstrel_mcs_groups[i].streams - 1];
4dc217df
FF
918
919 if (mi->groups[i].supported)
920 n_supported++;
ec8aa669 921 }
4dc217df
FF
922
923 if (!n_supported)
924 goto use_legacy;
925
a8566662 926 /* create an initial rate table with the lowest supported rates */
a3647362 927 minstrel_ht_update_stats(mp, mi);
a8566662 928 minstrel_ht_update_rates(mp, mi);
a3647362 929
4dc217df
FF
930 return;
931
932use_legacy:
933 msp->is_ht = false;
934 memset(&msp->legacy, 0, sizeof(msp->legacy));
935 msp->legacy.r = msp->ratelist;
936 msp->legacy.sample_table = msp->sample_table;
3de805cf
SW
937 return mac80211_minstrel.rate_init(priv, sband, chandef, sta,
938 &msp->legacy);
ec8aa669
FF
939}
940
941static void
942minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband,
3de805cf 943 struct cfg80211_chan_def *chandef,
ec8aa669
FF
944 struct ieee80211_sta *sta, void *priv_sta)
945{
3de805cf 946 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
ec8aa669
FF
947}
948
949static void
950minstrel_ht_rate_update(void *priv, struct ieee80211_supported_band *sband,
3de805cf 951 struct cfg80211_chan_def *chandef,
ec8aa669 952 struct ieee80211_sta *sta, void *priv_sta,
64f68e5d 953 u32 changed)
ec8aa669 954{
3de805cf 955 minstrel_ht_update_caps(priv, sband, chandef, sta, priv_sta);
ec8aa669
FF
956}
957
958static void *
959minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
960{
961 struct ieee80211_supported_band *sband;
962 struct minstrel_ht_sta_priv *msp;
963 struct minstrel_priv *mp = priv;
964 struct ieee80211_hw *hw = mp->hw;
965 int max_rates = 0;
966 int i;
967
968 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
969 sband = hw->wiphy->bands[i];
970 if (sband && sband->n_bitrates > max_rates)
971 max_rates = sband->n_bitrates;
972 }
973
472dd35c 974 msp = kzalloc(sizeof(*msp), gfp);
ec8aa669
FF
975 if (!msp)
976 return NULL;
977
978 msp->ratelist = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
979 if (!msp->ratelist)
980 goto error;
981
982 msp->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
983 if (!msp->sample_table)
984 goto error1;
985
986 return msp;
987
988error1:
7e988014 989 kfree(msp->ratelist);
ec8aa669
FF
990error:
991 kfree(msp);
992 return NULL;
993}
994
995static void
996minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
997{
998 struct minstrel_ht_sta_priv *msp = priv_sta;
999
1000 kfree(msp->sample_table);
1001 kfree(msp->ratelist);
1002 kfree(msp);
1003}
1004
1005static void *
1006minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
1007{
1008 return mac80211_minstrel.alloc(hw, debugfsdir);
1009}
1010
1011static void
1012minstrel_ht_free(void *priv)
1013{
1014 mac80211_minstrel.free(priv);
1015}
1016
1017static struct rate_control_ops mac80211_minstrel_ht = {
1018 .name = "minstrel_ht",
1019 .tx_status = minstrel_ht_tx_status,
1020 .get_rate = minstrel_ht_get_rate,
1021 .rate_init = minstrel_ht_rate_init,
1022 .rate_update = minstrel_ht_rate_update,
1023 .alloc_sta = minstrel_ht_alloc_sta,
1024 .free_sta = minstrel_ht_free_sta,
1025 .alloc = minstrel_ht_alloc,
1026 .free = minstrel_ht_free,
1027#ifdef CONFIG_MAC80211_DEBUGFS
1028 .add_sta_debugfs = minstrel_ht_add_sta_debugfs,
1029 .remove_sta_debugfs = minstrel_ht_remove_sta_debugfs,
1030#endif
1031};
1032
1033
1034static void
1035init_sample_table(void)
1036{
1037 int col, i, new_idx;
1038 u8 rnd[MCS_GROUP_RATES];
1039
1040 memset(sample_table, 0xff, sizeof(sample_table));
1041 for (col = 0; col < SAMPLE_COLUMNS; col++) {
1042 for (i = 0; i < MCS_GROUP_RATES; i++) {
1043 get_random_bytes(rnd, sizeof(rnd));
1044 new_idx = (i + rnd[i]) % MCS_GROUP_RATES;
1045
1046 while (sample_table[col][new_idx] != 0xff)
1047 new_idx = (new_idx + 1) % MCS_GROUP_RATES;
1048
1049 sample_table[col][new_idx] = i;
1050 }
1051 }
1052}
1053
1054int __init
1055rc80211_minstrel_ht_init(void)
1056{
1057 init_sample_table();
1058 return ieee80211_rate_control_register(&mac80211_minstrel_ht);
1059}
1060
1061void
1062rc80211_minstrel_ht_exit(void)
1063{
1064 ieee80211_rate_control_unregister(&mac80211_minstrel_ht);
1065}
This page took 0.292625 seconds and 5 git commands to generate.