blob: 85c22641542d6a8ed93226e2a3ee9b6c3f4e4b2c [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatreeb7ae892008-03-11 16:17:17 -07003 * Copyright(c) 2005 - 2008 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26
27#include <linux/kernel.h>
28#include <linux/init.h>
29#include <linux/skbuff.h>
30#include <linux/wireless.h>
31#include <net/mac80211.h>
32#include <net/ieee80211.h>
33
34#include <linux/netdevice.h>
35#include <linux/etherdevice.h>
36#include <linux/delay.h>
37
38#include <linux/workqueue.h>
39
Johannes Berg2c8dccc2008-04-08 15:14:40 -040040#include "../net/mac80211/rate.h"
Zhu Yib481de92007-09-25 17:54:57 -070041
Christoph Hellwig5d08cd12007-10-25 17:15:50 +080042#include "iwl-3945.h"
Zhu Yib481de92007-09-25 17:54:57 -070043
44#define RS_NAME "iwl-3945-rs"
45
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080046struct iwl3945_rate_scale_data {
Zhu Yib481de92007-09-25 17:54:57 -070047 u64 data;
48 s32 success_counter;
49 s32 success_ratio;
50 s32 counter;
51 s32 average_tpt;
52 unsigned long stamp;
53};
54
Tomas Winklerfa254a62008-01-27 20:41:38 -080055struct iwl3945_rs_sta {
Zhu Yib481de92007-09-25 17:54:57 -070056 spinlock_t lock;
57 s32 *expected_tpt;
58 unsigned long last_partial_flush;
59 unsigned long last_flush;
60 u32 flush_time;
61 u32 last_tx_packets;
62 u32 tx_packets;
63 u8 tgg;
64 u8 flush_pending;
65 u8 start_rate;
66 u8 ibss_sta_added;
67 struct timer_list rate_scale_flush;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080068 struct iwl3945_rate_scale_data win[IWL_RATE_COUNT];
Zhu Yib481de92007-09-25 17:54:57 -070069};
70
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080071static s32 iwl3945_expected_tpt_g[IWL_RATE_COUNT] = {
Mohamed Abbas14577f22007-11-12 11:37:42 +080072 7, 13, 35, 58, 0, 0, 76, 104, 130, 168, 191, 202
Zhu Yib481de92007-09-25 17:54:57 -070073};
74
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080075static s32 iwl3945_expected_tpt_g_prot[IWL_RATE_COUNT] = {
Mohamed Abbas14577f22007-11-12 11:37:42 +080076 7, 13, 35, 58, 0, 0, 0, 80, 93, 113, 123, 125
Zhu Yib481de92007-09-25 17:54:57 -070077};
78
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080079static s32 iwl3945_expected_tpt_a[IWL_RATE_COUNT] = {
Mohamed Abbas14577f22007-11-12 11:37:42 +080080 0, 0, 0, 0, 40, 57, 72, 98, 121, 154, 177, 186
Zhu Yib481de92007-09-25 17:54:57 -070081};
82
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080083static s32 iwl3945_expected_tpt_b[IWL_RATE_COUNT] = {
Mohamed Abbas14577f22007-11-12 11:37:42 +080084 7, 13, 35, 58, 0, 0, 0, 0, 0, 0, 0, 0
Zhu Yib481de92007-09-25 17:54:57 -070085};
86
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080087struct iwl3945_tpt_entry {
Zhu Yib481de92007-09-25 17:54:57 -070088 s8 min_rssi;
89 u8 index;
90};
91
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080092static struct iwl3945_tpt_entry iwl3945_tpt_table_a[] = {
Zhu Yib481de92007-09-25 17:54:57 -070093 {-60, IWL_RATE_54M_INDEX},
94 {-64, IWL_RATE_48M_INDEX},
95 {-72, IWL_RATE_36M_INDEX},
96 {-80, IWL_RATE_24M_INDEX},
97 {-84, IWL_RATE_18M_INDEX},
98 {-85, IWL_RATE_12M_INDEX},
99 {-87, IWL_RATE_9M_INDEX},
100 {-89, IWL_RATE_6M_INDEX}
101};
102
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800103static struct iwl3945_tpt_entry iwl3945_tpt_table_g[] = {
Zhu Yib481de92007-09-25 17:54:57 -0700104 {-60, IWL_RATE_54M_INDEX},
105 {-64, IWL_RATE_48M_INDEX},
106 {-68, IWL_RATE_36M_INDEX},
107 {-80, IWL_RATE_24M_INDEX},
108 {-84, IWL_RATE_18M_INDEX},
109 {-85, IWL_RATE_12M_INDEX},
110 {-86, IWL_RATE_11M_INDEX},
111 {-88, IWL_RATE_5M_INDEX},
112 {-90, IWL_RATE_2M_INDEX},
113 {-92, IWL_RATE_1M_INDEX}
114};
115
116#define IWL_RATE_MAX_WINDOW 62
117#define IWL_RATE_FLUSH (3*HZ/10)
118#define IWL_RATE_WIN_FLUSH (HZ/2)
119#define IWL_RATE_HIGH_TH 11520
120#define IWL_RATE_MIN_FAILURE_TH 8
121#define IWL_RATE_MIN_SUCCESS_TH 8
122#define IWL_RATE_DECREASE_TH 1920
123
Johannes Berg8318d782008-01-24 19:38:38 +0100124static u8 iwl3945_get_rate_index_by_rssi(s32 rssi, enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700125{
126 u32 index = 0;
127 u32 table_size = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800128 struct iwl3945_tpt_entry *tpt_table = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700129
130 if ((rssi < IWL_MIN_RSSI_VAL) || (rssi > IWL_MAX_RSSI_VAL))
131 rssi = IWL_MIN_RSSI_VAL;
132
Johannes Berg8318d782008-01-24 19:38:38 +0100133 switch (band) {
134 case IEEE80211_BAND_2GHZ:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800135 tpt_table = iwl3945_tpt_table_g;
136 table_size = ARRAY_SIZE(iwl3945_tpt_table_g);
Zhu Yib481de92007-09-25 17:54:57 -0700137 break;
138
Johannes Berg8318d782008-01-24 19:38:38 +0100139 case IEEE80211_BAND_5GHZ:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800140 tpt_table = iwl3945_tpt_table_a;
141 table_size = ARRAY_SIZE(iwl3945_tpt_table_a);
Zhu Yib481de92007-09-25 17:54:57 -0700142 break;
143
144 default:
Johannes Berg8318d782008-01-24 19:38:38 +0100145 BUG();
Zhu Yib481de92007-09-25 17:54:57 -0700146 break;
147 }
148
149 while ((index < table_size) && (rssi < tpt_table[index].min_rssi))
150 index++;
151
152 index = min(index, (table_size - 1));
153
154 return tpt_table[index].index;
155}
156
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800157static void iwl3945_clear_window(struct iwl3945_rate_scale_data *window)
Zhu Yib481de92007-09-25 17:54:57 -0700158{
159 window->data = 0;
160 window->success_counter = 0;
Tomas Winkler28447f32008-03-06 17:36:54 -0800161 window->success_ratio = -1;
Zhu Yib481de92007-09-25 17:54:57 -0700162 window->counter = 0;
Tomas Winkler28447f32008-03-06 17:36:54 -0800163 window->average_tpt = IWL_INV_TPT;
Zhu Yib481de92007-09-25 17:54:57 -0700164 window->stamp = 0;
165}
166
167/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800168 * iwl3945_rate_scale_flush_windows - flush out the rate scale windows
Zhu Yib481de92007-09-25 17:54:57 -0700169 *
170 * Returns the number of windows that have gathered data but were
171 * not flushed. If there were any that were not flushed, then
172 * reschedule the rate flushing routine.
173 */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800174static int iwl3945_rate_scale_flush_windows(struct iwl3945_rs_sta *rs_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700175{
176 int unflushed = 0;
177 int i;
178 unsigned long flags;
179
180 /*
181 * For each rate, if we have collected data on that rate
182 * and it has been more than IWL_RATE_WIN_FLUSH
183 * since we flushed, clear out the gathered statistics
184 */
185 for (i = 0; i < IWL_RATE_COUNT; i++) {
Tomas Winklerfa254a62008-01-27 20:41:38 -0800186 if (!rs_sta->win[i].counter)
Zhu Yib481de92007-09-25 17:54:57 -0700187 continue;
188
Tomas Winklerfa254a62008-01-27 20:41:38 -0800189 spin_lock_irqsave(&rs_sta->lock, flags);
190 if (time_after(jiffies, rs_sta->win[i].stamp +
Zhu Yib481de92007-09-25 17:54:57 -0700191 IWL_RATE_WIN_FLUSH)) {
192 IWL_DEBUG_RATE("flushing %d samples of rate "
193 "index %d\n",
Tomas Winklerfa254a62008-01-27 20:41:38 -0800194 rs_sta->win[i].counter, i);
195 iwl3945_clear_window(&rs_sta->win[i]);
Zhu Yib481de92007-09-25 17:54:57 -0700196 } else
197 unflushed++;
Tomas Winklerfa254a62008-01-27 20:41:38 -0800198 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700199 }
200
201 return unflushed;
202}
203
204#define IWL_RATE_FLUSH_MAX 5000 /* msec */
205#define IWL_RATE_FLUSH_MIN 50 /* msec */
206
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800207static void iwl3945_bg_rate_scale_flush(unsigned long data)
Zhu Yib481de92007-09-25 17:54:57 -0700208{
Tomas Winklerfa254a62008-01-27 20:41:38 -0800209 struct iwl3945_rs_sta *rs_sta = (void *)data;
Zhu Yib481de92007-09-25 17:54:57 -0700210 int unflushed = 0;
211 unsigned long flags;
212 u32 packet_count, duration, pps;
213
214 IWL_DEBUG_RATE("enter\n");
215
Tomas Winklerfa254a62008-01-27 20:41:38 -0800216 unflushed = iwl3945_rate_scale_flush_windows(rs_sta);
Zhu Yib481de92007-09-25 17:54:57 -0700217
Tomas Winklerfa254a62008-01-27 20:41:38 -0800218 spin_lock_irqsave(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700219
Tomas Winklerfa254a62008-01-27 20:41:38 -0800220 rs_sta->flush_pending = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700221
222 /* Number of packets Rx'd since last time this timer ran */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800223 packet_count = (rs_sta->tx_packets - rs_sta->last_tx_packets) + 1;
Zhu Yib481de92007-09-25 17:54:57 -0700224
Tomas Winklerfa254a62008-01-27 20:41:38 -0800225 rs_sta->last_tx_packets = rs_sta->tx_packets + 1;
Zhu Yib481de92007-09-25 17:54:57 -0700226
227 if (unflushed) {
228 duration =
Tomas Winklerfa254a62008-01-27 20:41:38 -0800229 jiffies_to_msecs(jiffies - rs_sta->last_partial_flush);
230/* duration = jiffies_to_msecs(rs_sta->flush_time); */
Zhu Yib481de92007-09-25 17:54:57 -0700231
232 IWL_DEBUG_RATE("Tx'd %d packets in %dms\n",
233 packet_count, duration);
234
235 /* Determine packets per second */
236 if (duration)
237 pps = (packet_count * 1000) / duration;
238 else
239 pps = 0;
240
241 if (pps) {
242 duration = IWL_RATE_FLUSH_MAX / pps;
243 if (duration < IWL_RATE_FLUSH_MIN)
244 duration = IWL_RATE_FLUSH_MIN;
245 } else
246 duration = IWL_RATE_FLUSH_MAX;
247
Tomas Winklerfa254a62008-01-27 20:41:38 -0800248 rs_sta->flush_time = msecs_to_jiffies(duration);
Zhu Yib481de92007-09-25 17:54:57 -0700249
250 IWL_DEBUG_RATE("new flush period: %d msec ave %d\n",
251 duration, packet_count);
252
Tomas Winklerfa254a62008-01-27 20:41:38 -0800253 mod_timer(&rs_sta->rate_scale_flush, jiffies +
254 rs_sta->flush_time);
Zhu Yib481de92007-09-25 17:54:57 -0700255
Tomas Winklerfa254a62008-01-27 20:41:38 -0800256 rs_sta->last_partial_flush = jiffies;
Zhu Yib481de92007-09-25 17:54:57 -0700257 }
258
259 /* If there weren't any unflushed entries, we don't schedule the timer
260 * to run again */
261
Tomas Winklerfa254a62008-01-27 20:41:38 -0800262 rs_sta->last_flush = jiffies;
Zhu Yib481de92007-09-25 17:54:57 -0700263
Tomas Winklerfa254a62008-01-27 20:41:38 -0800264 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700265
266 IWL_DEBUG_RATE("leave\n");
267}
268
269/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800270 * iwl3945_collect_tx_data - Update the success/failure sliding window
Zhu Yib481de92007-09-25 17:54:57 -0700271 *
272 * We keep a sliding window of the last 64 packets transmitted
273 * at this rate. window->data contains the bitmask of successful
274 * packets.
275 */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800276static void iwl3945_collect_tx_data(struct iwl3945_rs_sta *rs_sta,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800277 struct iwl3945_rate_scale_data *window,
Zhu Yib481de92007-09-25 17:54:57 -0700278 int success, int retries)
279{
280 unsigned long flags;
281
282 if (!retries) {
283 IWL_DEBUG_RATE("leave: retries == 0 -- should be at least 1\n");
284 return;
285 }
286
287 while (retries--) {
Tomas Winklerfa254a62008-01-27 20:41:38 -0800288 spin_lock_irqsave(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700289
290 /* If we have filled up the window then subtract one from the
291 * success counter if the high-bit is counting toward
292 * success */
293 if (window->counter == IWL_RATE_MAX_WINDOW) {
294 if (window->data & (1ULL << (IWL_RATE_MAX_WINDOW - 1)))
295 window->success_counter--;
296 } else
297 window->counter++;
298
299 /* Slide the window to the left one bit */
300 window->data = (window->data << 1);
301
302 /* If this packet was a success then set the low bit high */
303 if (success) {
304 window->success_counter++;
305 window->data |= 1;
306 }
307
308 /* window->counter can't be 0 -- it is either >0 or
309 * IWL_RATE_MAX_WINDOW */
310 window->success_ratio = 12800 * window->success_counter /
311 window->counter;
312
313 /* Tag this window as having been updated */
314 window->stamp = jiffies;
315
Tomas Winklerfa254a62008-01-27 20:41:38 -0800316 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700317 }
318}
319
320static void rs_rate_init(void *priv_rate, void *priv_sta,
321 struct ieee80211_local *local, struct sta_info *sta)
322{
323 int i;
324
325 IWL_DEBUG_RATE("enter\n");
326
327 /* TODO: what is a good starting rate for STA? About middle? Maybe not
328 * the lowest or the highest rate.. Could consider using RSSI from
329 * previous packets? Need to have IEEE 802.1X auth succeed immediately
330 * after assoc.. */
331
332 for (i = IWL_RATE_COUNT - 1; i >= 0; i--) {
Johannes Berg8318d782008-01-24 19:38:38 +0100333 if (sta->supp_rates[local->hw.conf.channel->band] & (1 << i)) {
334 sta->txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -0700335 break;
336 }
337 }
338
Johannes Berg8318d782008-01-24 19:38:38 +0100339 sta->last_txrate_idx = sta->txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -0700340
Johannes Berg8318d782008-01-24 19:38:38 +0100341 /* For 5 GHz band it start at IWL_FIRST_OFDM_RATE */
342 if (local->hw.conf.channel->band == IEEE80211_BAND_5GHZ)
343 sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
Mohamed Abbas14577f22007-11-12 11:37:42 +0800344
Zhu Yib481de92007-09-25 17:54:57 -0700345 IWL_DEBUG_RATE("leave\n");
346}
347
348static void *rs_alloc(struct ieee80211_local *local)
349{
350 return local->hw.priv;
351}
352
Ian Schram01ebd062007-10-25 17:15:22 +0800353/* rate scale requires free function to be implemented */
Zhu Yib481de92007-09-25 17:54:57 -0700354static void rs_free(void *priv)
355{
356 return;
357}
358static void rs_clear(void *priv)
359{
360 return;
361}
362
363
364static void *rs_alloc_sta(void *priv, gfp_t gfp)
365{
Tomas Winklerfa254a62008-01-27 20:41:38 -0800366 struct iwl3945_rs_sta *rs_sta;
Zhu Yib481de92007-09-25 17:54:57 -0700367 int i;
368
369 IWL_DEBUG_RATE("enter\n");
370
Tomas Winklerfa254a62008-01-27 20:41:38 -0800371 rs_sta = kzalloc(sizeof(struct iwl3945_rs_sta), gfp);
372 if (!rs_sta) {
Zhu Yib481de92007-09-25 17:54:57 -0700373 IWL_DEBUG_RATE("leave: ENOMEM\n");
374 return NULL;
375 }
376
Tomas Winklerfa254a62008-01-27 20:41:38 -0800377 spin_lock_init(&rs_sta->lock);
Zhu Yib481de92007-09-25 17:54:57 -0700378
Tomas Winklerfa254a62008-01-27 20:41:38 -0800379 rs_sta->start_rate = IWL_RATE_INVALID;
Zhu Yib481de92007-09-25 17:54:57 -0700380
381 /* default to just 802.11b */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800382 rs_sta->expected_tpt = iwl3945_expected_tpt_b;
Zhu Yib481de92007-09-25 17:54:57 -0700383
Tomas Winklerfa254a62008-01-27 20:41:38 -0800384 rs_sta->last_partial_flush = jiffies;
385 rs_sta->last_flush = jiffies;
386 rs_sta->flush_time = IWL_RATE_FLUSH;
387 rs_sta->last_tx_packets = 0;
388 rs_sta->ibss_sta_added = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700389
Tomas Winklerfa254a62008-01-27 20:41:38 -0800390 init_timer(&rs_sta->rate_scale_flush);
391 rs_sta->rate_scale_flush.data = (unsigned long)rs_sta;
392 rs_sta->rate_scale_flush.function = &iwl3945_bg_rate_scale_flush;
Zhu Yib481de92007-09-25 17:54:57 -0700393
394 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winklerfa254a62008-01-27 20:41:38 -0800395 iwl3945_clear_window(&rs_sta->win[i]);
Zhu Yib481de92007-09-25 17:54:57 -0700396
397 IWL_DEBUG_RATE("leave\n");
398
Tomas Winklerfa254a62008-01-27 20:41:38 -0800399 return rs_sta;
Zhu Yib481de92007-09-25 17:54:57 -0700400}
401
402static void rs_free_sta(void *priv, void *priv_sta)
403{
Tomas Winklerfa254a62008-01-27 20:41:38 -0800404 struct iwl3945_rs_sta *rs_sta = priv_sta;
Zhu Yib481de92007-09-25 17:54:57 -0700405
406 IWL_DEBUG_RATE("enter\n");
Tomas Winklerfa254a62008-01-27 20:41:38 -0800407 del_timer_sync(&rs_sta->rate_scale_flush);
408 kfree(rs_sta);
Zhu Yib481de92007-09-25 17:54:57 -0700409 IWL_DEBUG_RATE("leave\n");
410}
411
Mohamed Abbas14577f22007-11-12 11:37:42 +0800412
413/*
414 * get ieee prev rate from rate scale table.
415 * for A and B mode we need to overright prev
416 * value
417 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800418static int rs_adjust_next_rate(struct iwl3945_priv *priv, int rate)
Mohamed Abbas14577f22007-11-12 11:37:42 +0800419{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800420 int next_rate = iwl3945_get_prev_ieee_rate(rate);
Mohamed Abbas14577f22007-11-12 11:37:42 +0800421
Johannes Berg8318d782008-01-24 19:38:38 +0100422 switch (priv->band) {
423 case IEEE80211_BAND_5GHZ:
Mohamed Abbas14577f22007-11-12 11:37:42 +0800424 if (rate == IWL_RATE_12M_INDEX)
425 next_rate = IWL_RATE_9M_INDEX;
426 else if (rate == IWL_RATE_6M_INDEX)
427 next_rate = IWL_RATE_6M_INDEX;
428 break;
Johannes Berg8318d782008-01-24 19:38:38 +0100429/* XXX cannot be invoked in current mac80211 so not a regression
Mohamed Abbas14577f22007-11-12 11:37:42 +0800430 case MODE_IEEE80211B:
431 if (rate == IWL_RATE_11M_INDEX_TABLE)
432 next_rate = IWL_RATE_5M_INDEX_TABLE;
433 break;
Johannes Berg8318d782008-01-24 19:38:38 +0100434 */
Mohamed Abbas14577f22007-11-12 11:37:42 +0800435 default:
436 break;
437 }
438
439 return next_rate;
440}
Zhu Yib481de92007-09-25 17:54:57 -0700441/**
442 * rs_tx_status - Update rate control values based on Tx results
443 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800444 * NOTE: Uses iwl3945_priv->retry_rate for the # of retries attempted by
Zhu Yib481de92007-09-25 17:54:57 -0700445 * the hardware for each rate.
446 */
447static void rs_tx_status(void *priv_rate,
448 struct net_device *dev,
449 struct sk_buff *skb,
450 struct ieee80211_tx_status *tx_resp)
451{
452 u8 retries, current_count;
453 int scale_rate_index, first_index, last_index;
454 unsigned long flags;
455 struct sta_info *sta;
456 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800457 struct iwl3945_priv *priv = (struct iwl3945_priv *)priv_rate;
Zhu Yib481de92007-09-25 17:54:57 -0700458 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Tomas Winklerfa254a62008-01-27 20:41:38 -0800459 struct iwl3945_rs_sta *rs_sta;
Johannes Berg8318d782008-01-24 19:38:38 +0100460 struct ieee80211_supported_band *sband;
461
Zhu Yib481de92007-09-25 17:54:57 -0700462 IWL_DEBUG_RATE("enter\n");
463
Tomas Winkler28447f32008-03-06 17:36:54 -0800464 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
465
466
Zhu Yib481de92007-09-25 17:54:57 -0700467 retries = tx_resp->retry_count;
Tomas Winkler28447f32008-03-06 17:36:54 -0800468 first_index = tx_resp->control.tx_rate->hw_value;
Zhu Yib481de92007-09-25 17:54:57 -0700469 if ((first_index < 0) || (first_index >= IWL_RATE_COUNT)) {
Johannes Berg8318d782008-01-24 19:38:38 +0100470 IWL_DEBUG_RATE("leave: Rate out of bounds: %d\n", first_index);
Zhu Yib481de92007-09-25 17:54:57 -0700471 return;
472 }
473
Johannes Bergd0709a62008-02-25 16:27:46 +0100474 rcu_read_lock();
475
Zhu Yib481de92007-09-25 17:54:57 -0700476 sta = sta_info_get(local, hdr->addr1);
477 if (!sta || !sta->rate_ctrl_priv) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100478 rcu_read_unlock();
Zhu Yib481de92007-09-25 17:54:57 -0700479 IWL_DEBUG_RATE("leave: No STA priv data to update!\n");
480 return;
481 }
482
Tomas Winklerfa254a62008-01-27 20:41:38 -0800483 rs_sta = (void *)sta->rate_ctrl_priv;
Zhu Yib481de92007-09-25 17:54:57 -0700484
Tomas Winklerfa254a62008-01-27 20:41:38 -0800485 rs_sta->tx_packets++;
Zhu Yib481de92007-09-25 17:54:57 -0700486
487 scale_rate_index = first_index;
488 last_index = first_index;
489
490 /*
491 * Update the window for each rate. We determine which rates
492 * were Tx'd based on the total number of retries vs. the number
493 * of retries configured for each rate -- currently set to the
494 * priv value 'retry_rate' vs. rate specific
495 *
496 * On exit from this while loop last_index indicates the rate
497 * at which the frame was finally transmitted (or failed if no
498 * ACK)
499 */
500 while (retries > 0) {
501 if (retries < priv->retry_rate) {
502 current_count = retries;
503 last_index = scale_rate_index;
504 } else {
505 current_count = priv->retry_rate;
Mohamed Abbas14577f22007-11-12 11:37:42 +0800506 last_index = rs_adjust_next_rate(priv,
507 scale_rate_index);
Zhu Yib481de92007-09-25 17:54:57 -0700508 }
509
510 /* Update this rate accounting for as many retries
511 * as was used for it (per current_count) */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800512 iwl3945_collect_tx_data(rs_sta,
513 &rs_sta->win[scale_rate_index],
Zhu Yib481de92007-09-25 17:54:57 -0700514 0, current_count);
515 IWL_DEBUG_RATE("Update rate %d for %d retries.\n",
516 scale_rate_index, current_count);
517
518 retries -= current_count;
519
520 if (retries)
521 scale_rate_index =
Mohamed Abbas14577f22007-11-12 11:37:42 +0800522 rs_adjust_next_rate(priv, scale_rate_index);
Zhu Yib481de92007-09-25 17:54:57 -0700523 }
524
Mohamed Abbas14577f22007-11-12 11:37:42 +0800525
Zhu Yib481de92007-09-25 17:54:57 -0700526 /* Update the last index window with success/failure based on ACK */
527 IWL_DEBUG_RATE("Update rate %d with %s.\n",
528 last_index,
529 (tx_resp->flags & IEEE80211_TX_STATUS_ACK) ?
530 "success" : "failure");
Tomas Winklerfa254a62008-01-27 20:41:38 -0800531 iwl3945_collect_tx_data(rs_sta,
532 &rs_sta->win[last_index],
Zhu Yib481de92007-09-25 17:54:57 -0700533 tx_resp->flags & IEEE80211_TX_STATUS_ACK, 1);
534
535 /* We updated the rate scale window -- if its been more than
536 * flush_time since the last run, schedule the flush
537 * again */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800538 spin_lock_irqsave(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700539
Tomas Winklerfa254a62008-01-27 20:41:38 -0800540 if (!rs_sta->flush_pending &&
541 time_after(jiffies, rs_sta->last_partial_flush +
542 rs_sta->flush_time)) {
Zhu Yib481de92007-09-25 17:54:57 -0700543
Tomas Winklerfa254a62008-01-27 20:41:38 -0800544 rs_sta->flush_pending = 1;
545 mod_timer(&rs_sta->rate_scale_flush,
546 jiffies + rs_sta->flush_time);
Zhu Yib481de92007-09-25 17:54:57 -0700547 }
548
Tomas Winklerfa254a62008-01-27 20:41:38 -0800549 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700550
Johannes Bergd0709a62008-02-25 16:27:46 +0100551 rcu_read_unlock();
Zhu Yib481de92007-09-25 17:54:57 -0700552
553 IWL_DEBUG_RATE("leave\n");
554
555 return;
556}
557
Tomas Winklerfa254a62008-01-27 20:41:38 -0800558static u16 iwl3945_get_adjacent_rate(struct iwl3945_rs_sta *rs_sta,
Johannes Berg8318d782008-01-24 19:38:38 +0100559 u8 index, u16 rate_mask, enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700560{
561 u8 high = IWL_RATE_INVALID;
562 u8 low = IWL_RATE_INVALID;
563
Ian Schram01ebd062007-10-25 17:15:22 +0800564 /* 802.11A walks to the next literal adjacent rate in
Zhu Yib481de92007-09-25 17:54:57 -0700565 * the rate table */
Johannes Berg8318d782008-01-24 19:38:38 +0100566 if (unlikely(band == IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -0700567 int i;
568 u32 mask;
569
570 /* Find the previous rate that is in the rate mask */
571 i = index - 1;
572 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
573 if (rate_mask & mask) {
574 low = i;
575 break;
576 }
577 }
578
579 /* Find the next rate that is in the rate mask */
580 i = index + 1;
581 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
582 if (rate_mask & mask) {
583 high = i;
584 break;
585 }
586 }
587
588 return (high << 8) | low;
589 }
590
591 low = index;
592 while (low != IWL_RATE_INVALID) {
Tomas Winklerfa254a62008-01-27 20:41:38 -0800593 if (rs_sta->tgg)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800594 low = iwl3945_rates[low].prev_rs_tgg;
Zhu Yib481de92007-09-25 17:54:57 -0700595 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800596 low = iwl3945_rates[low].prev_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700597 if (low == IWL_RATE_INVALID)
598 break;
599 if (rate_mask & (1 << low))
600 break;
601 IWL_DEBUG_RATE("Skipping masked lower rate: %d\n", low);
602 }
603
604 high = index;
605 while (high != IWL_RATE_INVALID) {
Tomas Winklerfa254a62008-01-27 20:41:38 -0800606 if (rs_sta->tgg)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800607 high = iwl3945_rates[high].next_rs_tgg;
Zhu Yib481de92007-09-25 17:54:57 -0700608 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800609 high = iwl3945_rates[high].next_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700610 if (high == IWL_RATE_INVALID)
611 break;
612 if (rate_mask & (1 << high))
613 break;
614 IWL_DEBUG_RATE("Skipping masked higher rate: %d\n", high);
615 }
616
617 return (high << 8) | low;
618}
619
620/**
621 * rs_get_rate - find the rate for the requested packet
622 *
623 * Returns the ieee80211_rate structure allocated by the driver.
624 *
625 * The rate control algorithm has no internal mapping between hw_mode's
626 * rate ordering and the rate ordering used by the rate control algorithm.
627 *
628 * The rate control algorithm uses a single table of rates that goes across
629 * the entire A/B/G spectrum vs. being limited to just one particular
630 * hw_mode.
631 *
632 * As such, we can't convert the index obtained below into the hw_mode's
633 * rate table and must reference the driver allocated rate table
634 *
635 */
Mattias Nissler1abbe492007-12-20 13:50:07 +0100636static void rs_get_rate(void *priv_rate, struct net_device *dev,
Tomas Winkler28447f32008-03-06 17:36:54 -0800637 struct ieee80211_supported_band *sband,
Johannes Berg8318d782008-01-24 19:38:38 +0100638 struct sk_buff *skb,
Mattias Nissler1abbe492007-12-20 13:50:07 +0100639 struct rate_selection *sel)
Zhu Yib481de92007-09-25 17:54:57 -0700640{
641 u8 low = IWL_RATE_INVALID;
642 u8 high = IWL_RATE_INVALID;
643 u16 high_low;
644 int index;
Tomas Winklerfa254a62008-01-27 20:41:38 -0800645 struct iwl3945_rs_sta *rs_sta;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800646 struct iwl3945_rate_scale_data *window = NULL;
Tomas Winkler28447f32008-03-06 17:36:54 -0800647 int current_tpt = IWL_INV_TPT;
648 int low_tpt = IWL_INV_TPT;
649 int high_tpt = IWL_INV_TPT;
Zhu Yib481de92007-09-25 17:54:57 -0700650 u32 fail_count;
651 s8 scale_action = 0;
652 unsigned long flags;
653 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
654 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
655 struct sta_info *sta;
Michael Wu2bc454b2007-12-25 19:33:16 -0500656 u16 fc, rate_mask;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800657 struct iwl3945_priv *priv = (struct iwl3945_priv *)priv_rate;
Joe Perches0795af52007-10-03 17:59:30 -0700658 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -0700659
660 IWL_DEBUG_RATE("enter\n");
661
Johannes Bergd0709a62008-02-25 16:27:46 +0100662 rcu_read_lock();
663
Zhu Yib481de92007-09-25 17:54:57 -0700664 sta = sta_info_get(local, hdr->addr1);
Michael Wu2bc454b2007-12-25 19:33:16 -0500665
666 /* Send management frames and broadcast/multicast data using lowest
667 * rate. */
668 fc = le16_to_cpu(hdr->frame_control);
669 if ((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA ||
670 is_multicast_ether_addr(hdr->addr1) ||
671 !sta || !sta->rate_ctrl_priv) {
Zhu Yib481de92007-09-25 17:54:57 -0700672 IWL_DEBUG_RATE("leave: No STA priv data to update!\n");
Tomas Winkler28447f32008-03-06 17:36:54 -0800673 sel->rate = rate_lowest(local, sband, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100674 rcu_read_unlock();
Mattias Nissler1abbe492007-12-20 13:50:07 +0100675 return;
Zhu Yib481de92007-09-25 17:54:57 -0700676 }
677
Tomas Winkler28447f32008-03-06 17:36:54 -0800678 rate_mask = sta->supp_rates[sband->band];
Johannes Berg8318d782008-01-24 19:38:38 +0100679 index = min(sta->last_txrate_idx & 0xffff, IWL_RATE_COUNT - 1);
Mohamed Abbas14577f22007-11-12 11:37:42 +0800680
Tomas Winkler28447f32008-03-06 17:36:54 -0800681 if (sband->band == IEEE80211_BAND_5GHZ)
Mohamed Abbas14577f22007-11-12 11:37:42 +0800682 rate_mask = rate_mask << IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -0700683
Tomas Winklerfa254a62008-01-27 20:41:38 -0800684 rs_sta = (void *)sta->rate_ctrl_priv;
Zhu Yib481de92007-09-25 17:54:57 -0700685
686 if ((priv->iw_mode == IEEE80211_IF_TYPE_IBSS) &&
Tomas Winklerfa254a62008-01-27 20:41:38 -0800687 !rs_sta->ibss_sta_added) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800688 u8 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700689
690 if (sta_id == IWL_INVALID_STATION) {
Joe Perches0795af52007-10-03 17:59:30 -0700691 IWL_DEBUG_RATE("LQ: ADD station %s\n",
692 print_mac(mac, hdr->addr1));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800693 sta_id = iwl3945_add_station(priv,
Zhu Yib481de92007-09-25 17:54:57 -0700694 hdr->addr1, 0, CMD_ASYNC);
695 }
696 if (sta_id != IWL_INVALID_STATION)
Tomas Winklerfa254a62008-01-27 20:41:38 -0800697 rs_sta->ibss_sta_added = 1;
Zhu Yib481de92007-09-25 17:54:57 -0700698 }
699
Tomas Winklerfa254a62008-01-27 20:41:38 -0800700 spin_lock_irqsave(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700701
Tomas Winklerfa254a62008-01-27 20:41:38 -0800702 if (rs_sta->start_rate != IWL_RATE_INVALID) {
703 index = rs_sta->start_rate;
704 rs_sta->start_rate = IWL_RATE_INVALID;
Zhu Yib481de92007-09-25 17:54:57 -0700705 }
706
Tomas Winklerfa254a62008-01-27 20:41:38 -0800707 window = &(rs_sta->win[index]);
Zhu Yib481de92007-09-25 17:54:57 -0700708
709 fail_count = window->counter - window->success_counter;
710
711 if (((fail_count <= IWL_RATE_MIN_FAILURE_TH) &&
712 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH))) {
Tomas Winkler28447f32008-03-06 17:36:54 -0800713 window->average_tpt = IWL_INV_TPT;
Tomas Winklerfa254a62008-01-27 20:41:38 -0800714 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700715
716 IWL_DEBUG_RATE("Invalid average_tpt on rate %d: "
717 "counter: %d, success_counter: %d, "
718 "expected_tpt is %sNULL\n",
719 index,
720 window->counter,
721 window->success_counter,
Tomas Winklerfa254a62008-01-27 20:41:38 -0800722 rs_sta->expected_tpt ? "not " : "");
Zhu Yib481de92007-09-25 17:54:57 -0700723 goto out;
724
725 }
726
727 window->average_tpt = ((window->success_ratio *
Tomas Winklerfa254a62008-01-27 20:41:38 -0800728 rs_sta->expected_tpt[index] + 64) / 128);
Zhu Yib481de92007-09-25 17:54:57 -0700729 current_tpt = window->average_tpt;
730
Tomas Winklerfa254a62008-01-27 20:41:38 -0800731 high_low = iwl3945_get_adjacent_rate(rs_sta, index, rate_mask,
Tomas Winkler28447f32008-03-06 17:36:54 -0800732 sband->band);
Zhu Yib481de92007-09-25 17:54:57 -0700733 low = high_low & 0xff;
734 high = (high_low >> 8) & 0xff;
735
736 if (low != IWL_RATE_INVALID)
Tomas Winklerfa254a62008-01-27 20:41:38 -0800737 low_tpt = rs_sta->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -0700738
739 if (high != IWL_RATE_INVALID)
Tomas Winklerfa254a62008-01-27 20:41:38 -0800740 high_tpt = rs_sta->win[high].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -0700741
Tomas Winklerfa254a62008-01-27 20:41:38 -0800742 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700743
744 scale_action = 1;
745
746 if ((window->success_ratio < IWL_RATE_DECREASE_TH) || !current_tpt) {
747 IWL_DEBUG_RATE("decrease rate because of low success_ratio\n");
748 scale_action = -1;
Tomas Winkler28447f32008-03-06 17:36:54 -0800749 } else if ((low_tpt == IWL_INV_TPT) && (high_tpt == IWL_INV_TPT))
Zhu Yib481de92007-09-25 17:54:57 -0700750 scale_action = 1;
Tomas Winkler28447f32008-03-06 17:36:54 -0800751 else if ((low_tpt != IWL_INV_TPT) && (high_tpt != IWL_INV_TPT) &&
752 (low_tpt < current_tpt) && (high_tpt < current_tpt)) {
Zhu Yib481de92007-09-25 17:54:57 -0700753 IWL_DEBUG_RATE("No action -- low [%d] & high [%d] < "
754 "current_tpt [%d]\n",
755 low_tpt, high_tpt, current_tpt);
756 scale_action = 0;
757 } else {
Tomas Winkler28447f32008-03-06 17:36:54 -0800758 if (high_tpt != IWL_INV_TPT) {
Zhu Yib481de92007-09-25 17:54:57 -0700759 if (high_tpt > current_tpt)
760 scale_action = 1;
761 else {
762 IWL_DEBUG_RATE
763 ("decrease rate because of high tpt\n");
764 scale_action = -1;
765 }
Tomas Winkler28447f32008-03-06 17:36:54 -0800766 } else if (low_tpt != IWL_INV_TPT) {
Zhu Yib481de92007-09-25 17:54:57 -0700767 if (low_tpt > current_tpt) {
768 IWL_DEBUG_RATE
769 ("decrease rate because of low tpt\n");
770 scale_action = -1;
771 } else
772 scale_action = 1;
773 }
774 }
775
776 if ((window->success_ratio > IWL_RATE_HIGH_TH) ||
777 (current_tpt > window->average_tpt)) {
778 IWL_DEBUG_RATE("No action -- success_ratio [%d] > HIGH_TH or "
779 "current_tpt [%d] > average_tpt [%d]\n",
780 window->success_ratio,
781 current_tpt, window->average_tpt);
782 scale_action = 0;
783 }
784
785 switch (scale_action) {
786 case -1:
787 if (low != IWL_RATE_INVALID)
788 index = low;
789 break;
790
791 case 1:
792 if (high != IWL_RATE_INVALID)
793 index = high;
794
795 break;
796
797 case 0:
798 default:
799 break;
800 }
801
802 IWL_DEBUG_RATE("Selected %d (action %d) - low %d high %d\n",
803 index, scale_action, low, high);
804
805 out:
806
Johannes Berg8318d782008-01-24 19:38:38 +0100807 sta->last_txrate_idx = index;
Tomas Winkler28447f32008-03-06 17:36:54 -0800808 if (sband->band == IEEE80211_BAND_5GHZ)
Johannes Berg8318d782008-01-24 19:38:38 +0100809 sta->txrate_idx = sta->last_txrate_idx - IWL_FIRST_OFDM_RATE;
Mohamed Abbas14577f22007-11-12 11:37:42 +0800810 else
Johannes Berg8318d782008-01-24 19:38:38 +0100811 sta->txrate_idx = sta->last_txrate_idx;
Mohamed Abbas14577f22007-11-12 11:37:42 +0800812
Johannes Bergd0709a62008-02-25 16:27:46 +0100813 rcu_read_unlock();
Zhu Yib481de92007-09-25 17:54:57 -0700814
815 IWL_DEBUG_RATE("leave: %d\n", index);
816
Tomas Winkler28447f32008-03-06 17:36:54 -0800817 sel->rate = &sband->bitrates[sta->txrate_idx];
Zhu Yib481de92007-09-25 17:54:57 -0700818}
819
820static struct rate_control_ops rs_ops = {
821 .module = NULL,
822 .name = RS_NAME,
823 .tx_status = rs_tx_status,
824 .get_rate = rs_get_rate,
825 .rate_init = rs_rate_init,
826 .clear = rs_clear,
827 .alloc = rs_alloc,
828 .free = rs_free,
829 .alloc_sta = rs_alloc_sta,
830 .free_sta = rs_free_sta,
831};
832
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800833int iwl3945_fill_rs_info(struct ieee80211_hw *hw, char *buf, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700834{
835 struct ieee80211_local *local = hw_to_local(hw);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800836 struct iwl3945_priv *priv = hw->priv;
Tomas Winklerfa254a62008-01-27 20:41:38 -0800837 struct iwl3945_rs_sta *rs_sta;
Zhu Yib481de92007-09-25 17:54:57 -0700838 struct sta_info *sta;
839 unsigned long flags;
840 int count = 0, i;
841 u32 samples = 0, success = 0, good = 0;
842 unsigned long now = jiffies;
843 u32 max_time = 0;
844
Johannes Bergd0709a62008-02-25 16:27:46 +0100845 rcu_read_lock();
846
Zhu Yib481de92007-09-25 17:54:57 -0700847 sta = sta_info_get(local, priv->stations[sta_id].sta.sta.addr);
848 if (!sta || !sta->rate_ctrl_priv) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100849 if (sta)
Zhu Yib481de92007-09-25 17:54:57 -0700850 IWL_DEBUG_RATE("leave - no private rate data!\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100851 else
Zhu Yib481de92007-09-25 17:54:57 -0700852 IWL_DEBUG_RATE("leave - no station!\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100853 rcu_read_unlock();
Zhu Yib481de92007-09-25 17:54:57 -0700854 return sprintf(buf, "station %d not found\n", sta_id);
855 }
856
Tomas Winklerfa254a62008-01-27 20:41:38 -0800857 rs_sta = (void *)sta->rate_ctrl_priv;
858 spin_lock_irqsave(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700859 i = IWL_RATE_54M_INDEX;
860 while (1) {
861 u64 mask;
862 int j;
863
864 count +=
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800865 sprintf(&buf[count], " %2dMbs: ", iwl3945_rates[i].ieee / 2);
Zhu Yib481de92007-09-25 17:54:57 -0700866
867 mask = (1ULL << (IWL_RATE_MAX_WINDOW - 1));
868 for (j = 0; j < IWL_RATE_MAX_WINDOW; j++, mask >>= 1)
869 buf[count++] =
Tomas Winklerfa254a62008-01-27 20:41:38 -0800870 (rs_sta->win[i].data & mask) ? '1' : '0';
Zhu Yib481de92007-09-25 17:54:57 -0700871
Tomas Winklerfa254a62008-01-27 20:41:38 -0800872 samples += rs_sta->win[i].counter;
873 good += rs_sta->win[i].success_counter;
874 success += rs_sta->win[i].success_counter *
875 iwl3945_rates[i].ieee;
Zhu Yib481de92007-09-25 17:54:57 -0700876
Tomas Winklerfa254a62008-01-27 20:41:38 -0800877 if (rs_sta->win[i].stamp) {
Zhu Yib481de92007-09-25 17:54:57 -0700878 int delta =
Tomas Winklerfa254a62008-01-27 20:41:38 -0800879 jiffies_to_msecs(now - rs_sta->win[i].stamp);
Zhu Yib481de92007-09-25 17:54:57 -0700880
881 if (delta > max_time)
882 max_time = delta;
883
884 count += sprintf(&buf[count], "%5dms\n", delta);
885 } else
886 buf[count++] = '\n';
887
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800888 j = iwl3945_get_prev_ieee_rate(i);
Zhu Yib481de92007-09-25 17:54:57 -0700889 if (j == i)
890 break;
891 i = j;
892 }
Tomas Winklerfa254a62008-01-27 20:41:38 -0800893 spin_unlock_irqrestore(&rs_sta->lock, flags);
Johannes Bergd0709a62008-02-25 16:27:46 +0100894 rcu_read_unlock();
Zhu Yib481de92007-09-25 17:54:57 -0700895
896 /* Display the average rate of all samples taken.
897 *
898 * NOTE: We multiple # of samples by 2 since the IEEE measurement
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800899 * added from iwl3945_rates is actually 2X the rate */
Zhu Yib481de92007-09-25 17:54:57 -0700900 if (samples)
901 count += sprintf(
902 &buf[count],
903 "\nAverage rate is %3d.%02dMbs over last %4dms\n"
904 "%3d%% success (%d good packets over %d tries)\n",
905 success / (2 * samples), (success * 5 / samples) % 10,
906 max_time, good * 100 / samples, good, samples);
907 else
908 count += sprintf(&buf[count], "\nAverage rate: 0Mbs\n");
909
910 return count;
911}
912
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800913void iwl3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700914{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800915 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -0700916 s32 rssi = 0;
917 unsigned long flags;
918 struct ieee80211_local *local = hw_to_local(hw);
Tomas Winklerfa254a62008-01-27 20:41:38 -0800919 struct iwl3945_rs_sta *rs_sta;
Zhu Yib481de92007-09-25 17:54:57 -0700920 struct sta_info *sta;
921
922 IWL_DEBUG_RATE("enter\n");
923
924 if (!local->rate_ctrl->ops->name ||
925 strcmp(local->rate_ctrl->ops->name, RS_NAME)) {
926 IWL_WARNING("iwl-3945-rs not selected as rate control algo!\n");
927 IWL_DEBUG_RATE("leave - mac80211 picked the wrong RC algo.\n");
928 return;
929 }
930
Johannes Bergd0709a62008-02-25 16:27:46 +0100931 rcu_read_lock();
932
Zhu Yib481de92007-09-25 17:54:57 -0700933 sta = sta_info_get(local, priv->stations[sta_id].sta.sta.addr);
934 if (!sta || !sta->rate_ctrl_priv) {
Zhu Yib481de92007-09-25 17:54:57 -0700935 IWL_DEBUG_RATE("leave - no private rate data!\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100936 rcu_read_unlock();
Zhu Yib481de92007-09-25 17:54:57 -0700937 return;
938 }
939
Tomas Winklerfa254a62008-01-27 20:41:38 -0800940 rs_sta = (void *)sta->rate_ctrl_priv;
Zhu Yib481de92007-09-25 17:54:57 -0700941
Tomas Winklerfa254a62008-01-27 20:41:38 -0800942 spin_lock_irqsave(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700943
Tomas Winklerfa254a62008-01-27 20:41:38 -0800944 rs_sta->tgg = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100945 switch (priv->band) {
946 case IEEE80211_BAND_2GHZ:
947 /* TODO: this always does G, not a regression */
Zhu Yib481de92007-09-25 17:54:57 -0700948 if (priv->active_rxon.flags & RXON_FLG_TGG_PROTECT_MSK) {
Tomas Winklerfa254a62008-01-27 20:41:38 -0800949 rs_sta->tgg = 1;
950 rs_sta->expected_tpt = iwl3945_expected_tpt_g_prot;
Zhu Yib481de92007-09-25 17:54:57 -0700951 } else
Tomas Winklerfa254a62008-01-27 20:41:38 -0800952 rs_sta->expected_tpt = iwl3945_expected_tpt_g;
Zhu Yib481de92007-09-25 17:54:57 -0700953 break;
954
Johannes Berg8318d782008-01-24 19:38:38 +0100955 case IEEE80211_BAND_5GHZ:
Tomas Winklerfa254a62008-01-27 20:41:38 -0800956 rs_sta->expected_tpt = iwl3945_expected_tpt_a;
Zhu Yib481de92007-09-25 17:54:57 -0700957 break;
Johannes Berg8318d782008-01-24 19:38:38 +0100958 case IEEE80211_NUM_BANDS:
959 BUG();
Zhu Yib481de92007-09-25 17:54:57 -0700960 break;
961 }
962
Johannes Bergd0709a62008-02-25 16:27:46 +0100963 rcu_read_unlock();
Tomas Winklerfa254a62008-01-27 20:41:38 -0800964 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700965
966 rssi = priv->last_rx_rssi;
967 if (rssi == 0)
968 rssi = IWL_MIN_RSSI_VAL;
969
970 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RATE, "Network RSSI: %d\n", rssi);
971
Johannes Berg8318d782008-01-24 19:38:38 +0100972 rs_sta->start_rate = iwl3945_get_rate_index_by_rssi(rssi, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -0700973
974 IWL_DEBUG_RATE("leave: rssi %d assign rate index: "
Tomas Winklerfa254a62008-01-27 20:41:38 -0800975 "%d (plcp 0x%x)\n", rssi, rs_sta->start_rate,
976 iwl3945_rates[rs_sta->start_rate].plcp);
Zhu Yib481de92007-09-25 17:54:57 -0700977}
978
Reinette Chatre897e1cf2008-03-28 16:21:09 -0700979int iwl3945_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -0700980{
Reinette Chatre897e1cf2008-03-28 16:21:09 -0700981 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -0700982}
983
Reinette Chatre897e1cf2008-03-28 16:21:09 -0700984void iwl3945_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -0700985{
986 ieee80211_rate_control_unregister(&rs_ops);
987}
988
989