2 * Copyright (C) 2010 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)))
39 /* MCS rate information for an MCS group */
40 #define MCS_GROUP(_streams, _sgi, _ht40) { \
41 .streams = _streams, \
43 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
44 (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
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) \
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
62 const struct mcs_group minstrel_mcs_groups
[] = {
65 #if MINSTREL_MAX_STREAMS >= 3
71 #if MINSTREL_MAX_STREAMS >= 3
77 #if MINSTREL_MAX_STREAMS >= 3
83 #if MINSTREL_MAX_STREAMS >= 3
88 static u8 sample_table
[SAMPLE_COLUMNS
][MCS_GROUP_RATES
];
91 * Perform EWMA (Exponentially Weighted Moving Average) calculation
94 minstrel_ewma(int old
, int new, int weight
)
96 return (new * (100 - weight
) + old
* weight
) / 100;
100 * Look up an MCS group index based on mac80211 rate information
103 minstrel_ht_get_group_idx(struct ieee80211_tx_rate
*rate
)
105 int streams
= (rate
->idx
/ MCS_GROUP_RATES
) + 1;
106 u32 flags
= IEEE80211_TX_RC_SHORT_GI
| IEEE80211_TX_RC_40_MHZ_WIDTH
;
109 for (i
= 0; i
< ARRAY_SIZE(minstrel_mcs_groups
); i
++) {
110 if (minstrel_mcs_groups
[i
].streams
!= streams
)
112 if (minstrel_mcs_groups
[i
].flags
!= (rate
->flags
& flags
))
122 static inline struct minstrel_rate_stats
*
123 minstrel_get_ratestats(struct minstrel_ht_sta
*mi
, int index
)
125 return &mi
->groups
[index
/ MCS_GROUP_RATES
].rates
[index
% MCS_GROUP_RATES
];
130 * Recalculate success probabilities and counters for a rate using EWMA
133 minstrel_calc_rate_ewma(struct minstrel_priv
*mp
, struct minstrel_rate_stats
*mr
)
135 if (unlikely(mr
->attempts
> 0)) {
136 mr
->sample_skipped
= 0;
137 mr
->cur_prob
= MINSTREL_FRAC(mr
->success
, mr
->attempts
);
139 mr
->probability
= mr
->cur_prob
;
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
;
146 mr
->sample_skipped
++;
148 mr
->last_success
= mr
->success
;
149 mr
->last_attempts
= mr
->attempts
;
155 * Calculate throughput based on the average A-MPDU length, taking into account
156 * the expected number of retransmissions and their expected length
159 minstrel_ht_calc_tp(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
,
162 struct minstrel_rate_stats
*mr
;
165 mr
= &mi
->groups
[group
].rates
[rate
];
167 if (mr
->probability
< MINSTREL_FRAC(1, 10)) {
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
);
178 * Update rate statistics and select new primary rates
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
187 minstrel_ht_update_stats(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
)
189 struct minstrel_mcs_group_data
*mg
;
190 struct minstrel_rate_stats
*mr
;
191 int cur_prob
, cur_prob_tp
, cur_tp
, cur_tp2
;
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
);
198 mi
->ampdu_packets
= 0;
202 mi
->sample_count
= 0;
204 mi
->max_tp_rate2
= 0;
205 mi
->max_prob_rate
= 0;
207 for (group
= 0; group
< ARRAY_SIZE(minstrel_mcs_groups
); group
++) {
213 mg
= &mi
->groups
[group
];
218 mg
->max_tp_rate2
= 0;
219 mg
->max_prob_rate
= 0;
222 for (i
= 0; i
< MCS_GROUP_RATES
; i
++) {
223 if (!(mg
->supported
& BIT(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
);
235 /* ignore the lowest rate of each single-stream group */
236 if (!i
&& minstrel_mcs_groups
[group
].streams
== 1)
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 cur_prob_tp
= mr
->cur_tp
;
246 if (mr
->cur_tp
> cur_tp
) {
247 swap(index
, mg
->max_tp_rate
);
249 mr
= minstrel_get_ratestats(mi
, index
);
252 if (index
>= mg
->max_tp_rate
)
255 if (mr
->cur_tp
> cur_tp2
) {
256 mg
->max_tp_rate2
= index
;
257 cur_tp2
= mr
->cur_tp
;
262 /* try to sample up to half of the availble rates during each interval */
263 mi
->sample_count
*= 4;
269 for (group
= 0; group
< ARRAY_SIZE(minstrel_mcs_groups
); group
++) {
270 mg
= &mi
->groups
[group
];
274 mr
= minstrel_get_ratestats(mi
, mg
->max_prob_rate
);
275 if (cur_prob_tp
< mr
->cur_tp
&&
276 minstrel_mcs_groups
[group
].streams
== 1) {
277 mi
->max_prob_rate
= mg
->max_prob_rate
;
278 cur_prob
= mr
->cur_prob
;
279 cur_prob_tp
= mr
->cur_tp
;
282 mr
= minstrel_get_ratestats(mi
, mg
->max_tp_rate
);
283 if (cur_tp
< mr
->cur_tp
) {
284 mi
->max_tp_rate
= mg
->max_tp_rate
;
288 mr
= minstrel_get_ratestats(mi
, mg
->max_tp_rate2
);
289 if (cur_tp2
< mr
->cur_tp
) {
290 mi
->max_tp_rate2
= mg
->max_tp_rate2
;
291 cur_tp2
= mr
->cur_tp
;
295 mi
->stats_update
= jiffies
;
299 minstrel_ht_txstat_valid(struct ieee80211_tx_rate
*rate
)
307 return !!(rate
->flags
& IEEE80211_TX_RC_MCS
);
311 minstrel_next_sample_idx(struct minstrel_ht_sta
*mi
)
313 struct minstrel_mcs_group_data
*mg
;
317 mi
->sample_group
%= ARRAY_SIZE(minstrel_mcs_groups
);
318 mg
= &mi
->groups
[mi
->sample_group
];
323 if (++mg
->index
>= MCS_GROUP_RATES
) {
325 if (++mg
->column
>= ARRAY_SIZE(sample_table
))
333 minstrel_downgrade_rate(struct minstrel_ht_sta
*mi
, unsigned int *idx
,
336 int group
, orig_group
;
338 orig_group
= group
= *idx
/ MCS_GROUP_RATES
;
342 if (!mi
->groups
[group
].supported
)
345 if (minstrel_mcs_groups
[group
].streams
>
346 minstrel_mcs_groups
[orig_group
].streams
)
350 *idx
= mi
->groups
[group
].max_tp_rate
;
352 *idx
= mi
->groups
[group
].max_tp_rate2
;
358 minstrel_aggr_check(struct minstrel_priv
*mp
, struct ieee80211_sta
*pubsta
, struct sk_buff
*skb
)
360 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
361 struct sta_info
*sta
= container_of(pubsta
, struct sta_info
, sta
);
364 if (unlikely(!ieee80211_is_data_qos(hdr
->frame_control
)))
367 if (unlikely(skb
->protocol
== cpu_to_be16(ETH_P_PAE
)))
370 tid
= *ieee80211_get_qos_ctl(hdr
) & IEEE80211_QOS_CTL_TID_MASK
;
371 if (likely(sta
->ampdu_mlme
.tid_tx
[tid
]))
374 ieee80211_start_tx_ba_session(pubsta
, tid
);
378 minstrel_ht_tx_status(void *priv
, struct ieee80211_supported_band
*sband
,
379 struct ieee80211_sta
*sta
, void *priv_sta
,
382 struct minstrel_ht_sta_priv
*msp
= priv_sta
;
383 struct minstrel_ht_sta
*mi
= &msp
->ht
;
384 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
385 struct ieee80211_tx_rate
*ar
= info
->status
.rates
;
386 struct minstrel_rate_stats
*rate
, *rate2
;
387 struct minstrel_priv
*mp
= priv
;
393 return mac80211_minstrel
.tx_status(priv
, sband
, sta
, &msp
->legacy
, skb
);
395 /* This packet was aggregated but doesn't carry status info */
396 if ((info
->flags
& IEEE80211_TX_CTL_AMPDU
) &&
397 !(info
->flags
& IEEE80211_TX_STAT_AMPDU
))
400 if (!info
->status
.ampdu_len
) {
401 info
->status
.ampdu_ack_len
= 1;
402 info
->status
.ampdu_len
= 1;
406 mi
->ampdu_len
+= info
->status
.ampdu_len
;
408 if (!mi
->sample_wait
&& !mi
->sample_tries
&& mi
->sample_count
> 0) {
409 mi
->sample_wait
= 4 + 2 * MINSTREL_TRUNC(mi
->avg_ampdu_len
);
410 mi
->sample_tries
= 3;
414 if (info
->flags
& IEEE80211_TX_CTL_RATE_CTRL_PROBE
) {
415 mi
->sample_packets
+= info
->status
.ampdu_len
;
416 minstrel_next_sample_idx(mi
);
419 for (i
= 0; !last
; i
++) {
420 last
= (i
== IEEE80211_TX_MAX_RATES
- 1) ||
421 !minstrel_ht_txstat_valid(&ar
[i
+ 1]);
423 if (!minstrel_ht_txstat_valid(&ar
[i
]))
426 group
= minstrel_ht_get_group_idx(&ar
[i
]);
427 rate
= &mi
->groups
[group
].rates
[ar
[i
].idx
% 8];
429 if (last
&& (info
->flags
& IEEE80211_TX_STAT_ACK
))
430 rate
->success
+= info
->status
.ampdu_ack_len
;
432 rate
->attempts
+= ar
[i
].count
* info
->status
.ampdu_len
;
436 * check for sudden death of spatial multiplexing,
437 * downgrade to a lower number of streams if necessary.
439 rate
= minstrel_get_ratestats(mi
, mi
->max_tp_rate
);
440 if (rate
->attempts
> 30 &&
441 MINSTREL_FRAC(rate
->success
, rate
->attempts
) <
442 MINSTREL_FRAC(20, 100))
443 minstrel_downgrade_rate(mi
, &mi
->max_tp_rate
, true);
445 rate2
= minstrel_get_ratestats(mi
, mi
->max_tp_rate2
);
446 if (rate2
->attempts
> 30 &&
447 MINSTREL_FRAC(rate2
->success
, rate2
->attempts
) <
448 MINSTREL_FRAC(20, 100))
449 minstrel_downgrade_rate(mi
, &mi
->max_tp_rate2
, false);
451 if (time_after(jiffies
, mi
->stats_update
+ (mp
->update_interval
/ 2 * HZ
) / 1000)) {
452 minstrel_ht_update_stats(mp
, mi
);
453 minstrel_aggr_check(mp
, sta
, skb
);
458 minstrel_calc_retransmit(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
,
461 struct minstrel_rate_stats
*mr
;
462 const struct mcs_group
*group
;
463 unsigned int tx_time
, tx_time_rtscts
, tx_time_data
;
464 unsigned int cw
= mp
->cw_min
;
465 unsigned int t_slot
= 9; /* FIXME */
466 unsigned int ampdu_len
= MINSTREL_TRUNC(mi
->avg_ampdu_len
);
468 mr
= minstrel_get_ratestats(mi
, index
);
469 if (mr
->probability
< MINSTREL_FRAC(1, 10)) {
471 mr
->retry_count_rtscts
= 1;
476 mr
->retry_count_rtscts
= 2;
477 mr
->retry_updated
= true;
479 group
= &minstrel_mcs_groups
[index
/ MCS_GROUP_RATES
];
480 tx_time_data
= group
->duration
[index
% MCS_GROUP_RATES
] * ampdu_len
;
481 tx_time
= 2 * (t_slot
+ mi
->overhead
+ tx_time_data
);
482 tx_time_rtscts
= 2 * (t_slot
+ mi
->overhead_rtscts
+ tx_time_data
);
485 cw
= min(cw
, mp
->cw_max
);
486 tx_time
+= cw
+ t_slot
+ mi
->overhead
;
487 tx_time_rtscts
+= cw
+ t_slot
+ mi
->overhead_rtscts
;
488 if (tx_time_rtscts
< mp
->segment_size
)
489 mr
->retry_count_rtscts
++;
490 } while ((tx_time
< mp
->segment_size
) &&
491 (++mr
->retry_count
< mp
->max_retry
));
496 minstrel_ht_set_rate(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
,
497 struct ieee80211_tx_rate
*rate
, int index
,
498 struct ieee80211_tx_rate_control
*txrc
,
499 bool sample
, bool rtscts
)
501 const struct mcs_group
*group
= &minstrel_mcs_groups
[index
/ MCS_GROUP_RATES
];
502 struct minstrel_rate_stats
*mr
;
504 mr
= minstrel_get_ratestats(mi
, index
);
505 if (!mr
->retry_updated
)
506 minstrel_calc_retransmit(mp
, mi
, index
);
508 if (mr
->probability
< MINSTREL_FRAC(20, 100))
511 rate
->count
= mr
->retry_count_rtscts
;
513 rate
->count
= mr
->retry_count
;
515 rate
->flags
= IEEE80211_TX_RC_MCS
| group
->flags
;
516 if (txrc
->short_preamble
)
517 rate
->flags
|= IEEE80211_TX_RC_USE_SHORT_PREAMBLE
;
518 if (txrc
->rts
|| rtscts
)
519 rate
->flags
|= IEEE80211_TX_RC_USE_RTS_CTS
;
520 rate
->idx
= index
% MCS_GROUP_RATES
+ (group
->streams
- 1) * MCS_GROUP_RATES
;
524 minstrel_get_duration(int index
)
526 const struct mcs_group
*group
= &minstrel_mcs_groups
[index
/ MCS_GROUP_RATES
];
527 return group
->duration
[index
% MCS_GROUP_RATES
];
531 minstrel_get_sample_rate(struct minstrel_priv
*mp
, struct minstrel_ht_sta
*mi
)
533 struct minstrel_rate_stats
*mr
;
534 struct minstrel_mcs_group_data
*mg
;
537 if (mi
->sample_wait
> 0) {
542 if (!mi
->sample_tries
)
546 mg
= &mi
->groups
[mi
->sample_group
];
547 sample_idx
= sample_table
[mg
->column
][mg
->index
];
548 mr
= &mg
->rates
[sample_idx
];
549 sample_idx
+= mi
->sample_group
* MCS_GROUP_RATES
;
552 * When not using MRR, do not sample if the probability is already
553 * higher than 95% to avoid wasting airtime
555 if (!mp
->has_mrr
&& (mr
->probability
> MINSTREL_FRAC(95, 100)))
559 * Make sure that lower rates get sampled only occasionally,
560 * if the link is working perfectly.
562 if (minstrel_get_duration(sample_idx
) >
563 minstrel_get_duration(mi
->max_tp_rate
)) {
564 if (mr
->sample_skipped
< 10)
567 if (mi
->sample_slow
++ > 2)
574 minstrel_next_sample_idx(mi
);
579 minstrel_ht_get_rate(void *priv
, struct ieee80211_sta
*sta
, void *priv_sta
,
580 struct ieee80211_tx_rate_control
*txrc
)
582 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(txrc
->skb
);
583 struct ieee80211_tx_rate
*ar
= info
->status
.rates
;
584 struct minstrel_ht_sta_priv
*msp
= priv_sta
;
585 struct minstrel_ht_sta
*mi
= &msp
->ht
;
586 struct minstrel_priv
*mp
= priv
;
589 if (rate_control_send_low(sta
, priv_sta
, txrc
))
593 return mac80211_minstrel
.get_rate(priv
, sta
, &msp
->legacy
, txrc
);
595 info
->flags
|= mi
->tx_flags
;
596 sample_idx
= minstrel_get_sample_rate(mp
, mi
);
597 if (sample_idx
>= 0) {
598 minstrel_ht_set_rate(mp
, mi
, &ar
[0], sample_idx
,
600 minstrel_ht_set_rate(mp
, mi
, &ar
[1], mi
->max_tp_rate
,
602 info
->flags
|= IEEE80211_TX_CTL_RATE_CTRL_PROBE
;
604 minstrel_ht_set_rate(mp
, mi
, &ar
[0], mi
->max_tp_rate
,
606 minstrel_ht_set_rate(mp
, mi
, &ar
[1], mi
->max_tp_rate2
,
609 minstrel_ht_set_rate(mp
, mi
, &ar
[2], mi
->max_prob_rate
, txrc
, false, true);
617 if (mi
->total_packets
== ~0) {
618 mi
->total_packets
= 0;
619 mi
->sample_packets
= 0;
624 minstrel_ht_update_caps(void *priv
, struct ieee80211_supported_band
*sband
,
625 struct ieee80211_sta
*sta
, void *priv_sta
,
626 enum nl80211_channel_type oper_chan_type
)
628 struct minstrel_priv
*mp
= priv
;
629 struct minstrel_ht_sta_priv
*msp
= priv_sta
;
630 struct minstrel_ht_sta
*mi
= &msp
->ht
;
631 struct ieee80211_mcs_info
*mcs
= &sta
->ht_cap
.mcs
;
632 struct ieee80211_local
*local
= hw_to_local(mp
->hw
);
633 u16 sta_cap
= sta
->ht_cap
.cap
;
638 /* fall back to the old minstrel for legacy stations */
639 if (!sta
->ht_cap
.ht_supported
) {
641 memset(&msp
->legacy
, 0, sizeof(msp
->legacy
));
642 msp
->legacy
.r
= msp
->ratelist
;
643 msp
->legacy
.sample_table
= msp
->sample_table
;
644 return mac80211_minstrel
.rate_init(priv
, sband
, sta
, &msp
->legacy
);
647 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups
) !=
648 MINSTREL_MAX_STREAMS
* MINSTREL_STREAM_GROUPS
);
651 memset(mi
, 0, sizeof(*mi
));
652 mi
->stats_update
= jiffies
;
654 ack_dur
= ieee80211_frame_duration(local
, 10, 60, 1, 1);
655 mi
->overhead
= ieee80211_frame_duration(local
, 0, 60, 1, 1) + ack_dur
;
656 mi
->overhead_rtscts
= mi
->overhead
+ 2 * ack_dur
;
658 mi
->avg_ampdu_len
= MINSTREL_FRAC(1, 1);
660 /* When using MRR, sample more on the first attempt, without delay */
662 mi
->sample_count
= 16;
665 mi
->sample_count
= 8;
668 mi
->sample_tries
= 4;
670 stbc
= (sta_cap
& IEEE80211_HT_CAP_RX_STBC
) >>
671 IEEE80211_HT_CAP_RX_STBC_SHIFT
;
672 mi
->tx_flags
|= stbc
<< IEEE80211_TX_CTL_STBC_SHIFT
;
674 if (sta_cap
& IEEE80211_HT_CAP_LDPC_CODING
)
675 mi
->tx_flags
|= IEEE80211_TX_CTL_LDPC
;
677 if (oper_chan_type
!= NL80211_CHAN_HT40MINUS
&&
678 oper_chan_type
!= NL80211_CHAN_HT40PLUS
)
679 sta_cap
&= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
681 for (i
= 0; i
< ARRAY_SIZE(mi
->groups
); i
++) {
684 mi
->groups
[i
].supported
= 0;
685 if (minstrel_mcs_groups
[i
].flags
& IEEE80211_TX_RC_SHORT_GI
) {
686 if (minstrel_mcs_groups
[i
].flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
)
687 req
|= IEEE80211_HT_CAP_SGI_40
;
689 req
|= IEEE80211_HT_CAP_SGI_20
;
692 if (minstrel_mcs_groups
[i
].flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
)
693 req
|= IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
695 if ((sta_cap
& req
) != req
)
698 mi
->groups
[i
].supported
=
699 mcs
->rx_mask
[minstrel_mcs_groups
[i
].streams
- 1];
704 minstrel_ht_rate_init(void *priv
, struct ieee80211_supported_band
*sband
,
705 struct ieee80211_sta
*sta
, void *priv_sta
)
707 struct minstrel_priv
*mp
= priv
;
709 minstrel_ht_update_caps(priv
, sband
, sta
, priv_sta
, mp
->hw
->conf
.channel_type
);
713 minstrel_ht_rate_update(void *priv
, struct ieee80211_supported_band
*sband
,
714 struct ieee80211_sta
*sta
, void *priv_sta
,
715 u32 changed
, enum nl80211_channel_type oper_chan_type
)
717 minstrel_ht_update_caps(priv
, sband
, sta
, priv_sta
, oper_chan_type
);
721 minstrel_ht_alloc_sta(void *priv
, struct ieee80211_sta
*sta
, gfp_t gfp
)
723 struct ieee80211_supported_band
*sband
;
724 struct minstrel_ht_sta_priv
*msp
;
725 struct minstrel_priv
*mp
= priv
;
726 struct ieee80211_hw
*hw
= mp
->hw
;
730 for (i
= 0; i
< IEEE80211_NUM_BANDS
; i
++) {
731 sband
= hw
->wiphy
->bands
[i
];
732 if (sband
&& sband
->n_bitrates
> max_rates
)
733 max_rates
= sband
->n_bitrates
;
736 msp
= kzalloc(sizeof(struct minstrel_ht_sta
), gfp
);
740 msp
->ratelist
= kzalloc(sizeof(struct minstrel_rate
) * max_rates
, gfp
);
744 msp
->sample_table
= kmalloc(SAMPLE_COLUMNS
* max_rates
, gfp
);
745 if (!msp
->sample_table
)
751 kfree(msp
->ratelist
);
758 minstrel_ht_free_sta(void *priv
, struct ieee80211_sta
*sta
, void *priv_sta
)
760 struct minstrel_ht_sta_priv
*msp
= priv_sta
;
762 kfree(msp
->sample_table
);
763 kfree(msp
->ratelist
);
768 minstrel_ht_alloc(struct ieee80211_hw
*hw
, struct dentry
*debugfsdir
)
770 return mac80211_minstrel
.alloc(hw
, debugfsdir
);
774 minstrel_ht_free(void *priv
)
776 mac80211_minstrel
.free(priv
);
779 static struct rate_control_ops mac80211_minstrel_ht
= {
780 .name
= "minstrel_ht",
781 .tx_status
= minstrel_ht_tx_status
,
782 .get_rate
= minstrel_ht_get_rate
,
783 .rate_init
= minstrel_ht_rate_init
,
784 .rate_update
= minstrel_ht_rate_update
,
785 .alloc_sta
= minstrel_ht_alloc_sta
,
786 .free_sta
= minstrel_ht_free_sta
,
787 .alloc
= minstrel_ht_alloc
,
788 .free
= minstrel_ht_free
,
789 #ifdef CONFIG_MAC80211_DEBUGFS
790 .add_sta_debugfs
= minstrel_ht_add_sta_debugfs
,
791 .remove_sta_debugfs
= minstrel_ht_remove_sta_debugfs
,
797 init_sample_table(void)
800 u8 rnd
[MCS_GROUP_RATES
];
802 memset(sample_table
, 0xff, sizeof(sample_table
));
803 for (col
= 0; col
< SAMPLE_COLUMNS
; col
++) {
804 for (i
= 0; i
< MCS_GROUP_RATES
; i
++) {
805 get_random_bytes(rnd
, sizeof(rnd
));
806 new_idx
= (i
+ rnd
[i
]) % MCS_GROUP_RATES
;
808 while (sample_table
[col
][new_idx
] != 0xff)
809 new_idx
= (new_idx
+ 1) % MCS_GROUP_RATES
;
811 sample_table
[col
][new_idx
] = i
;
817 rc80211_minstrel_ht_init(void)
820 return ieee80211_rate_control_register(&mac80211_minstrel_ht
);
824 rc80211_minstrel_ht_exit(void)
826 ieee80211_rate_control_unregister(&mac80211_minstrel_ht
);