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
20 #define SAMPLE_COLUMNS 10
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) \
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 + \
47 /* MCS rate information for an MCS group */
48 #define MCS_GROUP(_streams, _sgi, _ht40) \
49 [GROUP_IDX(_streams, _sgi, _ht40)] = { \
50 .streams = _streams, \
52 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
53 (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
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) \
66 #define CCK_DURATION(_bitrate, _short, _len) \
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)
82 [MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS] = { \
85 CCK_DURATION_LIST(false), \
86 CCK_DURATION_LIST(true) \
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
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
[] = {
101 #if MINSTREL_MAX_STREAMS >= 3
107 #if MINSTREL_MAX_STREAMS >= 3
113 #if MINSTREL_MAX_STREAMS >= 3
119 #if MINSTREL_MAX_STREAMS >= 3
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
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
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
)
157 if (rate
->flags
& IEEE80211_TX_RC_MCS
) {
158 group
= minstrel_ht_get_group_idx(rate
);
159 idx
= rate
->idx
% MCS_GROUP_RATES
;
161 group
= MINSTREL_CCK_GROUP
;
163 for (idx
= 0; idx
< ARRAY_SIZE(mp
->cck_rates
); idx
++)
164 if (rate
->idx
== mp
->cck_rates
[idx
])
168 if (!(mi
->groups
[group
].supported
& BIT(idx
)))
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
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
);
191 mr
->probability
= mr
->cur_prob
;
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
;
198 mr
->sample_skipped
++;
200 mr
->last_success
= mr
->success
;
201 mr
->last_attempts
= mr
->attempts
;
207 * Calculate throughput based on the average A-MPDU length, taking into account
208 * the expected number of retransmissions and their expected length
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)) {
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
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
;
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
);
251 mi
->ampdu_packets
= 0;
255 mi
->sample_count
= 0;
257 mi
->max_tp_rate2
= 0;
258 mi
->max_prob_rate
= 0;
260 for (group
= 0; group
< ARRAY_SIZE(minstrel_mcs_groups
); group
++) {
266 mg
= &mi
->groups
[group
];
271 mg
->max_tp_rate2
= 0;
272 mg
->max_prob_rate
= 0;
275 for (i
= 0; i
< MCS_GROUP_RATES
; i
++) {
276 if (!(mg
->supported
& BIT(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
);
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
);
298 mr
= minstrel_get_ratestats(mi
, index
);
301 if (index
>= mg
->max_tp_rate
)
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;
318 for (group
= 0; group
< ARRAY_SIZE(minstrel_mcs_groups
); group
++) {
319 mg
= &mi
->groups
[group
];
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
;
335 mi
->max_tp_rate
= mg
->max_tp_rate
;
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
;
350 minstrel_ht_txstat_valid(struct minstrel_priv
*mp
, struct ieee80211_tx_rate
*rate
)
358 if (rate
->flags
& IEEE80211_TX_RC_MCS
)
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];
368 minstrel_next_sample_idx(struct minstrel_ht_sta
*mi
)
370 struct minstrel_mcs_group_data
*mg
;
374 mi
->sample_group
%= ARRAY_SIZE(minstrel_mcs_groups
);
375 mg
= &mi
->groups
[mi
->sample_group
];
380 if (++mg
->index
>= MCS_GROUP_RATES
) {
382 if (++mg
->column
>= ARRAY_SIZE(sample_table
))
390 minstrel_downgrade_rate(struct minstrel_ht_sta
*mi
, unsigned int *idx
,
393 int group
, orig_group
;
395 orig_group
= group
= *idx
/ MCS_GROUP_RATES
;
399 if (!mi
->groups
[group
].supported
)
402 if (minstrel_mcs_groups
[group
].streams
>
403 minstrel_mcs_groups
[orig_group
].streams
)
407 *idx
= mi
->groups
[group
].max_tp_rate
;
409 *idx
= mi
->groups
[group
].max_tp_rate2
;
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
);
421 if (unlikely(!ieee80211_is_data_qos(hdr
->frame_control
)))
424 if (unlikely(skb
->protocol
== cpu_to_be16(ETH_P_PAE
)))
427 tid
= *ieee80211_get_qos_ctl(hdr
) & IEEE80211_QOS_CTL_TID_MASK
;
428 if (likely(sta
->ampdu_mlme
.tid_tx
[tid
]))
431 if (skb_get_queue_mapping(skb
) == IEEE80211_AC_VO
)
434 ieee80211_start_tx_ba_session(pubsta
, tid
, 5000);
438 minstrel_ht_tx_status(void *priv
, struct ieee80211_supported_band
*sband
,
439 struct ieee80211_sta
*sta
, void *priv_sta
,
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
;
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
))
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;
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;
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
]);
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
);
515 minstrel_calc_retransmit(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
,
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)) {
530 mr
->retry_count_rtscts
= 1;
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 */
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
));
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
);
587 else if (mr
->probability
< MINSTREL_FRAC(20, 100))
590 rate
->count
= mr
->retry_count_rtscts
;
592 rate
->count
= mr
->retry_count
;
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
)];
603 rate
->flags
|= IEEE80211_TX_RC_MCS
| group
->flags
;
604 rate
->idx
= index
% MCS_GROUP_RATES
+ (group
->streams
- 1) * MCS_GROUP_RATES
;
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
];
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
;
621 if (mi
->sample_wait
> 0) {
626 if (!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
641 if (sample_idx
== mi
->max_tp_rate
)
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)))
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)
659 if (mi
->sample_slow
++ > 2)
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
)
675 if (supported
& (mi
->cck_supported_short
<< (val
* 4)))
678 supported
^= mi
->cck_supported_short
| (mi
->cck_supported_short
<< 4);
679 mi
->groups
[MINSTREL_CCK_GROUP
].supported
= supported
;
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
;
694 if (rate_control_send_low(sta
, priv_sta
, txrc
))
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
))
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
;
720 if (sample_idx
>= 0) {
722 minstrel_ht_set_rate(mp
, mi
, &ar
[0], sample_idx
,
724 info
->flags
|= IEEE80211_TX_CTL_RATE_CTRL_PROBE
;
726 minstrel_ht_set_rate(mp
, mi
, &ar
[0], mi
->max_tp_rate
,
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.
737 minstrel_ht_set_rate(mp
, mi
, &ar
[1], mi
->max_tp_rate
,
740 minstrel_ht_set_rate(mp
, mi
, &ar
[1], mi
->max_tp_rate2
,
743 minstrel_ht_set_rate(mp
, mi
, &ar
[2], mi
->max_prob_rate
,
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
,
760 /* Not using MRR, only use the first rate */
768 if (mi
->total_packets
== ~0) {
769 mi
->total_packets
= 0;
770 mi
->sample_packets
= 0;
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
)
781 if (sband
->band
!= IEEE80211_BAND_2GHZ
)
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
]))
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
;
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
;
812 /* fall back to the old minstrel for legacy stations */
813 if (!sta
->ht_cap
.ht_supported
)
816 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups
) !=
817 MINSTREL_MAX_STREAMS
* MINSTREL_STREAM_GROUPS
+ 1);
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 */
831 mi
->sample_count
= 16;
834 mi
->sample_count
= 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
);
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
))
858 if (!(sta_cap
& IEEE80211_HT_CAP_SGI_20
))
863 if (minstrel_mcs_groups
[i
].flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
&&
864 sta
->bandwidth
< IEEE80211_STA_RX_BW_40
)
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)
872 mi
->groups
[i
].supported
=
873 mcs
->rx_mask
[minstrel_mcs_groups
[i
].streams
- 1];
875 if (mi
->groups
[i
].supported
)
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
);
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
);
900 minstrel_ht_rate_update(void *priv
, struct ieee80211_supported_band
*sband
,
901 struct ieee80211_sta
*sta
, void *priv_sta
,
904 minstrel_ht_update_caps(priv
, sband
, sta
, priv_sta
);
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
;
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
);
927 msp
->ratelist
= kzalloc(sizeof(struct minstrel_rate
) * max_rates
, gfp
);
931 msp
->sample_table
= kmalloc(SAMPLE_COLUMNS
* max_rates
, gfp
);
932 if (!msp
->sample_table
)
938 kfree(msp
->ratelist
);
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
);
955 minstrel_ht_alloc(struct ieee80211_hw
*hw
, struct dentry
*debugfsdir
)
957 return mac80211_minstrel
.alloc(hw
, debugfsdir
);
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
,
984 init_sample_table(void)
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
;
1004 rc80211_minstrel_ht_init(void)
1006 init_sample_table();
1007 return ieee80211_rate_control_register(&mac80211_minstrel_ht
);
1011 rc80211_minstrel_ht_exit(void)
1013 ieee80211_rate_control_unregister(&mac80211_minstrel_ht
);