blob: 8b5f7ef7c0c9f14db5dba3baf8ab82247500c1c3 [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
Thomas Huehn2ff2b692013-03-04 23:30:07 +010072/* find & sort topmost throughput rates */
73static inline void
74minstrel_sort_best_tp_rates(struct minstrel_sta_info *mi, int i, u8 *tp_list)
75{
76 int j = MAX_THR_RATES;
77
78 while (j > 0 && mi->r[i].cur_tp > mi->r[tp_list[j - 1]].cur_tp)
79 j--;
80 if (j < MAX_THR_RATES - 1)
81 memmove(&tp_list[j + 1], &tp_list[j], MAX_THR_RATES - (j + 1));
82 if (j < MAX_THR_RATES)
83 tp_list[j] = i;
84}
85
Felix Fietkaucccf1292008-10-05 18:07:45 +020086static void
Felix Fietkau06d961a2013-04-22 16:14:43 +020087minstrel_set_rate(struct minstrel_sta_info *mi, struct ieee80211_sta_rates *ratetbl,
88 int offset, int idx)
89{
90 struct minstrel_rate *r = &mi->r[idx];
91
92 ratetbl->rate[offset].idx = r->rix;
93 ratetbl->rate[offset].count = r->adjusted_retry_count;
94 ratetbl->rate[offset].count_cts = r->retry_count_cts;
95 ratetbl->rate[offset].count_rts = r->retry_count_rtscts;
96}
97
98static void
99minstrel_update_rates(struct minstrel_priv *mp, struct minstrel_sta_info *mi)
100{
101 struct ieee80211_sta_rates *ratetbl;
102 int i = 0;
103
104 ratetbl = kzalloc(sizeof(*ratetbl), GFP_ATOMIC);
105 if (!ratetbl)
106 return;
107
108 /* Start with max_tp_rate */
109 minstrel_set_rate(mi, ratetbl, i++, mi->max_tp_rate[0]);
110
111 if (mp->hw->max_rates >= 3) {
112 /* At least 3 tx rates supported, use max_tp_rate2 next */
113 minstrel_set_rate(mi, ratetbl, i++, mi->max_tp_rate[1]);
114 }
115
116 if (mp->hw->max_rates >= 2) {
117 /* At least 2 tx rates supported, use max_prob_rate next */
118 minstrel_set_rate(mi, ratetbl, i++, mi->max_prob_rate);
119 }
120
121 /* Use lowest rate last */
122 ratetbl->rate[i].idx = mi->lowest_rix;
123 ratetbl->rate[i].count = mp->max_retry;
124 ratetbl->rate[i].count_cts = mp->max_retry;
125 ratetbl->rate[i].count_rts = mp->max_retry;
126
127 rate_control_set_rates(mp->hw, mi->sta, ratetbl);
128}
129
130static void
Felix Fietkaucccf1292008-10-05 18:07:45 +0200131minstrel_update_stats(struct minstrel_priv *mp, struct minstrel_sta_info *mi)
132{
Thomas Huehn2ff2b692013-03-04 23:30:07 +0100133 u8 tmp_tp_rate[MAX_THR_RATES];
134 u8 tmp_prob_rate = 0;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200135 u32 usecs;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200136 int i;
137
Thomas Huehn2ff2b692013-03-04 23:30:07 +0100138 for (i=0; i < MAX_THR_RATES; i++)
139 tmp_tp_rate[i] = 0;
140
Felix Fietkaucccf1292008-10-05 18:07:45 +0200141 for (i = 0; i < mi->n_rates; i++) {
142 struct minstrel_rate *mr = &mi->r[i];
143
144 usecs = mr->perfect_tx_time;
145 if (!usecs)
146 usecs = 1000000;
147
Thomas Huehn1e9c27d2013-03-04 23:30:04 +0100148 if (unlikely(mr->attempts > 0)) {
149 mr->sample_skipped = 0;
Thomas Huehnc8ca8c22013-03-04 23:30:02 +0100150 mr->cur_prob = MINSTREL_FRAC(mr->success, mr->attempts);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200151 mr->succ_hist += mr->success;
152 mr->att_hist += mr->attempts;
Thomas Huehna512d4b2013-03-04 23:30:01 +0100153 mr->probability = minstrel_ewma(mr->probability,
154 mr->cur_prob,
155 EWMA_LEVEL);
Thomas Huehn1e9c27d2013-03-04 23:30:04 +0100156 } else
157 mr->sample_skipped++;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200158
159 mr->last_success = mr->success;
160 mr->last_attempts = mr->attempts;
161 mr->success = 0;
162 mr->attempts = 0;
163
Thomas Huehndb8c5ee2013-03-04 23:30:06 +0100164 /* Update throughput per rate, reset thr. below 10% success */
165 if (mr->probability < MINSTREL_FRAC(10, 100))
166 mr->cur_tp = 0;
167 else
168 mr->cur_tp = mr->probability * (1000000 / usecs);
169
Felix Fietkaucccf1292008-10-05 18:07:45 +0200170 /* Sample less often below the 10% chance of success.
171 * Sample less often above the 95% chance of success. */
Thomas Huehnc8ca8c22013-03-04 23:30:02 +0100172 if (mr->probability > MINSTREL_FRAC(95, 100) ||
173 mr->probability < MINSTREL_FRAC(10, 100)) {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200174 mr->adjusted_retry_count = mr->retry_count >> 1;
175 if (mr->adjusted_retry_count > 2)
176 mr->adjusted_retry_count = 2;
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200177 mr->sample_limit = 4;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200178 } else {
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200179 mr->sample_limit = -1;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200180 mr->adjusted_retry_count = mr->retry_count;
181 }
182 if (!mr->adjusted_retry_count)
183 mr->adjusted_retry_count = 2;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200184
Thomas Huehn2ff2b692013-03-04 23:30:07 +0100185 minstrel_sort_best_tp_rates(mi, i, tmp_tp_rate);
186
187 /* To determine the most robust rate (max_prob_rate) used at
188 * 3rd mmr stage we distinct between two cases:
189 * (1) if any success probabilitiy >= 95%, out of those rates
190 * choose the maximum throughput rate as max_prob_rate
191 * (2) if all success probabilities < 95%, the rate with
192 * highest success probability is choosen as max_prob_rate */
193 if (mr->probability >= MINSTREL_FRAC(95,100)) {
194 if (mr->cur_tp >= mi->r[tmp_prob_rate].cur_tp)
195 tmp_prob_rate = i;
196 } else {
197 if (mr->probability >= mi->r[tmp_prob_rate].probability)
198 tmp_prob_rate = i;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200199 }
200 }
201
Thomas Huehn2ff2b692013-03-04 23:30:07 +0100202 /* Assign the new rate set */
203 memcpy(mi->max_tp_rate, tmp_tp_rate, sizeof(mi->max_tp_rate));
204 mi->max_prob_rate = tmp_prob_rate;
Thomas Huehn8f157612013-03-04 23:30:03 +0100205
206 /* Reset update timer */
207 mi->stats_update = jiffies;
Felix Fietkau06d961a2013-04-22 16:14:43 +0200208
209 minstrel_update_rates(mp, mi);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200210}
211
212static void
213minstrel_tx_status(void *priv, struct ieee80211_supported_band *sband,
214 struct ieee80211_sta *sta, void *priv_sta,
215 struct sk_buff *skb)
216{
Johannes Berg8acbcdd2012-11-15 18:27:56 +0100217 struct minstrel_priv *mp = priv;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200218 struct minstrel_sta_info *mi = priv_sta;
219 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200220 struct ieee80211_tx_rate *ar = info->status.rates;
221 int i, ndx;
222 int success;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200223
Johannes Berge6a98542008-10-21 12:40:02 +0200224 success = !!(info->flags & IEEE80211_TX_STAT_ACK);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200225
Johannes Berge6a98542008-10-21 12:40:02 +0200226 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
227 if (ar[i].idx < 0)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200228 break;
229
Johannes Berge6a98542008-10-21 12:40:02 +0200230 ndx = rix_to_ndx(mi, ar[i].idx);
Luciano Coelho3938b452009-07-03 08:25:08 +0300231 if (ndx < 0)
232 continue;
233
Johannes Berge6a98542008-10-21 12:40:02 +0200234 mi->r[ndx].attempts += ar[i].count;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200235
Javier Cardonabfc32e62009-08-17 17:15:55 -0700236 if ((i != IEEE80211_TX_MAX_RATES - 1) && (ar[i + 1].idx < 0))
Felix Fietkaucccf1292008-10-05 18:07:45 +0200237 mi->r[ndx].success += success;
238 }
239
240 if ((info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) && (i >= 0))
241 mi->sample_count++;
242
243 if (mi->sample_deferred > 0)
244 mi->sample_deferred--;
Johannes Berg8acbcdd2012-11-15 18:27:56 +0100245
246 if (time_after(jiffies, mi->stats_update +
247 (mp->update_interval * HZ) / 1000))
248 minstrel_update_stats(mp, mi);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200249}
250
251
252static inline unsigned int
253minstrel_get_retry_count(struct minstrel_rate *mr,
254 struct ieee80211_tx_info *info)
255{
256 unsigned int retry = mr->adjusted_retry_count;
257
Felix Fietkau991fec02013-04-16 13:38:43 +0200258 if (info->control.use_rts)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200259 retry = max(2U, min(mr->retry_count_rtscts, retry));
Felix Fietkau991fec02013-04-16 13:38:43 +0200260 else if (info->control.use_cts_prot)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200261 retry = max(2U, min(mr->retry_count_cts, retry));
262 return retry;
263}
264
265
266static int
267minstrel_get_next_sample(struct minstrel_sta_info *mi)
268{
269 unsigned int sample_ndx;
Thomas Huehn8f157612013-03-04 23:30:03 +0100270 sample_ndx = SAMPLE_TBL(mi, mi->sample_row, mi->sample_column);
271 mi->sample_row++;
Thomas Huehnf744bf82013-03-04 23:30:05 +0100272 if ((int) mi->sample_row >= mi->n_rates) {
Thomas Huehn8f157612013-03-04 23:30:03 +0100273 mi->sample_row = 0;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200274 mi->sample_column++;
275 if (mi->sample_column >= SAMPLE_COLUMNS)
276 mi->sample_column = 0;
277 }
278 return sample_ndx;
279}
280
Johannes Berg2df78162008-10-28 16:49:41 +0100281static void
Johannes Berge6a98542008-10-21 12:40:02 +0200282minstrel_get_rate(void *priv, struct ieee80211_sta *sta,
283 void *priv_sta, struct ieee80211_tx_rate_control *txrc)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200284{
Johannes Berge6a98542008-10-21 12:40:02 +0200285 struct sk_buff *skb = txrc->skb;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200286 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
287 struct minstrel_sta_info *mi = priv_sta;
288 struct minstrel_priv *mp = priv;
Felix Fietkau06d961a2013-04-22 16:14:43 +0200289 struct ieee80211_tx_rate *rate = &info->control.rates[0];
290 struct minstrel_rate *msr, *mr;
291 unsigned int ndx;
Thomas Huehn8f157612013-03-04 23:30:03 +0100292 bool mrr_capable;
Felix Fietkau5c9fc932013-07-15 14:35:06 +0200293 bool prev_sample;
Felix Fietkau06d961a2013-04-22 16:14:43 +0200294 int delta;
Thomas Huehn8f157612013-03-04 23:30:03 +0100295 int sampling_ratio;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200296
Thomas Huehn8f157612013-03-04 23:30:03 +0100297 /* management/no-ack frames do not use rate control */
Luis R. Rodriguez4c6d4f52009-07-16 10:05:41 -0700298 if (rate_control_send_low(sta, priv_sta, txrc))
Felix Fietkaucccf1292008-10-05 18:07:45 +0200299 return;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200300
Thomas Huehn8f157612013-03-04 23:30:03 +0100301 /* check multi-rate-retry capabilities & adjust lookaround_rate */
302 mrr_capable = mp->has_mrr &&
303 !txrc->rts &&
304 !txrc->bss_conf->use_cts_prot;
305 if (mrr_capable)
306 sampling_ratio = mp->lookaround_rate_mrr;
307 else
308 sampling_ratio = mp->lookaround_rate;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200309
Thomas Huehn8f157612013-03-04 23:30:03 +0100310 /* increase sum packet counter */
Felix Fietkaucccf1292008-10-05 18:07:45 +0200311 mi->packet_count++;
Thomas Huehn8f157612013-03-04 23:30:03 +0100312
313 delta = (mi->packet_count * sampling_ratio / 100) -
Felix Fietkaucccf1292008-10-05 18:07:45 +0200314 (mi->sample_count + mi->sample_deferred / 2);
315
Felix Fietkau06d961a2013-04-22 16:14:43 +0200316 /* delta < 0: no sampling required */
Felix Fietkau5c9fc932013-07-15 14:35:06 +0200317 prev_sample = mi->prev_sample;
Felix Fietkau06d961a2013-04-22 16:14:43 +0200318 mi->prev_sample = false;
319 if (delta < 0 || (!mrr_capable && prev_sample))
320 return;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200321
Felix Fietkau06d961a2013-04-22 16:14:43 +0200322 if (mi->packet_count >= 10000) {
323 mi->sample_deferred = 0;
324 mi->sample_count = 0;
325 mi->packet_count = 0;
326 } else if (delta > mi->n_rates * 2) {
327 /* With multi-rate retry, not every planned sample
328 * attempt actually gets used, due to the way the retry
329 * chain is set up - [max_tp,sample,prob,lowest] for
330 * sample_rate < max_tp.
331 *
332 * If there's too much sampling backlog and the link
333 * starts getting worse, minstrel would start bursting
334 * out lots of sampling frames, which would result
335 * in a large throughput loss. */
336 mi->sample_count += (delta - mi->n_rates * 2);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200337 }
Felix Fietkau06d961a2013-04-22 16:14:43 +0200338
339 /* get next random rate sample */
340 ndx = minstrel_get_next_sample(mi);
341 msr = &mi->r[ndx];
342 mr = &mi->r[mi->max_tp_rate[0]];
343
344 /* Decide if direct ( 1st mrr stage) or indirect (2nd mrr stage)
345 * rate sampling method should be used.
346 * Respect such rates that are not sampled for 20 interations.
347 */
348 if (mrr_capable &&
349 msr->perfect_tx_time > mr->perfect_tx_time &&
350 msr->sample_skipped < 20) {
351 /* Only use IEEE80211_TX_CTL_RATE_CTRL_PROBE to mark
352 * packets that have the sampling rate deferred to the
353 * second MRR stage. Increase the sample counter only
354 * if the deferred sample rate was actually used.
355 * Use the sample_deferred counter to make sure that
356 * the sampling is not done in large bursts */
357 info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
358 rate++;
359 mi->sample_deferred++;
360 } else {
361 if (!msr->sample_limit != 0)
362 return;
363
364 mi->sample_count++;
365 if (msr->sample_limit > 0)
366 msr->sample_limit--;
367 }
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200368
369 /* If we're not using MRR and the sampling rate already
370 * has a probability of >95%, we shouldn't be attempting
371 * to use it, as this only wastes precious airtime */
Felix Fietkau06d961a2013-04-22 16:14:43 +0200372 if (!mrr_capable &&
Thomas Huehn8f157612013-03-04 23:30:03 +0100373 (mi->r[ndx].probability > MINSTREL_FRAC(95, 100)))
Felix Fietkaucccf1292008-10-05 18:07:45 +0200374 return;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200375
Felix Fietkau06d961a2013-04-22 16:14:43 +0200376 mi->prev_sample = true;
Thomas Huehn8f157612013-03-04 23:30:03 +0100377
Felix Fietkau06d961a2013-04-22 16:14:43 +0200378 rate->idx = mi->r[ndx].rix;
379 rate->count = minstrel_get_retry_count(&mi->r[ndx], info);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200380}
381
382
383static void
Michal Kazior4ee73f32012-04-11 08:47:56 +0200384calc_rate_durations(enum ieee80211_band band,
385 struct minstrel_rate *d,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200386 struct ieee80211_rate *rate,
387 struct cfg80211_chan_def *chandef)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200388{
389 int erp = !!(rate->flags & IEEE80211_RATE_ERP_G);
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200390 int shift = ieee80211_chandef_get_shift(chandef);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200391
Michal Kazior4ee73f32012-04-11 08:47:56 +0200392 d->perfect_tx_time = ieee80211_frame_duration(band, 1200,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200393 DIV_ROUND_UP(rate->bitrate, 1 << shift), erp, 1,
394 shift);
Michal Kazior4ee73f32012-04-11 08:47:56 +0200395 d->ack_time = ieee80211_frame_duration(band, 10,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200396 DIV_ROUND_UP(rate->bitrate, 1 << shift), erp, 1,
397 shift);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200398}
399
400static void
401init_sample_table(struct minstrel_sta_info *mi)
402{
403 unsigned int i, col, new_idx;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200404 u8 rnd[8];
405
406 mi->sample_column = 0;
Thomas Huehn8f157612013-03-04 23:30:03 +0100407 mi->sample_row = 0;
Thomas Huehnf744bf82013-03-04 23:30:05 +0100408 memset(mi->sample_table, 0xff, SAMPLE_COLUMNS * mi->n_rates);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200409
410 for (col = 0; col < SAMPLE_COLUMNS; col++) {
Thomas Huehnf744bf82013-03-04 23:30:05 +0100411 for (i = 0; i < mi->n_rates; i++) {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200412 get_random_bytes(rnd, sizeof(rnd));
Thomas Huehnf744bf82013-03-04 23:30:05 +0100413 new_idx = (i + rnd[i & 7]) % mi->n_rates;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200414
Thomas Huehnf744bf82013-03-04 23:30:05 +0100415 while (SAMPLE_TBL(mi, new_idx, col) != 0xff)
416 new_idx = (new_idx + 1) % mi->n_rates;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200417
Thomas Huehnf744bf82013-03-04 23:30:05 +0100418 SAMPLE_TBL(mi, new_idx, col) = i;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200419 }
420 }
421}
422
423static void
424minstrel_rate_init(void *priv, struct ieee80211_supported_band *sband,
Simon Wunderlich3de805c2013-07-08 16:55:50 +0200425 struct cfg80211_chan_def *chandef,
426 struct ieee80211_sta *sta, void *priv_sta)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200427{
428 struct minstrel_sta_info *mi = priv_sta;
429 struct minstrel_priv *mp = priv;
Christian Lamparterd57854b2008-12-22 15:35:31 +0100430 struct ieee80211_rate *ctl_rate;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200431 unsigned int i, n = 0;
432 unsigned int t_slot = 9; /* FIXME: get real slot time */
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200433 u32 rate_flags;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200434
Felix Fietkau06d961a2013-04-22 16:14:43 +0200435 mi->sta = sta;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200436 mi->lowest_rix = rate_lowest_index(sband, sta);
Christian Lamparterd57854b2008-12-22 15:35:31 +0100437 ctl_rate = &sband->bitrates[mi->lowest_rix];
Michal Kazior4ee73f32012-04-11 08:47:56 +0200438 mi->sp_ack_dur = ieee80211_frame_duration(sband->band, 10,
439 ctl_rate->bitrate,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200440 !!(ctl_rate->flags & IEEE80211_RATE_ERP_G), 1,
441 ieee80211_chandef_get_shift(chandef));
Felix Fietkaucccf1292008-10-05 18:07:45 +0200442
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200443 rate_flags = ieee80211_chandef_rate_flags(&mp->hw->conf.chandef);
Felix Fietkau06d961a2013-04-22 16:14:43 +0200444 memset(mi->max_tp_rate, 0, sizeof(mi->max_tp_rate));
445 mi->max_prob_rate = 0;
446
Felix Fietkaucccf1292008-10-05 18:07:45 +0200447 for (i = 0; i < sband->n_bitrates; i++) {
448 struct minstrel_rate *mr = &mi->r[n];
449 unsigned int tx_time = 0, tx_time_cts = 0, tx_time_rtscts = 0;
450 unsigned int tx_time_single;
451 unsigned int cw = mp->cw_min;
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200452 int shift;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200453
454 if (!rate_supported(sta, sband->band, i))
455 continue;
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200456 if ((rate_flags & sband->bitrates[i].flags) != rate_flags)
457 continue;
458
Felix Fietkaucccf1292008-10-05 18:07:45 +0200459 n++;
460 memset(mr, 0, sizeof(*mr));
461
462 mr->rix = i;
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200463 shift = ieee80211_chandef_get_shift(chandef);
464 mr->bitrate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
465 (1 << shift) * 5);
466 calc_rate_durations(sband->band, mr, &sband->bitrates[i],
467 chandef);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200468
469 /* calculate maximum number of retransmissions before
470 * fallback (based on maximum segment size) */
Felix Fietkauf4a8cd92008-10-15 19:13:59 +0200471 mr->sample_limit = -1;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200472 mr->retry_count = 1;
473 mr->retry_count_cts = 1;
474 mr->retry_count_rtscts = 1;
475 tx_time = mr->perfect_tx_time + mi->sp_ack_dur;
476 do {
477 /* add one retransmission */
478 tx_time_single = mr->ack_time + mr->perfect_tx_time;
479
480 /* contention window */
Daniel Halperin8fddddf2011-05-10 19:00:45 -0700481 tx_time_single += (t_slot * cw) >> 1;
482 cw = min((cw << 1) | 1, mp->cw_max);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200483
484 tx_time += tx_time_single;
485 tx_time_cts += tx_time_single + mi->sp_ack_dur;
486 tx_time_rtscts += tx_time_single + 2 * mi->sp_ack_dur;
487 if ((tx_time_cts < mp->segment_size) &&
488 (mr->retry_count_cts < mp->max_retry))
489 mr->retry_count_cts++;
490 if ((tx_time_rtscts < mp->segment_size) &&
491 (mr->retry_count_rtscts < mp->max_retry))
492 mr->retry_count_rtscts++;
493 } while ((tx_time < mp->segment_size) &&
494 (++mr->retry_count < mp->max_retry));
495 mr->adjusted_retry_count = mr->retry_count;
Felix Fietkau991fec02013-04-16 13:38:43 +0200496 if (!(sband->bitrates[i].flags & IEEE80211_RATE_ERP_G))
497 mr->retry_count_cts = mr->retry_count;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200498 }
499
500 for (i = n; i < sband->n_bitrates; i++) {
501 struct minstrel_rate *mr = &mi->r[i];
502 mr->rix = -1;
503 }
504
505 mi->n_rates = n;
506 mi->stats_update = jiffies;
507
508 init_sample_table(mi);
Felix Fietkau06d961a2013-04-22 16:14:43 +0200509 minstrel_update_rates(mp, mi);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200510}
511
512static void *
513minstrel_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
514{
515 struct ieee80211_supported_band *sband;
516 struct minstrel_sta_info *mi;
517 struct minstrel_priv *mp = priv;
518 struct ieee80211_hw *hw = mp->hw;
519 int max_rates = 0;
520 int i;
521
522 mi = kzalloc(sizeof(struct minstrel_sta_info), gfp);
523 if (!mi)
524 return NULL;
525
526 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Jiri Slaby8e532172009-05-04 18:04:55 +0200527 sband = hw->wiphy->bands[i];
John W. Linville621ad7c2009-05-05 15:18:26 -0400528 if (sband && sband->n_bitrates > max_rates)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200529 max_rates = sband->n_bitrates;
530 }
531
532 mi->r = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
533 if (!mi->r)
534 goto error;
535
536 mi->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
537 if (!mi->sample_table)
538 goto error1;
539
540 mi->stats_update = jiffies;
541 return mi;
542
543error1:
544 kfree(mi->r);
545error:
546 kfree(mi);
547 return NULL;
548}
549
550static void
551minstrel_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
552{
553 struct minstrel_sta_info *mi = priv_sta;
554
555 kfree(mi->sample_table);
556 kfree(mi->r);
557 kfree(mi);
558}
559
Felix Fietkaua0497f92013-02-13 10:51:08 +0100560static void
561minstrel_init_cck_rates(struct minstrel_priv *mp)
562{
563 static const int bitrates[4] = { 10, 20, 55, 110 };
564 struct ieee80211_supported_band *sband;
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200565 u32 rate_flags = ieee80211_chandef_rate_flags(&mp->hw->conf.chandef);
Felix Fietkaua0497f92013-02-13 10:51:08 +0100566 int i, j;
567
568 sband = mp->hw->wiphy->bands[IEEE80211_BAND_2GHZ];
569 if (!sband)
570 return;
571
572 for (i = 0, j = 0; i < sband->n_bitrates; i++) {
573 struct ieee80211_rate *rate = &sband->bitrates[i];
574
575 if (rate->flags & IEEE80211_RATE_ERP_G)
576 continue;
577
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200578 if ((rate_flags & sband->bitrates[i].flags) != rate_flags)
579 continue;
580
Felix Fietkaua0497f92013-02-13 10:51:08 +0100581 for (j = 0; j < ARRAY_SIZE(bitrates); j++) {
582 if (rate->bitrate != bitrates[j])
583 continue;
584
585 mp->cck_rates[j] = i;
586 break;
587 }
588 }
589}
590
Felix Fietkaucccf1292008-10-05 18:07:45 +0200591static void *
592minstrel_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
593{
594 struct minstrel_priv *mp;
595
596 mp = kzalloc(sizeof(struct minstrel_priv), GFP_ATOMIC);
597 if (!mp)
598 return NULL;
599
600 /* contention window settings
601 * Just an approximation. Using the per-queue values would complicate
602 * the calculations and is probably unnecessary */
603 mp->cw_min = 15;
604 mp->cw_max = 1023;
605
606 /* number of packets (in %) to use for sampling other rates
607 * sample less often for non-mrr packets, because the overhead
608 * is much higher than with mrr */
609 mp->lookaround_rate = 5;
610 mp->lookaround_rate_mrr = 10;
611
Felix Fietkaucccf1292008-10-05 18:07:45 +0200612 /* maximum time that the hw is allowed to stay in one MRR segment */
613 mp->segment_size = 6000;
614
Johannes Berge6a98542008-10-21 12:40:02 +0200615 if (hw->max_rate_tries > 0)
616 mp->max_retry = hw->max_rate_tries;
Felix Fietkaucccf1292008-10-05 18:07:45 +0200617 else
618 /* safe default, does not necessarily have to match hw properties */
619 mp->max_retry = 7;
620
Johannes Berge6a98542008-10-21 12:40:02 +0200621 if (hw->max_rates >= 4)
Felix Fietkaucccf1292008-10-05 18:07:45 +0200622 mp->has_mrr = true;
623
624 mp->hw = hw;
625 mp->update_interval = 100;
626
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200627#ifdef CONFIG_MAC80211_DEBUGFS
628 mp->fixed_rate_idx = (u32) -1;
629 mp->dbg_fixed_rate = debugfs_create_u32("fixed_rate_idx",
630 S_IRUGO | S_IWUGO, debugfsdir, &mp->fixed_rate_idx);
631#endif
632
Felix Fietkaua0497f92013-02-13 10:51:08 +0100633 minstrel_init_cck_rates(mp);
634
Felix Fietkaucccf1292008-10-05 18:07:45 +0200635 return mp;
636}
637
638static void
639minstrel_free(void *priv)
640{
Zefir Kurtisi24f75802011-05-20 20:29:17 +0200641#ifdef CONFIG_MAC80211_DEBUGFS
642 debugfs_remove(((struct minstrel_priv *)priv)->dbg_fixed_rate);
643#endif
Felix Fietkaucccf1292008-10-05 18:07:45 +0200644 kfree(priv);
645}
646
Felix Fietkaueae44752010-03-01 22:21:40 +0100647struct rate_control_ops mac80211_minstrel = {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200648 .name = "minstrel",
649 .tx_status = minstrel_tx_status,
650 .get_rate = minstrel_get_rate,
651 .rate_init = minstrel_rate_init,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200652 .alloc = minstrel_alloc,
653 .free = minstrel_free,
654 .alloc_sta = minstrel_alloc_sta,
655 .free_sta = minstrel_free_sta,
656#ifdef CONFIG_MAC80211_DEBUGFS
657 .add_sta_debugfs = minstrel_add_sta_debugfs,
658 .remove_sta_debugfs = minstrel_remove_sta_debugfs,
659#endif
660};
661
662int __init
663rc80211_minstrel_init(void)
664{
665 return ieee80211_rate_control_register(&mac80211_minstrel);
666}
667
668void
669rc80211_minstrel_exit(void)
670{
671 ieee80211_rate_control_unregister(&mac80211_minstrel);
672}
673