blob: aa59f2962c3827bf3031f6fd395fda0f4fa8f142 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
Felix Fietkaucccf1292008-10-05 18:07:45 +020054#include <net/mac80211.h>
55#include "rate.h"
56#include "rc80211_minstrel.h"
57
58#define SAMPLE_COLUMNS 10
59#define SAMPLE_TBL(_mi, _idx, _col) \
60 _mi->sample_table[(_idx * SAMPLE_COLUMNS) + _col]
61
62/* convert mac80211 rate index to local array index */
63static inline int
64rix_to_ndx(struct minstrel_sta_info *mi, int rix)
65{
66 int i = rix;
67 for (i = rix; i >= 0; i--)
68 if (mi->r[i].rix == rix)
69 break;
Felix Fietkaucccf1292008-10-05 18:07:45 +020070 return i;
71}
72
Felix Fietkaucccf1292008-10-05 18:07:45 +020073static void
74minstrel_update_stats(struct minstrel_priv *mp, struct minstrel_sta_info *mi)
75{
76 u32 max_tp = 0, index_max_tp = 0, index_max_tp2 = 0;
77 u32 max_prob = 0, index_max_prob = 0;
78 u32 usecs;
Felix Fietkaucccf1292008-10-05 18:07:45 +020079 int i;
80
Felix Fietkaucccf1292008-10-05 18:07:45 +020081 for (i = 0; i < mi->n_rates; i++) {
82 struct minstrel_rate *mr = &mi->r[i];
83
84 usecs = mr->perfect_tx_time;
85 if (!usecs)
86 usecs = 1000000;
87
Thomas Huehn1e9c27d2013-03-04 23:30:04 +010088 if (unlikely(mr->attempts > 0)) {
89 mr->sample_skipped = 0;
Thomas Huehnc8ca8c22013-03-04 23:30:02 +010090 mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
Felix Fietkaucccf1292008-10-05 18:07:45 +020091 mr->succ_hist += mr->success;
92 mr->att_hist += mr->attempts;
Thomas Huehna512d4b2013-03-04 23:30:01 +010093 mr->probability = minstrel_ewma(mr->probability,
94 mr->cur_prob,
95 EWMA_LEVEL);
96 mr->cur_tp = mr->probability * (1000000 / usecs);
Thomas Huehn1e9c27d2013-03-04 23:30:04 +010097 } else
98 mr->sample_skipped++;
Felix Fietkaucccf1292008-10-05 18:07:45 +020099
100 mr->last_success = mr->success;
101 mr->last_attempts = mr->attempts;
102 mr->success = 0;
103 mr->attempts = 0;
104
105 /* Sample less often below the 10% chance of success.
106 * Sample less often above the 95% chance of success. */
Thomas Huehnc8ca8c22013-03-04 23:30:02 +0100107 if (mr->probability > MINSTREL_FRAC(95, 100) ||
108 mr->probability < MINSTREL_FRAC(10, 100)) {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200109 mr->adjusted_retry_count = mr->retry_count >> 1;
110 if (mr->adjusted_retry_count > 2)
111 mr->adjusted_retry_count = 2;
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200112 mr->sample_limit = 4;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200113 } else {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200114 mr->sample_limit = -1;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200115 mr->adjusted_retry_count = mr->retry_count;
116 }
117 if (!mr->adjusted_retry_count)
118 mr->adjusted_retry_count = 2;
119 }
120
121 for (i = 0; i < mi->n_rates; i++) {
122 struct minstrel_rate *mr = &mi->r[i];
123 if (max_tp < mr->cur_tp) {
124 index_max_tp = i;
125 max_tp = mr->cur_tp;
126 }
127 if (max_prob < mr->probability) {
128 index_max_prob = i;
129 max_prob = mr->probability;
130 }
131 }
132
133 max_tp = 0;
134 for (i = 0; i < mi->n_rates; i++) {
135 struct minstrel_rate *mr = &mi->r[i];
136
137 if (i == index_max_tp)
138 continue;
139
140 if (max_tp < mr->cur_tp) {
141 index_max_tp2 = i;
142 max_tp = mr->cur_tp;
143 }
144 }
145 mi->max_tp_rate = index_max_tp;
146 mi->max_tp_rate2 = index_max_tp2;
147 mi->max_prob_rate = index_max_prob;
Thomas Huehn8f157612013-03-04 23:30:03 +0100148
149 /* Reset update timer */
150 mi->stats_update = jiffies;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200151}
152
153static void
154minstrel_tx_status(void *priv, struct ieee80211_supported_band *sband,
155 struct ieee80211_sta *sta, void *priv_sta,
156 struct sk_buff *skb)
157{
Johannes Berg8acbcdd2012-11-15 18:27:56 +0100158 struct minstrel_priv *mp = priv;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200159 struct minstrel_sta_info *mi = priv_sta;
160 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200161 struct ieee80211_tx_rate *ar = info->status.rates;
162 int i, ndx;
163 int success;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200164
Johannes Berge6a98542008-10-21 12:40:02 +0200165 success = !!(info->flags & IEEE80211_TX_STAT_ACK);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200166
Johannes Berge6a98542008-10-21 12:40:02 +0200167 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
168 if (ar[i].idx < 0)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200169 break;
170
Johannes Berge6a98542008-10-21 12:40:02 +0200171 ndx = rix_to_ndx(mi, ar[i].idx);
Luciano Coelho3938b452009-07-03 08:25:08 +0300172 if (ndx < 0)
173 continue;
174
Johannes Berge6a98542008-10-21 12:40:02 +0200175 mi->r[ndx].attempts += ar[i].count;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200176
Javier Cardonabfc32e62009-08-17 17:15:55 -0700177 if ((i != IEEE80211_TX_MAX_RATES - 1) && (ar[i + 1].idx < 0))
Felix Fietkaucccf1292008-10-05 18:07:45 +0200178 mi->r[ndx].success += success;
179 }
180
181 if ((info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) && (i >= 0))
182 mi->sample_count++;
183
184 if (mi->sample_deferred > 0)
185 mi->sample_deferred--;
Johannes Berg8acbcdd2012-11-15 18:27:56 +0100186
187 if (time_after(jiffies, mi->stats_update +
188 (mp->update_interval * HZ) / 1000))
189 minstrel_update_stats(mp, mi);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200190}
191
192
193static inline unsigned int
194minstrel_get_retry_count(struct minstrel_rate *mr,
195 struct ieee80211_tx_info *info)
196{
197 unsigned int retry = mr->adjusted_retry_count;
198
Johannes Berge6a98542008-10-21 12:40:02 +0200199 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200200 retry = max(2U, min(mr->retry_count_rtscts, retry));
Johannes Berge6a98542008-10-21 12:40:02 +0200201 else if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200202 retry = max(2U, min(mr->retry_count_cts, retry));
203 return retry;
204}
205
206
207static int
208minstrel_get_next_sample(struct minstrel_sta_info *mi)
209{
210 unsigned int sample_ndx;
Thomas Huehn8f157612013-03-04 23:30:03 +0100211 sample_ndx = SAMPLE_TBL(mi, mi->sample_row, mi->sample_column);
212 mi->sample_row++;
213 if ((int) mi->sample_row > (mi->n_rates - 2)) {
214 mi->sample_row = 0;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200215 mi->sample_column++;
216 if (mi->sample_column >= SAMPLE_COLUMNS)
217 mi->sample_column = 0;
218 }
219 return sample_ndx;
220}
221
Johannes Berg2df78162008-10-28 16:49:41 +0100222static void
Johannes Berge6a98542008-10-21 12:40:02 +0200223minstrel_get_rate(void *priv, struct ieee80211_sta *sta,
224 void *priv_sta, struct ieee80211_tx_rate_control *txrc)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200225{
Johannes Berge6a98542008-10-21 12:40:02 +0200226 struct sk_buff *skb = txrc->skb;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200227 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
228 struct minstrel_sta_info *mi = priv_sta;
229 struct minstrel_priv *mp = priv;
Johannes Berge6a98542008-10-21 12:40:02 +0200230 struct ieee80211_tx_rate *ar = info->control.rates;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200231 unsigned int ndx, sample_ndx = 0;
Thomas Huehn8f157612013-03-04 23:30:03 +0100232 bool mrr_capable;
233 bool indirect_rate_sampling = false;
234 bool rate_sampling = false;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200235 int i, delta;
236 int mrr_ndx[3];
Thomas Huehn8f157612013-03-04 23:30:03 +0100237 int sampling_ratio;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200238
Thomas Huehn8f157612013-03-04 23:30:03 +0100239 /* management/no-ack frames do not use rate control */
Luis R. Rodriguez4c6d4f52009-07-16 10:05:41 -0700240 if (rate_control_send_low(sta, priv_sta, txrc))
Felix Fietkaucccf1292008-10-05 18:07:45 +0200241 return;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200242
Thomas Huehn8f157612013-03-04 23:30:03 +0100243 /* check multi-rate-retry capabilities & adjust lookaround_rate */
244 mrr_capable = mp->has_mrr &&
245 !txrc->rts &&
246 !txrc->bss_conf->use_cts_prot;
247 if (mrr_capable)
248 sampling_ratio = mp->lookaround_rate_mrr;
249 else
250 sampling_ratio = mp->lookaround_rate;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200251
Thomas Huehn8f157612013-03-04 23:30:03 +0100252 /* init rateindex [ndx] with max throughput rate */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200253 ndx = mi->max_tp_rate;
254
Thomas Huehn8f157612013-03-04 23:30:03 +0100255 /* increase sum packet counter */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200256 mi->packet_count++;
Thomas Huehn8f157612013-03-04 23:30:03 +0100257
258 delta = (mi->packet_count * sampling_ratio / 100) -
Felix Fietkaucccf1292008-10-05 18:07:45 +0200259 (mi->sample_count + mi->sample_deferred / 2);
260
261 /* delta > 0: sampling required */
Thomas Huehn8f157612013-03-04 23:30:03 +0100262 if ((delta > 0) && (mrr_capable || !mi->prev_sample)) {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200263 struct minstrel_rate *msr;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200264 if (mi->packet_count >= 10000) {
265 mi->sample_deferred = 0;
266 mi->sample_count = 0;
267 mi->packet_count = 0;
268 } else if (delta > mi->n_rates * 2) {
269 /* With multi-rate retry, not every planned sample
270 * attempt actually gets used, due to the way the retry
271 * chain is set up - [max_tp,sample,prob,lowest] for
272 * sample_rate < max_tp.
273 *
274 * If there's too much sampling backlog and the link
275 * starts getting worse, minstrel would start bursting
276 * out lots of sampling frames, which would result
277 * in a large throughput loss. */
278 mi->sample_count += (delta - mi->n_rates * 2);
279 }
280
Thomas Huehn8f157612013-03-04 23:30:03 +0100281 /* get next random rate sample */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200282 sample_ndx = minstrel_get_next_sample(mi);
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200283 msr = &mi->r[sample_ndx];
Thomas Huehn8f157612013-03-04 23:30:03 +0100284 rate_sampling = true;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200285
Thomas Huehn8f157612013-03-04 23:30:03 +0100286 /* Decide if direct ( 1st mrr stage) or indirect (2nd mrr stage)
Thomas Huehn1e9c27d2013-03-04 23:30:04 +0100287 * rate sampling method should be used.
288 * Respect such rates that are not sampled for 20 interations.
289 */
Thomas Huehn8f157612013-03-04 23:30:03 +0100290 if (mrr_capable &&
Thomas Huehn1e9c27d2013-03-04 23:30:04 +0100291 msr->perfect_tx_time > mi->r[ndx].perfect_tx_time &&
292 msr->sample_skipped < 20)
Thomas Huehn8f157612013-03-04 23:30:03 +0100293 indirect_rate_sampling = true;
294
295 if (!indirect_rate_sampling) {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200296 if (msr->sample_limit != 0) {
297 ndx = sample_ndx;
298 mi->sample_count++;
299 if (msr->sample_limit > 0)
300 msr->sample_limit--;
Thomas Huehn8f157612013-03-04 23:30:03 +0100301 } else
302 rate_sampling = false;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200303 } else {
304 /* Only use IEEE80211_TX_CTL_RATE_CTRL_PROBE to mark
305 * packets that have the sampling rate deferred to the
306 * second MRR stage. Increase the sample counter only
307 * if the deferred sample rate was actually used.
308 * Use the sample_deferred counter to make sure that
309 * the sampling is not done in large bursts */
310 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
311 mi->sample_deferred++;
312 }
313 }
Thomas Huehn8f157612013-03-04 23:30:03 +0100314 mi->prev_sample = rate_sampling;
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200315
316 /* If we're not using MRR and the sampling rate already
317 * has a probability of >95%, we shouldn't be attempting
318 * to use it, as this only wastes precious airtime */
Thomas Huehn8f157612013-03-04 23:30:03 +0100319 if (!mrr_capable && rate_sampling &&
320 (mi->r[ndx].probability > MINSTREL_FRAC(95, 100)))
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200321 ndx = mi->max_tp_rate;
322
Thomas Huehn8f157612013-03-04 23:30:03 +0100323 /* mrr setup for 1st stage */
Johannes Berge6a98542008-10-21 12:40:02 +0200324 ar[0].idx = mi->r[ndx].rix;
325 ar[0].count = minstrel_get_retry_count(&mi->r[ndx], info);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200326
Thomas Huehn8f157612013-03-04 23:30:03 +0100327 /* non mrr setup for 2nd stage */
328 if (!mrr_capable) {
329 if (!rate_sampling)
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200330 ar[0].count = mp->max_retry;
Johannes Berge6a98542008-10-21 12:40:02 +0200331 ar[1].idx = mi->lowest_rix;
332 ar[1].count = mp->max_retry;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200333 return;
334 }
335
Thomas Huehn8f157612013-03-04 23:30:03 +0100336 /* mrr setup for 2nd stage */
337 if (rate_sampling) {
338 if (indirect_rate_sampling)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200339 mrr_ndx[0] = sample_ndx;
340 else
341 mrr_ndx[0] = mi->max_tp_rate;
342 } else {
343 mrr_ndx[0] = mi->max_tp_rate2;
344 }
Thomas Huehn8f157612013-03-04 23:30:03 +0100345
346 /* mrr setup for 3rd & 4th stage */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200347 mrr_ndx[1] = mi->max_prob_rate;
348 mrr_ndx[2] = 0;
Johannes Berge6a98542008-10-21 12:40:02 +0200349 for (i = 1; i < 4; i++) {
350 ar[i].idx = mi->r[mrr_ndx[i - 1]].rix;
351 ar[i].count = mi->r[mrr_ndx[i - 1]].adjusted_retry_count;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200352 }
353}
354
355
356static void
Michal Kazior4ee73f32012-04-11 08:47:56 +0200357calc_rate_durations(enum ieee80211_band band,
358 struct minstrel_rate *d,
Patrick Kelle868a5f72011-11-10 15:13:11 +0100359 struct ieee80211_rate *rate)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200360{
361 int erp = !!(rate->flags & IEEE80211_RATE_ERP_G);
362
Michal Kazior4ee73f32012-04-11 08:47:56 +0200363 d->perfect_tx_time = ieee80211_frame_duration(band, 1200,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200364 rate->bitrate, erp, 1);
Michal Kazior4ee73f32012-04-11 08:47:56 +0200365 d->ack_time = ieee80211_frame_duration(band, 10,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200366 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;
Thomas Huehn8f157612013-03-04 23:30:03 +0100377 mi->sample_row = 0;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200378 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_rate *ctl_rate;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200404 unsigned int i, n = 0;
405 unsigned int t_slot = 9; /* FIXME: get real slot time */
406
407 mi->lowest_rix = rate_lowest_index(sband, sta);
Christian Lamparterd57854b2008-12-22 15:35:31 +0100408 ctl_rate = &sband->bitrates[mi->lowest_rix];
Michal Kazior4ee73f32012-04-11 08:47:56 +0200409 mi->sp_ack_dur = ieee80211_frame_duration(sband->band, 10,
410 ctl_rate->bitrate,
Christian Lamparterd57854b2008-12-22 15:35:31 +0100411 !!(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;
Michal Kazior4ee73f32012-04-11 08:47:56 +0200426 calc_rate_durations(sband->band, mr, &sband->bitrates[i]);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200427
428 /* calculate maximum number of retransmissions before
429 * fallback (based on maximum segment size) */
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200430 mr->sample_limit = -1;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200431 mr->retry_count = 1;
432 mr->retry_count_cts = 1;
433 mr->retry_count_rtscts = 1;
434 tx_time = mr->perfect_tx_time + mi->sp_ack_dur;
435 do {
436 /* add one retransmission */
437 tx_time_single = mr->ack_time + mr->perfect_tx_time;
438
439 /* contention window */
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700440 tx_time_single += (t_slot * cw) >> 1;
441 cw = min((cw << 1) | 1, mp->cw_max);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200442
443 tx_time += tx_time_single;
444 tx_time_cts += tx_time_single + mi->sp_ack_dur;
445 tx_time_rtscts += tx_time_single + 2 * mi->sp_ack_dur;
446 if ((tx_time_cts < mp->segment_size) &&
447 (mr->retry_count_cts < mp->max_retry))
448 mr->retry_count_cts++;
449 if ((tx_time_rtscts < mp->segment_size) &&
450 (mr->retry_count_rtscts < mp->max_retry))
451 mr->retry_count_rtscts++;
452 } while ((tx_time < mp->segment_size) &&
453 (++mr->retry_count < mp->max_retry));
454 mr->adjusted_retry_count = mr->retry_count;
455 }
456
457 for (i = n; i < sband->n_bitrates; i++) {
458 struct minstrel_rate *mr = &mi->r[i];
459 mr->rix = -1;
460 }
461
462 mi->n_rates = n;
463 mi->stats_update = jiffies;
464
465 init_sample_table(mi);
466}
467
468static void *
469minstrel_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
470{
471 struct ieee80211_supported_band *sband;
472 struct minstrel_sta_info *mi;
473 struct minstrel_priv *mp = priv;
474 struct ieee80211_hw *hw = mp->hw;
475 int max_rates = 0;
476 int i;
477
478 mi = kzalloc(sizeof(struct minstrel_sta_info), gfp);
479 if (!mi)
480 return NULL;
481
482 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Jiri Slaby8e532172009-05-04 18:04:55 +0200483 sband = hw->wiphy->bands[i];
John W. Linville621ad7c2009-05-05 15:18:26 -0400484 if (sband && sband->n_bitrates > max_rates)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200485 max_rates = sband->n_bitrates;
486 }
487
488 mi->r = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
489 if (!mi->r)
490 goto error;
491
492 mi->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
493 if (!mi->sample_table)
494 goto error1;
495
496 mi->stats_update = jiffies;
497 return mi;
498
499error1:
500 kfree(mi->r);
501error:
502 kfree(mi);
503 return NULL;
504}
505
506static void
507minstrel_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
508{
509 struct minstrel_sta_info *mi = priv_sta;
510
511 kfree(mi->sample_table);
512 kfree(mi->r);
513 kfree(mi);
514}
515
Felix Fietkaua0497f92013-02-13 10:51:08 +0100516static void
517minstrel_init_cck_rates(struct minstrel_priv *mp)
518{
519 static const int bitrates[4] = { 10, 20, 55, 110 };
520 struct ieee80211_supported_band *sband;
521 int i, j;
522
523 sband = mp->hw->wiphy->bands[IEEE80211_BAND_2GHZ];
524 if (!sband)
525 return;
526
527 for (i = 0, j = 0; i < sband->n_bitrates; i++) {
528 struct ieee80211_rate *rate = &sband->bitrates[i];
529
530 if (rate->flags & IEEE80211_RATE_ERP_G)
531 continue;
532
533 for (j = 0; j < ARRAY_SIZE(bitrates); j++) {
534 if (rate->bitrate != bitrates[j])
535 continue;
536
537 mp->cck_rates[j] = i;
538 break;
539 }
540 }
541}
542
Felix Fietkaucccf1292008-10-05 18:07:45 +0200543static void *
544minstrel_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
545{
546 struct minstrel_priv *mp;
547
548 mp = kzalloc(sizeof(struct minstrel_priv), GFP_ATOMIC);
549 if (!mp)
550 return NULL;
551
552 /* contention window settings
553 * Just an approximation. Using the per-queue values would complicate
554 * the calculations and is probably unnecessary */
555 mp->cw_min = 15;
556 mp->cw_max = 1023;
557
558 /* number of packets (in %) to use for sampling other rates
559 * sample less often for non-mrr packets, because the overhead
560 * is much higher than with mrr */
561 mp->lookaround_rate = 5;
562 mp->lookaround_rate_mrr = 10;
563
Felix Fietkaucccf1292008-10-05 18:07:45 +0200564 /* maximum time that the hw is allowed to stay in one MRR segment */
565 mp->segment_size = 6000;
566
Johannes Berge6a98542008-10-21 12:40:02 +0200567 if (hw->max_rate_tries > 0)
568 mp->max_retry = hw->max_rate_tries;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200569 else
570 /* safe default, does not necessarily have to match hw properties */
571 mp->max_retry = 7;
572
Johannes Berge6a98542008-10-21 12:40:02 +0200573 if (hw->max_rates >= 4)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200574 mp->has_mrr = true;
575
576 mp->hw = hw;
577 mp->update_interval = 100;
578
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200579#ifdef CONFIG_MAC80211_DEBUGFS
580 mp->fixed_rate_idx = (u32) -1;
581 mp->dbg_fixed_rate = debugfs_create_u32("fixed_rate_idx",
582 S_IRUGO | S_IWUGO, debugfsdir, &mp->fixed_rate_idx);
583#endif
584
Felix Fietkaua0497f92013-02-13 10:51:08 +0100585 minstrel_init_cck_rates(mp);
586
Felix Fietkaucccf1292008-10-05 18:07:45 +0200587 return mp;
588}
589
590static void
591minstrel_free(void *priv)
592{
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200593#ifdef CONFIG_MAC80211_DEBUGFS
594 debugfs_remove(((struct minstrel_priv *)priv)->dbg_fixed_rate);
595#endif
Felix Fietkaucccf1292008-10-05 18:07:45 +0200596 kfree(priv);
597}
598
Felix Fietkaueae44752010-03-01 22:21:40 +0100599struct rate_control_ops mac80211_minstrel = {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200600 .name = "minstrel",
601 .tx_status = minstrel_tx_status,
602 .get_rate = minstrel_get_rate,
603 .rate_init = minstrel_rate_init,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200604 .alloc = minstrel_alloc,
605 .free = minstrel_free,
606 .alloc_sta = minstrel_alloc_sta,
607 .free_sta = minstrel_free_sta,
608#ifdef CONFIG_MAC80211_DEBUGFS
609 .add_sta_debugfs = minstrel_add_sta_debugfs,
610 .remove_sta_debugfs = minstrel_remove_sta_debugfs,
611#endif
612};
613
614int __init
615rc80211_minstrel_init(void)
616{
617 return ieee80211_rate_control_register(&mac80211_minstrel);
618}
619
620void
621rc80211_minstrel_exit(void)
622{
623 ieee80211_rate_control_unregister(&mac80211_minstrel);
624}
625