]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/mac80211/rc80211_minstrel.c
mac80211: add lowest rate into minstrel's random rate sampling table
[mirror_ubuntu-bionic-kernel.git] / net / mac80211 / rc80211_minstrel.c
CommitLineData
cccf129f
FF
1/*
2 * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
3 *
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 * Based on minstrel.c:
9 * Copyright (C) 2005-2007 Derek Smithies <derek@indranet.co.nz>
10 * Sponsored by Indranet Technologies Ltd
11 *
12 * Based on sample.c:
13 * Copyright (c) 2005 John Bicket
14 * All rights reserved.
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer,
21 * without modification.
22 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
23 * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
24 * redistribution must be conditioned upon including a substantially
25 * similar Disclaimer requirement for further binary redistribution.
26 * 3. Neither the names of the above-listed copyright holders nor the names
27 * of any contributors may be used to endorse or promote products derived
28 * from this software without specific prior written permission.
29 *
30 * Alternatively, this software may be distributed under the terms of the
31 * GNU General Public License ("GPL") version 2 as published by the Free
32 * Software Foundation.
33 *
34 * NO WARRANTY
35 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37 * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
38 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
39 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
40 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
41 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
42 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
43 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
44 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
45 * THE POSSIBILITY OF SUCH DAMAGES.
46 */
47#include <linux/netdevice.h>
48#include <linux/types.h>
49#include <linux/skbuff.h>
50#include <linux/debugfs.h>
51#include <linux/random.h>
52#include <linux/ieee80211.h>
5a0e3ad6 53#include <linux/slab.h>
cccf129f
FF
54#include <net/mac80211.h>
55#include "rate.h"
56#include "rc80211_minstrel.h"
57
cccf129f
FF
58#define SAMPLE_TBL(_mi, _idx, _col) \
59 _mi->sample_table[(_idx * SAMPLE_COLUMNS) + _col]
60
61/* convert mac80211 rate index to local array index */
62static inline int
63rix_to_ndx(struct minstrel_sta_info *mi, int rix)
64{
65 int i = rix;
66 for (i = rix; i >= 0; i--)
67 if (mi->r[i].rix == rix)
68 break;
cccf129f
FF
69 return i;
70}
71
cccf129f
FF
72static void
73minstrel_update_stats(struct minstrel_priv *mp, struct minstrel_sta_info *mi)
74{
75 u32 max_tp = 0, index_max_tp = 0, index_max_tp2 = 0;
76 u32 max_prob = 0, index_max_prob = 0;
77 u32 usecs;
cccf129f
FF
78 int i;
79
cccf129f
FF
80 for (i = 0; i < mi->n_rates; i++) {
81 struct minstrel_rate *mr = &mi->r[i];
82
83 usecs = mr->perfect_tx_time;
84 if (!usecs)
85 usecs = 1000000;
86
1e9c27df
TH
87 if (unlikely(mr->attempts > 0)) {
88 mr->sample_skipped = 0;
c8ca8c2f 89 mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
cccf129f
FF
90 mr->succ_hist += mr->success;
91 mr->att_hist += mr->attempts;
a512d4b5
TH
92 mr->probability = minstrel_ewma(mr->probability,
93 mr->cur_prob,
94 EWMA_LEVEL);
95 mr->cur_tp = mr->probability * (1000000 / usecs);
1e9c27df
TH
96 } else
97 mr->sample_skipped++;
cccf129f
FF
98
99 mr->last_success = mr->success;
100 mr->last_attempts = mr->attempts;
101 mr->success = 0;
102 mr->attempts = 0;
103
104 /* Sample less often below the 10% chance of success.
105 * Sample less often above the 95% chance of success. */
c8ca8c2f
TH
106 if (mr->probability > MINSTREL_FRAC(95, 100) ||
107 mr->probability < MINSTREL_FRAC(10, 100)) {
cccf129f
FF
108 mr->adjusted_retry_count = mr->retry_count >> 1;
109 if (mr->adjusted_retry_count > 2)
110 mr->adjusted_retry_count = 2;
f4a8cd94 111 mr->sample_limit = 4;
cccf129f 112 } else {
f4a8cd94 113 mr->sample_limit = -1;
cccf129f
FF
114 mr->adjusted_retry_count = mr->retry_count;
115 }
116 if (!mr->adjusted_retry_count)
117 mr->adjusted_retry_count = 2;
118 }
119
120 for (i = 0; i < mi->n_rates; i++) {
121 struct minstrel_rate *mr = &mi->r[i];
122 if (max_tp < mr->cur_tp) {
123 index_max_tp = i;
124 max_tp = mr->cur_tp;
125 }
126 if (max_prob < mr->probability) {
127 index_max_prob = i;
128 max_prob = mr->probability;
129 }
130 }
131
132 max_tp = 0;
133 for (i = 0; i < mi->n_rates; i++) {
134 struct minstrel_rate *mr = &mi->r[i];
135
136 if (i == index_max_tp)
137 continue;
138
139 if (max_tp < mr->cur_tp) {
140 index_max_tp2 = i;
141 max_tp = mr->cur_tp;
142 }
143 }
144 mi->max_tp_rate = index_max_tp;
145 mi->max_tp_rate2 = index_max_tp2;
146 mi->max_prob_rate = index_max_prob;
8f157611
TH
147
148 /* Reset update timer */
149 mi->stats_update = jiffies;
cccf129f
FF
150}
151
152static void
153minstrel_tx_status(void *priv, struct ieee80211_supported_band *sband,
154 struct ieee80211_sta *sta, void *priv_sta,
155 struct sk_buff *skb)
156{
8acbcddb 157 struct minstrel_priv *mp = priv;
cccf129f
FF
158 struct minstrel_sta_info *mi = priv_sta;
159 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
e6a9854b
JB
160 struct ieee80211_tx_rate *ar = info->status.rates;
161 int i, ndx;
162 int success;
cccf129f 163
e6a9854b 164 success = !!(info->flags & IEEE80211_TX_STAT_ACK);
cccf129f 165
e6a9854b
JB
166 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
167 if (ar[i].idx < 0)
cccf129f
FF
168 break;
169
e6a9854b 170 ndx = rix_to_ndx(mi, ar[i].idx);
3938b45c
LC
171 if (ndx < 0)
172 continue;
173
e6a9854b 174 mi->r[ndx].attempts += ar[i].count;
cccf129f 175
bfc32e6a 176 if ((i != IEEE80211_TX_MAX_RATES - 1) && (ar[i + 1].idx < 0))
cccf129f
FF
177 mi->r[ndx].success += success;
178 }
179
180 if ((info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) && (i >= 0))
181 mi->sample_count++;
182
183 if (mi->sample_deferred > 0)
184 mi->sample_deferred--;
8acbcddb
JB
185
186 if (time_after(jiffies, mi->stats_update +
187 (mp->update_interval * HZ) / 1000))
188 minstrel_update_stats(mp, mi);
cccf129f
FF
189}
190
191
192static inline unsigned int
193minstrel_get_retry_count(struct minstrel_rate *mr,
194 struct ieee80211_tx_info *info)
195{
196 unsigned int retry = mr->adjusted_retry_count;
197
e6a9854b 198 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
cccf129f 199 retry = max(2U, min(mr->retry_count_rtscts, retry));
e6a9854b 200 else if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
cccf129f
FF
201 retry = max(2U, min(mr->retry_count_cts, retry));
202 return retry;
203}
204
205
206static int
207minstrel_get_next_sample(struct minstrel_sta_info *mi)
208{
209 unsigned int sample_ndx;
8f157611
TH
210 sample_ndx = SAMPLE_TBL(mi, mi->sample_row, mi->sample_column);
211 mi->sample_row++;
f744bf81 212 if ((int) mi->sample_row >= mi->n_rates) {
8f157611 213 mi->sample_row = 0;
cccf129f
FF
214 mi->sample_column++;
215 if (mi->sample_column >= SAMPLE_COLUMNS)
216 mi->sample_column = 0;
217 }
218 return sample_ndx;
219}
220
2df78167 221static void
e6a9854b
JB
222minstrel_get_rate(void *priv, struct ieee80211_sta *sta,
223 void *priv_sta, struct ieee80211_tx_rate_control *txrc)
cccf129f 224{
e6a9854b 225 struct sk_buff *skb = txrc->skb;
cccf129f
FF
226 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
227 struct minstrel_sta_info *mi = priv_sta;
228 struct minstrel_priv *mp = priv;
e6a9854b 229 struct ieee80211_tx_rate *ar = info->control.rates;
cccf129f 230 unsigned int ndx, sample_ndx = 0;
8f157611
TH
231 bool mrr_capable;
232 bool indirect_rate_sampling = false;
233 bool rate_sampling = false;
cccf129f
FF
234 int i, delta;
235 int mrr_ndx[3];
8f157611 236 int sampling_ratio;
cccf129f 237
8f157611 238 /* management/no-ack frames do not use rate control */
4c6d4f5c 239 if (rate_control_send_low(sta, priv_sta, txrc))
cccf129f 240 return;
cccf129f 241
8f157611
TH
242 /* check multi-rate-retry capabilities & adjust lookaround_rate */
243 mrr_capable = mp->has_mrr &&
244 !txrc->rts &&
245 !txrc->bss_conf->use_cts_prot;
246 if (mrr_capable)
247 sampling_ratio = mp->lookaround_rate_mrr;
248 else
249 sampling_ratio = mp->lookaround_rate;
cccf129f 250
8f157611 251 /* init rateindex [ndx] with max throughput rate */
cccf129f
FF
252 ndx = mi->max_tp_rate;
253
8f157611 254 /* increase sum packet counter */
cccf129f 255 mi->packet_count++;
8f157611
TH
256
257 delta = (mi->packet_count * sampling_ratio / 100) -
cccf129f
FF
258 (mi->sample_count + mi->sample_deferred / 2);
259
260 /* delta > 0: sampling required */
8f157611 261 if ((delta > 0) && (mrr_capable || !mi->prev_sample)) {
f4a8cd94 262 struct minstrel_rate *msr;
cccf129f
FF
263 if (mi->packet_count >= 10000) {
264 mi->sample_deferred = 0;
265 mi->sample_count = 0;
266 mi->packet_count = 0;
267 } else if (delta > mi->n_rates * 2) {
268 /* With multi-rate retry, not every planned sample
269 * attempt actually gets used, due to the way the retry
270 * chain is set up - [max_tp,sample,prob,lowest] for
271 * sample_rate < max_tp.
272 *
273 * If there's too much sampling backlog and the link
274 * starts getting worse, minstrel would start bursting
275 * out lots of sampling frames, which would result
276 * in a large throughput loss. */
277 mi->sample_count += (delta - mi->n_rates * 2);
278 }
279
8f157611 280 /* get next random rate sample */
cccf129f 281 sample_ndx = minstrel_get_next_sample(mi);
f4a8cd94 282 msr = &mi->r[sample_ndx];
8f157611 283 rate_sampling = true;
cccf129f 284
8f157611 285 /* Decide if direct ( 1st mrr stage) or indirect (2nd mrr stage)
1e9c27df
TH
286 * rate sampling method should be used.
287 * Respect such rates that are not sampled for 20 interations.
288 */
8f157611 289 if (mrr_capable &&
1e9c27df
TH
290 msr->perfect_tx_time > mi->r[ndx].perfect_tx_time &&
291 msr->sample_skipped < 20)
8f157611
TH
292 indirect_rate_sampling = true;
293
294 if (!indirect_rate_sampling) {
f4a8cd94
FF
295 if (msr->sample_limit != 0) {
296 ndx = sample_ndx;
297 mi->sample_count++;
298 if (msr->sample_limit > 0)
299 msr->sample_limit--;
8f157611
TH
300 } else
301 rate_sampling = false;
cccf129f
FF
302 } else {
303 /* Only use IEEE80211_TX_CTL_RATE_CTRL_PROBE to mark
304 * packets that have the sampling rate deferred to the
305 * second MRR stage. Increase the sample counter only
306 * if the deferred sample rate was actually used.
307 * Use the sample_deferred counter to make sure that
308 * the sampling is not done in large bursts */
309 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
310 mi->sample_deferred++;
311 }
312 }
8f157611 313 mi->prev_sample = rate_sampling;
f4a8cd94
FF
314
315 /* If we're not using MRR and the sampling rate already
316 * has a probability of >95%, we shouldn't be attempting
317 * to use it, as this only wastes precious airtime */
8f157611
TH
318 if (!mrr_capable && rate_sampling &&
319 (mi->r[ndx].probability > MINSTREL_FRAC(95, 100)))
f4a8cd94
FF
320 ndx = mi->max_tp_rate;
321
8f157611 322 /* mrr setup for 1st stage */
e6a9854b
JB
323 ar[0].idx = mi->r[ndx].rix;
324 ar[0].count = minstrel_get_retry_count(&mi->r[ndx], info);
cccf129f 325
8f157611
TH
326 /* non mrr setup for 2nd stage */
327 if (!mrr_capable) {
328 if (!rate_sampling)
f4a8cd94 329 ar[0].count = mp->max_retry;
e6a9854b
JB
330 ar[1].idx = mi->lowest_rix;
331 ar[1].count = mp->max_retry;
cccf129f
FF
332 return;
333 }
334
8f157611
TH
335 /* mrr setup for 2nd stage */
336 if (rate_sampling) {
337 if (indirect_rate_sampling)
cccf129f
FF
338 mrr_ndx[0] = sample_ndx;
339 else
340 mrr_ndx[0] = mi->max_tp_rate;
341 } else {
342 mrr_ndx[0] = mi->max_tp_rate2;
343 }
8f157611
TH
344
345 /* mrr setup for 3rd & 4th stage */
cccf129f
FF
346 mrr_ndx[1] = mi->max_prob_rate;
347 mrr_ndx[2] = 0;
e6a9854b
JB
348 for (i = 1; i < 4; i++) {
349 ar[i].idx = mi->r[mrr_ndx[i - 1]].rix;
350 ar[i].count = mi->r[mrr_ndx[i - 1]].adjusted_retry_count;
cccf129f
FF
351 }
352}
353
354
355static void
4ee73f33
MK
356calc_rate_durations(enum ieee80211_band band,
357 struct minstrel_rate *d,
868a5f71 358 struct ieee80211_rate *rate)
cccf129f
FF
359{
360 int erp = !!(rate->flags & IEEE80211_RATE_ERP_G);
361
4ee73f33 362 d->perfect_tx_time = ieee80211_frame_duration(band, 1200,
cccf129f 363 rate->bitrate, erp, 1);
4ee73f33 364 d->ack_time = ieee80211_frame_duration(band, 10,
cccf129f
FF
365 rate->bitrate, erp, 1);
366}
367
368static void
369init_sample_table(struct minstrel_sta_info *mi)
370{
371 unsigned int i, col, new_idx;
cccf129f
FF
372 u8 rnd[8];
373
374 mi->sample_column = 0;
8f157611 375 mi->sample_row = 0;
f744bf81 376 memset(mi->sample_table, 0xff, SAMPLE_COLUMNS * mi->n_rates);
cccf129f
FF
377
378 for (col = 0; col < SAMPLE_COLUMNS; col++) {
f744bf81 379 for (i = 0; i < mi->n_rates; i++) {
cccf129f 380 get_random_bytes(rnd, sizeof(rnd));
f744bf81 381 new_idx = (i + rnd[i & 7]) % mi->n_rates;
cccf129f 382
f744bf81
TH
383 while (SAMPLE_TBL(mi, new_idx, col) != 0xff)
384 new_idx = (new_idx + 1) % mi->n_rates;
cccf129f 385
f744bf81 386 SAMPLE_TBL(mi, new_idx, col) = i;
cccf129f
FF
387 }
388 }
389}
390
391static void
392minstrel_rate_init(void *priv, struct ieee80211_supported_band *sband,
393 struct ieee80211_sta *sta, void *priv_sta)
394{
395 struct minstrel_sta_info *mi = priv_sta;
396 struct minstrel_priv *mp = priv;
d57854bb 397 struct ieee80211_rate *ctl_rate;
cccf129f
FF
398 unsigned int i, n = 0;
399 unsigned int t_slot = 9; /* FIXME: get real slot time */
400
401 mi->lowest_rix = rate_lowest_index(sband, sta);
d57854bb 402 ctl_rate = &sband->bitrates[mi->lowest_rix];
4ee73f33
MK
403 mi->sp_ack_dur = ieee80211_frame_duration(sband->band, 10,
404 ctl_rate->bitrate,
d57854bb 405 !!(ctl_rate->flags & IEEE80211_RATE_ERP_G), 1);
cccf129f
FF
406
407 for (i = 0; i < sband->n_bitrates; i++) {
408 struct minstrel_rate *mr = &mi->r[n];
409 unsigned int tx_time = 0, tx_time_cts = 0, tx_time_rtscts = 0;
410 unsigned int tx_time_single;
411 unsigned int cw = mp->cw_min;
412
413 if (!rate_supported(sta, sband->band, i))
414 continue;
415 n++;
416 memset(mr, 0, sizeof(*mr));
417
418 mr->rix = i;
419 mr->bitrate = sband->bitrates[i].bitrate / 5;
4ee73f33 420 calc_rate_durations(sband->band, mr, &sband->bitrates[i]);
cccf129f
FF
421
422 /* calculate maximum number of retransmissions before
423 * fallback (based on maximum segment size) */
f4a8cd94 424 mr->sample_limit = -1;
cccf129f
FF
425 mr->retry_count = 1;
426 mr->retry_count_cts = 1;
427 mr->retry_count_rtscts = 1;
428 tx_time = mr->perfect_tx_time + mi->sp_ack_dur;
429 do {
430 /* add one retransmission */
431 tx_time_single = mr->ack_time + mr->perfect_tx_time;
432
433 /* contention window */
8fddddff
DH
434 tx_time_single += (t_slot * cw) >> 1;
435 cw = min((cw << 1) | 1, mp->cw_max);
cccf129f
FF
436
437 tx_time += tx_time_single;
438 tx_time_cts += tx_time_single + mi->sp_ack_dur;
439 tx_time_rtscts += tx_time_single + 2 * mi->sp_ack_dur;
440 if ((tx_time_cts < mp->segment_size) &&
441 (mr->retry_count_cts < mp->max_retry))
442 mr->retry_count_cts++;
443 if ((tx_time_rtscts < mp->segment_size) &&
444 (mr->retry_count_rtscts < mp->max_retry))
445 mr->retry_count_rtscts++;
446 } while ((tx_time < mp->segment_size) &&
447 (++mr->retry_count < mp->max_retry));
448 mr->adjusted_retry_count = mr->retry_count;
449 }
450
451 for (i = n; i < sband->n_bitrates; i++) {
452 struct minstrel_rate *mr = &mi->r[i];
453 mr->rix = -1;
454 }
455
456 mi->n_rates = n;
457 mi->stats_update = jiffies;
458
459 init_sample_table(mi);
460}
461
462static void *
463minstrel_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
464{
465 struct ieee80211_supported_band *sband;
466 struct minstrel_sta_info *mi;
467 struct minstrel_priv *mp = priv;
468 struct ieee80211_hw *hw = mp->hw;
469 int max_rates = 0;
470 int i;
471
472 mi = kzalloc(sizeof(struct minstrel_sta_info), gfp);
473 if (!mi)
474 return NULL;
475
476 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
8e532175 477 sband = hw->wiphy->bands[i];
621ad7c9 478 if (sband && sband->n_bitrates > max_rates)
cccf129f
FF
479 max_rates = sband->n_bitrates;
480 }
481
482 mi->r = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
483 if (!mi->r)
484 goto error;
485
486 mi->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
487 if (!mi->sample_table)
488 goto error1;
489
490 mi->stats_update = jiffies;
491 return mi;
492
493error1:
494 kfree(mi->r);
495error:
496 kfree(mi);
497 return NULL;
498}
499
500static void
501minstrel_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
502{
503 struct minstrel_sta_info *mi = priv_sta;
504
505 kfree(mi->sample_table);
506 kfree(mi->r);
507 kfree(mi);
508}
509
a0497f9f
FF
510static void
511minstrel_init_cck_rates(struct minstrel_priv *mp)
512{
513 static const int bitrates[4] = { 10, 20, 55, 110 };
514 struct ieee80211_supported_band *sband;
515 int i, j;
516
517 sband = mp->hw->wiphy->bands[IEEE80211_BAND_2GHZ];
518 if (!sband)
519 return;
520
521 for (i = 0, j = 0; i < sband->n_bitrates; i++) {
522 struct ieee80211_rate *rate = &sband->bitrates[i];
523
524 if (rate->flags & IEEE80211_RATE_ERP_G)
525 continue;
526
527 for (j = 0; j < ARRAY_SIZE(bitrates); j++) {
528 if (rate->bitrate != bitrates[j])
529 continue;
530
531 mp->cck_rates[j] = i;
532 break;
533 }
534 }
535}
536
cccf129f
FF
537static void *
538minstrel_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
539{
540 struct minstrel_priv *mp;
541
542 mp = kzalloc(sizeof(struct minstrel_priv), GFP_ATOMIC);
543 if (!mp)
544 return NULL;
545
546 /* contention window settings
547 * Just an approximation. Using the per-queue values would complicate
548 * the calculations and is probably unnecessary */
549 mp->cw_min = 15;
550 mp->cw_max = 1023;
551
552 /* number of packets (in %) to use for sampling other rates
553 * sample less often for non-mrr packets, because the overhead
554 * is much higher than with mrr */
555 mp->lookaround_rate = 5;
556 mp->lookaround_rate_mrr = 10;
557
cccf129f
FF
558 /* maximum time that the hw is allowed to stay in one MRR segment */
559 mp->segment_size = 6000;
560
e6a9854b
JB
561 if (hw->max_rate_tries > 0)
562 mp->max_retry = hw->max_rate_tries;
cccf129f
FF
563 else
564 /* safe default, does not necessarily have to match hw properties */
565 mp->max_retry = 7;
566
e6a9854b 567 if (hw->max_rates >= 4)
cccf129f
FF
568 mp->has_mrr = true;
569
570 mp->hw = hw;
571 mp->update_interval = 100;
572
24f7580e
ZK
573#ifdef CONFIG_MAC80211_DEBUGFS
574 mp->fixed_rate_idx = (u32) -1;
575 mp->dbg_fixed_rate = debugfs_create_u32("fixed_rate_idx",
576 S_IRUGO | S_IWUGO, debugfsdir, &mp->fixed_rate_idx);
577#endif
578
a0497f9f
FF
579 minstrel_init_cck_rates(mp);
580
cccf129f
FF
581 return mp;
582}
583
584static void
585minstrel_free(void *priv)
586{
24f7580e
ZK
587#ifdef CONFIG_MAC80211_DEBUGFS
588 debugfs_remove(((struct minstrel_priv *)priv)->dbg_fixed_rate);
589#endif
cccf129f
FF
590 kfree(priv);
591}
592
eae44756 593struct rate_control_ops mac80211_minstrel = {
cccf129f
FF
594 .name = "minstrel",
595 .tx_status = minstrel_tx_status,
596 .get_rate = minstrel_get_rate,
597 .rate_init = minstrel_rate_init,
cccf129f
FF
598 .alloc = minstrel_alloc,
599 .free = minstrel_free,
600 .alloc_sta = minstrel_alloc_sta,
601 .free_sta = minstrel_free_sta,
602#ifdef CONFIG_MAC80211_DEBUGFS
603 .add_sta_debugfs = minstrel_add_sta_debugfs,
604 .remove_sta_debugfs = minstrel_remove_sta_debugfs,
605#endif
606};
607
608int __init
609rc80211_minstrel_init(void)
610{
611 return ieee80211_rate_control_register(&mac80211_minstrel);
612}
613
614void
615rc80211_minstrel_exit(void)
616{
617 ieee80211_rate_control_unregister(&mac80211_minstrel);
618}
619