blob: 5c0f5327c77f9b2e313f19f81f0cc88816e332a5 [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
Felix Fietkaucccf1292008-10-05 18:07:45 +020058#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;
Felix Fietkaucccf1292008-10-05 18:07:45 +020069 return i;
70}
71
Felix Fietkaucccf1292008-10-05 18:07:45 +020072static 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;
Felix Fietkaucccf1292008-10-05 18:07:45 +020078 int i;
79
Felix Fietkaucccf1292008-10-05 18:07:45 +020080 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
Thomas Huehn1e9c27d2013-03-04 23:30:04 +010087 if (unlikely(mr->attempts > 0)) {
88 mr->sample_skipped = 0;
Thomas Huehnc8ca8c22013-03-04 23:30:02 +010089 mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
Felix Fietkaucccf1292008-10-05 18:07:45 +020090 mr->succ_hist += mr->success;
91 mr->att_hist += mr->attempts;
Thomas Huehna512d4b2013-03-04 23:30:01 +010092 mr->probability = minstrel_ewma(mr->probability,
93 mr->cur_prob,
94 EWMA_LEVEL);
95 mr->cur_tp = mr->probability * (1000000 / usecs);
Thomas Huehn1e9c27d2013-03-04 23:30:04 +010096 } else
97 mr->sample_skipped++;
Felix Fietkaucccf1292008-10-05 18:07:45 +020098
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. */
Thomas Huehnc8ca8c22013-03-04 23:30:02 +0100106 if (mr->probability > MINSTREL_FRAC(95, 100) ||
107 mr->probability < MINSTREL_FRAC(10, 100)) {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200108 mr->adjusted_retry_count = mr->retry_count >> 1;
109 if (mr->adjusted_retry_count > 2)
110 mr->adjusted_retry_count = 2;
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200111 mr->sample_limit = 4;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200112 } else {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200113 mr->sample_limit = -1;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200114 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;
Thomas Huehn8f157612013-03-04 23:30:03 +0100147
148 /* Reset update timer */
149 mi->stats_update = jiffies;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200150}
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{
Johannes Berg8acbcdd2012-11-15 18:27:56 +0100157 struct minstrel_priv *mp = priv;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200158 struct minstrel_sta_info *mi = priv_sta;
159 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200160 struct ieee80211_tx_rate *ar = info->status.rates;
161 int i, ndx;
162 int success;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200163
Johannes Berge6a98542008-10-21 12:40:02 +0200164 success = !!(info->flags & IEEE80211_TX_STAT_ACK);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200165
Johannes Berge6a98542008-10-21 12:40:02 +0200166 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
167 if (ar[i].idx < 0)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200168 break;
169
Johannes Berge6a98542008-10-21 12:40:02 +0200170 ndx = rix_to_ndx(mi, ar[i].idx);
Luciano Coelho3938b452009-07-03 08:25:08 +0300171 if (ndx < 0)
172 continue;
173
Johannes Berge6a98542008-10-21 12:40:02 +0200174 mi->r[ndx].attempts += ar[i].count;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200175
Javier Cardonabfc32e62009-08-17 17:15:55 -0700176 if ((i != IEEE80211_TX_MAX_RATES - 1) && (ar[i + 1].idx < 0))
Felix Fietkaucccf1292008-10-05 18:07:45 +0200177 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--;
Johannes Berg8acbcdd2012-11-15 18:27:56 +0100185
186 if (time_after(jiffies, mi->stats_update +
187 (mp->update_interval * HZ) / 1000))
188 minstrel_update_stats(mp, mi);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200189}
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
Johannes Berge6a98542008-10-21 12:40:02 +0200198 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200199 retry = max(2U, min(mr->retry_count_rtscts, retry));
Johannes Berge6a98542008-10-21 12:40:02 +0200200 else if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200201 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;
Thomas Huehn8f157612013-03-04 23:30:03 +0100210 sample_ndx = SAMPLE_TBL(mi, mi->sample_row, mi->sample_column);
211 mi->sample_row++;
Thomas Huehnf744bf82013-03-04 23:30:05 +0100212 if ((int) mi->sample_row >= mi->n_rates) {
Thomas Huehn8f157612013-03-04 23:30:03 +0100213 mi->sample_row = 0;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200214 mi->sample_column++;
215 if (mi->sample_column >= SAMPLE_COLUMNS)
216 mi->sample_column = 0;
217 }
218 return sample_ndx;
219}
220
Johannes Berg2df78162008-10-28 16:49:41 +0100221static void
Johannes Berge6a98542008-10-21 12:40:02 +0200222minstrel_get_rate(void *priv, struct ieee80211_sta *sta,
223 void *priv_sta, struct ieee80211_tx_rate_control *txrc)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200224{
Johannes Berge6a98542008-10-21 12:40:02 +0200225 struct sk_buff *skb = txrc->skb;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200226 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
227 struct minstrel_sta_info *mi = priv_sta;
228 struct minstrel_priv *mp = priv;
Johannes Berge6a98542008-10-21 12:40:02 +0200229 struct ieee80211_tx_rate *ar = info->control.rates;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200230 unsigned int ndx, sample_ndx = 0;
Thomas Huehn8f157612013-03-04 23:30:03 +0100231 bool mrr_capable;
232 bool indirect_rate_sampling = false;
233 bool rate_sampling = false;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200234 int i, delta;
235 int mrr_ndx[3];
Thomas Huehn8f157612013-03-04 23:30:03 +0100236 int sampling_ratio;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200237
Thomas Huehn8f157612013-03-04 23:30:03 +0100238 /* management/no-ack frames do not use rate control */
Luis R. Rodriguez4c6d4f52009-07-16 10:05:41 -0700239 if (rate_control_send_low(sta, priv_sta, txrc))
Felix Fietkaucccf1292008-10-05 18:07:45 +0200240 return;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200241
Thomas Huehn8f157612013-03-04 23:30:03 +0100242 /* 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;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200250
Thomas Huehn8f157612013-03-04 23:30:03 +0100251 /* init rateindex [ndx] with max throughput rate */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200252 ndx = mi->max_tp_rate;
253
Thomas Huehn8f157612013-03-04 23:30:03 +0100254 /* increase sum packet counter */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200255 mi->packet_count++;
Thomas Huehn8f157612013-03-04 23:30:03 +0100256
257 delta = (mi->packet_count * sampling_ratio / 100) -
Felix Fietkaucccf1292008-10-05 18:07:45 +0200258 (mi->sample_count + mi->sample_deferred / 2);
259
260 /* delta > 0: sampling required */
Thomas Huehn8f157612013-03-04 23:30:03 +0100261 if ((delta > 0) && (mrr_capable || !mi->prev_sample)) {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200262 struct minstrel_rate *msr;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200263 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
Thomas Huehn8f157612013-03-04 23:30:03 +0100280 /* get next random rate sample */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200281 sample_ndx = minstrel_get_next_sample(mi);
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200282 msr = &mi->r[sample_ndx];
Thomas Huehn8f157612013-03-04 23:30:03 +0100283 rate_sampling = true;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200284
Thomas Huehn8f157612013-03-04 23:30:03 +0100285 /* Decide if direct ( 1st mrr stage) or indirect (2nd mrr stage)
Thomas Huehn1e9c27d2013-03-04 23:30:04 +0100286 * rate sampling method should be used.
287 * Respect such rates that are not sampled for 20 interations.
288 */
Thomas Huehn8f157612013-03-04 23:30:03 +0100289 if (mrr_capable &&
Thomas Huehn1e9c27d2013-03-04 23:30:04 +0100290 msr->perfect_tx_time > mi->r[ndx].perfect_tx_time &&
291 msr->sample_skipped < 20)
Thomas Huehn8f157612013-03-04 23:30:03 +0100292 indirect_rate_sampling = true;
293
294 if (!indirect_rate_sampling) {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200295 if (msr->sample_limit != 0) {
296 ndx = sample_ndx;
297 mi->sample_count++;
298 if (msr->sample_limit > 0)
299 msr->sample_limit--;
Thomas Huehn8f157612013-03-04 23:30:03 +0100300 } else
301 rate_sampling = false;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200302 } 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 }
Thomas Huehn8f157612013-03-04 23:30:03 +0100313 mi->prev_sample = rate_sampling;
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200314
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 */
Thomas Huehn8f157612013-03-04 23:30:03 +0100318 if (!mrr_capable && rate_sampling &&
319 (mi->r[ndx].probability > MINSTREL_FRAC(95, 100)))
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200320 ndx = mi->max_tp_rate;
321
Thomas Huehn8f157612013-03-04 23:30:03 +0100322 /* mrr setup for 1st stage */
Johannes Berge6a98542008-10-21 12:40:02 +0200323 ar[0].idx = mi->r[ndx].rix;
324 ar[0].count = minstrel_get_retry_count(&mi->r[ndx], info);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200325
Thomas Huehn8f157612013-03-04 23:30:03 +0100326 /* non mrr setup for 2nd stage */
327 if (!mrr_capable) {
328 if (!rate_sampling)
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200329 ar[0].count = mp->max_retry;
Johannes Berge6a98542008-10-21 12:40:02 +0200330 ar[1].idx = mi->lowest_rix;
331 ar[1].count = mp->max_retry;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200332 return;
333 }
334
Thomas Huehn8f157612013-03-04 23:30:03 +0100335 /* mrr setup for 2nd stage */
336 if (rate_sampling) {
337 if (indirect_rate_sampling)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200338 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 }
Thomas Huehn8f157612013-03-04 23:30:03 +0100344
345 /* mrr setup for 3rd & 4th stage */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200346 mrr_ndx[1] = mi->max_prob_rate;
347 mrr_ndx[2] = 0;
Johannes Berge6a98542008-10-21 12:40:02 +0200348 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;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200351 }
352}
353
354
355static void
Michal Kazior4ee73f32012-04-11 08:47:56 +0200356calc_rate_durations(enum ieee80211_band band,
357 struct minstrel_rate *d,
Patrick Kelle868a5f72011-11-10 15:13:11 +0100358 struct ieee80211_rate *rate)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200359{
360 int erp = !!(rate->flags & IEEE80211_RATE_ERP_G);
361
Michal Kazior4ee73f32012-04-11 08:47:56 +0200362 d->perfect_tx_time = ieee80211_frame_duration(band, 1200,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200363 rate->bitrate, erp, 1);
Michal Kazior4ee73f32012-04-11 08:47:56 +0200364 d->ack_time = ieee80211_frame_duration(band, 10,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200365 rate->bitrate, erp, 1);
366}
367
368static void
369init_sample_table(struct minstrel_sta_info *mi)
370{
371 unsigned int i, col, new_idx;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200372 u8 rnd[8];
373
374 mi->sample_column = 0;
Thomas Huehn8f157612013-03-04 23:30:03 +0100375 mi->sample_row = 0;
Thomas Huehnf744bf82013-03-04 23:30:05 +0100376 memset(mi->sample_table, 0xff, SAMPLE_COLUMNS * mi->n_rates);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200377
378 for (col = 0; col < SAMPLE_COLUMNS; col++) {
Thomas Huehnf744bf82013-03-04 23:30:05 +0100379 for (i = 0; i < mi->n_rates; i++) {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200380 get_random_bytes(rnd, sizeof(rnd));
Thomas Huehnf744bf82013-03-04 23:30:05 +0100381 new_idx = (i + rnd[i & 7]) % mi->n_rates;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200382
Thomas Huehnf744bf82013-03-04 23:30:05 +0100383 while (SAMPLE_TBL(mi, new_idx, col) != 0xff)
384 new_idx = (new_idx + 1) % mi->n_rates;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200385
Thomas Huehnf744bf82013-03-04 23:30:05 +0100386 SAMPLE_TBL(mi, new_idx, col) = i;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200387 }
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;
Christian Lamparterd57854b2008-12-22 15:35:31 +0100397 struct ieee80211_rate *ctl_rate;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200398 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);
Christian Lamparterd57854b2008-12-22 15:35:31 +0100402 ctl_rate = &sband->bitrates[mi->lowest_rix];
Michal Kazior4ee73f32012-04-11 08:47:56 +0200403 mi->sp_ack_dur = ieee80211_frame_duration(sband->band, 10,
404 ctl_rate->bitrate,
Christian Lamparterd57854b2008-12-22 15:35:31 +0100405 !!(ctl_rate->flags & IEEE80211_RATE_ERP_G), 1);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200406
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;
Michal Kazior4ee73f32012-04-11 08:47:56 +0200420 calc_rate_durations(sband->band, mr, &sband->bitrates[i]);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200421
422 /* calculate maximum number of retransmissions before
423 * fallback (based on maximum segment size) */
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200424 mr->sample_limit = -1;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200425 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 */
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700434 tx_time_single += (t_slot * cw) >> 1;
435 cw = min((cw << 1) | 1, mp->cw_max);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200436
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++) {
Jiri Slaby8e532172009-05-04 18:04:55 +0200477 sband = hw->wiphy->bands[i];
John W. Linville621ad7c2009-05-05 15:18:26 -0400478 if (sband && sband->n_bitrates > max_rates)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200479 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
Felix Fietkaua0497f92013-02-13 10:51:08 +0100510static 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
Felix Fietkaucccf1292008-10-05 18:07:45 +0200537static 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
Felix Fietkaucccf1292008-10-05 18:07:45 +0200558 /* maximum time that the hw is allowed to stay in one MRR segment */
559 mp->segment_size = 6000;
560
Johannes Berge6a98542008-10-21 12:40:02 +0200561 if (hw->max_rate_tries > 0)
562 mp->max_retry = hw->max_rate_tries;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200563 else
564 /* safe default, does not necessarily have to match hw properties */
565 mp->max_retry = 7;
566
Johannes Berge6a98542008-10-21 12:40:02 +0200567 if (hw->max_rates >= 4)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200568 mp->has_mrr = true;
569
570 mp->hw = hw;
571 mp->update_interval = 100;
572
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200573#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
Felix Fietkaua0497f92013-02-13 10:51:08 +0100579 minstrel_init_cck_rates(mp);
580
Felix Fietkaucccf1292008-10-05 18:07:45 +0200581 return mp;
582}
583
584static void
585minstrel_free(void *priv)
586{
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200587#ifdef CONFIG_MAC80211_DEBUGFS
588 debugfs_remove(((struct minstrel_priv *)priv)->dbg_fixed_rate);
589#endif
Felix Fietkaucccf1292008-10-05 18:07:45 +0200590 kfree(priv);
591}
592
Felix Fietkaueae44752010-03-01 22:21:40 +0100593struct rate_control_ops mac80211_minstrel = {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200594 .name = "minstrel",
595 .tx_status = minstrel_tx_status,
596 .get_rate = minstrel_get_rate,
597 .rate_init = minstrel_rate_init,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200598 .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