blob: 52c85036660d4d1cd51c431700ccaff428a0329f [file] [log] [blame]
Felix Fietkauec8aa662010-05-13 16:48:03 +02001/*
2 * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
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
20#define SAMPLE_COLUMNS 10
21#define EWMA_LEVEL 75
22
23/* Number of bits for an average sized packet */
24#define MCS_NBITS (AVG_PKT_SIZE << 3)
25
26/* Number of symbols for a packet with (bps) bits per symbol */
27#define MCS_NSYMS(bps) ((MCS_NBITS + (bps) - 1) / (bps))
28
29/* Transmission time for a packet containing (syms) symbols */
30#define MCS_SYMBOL_TIME(sgi, syms) \
31 (sgi ? \
32 ((syms) * 18 + 4) / 5 : /* syms * 3.6 us */ \
33 (syms) << 2 /* syms * 4 us */ \
34 )
35
36/* Transmit duration for the raw data part of an average sized packet */
37#define MCS_DURATION(streams, sgi, bps) MCS_SYMBOL_TIME(sgi, MCS_NSYMS((streams) * (bps)))
38
39/* MCS rate information for an MCS group */
40#define MCS_GROUP(_streams, _sgi, _ht40) { \
41 .streams = _streams, \
42 .flags = \
43 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
44 (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
45 .duration = { \
46 MCS_DURATION(_streams, _sgi, _ht40 ? 54 : 26), \
47 MCS_DURATION(_streams, _sgi, _ht40 ? 108 : 52), \
48 MCS_DURATION(_streams, _sgi, _ht40 ? 162 : 78), \
49 MCS_DURATION(_streams, _sgi, _ht40 ? 216 : 104), \
50 MCS_DURATION(_streams, _sgi, _ht40 ? 324 : 156), \
51 MCS_DURATION(_streams, _sgi, _ht40 ? 432 : 208), \
52 MCS_DURATION(_streams, _sgi, _ht40 ? 486 : 234), \
53 MCS_DURATION(_streams, _sgi, _ht40 ? 540 : 260) \
54 } \
55}
56
57/*
58 * To enable sufficiently targeted rate sampling, MCS rates are divided into
59 * groups, based on the number of streams and flags (HT40, SGI) that they
60 * use.
61 */
62const struct mcs_group minstrel_mcs_groups[] = {
63 MCS_GROUP(1, 0, 0),
64 MCS_GROUP(2, 0, 0),
65#if MINSTREL_MAX_STREAMS >= 3
66 MCS_GROUP(3, 0, 0),
67#endif
68
69 MCS_GROUP(1, 1, 0),
70 MCS_GROUP(2, 1, 0),
71#if MINSTREL_MAX_STREAMS >= 3
72 MCS_GROUP(3, 1, 0),
73#endif
74
75 MCS_GROUP(1, 0, 1),
76 MCS_GROUP(2, 0, 1),
77#if MINSTREL_MAX_STREAMS >= 3
78 MCS_GROUP(3, 0, 1),
79#endif
80
81 MCS_GROUP(1, 1, 1),
82 MCS_GROUP(2, 1, 1),
83#if MINSTREL_MAX_STREAMS >= 3
84 MCS_GROUP(3, 1, 1),
85#endif
86};
87
88static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES];
89
90/*
91 * Perform EWMA (Exponentially Weighted Moving Average) calculation
92 */
93static int
94minstrel_ewma(int old, int new, int weight)
95{
96 return (new * (100 - weight) + old * weight) / 100;
97}
98
99/*
100 * Look up an MCS group index based on mac80211 rate information
101 */
102static int
103minstrel_ht_get_group_idx(struct ieee80211_tx_rate *rate)
104{
105 int streams = (rate->idx / MCS_GROUP_RATES) + 1;
106 u32 flags = IEEE80211_TX_RC_SHORT_GI | IEEE80211_TX_RC_40_MHZ_WIDTH;
107 int i;
108
109 for (i = 0; i < ARRAY_SIZE(minstrel_mcs_groups); i++) {
110 if (minstrel_mcs_groups[i].streams != streams)
111 continue;
112 if (minstrel_mcs_groups[i].flags != (rate->flags & flags))
113 continue;
114
115 return i;
116 }
117
118 WARN_ON(1);
119 return 0;
120}
121
122static inline struct minstrel_rate_stats *
123minstrel_get_ratestats(struct minstrel_ht_sta *mi, int index)
124{
125 return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES];
126}
127
128
129/*
130 * Recalculate success probabilities and counters for a rate using EWMA
131 */
132static void
133minstrel_calc_rate_ewma(struct minstrel_priv *mp, struct minstrel_rate_stats *mr)
134{
135 if (unlikely(mr->attempts > 0)) {
136 mr->sample_skipped = 0;
137 mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
138 if (!mr->att_hist)
139 mr->probability = mr->cur_prob;
140 else
141 mr->probability = minstrel_ewma(mr->probability,
142 mr->cur_prob, EWMA_LEVEL);
143 mr->att_hist += mr->attempts;
144 mr->succ_hist += mr->success;
145 } else {
146 mr->sample_skipped++;
147 }
148 mr->last_success = mr->success;
149 mr->last_attempts = mr->attempts;
150 mr->success = 0;
151 mr->attempts = 0;
152}
153
154/*
155 * Calculate throughput based on the average A-MPDU length, taking into account
156 * the expected number of retransmissions and their expected length
157 */
158static void
159minstrel_ht_calc_tp(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
160 int group, int rate)
161{
162 struct minstrel_rate_stats *mr;
163 unsigned int usecs;
164
165 mr = &mi->groups[group].rates[rate];
166
167 if (mr->probability < MINSTREL_FRAC(1, 10)) {
168 mr->cur_tp = 0;
169 return;
170 }
171
172 usecs = mi->overhead / MINSTREL_TRUNC(mi->avg_ampdu_len);
173 usecs += minstrel_mcs_groups[group].duration[rate];
174 mr->cur_tp = MINSTREL_TRUNC((1000000 / usecs) * mr->probability);
175}
176
177/*
178 * Update rate statistics and select new primary rates
179 *
180 * Rules for rate selection:
181 * - max_prob_rate must use only one stream, as a tradeoff between delivery
182 * probability and throughput during strong fluctuations
183 * - as long as the max prob rate has a probability of more than 3/4, pick
184 * higher throughput rates, even if the probablity is a bit lower
185 */
186static void
187minstrel_ht_update_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
188{
189 struct minstrel_mcs_group_data *mg;
190 struct minstrel_rate_stats *mr;
191 int cur_prob, cur_prob_tp, cur_tp, cur_tp2;
192 int group, i, index;
193
194 if (mi->ampdu_packets > 0) {
195 mi->avg_ampdu_len = minstrel_ewma(mi->avg_ampdu_len,
196 MINSTREL_FRAC(mi->ampdu_len, mi->ampdu_packets), EWMA_LEVEL);
197 mi->ampdu_len = 0;
198 mi->ampdu_packets = 0;
199 }
200
201 mi->sample_slow = 0;
202 mi->sample_count = 0;
203 mi->max_tp_rate = 0;
204 mi->max_tp_rate2 = 0;
205 mi->max_prob_rate = 0;
206
207 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
208 cur_prob = 0;
209 cur_prob_tp = 0;
210 cur_tp = 0;
211 cur_tp2 = 0;
212
213 mg = &mi->groups[group];
214 if (!mg->supported)
215 continue;
216
217 mg->max_tp_rate = 0;
218 mg->max_tp_rate2 = 0;
219 mg->max_prob_rate = 0;
220 mi->sample_count++;
221
222 for (i = 0; i < MCS_GROUP_RATES; i++) {
223 if (!(mg->supported & BIT(i)))
224 continue;
225
226 mr = &mg->rates[i];
227 mr->retry_updated = false;
228 index = MCS_GROUP_RATES * group + i;
229 minstrel_calc_rate_ewma(mp, mr);
230 minstrel_ht_calc_tp(mp, mi, group, i);
231
232 if (!mr->cur_tp)
233 continue;
234
235 /* ignore the lowest rate of each single-stream group */
236 if (!i && minstrel_mcs_groups[group].streams == 1)
237 continue;
238
239 if ((mr->cur_tp > cur_prob_tp && mr->probability >
240 MINSTREL_FRAC(3, 4)) || mr->probability > cur_prob) {
241 mg->max_prob_rate = index;
242 cur_prob = mr->probability;
243 }
244
245 if (mr->cur_tp > cur_tp) {
246 swap(index, mg->max_tp_rate);
247 cur_tp = mr->cur_tp;
248 mr = minstrel_get_ratestats(mi, index);
249 }
250
251 if (index >= mg->max_tp_rate)
252 continue;
253
254 if (mr->cur_tp > cur_tp2) {
255 mg->max_tp_rate2 = index;
256 cur_tp2 = mr->cur_tp;
257 }
258 }
259 }
260
261 /* try to sample up to half of the availble rates during each interval */
262 mi->sample_count *= 4;
263
264 cur_prob = 0;
265 cur_prob_tp = 0;
266 cur_tp = 0;
267 cur_tp2 = 0;
268 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
269 mg = &mi->groups[group];
270 if (!mg->supported)
271 continue;
272
273 mr = minstrel_get_ratestats(mi, mg->max_prob_rate);
274 if (cur_prob_tp < mr->cur_tp &&
275 minstrel_mcs_groups[group].streams == 1) {
276 mi->max_prob_rate = mg->max_prob_rate;
277 cur_prob = mr->cur_prob;
278 }
279
280 mr = minstrel_get_ratestats(mi, mg->max_tp_rate);
281 if (cur_tp < mr->cur_tp) {
282 mi->max_tp_rate = mg->max_tp_rate;
283 cur_tp = mr->cur_tp;
284 }
285
286 mr = minstrel_get_ratestats(mi, mg->max_tp_rate2);
287 if (cur_tp2 < mr->cur_tp) {
288 mi->max_tp_rate2 = mg->max_tp_rate2;
289 cur_tp2 = mr->cur_tp;
290 }
291 }
292
293 mi->stats_update = jiffies;
294}
295
296static bool
297minstrel_ht_txstat_valid(struct ieee80211_tx_rate *rate)
298{
299 if (!rate->count)
300 return false;
301
302 if (rate->idx < 0)
303 return false;
304
305 return !!(rate->flags & IEEE80211_TX_RC_MCS);
306}
307
308static void
309minstrel_next_sample_idx(struct minstrel_ht_sta *mi)
310{
311 struct minstrel_mcs_group_data *mg;
312
313 for (;;) {
314 mi->sample_group++;
315 mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups);
316 mg = &mi->groups[mi->sample_group];
317
318 if (!mg->supported)
319 continue;
320
321 if (++mg->index >= MCS_GROUP_RATES) {
322 mg->index = 0;
323 if (++mg->column >= ARRAY_SIZE(sample_table))
324 mg->column = 0;
325 }
326 break;
327 }
328}
329
330static void
John W. Linvilled5ece212010-06-24 11:18:38 -0400331minstrel_downgrade_rate(struct minstrel_ht_sta *mi, unsigned int *idx,
332 bool primary)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200333{
334 int group, orig_group;
335
336 orig_group = group = *idx / MCS_GROUP_RATES;
337 while (group > 0) {
338 group--;
339
340 if (!mi->groups[group].supported)
341 continue;
342
343 if (minstrel_mcs_groups[group].streams >
344 minstrel_mcs_groups[orig_group].streams)
345 continue;
346
347 if (primary)
348 *idx = mi->groups[group].max_tp_rate;
349 else
350 *idx = mi->groups[group].max_tp_rate2;
351 break;
352 }
353}
354
355static void
356minstrel_aggr_check(struct minstrel_priv *mp, struct ieee80211_sta *pubsta, struct sk_buff *skb)
357{
358 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
359 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
360 u16 tid;
361
362 if (unlikely(!ieee80211_is_data_qos(hdr->frame_control)))
363 return;
364
365 if (unlikely(skb->protocol == cpu_to_be16(ETH_P_PAE)))
366 return;
367
368 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
Johannes Berga622ab72010-06-10 10:21:39 +0200369 if (likely(sta->ampdu_mlme.tid_tx[tid]))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200370 return;
371
372 ieee80211_start_tx_ba_session(pubsta, tid);
373}
374
375static void
376minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
377 struct ieee80211_sta *sta, void *priv_sta,
378 struct sk_buff *skb)
379{
380 struct minstrel_ht_sta_priv *msp = priv_sta;
381 struct minstrel_ht_sta *mi = &msp->ht;
382 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
383 struct ieee80211_tx_rate *ar = info->status.rates;
384 struct minstrel_rate_stats *rate, *rate2;
385 struct minstrel_priv *mp = priv;
386 bool last = false;
387 int group;
388 int i = 0;
389
390 if (!msp->is_ht)
391 return mac80211_minstrel.tx_status(priv, sband, sta, &msp->legacy, skb);
392
393 /* This packet was aggregated but doesn't carry status info */
394 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
395 !(info->flags & IEEE80211_TX_STAT_AMPDU))
396 return;
397
398 if (!info->status.ampdu_len) {
399 info->status.ampdu_ack_len = 1;
400 info->status.ampdu_len = 1;
401 }
402
403 mi->ampdu_packets++;
404 mi->ampdu_len += info->status.ampdu_len;
405
406 if (!mi->sample_wait && !mi->sample_tries && mi->sample_count > 0) {
407 mi->sample_wait = 4 + 2 * MINSTREL_TRUNC(mi->avg_ampdu_len);
408 mi->sample_tries = 3;
409 mi->sample_count--;
410 }
411
412 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) {
413 mi->sample_packets += info->status.ampdu_len;
414 minstrel_next_sample_idx(mi);
415 }
416
417 for (i = 0; !last; i++) {
418 last = (i == IEEE80211_TX_MAX_RATES - 1) ||
419 !minstrel_ht_txstat_valid(&ar[i + 1]);
420
421 if (!minstrel_ht_txstat_valid(&ar[i]))
422 break;
423
424 group = minstrel_ht_get_group_idx(&ar[i]);
425 rate = &mi->groups[group].rates[ar[i].idx % 8];
426
427 if (last && (info->flags & IEEE80211_TX_STAT_ACK))
428 rate->success += info->status.ampdu_ack_len;
429
430 rate->attempts += ar[i].count * info->status.ampdu_len;
431 }
432
433 /*
434 * check for sudden death of spatial multiplexing,
435 * downgrade to a lower number of streams if necessary.
436 */
437 rate = minstrel_get_ratestats(mi, mi->max_tp_rate);
438 if (rate->attempts > 30 &&
439 MINSTREL_FRAC(rate->success, rate->attempts) <
440 MINSTREL_FRAC(20, 100))
441 minstrel_downgrade_rate(mi, &mi->max_tp_rate, true);
442
443 rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate2);
444 if (rate->attempts > 30 &&
445 MINSTREL_FRAC(rate->success, rate->attempts) <
446 MINSTREL_FRAC(20, 100))
447 minstrel_downgrade_rate(mi, &mi->max_tp_rate2, false);
448
449 if (time_after(jiffies, mi->stats_update + (mp->update_interval / 2 * HZ) / 1000)) {
450 minstrel_ht_update_stats(mp, mi);
451 minstrel_aggr_check(mp, sta, skb);
452 }
453}
454
455static void
456minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
457 int index)
458{
459 struct minstrel_rate_stats *mr;
460 const struct mcs_group *group;
461 unsigned int tx_time, tx_time_rtscts, tx_time_data;
462 unsigned int cw = mp->cw_min;
463 unsigned int t_slot = 9; /* FIXME */
464 unsigned int ampdu_len = MINSTREL_TRUNC(mi->avg_ampdu_len);
465
466 mr = minstrel_get_ratestats(mi, index);
467 if (mr->probability < MINSTREL_FRAC(1, 10)) {
468 mr->retry_count = 1;
469 mr->retry_count_rtscts = 1;
470 return;
471 }
472
473 mr->retry_count = 2;
474 mr->retry_count_rtscts = 2;
475 mr->retry_updated = true;
476
477 group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
478 tx_time_data = group->duration[index % MCS_GROUP_RATES] * ampdu_len;
479 tx_time = 2 * (t_slot + mi->overhead + tx_time_data);
480 tx_time_rtscts = 2 * (t_slot + mi->overhead_rtscts + tx_time_data);
481 do {
482 cw = (cw << 1) | 1;
483 cw = min(cw, mp->cw_max);
484 tx_time += cw + t_slot + mi->overhead;
485 tx_time_rtscts += cw + t_slot + mi->overhead_rtscts;
486 if (tx_time_rtscts < mp->segment_size)
487 mr->retry_count_rtscts++;
488 } while ((tx_time < mp->segment_size) &&
489 (++mr->retry_count < mp->max_retry));
490}
491
492
493static void
494minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
495 struct ieee80211_tx_rate *rate, int index,
496 struct ieee80211_tx_rate_control *txrc,
497 bool sample, bool rtscts)
498{
499 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
500 struct minstrel_rate_stats *mr;
501
502 mr = minstrel_get_ratestats(mi, index);
503 if (!mr->retry_updated)
504 minstrel_calc_retransmit(mp, mi, index);
505
506 if (mr->probability < MINSTREL_FRAC(20, 100))
507 rate->count = 2;
508 else if (rtscts)
509 rate->count = mr->retry_count_rtscts;
510 else
511 rate->count = mr->retry_count;
512
513 rate->flags = IEEE80211_TX_RC_MCS | group->flags;
514 if (txrc->short_preamble)
515 rate->flags |= IEEE80211_TX_RC_USE_SHORT_PREAMBLE;
516 if (txrc->rts || rtscts)
517 rate->flags |= IEEE80211_TX_RC_USE_RTS_CTS;
518 rate->idx = index % MCS_GROUP_RATES + (group->streams - 1) * MCS_GROUP_RATES;
519}
520
521static inline int
522minstrel_get_duration(int index)
523{
524 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
525 return group->duration[index % MCS_GROUP_RATES];
526}
527
528static int
529minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
530{
531 struct minstrel_rate_stats *mr;
532 struct minstrel_mcs_group_data *mg;
533 int sample_idx = 0;
534
535 if (mi->sample_wait > 0) {
536 mi->sample_wait--;
537 return -1;
538 }
539
540 if (!mi->sample_tries)
541 return -1;
542
543 mi->sample_tries--;
544 mg = &mi->groups[mi->sample_group];
545 sample_idx = sample_table[mg->column][mg->index];
546 mr = &mg->rates[sample_idx];
547 sample_idx += mi->sample_group * MCS_GROUP_RATES;
548
549 /*
550 * When not using MRR, do not sample if the probability is already
551 * higher than 95% to avoid wasting airtime
552 */
553 if (!mp->has_mrr && (mr->probability > MINSTREL_FRAC(95, 100)))
554 goto next;
555
556 /*
557 * Make sure that lower rates get sampled only occasionally,
558 * if the link is working perfectly.
559 */
560 if (minstrel_get_duration(sample_idx) >
561 minstrel_get_duration(mi->max_tp_rate)) {
562 if (mr->sample_skipped < 10)
563 goto next;
564
565 if (mi->sample_slow++ > 2)
566 goto next;
567 }
568
569 return sample_idx;
570
571next:
572 minstrel_next_sample_idx(mi);
573 return -1;
574}
575
576static void
577minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
578 struct ieee80211_tx_rate_control *txrc)
579{
580 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
581 struct ieee80211_tx_rate *ar = info->status.rates;
582 struct minstrel_ht_sta_priv *msp = priv_sta;
583 struct minstrel_ht_sta *mi = &msp->ht;
584 struct minstrel_priv *mp = priv;
585 int sample_idx;
586
587 if (rate_control_send_low(sta, priv_sta, txrc))
588 return;
589
590 if (!msp->is_ht)
591 return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
592
593 info->flags |= mi->tx_flags;
594 sample_idx = minstrel_get_sample_rate(mp, mi);
595 if (sample_idx >= 0) {
596 minstrel_ht_set_rate(mp, mi, &ar[0], sample_idx,
597 txrc, true, false);
598 minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate,
599 txrc, false, true);
600 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
601 } else {
602 minstrel_ht_set_rate(mp, mi, &ar[0], mi->max_tp_rate,
603 txrc, false, false);
604 minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate2,
605 txrc, false, true);
606 }
607 minstrel_ht_set_rate(mp, mi, &ar[2], mi->max_prob_rate, txrc, false, true);
608
609 ar[3].count = 0;
610 ar[3].idx = -1;
611
612 mi->total_packets++;
613
614 /* wraparound */
615 if (mi->total_packets == ~0) {
616 mi->total_packets = 0;
617 mi->sample_packets = 0;
618 }
619}
620
621static void
622minstrel_ht_update_caps(void *priv, struct ieee80211_supported_band *sband,
623 struct ieee80211_sta *sta, void *priv_sta,
624 enum nl80211_channel_type oper_chan_type)
625{
626 struct minstrel_priv *mp = priv;
627 struct minstrel_ht_sta_priv *msp = priv_sta;
628 struct minstrel_ht_sta *mi = &msp->ht;
629 struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs;
630 struct ieee80211_local *local = hw_to_local(mp->hw);
631 u16 sta_cap = sta->ht_cap.cap;
632 int ack_dur;
633 int stbc;
634 int i;
635
636 /* fall back to the old minstrel for legacy stations */
637 if (sta && !sta->ht_cap.ht_supported) {
638 msp->is_ht = false;
639 memset(&msp->legacy, 0, sizeof(msp->legacy));
640 msp->legacy.r = msp->ratelist;
641 msp->legacy.sample_table = msp->sample_table;
642 return mac80211_minstrel.rate_init(priv, sband, sta, &msp->legacy);
643 }
644
645 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) !=
646 MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS);
647
648 msp->is_ht = true;
649 memset(mi, 0, sizeof(*mi));
650 mi->stats_update = jiffies;
651
652 ack_dur = ieee80211_frame_duration(local, 10, 60, 1, 1);
653 mi->overhead = ieee80211_frame_duration(local, 0, 60, 1, 1) + ack_dur;
654 mi->overhead_rtscts = mi->overhead + 2 * ack_dur;
655
656 mi->avg_ampdu_len = MINSTREL_FRAC(1, 1);
657
658 /* When using MRR, sample more on the first attempt, without delay */
659 if (mp->has_mrr) {
660 mi->sample_count = 16;
661 mi->sample_wait = 0;
662 } else {
663 mi->sample_count = 8;
664 mi->sample_wait = 8;
665 }
666 mi->sample_tries = 4;
667
668 stbc = (sta_cap & IEEE80211_HT_CAP_RX_STBC) >>
669 IEEE80211_HT_CAP_RX_STBC_SHIFT;
670 mi->tx_flags |= stbc << IEEE80211_TX_CTL_STBC_SHIFT;
671
672 if (sta_cap & IEEE80211_HT_CAP_LDPC_CODING)
673 mi->tx_flags |= IEEE80211_TX_CTL_LDPC;
674
675 if (oper_chan_type != NL80211_CHAN_HT40MINUS &&
676 oper_chan_type != NL80211_CHAN_HT40PLUS)
677 sta_cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
678
679 for (i = 0; i < ARRAY_SIZE(mi->groups); i++) {
680 u16 req = 0;
681
682 mi->groups[i].supported = 0;
683 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_SHORT_GI) {
684 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
685 req |= IEEE80211_HT_CAP_SGI_40;
686 else
687 req |= IEEE80211_HT_CAP_SGI_20;
688 }
689
690 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
691 req |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
692
693 if ((sta_cap & req) != req)
694 continue;
695
696 mi->groups[i].supported =
697 mcs->rx_mask[minstrel_mcs_groups[i].streams - 1];
698 }
699}
700
701static void
702minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband,
703 struct ieee80211_sta *sta, void *priv_sta)
704{
705 struct minstrel_priv *mp = priv;
706
707 minstrel_ht_update_caps(priv, sband, sta, priv_sta, mp->hw->conf.channel_type);
708}
709
710static void
711minstrel_ht_rate_update(void *priv, struct ieee80211_supported_band *sband,
712 struct ieee80211_sta *sta, void *priv_sta,
713 u32 changed, enum nl80211_channel_type oper_chan_type)
714{
715 minstrel_ht_update_caps(priv, sband, sta, priv_sta, oper_chan_type);
716}
717
718static void *
719minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
720{
721 struct ieee80211_supported_band *sband;
722 struct minstrel_ht_sta_priv *msp;
723 struct minstrel_priv *mp = priv;
724 struct ieee80211_hw *hw = mp->hw;
725 int max_rates = 0;
726 int i;
727
728 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
729 sband = hw->wiphy->bands[i];
730 if (sband && sband->n_bitrates > max_rates)
731 max_rates = sband->n_bitrates;
732 }
733
734 msp = kzalloc(sizeof(struct minstrel_ht_sta), gfp);
735 if (!msp)
736 return NULL;
737
738 msp->ratelist = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
739 if (!msp->ratelist)
740 goto error;
741
742 msp->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
743 if (!msp->sample_table)
744 goto error1;
745
746 return msp;
747
748error1:
749 kfree(msp->sample_table);
750error:
751 kfree(msp);
752 return NULL;
753}
754
755static void
756minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
757{
758 struct minstrel_ht_sta_priv *msp = priv_sta;
759
760 kfree(msp->sample_table);
761 kfree(msp->ratelist);
762 kfree(msp);
763}
764
765static void *
766minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
767{
768 return mac80211_minstrel.alloc(hw, debugfsdir);
769}
770
771static void
772minstrel_ht_free(void *priv)
773{
774 mac80211_minstrel.free(priv);
775}
776
777static struct rate_control_ops mac80211_minstrel_ht = {
778 .name = "minstrel_ht",
779 .tx_status = minstrel_ht_tx_status,
780 .get_rate = minstrel_ht_get_rate,
781 .rate_init = minstrel_ht_rate_init,
782 .rate_update = minstrel_ht_rate_update,
783 .alloc_sta = minstrel_ht_alloc_sta,
784 .free_sta = minstrel_ht_free_sta,
785 .alloc = minstrel_ht_alloc,
786 .free = minstrel_ht_free,
787#ifdef CONFIG_MAC80211_DEBUGFS
788 .add_sta_debugfs = minstrel_ht_add_sta_debugfs,
789 .remove_sta_debugfs = minstrel_ht_remove_sta_debugfs,
790#endif
791};
792
793
794static void
795init_sample_table(void)
796{
797 int col, i, new_idx;
798 u8 rnd[MCS_GROUP_RATES];
799
800 memset(sample_table, 0xff, sizeof(sample_table));
801 for (col = 0; col < SAMPLE_COLUMNS; col++) {
802 for (i = 0; i < MCS_GROUP_RATES; i++) {
803 get_random_bytes(rnd, sizeof(rnd));
804 new_idx = (i + rnd[i]) % MCS_GROUP_RATES;
805
806 while (sample_table[col][new_idx] != 0xff)
807 new_idx = (new_idx + 1) % MCS_GROUP_RATES;
808
809 sample_table[col][new_idx] = i;
810 }
811 }
812}
813
814int __init
815rc80211_minstrel_ht_init(void)
816{
817 init_sample_table();
818 return ieee80211_rate_control_register(&mac80211_minstrel_ht);
819}
820
821void
822rc80211_minstrel_ht_exit(void)
823{
824 ieee80211_rate_control_unregister(&mac80211_minstrel_ht);
825}