blob: d2b264d1311d25a337fc267b69f931b996e8e07a [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
Felix Fietkauec8aa662010-05-13 16:48:03 +020020
21/* Number of bits for an average sized packet */
22#define MCS_NBITS (AVG_PKT_SIZE << 3)
23
24/* Number of symbols for a packet with (bps) bits per symbol */
25#define MCS_NSYMS(bps) ((MCS_NBITS + (bps) - 1) / (bps))
26
Felix Fietkaued97a132013-03-02 21:20:12 +010027/* Transmission time (nanoseconds) for a packet containing (syms) symbols */
Felix Fietkauec8aa662010-05-13 16:48:03 +020028#define MCS_SYMBOL_TIME(sgi, syms) \
29 (sgi ? \
Felix Fietkaued97a132013-03-02 21:20:12 +010030 ((syms) * 18000 + 4000) / 5 : /* syms * 3.6 us */ \
31 ((syms) * 1000) << 2 /* syms * 4 us */ \
Felix Fietkauec8aa662010-05-13 16:48:03 +020032 )
33
34/* Transmit duration for the raw data part of an average sized packet */
35#define MCS_DURATION(streams, sgi, bps) MCS_SYMBOL_TIME(sgi, MCS_NSYMS((streams) * (bps)))
36
Helmut Schaaa5f69d942011-11-14 15:28:20 +010037/*
38 * Define group sort order: HT40 -> SGI -> #streams
39 */
40#define GROUP_IDX(_streams, _sgi, _ht40) \
41 MINSTREL_MAX_STREAMS * 2 * _ht40 + \
42 MINSTREL_MAX_STREAMS * _sgi + \
43 _streams - 1
44
Felix Fietkauec8aa662010-05-13 16:48:03 +020045/* MCS rate information for an MCS group */
Helmut Schaaa5f69d942011-11-14 15:28:20 +010046#define MCS_GROUP(_streams, _sgi, _ht40) \
47 [GROUP_IDX(_streams, _sgi, _ht40)] = { \
Felix Fietkauec8aa662010-05-13 16:48:03 +020048 .streams = _streams, \
49 .flags = \
50 (_sgi ? IEEE80211_TX_RC_SHORT_GI : 0) | \
51 (_ht40 ? IEEE80211_TX_RC_40_MHZ_WIDTH : 0), \
52 .duration = { \
53 MCS_DURATION(_streams, _sgi, _ht40 ? 54 : 26), \
54 MCS_DURATION(_streams, _sgi, _ht40 ? 108 : 52), \
55 MCS_DURATION(_streams, _sgi, _ht40 ? 162 : 78), \
56 MCS_DURATION(_streams, _sgi, _ht40 ? 216 : 104), \
57 MCS_DURATION(_streams, _sgi, _ht40 ? 324 : 156), \
58 MCS_DURATION(_streams, _sgi, _ht40 ? 432 : 208), \
59 MCS_DURATION(_streams, _sgi, _ht40 ? 486 : 234), \
60 MCS_DURATION(_streams, _sgi, _ht40 ? 540 : 260) \
61 } \
62}
63
Felix Fietkaua0497f92013-02-13 10:51:08 +010064#define CCK_DURATION(_bitrate, _short, _len) \
Felix Fietkaued97a132013-03-02 21:20:12 +010065 (1000 * (10 /* SIFS */ + \
Felix Fietkaua0497f92013-02-13 10:51:08 +010066 (_short ? 72 + 24 : 144 + 48 ) + \
Felix Fietkaued97a132013-03-02 21:20:12 +010067 (8 * (_len + 4) * 10) / (_bitrate)))
Felix Fietkaua0497f92013-02-13 10:51:08 +010068
69#define CCK_ACK_DURATION(_bitrate, _short) \
70 (CCK_DURATION((_bitrate > 10 ? 20 : 10), false, 60) + \
71 CCK_DURATION(_bitrate, _short, AVG_PKT_SIZE))
72
73#define CCK_DURATION_LIST(_short) \
74 CCK_ACK_DURATION(10, _short), \
75 CCK_ACK_DURATION(20, _short), \
76 CCK_ACK_DURATION(55, _short), \
77 CCK_ACK_DURATION(110, _short)
78
79#define CCK_GROUP \
80 [MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS] = { \
81 .streams = 0, \
82 .duration = { \
83 CCK_DURATION_LIST(false), \
84 CCK_DURATION_LIST(true) \
85 } \
86 }
87
Felix Fietkauec8aa662010-05-13 16:48:03 +020088/*
89 * To enable sufficiently targeted rate sampling, MCS rates are divided into
90 * groups, based on the number of streams and flags (HT40, SGI) that they
91 * use.
Helmut Schaaa5f69d942011-11-14 15:28:20 +010092 *
93 * Sortorder has to be fixed for GROUP_IDX macro to be applicable:
94 * HT40 -> SGI -> #streams
Felix Fietkauec8aa662010-05-13 16:48:03 +020095 */
96const struct mcs_group minstrel_mcs_groups[] = {
97 MCS_GROUP(1, 0, 0),
98 MCS_GROUP(2, 0, 0),
99#if MINSTREL_MAX_STREAMS >= 3
100 MCS_GROUP(3, 0, 0),
101#endif
102
103 MCS_GROUP(1, 1, 0),
104 MCS_GROUP(2, 1, 0),
105#if MINSTREL_MAX_STREAMS >= 3
106 MCS_GROUP(3, 1, 0),
107#endif
108
109 MCS_GROUP(1, 0, 1),
110 MCS_GROUP(2, 0, 1),
111#if MINSTREL_MAX_STREAMS >= 3
112 MCS_GROUP(3, 0, 1),
113#endif
114
115 MCS_GROUP(1, 1, 1),
116 MCS_GROUP(2, 1, 1),
117#if MINSTREL_MAX_STREAMS >= 3
118 MCS_GROUP(3, 1, 1),
119#endif
Felix Fietkaua0497f92013-02-13 10:51:08 +0100120
121 /* must be last */
122 CCK_GROUP
Felix Fietkauec8aa662010-05-13 16:48:03 +0200123};
124
Felix Fietkaua0497f92013-02-13 10:51:08 +0100125#define MINSTREL_CCK_GROUP (ARRAY_SIZE(minstrel_mcs_groups) - 1)
126
Felix Fietkauec8aa662010-05-13 16:48:03 +0200127static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES];
128
129/*
Felix Fietkauec8aa662010-05-13 16:48:03 +0200130 * Look up an MCS group index based on mac80211 rate information
131 */
132static int
133minstrel_ht_get_group_idx(struct ieee80211_tx_rate *rate)
134{
Helmut Schaaa5f69d942011-11-14 15:28:20 +0100135 return GROUP_IDX((rate->idx / MCS_GROUP_RATES) + 1,
136 !!(rate->flags & IEEE80211_TX_RC_SHORT_GI),
137 !!(rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH));
Felix Fietkauec8aa662010-05-13 16:48:03 +0200138}
139
Felix Fietkaua0497f92013-02-13 10:51:08 +0100140static struct minstrel_rate_stats *
141minstrel_ht_get_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
142 struct ieee80211_tx_rate *rate)
143{
144 int group, idx;
145
146 if (rate->flags & IEEE80211_TX_RC_MCS) {
147 group = minstrel_ht_get_group_idx(rate);
148 idx = rate->idx % MCS_GROUP_RATES;
149 } else {
150 group = MINSTREL_CCK_GROUP;
151
152 for (idx = 0; idx < ARRAY_SIZE(mp->cck_rates); idx++)
153 if (rate->idx == mp->cck_rates[idx])
154 break;
155
156 /* short preamble */
157 if (!(mi->groups[group].supported & BIT(idx)))
158 idx += 4;
159 }
160 return &mi->groups[group].rates[idx];
161}
162
Felix Fietkauec8aa662010-05-13 16:48:03 +0200163static inline struct minstrel_rate_stats *
164minstrel_get_ratestats(struct minstrel_ht_sta *mi, int index)
165{
166 return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES];
167}
168
169
170/*
171 * Recalculate success probabilities and counters for a rate using EWMA
172 */
173static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100174minstrel_calc_rate_ewma(struct minstrel_rate_stats *mr)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200175{
176 if (unlikely(mr->attempts > 0)) {
177 mr->sample_skipped = 0;
178 mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
179 if (!mr->att_hist)
180 mr->probability = mr->cur_prob;
181 else
182 mr->probability = minstrel_ewma(mr->probability,
183 mr->cur_prob, EWMA_LEVEL);
184 mr->att_hist += mr->attempts;
185 mr->succ_hist += mr->success;
186 } else {
187 mr->sample_skipped++;
188 }
189 mr->last_success = mr->success;
190 mr->last_attempts = mr->attempts;
191 mr->success = 0;
192 mr->attempts = 0;
193}
194
195/*
196 * Calculate throughput based on the average A-MPDU length, taking into account
197 * the expected number of retransmissions and their expected length
198 */
199static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100200minstrel_ht_calc_tp(struct minstrel_ht_sta *mi, int group, int rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200201{
202 struct minstrel_rate_stats *mr;
Felix Fietkaued97a132013-03-02 21:20:12 +0100203 unsigned int nsecs = 0;
204 unsigned int tp;
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100205 unsigned int prob;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200206
207 mr = &mi->groups[group].rates[rate];
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100208 prob = mr->probability;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200209
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100210 if (prob < MINSTREL_FRAC(1, 10)) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200211 mr->cur_tp = 0;
212 return;
213 }
214
Felix Fietkau3e8b1eb2013-03-16 17:00:25 +0100215 /*
216 * For the throughput calculation, limit the probability value to 90% to
217 * account for collision related packet error rate fluctuation
218 */
219 if (prob > MINSTREL_FRAC(9, 10))
220 prob = MINSTREL_FRAC(9, 10);
221
Felix Fietkaua0497f92013-02-13 10:51:08 +0100222 if (group != MINSTREL_CCK_GROUP)
Felix Fietkaued97a132013-03-02 21:20:12 +0100223 nsecs = 1000 * mi->overhead / MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100224
Felix Fietkaued97a132013-03-02 21:20:12 +0100225 nsecs += minstrel_mcs_groups[group].duration[rate];
226 tp = 1000000 * ((mr->probability * 1000) / nsecs);
227
228 mr->cur_tp = MINSTREL_TRUNC(tp);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200229}
230
231/*
232 * Update rate statistics and select new primary rates
233 *
234 * Rules for rate selection:
235 * - max_prob_rate must use only one stream, as a tradeoff between delivery
236 * probability and throughput during strong fluctuations
237 * - as long as the max prob rate has a probability of more than 3/4, pick
238 * higher throughput rates, even if the probablity is a bit lower
239 */
240static void
241minstrel_ht_update_stats(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
242{
243 struct minstrel_mcs_group_data *mg;
244 struct minstrel_rate_stats *mr;
245 int cur_prob, cur_prob_tp, cur_tp, cur_tp2;
246 int group, i, index;
247
248 if (mi->ampdu_packets > 0) {
249 mi->avg_ampdu_len = minstrel_ewma(mi->avg_ampdu_len,
250 MINSTREL_FRAC(mi->ampdu_len, mi->ampdu_packets), EWMA_LEVEL);
251 mi->ampdu_len = 0;
252 mi->ampdu_packets = 0;
253 }
254
255 mi->sample_slow = 0;
256 mi->sample_count = 0;
257 mi->max_tp_rate = 0;
258 mi->max_tp_rate2 = 0;
259 mi->max_prob_rate = 0;
260
261 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
262 cur_prob = 0;
263 cur_prob_tp = 0;
264 cur_tp = 0;
265 cur_tp2 = 0;
266
267 mg = &mi->groups[group];
268 if (!mg->supported)
269 continue;
270
271 mg->max_tp_rate = 0;
272 mg->max_tp_rate2 = 0;
273 mg->max_prob_rate = 0;
274 mi->sample_count++;
275
276 for (i = 0; i < MCS_GROUP_RATES; i++) {
277 if (!(mg->supported & BIT(i)))
278 continue;
279
280 mr = &mg->rates[i];
281 mr->retry_updated = false;
282 index = MCS_GROUP_RATES * group + i;
Patrick Kelle6048d7632011-11-15 16:44:48 +0100283 minstrel_calc_rate_ewma(mr);
284 minstrel_ht_calc_tp(mi, group, i);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200285
286 if (!mr->cur_tp)
287 continue;
288
Felix Fietkauec8aa662010-05-13 16:48:03 +0200289 if ((mr->cur_tp > cur_prob_tp && mr->probability >
290 MINSTREL_FRAC(3, 4)) || mr->probability > cur_prob) {
291 mg->max_prob_rate = index;
292 cur_prob = mr->probability;
Ming Lei009271f2010-07-01 23:18:42 +0800293 cur_prob_tp = mr->cur_tp;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200294 }
295
296 if (mr->cur_tp > cur_tp) {
297 swap(index, mg->max_tp_rate);
298 cur_tp = mr->cur_tp;
299 mr = minstrel_get_ratestats(mi, index);
300 }
301
302 if (index >= mg->max_tp_rate)
303 continue;
304
305 if (mr->cur_tp > cur_tp2) {
306 mg->max_tp_rate2 = index;
307 cur_tp2 = mr->cur_tp;
308 }
309 }
310 }
311
Felix Fietkau96d4ac32013-03-02 21:20:14 +0100312 /* try to sample all available rates during each interval */
313 mi->sample_count *= 8;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200314
315 cur_prob = 0;
316 cur_prob_tp = 0;
317 cur_tp = 0;
318 cur_tp2 = 0;
319 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
320 mg = &mi->groups[group];
321 if (!mg->supported)
322 continue;
323
Felix Fietkauec8aa662010-05-13 16:48:03 +0200324 mr = minstrel_get_ratestats(mi, mg->max_tp_rate);
325 if (cur_tp < mr->cur_tp) {
Lorenzo Bianconi89888e32011-09-24 18:48:26 +0200326 mi->max_tp_rate2 = mi->max_tp_rate;
327 cur_tp2 = cur_tp;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200328 mi->max_tp_rate = mg->max_tp_rate;
329 cur_tp = mr->cur_tp;
Felix Fietkau965237a2013-03-03 12:49:51 +0100330 mi->max_prob_streams = minstrel_mcs_groups[group].streams - 1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200331 }
332
333 mr = minstrel_get_ratestats(mi, mg->max_tp_rate2);
334 if (cur_tp2 < mr->cur_tp) {
335 mi->max_tp_rate2 = mg->max_tp_rate2;
336 cur_tp2 = mr->cur_tp;
337 }
338 }
339
Felix Fietkau965237a2013-03-03 12:49:51 +0100340 if (mi->max_prob_streams < 1)
341 mi->max_prob_streams = 1;
Felix Fietkaua299c6d2013-03-02 21:20:13 +0100342
343 for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups); group++) {
344 mg = &mi->groups[group];
345 if (!mg->supported)
346 continue;
347 mr = minstrel_get_ratestats(mi, mg->max_prob_rate);
348 if (cur_prob_tp < mr->cur_tp &&
Felix Fietkau965237a2013-03-03 12:49:51 +0100349 minstrel_mcs_groups[group].streams <= mi->max_prob_streams) {
Felix Fietkaua299c6d2013-03-02 21:20:13 +0100350 mi->max_prob_rate = mg->max_prob_rate;
351 cur_prob = mr->cur_prob;
352 cur_prob_tp = mr->cur_tp;
353 }
354 }
355
356
Felix Fietkauec8aa662010-05-13 16:48:03 +0200357 mi->stats_update = jiffies;
358}
359
360static bool
Felix Fietkaua0497f92013-02-13 10:51:08 +0100361minstrel_ht_txstat_valid(struct minstrel_priv *mp, struct ieee80211_tx_rate *rate)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200362{
Helmut Schaab79296b2011-11-14 15:28:19 +0100363 if (rate->idx < 0)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200364 return false;
365
Helmut Schaab79296b2011-11-14 15:28:19 +0100366 if (!rate->count)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200367 return false;
368
Felix Fietkaua0497f92013-02-13 10:51:08 +0100369 if (rate->flags & IEEE80211_TX_RC_MCS)
370 return true;
371
372 return rate->idx == mp->cck_rates[0] ||
373 rate->idx == mp->cck_rates[1] ||
374 rate->idx == mp->cck_rates[2] ||
375 rate->idx == mp->cck_rates[3];
Felix Fietkauec8aa662010-05-13 16:48:03 +0200376}
377
378static void
379minstrel_next_sample_idx(struct minstrel_ht_sta *mi)
380{
381 struct minstrel_mcs_group_data *mg;
382
383 for (;;) {
384 mi->sample_group++;
385 mi->sample_group %= ARRAY_SIZE(minstrel_mcs_groups);
386 mg = &mi->groups[mi->sample_group];
387
388 if (!mg->supported)
389 continue;
390
391 if (++mg->index >= MCS_GROUP_RATES) {
392 mg->index = 0;
393 if (++mg->column >= ARRAY_SIZE(sample_table))
394 mg->column = 0;
395 }
396 break;
397 }
398}
399
400static void
John W. Linvilled5ece212010-06-24 11:18:38 -0400401minstrel_downgrade_rate(struct minstrel_ht_sta *mi, unsigned int *idx,
402 bool primary)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200403{
404 int group, orig_group;
405
406 orig_group = group = *idx / MCS_GROUP_RATES;
407 while (group > 0) {
408 group--;
409
410 if (!mi->groups[group].supported)
411 continue;
412
413 if (minstrel_mcs_groups[group].streams >
414 minstrel_mcs_groups[orig_group].streams)
415 continue;
416
417 if (primary)
418 *idx = mi->groups[group].max_tp_rate;
419 else
420 *idx = mi->groups[group].max_tp_rate2;
421 break;
422 }
423}
424
425static void
Patrick Kelle6048d7632011-11-15 16:44:48 +0100426minstrel_aggr_check(struct ieee80211_sta *pubsta, struct sk_buff *skb)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200427{
428 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
429 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
430 u16 tid;
431
432 if (unlikely(!ieee80211_is_data_qos(hdr->frame_control)))
433 return;
434
435 if (unlikely(skb->protocol == cpu_to_be16(ETH_P_PAE)))
436 return;
437
438 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
Johannes Berga622ab72010-06-10 10:21:39 +0200439 if (likely(sta->ampdu_mlme.tid_tx[tid]))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200440 return;
441
Luis R. Rodriguez48124d12010-11-23 15:05:02 -0800442 if (skb_get_queue_mapping(skb) == IEEE80211_AC_VO)
443 return;
444
Sujith Manoharanbd2ce6e2010-12-15 07:47:10 +0530445 ieee80211_start_tx_ba_session(pubsta, tid, 5000);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200446}
447
448static void
449minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
450 struct ieee80211_sta *sta, void *priv_sta,
451 struct sk_buff *skb)
452{
453 struct minstrel_ht_sta_priv *msp = priv_sta;
454 struct minstrel_ht_sta *mi = &msp->ht;
455 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
456 struct ieee80211_tx_rate *ar = info->status.rates;
457 struct minstrel_rate_stats *rate, *rate2;
458 struct minstrel_priv *mp = priv;
Johannes Berga544ab72012-11-13 21:36:27 +0100459 bool last;
Johannes Berga544ab72012-11-13 21:36:27 +0100460 int i;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200461
462 if (!msp->is_ht)
463 return mac80211_minstrel.tx_status(priv, sband, sta, &msp->legacy, skb);
464
465 /* This packet was aggregated but doesn't carry status info */
466 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
467 !(info->flags & IEEE80211_TX_STAT_AMPDU))
468 return;
469
Björn Smedman15d46f32010-10-10 22:14:25 +0200470 if (!(info->flags & IEEE80211_TX_STAT_AMPDU)) {
471 info->status.ampdu_ack_len =
472 (info->flags & IEEE80211_TX_STAT_ACK ? 1 : 0);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200473 info->status.ampdu_len = 1;
474 }
475
476 mi->ampdu_packets++;
477 mi->ampdu_len += info->status.ampdu_len;
478
479 if (!mi->sample_wait && !mi->sample_tries && mi->sample_count > 0) {
Felix Fietkauc7317e42010-10-21 02:47:25 +0200480 mi->sample_wait = 16 + 2 * MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkau52c00a32013-03-05 14:20:19 +0100481 mi->sample_tries = 1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200482 mi->sample_count--;
483 }
484
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800485 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200486 mi->sample_packets += info->status.ampdu_len;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200487
Felix Fietkaua0497f92013-02-13 10:51:08 +0100488 last = !minstrel_ht_txstat_valid(mp, &ar[0]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200489 for (i = 0; !last; i++) {
490 last = (i == IEEE80211_TX_MAX_RATES - 1) ||
Felix Fietkaua0497f92013-02-13 10:51:08 +0100491 !minstrel_ht_txstat_valid(mp, &ar[i + 1]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200492
Felix Fietkaua0497f92013-02-13 10:51:08 +0100493 rate = minstrel_ht_get_stats(mp, mi, &ar[i]);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200494
Björn Smedman15d46f32010-10-10 22:14:25 +0200495 if (last)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200496 rate->success += info->status.ampdu_ack_len;
497
498 rate->attempts += ar[i].count * info->status.ampdu_len;
499 }
500
501 /*
502 * check for sudden death of spatial multiplexing,
503 * downgrade to a lower number of streams if necessary.
504 */
505 rate = minstrel_get_ratestats(mi, mi->max_tp_rate);
506 if (rate->attempts > 30 &&
507 MINSTREL_FRAC(rate->success, rate->attempts) <
508 MINSTREL_FRAC(20, 100))
509 minstrel_downgrade_rate(mi, &mi->max_tp_rate, true);
510
511 rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate2);
Ming Leiecc3d5a2010-07-01 23:19:50 +0800512 if (rate2->attempts > 30 &&
513 MINSTREL_FRAC(rate2->success, rate2->attempts) <
Felix Fietkauec8aa662010-05-13 16:48:03 +0200514 MINSTREL_FRAC(20, 100))
515 minstrel_downgrade_rate(mi, &mi->max_tp_rate2, false);
516
517 if (time_after(jiffies, mi->stats_update + (mp->update_interval / 2 * HZ) / 1000)) {
518 minstrel_ht_update_stats(mp, mi);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100519 if (!(info->flags & IEEE80211_TX_CTL_AMPDU) &&
520 mi->max_prob_rate / MCS_GROUP_RATES != MINSTREL_CCK_GROUP)
Patrick Kelle6048d7632011-11-15 16:44:48 +0100521 minstrel_aggr_check(sta, skb);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200522 }
523}
524
525static void
526minstrel_calc_retransmit(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
527 int index)
528{
529 struct minstrel_rate_stats *mr;
530 const struct mcs_group *group;
531 unsigned int tx_time, tx_time_rtscts, tx_time_data;
532 unsigned int cw = mp->cw_min;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700533 unsigned int ctime = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200534 unsigned int t_slot = 9; /* FIXME */
535 unsigned int ampdu_len = MINSTREL_TRUNC(mi->avg_ampdu_len);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100536 unsigned int overhead = 0, overhead_rtscts = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200537
538 mr = minstrel_get_ratestats(mi, index);
539 if (mr->probability < MINSTREL_FRAC(1, 10)) {
540 mr->retry_count = 1;
541 mr->retry_count_rtscts = 1;
542 return;
543 }
544
545 mr->retry_count = 2;
546 mr->retry_count_rtscts = 2;
547 mr->retry_updated = true;
548
549 group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
Felix Fietkaued97a132013-03-02 21:20:12 +0100550 tx_time_data = group->duration[index % MCS_GROUP_RATES] * ampdu_len / 1000;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700551
552 /* Contention time for first 2 tries */
553 ctime = (t_slot * cw) >> 1;
554 cw = min((cw << 1) | 1, mp->cw_max);
555 ctime += (t_slot * cw) >> 1;
556 cw = min((cw << 1) | 1, mp->cw_max);
557
Felix Fietkaua0497f92013-02-13 10:51:08 +0100558 if (index / MCS_GROUP_RATES != MINSTREL_CCK_GROUP) {
559 overhead = mi->overhead;
560 overhead_rtscts = mi->overhead_rtscts;
561 }
562
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700563 /* Total TX time for data and Contention after first 2 tries */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100564 tx_time = ctime + 2 * (overhead + tx_time_data);
565 tx_time_rtscts = ctime + 2 * (overhead_rtscts + tx_time_data);
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700566
567 /* See how many more tries we can fit inside segment size */
Felix Fietkauec8aa662010-05-13 16:48:03 +0200568 do {
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700569 /* Contention time for this try */
570 ctime = (t_slot * cw) >> 1;
571 cw = min((cw << 1) | 1, mp->cw_max);
572
573 /* Total TX time after this try */
Felix Fietkaua0497f92013-02-13 10:51:08 +0100574 tx_time += ctime + overhead + tx_time_data;
575 tx_time_rtscts += ctime + overhead_rtscts + tx_time_data;
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700576
Felix Fietkauec8aa662010-05-13 16:48:03 +0200577 if (tx_time_rtscts < mp->segment_size)
578 mr->retry_count_rtscts++;
579 } while ((tx_time < mp->segment_size) &&
580 (++mr->retry_count < mp->max_retry));
581}
582
583
584static void
585minstrel_ht_set_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
586 struct ieee80211_tx_rate *rate, int index,
Felix Fietkauec8aa662010-05-13 16:48:03 +0200587 bool sample, bool rtscts)
588{
589 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
590 struct minstrel_rate_stats *mr;
591
592 mr = minstrel_get_ratestats(mi, index);
593 if (!mr->retry_updated)
594 minstrel_calc_retransmit(mp, mi, index);
595
Felix Fietkauc7317e42010-10-21 02:47:25 +0200596 if (sample)
597 rate->count = 1;
598 else if (mr->probability < MINSTREL_FRAC(20, 100))
Felix Fietkauec8aa662010-05-13 16:48:03 +0200599 rate->count = 2;
600 else if (rtscts)
601 rate->count = mr->retry_count_rtscts;
602 else
603 rate->count = mr->retry_count;
604
Felix Fietkaua0497f92013-02-13 10:51:08 +0100605 rate->flags = 0;
Helmut Schaa9d468d22011-03-04 13:31:31 +0100606 if (rtscts)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200607 rate->flags |= IEEE80211_TX_RC_USE_RTS_CTS;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100608
609 if (index / MCS_GROUP_RATES == MINSTREL_CCK_GROUP) {
610 rate->idx = mp->cck_rates[index % ARRAY_SIZE(mp->cck_rates)];
611 return;
612 }
613
614 rate->flags |= IEEE80211_TX_RC_MCS | group->flags;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200615 rate->idx = index % MCS_GROUP_RATES + (group->streams - 1) * MCS_GROUP_RATES;
616}
617
618static inline int
619minstrel_get_duration(int index)
620{
621 const struct mcs_group *group = &minstrel_mcs_groups[index / MCS_GROUP_RATES];
622 return group->duration[index % MCS_GROUP_RATES];
623}
624
625static int
626minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
627{
628 struct minstrel_rate_stats *mr;
629 struct minstrel_mcs_group_data *mg;
Felix Fietkau965237a2013-03-03 12:49:51 +0100630 unsigned int sample_dur, sample_group;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200631 int sample_idx = 0;
632
633 if (mi->sample_wait > 0) {
634 mi->sample_wait--;
635 return -1;
636 }
637
638 if (!mi->sample_tries)
639 return -1;
640
Felix Fietkauec8aa662010-05-13 16:48:03 +0200641 mg = &mi->groups[mi->sample_group];
642 sample_idx = sample_table[mg->column][mg->index];
643 mr = &mg->rates[sample_idx];
Felix Fietkau965237a2013-03-03 12:49:51 +0100644 sample_group = mi->sample_group;
645 sample_idx += sample_group * MCS_GROUP_RATES;
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800646 minstrel_next_sample_idx(mi);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200647
648 /*
Helmut Schaaba6fa292012-03-14 13:31:11 +0100649 * Sampling might add some overhead (RTS, no aggregation)
650 * to the frame. Hence, don't use sampling for the currently
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100651 * used rates.
Helmut Schaaba6fa292012-03-14 13:31:11 +0100652 */
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100653 if (sample_idx == mi->max_tp_rate ||
654 sample_idx == mi->max_tp_rate2 ||
655 sample_idx == mi->max_prob_rate)
Helmut Schaaba6fa292012-03-14 13:31:11 +0100656 return -1;
Felix Fietkaua0ca7962013-03-16 17:00:27 +0100657
Helmut Schaaba6fa292012-03-14 13:31:11 +0100658 /*
Felix Fietkaubc96f242013-03-16 17:00:26 +0100659 * Do not sample if the probability is already higher than 95%
660 * to avoid wasting airtime.
Felix Fietkauec8aa662010-05-13 16:48:03 +0200661 */
Felix Fietkaubc96f242013-03-16 17:00:26 +0100662 if (mr->probability > MINSTREL_FRAC(95, 100))
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800663 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200664
665 /*
666 * Make sure that lower rates get sampled only occasionally,
667 * if the link is working perfectly.
668 */
Felix Fietkau965237a2013-03-03 12:49:51 +0100669 sample_dur = minstrel_get_duration(sample_idx);
670 if (sample_dur >= minstrel_get_duration(mi->max_tp_rate2) &&
671 (mi->max_prob_streams <
672 minstrel_mcs_groups[sample_group].streams ||
673 sample_dur >= minstrel_get_duration(mi->max_prob_rate))) {
Felix Fietkauc7317e42010-10-21 02:47:25 +0200674 if (mr->sample_skipped < 20)
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800675 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200676
677 if (mi->sample_slow++ > 2)
Daniel Halperin8d5eab52011-03-09 03:10:18 -0800678 return -1;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200679 }
Felix Fietkau098b8af2013-03-03 12:49:52 +0100680 mi->sample_tries--;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200681
682 return sample_idx;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200683}
684
685static void
Felix Fietkaua0497f92013-02-13 10:51:08 +0100686minstrel_ht_check_cck_shortpreamble(struct minstrel_priv *mp,
687 struct minstrel_ht_sta *mi, bool val)
688{
689 u8 supported = mi->groups[MINSTREL_CCK_GROUP].supported;
690
691 if (!supported || !mi->cck_supported_short)
692 return;
693
694 if (supported & (mi->cck_supported_short << (val * 4)))
695 return;
696
697 supported ^= mi->cck_supported_short | (mi->cck_supported_short << 4);
698 mi->groups[MINSTREL_CCK_GROUP].supported = supported;
699}
700
701static void
Felix Fietkauec8aa662010-05-13 16:48:03 +0200702minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
703 struct ieee80211_tx_rate_control *txrc)
704{
705 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
706 struct ieee80211_tx_rate *ar = info->status.rates;
707 struct minstrel_ht_sta_priv *msp = priv_sta;
708 struct minstrel_ht_sta *mi = &msp->ht;
709 struct minstrel_priv *mp = priv;
710 int sample_idx;
Felix Fietkauc7317e42010-10-21 02:47:25 +0200711 bool sample = false;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200712
713 if (rate_control_send_low(sta, priv_sta, txrc))
714 return;
715
716 if (!msp->is_ht)
717 return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
718
719 info->flags |= mi->tx_flags;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100720 minstrel_ht_check_cck_shortpreamble(mp, mi, txrc->short_preamble);
Helmut Schaa6de062c2011-08-01 11:32:53 +0200721
722 /* Don't use EAPOL frames for sampling on non-mrr hw */
723 if (mp->hw->max_rates == 1 &&
724 txrc->skb->protocol == cpu_to_be16(ETH_P_PAE))
725 sample_idx = -1;
726 else
727 sample_idx = minstrel_get_sample_rate(mp, mi);
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200728
729#ifdef CONFIG_MAC80211_DEBUGFS
730 /* use fixed index if set */
Sylvain Roger Rieunier2a9e6c52012-07-09 19:25:09 +0200731 if (mp->fixed_rate_idx != -1) {
732 mi->max_tp_rate = mp->fixed_rate_idx;
733 mi->max_tp_rate2 = mp->fixed_rate_idx;
734 mi->max_prob_rate = mp->fixed_rate_idx;
735 sample_idx = -1;
736 }
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200737#endif
738
Felix Fietkauec8aa662010-05-13 16:48:03 +0200739 if (sample_idx >= 0) {
Felix Fietkauc7317e42010-10-21 02:47:25 +0200740 sample = true;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200741 minstrel_ht_set_rate(mp, mi, &ar[0], sample_idx,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100742 true, false);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200743 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
744 } else {
745 minstrel_ht_set_rate(mp, mi, &ar[0], mi->max_tp_rate,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100746 false, false);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200747 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200748
Helmut Schaacf28d792011-03-09 10:02:38 +0100749 if (mp->hw->max_rates >= 3) {
750 /*
751 * At least 3 tx rates supported, use
752 * sample_rate -> max_tp_rate -> max_prob_rate for sampling and
753 * max_tp_rate -> max_tp_rate2 -> max_prob_rate by default.
754 */
755 if (sample_idx >= 0)
756 minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100757 false, false);
Helmut Schaacf28d792011-03-09 10:02:38 +0100758 else
759 minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate2,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100760 false, true);
Helmut Schaacf28d792011-03-09 10:02:38 +0100761
762 minstrel_ht_set_rate(mp, mi, &ar[2], mi->max_prob_rate,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100763 false, !sample);
Helmut Schaacf28d792011-03-09 10:02:38 +0100764
765 ar[3].count = 0;
766 ar[3].idx = -1;
767 } else if (mp->hw->max_rates == 2) {
768 /*
769 * Only 2 tx rates supported, use
770 * sample_rate -> max_prob_rate for sampling and
771 * max_tp_rate -> max_prob_rate by default.
772 */
773 minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_prob_rate,
Patrick Kelle6048d7632011-11-15 16:44:48 +0100774 false, !sample);
Helmut Schaacf28d792011-03-09 10:02:38 +0100775
776 ar[2].count = 0;
777 ar[2].idx = -1;
778 } else {
779 /* Not using MRR, only use the first rate */
780 ar[1].count = 0;
781 ar[1].idx = -1;
782 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200783
784 mi->total_packets++;
785
786 /* wraparound */
787 if (mi->total_packets == ~0) {
788 mi->total_packets = 0;
789 mi->sample_packets = 0;
790 }
791}
792
793static void
Felix Fietkaua0497f92013-02-13 10:51:08 +0100794minstrel_ht_update_cck(struct minstrel_priv *mp, struct minstrel_ht_sta *mi,
795 struct ieee80211_supported_band *sband,
796 struct ieee80211_sta *sta)
797{
798 int i;
799
800 if (sband->band != IEEE80211_BAND_2GHZ)
801 return;
802
803 mi->cck_supported = 0;
804 mi->cck_supported_short = 0;
805 for (i = 0; i < 4; i++) {
806 if (!rate_supported(sta, sband->band, mp->cck_rates[i]))
807 continue;
808
809 mi->cck_supported |= BIT(i);
810 if (sband->bitrates[i].flags & IEEE80211_RATE_SHORT_PREAMBLE)
811 mi->cck_supported_short |= BIT(i);
812 }
813
814 mi->groups[MINSTREL_CCK_GROUP].supported = mi->cck_supported;
815}
816
817static void
Felix Fietkauec8aa662010-05-13 16:48:03 +0200818minstrel_ht_update_caps(void *priv, struct ieee80211_supported_band *sband,
Johannes Berg64f68e52012-03-28 10:58:37 +0200819 struct ieee80211_sta *sta, void *priv_sta)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200820{
821 struct minstrel_priv *mp = priv;
822 struct minstrel_ht_sta_priv *msp = priv_sta;
823 struct minstrel_ht_sta *mi = &msp->ht;
824 struct ieee80211_mcs_info *mcs = &sta->ht_cap.mcs;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200825 u16 sta_cap = sta->ht_cap.cap;
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100826 int n_supported = 0;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200827 int ack_dur;
828 int stbc;
829 int i;
830
831 /* fall back to the old minstrel for legacy stations */
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100832 if (!sta->ht_cap.ht_supported)
833 goto use_legacy;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200834
835 BUILD_BUG_ON(ARRAY_SIZE(minstrel_mcs_groups) !=
Felix Fietkaua0497f92013-02-13 10:51:08 +0100836 MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS + 1);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200837
838 msp->is_ht = true;
839 memset(mi, 0, sizeof(*mi));
840 mi->stats_update = jiffies;
841
Michal Kazior4ee73f32012-04-11 08:47:56 +0200842 ack_dur = ieee80211_frame_duration(sband->band, 10, 60, 1, 1);
843 mi->overhead = ieee80211_frame_duration(sband->band, 0, 60, 1, 1) + ack_dur;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200844 mi->overhead_rtscts = mi->overhead + 2 * ack_dur;
845
846 mi->avg_ampdu_len = MINSTREL_FRAC(1, 1);
847
848 /* When using MRR, sample more on the first attempt, without delay */
849 if (mp->has_mrr) {
850 mi->sample_count = 16;
851 mi->sample_wait = 0;
852 } else {
853 mi->sample_count = 8;
854 mi->sample_wait = 8;
855 }
856 mi->sample_tries = 4;
857
858 stbc = (sta_cap & IEEE80211_HT_CAP_RX_STBC) >>
859 IEEE80211_HT_CAP_RX_STBC_SHIFT;
860 mi->tx_flags |= stbc << IEEE80211_TX_CTL_STBC_SHIFT;
861
862 if (sta_cap & IEEE80211_HT_CAP_LDPC_CODING)
863 mi->tx_flags |= IEEE80211_TX_CTL_LDPC;
864
Felix Fietkauec8aa662010-05-13 16:48:03 +0200865 for (i = 0; i < ARRAY_SIZE(mi->groups); i++) {
Felix Fietkauec8aa662010-05-13 16:48:03 +0200866 mi->groups[i].supported = 0;
Felix Fietkaua0497f92013-02-13 10:51:08 +0100867 if (i == MINSTREL_CCK_GROUP) {
868 minstrel_ht_update_cck(mp, mi, sband, sta);
869 continue;
870 }
871
Felix Fietkauec8aa662010-05-13 16:48:03 +0200872 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_SHORT_GI) {
Johannes Berge1a0c6b2013-02-07 11:47:44 +0100873 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) {
874 if (!(sta_cap & IEEE80211_HT_CAP_SGI_40))
875 continue;
876 } else {
877 if (!(sta_cap & IEEE80211_HT_CAP_SGI_20))
878 continue;
879 }
Felix Fietkauec8aa662010-05-13 16:48:03 +0200880 }
881
Johannes Berge1a0c6b2013-02-07 11:47:44 +0100882 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH &&
883 sta->bandwidth < IEEE80211_STA_RX_BW_40)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200884 continue;
885
Helmut Schaae9219772012-03-09 14:13:45 +0100886 /* Mark MCS > 7 as unsupported if STA is in static SMPS mode */
Johannes Bergaf0ed692013-02-12 14:21:00 +0100887 if (sta->smps_mode == IEEE80211_SMPS_STATIC &&
Helmut Schaae9219772012-03-09 14:13:45 +0100888 minstrel_mcs_groups[i].streams > 1)
889 continue;
890
Felix Fietkauec8aa662010-05-13 16:48:03 +0200891 mi->groups[i].supported =
892 mcs->rx_mask[minstrel_mcs_groups[i].streams - 1];
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100893
894 if (mi->groups[i].supported)
895 n_supported++;
Felix Fietkauec8aa662010-05-13 16:48:03 +0200896 }
Felix Fietkau4dc217d2011-03-25 15:30:38 +0100897
898 if (!n_supported)
899 goto use_legacy;
900
901 return;
902
903use_legacy:
904 msp->is_ht = false;
905 memset(&msp->legacy, 0, sizeof(msp->legacy));
906 msp->legacy.r = msp->ratelist;
907 msp->legacy.sample_table = msp->sample_table;
908 return mac80211_minstrel.rate_init(priv, sband, sta, &msp->legacy);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200909}
910
911static void
912minstrel_ht_rate_init(void *priv, struct ieee80211_supported_band *sband,
913 struct ieee80211_sta *sta, void *priv_sta)
914{
Johannes Berg64f68e52012-03-28 10:58:37 +0200915 minstrel_ht_update_caps(priv, sband, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200916}
917
918static void
919minstrel_ht_rate_update(void *priv, struct ieee80211_supported_band *sband,
920 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berg64f68e52012-03-28 10:58:37 +0200921 u32 changed)
Felix Fietkauec8aa662010-05-13 16:48:03 +0200922{
Johannes Berg64f68e52012-03-28 10:58:37 +0200923 minstrel_ht_update_caps(priv, sband, sta, priv_sta);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200924}
925
926static void *
927minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
928{
929 struct ieee80211_supported_band *sband;
930 struct minstrel_ht_sta_priv *msp;
931 struct minstrel_priv *mp = priv;
932 struct ieee80211_hw *hw = mp->hw;
933 int max_rates = 0;
934 int i;
935
936 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
937 sband = hw->wiphy->bands[i];
938 if (sband && sband->n_bitrates > max_rates)
939 max_rates = sband->n_bitrates;
940 }
941
Thomas Huehn472dd352012-06-29 06:26:27 -0700942 msp = kzalloc(sizeof(*msp), gfp);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200943 if (!msp)
944 return NULL;
945
946 msp->ratelist = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
947 if (!msp->ratelist)
948 goto error;
949
950 msp->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
951 if (!msp->sample_table)
952 goto error1;
953
954 return msp;
955
956error1:
Dan Carpenter7e988012010-07-22 13:14:19 +0200957 kfree(msp->ratelist);
Felix Fietkauec8aa662010-05-13 16:48:03 +0200958error:
959 kfree(msp);
960 return NULL;
961}
962
963static void
964minstrel_ht_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
965{
966 struct minstrel_ht_sta_priv *msp = priv_sta;
967
968 kfree(msp->sample_table);
969 kfree(msp->ratelist);
970 kfree(msp);
971}
972
973static void *
974minstrel_ht_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
975{
976 return mac80211_minstrel.alloc(hw, debugfsdir);
977}
978
979static void
980minstrel_ht_free(void *priv)
981{
982 mac80211_minstrel.free(priv);
983}
984
985static struct rate_control_ops mac80211_minstrel_ht = {
986 .name = "minstrel_ht",
987 .tx_status = minstrel_ht_tx_status,
988 .get_rate = minstrel_ht_get_rate,
989 .rate_init = minstrel_ht_rate_init,
990 .rate_update = minstrel_ht_rate_update,
991 .alloc_sta = minstrel_ht_alloc_sta,
992 .free_sta = minstrel_ht_free_sta,
993 .alloc = minstrel_ht_alloc,
994 .free = minstrel_ht_free,
995#ifdef CONFIG_MAC80211_DEBUGFS
996 .add_sta_debugfs = minstrel_ht_add_sta_debugfs,
997 .remove_sta_debugfs = minstrel_ht_remove_sta_debugfs,
998#endif
999};
1000
1001
1002static void
1003init_sample_table(void)
1004{
1005 int col, i, new_idx;
1006 u8 rnd[MCS_GROUP_RATES];
1007
1008 memset(sample_table, 0xff, sizeof(sample_table));
1009 for (col = 0; col < SAMPLE_COLUMNS; col++) {
1010 for (i = 0; i < MCS_GROUP_RATES; i++) {
1011 get_random_bytes(rnd, sizeof(rnd));
1012 new_idx = (i + rnd[i]) % MCS_GROUP_RATES;
1013
1014 while (sample_table[col][new_idx] != 0xff)
1015 new_idx = (new_idx + 1) % MCS_GROUP_RATES;
1016
1017 sample_table[col][new_idx] = i;
1018 }
1019 }
1020}
1021
1022int __init
1023rc80211_minstrel_ht_init(void)
1024{
1025 init_sample_table();
1026 return ieee80211_rate_control_register(&mac80211_minstrel_ht);
1027}
1028
1029void
1030rc80211_minstrel_ht_exit(void)
1031{
1032 ieee80211_rate_control_unregister(&mac80211_minstrel_ht);
1033}