net/mlx4_en: Fix setting initial MAC address
[linux-2.6/libata-dev.git] / net / mac80211 / rc80211_minstrel_ht.c
blob3af141c6971214e9b1bb29b2976e858d86585da6
1 /*
2 * Copyright (C) 2010-2013 Felix Fietkau <nbd@openwrt.org>
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"
19 #define AVG_PKT_SIZE 1200
20 #define SAMPLE_COLUMNS 10
21 #define EWMA_LEVEL 75
23 /* Number of bits for an average sized packet */
24 #define MCS_NBITS (AVG_PKT_SIZE << 3)
26 /* Number of symbols for a packet with (bps) bits per symbol */
27 #define MCS_NSYMS(bps) ((MCS_NBITS + (bps) - 1) / (bps))
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 */ \
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)))
40 * Define group sort order: HT40 -> SGI -> #streams
42 #define GROUP_IDX(_streams, _sgi, _ht40) \
43 MINSTREL_MAX_STREAMS * 2 * _ht40 + \
44 MINSTREL_MAX_STREAMS * _sgi + \
45 _streams - 1
47 /* MCS rate information for an MCS group */
48 #define MCS_GROUP(_streams, _sgi, _ht40) \
49 [GROUP_IDX(_streams, _sgi, _ht40)] = { \
50 .streams = _streams, \
51 .flags = \
52 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
53 (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
54 .duration = { \
55 MCS_DURATION(_streams, _sgi, _ht40 ? 54 : 26), \
56 MCS_DURATION(_streams, _sgi, _ht40 ? 108 : 52), \
57 MCS_DURATION(_streams, _sgi, _ht40 ? 162 : 78), \
58 MCS_DURATION(_streams, _sgi, _ht40 ? 216 : 104), \
59 MCS_DURATION(_streams, _sgi, _ht40 ? 324 : 156), \
60 MCS_DURATION(_streams, _sgi, _ht40 ? 432 : 208), \
61 MCS_DURATION(_streams, _sgi, _ht40 ? 486 : 234), \
62 MCS_DURATION(_streams, _sgi, _ht40 ? 540 : 260) \
63 } \
66 #define CCK_DURATION(_bitrate, _short, _len) \
67 (10 /* SIFS */ + \
68 (_short ? 72 + 24 : 144 + 48 ) + \
69 (8 * (_len + 4) * 10) / (_bitrate))
71 #define CCK_ACK_DURATION(_bitrate, _short) \
72 (CCK_DURATION((_bitrate > 10 ? 20 : 10), false, 60) + \
73 CCK_DURATION(_bitrate, _short, AVG_PKT_SIZE))
75 #define CCK_DURATION_LIST(_short) \
76 CCK_ACK_DURATION(10, _short), \
77 CCK_ACK_DURATION(20, _short), \
78 CCK_ACK_DURATION(55, _short), \
79 CCK_ACK_DURATION(110, _short)
81 #define CCK_GROUP \
82 [MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS] = { \
83 .streams = 0, \
84 .duration = { \
85 CCK_DURATION_LIST(false), \
86 CCK_DURATION_LIST(true) \
87 } \
91 * To enable sufficiently targeted rate sampling, MCS rates are divided into
92 * groups, based on the number of streams and flags (HT40, SGI) that they
93 * use.
95 * Sortorder has to be fixed for GROUP_IDX macro to be applicable:
96 * HT40 -> SGI -> #streams
98 const struct mcs_group minstrel_mcs_groups[] = {
99 MCS_GROUP(1, 0, 0),
100 MCS_GROUP(2, 0, 0),
101 #if MINSTREL_MAX_STREAMS >= 3
102 MCS_GROUP(3, 0, 0),
103 #endif
105 MCS_GROUP(1, 1, 0),
106 MCS_GROUP(2, 1, 0),
107 #if MINSTREL_MAX_STREAMS >= 3
108 MCS_GROUP(3, 1, 0),
109 #endif
111 MCS_GROUP(1, 0, 1),
112 MCS_GROUP(2, 0, 1),
113 #if MINSTREL_MAX_STREAMS >= 3
114 MCS_GROUP(3, 0, 1),
115 #endif
117 MCS_GROUP(1, 1, 1),
118 MCS_GROUP(2, 1, 1),
119 #if MINSTREL_MAX_STREAMS >= 3
120 MCS_GROUP(3, 1, 1),
121 #endif
123 /* must be last */
124 CCK_GROUP
127 #define MINSTREL_CCK_GROUP (ARRAY_SIZE(minstrel_mcs_groups) - 1)
129 static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES];
132 * Perform EWMA (Exponentially Weighted Moving Average) calculation
134 static int
135 minstrel_ewma(int old, int new, int weight)
137 return (new * (100 - weight) + old * weight) / 100;
141 * Look up an MCS group index based on mac80211 rate information
143 static int
144 minstrel_ht_get_group_idx(struct ieee80211_tx_rate *rate)
146 return GROUP_IDX((rate->idx / MCS_GROUP_RATES) + 1,
147 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
148 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH));
151 static struct minstrel_rate_stats *
152 minstrel_ht_get_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
153 struct ieee80211_tx_rate *rate)
155 int group, idx;
157 if (rate->flags & IEEE80211_TX_RC_MCS) {
158 group = minstrel_ht_get_group_idx(rate);
159 idx = rate->idx % MCS_GROUP_RATES;
160 } else {
161 group = MINSTREL_CCK_GROUP;
163 for (idx = 0; idx < ARRAY_SIZE(mp->cck_rates); idx++)
164 if (rate->idx == mp->cck_rates[idx])
165 break;
167 /* short preamble */
168 if (!(mi->groups[group].supported & BIT(idx)))
169 idx += 4;
171 return &mi->groups[group].rates[idx];
174 static inline struct minstrel_rate_stats *
175 minstrel_get_ratestats(struct minstrel_ht_sta *mi, int index)
177 return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES];
182 * Recalculate success probabilities and counters for a rate using EWMA
184 static void
185 minstrel_calc_rate_ewma(struct minstrel_rate_stats *mr)
187 if (unlikely(mr->attempts > 0)) {
188 mr->sample_skipped = 0;
189 mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
190 if (!mr->att_hist)
191 mr->probability = mr->cur_prob;
192 else
193 mr->probability = minstrel_ewma(mr->probability,
194 mr->cur_prob, EWMA_LEVEL);
195 mr->att_hist += mr->attempts;
196 mr->succ_hist += mr->success;
197 } else {
198 mr->sample_skipped++;
200 mr->last_success = mr->success;
201 mr->last_attempts = mr->attempts;
202 mr->success = 0;
203 mr->attempts = 0;
207 * Calculate throughput based on the average A-MPDU length, taking into account
208 * the expected number of retransmissions and their expected length
210 static void
211 minstrel_ht_calc_tp(struct minstrel_ht_sta *mi, int group, int rate)
213 struct minstrel_rate_stats *mr;
214 unsigned int usecs = 0;
216 mr = &mi->groups[group].rates[rate];
218 if (mr->probability < MINSTREL_FRAC(1, 10)) {
219 mr->cur_tp = 0;
220 return;
223 if (group != MINSTREL_CCK_GROUP)
224 usecs = mi->overhead / MINSTREL_TRUNC(mi->avg_ampdu_len);
226 usecs += minstrel_mcs_groups[group].duration[rate];
227 mr->cur_tp = MINSTREL_TRUNC((1000000 / usecs) * mr->probability);
231 * Update rate statistics and select new primary rates
233 * Rules for rate selection:
234 * - max_prob_rate must use only one stream, as a tradeoff between delivery
235 * probability and throughput during strong fluctuations
236 * - as long as the max prob rate has a probability of more than 3/4, pick
237 * higher throughput rates, even if the probablity is a bit lower
239 static void
240 minstrel_ht_update_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
242 struct minstrel_mcs_group_data *mg;
243 struct minstrel_rate_stats *mr;
244 int cur_prob, cur_prob_tp, cur_tp, cur_tp2;
245 int group, i, index;
247 if (mi->ampdu_packets > 0) {
248 mi->avg_ampdu_len = minstrel_ewma(mi->avg_ampdu_len,
249 MINSTREL_FRAC(mi->ampdu_len, mi->ampdu_packets), EWMA_LEVEL);
250 mi->ampdu_len = 0;
251 mi->ampdu_packets = 0;
254 mi->sample_slow = 0;
255 mi->sample_count = 0;
256 mi->max_tp_rate = 0;
257 mi->max_tp_rate2 = 0;
258 mi->max_prob_rate = 0;
260 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
261 cur_prob = 0;
262 cur_prob_tp = 0;
263 cur_tp = 0;
264 cur_tp2 = 0;
266 mg = &mi->groups[group];
267 if (!mg->supported)
268 continue;
270 mg->max_tp_rate = 0;
271 mg->max_tp_rate2 = 0;
272 mg->max_prob_rate = 0;
273 mi->sample_count++;
275 for (i = 0; i < MCS_GROUP_RATES; i++) {
276 if (!(mg->supported & BIT(i)))
277 continue;
279 mr = &mg->rates[i];
280 mr->retry_updated = false;
281 index = MCS_GROUP_RATES * group + i;
282 minstrel_calc_rate_ewma(mr);
283 minstrel_ht_calc_tp(mi, group, i);
285 if (!mr->cur_tp)
286 continue;
288 if ((mr->cur_tp > cur_prob_tp && mr->probability >
289 MINSTREL_FRAC(3, 4)) || mr->probability > cur_prob) {
290 mg->max_prob_rate = index;
291 cur_prob = mr->probability;
292 cur_prob_tp = mr->cur_tp;
295 if (mr->cur_tp > cur_tp) {
296 swap(index, mg->max_tp_rate);
297 cur_tp = mr->cur_tp;
298 mr = minstrel_get_ratestats(mi, index);
301 if (index >= mg->max_tp_rate)
302 continue;
304 if (mr->cur_tp > cur_tp2) {
305 mg->max_tp_rate2 = index;
306 cur_tp2 = mr->cur_tp;
311 /* try to sample up to half of the available rates during each interval */
312 mi->sample_count *= 4;
314 cur_prob = 0;
315 cur_prob_tp = 0;
316 cur_tp = 0;
317 cur_tp2 = 0;
318 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
319 mg = &mi->groups[group];
320 if (!mg->supported)
321 continue;
323 mr = minstrel_get_ratestats(mi, mg->max_prob_rate);
324 if (cur_prob_tp < mr->cur_tp &&
325 minstrel_mcs_groups[group].streams == 1) {
326 mi->max_prob_rate = mg->max_prob_rate;
327 cur_prob = mr->cur_prob;
328 cur_prob_tp = mr->cur_tp;
331 mr = minstrel_get_ratestats(mi, mg->max_tp_rate);
332 if (cur_tp < mr->cur_tp) {
333 mi->max_tp_rate2 = mi->max_tp_rate;
334 cur_tp2 = cur_tp;
335 mi->max_tp_rate = mg->max_tp_rate;
336 cur_tp = mr->cur_tp;
339 mr = minstrel_get_ratestats(mi, mg->max_tp_rate2);
340 if (cur_tp2 < mr->cur_tp) {
341 mi->max_tp_rate2 = mg->max_tp_rate2;
342 cur_tp2 = mr->cur_tp;
346 mi->stats_update = jiffies;
349 static bool
350 minstrel_ht_txstat_valid(struct minstrel_priv *mp, struct ieee80211_tx_rate *rate)
352 if (rate->idx < 0)
353 return false;
355 if (!rate->count)
356 return false;
358 if (rate->flags & IEEE80211_TX_RC_MCS)
359 return true;
361 return rate->idx == mp->cck_rates[0] ||
362 rate->idx == mp->cck_rates[1] ||
363 rate->idx == mp->cck_rates[2] ||
364 rate->idx == mp->cck_rates[3];
367 static void
368 minstrel_next_sample_idx(struct minstrel_ht_sta *mi)
370 struct minstrel_mcs_group_data *mg;
372 for (;;) {
373 mi->sample_group++;
374 mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups);
375 mg = &mi->groups[mi->sample_group];
377 if (!mg->supported)
378 continue;
380 if (++mg->index >= MCS_GROUP_RATES) {
381 mg->index = 0;
382 if (++mg->column >= ARRAY_SIZE(sample_table))
383 mg->column = 0;
385 break;
389 static void
390 minstrel_downgrade_rate(struct minstrel_ht_sta *mi, unsigned int *idx,
391 bool primary)
393 int group, orig_group;
395 orig_group = group = *idx / MCS_GROUP_RATES;
396 while (group > 0) {
397 group--;
399 if (!mi->groups[group].supported)
400 continue;
402 if (minstrel_mcs_groups[group].streams >
403 minstrel_mcs_groups[orig_group].streams)
404 continue;
406 if (primary)
407 *idx = mi->groups[group].max_tp_rate;
408 else
409 *idx = mi->groups[group].max_tp_rate2;
410 break;
414 static void
415 minstrel_aggr_check(struct ieee80211_sta *pubsta, struct sk_buff *skb)
417 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
418 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
419 u16 tid;
421 if (unlikely(!ieee80211_is_data_qos(hdr->frame_control)))
422 return;
424 if (unlikely(skb->protocol == cpu_to_be16(ETH_P_PAE)))
425 return;
427 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
428 if (likely(sta->ampdu_mlme.tid_tx[tid]))
429 return;
431 if (skb_get_queue_mapping(skb) == IEEE80211_AC_VO)
432 return;
434 ieee80211_start_tx_ba_session(pubsta, tid, 5000);
437 static void
438 minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
439 struct ieee80211_sta *sta, void *priv_sta,
440 struct sk_buff *skb)
442 struct minstrel_ht_sta_priv *msp = priv_sta;
443 struct minstrel_ht_sta *mi = &msp->ht;
444 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
445 struct ieee80211_tx_rate *ar = info->status.rates;
446 struct minstrel_rate_stats *rate, *rate2;
447 struct minstrel_priv *mp = priv;
448 bool last;
449 int i;
451 if (!msp->is_ht)
452 return mac80211_minstrel.tx_status(priv, sband, sta, &msp->legacy, skb);
454 /* This packet was aggregated but doesn't carry status info */
455 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
456 !(info->flags & IEEE80211_TX_STAT_AMPDU))
457 return;
459 if (!(info->flags & IEEE80211_TX_STAT_AMPDU)) {
460 info->status.ampdu_ack_len =
461 (info->flags & IEEE80211_TX_STAT_ACK ? 1 : 0);
462 info->status.ampdu_len = 1;
465 mi->ampdu_packets++;
466 mi->ampdu_len += info->status.ampdu_len;
468 if (!mi->sample_wait && !mi->sample_tries && mi->sample_count > 0) {
469 mi->sample_wait = 16 + 2 * MINSTREL_TRUNC(mi->avg_ampdu_len);
470 mi->sample_tries = 2;
471 mi->sample_count--;
474 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
475 mi->sample_packets += info->status.ampdu_len;
477 last = !minstrel_ht_txstat_valid(mp, &ar[0]);
478 for (i = 0; !last; i++) {
479 last = (i == IEEE80211_TX_MAX_RATES - 1) ||
480 !minstrel_ht_txstat_valid(mp, &ar[i + 1]);
482 rate = minstrel_ht_get_stats(mp, mi, &ar[i]);
484 if (last)
485 rate->success += info->status.ampdu_ack_len;
487 rate->attempts += ar[i].count * info->status.ampdu_len;
491 * check for sudden death of spatial multiplexing,
492 * downgrade to a lower number of streams if necessary.
494 rate = minstrel_get_ratestats(mi, mi->max_tp_rate);
495 if (rate->attempts > 30 &&
496 MINSTREL_FRAC(rate->success, rate->attempts) <
497 MINSTREL_FRAC(20, 100))
498 minstrel_downgrade_rate(mi, &mi->max_tp_rate, true);
500 rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate2);
501 if (rate2->attempts > 30 &&
502 MINSTREL_FRAC(rate2->success, rate2->attempts) <
503 MINSTREL_FRAC(20, 100))
504 minstrel_downgrade_rate(mi, &mi->max_tp_rate2, false);
506 if (time_after(jiffies, mi->stats_update + (mp->update_interval / 2 * HZ) / 1000)) {
507 minstrel_ht_update_stats(mp, mi);
508 if (!(info->flags & IEEE80211_TX_CTL_AMPDU) &&
509 mi->max_prob_rate / MCS_GROUP_RATES != MINSTREL_CCK_GROUP)
510 minstrel_aggr_check(sta, skb);
514 static void
515 minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
516 int index)
518 struct minstrel_rate_stats *mr;
519 const struct mcs_group *group;
520 unsigned int tx_time, tx_time_rtscts, tx_time_data;
521 unsigned int cw = mp->cw_min;
522 unsigned int ctime = 0;
523 unsigned int t_slot = 9; /* FIXME */
524 unsigned int ampdu_len = MINSTREL_TRUNC(mi->avg_ampdu_len);
525 unsigned int overhead = 0, overhead_rtscts = 0;
527 mr = minstrel_get_ratestats(mi, index);
528 if (mr->probability < MINSTREL_FRAC(1, 10)) {
529 mr->retry_count = 1;
530 mr->retry_count_rtscts = 1;
531 return;
534 mr->retry_count = 2;
535 mr->retry_count_rtscts = 2;
536 mr->retry_updated = true;
538 group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
539 tx_time_data = group->duration[index % MCS_GROUP_RATES] * ampdu_len;
541 /* Contention time for first 2 tries */
542 ctime = (t_slot * cw) >> 1;
543 cw = min((cw << 1) | 1, mp->cw_max);
544 ctime += (t_slot * cw) >> 1;
545 cw = min((cw << 1) | 1, mp->cw_max);
547 if (index / MCS_GROUP_RATES != MINSTREL_CCK_GROUP) {
548 overhead = mi->overhead;
549 overhead_rtscts = mi->overhead_rtscts;
552 /* Total TX time for data and Contention after first 2 tries */
553 tx_time = ctime + 2 * (overhead + tx_time_data);
554 tx_time_rtscts = ctime + 2 * (overhead_rtscts + tx_time_data);
556 /* See how many more tries we can fit inside segment size */
557 do {
558 /* Contention time for this try */
559 ctime = (t_slot * cw) >> 1;
560 cw = min((cw << 1) | 1, mp->cw_max);
562 /* Total TX time after this try */
563 tx_time += ctime + overhead + tx_time_data;
564 tx_time_rtscts += ctime + overhead_rtscts + tx_time_data;
566 if (tx_time_rtscts < mp->segment_size)
567 mr->retry_count_rtscts++;
568 } while ((tx_time < mp->segment_size) &&
569 (++mr->retry_count < mp->max_retry));
573 static void
574 minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
575 struct ieee80211_tx_rate *rate, int index,
576 bool sample, bool rtscts)
578 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
579 struct minstrel_rate_stats *mr;
581 mr = minstrel_get_ratestats(mi, index);
582 if (!mr->retry_updated)
583 minstrel_calc_retransmit(mp, mi, index);
585 if (sample)
586 rate->count = 1;
587 else if (mr->probability < MINSTREL_FRAC(20, 100))
588 rate->count = 2;
589 else if (rtscts)
590 rate->count = mr->retry_count_rtscts;
591 else
592 rate->count = mr->retry_count;
594 rate->flags = 0;
595 if (rtscts)
596 rate->flags |= IEEE80211_TX_RC_USE_RTS_CTS;
598 if (index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) {
599 rate->idx = mp->cck_rates[index % ARRAY_SIZE(mp->cck_rates)];
600 return;
603 rate->flags |= IEEE80211_TX_RC_MCS | group->flags;
604 rate->idx = index % MCS_GROUP_RATES + (group->streams - 1) * MCS_GROUP_RATES;
607 static inline int
608 minstrel_get_duration(int index)
610 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
611 return group->duration[index % MCS_GROUP_RATES];
614 static int
615 minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
617 struct minstrel_rate_stats *mr;
618 struct minstrel_mcs_group_data *mg;
619 int sample_idx = 0;
621 if (mi->sample_wait > 0) {
622 mi->sample_wait--;
623 return -1;
626 if (!mi->sample_tries)
627 return -1;
629 mi->sample_tries--;
630 mg = &mi->groups[mi->sample_group];
631 sample_idx = sample_table[mg->column][mg->index];
632 mr = &mg->rates[sample_idx];
633 sample_idx += mi->sample_group * MCS_GROUP_RATES;
634 minstrel_next_sample_idx(mi);
637 * Sampling might add some overhead (RTS, no aggregation)
638 * to the frame. Hence, don't use sampling for the currently
639 * used max TP rate.
641 if (sample_idx == mi->max_tp_rate)
642 return -1;
644 * When not using MRR, do not sample if the probability is already
645 * higher than 95% to avoid wasting airtime
647 if (!mp->has_mrr && (mr->probability > MINSTREL_FRAC(95, 100)))
648 return -1;
651 * Make sure that lower rates get sampled only occasionally,
652 * if the link is working perfectly.
654 if (minstrel_get_duration(sample_idx) >
655 minstrel_get_duration(mi->max_tp_rate)) {
656 if (mr->sample_skipped < 20)
657 return -1;
659 if (mi->sample_slow++ > 2)
660 return -1;
663 return sample_idx;
666 static void
667 minstrel_ht_check_cck_shortpreamble(struct minstrel_priv *mp,
668 struct minstrel_ht_sta *mi, bool val)
670 u8 supported = mi->groups[MINSTREL_CCK_GROUP].supported;
672 if (!supported || !mi->cck_supported_short)
673 return;
675 if (supported & (mi->cck_supported_short << (val * 4)))
676 return;
678 supported ^= mi->cck_supported_short | (mi->cck_supported_short << 4);
679 mi->groups[MINSTREL_CCK_GROUP].supported = supported;
682 static void
683 minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
684 struct ieee80211_tx_rate_control *txrc)
686 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
687 struct ieee80211_tx_rate *ar = info->status.rates;
688 struct minstrel_ht_sta_priv *msp = priv_sta;
689 struct minstrel_ht_sta *mi = &msp->ht;
690 struct minstrel_priv *mp = priv;
691 int sample_idx;
692 bool sample = false;
694 if (rate_control_send_low(sta, priv_sta, txrc))
695 return;
697 if (!msp->is_ht)
698 return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
700 info->flags |= mi->tx_flags;
701 minstrel_ht_check_cck_shortpreamble(mp, mi, txrc->short_preamble);
703 /* Don't use EAPOL frames for sampling on non-mrr hw */
704 if (mp->hw->max_rates == 1 &&
705 txrc->skb->protocol == cpu_to_be16(ETH_P_PAE))
706 sample_idx = -1;
707 else
708 sample_idx = minstrel_get_sample_rate(mp, mi);
710 #ifdef CONFIG_MAC80211_DEBUGFS
711 /* use fixed index if set */
712 if (mp->fixed_rate_idx != -1) {
713 mi->max_tp_rate = mp->fixed_rate_idx;
714 mi->max_tp_rate2 = mp->fixed_rate_idx;
715 mi->max_prob_rate = mp->fixed_rate_idx;
716 sample_idx = -1;
718 #endif
720 if (sample_idx >= 0) {
721 sample = true;
722 minstrel_ht_set_rate(mp, mi, &ar[0], sample_idx,
723 true, false);
724 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
725 } else {
726 minstrel_ht_set_rate(mp, mi, &ar[0], mi->max_tp_rate,
727 false, false);
730 if (mp->hw->max_rates >= 3) {
732 * At least 3 tx rates supported, use
733 * sample_rate -> max_tp_rate -> max_prob_rate for sampling and
734 * max_tp_rate -> max_tp_rate2 -> max_prob_rate by default.
736 if (sample_idx >= 0)
737 minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate,
738 false, false);
739 else
740 minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate2,
741 false, true);
743 minstrel_ht_set_rate(mp, mi, &ar[2], mi->max_prob_rate,
744 false, !sample);
746 ar[3].count = 0;
747 ar[3].idx = -1;
748 } else if (mp->hw->max_rates == 2) {
750 * Only 2 tx rates supported, use
751 * sample_rate -> max_prob_rate for sampling and
752 * max_tp_rate -> max_prob_rate by default.
754 minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_prob_rate,
755 false, !sample);
757 ar[2].count = 0;
758 ar[2].idx = -1;
759 } else {
760 /* Not using MRR, only use the first rate */
761 ar[1].count = 0;
762 ar[1].idx = -1;
765 mi->total_packets++;
767 /* wraparound */
768 if (mi->total_packets == ~0) {
769 mi->total_packets = 0;
770 mi->sample_packets = 0;
774 static void
775 minstrel_ht_update_cck(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
776 struct ieee80211_supported_band *sband,
777 struct ieee80211_sta *sta)
779 int i;
781 if (sband->band != IEEE80211_BAND_2GHZ)
782 return;
784 mi->cck_supported = 0;
785 mi->cck_supported_short = 0;
786 for (i = 0; i < 4; i++) {
787 if (!rate_supported(sta, sband->band, mp->cck_rates[i]))
788 continue;
790 mi->cck_supported |= BIT(i);
791 if (sband->bitrates[i].flags & IEEE80211_RATE_SHORT_PREAMBLE)
792 mi->cck_supported_short |= BIT(i);
795 mi->groups[MINSTREL_CCK_GROUP].supported = mi->cck_supported;
798 static void
799 minstrel_ht_update_caps(void *priv, struct ieee80211_supported_band *sband,
800 struct ieee80211_sta *sta, void *priv_sta)
802 struct minstrel_priv *mp = priv;
803 struct minstrel_ht_sta_priv *msp = priv_sta;
804 struct minstrel_ht_sta *mi = &msp->ht;
805 struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs;
806 u16 sta_cap = sta->ht_cap.cap;
807 int n_supported = 0;
808 int ack_dur;
809 int stbc;
810 int i;
812 /* fall back to the old minstrel for legacy stations */
813 if (!sta->ht_cap.ht_supported)
814 goto use_legacy;
816 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) !=
817 MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS + 1);
819 msp->is_ht = true;
820 memset(mi, 0, sizeof(*mi));
821 mi->stats_update = jiffies;
823 ack_dur = ieee80211_frame_duration(sband->band, 10, 60, 1, 1);
824 mi->overhead = ieee80211_frame_duration(sband->band, 0, 60, 1, 1) + ack_dur;
825 mi->overhead_rtscts = mi->overhead + 2 * ack_dur;
827 mi->avg_ampdu_len = MINSTREL_FRAC(1, 1);
829 /* When using MRR, sample more on the first attempt, without delay */
830 if (mp->has_mrr) {
831 mi->sample_count = 16;
832 mi->sample_wait = 0;
833 } else {
834 mi->sample_count = 8;
835 mi->sample_wait = 8;
837 mi->sample_tries = 4;
839 stbc = (sta_cap & IEEE80211_HT_CAP_RX_STBC) >>
840 IEEE80211_HT_CAP_RX_STBC_SHIFT;
841 mi->tx_flags |= stbc << IEEE80211_TX_CTL_STBC_SHIFT;
843 if (sta_cap & IEEE80211_HT_CAP_LDPC_CODING)
844 mi->tx_flags |= IEEE80211_TX_CTL_LDPC;
846 for (i = 0; i < ARRAY_SIZE(mi->groups); i++) {
847 mi->groups[i].supported = 0;
848 if (i == MINSTREL_CCK_GROUP) {
849 minstrel_ht_update_cck(mp, mi, sband, sta);
850 continue;
853 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_SHORT_GI) {
854 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) {
855 if (!(sta_cap & IEEE80211_HT_CAP_SGI_40))
856 continue;
857 } else {
858 if (!(sta_cap & IEEE80211_HT_CAP_SGI_20))
859 continue;
863 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH &&
864 sta->bandwidth < IEEE80211_STA_RX_BW_40)
865 continue;
867 /* Mark MCS > 7 as unsupported if STA is in static SMPS mode */
868 if (sta->smps_mode == IEEE80211_SMPS_STATIC &&
869 minstrel_mcs_groups[i].streams > 1)
870 continue;
872 mi->groups[i].supported =
873 mcs->rx_mask[minstrel_mcs_groups[i].streams - 1];
875 if (mi->groups[i].supported)
876 n_supported++;
879 if (!n_supported)
880 goto use_legacy;
882 return;
884 use_legacy:
885 msp->is_ht = false;
886 memset(&msp->legacy, 0, sizeof(msp->legacy));
887 msp->legacy.r = msp->ratelist;
888 msp->legacy.sample_table = msp->sample_table;
889 return mac80211_minstrel.rate_init(priv, sband, sta, &msp->legacy);
892 static void
893 minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband,
894 struct ieee80211_sta *sta, void *priv_sta)
896 minstrel_ht_update_caps(priv, sband, sta, priv_sta);
899 static void
900 minstrel_ht_rate_update(void *priv, struct ieee80211_supported_band *sband,
901 struct ieee80211_sta *sta, void *priv_sta,
902 u32 changed)
904 minstrel_ht_update_caps(priv, sband, sta, priv_sta);
907 static void *
908 minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
910 struct ieee80211_supported_band *sband;
911 struct minstrel_ht_sta_priv *msp;
912 struct minstrel_priv *mp = priv;
913 struct ieee80211_hw *hw = mp->hw;
914 int max_rates = 0;
915 int i;
917 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
918 sband = hw->wiphy->bands[i];
919 if (sband && sband->n_bitrates > max_rates)
920 max_rates = sband->n_bitrates;
923 msp = kzalloc(sizeof(*msp), gfp);
924 if (!msp)
925 return NULL;
927 msp->ratelist = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
928 if (!msp->ratelist)
929 goto error;
931 msp->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
932 if (!msp->sample_table)
933 goto error1;
935 return msp;
937 error1:
938 kfree(msp->ratelist);
939 error:
940 kfree(msp);
941 return NULL;
944 static void
945 minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
947 struct minstrel_ht_sta_priv *msp = priv_sta;
949 kfree(msp->sample_table);
950 kfree(msp->ratelist);
951 kfree(msp);
954 static void *
955 minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
957 return mac80211_minstrel.alloc(hw, debugfsdir);
960 static void
961 minstrel_ht_free(void *priv)
963 mac80211_minstrel.free(priv);
966 static struct rate_control_ops mac80211_minstrel_ht = {
967 .name = "minstrel_ht",
968 .tx_status = minstrel_ht_tx_status,
969 .get_rate = minstrel_ht_get_rate,
970 .rate_init = minstrel_ht_rate_init,
971 .rate_update = minstrel_ht_rate_update,
972 .alloc_sta = minstrel_ht_alloc_sta,
973 .free_sta = minstrel_ht_free_sta,
974 .alloc = minstrel_ht_alloc,
975 .free = minstrel_ht_free,
976 #ifdef CONFIG_MAC80211_DEBUGFS
977 .add_sta_debugfs = minstrel_ht_add_sta_debugfs,
978 .remove_sta_debugfs = minstrel_ht_remove_sta_debugfs,
979 #endif
983 static void
984 init_sample_table(void)
986 int col, i, new_idx;
987 u8 rnd[MCS_GROUP_RATES];
989 memset(sample_table, 0xff, sizeof(sample_table));
990 for (col = 0; col < SAMPLE_COLUMNS; col++) {
991 for (i = 0; i < MCS_GROUP_RATES; i++) {
992 get_random_bytes(rnd, sizeof(rnd));
993 new_idx = (i + rnd[i]) % MCS_GROUP_RATES;
995 while (sample_table[col][new_idx] != 0xff)
996 new_idx = (new_idx + 1) % MCS_GROUP_RATES;
998 sample_table[col][new_idx] = i;
1003 int __init
1004 rc80211_minstrel_ht_init(void)
1006 init_sample_table();
1007 return ieee80211_rate_control_register(&mac80211_minstrel_ht);
1010 void
1011 rc80211_minstrel_ht_exit(void)
1013 ieee80211_rate_control_unregister(&mac80211_minstrel_ht);