blob: b03dd06ceabfbeb66cf199f65cf267c7ea5e39d0 [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>
Zhu Yib481de92007-09-25 17:54:57 -070032
33#include <linux/netdevice.h>
34#include <linux/etherdevice.h>
35#include <linux/delay.h>
36
37#include <linux/workqueue.h>
38
Christoph Hellwig5d08cd12007-10-25 17:15:50 +080039#include "iwl-3945.h"
Zhu Yib481de92007-09-25 17:54:57 -070040
41#define RS_NAME "iwl-3945-rs"
42
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080043struct iwl3945_rate_scale_data {
Zhu Yib481de92007-09-25 17:54:57 -070044 u64 data;
45 s32 success_counter;
46 s32 success_ratio;
47 s32 counter;
48 s32 average_tpt;
49 unsigned long stamp;
50};
51
Tomas Winklerfa254a62008-01-27 20:41:38 -080052struct iwl3945_rs_sta {
Zhu Yib481de92007-09-25 17:54:57 -070053 spinlock_t lock;
54 s32 *expected_tpt;
55 unsigned long last_partial_flush;
56 unsigned long last_flush;
57 u32 flush_time;
58 u32 last_tx_packets;
59 u32 tx_packets;
60 u8 tgg;
61 u8 flush_pending;
62 u8 start_rate;
63 u8 ibss_sta_added;
64 struct timer_list rate_scale_flush;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080065 struct iwl3945_rate_scale_data win[IWL_RATE_COUNT];
Abbas, Mohamedc30e30e2008-12-02 12:14:02 -080066#ifdef CONFIG_MAC80211_DEBUGFS
67 struct dentry *rs_sta_dbgfs_stats_table_file;
68#endif
Johannes Bergb7e35002008-09-11 02:22:58 +020069
70 /* used to be in sta_info */
71 int last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -070072};
73
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080074static s32 iwl3945_expected_tpt_g[IWL_RATE_COUNT] = {
Mohamed Abbas14577f22007-11-12 11:37:42 +080075 7, 13, 35, 58, 0, 0, 76, 104, 130, 168, 191, 202
Zhu Yib481de92007-09-25 17:54:57 -070076};
77
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080078static s32 iwl3945_expected_tpt_g_prot[IWL_RATE_COUNT] = {
Mohamed Abbas14577f22007-11-12 11:37:42 +080079 7, 13, 35, 58, 0, 0, 0, 80, 93, 113, 123, 125
Zhu Yib481de92007-09-25 17:54:57 -070080};
81
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080082static s32 iwl3945_expected_tpt_a[IWL_RATE_COUNT] = {
Mohamed Abbas14577f22007-11-12 11:37:42 +080083 0, 0, 0, 0, 40, 57, 72, 98, 121, 154, 177, 186
Zhu Yib481de92007-09-25 17:54:57 -070084};
85
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080086static s32 iwl3945_expected_tpt_b[IWL_RATE_COUNT] = {
Mohamed Abbas14577f22007-11-12 11:37:42 +080087 7, 13, 35, 58, 0, 0, 0, 0, 0, 0, 0, 0
Zhu Yib481de92007-09-25 17:54:57 -070088};
89
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080090struct iwl3945_tpt_entry {
Zhu Yib481de92007-09-25 17:54:57 -070091 s8 min_rssi;
92 u8 index;
93};
94
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080095static struct iwl3945_tpt_entry iwl3945_tpt_table_a[] = {
Zhu Yib481de92007-09-25 17:54:57 -070096 {-60, IWL_RATE_54M_INDEX},
97 {-64, IWL_RATE_48M_INDEX},
98 {-72, IWL_RATE_36M_INDEX},
99 {-80, IWL_RATE_24M_INDEX},
100 {-84, IWL_RATE_18M_INDEX},
101 {-85, IWL_RATE_12M_INDEX},
102 {-87, IWL_RATE_9M_INDEX},
103 {-89, IWL_RATE_6M_INDEX}
104};
105
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800106static struct iwl3945_tpt_entry iwl3945_tpt_table_g[] = {
Zhu Yib481de92007-09-25 17:54:57 -0700107 {-60, IWL_RATE_54M_INDEX},
108 {-64, IWL_RATE_48M_INDEX},
109 {-68, IWL_RATE_36M_INDEX},
110 {-80, IWL_RATE_24M_INDEX},
111 {-84, IWL_RATE_18M_INDEX},
112 {-85, IWL_RATE_12M_INDEX},
113 {-86, IWL_RATE_11M_INDEX},
114 {-88, IWL_RATE_5M_INDEX},
115 {-90, IWL_RATE_2M_INDEX},
116 {-92, IWL_RATE_1M_INDEX}
117};
118
119#define IWL_RATE_MAX_WINDOW 62
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800120#define IWL_RATE_FLUSH (3*HZ)
Zhu Yib481de92007-09-25 17:54:57 -0700121#define IWL_RATE_WIN_FLUSH (HZ/2)
122#define IWL_RATE_HIGH_TH 11520
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800123#define IWL_SUCCESS_UP_TH 8960
124#define IWL_SUCCESS_DOWN_TH 10880
Zhu Yib481de92007-09-25 17:54:57 -0700125#define IWL_RATE_MIN_FAILURE_TH 8
126#define IWL_RATE_MIN_SUCCESS_TH 8
127#define IWL_RATE_DECREASE_TH 1920
128
Johannes Berg8318d782008-01-24 19:38:38 +0100129static u8 iwl3945_get_rate_index_by_rssi(s32 rssi, enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700130{
131 u32 index = 0;
132 u32 table_size = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800133 struct iwl3945_tpt_entry *tpt_table = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700134
135 if ((rssi < IWL_MIN_RSSI_VAL) || (rssi > IWL_MAX_RSSI_VAL))
136 rssi = IWL_MIN_RSSI_VAL;
137
Johannes Berg8318d782008-01-24 19:38:38 +0100138 switch (band) {
139 case IEEE80211_BAND_2GHZ:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800140 tpt_table = iwl3945_tpt_table_g;
141 table_size = ARRAY_SIZE(iwl3945_tpt_table_g);
Zhu Yib481de92007-09-25 17:54:57 -0700142 break;
143
Johannes Berg8318d782008-01-24 19:38:38 +0100144 case IEEE80211_BAND_5GHZ:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800145 tpt_table = iwl3945_tpt_table_a;
146 table_size = ARRAY_SIZE(iwl3945_tpt_table_a);
Zhu Yib481de92007-09-25 17:54:57 -0700147 break;
148
149 default:
Johannes Berg8318d782008-01-24 19:38:38 +0100150 BUG();
Zhu Yib481de92007-09-25 17:54:57 -0700151 break;
152 }
153
154 while ((index < table_size) && (rssi < tpt_table[index].min_rssi))
155 index++;
156
157 index = min(index, (table_size - 1));
158
159 return tpt_table[index].index;
160}
161
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800162static void iwl3945_clear_window(struct iwl3945_rate_scale_data *window)
Zhu Yib481de92007-09-25 17:54:57 -0700163{
164 window->data = 0;
165 window->success_counter = 0;
Tomas Winkler28447f32008-03-06 17:36:54 -0800166 window->success_ratio = -1;
Zhu Yib481de92007-09-25 17:54:57 -0700167 window->counter = 0;
Tomas Winkler28447f32008-03-06 17:36:54 -0800168 window->average_tpt = IWL_INV_TPT;
Zhu Yib481de92007-09-25 17:54:57 -0700169 window->stamp = 0;
170}
171
172/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800173 * iwl3945_rate_scale_flush_windows - flush out the rate scale windows
Zhu Yib481de92007-09-25 17:54:57 -0700174 *
175 * Returns the number of windows that have gathered data but were
176 * not flushed. If there were any that were not flushed, then
177 * reschedule the rate flushing routine.
178 */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800179static int iwl3945_rate_scale_flush_windows(struct iwl3945_rs_sta *rs_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700180{
181 int unflushed = 0;
182 int i;
183 unsigned long flags;
184
185 /*
186 * For each rate, if we have collected data on that rate
187 * and it has been more than IWL_RATE_WIN_FLUSH
188 * since we flushed, clear out the gathered statistics
189 */
190 for (i = 0; i < IWL_RATE_COUNT; i++) {
Tomas Winklerfa254a62008-01-27 20:41:38 -0800191 if (!rs_sta->win[i].counter)
Zhu Yib481de92007-09-25 17:54:57 -0700192 continue;
193
Tomas Winklerfa254a62008-01-27 20:41:38 -0800194 spin_lock_irqsave(&rs_sta->lock, flags);
195 if (time_after(jiffies, rs_sta->win[i].stamp +
Zhu Yib481de92007-09-25 17:54:57 -0700196 IWL_RATE_WIN_FLUSH)) {
197 IWL_DEBUG_RATE("flushing %d samples of rate "
198 "index %d\n",
Tomas Winklerfa254a62008-01-27 20:41:38 -0800199 rs_sta->win[i].counter, i);
200 iwl3945_clear_window(&rs_sta->win[i]);
Zhu Yib481de92007-09-25 17:54:57 -0700201 } else
202 unflushed++;
Tomas Winklerfa254a62008-01-27 20:41:38 -0800203 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700204 }
205
206 return unflushed;
207}
208
209#define IWL_RATE_FLUSH_MAX 5000 /* msec */
210#define IWL_RATE_FLUSH_MIN 50 /* msec */
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800211#define IWL_AVERAGE_PACKETS 1500
Zhu Yib481de92007-09-25 17:54:57 -0700212
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800213static void iwl3945_bg_rate_scale_flush(unsigned long data)
Zhu Yib481de92007-09-25 17:54:57 -0700214{
Tomas Winklerfa254a62008-01-27 20:41:38 -0800215 struct iwl3945_rs_sta *rs_sta = (void *)data;
Zhu Yib481de92007-09-25 17:54:57 -0700216 int unflushed = 0;
217 unsigned long flags;
218 u32 packet_count, duration, pps;
219
220 IWL_DEBUG_RATE("enter\n");
221
Tomas Winklerfa254a62008-01-27 20:41:38 -0800222 unflushed = iwl3945_rate_scale_flush_windows(rs_sta);
Zhu Yib481de92007-09-25 17:54:57 -0700223
Tomas Winklerfa254a62008-01-27 20:41:38 -0800224 spin_lock_irqsave(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700225
Zhu Yib481de92007-09-25 17:54:57 -0700226 /* Number of packets Rx'd since last time this timer ran */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800227 packet_count = (rs_sta->tx_packets - rs_sta->last_tx_packets) + 1;
Zhu Yib481de92007-09-25 17:54:57 -0700228
Tomas Winklerfa254a62008-01-27 20:41:38 -0800229 rs_sta->last_tx_packets = rs_sta->tx_packets + 1;
Zhu Yib481de92007-09-25 17:54:57 -0700230
231 if (unflushed) {
232 duration =
Tomas Winklerfa254a62008-01-27 20:41:38 -0800233 jiffies_to_msecs(jiffies - rs_sta->last_partial_flush);
Zhu Yib481de92007-09-25 17:54:57 -0700234
235 IWL_DEBUG_RATE("Tx'd %d packets in %dms\n",
236 packet_count, duration);
237
238 /* Determine packets per second */
239 if (duration)
240 pps = (packet_count * 1000) / duration;
241 else
242 pps = 0;
243
244 if (pps) {
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800245 duration = (IWL_AVERAGE_PACKETS * 1000) / pps;
Zhu Yib481de92007-09-25 17:54:57 -0700246 if (duration < IWL_RATE_FLUSH_MIN)
247 duration = IWL_RATE_FLUSH_MIN;
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800248 else if (duration > IWL_RATE_FLUSH_MAX)
249 duration = IWL_RATE_FLUSH_MAX;
Zhu Yib481de92007-09-25 17:54:57 -0700250 } else
251 duration = IWL_RATE_FLUSH_MAX;
252
Tomas Winklerfa254a62008-01-27 20:41:38 -0800253 rs_sta->flush_time = msecs_to_jiffies(duration);
Zhu Yib481de92007-09-25 17:54:57 -0700254
255 IWL_DEBUG_RATE("new flush period: %d msec ave %d\n",
256 duration, packet_count);
257
Tomas Winklerfa254a62008-01-27 20:41:38 -0800258 mod_timer(&rs_sta->rate_scale_flush, jiffies +
259 rs_sta->flush_time);
Zhu Yib481de92007-09-25 17:54:57 -0700260
Tomas Winklerfa254a62008-01-27 20:41:38 -0800261 rs_sta->last_partial_flush = jiffies;
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800262 } else {
263 rs_sta->flush_time = IWL_RATE_FLUSH;
264 rs_sta->flush_pending = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700265 }
Zhu Yib481de92007-09-25 17:54:57 -0700266 /* If there weren't any unflushed entries, we don't schedule the timer
267 * to run again */
268
Tomas Winklerfa254a62008-01-27 20:41:38 -0800269 rs_sta->last_flush = jiffies;
Zhu Yib481de92007-09-25 17:54:57 -0700270
Tomas Winklerfa254a62008-01-27 20:41:38 -0800271 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700272
273 IWL_DEBUG_RATE("leave\n");
274}
275
276/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800277 * iwl3945_collect_tx_data - Update the success/failure sliding window
Zhu Yib481de92007-09-25 17:54:57 -0700278 *
279 * We keep a sliding window of the last 64 packets transmitted
280 * at this rate. window->data contains the bitmask of successful
281 * packets.
282 */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800283static void iwl3945_collect_tx_data(struct iwl3945_rs_sta *rs_sta,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800284 struct iwl3945_rate_scale_data *window,
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800285 int success, int retries, int index)
Zhu Yib481de92007-09-25 17:54:57 -0700286{
287 unsigned long flags;
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800288 s32 fail_count;
Zhu Yib481de92007-09-25 17:54:57 -0700289
290 if (!retries) {
291 IWL_DEBUG_RATE("leave: retries == 0 -- should be at least 1\n");
292 return;
293 }
294
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800295 spin_lock_irqsave(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700296 while (retries--) {
Zhu Yib481de92007-09-25 17:54:57 -0700297
298 /* If we have filled up the window then subtract one from the
299 * success counter if the high-bit is counting toward
300 * success */
301 if (window->counter == IWL_RATE_MAX_WINDOW) {
302 if (window->data & (1ULL << (IWL_RATE_MAX_WINDOW - 1)))
303 window->success_counter--;
304 } else
305 window->counter++;
306
307 /* Slide the window to the left one bit */
308 window->data = (window->data << 1);
309
310 /* If this packet was a success then set the low bit high */
311 if (success) {
312 window->success_counter++;
313 window->data |= 1;
314 }
315
316 /* window->counter can't be 0 -- it is either >0 or
317 * IWL_RATE_MAX_WINDOW */
318 window->success_ratio = 12800 * window->success_counter /
319 window->counter;
320
321 /* Tag this window as having been updated */
322 window->stamp = jiffies;
323
Zhu Yib481de92007-09-25 17:54:57 -0700324 }
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800325
326 fail_count = window->counter - window->success_counter;
327 if ((fail_count >= IWL_RATE_MIN_FAILURE_TH) ||
328 (window->success_counter >= IWL_RATE_MIN_SUCCESS_TH))
329 window->average_tpt = ((window->success_ratio *
330 rs_sta->expected_tpt[index] + 64) / 128);
331 else
332 window->average_tpt = IWL_INV_TPT;
333
334 spin_unlock_irqrestore(&rs_sta->lock, flags);
335
Zhu Yib481de92007-09-25 17:54:57 -0700336}
337
Johannes Berg4b7679a2008-09-18 18:14:18 +0200338static void rs_rate_init(void *priv, struct ieee80211_supported_band *sband,
339 struct ieee80211_sta *sta, void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700340{
Johannes Berg4b7679a2008-09-18 18:14:18 +0200341 struct iwl3945_rs_sta *rs_sta = priv_sta;
Zhu Yib481de92007-09-25 17:54:57 -0700342 int i;
343
344 IWL_DEBUG_RATE("enter\n");
345
346 /* TODO: what is a good starting rate for STA? About middle? Maybe not
347 * the lowest or the highest rate.. Could consider using RSSI from
348 * previous packets? Need to have IEEE 802.1X auth succeed immediately
349 * after assoc.. */
350
351 for (i = IWL_RATE_COUNT - 1; i >= 0; i--) {
Johannes Berg4b7679a2008-09-18 18:14:18 +0200352 if (sta->supp_rates[sband->band] & (1 << i)) {
Johannes Bergae17e982008-09-11 03:04:36 +0200353 rs_sta->last_txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -0700354 break;
355 }
356 }
357
Johannes Berg8318d782008-01-24 19:38:38 +0100358 /* For 5 GHz band it start at IWL_FIRST_OFDM_RATE */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200359 if (sband->band == IEEE80211_BAND_5GHZ)
Johannes Bergb7e35002008-09-11 02:22:58 +0200360 rs_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
Mohamed Abbas14577f22007-11-12 11:37:42 +0800361
Zhu Yib481de92007-09-25 17:54:57 -0700362 IWL_DEBUG_RATE("leave\n");
363}
364
Johannes Berg4b7679a2008-09-18 18:14:18 +0200365static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Zhu Yib481de92007-09-25 17:54:57 -0700366{
Johannes Berg4b7679a2008-09-18 18:14:18 +0200367 return hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -0700368}
369
Ian Schram01ebd062007-10-25 17:15:22 +0800370/* rate scale requires free function to be implemented */
Zhu Yib481de92007-09-25 17:54:57 -0700371static void rs_free(void *priv)
372{
373 return;
374}
Johannes Berg4b7679a2008-09-18 18:14:18 +0200375
Johannes Berg4b7679a2008-09-18 18:14:18 +0200376static void *rs_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
Zhu Yib481de92007-09-25 17:54:57 -0700377{
Tomas Winklerfa254a62008-01-27 20:41:38 -0800378 struct iwl3945_rs_sta *rs_sta;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200379 struct iwl3945_sta_priv *psta = (void *) sta->drv_priv;
Zhu Yib481de92007-09-25 17:54:57 -0700380 int i;
381
Johannes Berg4b7679a2008-09-18 18:14:18 +0200382 /*
383 * XXX: If it's using sta->drv_priv anyway, it might
384 * as well just put all the information there.
385 */
386
Zhu Yib481de92007-09-25 17:54:57 -0700387 IWL_DEBUG_RATE("enter\n");
388
Tomas Winklerfa254a62008-01-27 20:41:38 -0800389 rs_sta = kzalloc(sizeof(struct iwl3945_rs_sta), gfp);
390 if (!rs_sta) {
Zhu Yib481de92007-09-25 17:54:57 -0700391 IWL_DEBUG_RATE("leave: ENOMEM\n");
392 return NULL;
393 }
394
Johannes Berg4b7679a2008-09-18 18:14:18 +0200395 psta->rs_sta = rs_sta;
396
Tomas Winklerfa254a62008-01-27 20:41:38 -0800397 spin_lock_init(&rs_sta->lock);
Zhu Yib481de92007-09-25 17:54:57 -0700398
Tomas Winklerfa254a62008-01-27 20:41:38 -0800399 rs_sta->start_rate = IWL_RATE_INVALID;
Zhu Yib481de92007-09-25 17:54:57 -0700400
401 /* default to just 802.11b */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800402 rs_sta->expected_tpt = iwl3945_expected_tpt_b;
Zhu Yib481de92007-09-25 17:54:57 -0700403
Tomas Winklerfa254a62008-01-27 20:41:38 -0800404 rs_sta->last_partial_flush = jiffies;
405 rs_sta->last_flush = jiffies;
406 rs_sta->flush_time = IWL_RATE_FLUSH;
407 rs_sta->last_tx_packets = 0;
408 rs_sta->ibss_sta_added = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700409
Tomas Winklerfa254a62008-01-27 20:41:38 -0800410 init_timer(&rs_sta->rate_scale_flush);
411 rs_sta->rate_scale_flush.data = (unsigned long)rs_sta;
412 rs_sta->rate_scale_flush.function = &iwl3945_bg_rate_scale_flush;
Zhu Yib481de92007-09-25 17:54:57 -0700413
414 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winklerfa254a62008-01-27 20:41:38 -0800415 iwl3945_clear_window(&rs_sta->win[i]);
Zhu Yib481de92007-09-25 17:54:57 -0700416
417 IWL_DEBUG_RATE("leave\n");
418
Tomas Winklerfa254a62008-01-27 20:41:38 -0800419 return rs_sta;
Zhu Yib481de92007-09-25 17:54:57 -0700420}
421
Johannes Berg4b7679a2008-09-18 18:14:18 +0200422static void rs_free_sta(void *priv, struct ieee80211_sta *sta,
423 void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700424{
Johannes Berg4b7679a2008-09-18 18:14:18 +0200425 struct iwl3945_sta_priv *psta = (void *) sta->drv_priv;
Tomas Winklerfa254a62008-01-27 20:41:38 -0800426 struct iwl3945_rs_sta *rs_sta = priv_sta;
Zhu Yib481de92007-09-25 17:54:57 -0700427
Johannes Berg4b7679a2008-09-18 18:14:18 +0200428 psta->rs_sta = NULL;
429
Zhu Yib481de92007-09-25 17:54:57 -0700430 IWL_DEBUG_RATE("enter\n");
Tomas Winklerfa254a62008-01-27 20:41:38 -0800431 del_timer_sync(&rs_sta->rate_scale_flush);
432 kfree(rs_sta);
Zhu Yib481de92007-09-25 17:54:57 -0700433 IWL_DEBUG_RATE("leave\n");
434}
435
Mohamed Abbas14577f22007-11-12 11:37:42 +0800436
Zhu Yib481de92007-09-25 17:54:57 -0700437/**
438 * rs_tx_status - Update rate control values based on Tx results
439 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800440 * NOTE: Uses iwl3945_priv->retry_rate for the # of retries attempted by
Zhu Yib481de92007-09-25 17:54:57 -0700441 * the hardware for each rate.
442 */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200443static void rs_tx_status(void *priv_rate, struct ieee80211_supported_band *sband,
444 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200445 struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700446{
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800447 s8 retries = 0, current_count;
Zhu Yib481de92007-09-25 17:54:57 -0700448 int scale_rate_index, first_index, last_index;
449 unsigned long flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800450 struct iwl3945_priv *priv = (struct iwl3945_priv *)priv_rate;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200451 struct iwl3945_rs_sta *rs_sta = priv_sta;
Johannes Berge039fa42008-05-15 12:55:29 +0200452 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg8318d782008-01-24 19:38:38 +0100453
Zhu Yib481de92007-09-25 17:54:57 -0700454 IWL_DEBUG_RATE("enter\n");
455
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800456 retries = info->status.rates[0].count;
Johannes Berge6a98542008-10-21 12:40:02 +0200457
458 first_index = sband->bitrates[info->status.rates[0].idx].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -0700459 if ((first_index < 0) || (first_index >= IWL_RATE_COUNT)) {
Johannes Berg8318d782008-01-24 19:38:38 +0100460 IWL_DEBUG_RATE("leave: Rate out of bounds: %d\n", first_index);
Zhu Yib481de92007-09-25 17:54:57 -0700461 return;
462 }
463
Johannes Berg4b7679a2008-09-18 18:14:18 +0200464 if (!priv_sta) {
Zhu Yib481de92007-09-25 17:54:57 -0700465 IWL_DEBUG_RATE("leave: No STA priv data to update!\n");
466 return;
467 }
468
Tomas Winklerfa254a62008-01-27 20:41:38 -0800469 rs_sta->tx_packets++;
Zhu Yib481de92007-09-25 17:54:57 -0700470
471 scale_rate_index = first_index;
472 last_index = first_index;
473
474 /*
475 * Update the window for each rate. We determine which rates
476 * were Tx'd based on the total number of retries vs. the number
477 * of retries configured for each rate -- currently set to the
478 * priv value 'retry_rate' vs. rate specific
479 *
480 * On exit from this while loop last_index indicates the rate
481 * at which the frame was finally transmitted (or failed if no
482 * ACK)
483 */
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800484 while (retries > 1) {
485 if ((retries - 1) < priv->retry_rate) {
486 current_count = (retries - 1);
Zhu Yib481de92007-09-25 17:54:57 -0700487 last_index = scale_rate_index;
488 } else {
489 current_count = priv->retry_rate;
Johannes Berge6a98542008-10-21 12:40:02 +0200490 last_index = iwl3945_rs_next_rate(priv,
Mohamed Abbas14577f22007-11-12 11:37:42 +0800491 scale_rate_index);
Zhu Yib481de92007-09-25 17:54:57 -0700492 }
493
494 /* Update this rate accounting for as many retries
495 * as was used for it (per current_count) */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800496 iwl3945_collect_tx_data(rs_sta,
497 &rs_sta->win[scale_rate_index],
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800498 0, current_count, scale_rate_index);
Zhu Yib481de92007-09-25 17:54:57 -0700499 IWL_DEBUG_RATE("Update rate %d for %d retries.\n",
500 scale_rate_index, current_count);
501
502 retries -= current_count;
503
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800504 scale_rate_index = last_index;
Zhu Yib481de92007-09-25 17:54:57 -0700505 }
506
Mohamed Abbas14577f22007-11-12 11:37:42 +0800507
Zhu Yib481de92007-09-25 17:54:57 -0700508 /* Update the last index window with success/failure based on ACK */
509 IWL_DEBUG_RATE("Update rate %d with %s.\n",
510 last_index,
Johannes Berge039fa42008-05-15 12:55:29 +0200511 (info->flags & IEEE80211_TX_STAT_ACK) ?
Zhu Yib481de92007-09-25 17:54:57 -0700512 "success" : "failure");
Tomas Winklerfa254a62008-01-27 20:41:38 -0800513 iwl3945_collect_tx_data(rs_sta,
514 &rs_sta->win[last_index],
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800515 info->flags & IEEE80211_TX_STAT_ACK, 1, last_index);
Zhu Yib481de92007-09-25 17:54:57 -0700516
517 /* We updated the rate scale window -- if its been more than
518 * flush_time since the last run, schedule the flush
519 * again */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800520 spin_lock_irqsave(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700521
Tomas Winklerfa254a62008-01-27 20:41:38 -0800522 if (!rs_sta->flush_pending &&
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800523 time_after(jiffies, rs_sta->last_flush +
Tomas Winklerfa254a62008-01-27 20:41:38 -0800524 rs_sta->flush_time)) {
Zhu Yib481de92007-09-25 17:54:57 -0700525
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800526 rs_sta->last_partial_flush = jiffies;
Tomas Winklerfa254a62008-01-27 20:41:38 -0800527 rs_sta->flush_pending = 1;
528 mod_timer(&rs_sta->rate_scale_flush,
529 jiffies + rs_sta->flush_time);
Zhu Yib481de92007-09-25 17:54:57 -0700530 }
531
Tomas Winklerfa254a62008-01-27 20:41:38 -0800532 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700533
Zhu Yib481de92007-09-25 17:54:57 -0700534 IWL_DEBUG_RATE("leave\n");
535
536 return;
537}
538
Tomas Winklerfa254a62008-01-27 20:41:38 -0800539static u16 iwl3945_get_adjacent_rate(struct iwl3945_rs_sta *rs_sta,
Johannes Berg8318d782008-01-24 19:38:38 +0100540 u8 index, u16 rate_mask, enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700541{
542 u8 high = IWL_RATE_INVALID;
543 u8 low = IWL_RATE_INVALID;
544
Ian Schram01ebd062007-10-25 17:15:22 +0800545 /* 802.11A walks to the next literal adjacent rate in
Zhu Yib481de92007-09-25 17:54:57 -0700546 * the rate table */
Johannes Berg8318d782008-01-24 19:38:38 +0100547 if (unlikely(band == IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -0700548 int i;
549 u32 mask;
550
551 /* Find the previous rate that is in the rate mask */
552 i = index - 1;
553 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
554 if (rate_mask & mask) {
555 low = i;
556 break;
557 }
558 }
559
560 /* Find the next rate that is in the rate mask */
561 i = index + 1;
562 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
563 if (rate_mask & mask) {
564 high = i;
565 break;
566 }
567 }
568
569 return (high << 8) | low;
570 }
571
572 low = index;
573 while (low != IWL_RATE_INVALID) {
Tomas Winklerfa254a62008-01-27 20:41:38 -0800574 if (rs_sta->tgg)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800575 low = iwl3945_rates[low].prev_rs_tgg;
Zhu Yib481de92007-09-25 17:54:57 -0700576 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800577 low = iwl3945_rates[low].prev_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700578 if (low == IWL_RATE_INVALID)
579 break;
580 if (rate_mask & (1 << low))
581 break;
582 IWL_DEBUG_RATE("Skipping masked lower rate: %d\n", low);
583 }
584
585 high = index;
586 while (high != IWL_RATE_INVALID) {
Tomas Winklerfa254a62008-01-27 20:41:38 -0800587 if (rs_sta->tgg)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800588 high = iwl3945_rates[high].next_rs_tgg;
Zhu Yib481de92007-09-25 17:54:57 -0700589 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800590 high = iwl3945_rates[high].next_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700591 if (high == IWL_RATE_INVALID)
592 break;
593 if (rate_mask & (1 << high))
594 break;
595 IWL_DEBUG_RATE("Skipping masked higher rate: %d\n", high);
596 }
597
598 return (high << 8) | low;
599}
600
601/**
602 * rs_get_rate - find the rate for the requested packet
603 *
604 * Returns the ieee80211_rate structure allocated by the driver.
605 *
606 * The rate control algorithm has no internal mapping between hw_mode's
607 * rate ordering and the rate ordering used by the rate control algorithm.
608 *
609 * The rate control algorithm uses a single table of rates that goes across
610 * the entire A/B/G spectrum vs. being limited to just one particular
611 * hw_mode.
612 *
613 * As such, we can't convert the index obtained below into the hw_mode's
614 * rate table and must reference the driver allocated rate table
615 *
616 */
Johannes Berge6a98542008-10-21 12:40:02 +0200617static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta,
618 void *priv_sta, struct ieee80211_tx_rate_control *txrc)
Zhu Yib481de92007-09-25 17:54:57 -0700619{
Johannes Berge6a98542008-10-21 12:40:02 +0200620 struct ieee80211_supported_band *sband = txrc->sband;
621 struct sk_buff *skb = txrc->skb;
Zhu Yib481de92007-09-25 17:54:57 -0700622 u8 low = IWL_RATE_INVALID;
623 u8 high = IWL_RATE_INVALID;
624 u16 high_low;
625 int index;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200626 struct iwl3945_rs_sta *rs_sta = priv_sta;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800627 struct iwl3945_rate_scale_data *window = NULL;
Tomas Winkler28447f32008-03-06 17:36:54 -0800628 int current_tpt = IWL_INV_TPT;
629 int low_tpt = IWL_INV_TPT;
630 int high_tpt = IWL_INV_TPT;
Zhu Yib481de92007-09-25 17:54:57 -0700631 u32 fail_count;
632 s8 scale_action = 0;
633 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -0700634 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Michael Wu2bc454b2007-12-25 19:33:16 -0500635 u16 fc, rate_mask;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200636 struct iwl3945_priv *priv = (struct iwl3945_priv *)priv_r;
Johannes Berge6a98542008-10-21 12:40:02 +0200637 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Zhu Yib481de92007-09-25 17:54:57 -0700638
639 IWL_DEBUG_RATE("enter\n");
640
Michael Wu2bc454b2007-12-25 19:33:16 -0500641 /* Send management frames and broadcast/multicast data using lowest
642 * rate. */
643 fc = le16_to_cpu(hdr->frame_control);
644 if ((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA ||
645 is_multicast_ether_addr(hdr->addr1) ||
Johannes Berg4b7679a2008-09-18 18:14:18 +0200646 !sta || !priv_sta) {
Zhu Yib481de92007-09-25 17:54:57 -0700647 IWL_DEBUG_RATE("leave: No STA priv data to update!\n");
Johannes Berge6a98542008-10-21 12:40:02 +0200648 info->control.rates[0].idx = rate_lowest_index(sband, sta);
Mattias Nissler1abbe492007-12-20 13:50:07 +0100649 return;
Zhu Yib481de92007-09-25 17:54:57 -0700650 }
651
Johannes Berg4b7679a2008-09-18 18:14:18 +0200652 rate_mask = sta->supp_rates[sband->band];
Johannes Bergb7e35002008-09-11 02:22:58 +0200653 index = min(rs_sta->last_txrate_idx & 0xffff, IWL_RATE_COUNT - 1);
Mohamed Abbas14577f22007-11-12 11:37:42 +0800654
Tomas Winkler28447f32008-03-06 17:36:54 -0800655 if (sband->band == IEEE80211_BAND_5GHZ)
Mohamed Abbas14577f22007-11-12 11:37:42 +0800656 rate_mask = rate_mask << IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -0700657
Johannes Berg05c914f2008-09-11 00:01:58 +0200658 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
Tomas Winklerfa254a62008-01-27 20:41:38 -0800659 !rs_sta->ibss_sta_added) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800660 u8 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700661
662 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -0700663 IWL_DEBUG_RATE("LQ: ADD station %pm\n",
664 hdr->addr1);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800665 sta_id = iwl3945_add_station(priv,
Zhu Yib481de92007-09-25 17:54:57 -0700666 hdr->addr1, 0, CMD_ASYNC);
667 }
668 if (sta_id != IWL_INVALID_STATION)
Tomas Winklerfa254a62008-01-27 20:41:38 -0800669 rs_sta->ibss_sta_added = 1;
Zhu Yib481de92007-09-25 17:54:57 -0700670 }
671
Tomas Winklerfa254a62008-01-27 20:41:38 -0800672 spin_lock_irqsave(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700673
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800674 /* for recent assoc, choose best rate regarding
675 * to rssi value
676 */
Tomas Winklerfa254a62008-01-27 20:41:38 -0800677 if (rs_sta->start_rate != IWL_RATE_INVALID) {
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800678 if (rs_sta->start_rate < index &&
679 (rate_mask & (1 << rs_sta->start_rate)))
680 index = rs_sta->start_rate;
Tomas Winklerfa254a62008-01-27 20:41:38 -0800681 rs_sta->start_rate = IWL_RATE_INVALID;
Zhu Yib481de92007-09-25 17:54:57 -0700682 }
683
Tomas Winklerfa254a62008-01-27 20:41:38 -0800684 window = &(rs_sta->win[index]);
Zhu Yib481de92007-09-25 17:54:57 -0700685
686 fail_count = window->counter - window->success_counter;
687
688 if (((fail_count <= IWL_RATE_MIN_FAILURE_TH) &&
689 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH))) {
Tomas Winklerfa254a62008-01-27 20:41:38 -0800690 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700691
692 IWL_DEBUG_RATE("Invalid average_tpt on rate %d: "
693 "counter: %d, success_counter: %d, "
694 "expected_tpt is %sNULL\n",
695 index,
696 window->counter,
697 window->success_counter,
Tomas Winklerfa254a62008-01-27 20:41:38 -0800698 rs_sta->expected_tpt ? "not " : "");
Zhu Yib481de92007-09-25 17:54:57 -0700699 goto out;
700
701 }
702
Zhu Yib481de92007-09-25 17:54:57 -0700703 current_tpt = window->average_tpt;
704
Tomas Winklerfa254a62008-01-27 20:41:38 -0800705 high_low = iwl3945_get_adjacent_rate(rs_sta, index, rate_mask,
Tomas Winkler28447f32008-03-06 17:36:54 -0800706 sband->band);
Zhu Yib481de92007-09-25 17:54:57 -0700707 low = high_low & 0xff;
708 high = (high_low >> 8) & 0xff;
709
710 if (low != IWL_RATE_INVALID)
Tomas Winklerfa254a62008-01-27 20:41:38 -0800711 low_tpt = rs_sta->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -0700712
713 if (high != IWL_RATE_INVALID)
Tomas Winklerfa254a62008-01-27 20:41:38 -0800714 high_tpt = rs_sta->win[high].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -0700715
Tomas Winklerfa254a62008-01-27 20:41:38 -0800716 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700717
718 scale_action = 1;
719
720 if ((window->success_ratio < IWL_RATE_DECREASE_TH) || !current_tpt) {
721 IWL_DEBUG_RATE("decrease rate because of low success_ratio\n");
722 scale_action = -1;
Tomas Winkler28447f32008-03-06 17:36:54 -0800723 } else if ((low_tpt == IWL_INV_TPT) && (high_tpt == IWL_INV_TPT))
Zhu Yib481de92007-09-25 17:54:57 -0700724 scale_action = 1;
Tomas Winkler28447f32008-03-06 17:36:54 -0800725 else if ((low_tpt != IWL_INV_TPT) && (high_tpt != IWL_INV_TPT) &&
726 (low_tpt < current_tpt) && (high_tpt < current_tpt)) {
Zhu Yib481de92007-09-25 17:54:57 -0700727 IWL_DEBUG_RATE("No action -- low [%d] & high [%d] < "
728 "current_tpt [%d]\n",
729 low_tpt, high_tpt, current_tpt);
730 scale_action = 0;
731 } else {
Tomas Winkler28447f32008-03-06 17:36:54 -0800732 if (high_tpt != IWL_INV_TPT) {
Zhu Yib481de92007-09-25 17:54:57 -0700733 if (high_tpt > current_tpt)
734 scale_action = 1;
735 else {
736 IWL_DEBUG_RATE
737 ("decrease rate because of high tpt\n");
738 scale_action = -1;
739 }
Tomas Winkler28447f32008-03-06 17:36:54 -0800740 } else if (low_tpt != IWL_INV_TPT) {
Zhu Yib481de92007-09-25 17:54:57 -0700741 if (low_tpt > current_tpt) {
742 IWL_DEBUG_RATE
743 ("decrease rate because of low tpt\n");
744 scale_action = -1;
745 } else
746 scale_action = 1;
747 }
748 }
749
Abbas, Mohamed74221d02008-12-02 12:14:03 -0800750 if (scale_action == -1) {
751 if (window->success_ratio > IWL_SUCCESS_DOWN_TH)
752 scale_action = 0;
753 } else if (scale_action == 1) {
754 if (window->success_ratio < IWL_SUCCESS_UP_TH) {
755 IWL_DEBUG_RATE("No action -- success_ratio [%d] < "
756 "SUCCESS UP\n", window->success_ratio);
757 scale_action = 0;
758 }
Zhu Yib481de92007-09-25 17:54:57 -0700759 }
760
761 switch (scale_action) {
762 case -1:
763 if (low != IWL_RATE_INVALID)
764 index = low;
765 break;
766
767 case 1:
768 if (high != IWL_RATE_INVALID)
769 index = high;
770
771 break;
772
773 case 0:
774 default:
775 break;
776 }
777
778 IWL_DEBUG_RATE("Selected %d (action %d) - low %d high %d\n",
779 index, scale_action, low, high);
780
781 out:
782
Johannes Bergb7e35002008-09-11 02:22:58 +0200783 rs_sta->last_txrate_idx = index;
Tomas Winkler28447f32008-03-06 17:36:54 -0800784 if (sband->band == IEEE80211_BAND_5GHZ)
Johannes Berge6a98542008-10-21 12:40:02 +0200785 info->control.rates[0].idx = rs_sta->last_txrate_idx -
786 IWL_FIRST_OFDM_RATE;
Mohamed Abbas14577f22007-11-12 11:37:42 +0800787 else
Johannes Berge6a98542008-10-21 12:40:02 +0200788 info->control.rates[0].idx = rs_sta->last_txrate_idx;
Mohamed Abbas14577f22007-11-12 11:37:42 +0800789
Zhu Yib481de92007-09-25 17:54:57 -0700790 IWL_DEBUG_RATE("leave: %d\n", index);
Zhu Yib481de92007-09-25 17:54:57 -0700791}
792
Abbas, Mohamedc30e30e2008-12-02 12:14:02 -0800793#ifdef CONFIG_MAC80211_DEBUGFS
794static int iwl3945_open_file_generic(struct inode *inode, struct file *file)
795{
796 file->private_data = inode->i_private;
797 return 0;
798}
799
800static ssize_t iwl3945_sta_dbgfs_stats_table_read(struct file *file,
801 char __user *user_buf,
802 size_t count, loff_t *ppos)
803{
804 char buff[1024];
805 int desc = 0;
806 int j;
807 struct iwl3945_rs_sta *lq_sta = file->private_data;
808
809 desc += sprintf(buff + desc, "tx packets=%d last rate index=%d\n"
810 "rate=0x%X flush time %d\n",
811 lq_sta->tx_packets,
812 lq_sta->last_txrate_idx,
813 lq_sta->start_rate, jiffies_to_msecs(lq_sta->flush_time));
814 for (j = 0; j < IWL_RATE_COUNT; j++) {
815 desc += sprintf(buff+desc,
816 "counter=%d success=%d %%=%d\n",
817 lq_sta->win[j].counter,
818 lq_sta->win[j].success_counter,
819 lq_sta->win[j].success_ratio);
820 }
821 return simple_read_from_buffer(user_buf, count, ppos, buff, desc);
822}
823
824static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
825 .read = iwl3945_sta_dbgfs_stats_table_read,
826 .open = iwl3945_open_file_generic,
827};
828
829static void iwl3945_add_debugfs(void *priv, void *priv_sta,
830 struct dentry *dir)
831{
832 struct iwl3945_rs_sta *lq_sta = priv_sta;
833
834 lq_sta->rs_sta_dbgfs_stats_table_file =
835 debugfs_create_file("rate_stats_table", 0600, dir,
836 lq_sta, &rs_sta_dbgfs_stats_table_ops);
837
838}
839
840static void iwl3945_remove_debugfs(void *priv, void *priv_sta)
841{
842 struct iwl3945_rs_sta *lq_sta = priv_sta;
843 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
844}
845#endif
846
Zhu Yib481de92007-09-25 17:54:57 -0700847static struct rate_control_ops rs_ops = {
848 .module = NULL,
849 .name = RS_NAME,
850 .tx_status = rs_tx_status,
851 .get_rate = rs_get_rate,
852 .rate_init = rs_rate_init,
Zhu Yib481de92007-09-25 17:54:57 -0700853 .alloc = rs_alloc,
854 .free = rs_free,
855 .alloc_sta = rs_alloc_sta,
856 .free_sta = rs_free_sta,
Abbas, Mohamedc30e30e2008-12-02 12:14:02 -0800857#ifdef CONFIG_MAC80211_DEBUGFS
858 .add_sta_debugfs = iwl3945_add_debugfs,
859 .remove_sta_debugfs = iwl3945_remove_debugfs,
860#endif
861
Zhu Yib481de92007-09-25 17:54:57 -0700862};
863
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800864void iwl3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700865{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800866 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -0700867 s32 rssi = 0;
868 unsigned long flags;
Tomas Winklerfa254a62008-01-27 20:41:38 -0800869 struct iwl3945_rs_sta *rs_sta;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200870 struct ieee80211_sta *sta;
871 struct iwl3945_sta_priv *psta;
Zhu Yib481de92007-09-25 17:54:57 -0700872
873 IWL_DEBUG_RATE("enter\n");
874
Johannes Bergd0709a62008-02-25 16:27:46 +0100875 rcu_read_lock();
876
Johannes Berg4b7679a2008-09-18 18:14:18 +0200877 sta = ieee80211_find_sta(hw, priv->stations[sta_id].sta.sta.addr);
Johannes Berg52518182008-10-11 01:46:25 +0200878 if (!sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100879 rcu_read_unlock();
Zhu Yib481de92007-09-25 17:54:57 -0700880 return;
881 }
882
Johannes Berg52518182008-10-11 01:46:25 +0200883 psta = (void *) sta->drv_priv;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200884 rs_sta = psta->rs_sta;
Zhu Yib481de92007-09-25 17:54:57 -0700885
Tomas Winklerfa254a62008-01-27 20:41:38 -0800886 spin_lock_irqsave(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700887
Tomas Winklerfa254a62008-01-27 20:41:38 -0800888 rs_sta->tgg = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100889 switch (priv->band) {
890 case IEEE80211_BAND_2GHZ:
891 /* TODO: this always does G, not a regression */
Zhu Yib481de92007-09-25 17:54:57 -0700892 if (priv->active_rxon.flags & RXON_FLG_TGG_PROTECT_MSK) {
Tomas Winklerfa254a62008-01-27 20:41:38 -0800893 rs_sta->tgg = 1;
894 rs_sta->expected_tpt = iwl3945_expected_tpt_g_prot;
Zhu Yib481de92007-09-25 17:54:57 -0700895 } else
Tomas Winklerfa254a62008-01-27 20:41:38 -0800896 rs_sta->expected_tpt = iwl3945_expected_tpt_g;
Zhu Yib481de92007-09-25 17:54:57 -0700897 break;
898
Johannes Berg8318d782008-01-24 19:38:38 +0100899 case IEEE80211_BAND_5GHZ:
Tomas Winklerfa254a62008-01-27 20:41:38 -0800900 rs_sta->expected_tpt = iwl3945_expected_tpt_a;
Zhu Yib481de92007-09-25 17:54:57 -0700901 break;
Johannes Berg8318d782008-01-24 19:38:38 +0100902 case IEEE80211_NUM_BANDS:
903 BUG();
Zhu Yib481de92007-09-25 17:54:57 -0700904 break;
905 }
906
Tomas Winklerfa254a62008-01-27 20:41:38 -0800907 spin_unlock_irqrestore(&rs_sta->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700908
909 rssi = priv->last_rx_rssi;
910 if (rssi == 0)
911 rssi = IWL_MIN_RSSI_VAL;
912
913 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RATE, "Network RSSI: %d\n", rssi);
914
Johannes Berg8318d782008-01-24 19:38:38 +0100915 rs_sta->start_rate = iwl3945_get_rate_index_by_rssi(rssi, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -0700916
917 IWL_DEBUG_RATE("leave: rssi %d assign rate index: "
Tomas Winklerfa254a62008-01-27 20:41:38 -0800918 "%d (plcp 0x%x)\n", rssi, rs_sta->start_rate,
919 iwl3945_rates[rs_sta->start_rate].plcp);
Johannes Berg52518182008-10-11 01:46:25 +0200920 rcu_read_unlock();
Zhu Yib481de92007-09-25 17:54:57 -0700921}
922
Reinette Chatre897e1cf2008-03-28 16:21:09 -0700923int iwl3945_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -0700924{
Reinette Chatre897e1cf2008-03-28 16:21:09 -0700925 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -0700926}
927
Reinette Chatre897e1cf2008-03-28 16:21:09 -0700928void iwl3945_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -0700929{
930 ieee80211_rate_control_unregister(&rs_ops);
931}
932
933