blob: 0b5cdd94d4f08b60e3e43f62e014a85d12ab2ea4 [file] [log] [blame]
Felix Fietkauec8aa662010-05-13 16:48:03 +02001/*
Felix Fietkaua0497f92013-02-13 10:51:08 +01002 * Copyright (C) 2010-2013 Felix Fietkau <nbd@openwrt.org>
Felix Fietkauec8aa662010-05-13 16:48:03 +02003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8#include <linux/netdevice.h>
9#include <linux/types.h>
10#include <linux/skbuff.h>
11#include <linux/debugfs.h>
12#include <linux/random.h>
13#include <linux/ieee80211.h>
14#include <net/mac80211.h>
15#include "rate.h"
16#include "rc80211_minstrel.h"
17#include "rc80211_minstrel_ht.h"
18
19#define AVG_PKT_SIZE 1200
20#define SAMPLE_COLUMNS 10
21#define EWMA_LEVEL 75
22
23/* Number of bits for an average sized packet */
24#define MCS_NBITS (AVG_PKT_SIZE << 3)
25
26/* Number of symbols for a packet with (bps) bits per symbol */
27#define MCS_NSYMS(bps) ((MCS_NBITS + (bps) - 1) / (bps))
28
Felix Fietkaued97a132013-03-02 21:20:12 +010029/* Transmission time (nanoseconds) for a packet containing (syms) symbols */
Felix Fietkauec8aa662010-05-13 16:48:03 +020030#define MCS_SYMBOL_TIME(sgi, syms) \
31 (sgi ? \
Felix Fietkaued97a132013-03-02 21:20:12 +010032 ((syms) * 18000 + 4000) / 5 : /* syms * 3.6 us */ \
33 ((syms) * 1000) << 2 /* syms * 4 us */ \
Felix Fietkauec8aa662010-05-13 16:48:03 +020034 )
35
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)))
38
Helmut Schaaa5f69d942011-11-14 15:28:20 +010039/*
40 * Define group sort order: HT40 -> SGI -> #streams
41 */
42#define GROUP_IDX(_streams, _sgi, _ht40) \
43 MINSTREL_MAX_STREAMS * 2 * _ht40 + \
44 MINSTREL_MAX_STREAMS * _sgi + \
45 _streams - 1
46
Felix Fietkauec8aa662010-05-13 16:48:03 +020047/* MCS rate information for an MCS group */
Helmut Schaaa5f69d942011-11-14 15:28:20 +010048#define MCS_GROUP(_streams, _sgi, _ht40) \
49 [GROUP_IDX(_streams, _sgi, _ht40)] = { \
Felix Fietkauec8aa662010-05-13 16:48:03 +020050 .streams = _streams, \
51 .flags = \
52 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
53 (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
54 .duration = { \
55 MCS_DURATION(_streams, _sgi, _ht40 ? 54 : 26), \
56 MCS_DURATION(_streams, _sgi, _ht40 ? 108 : 52), \
57 MCS_DURATION(_streams, _sgi, _ht40 ? 162 : 78), \
58 MCS_DURATION(_streams, _sgi, _ht40 ? 216 : 104), \
59 MCS_DURATION(_streams, _sgi, _ht40 ? 324 : 156), \
60 MCS_DURATION(_streams, _sgi, _ht40 ? 432 : 208), \
61 MCS_DURATION(_streams, _sgi, _ht40 ? 486 : 234), \
62 MCS_DURATION(_streams, _sgi, _ht40 ? 540 : 260) \
63 } \
64}
65
Felix Fietkaua0497f92013-02-13 10:51:08 +010066#define CCK_DURATION(_bitrate, _short, _len) \
Felix Fietkaued97a132013-03-02 21:20:12 +010067 (1000 * (10 /* SIFS */ + \
Felix Fietkaua0497f92013-02-13 10:51:08 +010068 (_short ? 72 + 24 : 144 + 48 ) + \
Felix Fietkaued97a132013-03-02 21:20:12 +010069 (8 * (_len + 4) * 10) / (_bitrate)))
Felix Fietkaua0497f92013-02-13 10:51:08 +010070
71#define CCK_ACK_DURATION(_bitrate, _short) \
72 (CCK_DURATION((_bitrate > 10 ? 20 : 10), false, 60) + \
73 CCK_DURATION(_bitrate, _short, AVG_PKT_SIZE))
74
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)
80
81#define CCK_GROUP \
82 [MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS] = { \
83 .streams = 0, \
84 .duration = { \
85 CCK_DURATION_LIST(false), \
86 CCK_DURATION_LIST(true) \
87 } \
88 }
89
Felix Fietkauec8aa662010-05-13 16:48:03 +020090/*
91 * To enable sufficiently targeted rate sampling, MCS rates are divided into
92 * groups, based on the number of streams and flags (HT40, SGI) that they
93 * use.
Helmut Schaaa5f69d942011-11-14 15:28:20 +010094 *
95 * Sortorder has to be fixed for GROUP_IDX macro to be applicable:
96 * HT40 -> SGI -> #streams
Felix Fietkauec8aa662010-05-13 16:48:03 +020097 */
98const struct mcs_group minstrel_mcs_groups[] = {
99 MCS_GROUP(1, 0, 0),
100 MCS_GROUP(2, 0, 0),
101#if MINSTREL_MAX_STREAMS >= 3
102 MCS_GROUP(3, 0, 0),
103#endif
104
105 MCS_GROUP(1, 1, 0),
106 MCS_GROUP(2, 1, 0),
107#if MINSTREL_MAX_STREAMS >= 3
108 MCS_GROUP(3, 1, 0),
109#endif
110
111 MCS_GROUP(1, 0, 1),
112 MCS_GROUP(2, 0, 1),
113#if MINSTREL_MAX_STREAMS >= 3
114 MCS_GROUP(3, 0, 1),
115#endif
116
117 MCS_GROUP(1, 1, 1),
118 MCS_GROUP(2, 1, 1),
119#if MINSTREL_MAX_STREAMS >= 3
120 MCS_GROUP(3, 1, 1),
121#endif
Felix Fietkaua0497f92013-02-13 10:51:08 +0100122
123 /* must be last */
124 CCK_GROUP
Felix Fietkauec8aa662010-05-13 16:48:03 +0200125};
126
Felix Fietkaua0497f92013-02-13 10:51:08 +0100127#define MINSTREL_CCK_GROUP (ARRAY_SIZE(minstrel_mcs_groups) - 1)
128
Felix Fietkauec8aa662010-05-13 16:48:03 +0200129static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES];
130
131/*
132 * Perform EWMA (Exponentially Weighted Moving Average) calculation
133 */
134static int
135minstrel_ewma(int old, int new, int weight)
136{
137 return (new * (100 - weight) + old * weight) / 100;
138}
139
140/*
141 * Look up an MCS group index based on mac80211 rate information
142 */
143static int
144minstrel_ht_get_group_idx(struct ieee80211_tx_rate *rate)
145{
Helmut Schaaa5f69d942011-11-14 15:28:20 +0100146 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));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200149}
150
Felix Fietkaua0497f92013-02-13 10:51:08 +0100151static struct minstrel_rate_stats *
152minstrel_ht_get_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
153 struct ieee80211_tx_rate *rate)
154{
155 int group, idx;
156
157 if (rate->flags & IEEE80211_TX_RC_MCS) {
158 group = minstrel_ht_get_group_idx(rate);
159 idx = rate->idx % MCS_GROUP_RATES;
160 } else {
161 group = MINSTREL_CCK_GROUP;
162
163 for (idx = 0; idx < ARRAY_SIZE(mp->cck_rates); idx++)
164 if (rate->idx == mp->cck_rates[idx])
165 break;
166
167 /* short preamble */
168 if (!(mi->groups[group].supported & BIT(idx)))
169 idx += 4;
170 }
171 return &mi->groups[group].rates[idx];
172}
173
Felix Fietkauec8aa662010-05-13 16:48:03 +0200174static inline struct minstrel_rate_stats *
175minstrel_get_ratestats(struct minstrel_ht_sta *mi, int index)
176{
177 return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES];
178}
179
180
181/*
182 * Recalculate success probabilities and counters for a rate using EWMA
183 */
184static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100185minstrel_calc_rate_ewma(struct minstrel_rate_stats *mr)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200186{
187 if (unlikely(mr->attempts > 0)) {
188 mr->sample_skipped = 0;
189 mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
190 if (!mr->att_hist)
191 mr->probability = mr->cur_prob;
192 else
193 mr->probability = minstrel_ewma(mr->probability,
194 mr->cur_prob, EWMA_LEVEL);
195 mr->att_hist += mr->attempts;
196 mr->succ_hist += mr->success;
197 } else {
198 mr->sample_skipped++;
199 }
200 mr->last_success = mr->success;
201 mr->last_attempts = mr->attempts;
202 mr->success = 0;
203 mr->attempts = 0;
204}
205
206/*
207 * Calculate throughput based on the average A-MPDU length, taking into account
208 * the expected number of retransmissions and their expected length
209 */
210static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100211minstrel_ht_calc_tp(struct minstrel_ht_sta *mi, int group, int rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200212{
213 struct minstrel_rate_stats *mr;
Felix Fietkaued97a132013-03-02 21:20:12 +0100214 unsigned int nsecs = 0;
215 unsigned int tp;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200216
217 mr = &mi->groups[group].rates[rate];
218
219 if (mr->probability < MINSTREL_FRAC(1, 10)) {
220 mr->cur_tp = 0;
221 return;
222 }
223
Felix Fietkaua0497f92013-02-13 10:51:08 +0100224 if (group != MINSTREL_CCK_GROUP)
Felix Fietkaued97a132013-03-02 21:20:12 +0100225 nsecs = 1000 * mi->overhead / MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100226
Felix Fietkaued97a132013-03-02 21:20:12 +0100227 nsecs += minstrel_mcs_groups[group].duration[rate];
228 tp = 1000000 * ((mr->probability * 1000) / nsecs);
229
230 mr->cur_tp = MINSTREL_TRUNC(tp);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200231}
232
233/*
234 * Update rate statistics and select new primary rates
235 *
236 * Rules for rate selection:
237 * - max_prob_rate must use only one stream, as a tradeoff between delivery
238 * probability and throughput during strong fluctuations
239 * - as long as the max prob rate has a probability of more than 3/4, pick
240 * higher throughput rates, even if the probablity is a bit lower
241 */
242static void
243minstrel_ht_update_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
244{
245 struct minstrel_mcs_group_data *mg;
246 struct minstrel_rate_stats *mr;
247 int cur_prob, cur_prob_tp, cur_tp, cur_tp2;
248 int group, i, index;
249
250 if (mi->ampdu_packets > 0) {
251 mi->avg_ampdu_len = minstrel_ewma(mi->avg_ampdu_len,
252 MINSTREL_FRAC(mi->ampdu_len, mi->ampdu_packets), EWMA_LEVEL);
253 mi->ampdu_len = 0;
254 mi->ampdu_packets = 0;
255 }
256
257 mi->sample_slow = 0;
258 mi->sample_count = 0;
259 mi->max_tp_rate = 0;
260 mi->max_tp_rate2 = 0;
261 mi->max_prob_rate = 0;
262
263 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
264 cur_prob = 0;
265 cur_prob_tp = 0;
266 cur_tp = 0;
267 cur_tp2 = 0;
268
269 mg = &mi->groups[group];
270 if (!mg->supported)
271 continue;
272
273 mg->max_tp_rate = 0;
274 mg->max_tp_rate2 = 0;
275 mg->max_prob_rate = 0;
276 mi->sample_count++;
277
278 for (i = 0; i < MCS_GROUP_RATES; i++) {
279 if (!(mg->supported & BIT(i)))
280 continue;
281
282 mr = &mg->rates[i];
283 mr->retry_updated = false;
284 index = MCS_GROUP_RATES * group + i;
Patrick Kelle6048d7632011-11-15 16:44:48 +0100285 minstrel_calc_rate_ewma(mr);
286 minstrel_ht_calc_tp(mi, group, i);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200287
288 if (!mr->cur_tp)
289 continue;
290
Felix Fietkauec8aa662010-05-13 16:48:03 +0200291 if ((mr->cur_tp > cur_prob_tp && mr->probability >
292 MINSTREL_FRAC(3, 4)) || mr->probability > cur_prob) {
293 mg->max_prob_rate = index;
294 cur_prob = mr->probability;
Ming Lei009271f2010-07-01 23:18:42 +0800295 cur_prob_tp = mr->cur_tp;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200296 }
297
298 if (mr->cur_tp > cur_tp) {
299 swap(index, mg->max_tp_rate);
300 cur_tp = mr->cur_tp;
301 mr = minstrel_get_ratestats(mi, index);
302 }
303
304 if (index >= mg->max_tp_rate)
305 continue;
306
307 if (mr->cur_tp > cur_tp2) {
308 mg->max_tp_rate2 = index;
309 cur_tp2 = mr->cur_tp;
310 }
311 }
312 }
313
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300314 /* try to sample up to half of the available rates during each interval */
Felix Fietkauec8aa662010-05-13 16:48:03 +0200315 mi->sample_count *= 4;
316
317 cur_prob = 0;
318 cur_prob_tp = 0;
319 cur_tp = 0;
320 cur_tp2 = 0;
321 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
322 mg = &mi->groups[group];
323 if (!mg->supported)
324 continue;
325
326 mr = minstrel_get_ratestats(mi, mg->max_prob_rate);
327 if (cur_prob_tp < mr->cur_tp &&
328 minstrel_mcs_groups[group].streams == 1) {
329 mi->max_prob_rate = mg->max_prob_rate;
330 cur_prob = mr->cur_prob;
Ming Lei009271f2010-07-01 23:18:42 +0800331 cur_prob_tp = mr->cur_tp;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200332 }
333
334 mr = minstrel_get_ratestats(mi, mg->max_tp_rate);
335 if (cur_tp < mr->cur_tp) {
Lorenzo Bianconi89888e32011-09-24 18:48:26 +0200336 mi->max_tp_rate2 = mi->max_tp_rate;
337 cur_tp2 = cur_tp;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200338 mi->max_tp_rate = mg->max_tp_rate;
339 cur_tp = mr->cur_tp;
340 }
341
342 mr = minstrel_get_ratestats(mi, mg->max_tp_rate2);
343 if (cur_tp2 < mr->cur_tp) {
344 mi->max_tp_rate2 = mg->max_tp_rate2;
345 cur_tp2 = mr->cur_tp;
346 }
347 }
348
349 mi->stats_update = jiffies;
350}
351
352static bool
Felix Fietkaua0497f92013-02-13 10:51:08 +0100353minstrel_ht_txstat_valid(struct minstrel_priv *mp, struct ieee80211_tx_rate *rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200354{
Helmut Schaab79296b2011-11-14 15:28:19 +0100355 if (rate->idx < 0)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200356 return false;
357
Helmut Schaab79296b2011-11-14 15:28:19 +0100358 if (!rate->count)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200359 return false;
360
Felix Fietkaua0497f92013-02-13 10:51:08 +0100361 if (rate->flags & IEEE80211_TX_RC_MCS)
362 return true;
363
364 return rate->idx == mp->cck_rates[0] ||
365 rate->idx == mp->cck_rates[1] ||
366 rate->idx == mp->cck_rates[2] ||
367 rate->idx == mp->cck_rates[3];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200368}
369
370static void
371minstrel_next_sample_idx(struct minstrel_ht_sta *mi)
372{
373 struct minstrel_mcs_group_data *mg;
374
375 for (;;) {
376 mi->sample_group++;
377 mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups);
378 mg = &mi->groups[mi->sample_group];
379
380 if (!mg->supported)
381 continue;
382
383 if (++mg->index >= MCS_GROUP_RATES) {
384 mg->index = 0;
385 if (++mg->column >= ARRAY_SIZE(sample_table))
386 mg->column = 0;
387 }
388 break;
389 }
390}
391
392static void
John W. Linvilled5ece212010-06-24 11:18:38 -0400393minstrel_downgrade_rate(struct minstrel_ht_sta *mi, unsigned int *idx,
394 bool primary)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200395{
396 int group, orig_group;
397
398 orig_group = group = *idx / MCS_GROUP_RATES;
399 while (group > 0) {
400 group--;
401
402 if (!mi->groups[group].supported)
403 continue;
404
405 if (minstrel_mcs_groups[group].streams >
406 minstrel_mcs_groups[orig_group].streams)
407 continue;
408
409 if (primary)
410 *idx = mi->groups[group].max_tp_rate;
411 else
412 *idx = mi->groups[group].max_tp_rate2;
413 break;
414 }
415}
416
417static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100418minstrel_aggr_check(struct ieee80211_sta *pubsta, struct sk_buff *skb)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200419{
420 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
421 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
422 u16 tid;
423
424 if (unlikely(!ieee80211_is_data_qos(hdr->frame_control)))
425 return;
426
427 if (unlikely(skb->protocol == cpu_to_be16(ETH_P_PAE)))
428 return;
429
430 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
Johannes Berga622ab72010-06-10 10:21:39 +0200431 if (likely(sta->ampdu_mlme.tid_tx[tid]))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200432 return;
433
Luis R. Rodriguez48124d12010-11-23 15:05:02 -0800434 if (skb_get_queue_mapping(skb) == IEEE80211_AC_VO)
435 return;
436
Sujith Manoharanbd2ce6e2010-12-15 07:47:10 +0530437 ieee80211_start_tx_ba_session(pubsta, tid, 5000);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200438}
439
440static void
441minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
442 struct ieee80211_sta *sta, void *priv_sta,
443 struct sk_buff *skb)
444{
445 struct minstrel_ht_sta_priv *msp = priv_sta;
446 struct minstrel_ht_sta *mi = &msp->ht;
447 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
448 struct ieee80211_tx_rate *ar = info->status.rates;
449 struct minstrel_rate_stats *rate, *rate2;
450 struct minstrel_priv *mp = priv;
Johannes Berga544ab72012-11-13 21:36:27 +0100451 bool last;
Johannes Berga544ab72012-11-13 21:36:27 +0100452 int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200453
454 if (!msp->is_ht)
455 return mac80211_minstrel.tx_status(priv, sband, sta, &msp->legacy, skb);
456
457 /* This packet was aggregated but doesn't carry status info */
458 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
459 !(info->flags & IEEE80211_TX_STAT_AMPDU))
460 return;
461
Björn Smedman15d46f32010-10-10 22:14:25 +0200462 if (!(info->flags & IEEE80211_TX_STAT_AMPDU)) {
463 info->status.ampdu_ack_len =
464 (info->flags & IEEE80211_TX_STAT_ACK ? 1 : 0);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200465 info->status.ampdu_len = 1;
466 }
467
468 mi->ampdu_packets++;
469 mi->ampdu_len += info->status.ampdu_len;
470
471 if (!mi->sample_wait && !mi->sample_tries && mi->sample_count > 0) {
Felix Fietkauc7317e42010-10-21 02:47:25 +0200472 mi->sample_wait = 16 + 2 * MINSTREL_TRUNC(mi->avg_ampdu_len);
473 mi->sample_tries = 2;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200474 mi->sample_count--;
475 }
476
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800477 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200478 mi->sample_packets += info->status.ampdu_len;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200479
Felix Fietkaua0497f92013-02-13 10:51:08 +0100480 last = !minstrel_ht_txstat_valid(mp, &ar[0]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200481 for (i = 0; !last; i++) {
482 last = (i == IEEE80211_TX_MAX_RATES - 1) ||
Felix Fietkaua0497f92013-02-13 10:51:08 +0100483 !minstrel_ht_txstat_valid(mp, &ar[i + 1]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200484
Felix Fietkaua0497f92013-02-13 10:51:08 +0100485 rate = minstrel_ht_get_stats(mp, mi, &ar[i]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200486
Björn Smedman15d46f32010-10-10 22:14:25 +0200487 if (last)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200488 rate->success += info->status.ampdu_ack_len;
489
490 rate->attempts += ar[i].count * info->status.ampdu_len;
491 }
492
493 /*
494 * check for sudden death of spatial multiplexing,
495 * downgrade to a lower number of streams if necessary.
496 */
497 rate = minstrel_get_ratestats(mi, mi->max_tp_rate);
498 if (rate->attempts > 30 &&
499 MINSTREL_FRAC(rate->success, rate->attempts) <
500 MINSTREL_FRAC(20, 100))
501 minstrel_downgrade_rate(mi, &mi->max_tp_rate, true);
502
503 rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate2);
Ming Leiecc3d5a2010-07-01 23:19:50 +0800504 if (rate2->attempts > 30 &&
505 MINSTREL_FRAC(rate2->success, rate2->attempts) <
Felix Fietkauec8aa662010-05-13 16:48:03 +0200506 MINSTREL_FRAC(20, 100))
507 minstrel_downgrade_rate(mi, &mi->max_tp_rate2, false);
508
509 if (time_after(jiffies, mi->stats_update + (mp->update_interval / 2 * HZ) / 1000)) {
510 minstrel_ht_update_stats(mp, mi);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100511 if (!(info->flags & IEEE80211_TX_CTL_AMPDU) &&
512 mi->max_prob_rate / MCS_GROUP_RATES != MINSTREL_CCK_GROUP)
Patrick Kelle6048d7632011-11-15 16:44:48 +0100513 minstrel_aggr_check(sta, skb);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200514 }
515}
516
517static void
518minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
519 int index)
520{
521 struct minstrel_rate_stats *mr;
522 const struct mcs_group *group;
523 unsigned int tx_time, tx_time_rtscts, tx_time_data;
524 unsigned int cw = mp->cw_min;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700525 unsigned int ctime = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200526 unsigned int t_slot = 9; /* FIXME */
527 unsigned int ampdu_len = MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100528 unsigned int overhead = 0, overhead_rtscts = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200529
530 mr = minstrel_get_ratestats(mi, index);
531 if (mr->probability < MINSTREL_FRAC(1, 10)) {
532 mr->retry_count = 1;
533 mr->retry_count_rtscts = 1;
534 return;
535 }
536
537 mr->retry_count = 2;
538 mr->retry_count_rtscts = 2;
539 mr->retry_updated = true;
540
541 group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
Felix Fietkaued97a132013-03-02 21:20:12 +0100542 tx_time_data = group->duration[index % MCS_GROUP_RATES] * ampdu_len / 1000;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700543
544 /* Contention time for first 2 tries */
545 ctime = (t_slot * cw) >> 1;
546 cw = min((cw << 1) | 1, mp->cw_max);
547 ctime += (t_slot * cw) >> 1;
548 cw = min((cw << 1) | 1, mp->cw_max);
549
Felix Fietkaua0497f92013-02-13 10:51:08 +0100550 if (index / MCS_GROUP_RATES != MINSTREL_CCK_GROUP) {
551 overhead = mi->overhead;
552 overhead_rtscts = mi->overhead_rtscts;
553 }
554
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700555 /* Total TX time for data and Contention after first 2 tries */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100556 tx_time = ctime + 2 * (overhead + tx_time_data);
557 tx_time_rtscts = ctime + 2 * (overhead_rtscts + tx_time_data);
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700558
559 /* See how many more tries we can fit inside segment size */
Felix Fietkauec8aa662010-05-13 16:48:03 +0200560 do {
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700561 /* Contention time for this try */
562 ctime = (t_slot * cw) >> 1;
563 cw = min((cw << 1) | 1, mp->cw_max);
564
565 /* Total TX time after this try */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100566 tx_time += ctime + overhead + tx_time_data;
567 tx_time_rtscts += ctime + overhead_rtscts + tx_time_data;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700568
Felix Fietkauec8aa662010-05-13 16:48:03 +0200569 if (tx_time_rtscts < mp->segment_size)
570 mr->retry_count_rtscts++;
571 } while ((tx_time < mp->segment_size) &&
572 (++mr->retry_count < mp->max_retry));
573}
574
575
576static void
577minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
578 struct ieee80211_tx_rate *rate, int index,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200579 bool sample, bool rtscts)
580{
581 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
582 struct minstrel_rate_stats *mr;
583
584 mr = minstrel_get_ratestats(mi, index);
585 if (!mr->retry_updated)
586 minstrel_calc_retransmit(mp, mi, index);
587
Felix Fietkauc7317e42010-10-21 02:47:25 +0200588 if (sample)
589 rate->count = 1;
590 else if (mr->probability < MINSTREL_FRAC(20, 100))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200591 rate->count = 2;
592 else if (rtscts)
593 rate->count = mr->retry_count_rtscts;
594 else
595 rate->count = mr->retry_count;
596
Felix Fietkaua0497f92013-02-13 10:51:08 +0100597 rate->flags = 0;
Helmut Schaa9d468d22011-03-04 13:31:31 +0100598 if (rtscts)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200599 rate->flags |= IEEE80211_TX_RC_USE_RTS_CTS;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100600
601 if (index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) {
602 rate->idx = mp->cck_rates[index % ARRAY_SIZE(mp->cck_rates)];
603 return;
604 }
605
606 rate->flags |= IEEE80211_TX_RC_MCS | group->flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200607 rate->idx = index % MCS_GROUP_RATES + (group->streams - 1) * MCS_GROUP_RATES;
608}
609
610static inline int
611minstrel_get_duration(int index)
612{
613 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
614 return group->duration[index % MCS_GROUP_RATES];
615}
616
617static int
618minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
619{
620 struct minstrel_rate_stats *mr;
621 struct minstrel_mcs_group_data *mg;
622 int sample_idx = 0;
623
624 if (mi->sample_wait > 0) {
625 mi->sample_wait--;
626 return -1;
627 }
628
629 if (!mi->sample_tries)
630 return -1;
631
632 mi->sample_tries--;
633 mg = &mi->groups[mi->sample_group];
634 sample_idx = sample_table[mg->column][mg->index];
635 mr = &mg->rates[sample_idx];
636 sample_idx += mi->sample_group * MCS_GROUP_RATES;
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800637 minstrel_next_sample_idx(mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200638
639 /*
Helmut Schaaba6fa292012-03-14 13:31:11 +0100640 * Sampling might add some overhead (RTS, no aggregation)
641 * to the frame. Hence, don't use sampling for the currently
642 * used max TP rate.
643 */
644 if (sample_idx == mi->max_tp_rate)
645 return -1;
646 /*
Felix Fietkauec8aa662010-05-13 16:48:03 +0200647 * When not using MRR, do not sample if the probability is already
648 * higher than 95% to avoid wasting airtime
649 */
650 if (!mp->has_mrr && (mr->probability > MINSTREL_FRAC(95, 100)))
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800651 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200652
653 /*
654 * Make sure that lower rates get sampled only occasionally,
655 * if the link is working perfectly.
656 */
657 if (minstrel_get_duration(sample_idx) >
658 minstrel_get_duration(mi->max_tp_rate)) {
Felix Fietkauc7317e42010-10-21 02:47:25 +0200659 if (mr->sample_skipped < 20)
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800660 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200661
662 if (mi->sample_slow++ > 2)
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800663 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200664 }
665
666 return sample_idx;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200667}
668
669static void
Felix Fietkaua0497f92013-02-13 10:51:08 +0100670minstrel_ht_check_cck_shortpreamble(struct minstrel_priv *mp,
671 struct minstrel_ht_sta *mi, bool val)
672{
673 u8 supported = mi->groups[MINSTREL_CCK_GROUP].supported;
674
675 if (!supported || !mi->cck_supported_short)
676 return;
677
678 if (supported & (mi->cck_supported_short << (val * 4)))
679 return;
680
681 supported ^= mi->cck_supported_short | (mi->cck_supported_short << 4);
682 mi->groups[MINSTREL_CCK_GROUP].supported = supported;
683}
684
685static void
Felix Fietkauec8aa662010-05-13 16:48:03 +0200686minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
687 struct ieee80211_tx_rate_control *txrc)
688{
689 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
690 struct ieee80211_tx_rate *ar = info->status.rates;
691 struct minstrel_ht_sta_priv *msp = priv_sta;
692 struct minstrel_ht_sta *mi = &msp->ht;
693 struct minstrel_priv *mp = priv;
694 int sample_idx;
Felix Fietkauc7317e42010-10-21 02:47:25 +0200695 bool sample = false;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200696
697 if (rate_control_send_low(sta, priv_sta, txrc))
698 return;
699
700 if (!msp->is_ht)
701 return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
702
703 info->flags |= mi->tx_flags;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100704 minstrel_ht_check_cck_shortpreamble(mp, mi, txrc->short_preamble);
Helmut Schaa6de062c2011-08-01 11:32:53 +0200705
706 /* Don't use EAPOL frames for sampling on non-mrr hw */
707 if (mp->hw->max_rates == 1 &&
708 txrc->skb->protocol == cpu_to_be16(ETH_P_PAE))
709 sample_idx = -1;
710 else
711 sample_idx = minstrel_get_sample_rate(mp, mi);
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200712
713#ifdef CONFIG_MAC80211_DEBUGFS
714 /* use fixed index if set */
Sylvain Roger Rieunier2a9e6c52012-07-09 19:25:09 +0200715 if (mp->fixed_rate_idx != -1) {
716 mi->max_tp_rate = mp->fixed_rate_idx;
717 mi->max_tp_rate2 = mp->fixed_rate_idx;
718 mi->max_prob_rate = mp->fixed_rate_idx;
719 sample_idx = -1;
720 }
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200721#endif
722
Felix Fietkauec8aa662010-05-13 16:48:03 +0200723 if (sample_idx >= 0) {
Felix Fietkauc7317e42010-10-21 02:47:25 +0200724 sample = true;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200725 minstrel_ht_set_rate(mp, mi, &ar[0], sample_idx,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100726 true, false);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200727 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
728 } else {
729 minstrel_ht_set_rate(mp, mi, &ar[0], mi->max_tp_rate,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100730 false, false);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200731 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200732
Helmut Schaacf28d792011-03-09 10:02:38 +0100733 if (mp->hw->max_rates >= 3) {
734 /*
735 * At least 3 tx rates supported, use
736 * sample_rate -> max_tp_rate -> max_prob_rate for sampling and
737 * max_tp_rate -> max_tp_rate2 -> max_prob_rate by default.
738 */
739 if (sample_idx >= 0)
740 minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100741 false, false);
Helmut Schaacf28d792011-03-09 10:02:38 +0100742 else
743 minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate2,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100744 false, true);
Helmut Schaacf28d792011-03-09 10:02:38 +0100745
746 minstrel_ht_set_rate(mp, mi, &ar[2], mi->max_prob_rate,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100747 false, !sample);
Helmut Schaacf28d792011-03-09 10:02:38 +0100748
749 ar[3].count = 0;
750 ar[3].idx = -1;
751 } else if (mp->hw->max_rates == 2) {
752 /*
753 * Only 2 tx rates supported, use
754 * sample_rate -> max_prob_rate for sampling and
755 * max_tp_rate -> max_prob_rate by default.
756 */
757 minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_prob_rate,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100758 false, !sample);
Helmut Schaacf28d792011-03-09 10:02:38 +0100759
760 ar[2].count = 0;
761 ar[2].idx = -1;
762 } else {
763 /* Not using MRR, only use the first rate */
764 ar[1].count = 0;
765 ar[1].idx = -1;
766 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200767
768 mi->total_packets++;
769
770 /* wraparound */
771 if (mi->total_packets == ~0) {
772 mi->total_packets = 0;
773 mi->sample_packets = 0;
774 }
775}
776
777static void
Felix Fietkaua0497f92013-02-13 10:51:08 +0100778minstrel_ht_update_cck(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
779 struct ieee80211_supported_band *sband,
780 struct ieee80211_sta *sta)
781{
782 int i;
783
784 if (sband->band != IEEE80211_BAND_2GHZ)
785 return;
786
787 mi->cck_supported = 0;
788 mi->cck_supported_short = 0;
789 for (i = 0; i < 4; i++) {
790 if (!rate_supported(sta, sband->band, mp->cck_rates[i]))
791 continue;
792
793 mi->cck_supported |= BIT(i);
794 if (sband->bitrates[i].flags & IEEE80211_RATE_SHORT_PREAMBLE)
795 mi->cck_supported_short |= BIT(i);
796 }
797
798 mi->groups[MINSTREL_CCK_GROUP].supported = mi->cck_supported;
799}
800
801static void
Felix Fietkauec8aa662010-05-13 16:48:03 +0200802minstrel_ht_update_caps(void *priv, struct ieee80211_supported_band *sband,
Johannes Berg64f68e52012-03-28 10:58:37 +0200803 struct ieee80211_sta *sta, void *priv_sta)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200804{
805 struct minstrel_priv *mp = priv;
806 struct minstrel_ht_sta_priv *msp = priv_sta;
807 struct minstrel_ht_sta *mi = &msp->ht;
808 struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200809 u16 sta_cap = sta->ht_cap.cap;
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100810 int n_supported = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200811 int ack_dur;
812 int stbc;
813 int i;
814
815 /* fall back to the old minstrel for legacy stations */
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100816 if (!sta->ht_cap.ht_supported)
817 goto use_legacy;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200818
819 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) !=
Felix Fietkaua0497f92013-02-13 10:51:08 +0100820 MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS + 1);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200821
822 msp->is_ht = true;
823 memset(mi, 0, sizeof(*mi));
824 mi->stats_update = jiffies;
825
Michal Kazior4ee73f32012-04-11 08:47:56 +0200826 ack_dur = ieee80211_frame_duration(sband->band, 10, 60, 1, 1);
827 mi->overhead = ieee80211_frame_duration(sband->band, 0, 60, 1, 1) + ack_dur;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200828 mi->overhead_rtscts = mi->overhead + 2 * ack_dur;
829
830 mi->avg_ampdu_len = MINSTREL_FRAC(1, 1);
831
832 /* When using MRR, sample more on the first attempt, without delay */
833 if (mp->has_mrr) {
834 mi->sample_count = 16;
835 mi->sample_wait = 0;
836 } else {
837 mi->sample_count = 8;
838 mi->sample_wait = 8;
839 }
840 mi->sample_tries = 4;
841
842 stbc = (sta_cap & IEEE80211_HT_CAP_RX_STBC) >>
843 IEEE80211_HT_CAP_RX_STBC_SHIFT;
844 mi->tx_flags |= stbc << IEEE80211_TX_CTL_STBC_SHIFT;
845
846 if (sta_cap & IEEE80211_HT_CAP_LDPC_CODING)
847 mi->tx_flags |= IEEE80211_TX_CTL_LDPC;
848
Felix Fietkauec8aa662010-05-13 16:48:03 +0200849 for (i = 0; i < ARRAY_SIZE(mi->groups); i++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200850 mi->groups[i].supported = 0;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100851 if (i == MINSTREL_CCK_GROUP) {
852 minstrel_ht_update_cck(mp, mi, sband, sta);
853 continue;
854 }
855
Felix Fietkauec8aa662010-05-13 16:48:03 +0200856 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_SHORT_GI) {
Johannes Berge1a0c6b2013-02-07 11:47:44 +0100857 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) {
858 if (!(sta_cap & IEEE80211_HT_CAP_SGI_40))
859 continue;
860 } else {
861 if (!(sta_cap & IEEE80211_HT_CAP_SGI_20))
862 continue;
863 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200864 }
865
Johannes Berge1a0c6b2013-02-07 11:47:44 +0100866 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH &&
867 sta->bandwidth < IEEE80211_STA_RX_BW_40)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200868 continue;
869
Helmut Schaae9219772012-03-09 14:13:45 +0100870 /* Mark MCS > 7 as unsupported if STA is in static SMPS mode */
Johannes Bergaf0ed692013-02-12 14:21:00 +0100871 if (sta->smps_mode == IEEE80211_SMPS_STATIC &&
Helmut Schaae9219772012-03-09 14:13:45 +0100872 minstrel_mcs_groups[i].streams > 1)
873 continue;
874
Felix Fietkauec8aa662010-05-13 16:48:03 +0200875 mi->groups[i].supported =
876 mcs->rx_mask[minstrel_mcs_groups[i].streams - 1];
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100877
878 if (mi->groups[i].supported)
879 n_supported++;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200880 }
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100881
882 if (!n_supported)
883 goto use_legacy;
884
885 return;
886
887use_legacy:
888 msp->is_ht = false;
889 memset(&msp->legacy, 0, sizeof(msp->legacy));
890 msp->legacy.r = msp->ratelist;
891 msp->legacy.sample_table = msp->sample_table;
892 return mac80211_minstrel.rate_init(priv, sband, sta, &msp->legacy);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200893}
894
895static void
896minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband,
897 struct ieee80211_sta *sta, void *priv_sta)
898{
Johannes Berg64f68e52012-03-28 10:58:37 +0200899 minstrel_ht_update_caps(priv, sband, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200900}
901
902static void
903minstrel_ht_rate_update(void *priv, struct ieee80211_supported_band *sband,
904 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berg64f68e52012-03-28 10:58:37 +0200905 u32 changed)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200906{
Johannes Berg64f68e52012-03-28 10:58:37 +0200907 minstrel_ht_update_caps(priv, sband, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200908}
909
910static void *
911minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
912{
913 struct ieee80211_supported_band *sband;
914 struct minstrel_ht_sta_priv *msp;
915 struct minstrel_priv *mp = priv;
916 struct ieee80211_hw *hw = mp->hw;
917 int max_rates = 0;
918 int i;
919
920 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
921 sband = hw->wiphy->bands[i];
922 if (sband && sband->n_bitrates > max_rates)
923 max_rates = sband->n_bitrates;
924 }
925
Thomas Huehn472dd352012-06-29 06:26:27 -0700926 msp = kzalloc(sizeof(*msp), gfp);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200927 if (!msp)
928 return NULL;
929
930 msp->ratelist = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
931 if (!msp->ratelist)
932 goto error;
933
934 msp->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
935 if (!msp->sample_table)
936 goto error1;
937
938 return msp;
939
940error1:
Dan Carpenter7e988012010-07-22 13:14:19 +0200941 kfree(msp->ratelist);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200942error:
943 kfree(msp);
944 return NULL;
945}
946
947static void
948minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
949{
950 struct minstrel_ht_sta_priv *msp = priv_sta;
951
952 kfree(msp->sample_table);
953 kfree(msp->ratelist);
954 kfree(msp);
955}
956
957static void *
958minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
959{
960 return mac80211_minstrel.alloc(hw, debugfsdir);
961}
962
963static void
964minstrel_ht_free(void *priv)
965{
966 mac80211_minstrel.free(priv);
967}
968
969static struct rate_control_ops mac80211_minstrel_ht = {
970 .name = "minstrel_ht",
971 .tx_status = minstrel_ht_tx_status,
972 .get_rate = minstrel_ht_get_rate,
973 .rate_init = minstrel_ht_rate_init,
974 .rate_update = minstrel_ht_rate_update,
975 .alloc_sta = minstrel_ht_alloc_sta,
976 .free_sta = minstrel_ht_free_sta,
977 .alloc = minstrel_ht_alloc,
978 .free = minstrel_ht_free,
979#ifdef CONFIG_MAC80211_DEBUGFS
980 .add_sta_debugfs = minstrel_ht_add_sta_debugfs,
981 .remove_sta_debugfs = minstrel_ht_remove_sta_debugfs,
982#endif
983};
984
985
986static void
987init_sample_table(void)
988{
989 int col, i, new_idx;
990 u8 rnd[MCS_GROUP_RATES];
991
992 memset(sample_table, 0xff, sizeof(sample_table));
993 for (col = 0; col < SAMPLE_COLUMNS; col++) {
994 for (i = 0; i < MCS_GROUP_RATES; i++) {
995 get_random_bytes(rnd, sizeof(rnd));
996 new_idx = (i + rnd[i]) % MCS_GROUP_RATES;
997
998 while (sample_table[col][new_idx] != 0xff)
999 new_idx = (new_idx + 1) % MCS_GROUP_RATES;
1000
1001 sample_table[col][new_idx] = i;
1002 }
1003 }
1004}
1005
1006int __init
1007rc80211_minstrel_ht_init(void)
1008{
1009 init_sample_table();
1010 return ieee80211_rate_control_register(&mac80211_minstrel_ht);
1011}
1012
1013void
1014rc80211_minstrel_ht_exit(void)
1015{
1016 ieee80211_rate_control_unregister(&mac80211_minstrel_ht);
1017}