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.
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>
16 #include "rc80211_minstrel.h"
17 #include "rc80211_minstrel_ht.h"
19 #define AVG_PKT_SIZE 1200
21 /* Number of bits for an average sized packet */
22 #define MCS_NBITS (AVG_PKT_SIZE << 3)
24 /* Number of symbols for a packet with (bps) bits per symbol */
25 #define MCS_NSYMS(bps) ((MCS_NBITS + (bps) - 1) / (bps))
27 /* Transmission time (nanoseconds) for a packet containing (syms) symbols */
28 #define MCS_SYMBOL_TIME(sgi, syms) \
30 ((syms) * 18000 + 4000) / 5 : /* syms * 3.6 us */ \
31 ((syms) * 1000) << 2 /* syms * 4 us */ \
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)))
38 * Define group sort order: HT40 -> SGI -> #streams
40 #define GROUP_IDX(_streams, _sgi, _ht40) \
41 MINSTREL_MAX_STREAMS * 2 * _ht40 + \
42 MINSTREL_MAX_STREAMS * _sgi + \
45 /* MCS rate information for an MCS group */
46 #define MCS_GROUP(_streams, _sgi, _ht40) \
47 [GROUP_IDX(_streams, _sgi, _ht40)] = { \
48 .streams = _streams, \
50 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
51 (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
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) \
64 #define CCK_DURATION(_bitrate, _short, _len) \
65 (1000 * (10 /* SIFS */ + \
66 (_short ? 72 + 24 : 144 + 48 ) + \
67 (8 * (_len + 4) * 10) / (_bitrate)))
69 #define CCK_ACK_DURATION(_bitrate, _short) \
70 (CCK_DURATION((_bitrate > 10 ? 20 : 10), false, 60) + \
71 CCK_DURATION(_bitrate, _short, AVG_PKT_SIZE))
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)
80 [MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS] = { \
83 CCK_DURATION_LIST(false), \
84 CCK_DURATION_LIST(true) \
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
93 * Sortorder has to be fixed for GROUP_IDX macro to be applicable:
94 * HT40 -> SGI -> #streams
96 const struct mcs_group minstrel_mcs_groups
[] = {
99 #if MINSTREL_MAX_STREAMS >= 3
105 #if MINSTREL_MAX_STREAMS >= 3
111 #if MINSTREL_MAX_STREAMS >= 3
117 #if MINSTREL_MAX_STREAMS >= 3
125 #define MINSTREL_CCK_GROUP (ARRAY_SIZE(minstrel_mcs_groups) - 1)
127 static u8 sample_table
[SAMPLE_COLUMNS
][MCS_GROUP_RATES
];
130 minstrel_ht_update_rates(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
);
133 * Look up an MCS group index based on mac80211 rate information
136 minstrel_ht_get_group_idx(struct ieee80211_tx_rate
*rate
)
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
));
143 static struct minstrel_rate_stats
*
144 minstrel_ht_get_stats(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
,
145 struct ieee80211_tx_rate
*rate
)
149 if (rate
->flags
& IEEE80211_TX_RC_MCS
) {
150 group
= minstrel_ht_get_group_idx(rate
);
151 idx
= rate
->idx
% MCS_GROUP_RATES
;
153 group
= MINSTREL_CCK_GROUP
;
155 for (idx
= 0; idx
< ARRAY_SIZE(mp
->cck_rates
); idx
++)
156 if (rate
->idx
== mp
->cck_rates
[idx
])
160 if (!(mi
->groups
[group
].supported
& BIT(idx
)))
163 return &mi
->groups
[group
].rates
[idx
];
166 static inline struct minstrel_rate_stats
*
167 minstrel_get_ratestats(struct minstrel_ht_sta
*mi
, int index
)
169 return &mi
->groups
[index
/ MCS_GROUP_RATES
].rates
[index
% MCS_GROUP_RATES
];
174 * Recalculate success probabilities and counters for a rate using EWMA
177 minstrel_calc_rate_ewma(struct minstrel_rate_stats
*mr
)
179 if (unlikely(mr
->attempts
> 0)) {
180 mr
->sample_skipped
= 0;
181 mr
->cur_prob
= MINSTREL_FRAC(mr
->success
, mr
->attempts
);
183 mr
->probability
= mr
->cur_prob
;
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
;
190 mr
->sample_skipped
++;
192 mr
->last_success
= mr
->success
;
193 mr
->last_attempts
= mr
->attempts
;
199 * Calculate throughput based on the average A-MPDU length, taking into account
200 * the expected number of retransmissions and their expected length
203 minstrel_ht_calc_tp(struct minstrel_ht_sta
*mi
, int group
, int rate
)
205 struct minstrel_rate_stats
*mr
;
206 unsigned int nsecs
= 0;
210 mr
= &mi
->groups
[group
].rates
[rate
];
211 prob
= mr
->probability
;
213 if (prob
< MINSTREL_FRAC(1, 10)) {
219 * For the throughput calculation, limit the probability value to 90% to
220 * account for collision related packet error rate fluctuation
222 if (prob
> MINSTREL_FRAC(9, 10))
223 prob
= MINSTREL_FRAC(9, 10);
225 if (group
!= MINSTREL_CCK_GROUP
)
226 nsecs
= 1000 * mi
->overhead
/ MINSTREL_TRUNC(mi
->avg_ampdu_len
);
228 nsecs
+= minstrel_mcs_groups
[group
].duration
[rate
];
229 tp
= 1000000 * ((mr
->probability
* 1000) / nsecs
);
231 mr
->cur_tp
= MINSTREL_TRUNC(tp
);
235 * Update rate statistics and select new primary rates
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
244 minstrel_ht_update_stats(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
)
246 struct minstrel_mcs_group_data
*mg
;
247 struct minstrel_rate_stats
*mr
;
248 int cur_prob
, cur_prob_tp
, cur_tp
, cur_tp2
;
250 bool mi_rates_valid
= false;
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
);
256 mi
->ampdu_packets
= 0;
260 mi
->sample_count
= 0;
262 for (group
= 0; group
< ARRAY_SIZE(minstrel_mcs_groups
); group
++) {
263 bool mg_rates_valid
= false;
270 mg
= &mi
->groups
[group
];
276 for (i
= 0; i
< MCS_GROUP_RATES
; i
++) {
277 if (!(mg
->supported
& BIT(i
)))
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;
289 mg_rates_valid
= true;
293 mr
->retry_updated
= false;
294 index
= MCS_GROUP_RATES
* group
+ i
;
295 minstrel_calc_rate_ewma(mr
);
296 minstrel_ht_calc_tp(mi
, group
, i
);
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
;
305 cur_prob_tp
= mr
->cur_tp
;
308 if (mr
->cur_tp
> cur_tp
) {
309 swap(index
, mg
->max_tp_rate
);
311 mr
= minstrel_get_ratestats(mi
, index
);
314 if (index
>= mg
->max_tp_rate
)
317 if (mr
->cur_tp
> cur_tp2
) {
318 mg
->max_tp_rate2
= index
;
319 cur_tp2
= mr
->cur_tp
;
324 /* try to sample all available rates during each interval */
325 mi
->sample_count
*= 8;
331 for (group
= 0; group
< ARRAY_SIZE(minstrel_mcs_groups
); group
++) {
332 mg
= &mi
->groups
[group
];
336 mr
= minstrel_get_ratestats(mi
, mg
->max_tp_rate
);
337 if (cur_tp
< mr
->cur_tp
) {
338 mi
->max_tp_rate2
= mi
->max_tp_rate
;
340 mi
->max_tp_rate
= mg
->max_tp_rate
;
342 mi
->max_prob_streams
= minstrel_mcs_groups
[group
].streams
- 1;
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
;
352 if (mi
->max_prob_streams
< 1)
353 mi
->max_prob_streams
= 1;
355 for (group
= 0; group
< ARRAY_SIZE(minstrel_mcs_groups
); group
++) {
356 mg
= &mi
->groups
[group
];
359 mr
= minstrel_get_ratestats(mi
, mg
->max_prob_rate
);
360 if (cur_prob_tp
< mr
->cur_tp
&&
361 minstrel_mcs_groups
[group
].streams
<= mi
->max_prob_streams
) {
362 mi
->max_prob_rate
= mg
->max_prob_rate
;
363 cur_prob
= mr
->cur_prob
;
364 cur_prob_tp
= mr
->cur_tp
;
369 mi
->stats_update
= jiffies
;
373 minstrel_ht_txstat_valid(struct minstrel_priv
*mp
, struct ieee80211_tx_rate
*rate
)
381 if (rate
->flags
& IEEE80211_TX_RC_MCS
)
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];
391 minstrel_next_sample_idx(struct minstrel_ht_sta
*mi
)
393 struct minstrel_mcs_group_data
*mg
;
397 mi
->sample_group
%= ARRAY_SIZE(minstrel_mcs_groups
);
398 mg
= &mi
->groups
[mi
->sample_group
];
403 if (++mg
->index
>= MCS_GROUP_RATES
) {
405 if (++mg
->column
>= ARRAY_SIZE(sample_table
))
413 minstrel_downgrade_rate(struct minstrel_ht_sta
*mi
, unsigned int *idx
,
416 int group
, orig_group
;
418 orig_group
= group
= *idx
/ MCS_GROUP_RATES
;
422 if (!mi
->groups
[group
].supported
)
425 if (minstrel_mcs_groups
[group
].streams
>
426 minstrel_mcs_groups
[orig_group
].streams
)
430 *idx
= mi
->groups
[group
].max_tp_rate
;
432 *idx
= mi
->groups
[group
].max_tp_rate2
;
438 minstrel_aggr_check(struct ieee80211_sta
*pubsta
, struct sk_buff
*skb
)
440 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
441 struct sta_info
*sta
= container_of(pubsta
, struct sta_info
, sta
);
444 if (unlikely(!ieee80211_is_data_qos(hdr
->frame_control
)))
447 if (unlikely(skb
->protocol
== cpu_to_be16(ETH_P_PAE
)))
450 tid
= *ieee80211_get_qos_ctl(hdr
) & IEEE80211_QOS_CTL_TID_MASK
;
451 if (likely(sta
->ampdu_mlme
.tid_tx
[tid
]))
454 if (skb_get_queue_mapping(skb
) == IEEE80211_AC_VO
)
457 ieee80211_start_tx_ba_session(pubsta
, tid
, 5000);
461 minstrel_ht_tx_status(void *priv
, struct ieee80211_supported_band
*sband
,
462 struct ieee80211_sta
*sta
, void *priv_sta
,
465 struct minstrel_ht_sta_priv
*msp
= priv_sta
;
466 struct minstrel_ht_sta
*mi
= &msp
->ht
;
467 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
468 struct ieee80211_tx_rate
*ar
= info
->status
.rates
;
469 struct minstrel_rate_stats
*rate
, *rate2
;
470 struct minstrel_priv
*mp
= priv
;
471 bool last
, update
= false;
475 return mac80211_minstrel
.tx_status(priv
, sband
, sta
, &msp
->legacy
, skb
);
477 /* This packet was aggregated but doesn't carry status info */
478 if ((info
->flags
& IEEE80211_TX_CTL_AMPDU
) &&
479 !(info
->flags
& IEEE80211_TX_STAT_AMPDU
))
482 if (!(info
->flags
& IEEE80211_TX_STAT_AMPDU
)) {
483 info
->status
.ampdu_ack_len
=
484 (info
->flags
& IEEE80211_TX_STAT_ACK
? 1 : 0);
485 info
->status
.ampdu_len
= 1;
489 mi
->ampdu_len
+= info
->status
.ampdu_len
;
491 if (!mi
->sample_wait
&& !mi
->sample_tries
&& mi
->sample_count
> 0) {
492 mi
->sample_wait
= 16 + 2 * MINSTREL_TRUNC(mi
->avg_ampdu_len
);
493 mi
->sample_tries
= 1;
497 if (info
->flags
& IEEE80211_TX_CTL_RATE_CTRL_PROBE
)
498 mi
->sample_packets
+= info
->status
.ampdu_len
;
500 last
= !minstrel_ht_txstat_valid(mp
, &ar
[0]);
501 for (i
= 0; !last
; i
++) {
502 last
= (i
== IEEE80211_TX_MAX_RATES
- 1) ||
503 !minstrel_ht_txstat_valid(mp
, &ar
[i
+ 1]);
505 rate
= minstrel_ht_get_stats(mp
, mi
, &ar
[i
]);
508 rate
->success
+= info
->status
.ampdu_ack_len
;
510 rate
->attempts
+= ar
[i
].count
* info
->status
.ampdu_len
;
514 * check for sudden death of spatial multiplexing,
515 * downgrade to a lower number of streams if necessary.
517 rate
= minstrel_get_ratestats(mi
, mi
->max_tp_rate
);
518 if (rate
->attempts
> 30 &&
519 MINSTREL_FRAC(rate
->success
, rate
->attempts
) <
520 MINSTREL_FRAC(20, 100)) {
521 minstrel_downgrade_rate(mi
, &mi
->max_tp_rate
, true);
525 rate2
= minstrel_get_ratestats(mi
, mi
->max_tp_rate2
);
526 if (rate2
->attempts
> 30 &&
527 MINSTREL_FRAC(rate2
->success
, rate2
->attempts
) <
528 MINSTREL_FRAC(20, 100)) {
529 minstrel_downgrade_rate(mi
, &mi
->max_tp_rate2
, false);
533 if (time_after(jiffies
, mi
->stats_update
+ (mp
->update_interval
/ 2 * HZ
) / 1000)) {
535 minstrel_ht_update_stats(mp
, mi
);
536 if (!(info
->flags
& IEEE80211_TX_CTL_AMPDU
) &&
537 mi
->max_prob_rate
/ MCS_GROUP_RATES
!= MINSTREL_CCK_GROUP
)
538 minstrel_aggr_check(sta
, skb
);
542 minstrel_ht_update_rates(mp
, mi
);
546 minstrel_calc_retransmit(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
,
549 struct minstrel_rate_stats
*mr
;
550 const struct mcs_group
*group
;
551 unsigned int tx_time
, tx_time_rtscts
, tx_time_data
;
552 unsigned int cw
= mp
->cw_min
;
553 unsigned int ctime
= 0;
554 unsigned int t_slot
= 9; /* FIXME */
555 unsigned int ampdu_len
= MINSTREL_TRUNC(mi
->avg_ampdu_len
);
556 unsigned int overhead
= 0, overhead_rtscts
= 0;
558 mr
= minstrel_get_ratestats(mi
, index
);
559 if (mr
->probability
< MINSTREL_FRAC(1, 10)) {
561 mr
->retry_count_rtscts
= 1;
566 mr
->retry_count_rtscts
= 2;
567 mr
->retry_updated
= true;
569 group
= &minstrel_mcs_groups
[index
/ MCS_GROUP_RATES
];
570 tx_time_data
= group
->duration
[index
% MCS_GROUP_RATES
] * ampdu_len
/ 1000;
572 /* Contention time for first 2 tries */
573 ctime
= (t_slot
* cw
) >> 1;
574 cw
= min((cw
<< 1) | 1, mp
->cw_max
);
575 ctime
+= (t_slot
* cw
) >> 1;
576 cw
= min((cw
<< 1) | 1, mp
->cw_max
);
578 if (index
/ MCS_GROUP_RATES
!= MINSTREL_CCK_GROUP
) {
579 overhead
= mi
->overhead
;
580 overhead_rtscts
= mi
->overhead_rtscts
;
583 /* Total TX time for data and Contention after first 2 tries */
584 tx_time
= ctime
+ 2 * (overhead
+ tx_time_data
);
585 tx_time_rtscts
= ctime
+ 2 * (overhead_rtscts
+ tx_time_data
);
587 /* See how many more tries we can fit inside segment size */
589 /* Contention time for this try */
590 ctime
= (t_slot
* cw
) >> 1;
591 cw
= min((cw
<< 1) | 1, mp
->cw_max
);
593 /* Total TX time after this try */
594 tx_time
+= ctime
+ overhead
+ tx_time_data
;
595 tx_time_rtscts
+= ctime
+ overhead_rtscts
+ tx_time_data
;
597 if (tx_time_rtscts
< mp
->segment_size
)
598 mr
->retry_count_rtscts
++;
599 } while ((tx_time
< mp
->segment_size
) &&
600 (++mr
->retry_count
< mp
->max_retry
));
605 minstrel_ht_set_rate(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
,
606 struct ieee80211_sta_rates
*ratetbl
, int offset
, int index
)
608 const struct mcs_group
*group
= &minstrel_mcs_groups
[index
/ MCS_GROUP_RATES
];
609 struct minstrel_rate_stats
*mr
;
613 mr
= minstrel_get_ratestats(mi
, index
);
614 if (!mr
->retry_updated
)
615 minstrel_calc_retransmit(mp
, mi
, index
);
617 if (mr
->probability
< MINSTREL_FRAC(20, 100) || !mr
->retry_count
) {
618 ratetbl
->rate
[offset
].count
= 2;
619 ratetbl
->rate
[offset
].count_rts
= 2;
620 ratetbl
->rate
[offset
].count_cts
= 2;
622 ratetbl
->rate
[offset
].count
= mr
->retry_count
;
623 ratetbl
->rate
[offset
].count_cts
= mr
->retry_count
;
624 ratetbl
->rate
[offset
].count_rts
= mr
->retry_count_rtscts
;
627 if (index
/ MCS_GROUP_RATES
== MINSTREL_CCK_GROUP
) {
628 idx
= mp
->cck_rates
[index
% ARRAY_SIZE(mp
->cck_rates
)];
631 idx
= index
% MCS_GROUP_RATES
+
632 (group
->streams
- 1) * MCS_GROUP_RATES
;
633 flags
= IEEE80211_TX_RC_MCS
| group
->flags
;
637 ratetbl
->rate
[offset
].count
= ratetbl
->rate
[offset
].count_rts
;
638 flags
|= IEEE80211_TX_RC_USE_RTS_CTS
;
641 ratetbl
->rate
[offset
].idx
= idx
;
642 ratetbl
->rate
[offset
].flags
= flags
;
646 minstrel_ht_update_rates(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
)
648 struct ieee80211_sta_rates
*rates
;
651 rates
= kzalloc(sizeof(*rates
), GFP_ATOMIC
);
655 /* Start with max_tp_rate */
656 minstrel_ht_set_rate(mp
, mi
, rates
, i
++, mi
->max_tp_rate
);
658 if (mp
->hw
->max_rates
>= 3) {
659 /* At least 3 tx rates supported, use max_tp_rate2 next */
660 minstrel_ht_set_rate(mp
, mi
, rates
, i
++, mi
->max_tp_rate2
);
663 if (mp
->hw
->max_rates
>= 2) {
665 * At least 2 tx rates supported, use max_prob_rate next */
666 minstrel_ht_set_rate(mp
, mi
, rates
, i
++, mi
->max_prob_rate
);
669 rates
->rate
[i
].idx
= -1;
670 rate_control_set_rates(mp
->hw
, mi
->sta
, rates
);
674 minstrel_get_duration(int index
)
676 const struct mcs_group
*group
= &minstrel_mcs_groups
[index
/ MCS_GROUP_RATES
];
677 return group
->duration
[index
% MCS_GROUP_RATES
];
681 minstrel_get_sample_rate(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
)
683 struct minstrel_rate_stats
*mr
;
684 struct minstrel_mcs_group_data
*mg
;
685 unsigned int sample_dur
, sample_group
;
688 if (mi
->sample_wait
> 0) {
693 if (!mi
->sample_tries
)
696 mg
= &mi
->groups
[mi
->sample_group
];
697 sample_idx
= sample_table
[mg
->column
][mg
->index
];
698 mr
= &mg
->rates
[sample_idx
];
699 sample_group
= mi
->sample_group
;
700 sample_idx
+= sample_group
* MCS_GROUP_RATES
;
701 minstrel_next_sample_idx(mi
);
704 * Sampling might add some overhead (RTS, no aggregation)
705 * to the frame. Hence, don't use sampling for the currently
708 if (sample_idx
== mi
->max_tp_rate
||
709 sample_idx
== mi
->max_tp_rate2
||
710 sample_idx
== mi
->max_prob_rate
)
714 * Do not sample if the probability is already higher than 95%
715 * to avoid wasting airtime.
717 if (mr
->probability
> MINSTREL_FRAC(95, 100))
721 * Make sure that lower rates get sampled only occasionally,
722 * if the link is working perfectly.
724 sample_dur
= minstrel_get_duration(sample_idx
);
725 if (sample_dur
>= minstrel_get_duration(mi
->max_tp_rate2
) &&
726 (mi
->max_prob_streams
<
727 minstrel_mcs_groups
[sample_group
].streams
||
728 sample_dur
>= minstrel_get_duration(mi
->max_prob_rate
))) {
729 if (mr
->sample_skipped
< 20)
732 if (mi
->sample_slow
++ > 2)
741 minstrel_ht_check_cck_shortpreamble(struct minstrel_priv
*mp
,
742 struct minstrel_ht_sta
*mi
, bool val
)
744 u8 supported
= mi
->groups
[MINSTREL_CCK_GROUP
].supported
;
746 if (!supported
|| !mi
->cck_supported_short
)
749 if (supported
& (mi
->cck_supported_short
<< (val
* 4)))
752 supported
^= mi
->cck_supported_short
| (mi
->cck_supported_short
<< 4);
753 mi
->groups
[MINSTREL_CCK_GROUP
].supported
= supported
;
757 minstrel_ht_get_rate(void *priv
, struct ieee80211_sta
*sta
, void *priv_sta
,
758 struct ieee80211_tx_rate_control
*txrc
)
760 const struct mcs_group
*sample_group
;
761 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(txrc
->skb
);
762 struct ieee80211_tx_rate
*rate
= &info
->status
.rates
[0];
763 struct minstrel_ht_sta_priv
*msp
= priv_sta
;
764 struct minstrel_ht_sta
*mi
= &msp
->ht
;
765 struct minstrel_priv
*mp
= priv
;
768 if (rate_control_send_low(sta
, priv_sta
, txrc
))
772 return mac80211_minstrel
.get_rate(priv
, sta
, &msp
->legacy
, txrc
);
774 info
->flags
|= mi
->tx_flags
;
775 minstrel_ht_check_cck_shortpreamble(mp
, mi
, txrc
->short_preamble
);
777 /* Don't use EAPOL frames for sampling on non-mrr hw */
778 if (mp
->hw
->max_rates
== 1 &&
779 txrc
->skb
->protocol
== cpu_to_be16(ETH_P_PAE
))
782 sample_idx
= minstrel_get_sample_rate(mp
, mi
);
784 #ifdef CONFIG_MAC80211_DEBUGFS
785 /* use fixed index if set */
786 if (mp
->fixed_rate_idx
!= -1) {
787 mi
->max_tp_rate
= mp
->fixed_rate_idx
;
788 mi
->max_tp_rate2
= mp
->fixed_rate_idx
;
789 mi
->max_prob_rate
= mp
->fixed_rate_idx
;
797 if (mi
->total_packets
== ~0) {
798 mi
->total_packets
= 0;
799 mi
->sample_packets
= 0;
805 sample_group
= &minstrel_mcs_groups
[sample_idx
/ MCS_GROUP_RATES
];
806 info
->flags
|= IEEE80211_TX_CTL_RATE_CTRL_PROBE
;
807 rate
->idx
= sample_idx
% MCS_GROUP_RATES
+
808 (sample_group
->streams
- 1) * MCS_GROUP_RATES
;
809 rate
->flags
= IEEE80211_TX_RC_MCS
| sample_group
->flags
;
814 minstrel_ht_update_cck(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
,
815 struct ieee80211_supported_band
*sband
,
816 struct ieee80211_sta
*sta
)
820 if (sband
->band
!= IEEE80211_BAND_2GHZ
)
823 mi
->cck_supported
= 0;
824 mi
->cck_supported_short
= 0;
825 for (i
= 0; i
< 4; i
++) {
826 if (!rate_supported(sta
, sband
->band
, mp
->cck_rates
[i
]))
829 mi
->cck_supported
|= BIT(i
);
830 if (sband
->bitrates
[i
].flags
& IEEE80211_RATE_SHORT_PREAMBLE
)
831 mi
->cck_supported_short
|= BIT(i
);
834 mi
->groups
[MINSTREL_CCK_GROUP
].supported
= mi
->cck_supported
;
838 minstrel_ht_update_caps(void *priv
, struct ieee80211_supported_band
*sband
,
839 struct ieee80211_sta
*sta
, void *priv_sta
)
841 struct minstrel_priv
*mp
= priv
;
842 struct minstrel_ht_sta_priv
*msp
= priv_sta
;
843 struct minstrel_ht_sta
*mi
= &msp
->ht
;
844 struct ieee80211_mcs_info
*mcs
= &sta
->ht_cap
.mcs
;
845 u16 sta_cap
= sta
->ht_cap
.cap
;
851 /* fall back to the old minstrel for legacy stations */
852 if (!sta
->ht_cap
.ht_supported
)
855 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups
) !=
856 MINSTREL_MAX_STREAMS
* MINSTREL_STREAM_GROUPS
+ 1);
859 memset(mi
, 0, sizeof(*mi
));
862 mi
->stats_update
= jiffies
;
864 ack_dur
= ieee80211_frame_duration(sband
->band
, 10, 60, 1, 1);
865 mi
->overhead
= ieee80211_frame_duration(sband
->band
, 0, 60, 1, 1) + ack_dur
;
866 mi
->overhead_rtscts
= mi
->overhead
+ 2 * ack_dur
;
868 mi
->avg_ampdu_len
= MINSTREL_FRAC(1, 1);
870 /* When using MRR, sample more on the first attempt, without delay */
872 mi
->sample_count
= 16;
875 mi
->sample_count
= 8;
878 mi
->sample_tries
= 4;
880 stbc
= (sta_cap
& IEEE80211_HT_CAP_RX_STBC
) >>
881 IEEE80211_HT_CAP_RX_STBC_SHIFT
;
882 mi
->tx_flags
|= stbc
<< IEEE80211_TX_CTL_STBC_SHIFT
;
884 if (sta_cap
& IEEE80211_HT_CAP_LDPC_CODING
)
885 mi
->tx_flags
|= IEEE80211_TX_CTL_LDPC
;
887 for (i
= 0; i
< ARRAY_SIZE(mi
->groups
); i
++) {
888 mi
->groups
[i
].supported
= 0;
889 if (i
== MINSTREL_CCK_GROUP
) {
890 minstrel_ht_update_cck(mp
, mi
, sband
, sta
);
894 if (minstrel_mcs_groups
[i
].flags
& IEEE80211_TX_RC_SHORT_GI
) {
895 if (minstrel_mcs_groups
[i
].flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
) {
896 if (!(sta_cap
& IEEE80211_HT_CAP_SGI_40
))
899 if (!(sta_cap
& IEEE80211_HT_CAP_SGI_20
))
904 if (minstrel_mcs_groups
[i
].flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
&&
905 sta
->bandwidth
< IEEE80211_STA_RX_BW_40
)
908 /* Mark MCS > 7 as unsupported if STA is in static SMPS mode */
909 if (sta
->smps_mode
== IEEE80211_SMPS_STATIC
&&
910 minstrel_mcs_groups
[i
].streams
> 1)
913 mi
->groups
[i
].supported
=
914 mcs
->rx_mask
[minstrel_mcs_groups
[i
].streams
- 1];
916 if (mi
->groups
[i
].supported
)
923 /* create an initial rate table with the lowest supported rates */
924 minstrel_ht_update_stats(mp
, mi
);
925 minstrel_ht_update_rates(mp
, mi
);
931 memset(&msp
->legacy
, 0, sizeof(msp
->legacy
));
932 msp
->legacy
.r
= msp
->ratelist
;
933 msp
->legacy
.sample_table
= msp
->sample_table
;
934 return mac80211_minstrel
.rate_init(priv
, sband
, sta
, &msp
->legacy
);
938 minstrel_ht_rate_init(void *priv
, struct ieee80211_supported_band
*sband
,
939 struct ieee80211_sta
*sta
, void *priv_sta
)
941 minstrel_ht_update_caps(priv
, sband
, sta
, priv_sta
);
945 minstrel_ht_rate_update(void *priv
, struct ieee80211_supported_band
*sband
,
946 struct ieee80211_sta
*sta
, void *priv_sta
,
949 minstrel_ht_update_caps(priv
, sband
, sta
, priv_sta
);
953 minstrel_ht_alloc_sta(void *priv
, struct ieee80211_sta
*sta
, gfp_t gfp
)
955 struct ieee80211_supported_band
*sband
;
956 struct minstrel_ht_sta_priv
*msp
;
957 struct minstrel_priv
*mp
= priv
;
958 struct ieee80211_hw
*hw
= mp
->hw
;
962 for (i
= 0; i
< IEEE80211_NUM_BANDS
; i
++) {
963 sband
= hw
->wiphy
->bands
[i
];
964 if (sband
&& sband
->n_bitrates
> max_rates
)
965 max_rates
= sband
->n_bitrates
;
968 msp
= kzalloc(sizeof(*msp
), gfp
);
972 msp
->ratelist
= kzalloc(sizeof(struct minstrel_rate
) * max_rates
, gfp
);
976 msp
->sample_table
= kmalloc(SAMPLE_COLUMNS
* max_rates
, gfp
);
977 if (!msp
->sample_table
)
983 kfree(msp
->ratelist
);
990 minstrel_ht_free_sta(void *priv
, struct ieee80211_sta
*sta
, void *priv_sta
)
992 struct minstrel_ht_sta_priv
*msp
= priv_sta
;
994 kfree(msp
->sample_table
);
995 kfree(msp
->ratelist
);
1000 minstrel_ht_alloc(struct ieee80211_hw
*hw
, struct dentry
*debugfsdir
)
1002 return mac80211_minstrel
.alloc(hw
, debugfsdir
);
1006 minstrel_ht_free(void *priv
)
1008 mac80211_minstrel
.free(priv
);
1011 static struct rate_control_ops mac80211_minstrel_ht
= {
1012 .name
= "minstrel_ht",
1013 .tx_status
= minstrel_ht_tx_status
,
1014 .get_rate
= minstrel_ht_get_rate
,
1015 .rate_init
= minstrel_ht_rate_init
,
1016 .rate_update
= minstrel_ht_rate_update
,
1017 .alloc_sta
= minstrel_ht_alloc_sta
,
1018 .free_sta
= minstrel_ht_free_sta
,
1019 .alloc
= minstrel_ht_alloc
,
1020 .free
= minstrel_ht_free
,
1021 #ifdef CONFIG_MAC80211_DEBUGFS
1022 .add_sta_debugfs
= minstrel_ht_add_sta_debugfs
,
1023 .remove_sta_debugfs
= minstrel_ht_remove_sta_debugfs
,
1029 init_sample_table(void)
1031 int col
, i
, new_idx
;
1032 u8 rnd
[MCS_GROUP_RATES
];
1034 memset(sample_table
, 0xff, sizeof(sample_table
));
1035 for (col
= 0; col
< SAMPLE_COLUMNS
; col
++) {
1036 for (i
= 0; i
< MCS_GROUP_RATES
; i
++) {
1037 get_random_bytes(rnd
, sizeof(rnd
));
1038 new_idx
= (i
+ rnd
[i
]) % MCS_GROUP_RATES
;
1040 while (sample_table
[col
][new_idx
] != 0xff)
1041 new_idx
= (new_idx
+ 1) % MCS_GROUP_RATES
;
1043 sample_table
[col
][new_idx
] = i
;
1049 rc80211_minstrel_ht_init(void)
1051 init_sample_table();
1052 return ieee80211_rate_control_register(&mac80211_minstrel_ht
);
1056 rc80211_minstrel_ht_exit(void)
1058 ieee80211_rate_control_unregister(&mac80211_minstrel_ht
);