blob: 37771abd8f5a5bcd85d9d94fa558f0e69649defb [file] [log] [blame]
Felix Fietkaucccf1292008-10-05 18:07:45 +02001/*
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>
53#include <net/mac80211.h>
54#include "rate.h"
55#include "rc80211_minstrel.h"
56
57#define SAMPLE_COLUMNS 10
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;
Luciano Coelho3938b452009-07-03 08:25:08 +030069 WARN_ON(i < 0);
Felix Fietkaucccf1292008-10-05 18:07:45 +020070 return i;
71}
72
73static inline bool
74use_low_rate(struct sk_buff *skb)
75{
76 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
77 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
78 u16 fc;
79
80 fc = le16_to_cpu(hdr->frame_control);
81
82 return ((info->flags & IEEE80211_TX_CTL_NO_ACK) ||
Gábor Stefanik4edf0402009-04-23 19:36:00 +020083 (fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA);
Felix Fietkaucccf1292008-10-05 18:07:45 +020084}
85
86
87static void
88minstrel_update_stats(struct minstrel_priv *mp, struct minstrel_sta_info *mi)
89{
90 u32 max_tp = 0, index_max_tp = 0, index_max_tp2 = 0;
91 u32 max_prob = 0, index_max_prob = 0;
92 u32 usecs;
93 u32 p;
94 int i;
95
96 mi->stats_update = jiffies;
97 for (i = 0; i < mi->n_rates; i++) {
98 struct minstrel_rate *mr = &mi->r[i];
99
100 usecs = mr->perfect_tx_time;
101 if (!usecs)
102 usecs = 1000000;
103
104 /* To avoid rounding issues, probabilities scale from 0 (0%)
105 * to 18000 (100%) */
106 if (mr->attempts) {
107 p = (mr->success * 18000) / mr->attempts;
108 mr->succ_hist += mr->success;
109 mr->att_hist += mr->attempts;
110 mr->cur_prob = p;
111 p = ((p * (100 - mp->ewma_level)) + (mr->probability *
112 mp->ewma_level)) / 100;
113 mr->probability = p;
114 mr->cur_tp = p * (1000000 / usecs);
115 }
116
117 mr->last_success = mr->success;
118 mr->last_attempts = mr->attempts;
119 mr->success = 0;
120 mr->attempts = 0;
121
122 /* Sample less often below the 10% chance of success.
123 * Sample less often above the 95% chance of success. */
124 if ((mr->probability > 17100) || (mr->probability < 1800)) {
125 mr->adjusted_retry_count = mr->retry_count >> 1;
126 if (mr->adjusted_retry_count > 2)
127 mr->adjusted_retry_count = 2;
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200128 mr->sample_limit = 4;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200129 } else {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200130 mr->sample_limit = -1;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200131 mr->adjusted_retry_count = mr->retry_count;
132 }
133 if (!mr->adjusted_retry_count)
134 mr->adjusted_retry_count = 2;
135 }
136
137 for (i = 0; i < mi->n_rates; i++) {
138 struct minstrel_rate *mr = &mi->r[i];
139 if (max_tp < mr->cur_tp) {
140 index_max_tp = i;
141 max_tp = mr->cur_tp;
142 }
143 if (max_prob < mr->probability) {
144 index_max_prob = i;
145 max_prob = mr->probability;
146 }
147 }
148
149 max_tp = 0;
150 for (i = 0; i < mi->n_rates; i++) {
151 struct minstrel_rate *mr = &mi->r[i];
152
153 if (i == index_max_tp)
154 continue;
155
156 if (max_tp < mr->cur_tp) {
157 index_max_tp2 = i;
158 max_tp = mr->cur_tp;
159 }
160 }
161 mi->max_tp_rate = index_max_tp;
162 mi->max_tp_rate2 = index_max_tp2;
163 mi->max_prob_rate = index_max_prob;
164}
165
166static void
167minstrel_tx_status(void *priv, struct ieee80211_supported_band *sband,
168 struct ieee80211_sta *sta, void *priv_sta,
169 struct sk_buff *skb)
170{
171 struct minstrel_sta_info *mi = priv_sta;
172 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200173 struct ieee80211_tx_rate *ar = info->status.rates;
174 int i, ndx;
175 int success;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200176
Johannes Berge6a98542008-10-21 12:40:02 +0200177 success = !!(info->flags & IEEE80211_TX_STAT_ACK);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200178
Johannes Berge6a98542008-10-21 12:40:02 +0200179 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
180 if (ar[i].idx < 0)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200181 break;
182
Johannes Berge6a98542008-10-21 12:40:02 +0200183 ndx = rix_to_ndx(mi, ar[i].idx);
Luciano Coelho3938b452009-07-03 08:25:08 +0300184 if (ndx < 0)
185 continue;
186
Johannes Berge6a98542008-10-21 12:40:02 +0200187 mi->r[ndx].attempts += ar[i].count;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200188
Johannes Berge6a98542008-10-21 12:40:02 +0200189 if ((i != IEEE80211_TX_MAX_RATES - 1) && (ar[i + 1].idx < 0))
Felix Fietkaucccf1292008-10-05 18:07:45 +0200190 mi->r[ndx].success += success;
191 }
192
193 if ((info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) && (i >= 0))
194 mi->sample_count++;
195
196 if (mi->sample_deferred > 0)
197 mi->sample_deferred--;
198}
199
200
201static inline unsigned int
202minstrel_get_retry_count(struct minstrel_rate *mr,
203 struct ieee80211_tx_info *info)
204{
205 unsigned int retry = mr->adjusted_retry_count;
206
Johannes Berge6a98542008-10-21 12:40:02 +0200207 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200208 retry = max(2U, min(mr->retry_count_rtscts, retry));
Johannes Berge6a98542008-10-21 12:40:02 +0200209 else if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200210 retry = max(2U, min(mr->retry_count_cts, retry));
211 return retry;
212}
213
214
215static int
216minstrel_get_next_sample(struct minstrel_sta_info *mi)
217{
218 unsigned int sample_ndx;
219 sample_ndx = SAMPLE_TBL(mi, mi->sample_idx, mi->sample_column);
220 mi->sample_idx++;
Bob Copeland5ee58d72009-06-05 08:21:50 -0400221 if ((int) mi->sample_idx > (mi->n_rates - 2)) {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200222 mi->sample_idx = 0;
223 mi->sample_column++;
224 if (mi->sample_column >= SAMPLE_COLUMNS)
225 mi->sample_column = 0;
226 }
227 return sample_ndx;
228}
229
Johannes Berg2df78162008-10-28 16:49:41 +0100230static void
Johannes Berge6a98542008-10-21 12:40:02 +0200231minstrel_get_rate(void *priv, struct ieee80211_sta *sta,
232 void *priv_sta, struct ieee80211_tx_rate_control *txrc)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200233{
Johannes Berge6a98542008-10-21 12:40:02 +0200234 struct sk_buff *skb = txrc->skb;
235 struct ieee80211_supported_band *sband = txrc->sband;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200236 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
237 struct minstrel_sta_info *mi = priv_sta;
238 struct minstrel_priv *mp = priv;
Johannes Berge6a98542008-10-21 12:40:02 +0200239 struct ieee80211_tx_rate *ar = info->control.rates;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200240 unsigned int ndx, sample_ndx = 0;
241 bool mrr;
242 bool sample_slower = false;
243 bool sample = false;
244 int i, delta;
245 int mrr_ndx[3];
246 int sample_rate;
247
248 if (!sta || !mi || use_low_rate(skb)) {
Johannes Berge6a98542008-10-21 12:40:02 +0200249 ar[0].idx = rate_lowest_index(sband, sta);
Gábor Stefanik4edf0402009-04-23 19:36:00 +0200250 if (info->flags & IEEE80211_TX_CTL_NO_ACK)
251 ar[0].count = 1;
252 else
253 ar[0].count = mp->max_retry;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200254 return;
255 }
256
Johannes Berge6a98542008-10-21 12:40:02 +0200257 mrr = mp->has_mrr && !txrc->rts && !txrc->bss_conf->use_cts_prot;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200258
259 if (time_after(jiffies, mi->stats_update + (mp->update_interval *
260 HZ) / 1000))
261 minstrel_update_stats(mp, mi);
262
263 ndx = mi->max_tp_rate;
264
265 if (mrr)
266 sample_rate = mp->lookaround_rate_mrr;
267 else
268 sample_rate = mp->lookaround_rate;
269
270 mi->packet_count++;
271 delta = (mi->packet_count * sample_rate / 100) -
272 (mi->sample_count + mi->sample_deferred / 2);
273
274 /* delta > 0: sampling required */
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200275 if ((delta > 0) && (mrr || !mi->prev_sample)) {
276 struct minstrel_rate *msr;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200277 if (mi->packet_count >= 10000) {
278 mi->sample_deferred = 0;
279 mi->sample_count = 0;
280 mi->packet_count = 0;
281 } else if (delta > mi->n_rates * 2) {
282 /* With multi-rate retry, not every planned sample
283 * attempt actually gets used, due to the way the retry
284 * chain is set up - [max_tp,sample,prob,lowest] for
285 * sample_rate < max_tp.
286 *
287 * If there's too much sampling backlog and the link
288 * starts getting worse, minstrel would start bursting
289 * out lots of sampling frames, which would result
290 * in a large throughput loss. */
291 mi->sample_count += (delta - mi->n_rates * 2);
292 }
293
294 sample_ndx = minstrel_get_next_sample(mi);
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200295 msr = &mi->r[sample_ndx];
Felix Fietkaucccf1292008-10-05 18:07:45 +0200296 sample = true;
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200297 sample_slower = mrr && (msr->perfect_tx_time >
Felix Fietkaucccf1292008-10-05 18:07:45 +0200298 mi->r[ndx].perfect_tx_time);
299
300 if (!sample_slower) {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200301 if (msr->sample_limit != 0) {
302 ndx = sample_ndx;
303 mi->sample_count++;
304 if (msr->sample_limit > 0)
305 msr->sample_limit--;
306 } else {
307 sample = false;
308 }
Felix Fietkaucccf1292008-10-05 18:07:45 +0200309 } else {
310 /* Only use IEEE80211_TX_CTL_RATE_CTRL_PROBE to mark
311 * packets that have the sampling rate deferred to the
312 * second MRR stage. Increase the sample counter only
313 * if the deferred sample rate was actually used.
314 * Use the sample_deferred counter to make sure that
315 * the sampling is not done in large bursts */
316 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
317 mi->sample_deferred++;
318 }
319 }
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200320 mi->prev_sample = sample;
321
322 /* If we're not using MRR and the sampling rate already
323 * has a probability of >95%, we shouldn't be attempting
324 * to use it, as this only wastes precious airtime */
325 if (!mrr && sample && (mi->r[ndx].probability > 17100))
326 ndx = mi->max_tp_rate;
327
Johannes Berge6a98542008-10-21 12:40:02 +0200328 ar[0].idx = mi->r[ndx].rix;
329 ar[0].count = minstrel_get_retry_count(&mi->r[ndx], info);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200330
331 if (!mrr) {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200332 if (!sample)
333 ar[0].count = mp->max_retry;
Johannes Berge6a98542008-10-21 12:40:02 +0200334 ar[1].idx = mi->lowest_rix;
335 ar[1].count = mp->max_retry;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200336 return;
337 }
338
339 /* MRR setup */
340 if (sample) {
341 if (sample_slower)
342 mrr_ndx[0] = sample_ndx;
343 else
344 mrr_ndx[0] = mi->max_tp_rate;
345 } else {
346 mrr_ndx[0] = mi->max_tp_rate2;
347 }
348 mrr_ndx[1] = mi->max_prob_rate;
349 mrr_ndx[2] = 0;
Johannes Berge6a98542008-10-21 12:40:02 +0200350 for (i = 1; i < 4; i++) {
351 ar[i].idx = mi->r[mrr_ndx[i - 1]].rix;
352 ar[i].count = mi->r[mrr_ndx[i - 1]].adjusted_retry_count;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200353 }
354}
355
356
357static void
358calc_rate_durations(struct minstrel_sta_info *mi, struct ieee80211_local *local,
359 struct minstrel_rate *d, struct ieee80211_rate *rate)
360{
361 int erp = !!(rate->flags & IEEE80211_RATE_ERP_G);
362
363 d->perfect_tx_time = ieee80211_frame_duration(local, 1200,
364 rate->bitrate, erp, 1);
365 d->ack_time = ieee80211_frame_duration(local, 10,
366 rate->bitrate, erp, 1);
367}
368
369static void
370init_sample_table(struct minstrel_sta_info *mi)
371{
372 unsigned int i, col, new_idx;
373 unsigned int n_srates = mi->n_rates - 1;
374 u8 rnd[8];
375
376 mi->sample_column = 0;
377 mi->sample_idx = 0;
378 memset(mi->sample_table, 0, SAMPLE_COLUMNS * mi->n_rates);
379
380 for (col = 0; col < SAMPLE_COLUMNS; col++) {
381 for (i = 0; i < n_srates; i++) {
382 get_random_bytes(rnd, sizeof(rnd));
383 new_idx = (i + rnd[i & 7]) % n_srates;
384
385 while (SAMPLE_TBL(mi, new_idx, col) != 0)
386 new_idx = (new_idx + 1) % n_srates;
387
388 /* Don't sample the slowest rate (i.e. slowest base
389 * rate). We must presume that the slowest rate works
390 * fine, or else other management frames will also be
391 * failing and the link will break */
392 SAMPLE_TBL(mi, new_idx, col) = i + 1;
393 }
394 }
395}
396
397static void
398minstrel_rate_init(void *priv, struct ieee80211_supported_band *sband,
399 struct ieee80211_sta *sta, void *priv_sta)
400{
401 struct minstrel_sta_info *mi = priv_sta;
402 struct minstrel_priv *mp = priv;
Christian Lamparterd57854b2008-12-22 15:35:31 +0100403 struct ieee80211_local *local = hw_to_local(mp->hw);
404 struct ieee80211_rate *ctl_rate;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200405 unsigned int i, n = 0;
406 unsigned int t_slot = 9; /* FIXME: get real slot time */
407
408 mi->lowest_rix = rate_lowest_index(sband, sta);
Christian Lamparterd57854b2008-12-22 15:35:31 +0100409 ctl_rate = &sband->bitrates[mi->lowest_rix];
410 mi->sp_ack_dur = ieee80211_frame_duration(local, 10, ctl_rate->bitrate,
411 !!(ctl_rate->flags & IEEE80211_RATE_ERP_G), 1);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200412
413 for (i = 0; i < sband->n_bitrates; i++) {
414 struct minstrel_rate *mr = &mi->r[n];
415 unsigned int tx_time = 0, tx_time_cts = 0, tx_time_rtscts = 0;
416 unsigned int tx_time_single;
417 unsigned int cw = mp->cw_min;
418
419 if (!rate_supported(sta, sband->band, i))
420 continue;
421 n++;
422 memset(mr, 0, sizeof(*mr));
423
424 mr->rix = i;
425 mr->bitrate = sband->bitrates[i].bitrate / 5;
Christian Lamparterd57854b2008-12-22 15:35:31 +0100426 calc_rate_durations(mi, local, mr,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200427 &sband->bitrates[i]);
428
429 /* calculate maximum number of retransmissions before
430 * fallback (based on maximum segment size) */
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200431 mr->sample_limit = -1;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200432 mr->retry_count = 1;
433 mr->retry_count_cts = 1;
434 mr->retry_count_rtscts = 1;
435 tx_time = mr->perfect_tx_time + mi->sp_ack_dur;
436 do {
437 /* add one retransmission */
438 tx_time_single = mr->ack_time + mr->perfect_tx_time;
439
440 /* contention window */
441 tx_time_single += t_slot + min(cw, mp->cw_max);
442 cw = (cw + 1) << 1;
443
444 tx_time += tx_time_single;
445 tx_time_cts += tx_time_single + mi->sp_ack_dur;
446 tx_time_rtscts += tx_time_single + 2 * mi->sp_ack_dur;
447 if ((tx_time_cts < mp->segment_size) &&
448 (mr->retry_count_cts < mp->max_retry))
449 mr->retry_count_cts++;
450 if ((tx_time_rtscts < mp->segment_size) &&
451 (mr->retry_count_rtscts < mp->max_retry))
452 mr->retry_count_rtscts++;
453 } while ((tx_time < mp->segment_size) &&
454 (++mr->retry_count < mp->max_retry));
455 mr->adjusted_retry_count = mr->retry_count;
456 }
457
458 for (i = n; i < sband->n_bitrates; i++) {
459 struct minstrel_rate *mr = &mi->r[i];
460 mr->rix = -1;
461 }
462
463 mi->n_rates = n;
464 mi->stats_update = jiffies;
465
466 init_sample_table(mi);
467}
468
469static void *
470minstrel_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
471{
472 struct ieee80211_supported_band *sband;
473 struct minstrel_sta_info *mi;
474 struct minstrel_priv *mp = priv;
475 struct ieee80211_hw *hw = mp->hw;
476 int max_rates = 0;
477 int i;
478
479 mi = kzalloc(sizeof(struct minstrel_sta_info), gfp);
480 if (!mi)
481 return NULL;
482
483 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Jiri Slaby8e532172009-05-04 18:04:55 +0200484 sband = hw->wiphy->bands[i];
John W. Linville621ad7c2009-05-05 15:18:26 -0400485 if (sband && sband->n_bitrates > max_rates)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200486 max_rates = sband->n_bitrates;
487 }
488
489 mi->r = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
490 if (!mi->r)
491 goto error;
492
493 mi->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
494 if (!mi->sample_table)
495 goto error1;
496
497 mi->stats_update = jiffies;
498 return mi;
499
500error1:
501 kfree(mi->r);
502error:
503 kfree(mi);
504 return NULL;
505}
506
507static void
508minstrel_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
509{
510 struct minstrel_sta_info *mi = priv_sta;
511
512 kfree(mi->sample_table);
513 kfree(mi->r);
514 kfree(mi);
515}
516
Felix Fietkaucccf1292008-10-05 18:07:45 +0200517static void *
518minstrel_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
519{
520 struct minstrel_priv *mp;
521
522 mp = kzalloc(sizeof(struct minstrel_priv), GFP_ATOMIC);
523 if (!mp)
524 return NULL;
525
526 /* contention window settings
527 * Just an approximation. Using the per-queue values would complicate
528 * the calculations and is probably unnecessary */
529 mp->cw_min = 15;
530 mp->cw_max = 1023;
531
532 /* number of packets (in %) to use for sampling other rates
533 * sample less often for non-mrr packets, because the overhead
534 * is much higher than with mrr */
535 mp->lookaround_rate = 5;
536 mp->lookaround_rate_mrr = 10;
537
538 /* moving average weight for EWMA */
539 mp->ewma_level = 75;
540
541 /* maximum time that the hw is allowed to stay in one MRR segment */
542 mp->segment_size = 6000;
543
Johannes Berge6a98542008-10-21 12:40:02 +0200544 if (hw->max_rate_tries > 0)
545 mp->max_retry = hw->max_rate_tries;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200546 else
547 /* safe default, does not necessarily have to match hw properties */
548 mp->max_retry = 7;
549
Johannes Berge6a98542008-10-21 12:40:02 +0200550 if (hw->max_rates >= 4)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200551 mp->has_mrr = true;
552
553 mp->hw = hw;
554 mp->update_interval = 100;
555
556 return mp;
557}
558
559static void
560minstrel_free(void *priv)
561{
562 kfree(priv);
563}
564
565static struct rate_control_ops mac80211_minstrel = {
566 .name = "minstrel",
567 .tx_status = minstrel_tx_status,
568 .get_rate = minstrel_get_rate,
569 .rate_init = minstrel_rate_init,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200570 .alloc = minstrel_alloc,
571 .free = minstrel_free,
572 .alloc_sta = minstrel_alloc_sta,
573 .free_sta = minstrel_free_sta,
574#ifdef CONFIG_MAC80211_DEBUGFS
575 .add_sta_debugfs = minstrel_add_sta_debugfs,
576 .remove_sta_debugfs = minstrel_remove_sta_debugfs,
577#endif
578};
579
580int __init
581rc80211_minstrel_init(void)
582{
583 return ieee80211_rate_control_register(&mac80211_minstrel);
584}
585
586void
587rc80211_minstrel_exit(void)
588{
589 ieee80211_rate_control_unregister(&mac80211_minstrel);
590}
591