mac80211: add the new 802.11n minstrel rate control implementation (optional, not...
[openwrt/svn-archive/archive.git] / package / mac80211 / patches / 590-minstrel_ht.patch
1 --- a/net/mac80211/Makefile
2 +++ b/net/mac80211/Makefile
3 @@ -47,8 +47,8 @@ CFLAGS_driver-trace.o := -I$(src)
4 rc80211_pid-y := rc80211_pid_algo.o
5 rc80211_pid-$(CONFIG_MAC80211_DEBUGFS) += rc80211_pid_debugfs.o
6
7 -rc80211_minstrel-y := rc80211_minstrel.o
8 -rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o
9 +rc80211_minstrel-y := rc80211_minstrel.o rc80211_minstrel_ht.o
10 +rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += rc80211_minstrel_debugfs.o rc80211_minstrel_ht_debugfs.o
11
12 mac80211-$(CONFIG_MAC80211_RC_PID) += $(rc80211_pid-y)
13 mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y)
14 --- a/net/mac80211/main.c
15 +++ b/net/mac80211/main.c
16 @@ -710,6 +710,10 @@ static int __init ieee80211_init(void)
17 if (ret)
18 return ret;
19
20 + ret = rc80211_minstrel_ht_init();
21 + if (ret)
22 + goto err_minstrel;
23 +
24 ret = rc80211_pid_init();
25 if (ret)
26 goto err_pid;
27 @@ -722,6 +726,8 @@ static int __init ieee80211_init(void)
28 err_netdev:
29 rc80211_pid_exit();
30 err_pid:
31 + rc80211_minstrel_ht_exit();
32 + err_minstrel:
33 rc80211_minstrel_exit();
34
35 return ret;
36 @@ -730,6 +736,7 @@ static int __init ieee80211_init(void)
37 static void __exit ieee80211_exit(void)
38 {
39 rc80211_pid_exit();
40 + rc80211_minstrel_ht_exit();
41 rc80211_minstrel_exit();
42
43 /*
44 --- a/net/mac80211/rate.h
45 +++ b/net/mac80211/rate.h
46 @@ -136,6 +136,8 @@ static inline void rc80211_pid_exit(void
47 #ifdef CONFIG_MAC80211_RC_MINSTREL
48 extern int rc80211_minstrel_init(void);
49 extern void rc80211_minstrel_exit(void);
50 +extern int rc80211_minstrel_ht_init(void);
51 +extern void rc80211_minstrel_ht_exit(void);
52 #else
53 static inline int rc80211_minstrel_init(void)
54 {
55 @@ -144,6 +146,13 @@ static inline int rc80211_minstrel_init(
56 static inline void rc80211_minstrel_exit(void)
57 {
58 }
59 +static inline int rc80211_minstrel_ht_init(void)
60 +{
61 + return 0;
62 +}
63 +static inline void rc80211_minstrel_ht_exit(void)
64 +{
65 +}
66 #endif
67
68
69 --- /dev/null
70 +++ b/net/mac80211/rc80211_minstrel_ht.c
71 @@ -0,0 +1,803 @@
72 +/*
73 + * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
74 + *
75 + * This program is free software; you can redistribute it and/or modify
76 + * it under the terms of the GNU General Public License version 2 as
77 + * published by the Free Software Foundation.
78 + */
79 +#include <linux/netdevice.h>
80 +#include <linux/types.h>
81 +#include <linux/skbuff.h>
82 +#include <linux/debugfs.h>
83 +#include <linux/random.h>
84 +#include <linux/ieee80211.h>
85 +#include <net/mac80211.h>
86 +#include "rate.h"
87 +#include "rc80211_minstrel.h"
88 +#include "rc80211_minstrel_ht.h"
89 +
90 +#define AVG_PKT_SIZE 1200
91 +#define SAMPLE_COLUMNS 10
92 +#define EWMA_LEVEL 75
93 +
94 +/* Number of bits for an average sized packet */
95 +#define MCS_NBITS (AVG_PKT_SIZE << 3)
96 +
97 +/* Number of symbols for a packet with (bps) bits per symbol */
98 +#define MCS_NSYMS(bps) ((MCS_NBITS + (bps) - 1) / (bps))
99 +
100 +/* Transmission time for a packet containing (syms) symbols */
101 +#define MCS_SYMBOL_TIME(sgi, syms) \
102 + (sgi ? \
103 + ((syms) * 18 + 4) / 5 : /* syms * 3.6 us */ \
104 + (syms) << 2 /* syms * 4 us */ \
105 + )
106 +
107 +/* Transmit duration for the raw data part of an average sized packet */
108 +#define MCS_DURATION(streams, sgi, bps) MCS_SYMBOL_TIME(sgi, MCS_NSYMS((streams) * (bps)))
109 +
110 +/* MCS rate information for an MCS group */
111 +#define MCS_GROUP(_streams, _sgi, _ht40) { \
112 + .streams = _streams, \
113 + .flags = \
114 + (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
115 + (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
116 + .duration = { \
117 + MCS_DURATION(_streams, _sgi, _ht40 ? 54 : 26), \
118 + MCS_DURATION(_streams, _sgi, _ht40 ? 108 : 52), \
119 + MCS_DURATION(_streams, _sgi, _ht40 ? 162 : 78), \
120 + MCS_DURATION(_streams, _sgi, _ht40 ? 216 : 104), \
121 + MCS_DURATION(_streams, _sgi, _ht40 ? 324 : 156), \
122 + MCS_DURATION(_streams, _sgi, _ht40 ? 432 : 208), \
123 + MCS_DURATION(_streams, _sgi, _ht40 ? 486 : 234), \
124 + MCS_DURATION(_streams, _sgi, _ht40 ? 540 : 260) \
125 + } \
126 +}
127 +
128 +#define MINSTREL_INTFL_SAMPLE_SLOT0 BIT(30)
129 +#define MINSTREL_INTFL_SAMPLE_SLOT1 BIT(31)
130 +
131 +/*
132 + * To enable sufficiently targeted rate sampling, MCS rates are divided into
133 + * groups, based on the number of streams and flags (HT40, SGI) that they
134 + * use.
135 + */
136 +const struct mcs_group minstrel_mcs_groups[] = {
137 + MCS_GROUP(1, 0, 0),
138 + MCS_GROUP(2, 0, 0),
139 +#if MINSTREL_MAX_STREAMS >= 3
140 + MCS_GROUP(3, 0, 0),
141 +#endif
142 +
143 + MCS_GROUP(1, 1, 0),
144 + MCS_GROUP(2, 1, 0),
145 +#if MINSTREL_MAX_STREAMS >= 3
146 + MCS_GROUP(3, 1, 0),
147 +#endif
148 +
149 + MCS_GROUP(1, 0, 1),
150 + MCS_GROUP(2, 0, 1),
151 +#if MINSTREL_MAX_STREAMS >= 3
152 + MCS_GROUP(3, 0, 1),
153 +#endif
154 +
155 + MCS_GROUP(1, 1, 1),
156 + MCS_GROUP(2, 1, 1),
157 +#if MINSTREL_MAX_STREAMS >= 3
158 + MCS_GROUP(3, 1, 1),
159 +#endif
160 +};
161 +
162 +static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES];
163 +
164 +/*
165 + * Perform EWMA (Exponentially Weighted Moving Average) calculation
166 + */
167 +static int
168 +minstrel_ewma(int old, int new, int weight)
169 +{
170 + return (new * (100 - weight) + old * weight) / 100;
171 +}
172 +
173 +/*
174 + * Look up an MCS group index based on mac80211 rate information
175 + */
176 +static int
177 +minstrel_ht_get_group_idx(struct ieee80211_tx_rate *rate)
178 +{
179 + int streams = (rate->idx / MCS_GROUP_RATES) + 1;
180 + u32 flags = IEEE80211_TX_RC_SHORT_GI | IEEE80211_TX_RC_40_MHZ_WIDTH;
181 + int i;
182 +
183 + for (i = 0; i < ARRAY_SIZE(minstrel_mcs_groups); i++) {
184 + if (minstrel_mcs_groups[i].streams != streams)
185 + continue;
186 + if (minstrel_mcs_groups[i].flags != (rate->flags & flags))
187 + continue;
188 +
189 + return i;
190 + }
191 +
192 + WARN_ON(1);
193 + return 0;
194 +}
195 +
196 +static inline struct minstrel_rate_stats *
197 +minstrel_get_ratestats(struct minstrel_ht_sta *mi, int index)
198 +{
199 + return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES];
200 +}
201 +
202 +
203 +/*
204 + * Recalculate success probabilities and counters for a rate using EWMA
205 + */
206 +static void
207 +minstrel_calc_rate_ewma(struct minstrel_priv *mp, struct minstrel_rate_stats *mr)
208 +{
209 + if (mr->attempts) {
210 + mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
211 + if (!mr->att_hist)
212 + mr->probability = mr->cur_prob;
213 + else
214 + mr->probability = minstrel_ewma(mr->probability,
215 + mr->cur_prob, EWMA_LEVEL);
216 + mr->att_hist += mr->attempts;
217 + mr->succ_hist += mr->success;
218 + }
219 + mr->last_success = mr->success;
220 + mr->last_attempts = mr->attempts;
221 + mr->success = 0;
222 + mr->attempts = 0;
223 +}
224 +
225 +/*
226 + * Calculate throughput based on the average A-MPDU length, taking into account
227 + * the expected number of retransmissions and their expected length
228 + */
229 +static void
230 +minstrel_ht_calc_tp(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
231 + int group, int rate)
232 +{
233 + struct minstrel_rate_stats *mr;
234 + unsigned int usecs;
235 +
236 + mr = &mi->groups[group].rates[rate];
237 +
238 + if (mr->probability < MINSTREL_FRAC(1, 10)) {
239 + mr->cur_tp = 0;
240 + return;
241 + }
242 +
243 + usecs = mi->overhead / MINSTREL_TRUNC(mi->avg_ampdu_len);
244 + usecs += minstrel_mcs_groups[group].duration[rate];
245 + mr->cur_tp = MINSTREL_TRUNC((1000000 / usecs) * mr->probability);
246 +}
247 +
248 +/*
249 + * Update rate statistics and select new primary rates
250 + *
251 + * Rules for rate selection:
252 + * - max_prob_rate must use only one stream, as a tradeoff between delivery
253 + * probability and throughput during strong fluctuations
254 + * - as long as the max prob rate has a probability of more than 3/4, pick
255 + * higher throughput rates, even if the probablity is a bit lower
256 + */
257 +static void
258 +minstrel_ht_update_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
259 +{
260 + struct minstrel_mcs_group_data *mg;
261 + struct minstrel_rate_stats *mr;
262 + int cur_prob, cur_prob_tp, cur_tp, cur_tp2;
263 + int group, i, index;
264 +
265 + mi->max_tp_rate = 0;
266 + mi->max_tp_rate2 = 0;
267 + mi->max_prob_rate = 0;
268 +
269 + for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
270 + cur_prob = 0;
271 + cur_prob_tp = 0;
272 + cur_tp = 0;
273 + cur_tp2 = 0;
274 +
275 + mg = &mi->groups[group];
276 + if (!mg->supported)
277 + continue;
278 +
279 + mg->max_tp_rate = 0;
280 + mg->max_tp_rate2 = 0;
281 + mg->max_prob_rate = 0;
282 +
283 + for (i = 0; i < MCS_GROUP_RATES; i++) {
284 + if (!(mg->supported & BIT(i)))
285 + continue;
286 +
287 + mr = &mg->rates[i];
288 + mr->retry_updated = false;
289 + index = MCS_GROUP_RATES * group + i;
290 + minstrel_calc_rate_ewma(mp, mr);
291 + minstrel_ht_calc_tp(mp, mi, group, i);
292 +
293 + if (!mr->cur_tp)
294 + continue;
295 +
296 + /* ignore the lowest rate of each single-stream group */
297 + if (!i && minstrel_mcs_groups[group].streams == 1)
298 + continue;
299 +
300 + if ((mr->cur_tp > cur_prob_tp && mr->probability >
301 + MINSTREL_FRAC(3, 4)) || mr->probability > cur_prob) {
302 + mg->max_prob_rate = index;
303 + cur_prob = mr->probability;
304 + }
305 +
306 + if (mr->cur_tp > cur_tp) {
307 + swap(index, mg->max_tp_rate);
308 + cur_tp = mr->cur_tp;
309 + mr = minstrel_get_ratestats(mi, index);
310 + }
311 +
312 + if (index == mg->max_tp_rate)
313 + continue;
314 +
315 + if (mr->cur_tp > cur_tp2) {
316 + mg->max_tp_rate2 = index;
317 + cur_tp2 = mr->cur_tp;
318 + }
319 + }
320 + }
321 +
322 + cur_prob = 0;
323 + cur_prob_tp = 0;
324 + cur_tp = 0;
325 + cur_tp2 = 0;
326 + for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
327 + mg = &mi->groups[group];
328 + if (!mg->supported)
329 + continue;
330 +
331 + mr = minstrel_get_ratestats(mi, mg->max_prob_rate);
332 + if (cur_prob_tp < mr->cur_tp &&
333 + minstrel_mcs_groups[group].streams == 1) {
334 + mi->max_prob_rate = mg->max_prob_rate;
335 + cur_prob = mr->cur_prob;
336 + }
337 +
338 + mr = minstrel_get_ratestats(mi, mg->max_tp_rate);
339 + if (cur_tp < mr->cur_tp) {
340 + mi->max_tp_rate = mg->max_tp_rate;
341 + cur_tp = mr->cur_tp;
342 + }
343 +
344 + mr = minstrel_get_ratestats(mi, mg->max_tp_rate2);
345 + if (cur_tp2 < mr->cur_tp) {
346 + mi->max_tp_rate2 = mg->max_tp_rate2;
347 + cur_tp2 = mr->cur_tp;
348 + }
349 + }
350 +
351 + mi->stats_update = jiffies;
352 +}
353 +
354 +static bool
355 +minstrel_ht_txstat_valid(struct ieee80211_tx_rate *rate)
356 +{
357 + if (!rate->count)
358 + return false;
359 +
360 + if (rate->idx < 0)
361 + return false;
362 +
363 + return !!(rate->flags & IEEE80211_TX_RC_MCS);
364 +}
365 +
366 +static void
367 +minstrel_next_sample_idx(struct minstrel_ht_sta *mi)
368 +{
369 + struct minstrel_mcs_group_data *mg;
370 +
371 + for (;;) {
372 + mi->sample_group++;
373 + mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups);
374 + mg = &mi->groups[mi->sample_group];
375 +
376 + if (!mg->supported)
377 + continue;
378 +
379 + if (++mg->index > MCS_GROUP_RATES) {
380 + mg->index = 0;
381 + if (++mg->column > ARRAY_SIZE(sample_table))
382 + mg->column = 0;
383 + }
384 + break;
385 + }
386 +}
387 +
388 +static void
389 +minstrel_downgrade_rate(struct minstrel_ht_sta *mi, int *idx, int type)
390 +{
391 + int group, orig_group;
392 +
393 + orig_group = group = *idx / MCS_GROUP_RATES;
394 + while (group > 0) {
395 + group--;
396 +
397 + if (!mi->groups[group].supported)
398 + continue;
399 +
400 + if (minstrel_mcs_groups[group].streams >=
401 + minstrel_mcs_groups[orig_group].streams)
402 + continue;
403 +
404 + switch(type) {
405 + case 0:
406 + *idx = mi->groups[group].max_tp_rate;
407 + break;
408 + case 1:
409 + *idx = mi->groups[group].max_tp_rate2;
410 + break;
411 + }
412 + break;
413 + }
414 +}
415 +
416 +
417 +static void
418 +minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
419 + struct ieee80211_sta *sta, void *priv_sta,
420 + struct sk_buff *skb)
421 +{
422 + struct minstrel_ht_sta_priv *msp = priv_sta;
423 + struct minstrel_ht_sta *mi = &msp->ht;
424 + struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
425 + struct ieee80211_tx_rate *ar = info->status.rates;
426 + struct minstrel_rate_stats *rate, *rate2;
427 + struct minstrel_priv *mp = priv;
428 + bool last = false;
429 + int group;
430 + int i = 0;
431 +
432 + if (!msp->is_ht)
433 + return mac80211_minstrel.tx_status(priv, sband, sta, &msp->legacy, skb);
434 +
435 + /* This packet was aggregated but doesn't carry status info */
436 + if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
437 + !(info->flags & IEEE80211_TX_STAT_AMPDU))
438 + return;
439 +
440 + if (!info->status.ampdu_len) {
441 + info->status.ampdu_ack_len = 1;
442 + info->status.ampdu_len = 1;
443 + }
444 +
445 + mi->avg_ampdu_len = minstrel_ewma(mi->avg_ampdu_len,
446 + MINSTREL_FRAC(info->status.ampdu_len, 1), 90);
447 +
448 + for (i = 0; !last; i++) {
449 + last = (i == IEEE80211_TX_MAX_RATES - 1) ||
450 + !minstrel_ht_txstat_valid(&ar[i + 1]);
451 +
452 + if (!minstrel_ht_txstat_valid(&ar[i]))
453 + break;
454 +
455 + if ((i == 0 && (info->flags & MINSTREL_INTFL_SAMPLE_SLOT0)) ||
456 + (i == 1 && (info->flags & MINSTREL_INTFL_SAMPLE_SLOT1))) {
457 + if (mi->sample_pending > 0)
458 + mi->sample_pending--;
459 + mi->sample_packets++;
460 + minstrel_next_sample_idx(mi);
461 + }
462 +
463 + group = minstrel_ht_get_group_idx(&ar[i]);
464 + rate = &mi->groups[group].rates[ar[i].idx % 8];
465 +
466 + if (last && (info->flags & IEEE80211_TX_STAT_ACK) &&
467 + info->status.ampdu_len == info->status.ampdu_ack_len)
468 + rate->success++;
469 +
470 + rate->attempts += ar[i].count;
471 + }
472 +
473 +
474 + /*
475 + * check for sudden death of spatial multiplexing,
476 + * downgrade to a lower number of streams if necessary.
477 + */
478 + rate = minstrel_get_ratestats(mi, mi->max_tp_rate);
479 + if (MINSTREL_FRAC(rate->success, rate->attempts) <
480 + MINSTREL_FRAC(20, 100) && rate->attempts > 15)
481 + minstrel_downgrade_rate(mi, &mi->max_tp_rate, 0);
482 +
483 + rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate2);
484 + if (MINSTREL_FRAC(rate->success, rate->attempts) <
485 + MINSTREL_FRAC(20, 100) && rate->attempts > 15)
486 + minstrel_downgrade_rate(mi, &mi->max_tp_rate2, 1);
487 +
488 + if (time_after(jiffies, mi->stats_update + (mp->update_interval / 2 * HZ) / 1000))
489 + minstrel_ht_update_stats(mp, mi);
490 +}
491 +
492 +static void
493 +minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
494 + int index)
495 +{
496 + struct minstrel_rate_stats *mr;
497 + const struct mcs_group *group;
498 + unsigned int tx_time, tx_time_rtscts, tx_time_data;
499 + unsigned int cw = mp->cw_min;
500 + unsigned int t_slot = 9; /* FIXME */
501 + unsigned int ampdu_len = MINSTREL_TRUNC(mi->avg_ampdu_len);
502 +
503 + mr = minstrel_get_ratestats(mi, index);
504 + if (mr->probability < MINSTREL_FRAC(1, 10)) {
505 + mr->retry_count = 1;
506 + mr->retry_count_rtscts = 1;
507 + return;
508 + }
509 +
510 + mr->retry_count = 2;
511 + mr->retry_count_rtscts = 2;
512 + mr->retry_updated = true;
513 +
514 + group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
515 + tx_time_data = group->duration[index % MCS_GROUP_RATES] * ampdu_len;
516 + tx_time = 2 * (t_slot + mi->overhead + tx_time_data);
517 + tx_time_rtscts = 2 * (t_slot + mi->overhead_rtscts + tx_time_data);
518 + do {
519 + cw = (cw << 1) | 1;
520 + cw = min(cw, mp->cw_max);
521 + tx_time += cw + t_slot + mi->overhead;
522 + tx_time_rtscts += cw + t_slot + mi->overhead_rtscts;
523 + if (tx_time_rtscts < mp->segment_size)
524 + mr->retry_count_rtscts++;
525 + } while ((tx_time < mp->segment_size) &&
526 + (++mr->retry_count < mp->max_retry));
527 +}
528 +
529 +
530 +static void
531 +minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
532 + struct ieee80211_tx_rate *rate, int index,
533 + struct ieee80211_tx_rate_control *txrc,
534 + bool sample, bool rtscts)
535 +{
536 + const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
537 + struct minstrel_rate_stats *mr;
538 +
539 + mr = minstrel_get_ratestats(mi, index);
540 + if (!mr->retry_updated)
541 + minstrel_calc_retransmit(mp, mi, index);
542 +
543 + if (rtscts)
544 + rate->count = mr->retry_count_rtscts;
545 + else
546 + rate->count = mr->retry_count;
547 +
548 + rate->flags = IEEE80211_TX_RC_MCS | group->flags;
549 + if (txrc->short_preamble)
550 + rate->flags |= IEEE80211_TX_RC_USE_SHORT_PREAMBLE;
551 + if (txrc->rts || rtscts)
552 + rate->flags |= IEEE80211_TX_RC_USE_RTS_CTS;
553 + rate->idx = index % MCS_GROUP_RATES + (group->streams - 1) * MCS_GROUP_RATES;
554 +}
555 +
556 +static inline int
557 +minstrel_get_duration(int index)
558 +{
559 + const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
560 + return group->duration[index % MCS_GROUP_RATES];
561 +}
562 +
563 +static int
564 +minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
565 + bool *defer)
566 +{
567 + struct minstrel_rate_stats *mr;
568 + struct minstrel_mcs_group_data *mg;
569 + int sample_idx = 0;
570 + int sample_rate;
571 + int delta;
572 +
573 + if (mp->has_mrr)
574 + sample_rate = mp->lookaround_rate_mrr;
575 + else
576 + sample_rate = mp->lookaround_rate;
577 +
578 + delta = (mi->total_packets * sample_rate) / 100 - mi->sample_packets;
579 + delta -= mi->sample_pending / 2;
580 +
581 + if (delta <= 0)
582 + return -1;
583 +
584 + delta -= 16;
585 + if (delta > 1) {
586 + /* With multi-rate retry, not every planned sample
587 + * attempt actually gets used, due to the way the retry
588 + * chain is set up - [max_tp,sample,prob,lowest] for
589 + * sample_rate < max_tp.
590 + *
591 + * If there's too much sampling backlog and the link
592 + * starts getting worse, minstrel would start bursting
593 + * out lots of sampling frames, which would result
594 + * in a large throughput loss.
595 + */
596 + mi->sample_packets += delta - 1;
597 + }
598 +
599 + mg = &mi->groups[mi->sample_group];
600 + sample_idx = sample_table[mg->column][mg->index];
601 + mr = &mg->rates[sample_idx];
602 + sample_idx += mi->sample_group * MCS_GROUP_RATES;
603 +
604 + /*
605 + * When not using MRR, do not sample if the probability is already
606 + * higher than 95% to avoid wasting airtime
607 + */
608 + if (!mp->has_mrr && (mr->probability > MINSTREL_FRAC(95, 100)))
609 + return -1;
610 +
611 + if (minstrel_get_duration(sample_idx) >
612 + minstrel_get_duration(mi->max_tp_rate)) {
613 + /*
614 + * Make sure that lower rates get sampled occasionally, even
615 + * if the link is working perfectly. Some drivers such as ath9k
616 + * severely limit aggregation size if the MRR chain contains low
617 + * rates
618 + *
619 + * If the lower rate has already been tried a few times, there's
620 + * no point in forcing it to be sampled again, so skip to the
621 + * next sampling index after applying this one in the tx control
622 + */
623 + if (mr->att_hist > 15) {
624 + *defer = true;
625 + minstrel_next_sample_idx(mi);
626 + }
627 + }
628 +
629 + return sample_idx;
630 +}
631 +
632 +static void
633 +minstrel_aggr_check(struct minstrel_priv *mp, struct ieee80211_sta *pubsta, struct sk_buff *skb)
634 +{
635 + struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
636 + struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
637 + u16 tid;
638 +
639 + if (unlikely(!ieee80211_is_data_qos(hdr->frame_control)))
640 + return;
641 +
642 + if (unlikely(skb->protocol == cpu_to_be16(ETH_P_PAE)))
643 + return;
644 +
645 + tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
646 + if (likely(sta->ampdu_mlme.tid_state_tx[tid] != HT_AGG_STATE_IDLE))
647 + return;
648 +
649 + ieee80211_start_tx_ba_session(pubsta, tid);
650 +}
651 +
652 +static void
653 +minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
654 + struct ieee80211_tx_rate_control *txrc)
655 +{
656 + struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
657 + struct ieee80211_tx_rate *ar = info->status.rates;
658 + struct minstrel_ht_sta_priv *msp = priv_sta;
659 + struct minstrel_ht_sta *mi = &msp->ht;
660 + struct minstrel_priv *mp = priv;
661 + bool sample_defer = false;
662 + int sample_idx;
663 +
664 + if (rate_control_send_low(sta, priv_sta, txrc))
665 + return;
666 +
667 + if (!msp->is_ht)
668 + return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
669 +
670 + minstrel_aggr_check(mp, sta, txrc->skb);
671 +
672 + sample_idx = minstrel_get_sample_rate(mp, mi, &sample_defer);
673 + if (sample_idx >= 0) {
674 + if (sample_defer) {
675 + minstrel_ht_set_rate(mp, mi, &ar[0], mi->max_tp_rate,
676 + txrc, false, false);
677 + minstrel_ht_set_rate(mp, mi, &ar[1], sample_idx,
678 + txrc, true, true);
679 + info->flags |= MINSTREL_INTFL_SAMPLE_SLOT1;
680 + } else {
681 + minstrel_ht_set_rate(mp, mi, &ar[0], sample_idx,
682 + txrc, true, false);
683 + minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate,
684 + txrc, false, true);
685 + info->flags |= MINSTREL_INTFL_SAMPLE_SLOT0;
686 + }
687 + mi->sample_pending++;
688 + } else {
689 + minstrel_ht_set_rate(mp, mi, &ar[0], mi->max_tp_rate,
690 + txrc, false, false);
691 + minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate2,
692 + txrc, false, true);
693 + }
694 + minstrel_ht_set_rate(mp, mi, &ar[2], mi->max_prob_rate, txrc, false, true);
695 +
696 + ar[3].count = 0;
697 + ar[3].idx = -1;
698 +
699 + mi->total_packets++;
700 +
701 + /* wraparound */
702 + if (mi->total_packets >= 100000) {
703 + mi->total_packets = 0;
704 + mi->sample_packets = 0;
705 + mi->sample_pending = 0;
706 + }
707 +}
708 +
709 +
710 +static void
711 +minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband,
712 + struct ieee80211_sta *sta, void *priv_sta)
713 +{
714 + struct minstrel_priv *mp = priv;
715 + struct minstrel_ht_sta_priv *msp = priv_sta;
716 + struct minstrel_ht_sta *mi = &msp->ht;
717 + struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs;
718 + struct ieee80211_local *local = hw_to_local(mp->hw);
719 + int tx_streams;
720 + int ack_dur;
721 + int i;
722 +
723 + /* fall back to the old minstrel for legacy stations */
724 + if (sta && !sta->ht_cap.ht_supported) {
725 + msp->is_ht = false;
726 + memset(&msp->legacy, 0, sizeof(msp->legacy));
727 + msp->legacy.r = msp->ratelist;
728 + msp->legacy.sample_table = msp->sample_table;
729 + return mac80211_minstrel.rate_init(priv, sband, sta, &msp->legacy);
730 + }
731 +
732 + BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) !=
733 + MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS);
734 +
735 + msp->is_ht = true;
736 + memset(mi, 0, sizeof(*mi));
737 + mi->stats_update = jiffies;
738 +
739 + ack_dur = ieee80211_frame_duration(local, 10, 60, 1, 1);
740 + mi->overhead = ieee80211_frame_duration(local, 0, 60, 1, 1) + ack_dur;
741 + mi->overhead_rtscts = mi->overhead + 2 * ack_dur;
742 +
743 + mi->avg_ampdu_len = MINSTREL_FRAC(1, 1);
744 + tx_streams = ((mcs->tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK) >>
745 + IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
746 +
747 + for (i = 0; i < ARRAY_SIZE(mi->groups); i++) {
748 + u16 req = 0;
749 +
750 + if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_SHORT_GI) {
751 + if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
752 + req |= IEEE80211_HT_CAP_SGI_40;
753 + else
754 + req |= IEEE80211_HT_CAP_SGI_20;
755 + }
756 +
757 + if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
758 + req |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
759 +
760 + if ((sta->ht_cap.cap & req) != req)
761 + continue;
762 +
763 + mi->groups[i].supported =
764 + mcs->rx_mask[minstrel_mcs_groups[i].streams - 1];
765 + }
766 +}
767 +
768 +static void *
769 +minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
770 +{
771 + struct ieee80211_supported_band *sband;
772 + struct minstrel_ht_sta_priv *msp;
773 + struct minstrel_priv *mp = priv;
774 + struct ieee80211_hw *hw = mp->hw;
775 + int max_rates = 0;
776 + int i;
777 +
778 + for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
779 + sband = hw->wiphy->bands[i];
780 + if (sband && sband->n_bitrates > max_rates)
781 + max_rates = sband->n_bitrates;
782 + }
783 +
784 + msp = kzalloc(sizeof(struct minstrel_ht_sta), gfp);
785 + if (!msp)
786 + return NULL;
787 +
788 + msp->ratelist = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
789 + if (!msp->ratelist)
790 + goto error;
791 +
792 + msp->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
793 + if (!msp->sample_table)
794 + goto error1;
795 +
796 + return msp;
797 +
798 +error1:
799 + kfree(msp->sample_table);
800 +error:
801 + kfree(msp);
802 + return NULL;
803 +}
804 +
805 +static void
806 +minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
807 +{
808 + struct minstrel_ht_sta_priv *msp = priv_sta;
809 +
810 + kfree(msp->sample_table);
811 + kfree(msp->ratelist);
812 + kfree(msp);
813 +}
814 +
815 +static void *
816 +minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
817 +{
818 + return mac80211_minstrel.alloc(hw, debugfsdir);
819 +}
820 +
821 +static void
822 +minstrel_ht_free(void *priv)
823 +{
824 + mac80211_minstrel.free(priv);
825 +}
826 +
827 +static struct rate_control_ops mac80211_minstrel_ht = {
828 + .name = "minstrel_ht",
829 + .tx_status = minstrel_ht_tx_status,
830 + .get_rate = minstrel_ht_get_rate,
831 + .rate_init = minstrel_ht_rate_init,
832 + .alloc_sta = minstrel_ht_alloc_sta,
833 + .free_sta = minstrel_ht_free_sta,
834 + .alloc = minstrel_ht_alloc,
835 + .free = minstrel_ht_free,
836 +#ifdef CONFIG_MAC80211_DEBUGFS
837 + .add_sta_debugfs = minstrel_ht_add_sta_debugfs,
838 + .remove_sta_debugfs = minstrel_ht_remove_sta_debugfs,
839 +#endif
840 +};
841 +
842 +
843 +static void
844 +init_sample_table(void)
845 +{
846 + int col, i, new_idx;
847 + u8 rnd[MCS_GROUP_RATES];
848 +
849 + memset(sample_table, 0xff, sizeof(sample_table));
850 + for (col = 0; col < SAMPLE_COLUMNS; col++) {
851 + for (i = 0; i < MCS_GROUP_RATES; i++) {
852 + get_random_bytes(rnd, sizeof(rnd));
853 + new_idx = (i + rnd[i]) % MCS_GROUP_RATES;
854 +
855 + while (sample_table[col][new_idx] != 0xff)
856 + new_idx = (new_idx + 1) % MCS_GROUP_RATES;
857 +
858 + sample_table[col][new_idx] = i;
859 + }
860 + }
861 +}
862 +
863 +int __init
864 +rc80211_minstrel_ht_init(void)
865 +{
866 + init_sample_table();
867 + return ieee80211_rate_control_register(&mac80211_minstrel_ht);
868 +}
869 +
870 +void
871 +rc80211_minstrel_ht_exit(void)
872 +{
873 + ieee80211_rate_control_unregister(&mac80211_minstrel_ht);
874 +}
875 --- /dev/null
876 +++ b/net/mac80211/rc80211_minstrel_ht.h
877 @@ -0,0 +1,115 @@
878 +/*
879 + * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
880 + *
881 + * This program is free software; you can redistribute it and/or modify
882 + * it under the terms of the GNU General Public License version 2 as
883 + * published by the Free Software Foundation.
884 + */
885 +
886 +#ifndef __RC_MINSTREL_HT_H
887 +#define __RC_MINSTREL_HT_H
888 +
889 +/*
890 + * maximum number of spatial streams to make use of
891 + * set this value to 3 once we have drivers that support it
892 + */
893 +#define MINSTREL_MAX_STREAMS 2
894 +#define MINSTREL_STREAM_GROUPS 4
895 +
896 +/* scaled fraction values */
897 +#define MINSTREL_SCALE 16
898 +#define MINSTREL_FRAC(val, div) (((val) << MINSTREL_SCALE) / div)
899 +#define MINSTREL_TRUNC(val) ((val) >> MINSTREL_SCALE)
900 +
901 +#define MCS_GROUP_RATES 8
902 +
903 +struct mcs_group {
904 + u32 flags;
905 + unsigned int streams;
906 + unsigned int duration[MCS_GROUP_RATES];
907 +};
908 +
909 +struct minstrel_rate_stats {
910 + /* current / last sampling period attempts/success counters */
911 + unsigned int attempts, last_attempts;
912 + unsigned int success, last_success;
913 +
914 + /* total attempts/success counters */
915 + u64 att_hist, succ_hist;
916 +
917 + /* current throughput */
918 + unsigned int cur_tp;
919 +
920 + /* packet delivery probabilities */
921 + unsigned int cur_prob, probability;
922 +
923 + /* maximum retry counts */
924 + bool retry_updated;
925 + unsigned int retry_count;
926 + unsigned int retry_count_rtscts;
927 +};
928 +
929 +struct minstrel_mcs_group_data {
930 + u8 index;
931 + u8 column;
932 +
933 + /* bitfield of supported MCS rates of this group */
934 + u8 supported;
935 +
936 + /* selected primary rates */
937 + unsigned int max_tp_rate;
938 + unsigned int max_tp_rate2;
939 + unsigned int max_prob_rate;
940 +
941 + /* MCS rate statistics */
942 + struct minstrel_rate_stats rates[MCS_GROUP_RATES];
943 +};
944 +
945 +struct minstrel_ht_sta {
946 + /* ampdu length average (EWMA) */
947 + unsigned int avg_ampdu_len;
948 +
949 + /* best throughput rate */
950 + unsigned int max_tp_rate;
951 +
952 + /* second best throughput rate */
953 + unsigned int max_tp_rate2;
954 +
955 + /* best probability rate */
956 + unsigned int max_prob_rate;
957 +
958 + /* time of last status update */
959 + unsigned long stats_update;
960 +
961 + /* overhead time in usec for each frame */
962 + unsigned int overhead;
963 + unsigned int overhead_rtscts;
964 +
965 + unsigned int total_packets;
966 + unsigned int sample_packets;
967 + unsigned int sample_pending;
968 +
969 + /* current MCS group to be sampled */
970 + unsigned int sample_group;
971 +
972 + /* MCS rate group info and statistics */
973 + struct minstrel_mcs_group_data groups[MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS];
974 +};
975 +
976 +struct minstrel_ht_sta_priv {
977 + union {
978 + struct minstrel_ht_sta ht;
979 + struct minstrel_sta_info legacy;
980 + };
981 +#ifdef CONFIG_MAC80211_DEBUGFS
982 + struct dentry *dbg_stats;
983 +#endif
984 + void *ratelist;
985 + void *sample_table;
986 + bool is_ht;
987 +};
988 +
989 +void minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir);
990 +void minstrel_ht_remove_sta_debugfs(void *priv, void *priv_sta);
991 +
992 +#endif
993 --- /dev/null
994 +++ b/net/mac80211/rc80211_minstrel_ht_debugfs.c
995 @@ -0,0 +1,120 @@
996 +/*
997 + * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
998 + *
999 + * This program is free software; you can redistribute it and/or modify
1000 + * it under the terms of the GNU General Public License version 2 as
1001 + * published by the Free Software Foundation.
1002 + */
1003 +#include <linux/netdevice.h>
1004 +#include <linux/types.h>
1005 +#include <linux/skbuff.h>
1006 +#include <linux/debugfs.h>
1007 +#include <linux/ieee80211.h>
1008 +#include <net/mac80211.h>
1009 +#include "rc80211_minstrel.h"
1010 +#include "rc80211_minstrel_ht.h"
1011 +
1012 +extern const struct mcs_group minstrel_mcs_groups[];
1013 +
1014 +static int
1015 +minstrel_ht_stats_open(struct inode *inode, struct file *file)
1016 +{
1017 + struct minstrel_ht_sta_priv *msp = inode->i_private;
1018 + struct minstrel_ht_sta *mi = &msp->ht;
1019 + struct minstrel_debugfs_info *ms;
1020 + unsigned int i, j, tp, prob, eprob;
1021 + char *p;
1022 + int ret;
1023 +
1024 + if (!msp->is_ht) {
1025 + inode->i_private = &msp->legacy;
1026 + ret = minstrel_stats_open(inode, file);
1027 + inode->i_private = msp;
1028 + return ret;
1029 + }
1030 +
1031 + ms = kmalloc(sizeof(*ms) + 8192, GFP_KERNEL);
1032 + if (!ms)
1033 + return -ENOMEM;
1034 +
1035 + file->private_data = ms;
1036 + p = ms->buf;
1037 + p += sprintf(p, "type rate throughput ewma prob this prob "
1038 + "this succ/attempt success attempts\n");
1039 + for (i = 0; i < MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS; i++) {
1040 + char htmode = '2';
1041 + char gimode = 'L';
1042 +
1043 + if (!mi->groups[i].supported)
1044 + continue;
1045 +
1046 + if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
1047 + htmode = '4';
1048 + if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_SHORT_GI)
1049 + gimode = 'S';
1050 +
1051 + for (j = 0; j < MCS_GROUP_RATES; j++) {
1052 + struct minstrel_rate_stats *mr = &mi->groups[i].rates[j];
1053 + int idx = i * MCS_GROUP_RATES + j;
1054 +
1055 + if (!mi->groups[i].supported & BIT(j))
1056 + continue;
1057 +
1058 + p += sprintf(p, "HT%c0/%cGI ", htmode, gimode);
1059 +
1060 + *(p++) = (idx == mi->max_tp_rate) ? 'T' : ' ';
1061 + *(p++) = (idx == mi->max_tp_rate2) ? 't' : ' ';
1062 + *(p++) = (idx == mi->max_prob_rate) ? 'P' : ' ';
1063 + p += sprintf(p, "MCS%-2u", (minstrel_mcs_groups[i].streams - 1) *
1064 + MCS_GROUP_RATES + j);
1065 +
1066 + tp = mr->cur_tp / 10;
1067 + prob = MINSTREL_TRUNC(mr->cur_prob * 1000);
1068 + eprob = MINSTREL_TRUNC(mr->probability * 1000);
1069 +
1070 + p += sprintf(p, " %6u.%1u %6u.%1u %6u.%1u "
1071 + "%3u(%3u) %8llu %8llu\n",
1072 + tp / 10, tp % 10,
1073 + eprob / 10, eprob % 10,
1074 + prob / 10, prob % 10,
1075 + mr->last_success,
1076 + mr->last_attempts,
1077 + (unsigned long long)mr->succ_hist,
1078 + (unsigned long long)mr->att_hist);
1079 + }
1080 + }
1081 + p += sprintf(p, "\nTotal packet count:: ideal %d "
1082 + "lookaround %d\n",
1083 + max(0, (int) mi->total_packets - (int) mi->sample_packets),
1084 + mi->sample_packets);
1085 + p += sprintf(p, "Average A-MPDU length: %d.%d\n",
1086 + MINSTREL_TRUNC(mi->avg_ampdu_len),
1087 + MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
1088 + ms->len = p - ms->buf;
1089 +
1090 + return 0;
1091 +}
1092 +
1093 +static const struct file_operations minstrel_ht_stat_fops = {
1094 + .owner = THIS_MODULE,
1095 + .open = minstrel_ht_stats_open,
1096 + .read = minstrel_stats_read,
1097 + .release = minstrel_stats_release,
1098 +};
1099 +
1100 +void
1101 +minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
1102 +{
1103 + struct minstrel_ht_sta_priv *msp = priv_sta;
1104 +
1105 + msp->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, msp,
1106 + &minstrel_ht_stat_fops);
1107 +}
1108 +
1109 +void
1110 +minstrel_ht_remove_sta_debugfs(void *priv, void *priv_sta)
1111 +{
1112 + struct minstrel_ht_sta_priv *msp = priv_sta;
1113 +
1114 + debugfs_remove(msp->dbg_stats);
1115 +}