blob: f8d99a54798f3a31cd2116e151bebc1feb21dd19 [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);
Thomas Huehn1e9c27d2013-03-04 23:30:04 +010095 } else
96 mr->sample_skipped++;
Felix Fietkaucccf1292008-10-05 18:07:45 +020097
98 mr->last_success = mr->success;
99 mr->last_attempts = mr->attempts;
100 mr->success = 0;
101 mr->attempts = 0;
102
Thomas Huehndb8c5ee2013-03-04 23:30:06 +0100103 /* Update throughput per rate, reset thr. below 10% success */
104 if (mr->probability < MINSTREL_FRAC(10, 100))
105 mr->cur_tp = 0;
106 else
107 mr->cur_tp = mr->probability * (1000000 / usecs);
108
Felix Fietkaucccf1292008-10-05 18:07:45 +0200109 /* Sample less often below the 10% chance of success.
110 * Sample less often above the 95% chance of success. */
Thomas Huehnc8ca8c22013-03-04 23:30:02 +0100111 if (mr->probability > MINSTREL_FRAC(95, 100) ||
112 mr->probability < MINSTREL_FRAC(10, 100)) {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200113 mr->adjusted_retry_count = mr->retry_count >> 1;
114 if (mr->adjusted_retry_count > 2)
115 mr->adjusted_retry_count = 2;
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200116 mr->sample_limit = 4;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200117 } else {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200118 mr->sample_limit = -1;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200119 mr->adjusted_retry_count = mr->retry_count;
120 }
121 if (!mr->adjusted_retry_count)
122 mr->adjusted_retry_count = 2;
123 }
124
125 for (i = 0; i < mi->n_rates; i++) {
126 struct minstrel_rate *mr = &mi->r[i];
127 if (max_tp < mr->cur_tp) {
128 index_max_tp = i;
129 max_tp = mr->cur_tp;
130 }
131 if (max_prob < mr->probability) {
132 index_max_prob = i;
133 max_prob = mr->probability;
134 }
135 }
136
137 max_tp = 0;
138 for (i = 0; i < mi->n_rates; i++) {
139 struct minstrel_rate *mr = &mi->r[i];
140
141 if (i == index_max_tp)
142 continue;
143
144 if (max_tp < mr->cur_tp) {
145 index_max_tp2 = i;
146 max_tp = mr->cur_tp;
147 }
148 }
149 mi->max_tp_rate = index_max_tp;
150 mi->max_tp_rate2 = index_max_tp2;
151 mi->max_prob_rate = index_max_prob;
Thomas Huehn8f157612013-03-04 23:30:03 +0100152
153 /* Reset update timer */
154 mi->stats_update = jiffies;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200155}
156
157static void
158minstrel_tx_status(void *priv, struct ieee80211_supported_band *sband,
159 struct ieee80211_sta *sta, void *priv_sta,
160 struct sk_buff *skb)
161{
Johannes Berg8acbcdd2012-11-15 18:27:56 +0100162 struct minstrel_priv *mp = priv;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200163 struct minstrel_sta_info *mi = priv_sta;
164 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200165 struct ieee80211_tx_rate *ar = info->status.rates;
166 int i, ndx;
167 int success;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200168
Johannes Berge6a98542008-10-21 12:40:02 +0200169 success = !!(info->flags & IEEE80211_TX_STAT_ACK);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200170
Johannes Berge6a98542008-10-21 12:40:02 +0200171 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
172 if (ar[i].idx < 0)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200173 break;
174
Johannes Berge6a98542008-10-21 12:40:02 +0200175 ndx = rix_to_ndx(mi, ar[i].idx);
Luciano Coelho3938b452009-07-03 08:25:08 +0300176 if (ndx < 0)
177 continue;
178
Johannes Berge6a98542008-10-21 12:40:02 +0200179 mi->r[ndx].attempts += ar[i].count;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200180
Javier Cardonabfc32e62009-08-17 17:15:55 -0700181 if ((i != IEEE80211_TX_MAX_RATES - 1) && (ar[i + 1].idx < 0))
Felix Fietkaucccf1292008-10-05 18:07:45 +0200182 mi->r[ndx].success += success;
183 }
184
185 if ((info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) && (i >= 0))
186 mi->sample_count++;
187
188 if (mi->sample_deferred > 0)
189 mi->sample_deferred--;
Johannes Berg8acbcdd2012-11-15 18:27:56 +0100190
191 if (time_after(jiffies, mi->stats_update +
192 (mp->update_interval * HZ) / 1000))
193 minstrel_update_stats(mp, mi);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200194}
195
196
197static inline unsigned int
198minstrel_get_retry_count(struct minstrel_rate *mr,
199 struct ieee80211_tx_info *info)
200{
201 unsigned int retry = mr->adjusted_retry_count;
202
Johannes Berge6a98542008-10-21 12:40:02 +0200203 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200204 retry = max(2U, min(mr->retry_count_rtscts, retry));
Johannes Berge6a98542008-10-21 12:40:02 +0200205 else if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200206 retry = max(2U, min(mr->retry_count_cts, retry));
207 return retry;
208}
209
210
211static int
212minstrel_get_next_sample(struct minstrel_sta_info *mi)
213{
214 unsigned int sample_ndx;
Thomas Huehn8f157612013-03-04 23:30:03 +0100215 sample_ndx = SAMPLE_TBL(mi, mi->sample_row, mi->sample_column);
216 mi->sample_row++;
Thomas Huehnf744bf82013-03-04 23:30:05 +0100217 if ((int) mi->sample_row >= mi->n_rates) {
Thomas Huehn8f157612013-03-04 23:30:03 +0100218 mi->sample_row = 0;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200219 mi->sample_column++;
220 if (mi->sample_column >= SAMPLE_COLUMNS)
221 mi->sample_column = 0;
222 }
223 return sample_ndx;
224}
225
Johannes Berg2df78162008-10-28 16:49:41 +0100226static void
Johannes Berge6a98542008-10-21 12:40:02 +0200227minstrel_get_rate(void *priv, struct ieee80211_sta *sta,
228 void *priv_sta, struct ieee80211_tx_rate_control *txrc)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200229{
Johannes Berge6a98542008-10-21 12:40:02 +0200230 struct sk_buff *skb = txrc->skb;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200231 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
232 struct minstrel_sta_info *mi = priv_sta;
233 struct minstrel_priv *mp = priv;
Johannes Berge6a98542008-10-21 12:40:02 +0200234 struct ieee80211_tx_rate *ar = info->control.rates;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200235 unsigned int ndx, sample_ndx = 0;
Thomas Huehn8f157612013-03-04 23:30:03 +0100236 bool mrr_capable;
237 bool indirect_rate_sampling = false;
238 bool rate_sampling = false;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200239 int i, delta;
240 int mrr_ndx[3];
Thomas Huehn8f157612013-03-04 23:30:03 +0100241 int sampling_ratio;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200242
Thomas Huehn8f157612013-03-04 23:30:03 +0100243 /* management/no-ack frames do not use rate control */
Luis R. Rodriguez4c6d4f52009-07-16 10:05:41 -0700244 if (rate_control_send_low(sta, priv_sta, txrc))
Felix Fietkaucccf1292008-10-05 18:07:45 +0200245 return;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200246
Thomas Huehn8f157612013-03-04 23:30:03 +0100247 /* check multi-rate-retry capabilities & adjust lookaround_rate */
248 mrr_capable = mp->has_mrr &&
249 !txrc->rts &&
250 !txrc->bss_conf->use_cts_prot;
251 if (mrr_capable)
252 sampling_ratio = mp->lookaround_rate_mrr;
253 else
254 sampling_ratio = mp->lookaround_rate;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200255
Thomas Huehn8f157612013-03-04 23:30:03 +0100256 /* init rateindex [ndx] with max throughput rate */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200257 ndx = mi->max_tp_rate;
258
Thomas Huehn8f157612013-03-04 23:30:03 +0100259 /* increase sum packet counter */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200260 mi->packet_count++;
Thomas Huehn8f157612013-03-04 23:30:03 +0100261
262 delta = (mi->packet_count * sampling_ratio / 100) -
Felix Fietkaucccf1292008-10-05 18:07:45 +0200263 (mi->sample_count + mi->sample_deferred / 2);
264
265 /* delta > 0: sampling required */
Thomas Huehn8f157612013-03-04 23:30:03 +0100266 if ((delta > 0) && (mrr_capable || !mi->prev_sample)) {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200267 struct minstrel_rate *msr;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200268 if (mi->packet_count >= 10000) {
269 mi->sample_deferred = 0;
270 mi->sample_count = 0;
271 mi->packet_count = 0;
272 } else if (delta > mi->n_rates * 2) {
273 /* With multi-rate retry, not every planned sample
274 * attempt actually gets used, due to the way the retry
275 * chain is set up - [max_tp,sample,prob,lowest] for
276 * sample_rate < max_tp.
277 *
278 * If there's too much sampling backlog and the link
279 * starts getting worse, minstrel would start bursting
280 * out lots of sampling frames, which would result
281 * in a large throughput loss. */
282 mi->sample_count += (delta - mi->n_rates * 2);
283 }
284
Thomas Huehn8f157612013-03-04 23:30:03 +0100285 /* get next random rate sample */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200286 sample_ndx = minstrel_get_next_sample(mi);
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200287 msr = &mi->r[sample_ndx];
Thomas Huehn8f157612013-03-04 23:30:03 +0100288 rate_sampling = true;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200289
Thomas Huehn8f157612013-03-04 23:30:03 +0100290 /* Decide if direct ( 1st mrr stage) or indirect (2nd mrr stage)
Thomas Huehn1e9c27d2013-03-04 23:30:04 +0100291 * rate sampling method should be used.
292 * Respect such rates that are not sampled for 20 interations.
293 */
Thomas Huehn8f157612013-03-04 23:30:03 +0100294 if (mrr_capable &&
Thomas Huehn1e9c27d2013-03-04 23:30:04 +0100295 msr->perfect_tx_time > mi->r[ndx].perfect_tx_time &&
296 msr->sample_skipped < 20)
Thomas Huehn8f157612013-03-04 23:30:03 +0100297 indirect_rate_sampling = true;
298
299 if (!indirect_rate_sampling) {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200300 if (msr->sample_limit != 0) {
301 ndx = sample_ndx;
302 mi->sample_count++;
303 if (msr->sample_limit > 0)
304 msr->sample_limit--;
Thomas Huehn8f157612013-03-04 23:30:03 +0100305 } else
306 rate_sampling = false;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200307 } else {
308 /* Only use IEEE80211_TX_CTL_RATE_CTRL_PROBE to mark
309 * packets that have the sampling rate deferred to the
310 * second MRR stage. Increase the sample counter only
311 * if the deferred sample rate was actually used.
312 * Use the sample_deferred counter to make sure that
313 * the sampling is not done in large bursts */
314 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
315 mi->sample_deferred++;
316 }
317 }
Thomas Huehn8f157612013-03-04 23:30:03 +0100318 mi->prev_sample = rate_sampling;
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200319
320 /* If we're not using MRR and the sampling rate already
321 * has a probability of >95%, we shouldn't be attempting
322 * to use it, as this only wastes precious airtime */
Thomas Huehn8f157612013-03-04 23:30:03 +0100323 if (!mrr_capable && rate_sampling &&
324 (mi->r[ndx].probability > MINSTREL_FRAC(95, 100)))
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200325 ndx = mi->max_tp_rate;
326
Thomas Huehn8f157612013-03-04 23:30:03 +0100327 /* mrr setup for 1st stage */
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
Thomas Huehn8f157612013-03-04 23:30:03 +0100331 /* non mrr setup for 2nd stage */
332 if (!mrr_capable) {
333 if (!rate_sampling)
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200334 ar[0].count = mp->max_retry;
Johannes Berge6a98542008-10-21 12:40:02 +0200335 ar[1].idx = mi->lowest_rix;
336 ar[1].count = mp->max_retry;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200337 return;
338 }
339
Thomas Huehn8f157612013-03-04 23:30:03 +0100340 /* mrr setup for 2nd stage */
341 if (rate_sampling) {
342 if (indirect_rate_sampling)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200343 mrr_ndx[0] = sample_ndx;
344 else
345 mrr_ndx[0] = mi->max_tp_rate;
346 } else {
347 mrr_ndx[0] = mi->max_tp_rate2;
348 }
Thomas Huehn8f157612013-03-04 23:30:03 +0100349
350 /* mrr setup for 3rd & 4th stage */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200351 mrr_ndx[1] = mi->max_prob_rate;
352 mrr_ndx[2] = 0;
Johannes Berge6a98542008-10-21 12:40:02 +0200353 for (i = 1; i < 4; i++) {
354 ar[i].idx = mi->r[mrr_ndx[i - 1]].rix;
355 ar[i].count = mi->r[mrr_ndx[i - 1]].adjusted_retry_count;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200356 }
357}
358
359
360static void
Michal Kazior4ee73f32012-04-11 08:47:56 +0200361calc_rate_durations(enum ieee80211_band band,
362 struct minstrel_rate *d,
Patrick Kelle868a5f72011-11-10 15:13:11 +0100363 struct ieee80211_rate *rate)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200364{
365 int erp = !!(rate->flags & IEEE80211_RATE_ERP_G);
366
Michal Kazior4ee73f32012-04-11 08:47:56 +0200367 d->perfect_tx_time = ieee80211_frame_duration(band, 1200,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200368 rate->bitrate, erp, 1);
Michal Kazior4ee73f32012-04-11 08:47:56 +0200369 d->ack_time = ieee80211_frame_duration(band, 10,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200370 rate->bitrate, erp, 1);
371}
372
373static void
374init_sample_table(struct minstrel_sta_info *mi)
375{
376 unsigned int i, col, new_idx;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200377 u8 rnd[8];
378
379 mi->sample_column = 0;
Thomas Huehn8f157612013-03-04 23:30:03 +0100380 mi->sample_row = 0;
Thomas Huehnf744bf82013-03-04 23:30:05 +0100381 memset(mi->sample_table, 0xff, SAMPLE_COLUMNS * mi->n_rates);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200382
383 for (col = 0; col < SAMPLE_COLUMNS; col++) {
Thomas Huehnf744bf82013-03-04 23:30:05 +0100384 for (i = 0; i < mi->n_rates; i++) {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200385 get_random_bytes(rnd, sizeof(rnd));
Thomas Huehnf744bf82013-03-04 23:30:05 +0100386 new_idx = (i + rnd[i & 7]) % mi->n_rates;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200387
Thomas Huehnf744bf82013-03-04 23:30:05 +0100388 while (SAMPLE_TBL(mi, new_idx, col) != 0xff)
389 new_idx = (new_idx + 1) % mi->n_rates;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200390
Thomas Huehnf744bf82013-03-04 23:30:05 +0100391 SAMPLE_TBL(mi, new_idx, col) = i;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200392 }
393 }
394}
395
396static void
397minstrel_rate_init(void *priv, struct ieee80211_supported_band *sband,
398 struct ieee80211_sta *sta, void *priv_sta)
399{
400 struct minstrel_sta_info *mi = priv_sta;
401 struct minstrel_priv *mp = priv;
Christian Lamparterd57854b2008-12-22 15:35:31 +0100402 struct ieee80211_rate *ctl_rate;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200403 unsigned int i, n = 0;
404 unsigned int t_slot = 9; /* FIXME: get real slot time */
405
406 mi->lowest_rix = rate_lowest_index(sband, sta);
Christian Lamparterd57854b2008-12-22 15:35:31 +0100407 ctl_rate = &sband->bitrates[mi->lowest_rix];
Michal Kazior4ee73f32012-04-11 08:47:56 +0200408 mi->sp_ack_dur = ieee80211_frame_duration(sband->band, 10,
409 ctl_rate->bitrate,
Christian Lamparterd57854b2008-12-22 15:35:31 +0100410 !!(ctl_rate->flags & IEEE80211_RATE_ERP_G), 1);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200411
412 for (i = 0; i < sband->n_bitrates; i++) {
413 struct minstrel_rate *mr = &mi->r[n];
414 unsigned int tx_time = 0, tx_time_cts = 0, tx_time_rtscts = 0;
415 unsigned int tx_time_single;
416 unsigned int cw = mp->cw_min;
417
418 if (!rate_supported(sta, sband->band, i))
419 continue;
420 n++;
421 memset(mr, 0, sizeof(*mr));
422
423 mr->rix = i;
424 mr->bitrate = sband->bitrates[i].bitrate / 5;
Michal Kazior4ee73f32012-04-11 08:47:56 +0200425 calc_rate_durations(sband->band, mr, &sband->bitrates[i]);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200426
427 /* calculate maximum number of retransmissions before
428 * fallback (based on maximum segment size) */
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200429 mr->sample_limit = -1;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200430 mr->retry_count = 1;
431 mr->retry_count_cts = 1;
432 mr->retry_count_rtscts = 1;
433 tx_time = mr->perfect_tx_time + mi->sp_ack_dur;
434 do {
435 /* add one retransmission */
436 tx_time_single = mr->ack_time + mr->perfect_tx_time;
437
438 /* contention window */
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700439 tx_time_single += (t_slot * cw) >> 1;
440 cw = min((cw << 1) | 1, mp->cw_max);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200441
442 tx_time += tx_time_single;
443 tx_time_cts += tx_time_single + mi->sp_ack_dur;
444 tx_time_rtscts += tx_time_single + 2 * mi->sp_ack_dur;
445 if ((tx_time_cts < mp->segment_size) &&
446 (mr->retry_count_cts < mp->max_retry))
447 mr->retry_count_cts++;
448 if ((tx_time_rtscts < mp->segment_size) &&
449 (mr->retry_count_rtscts < mp->max_retry))
450 mr->retry_count_rtscts++;
451 } while ((tx_time < mp->segment_size) &&
452 (++mr->retry_count < mp->max_retry));
453 mr->adjusted_retry_count = mr->retry_count;
454 }
455
456 for (i = n; i < sband->n_bitrates; i++) {
457 struct minstrel_rate *mr = &mi->r[i];
458 mr->rix = -1;
459 }
460
461 mi->n_rates = n;
462 mi->stats_update = jiffies;
463
464 init_sample_table(mi);
465}
466
467static void *
468minstrel_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
469{
470 struct ieee80211_supported_band *sband;
471 struct minstrel_sta_info *mi;
472 struct minstrel_priv *mp = priv;
473 struct ieee80211_hw *hw = mp->hw;
474 int max_rates = 0;
475 int i;
476
477 mi = kzalloc(sizeof(struct minstrel_sta_info), gfp);
478 if (!mi)
479 return NULL;
480
481 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Jiri Slaby8e532172009-05-04 18:04:55 +0200482 sband = hw->wiphy->bands[i];
John W. Linville621ad7c2009-05-05 15:18:26 -0400483 if (sband && sband->n_bitrates > max_rates)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200484 max_rates = sband->n_bitrates;
485 }
486
487 mi->r = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
488 if (!mi->r)
489 goto error;
490
491 mi->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
492 if (!mi->sample_table)
493 goto error1;
494
495 mi->stats_update = jiffies;
496 return mi;
497
498error1:
499 kfree(mi->r);
500error:
501 kfree(mi);
502 return NULL;
503}
504
505static void
506minstrel_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
507{
508 struct minstrel_sta_info *mi = priv_sta;
509
510 kfree(mi->sample_table);
511 kfree(mi->r);
512 kfree(mi);
513}
514
Felix Fietkaua0497f92013-02-13 10:51:08 +0100515static void
516minstrel_init_cck_rates(struct minstrel_priv *mp)
517{
518 static const int bitrates[4] = { 10, 20, 55, 110 };
519 struct ieee80211_supported_band *sband;
520 int i, j;
521
522 sband = mp->hw->wiphy->bands[IEEE80211_BAND_2GHZ];
523 if (!sband)
524 return;
525
526 for (i = 0, j = 0; i < sband->n_bitrates; i++) {
527 struct ieee80211_rate *rate = &sband->bitrates[i];
528
529 if (rate->flags & IEEE80211_RATE_ERP_G)
530 continue;
531
532 for (j = 0; j < ARRAY_SIZE(bitrates); j++) {
533 if (rate->bitrate != bitrates[j])
534 continue;
535
536 mp->cck_rates[j] = i;
537 break;
538 }
539 }
540}
541
Felix Fietkaucccf1292008-10-05 18:07:45 +0200542static void *
543minstrel_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
544{
545 struct minstrel_priv *mp;
546
547 mp = kzalloc(sizeof(struct minstrel_priv), GFP_ATOMIC);
548 if (!mp)
549 return NULL;
550
551 /* contention window settings
552 * Just an approximation. Using the per-queue values would complicate
553 * the calculations and is probably unnecessary */
554 mp->cw_min = 15;
555 mp->cw_max = 1023;
556
557 /* number of packets (in %) to use for sampling other rates
558 * sample less often for non-mrr packets, because the overhead
559 * is much higher than with mrr */
560 mp->lookaround_rate = 5;
561 mp->lookaround_rate_mrr = 10;
562
Felix Fietkaucccf1292008-10-05 18:07:45 +0200563 /* maximum time that the hw is allowed to stay in one MRR segment */
564 mp->segment_size = 6000;
565
Johannes Berge6a98542008-10-21 12:40:02 +0200566 if (hw->max_rate_tries > 0)
567 mp->max_retry = hw->max_rate_tries;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200568 else
569 /* safe default, does not necessarily have to match hw properties */
570 mp->max_retry = 7;
571
Johannes Berge6a98542008-10-21 12:40:02 +0200572 if (hw->max_rates >= 4)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200573 mp->has_mrr = true;
574
575 mp->hw = hw;
576 mp->update_interval = 100;
577
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200578#ifdef CONFIG_MAC80211_DEBUGFS
579 mp->fixed_rate_idx = (u32) -1;
580 mp->dbg_fixed_rate = debugfs_create_u32("fixed_rate_idx",
581 S_IRUGO | S_IWUGO, debugfsdir, &mp->fixed_rate_idx);
582#endif
583
Felix Fietkaua0497f92013-02-13 10:51:08 +0100584 minstrel_init_cck_rates(mp);
585
Felix Fietkaucccf1292008-10-05 18:07:45 +0200586 return mp;
587}
588
589static void
590minstrel_free(void *priv)
591{
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200592#ifdef CONFIG_MAC80211_DEBUGFS
593 debugfs_remove(((struct minstrel_priv *)priv)->dbg_fixed_rate);
594#endif
Felix Fietkaucccf1292008-10-05 18:07:45 +0200595 kfree(priv);
596}
597
Felix Fietkaueae44752010-03-01 22:21:40 +0100598struct rate_control_ops mac80211_minstrel = {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200599 .name = "minstrel",
600 .tx_status = minstrel_tx_status,
601 .get_rate = minstrel_get_rate,
602 .rate_init = minstrel_rate_init,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200603 .alloc = minstrel_alloc,
604 .free = minstrel_free,
605 .alloc_sta = minstrel_alloc_sta,
606 .free_sta = minstrel_free_sta,
607#ifdef CONFIG_MAC80211_DEBUGFS
608 .add_sta_debugfs = minstrel_add_sta_debugfs,
609 .remove_sta_debugfs = minstrel_remove_sta_debugfs,
610#endif
611};
612
613int __init
614rc80211_minstrel_init(void)
615{
616 return ieee80211_rate_control_register(&mac80211_minstrel);
617}
618
619void
620rc80211_minstrel_exit(void)
621{
622 ieee80211_rate_control_unregister(&mac80211_minstrel);
623}
624