mac80211: move TX info into skb->cb
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / iwl-3945-rs.c
CommitLineData
b481de9c
ZY
1/******************************************************************************
2 *
eb7ae89c 3 * Copyright(c) 2005 - 2008 Intel Corporation. All rights reserved.
b481de9c
ZY
4 *
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>
b481de9c
ZY
32
33#include <linux/netdevice.h>
34#include <linux/etherdevice.h>
35#include <linux/delay.h>
36
37#include <linux/workqueue.h>
38
2c8dccc7 39#include "../net/mac80211/rate.h"
b481de9c 40
5d08cd1d 41#include "iwl-3945.h"
b481de9c
ZY
42
43#define RS_NAME "iwl-3945-rs"
44
bb8c093b 45struct iwl3945_rate_scale_data {
b481de9c
ZY
46 u64 data;
47 s32 success_counter;
48 s32 success_ratio;
49 s32 counter;
50 s32 average_tpt;
51 unsigned long stamp;
52};
53
fa254a68 54struct iwl3945_rs_sta {
b481de9c
ZY
55 spinlock_t lock;
56 s32 *expected_tpt;
57 unsigned long last_partial_flush;
58 unsigned long last_flush;
59 u32 flush_time;
60 u32 last_tx_packets;
61 u32 tx_packets;
62 u8 tgg;
63 u8 flush_pending;
64 u8 start_rate;
65 u8 ibss_sta_added;
66 struct timer_list rate_scale_flush;
bb8c093b 67 struct iwl3945_rate_scale_data win[IWL_RATE_COUNT];
b481de9c
ZY
68};
69
bb8c093b 70static s32 iwl3945_expected_tpt_g[IWL_RATE_COUNT] = {
14577f23 71 7, 13, 35, 58, 0, 0, 76, 104, 130, 168, 191, 202
b481de9c
ZY
72};
73
bb8c093b 74static s32 iwl3945_expected_tpt_g_prot[IWL_RATE_COUNT] = {
14577f23 75 7, 13, 35, 58, 0, 0, 0, 80, 93, 113, 123, 125
b481de9c
ZY
76};
77
bb8c093b 78static s32 iwl3945_expected_tpt_a[IWL_RATE_COUNT] = {
14577f23 79 0, 0, 0, 0, 40, 57, 72, 98, 121, 154, 177, 186
b481de9c
ZY
80};
81
bb8c093b 82static s32 iwl3945_expected_tpt_b[IWL_RATE_COUNT] = {
14577f23 83 7, 13, 35, 58, 0, 0, 0, 0, 0, 0, 0, 0
b481de9c
ZY
84};
85
bb8c093b 86struct iwl3945_tpt_entry {
b481de9c
ZY
87 s8 min_rssi;
88 u8 index;
89};
90
bb8c093b 91static struct iwl3945_tpt_entry iwl3945_tpt_table_a[] = {
b481de9c
ZY
92 {-60, IWL_RATE_54M_INDEX},
93 {-64, IWL_RATE_48M_INDEX},
94 {-72, IWL_RATE_36M_INDEX},
95 {-80, IWL_RATE_24M_INDEX},
96 {-84, IWL_RATE_18M_INDEX},
97 {-85, IWL_RATE_12M_INDEX},
98 {-87, IWL_RATE_9M_INDEX},
99 {-89, IWL_RATE_6M_INDEX}
100};
101
bb8c093b 102static struct iwl3945_tpt_entry iwl3945_tpt_table_g[] = {
b481de9c
ZY
103 {-60, IWL_RATE_54M_INDEX},
104 {-64, IWL_RATE_48M_INDEX},
105 {-68, IWL_RATE_36M_INDEX},
106 {-80, IWL_RATE_24M_INDEX},
107 {-84, IWL_RATE_18M_INDEX},
108 {-85, IWL_RATE_12M_INDEX},
109 {-86, IWL_RATE_11M_INDEX},
110 {-88, IWL_RATE_5M_INDEX},
111 {-90, IWL_RATE_2M_INDEX},
112 {-92, IWL_RATE_1M_INDEX}
113};
114
115#define IWL_RATE_MAX_WINDOW 62
116#define IWL_RATE_FLUSH (3*HZ/10)
117#define IWL_RATE_WIN_FLUSH (HZ/2)
118#define IWL_RATE_HIGH_TH 11520
119#define IWL_RATE_MIN_FAILURE_TH 8
120#define IWL_RATE_MIN_SUCCESS_TH 8
121#define IWL_RATE_DECREASE_TH 1920
122
8318d78a 123static u8 iwl3945_get_rate_index_by_rssi(s32 rssi, enum ieee80211_band band)
b481de9c
ZY
124{
125 u32 index = 0;
126 u32 table_size = 0;
bb8c093b 127 struct iwl3945_tpt_entry *tpt_table = NULL;
b481de9c
ZY
128
129 if ((rssi < IWL_MIN_RSSI_VAL) || (rssi > IWL_MAX_RSSI_VAL))
130 rssi = IWL_MIN_RSSI_VAL;
131
8318d78a
JB
132 switch (band) {
133 case IEEE80211_BAND_2GHZ:
bb8c093b
CH
134 tpt_table = iwl3945_tpt_table_g;
135 table_size = ARRAY_SIZE(iwl3945_tpt_table_g);
b481de9c
ZY
136 break;
137
8318d78a 138 case IEEE80211_BAND_5GHZ:
bb8c093b
CH
139 tpt_table = iwl3945_tpt_table_a;
140 table_size = ARRAY_SIZE(iwl3945_tpt_table_a);
b481de9c
ZY
141 break;
142
143 default:
8318d78a 144 BUG();
b481de9c
ZY
145 break;
146 }
147
148 while ((index < table_size) && (rssi < tpt_table[index].min_rssi))
149 index++;
150
151 index = min(index, (table_size - 1));
152
153 return tpt_table[index].index;
154}
155
bb8c093b 156static void iwl3945_clear_window(struct iwl3945_rate_scale_data *window)
b481de9c
ZY
157{
158 window->data = 0;
159 window->success_counter = 0;
28447f3c 160 window->success_ratio = -1;
b481de9c 161 window->counter = 0;
28447f3c 162 window->average_tpt = IWL_INV_TPT;
b481de9c
ZY
163 window->stamp = 0;
164}
165
166/**
bb8c093b 167 * iwl3945_rate_scale_flush_windows - flush out the rate scale windows
b481de9c
ZY
168 *
169 * Returns the number of windows that have gathered data but were
170 * not flushed. If there were any that were not flushed, then
171 * reschedule the rate flushing routine.
172 */
fa254a68 173static int iwl3945_rate_scale_flush_windows(struct iwl3945_rs_sta *rs_sta)
b481de9c
ZY
174{
175 int unflushed = 0;
176 int i;
177 unsigned long flags;
178
179 /*
180 * For each rate, if we have collected data on that rate
181 * and it has been more than IWL_RATE_WIN_FLUSH
182 * since we flushed, clear out the gathered statistics
183 */
184 for (i = 0; i < IWL_RATE_COUNT; i++) {
fa254a68 185 if (!rs_sta->win[i].counter)
b481de9c
ZY
186 continue;
187
fa254a68
TW
188 spin_lock_irqsave(&rs_sta->lock, flags);
189 if (time_after(jiffies, rs_sta->win[i].stamp +
b481de9c
ZY
190 IWL_RATE_WIN_FLUSH)) {
191 IWL_DEBUG_RATE("flushing %d samples of rate "
192 "index %d\n",
fa254a68
TW
193 rs_sta->win[i].counter, i);
194 iwl3945_clear_window(&rs_sta->win[i]);
b481de9c
ZY
195 } else
196 unflushed++;
fa254a68 197 spin_unlock_irqrestore(&rs_sta->lock, flags);
b481de9c
ZY
198 }
199
200 return unflushed;
201}
202
203#define IWL_RATE_FLUSH_MAX 5000 /* msec */
204#define IWL_RATE_FLUSH_MIN 50 /* msec */
205
bb8c093b 206static void iwl3945_bg_rate_scale_flush(unsigned long data)
b481de9c 207{
fa254a68 208 struct iwl3945_rs_sta *rs_sta = (void *)data;
b481de9c
ZY
209 int unflushed = 0;
210 unsigned long flags;
211 u32 packet_count, duration, pps;
212
213 IWL_DEBUG_RATE("enter\n");
214
fa254a68 215 unflushed = iwl3945_rate_scale_flush_windows(rs_sta);
b481de9c 216
fa254a68 217 spin_lock_irqsave(&rs_sta->lock, flags);
b481de9c 218
fa254a68 219 rs_sta->flush_pending = 0;
b481de9c
ZY
220
221 /* Number of packets Rx'd since last time this timer ran */
fa254a68 222 packet_count = (rs_sta->tx_packets - rs_sta->last_tx_packets) + 1;
b481de9c 223
fa254a68 224 rs_sta->last_tx_packets = rs_sta->tx_packets + 1;
b481de9c
ZY
225
226 if (unflushed) {
227 duration =
fa254a68
TW
228 jiffies_to_msecs(jiffies - rs_sta->last_partial_flush);
229/* duration = jiffies_to_msecs(rs_sta->flush_time); */
b481de9c
ZY
230
231 IWL_DEBUG_RATE("Tx'd %d packets in %dms\n",
232 packet_count, duration);
233
234 /* Determine packets per second */
235 if (duration)
236 pps = (packet_count * 1000) / duration;
237 else
238 pps = 0;
239
240 if (pps) {
241 duration = IWL_RATE_FLUSH_MAX / pps;
242 if (duration < IWL_RATE_FLUSH_MIN)
243 duration = IWL_RATE_FLUSH_MIN;
244 } else
245 duration = IWL_RATE_FLUSH_MAX;
246
fa254a68 247 rs_sta->flush_time = msecs_to_jiffies(duration);
b481de9c
ZY
248
249 IWL_DEBUG_RATE("new flush period: %d msec ave %d\n",
250 duration, packet_count);
251
fa254a68
TW
252 mod_timer(&rs_sta->rate_scale_flush, jiffies +
253 rs_sta->flush_time);
b481de9c 254
fa254a68 255 rs_sta->last_partial_flush = jiffies;
b481de9c
ZY
256 }
257
258 /* If there weren't any unflushed entries, we don't schedule the timer
259 * to run again */
260
fa254a68 261 rs_sta->last_flush = jiffies;
b481de9c 262
fa254a68 263 spin_unlock_irqrestore(&rs_sta->lock, flags);
b481de9c
ZY
264
265 IWL_DEBUG_RATE("leave\n");
266}
267
268/**
bb8c093b 269 * iwl3945_collect_tx_data - Update the success/failure sliding window
b481de9c
ZY
270 *
271 * We keep a sliding window of the last 64 packets transmitted
272 * at this rate. window->data contains the bitmask of successful
273 * packets.
274 */
fa254a68 275static void iwl3945_collect_tx_data(struct iwl3945_rs_sta *rs_sta,
bb8c093b 276 struct iwl3945_rate_scale_data *window,
b481de9c
ZY
277 int success, int retries)
278{
279 unsigned long flags;
280
281 if (!retries) {
282 IWL_DEBUG_RATE("leave: retries == 0 -- should be at least 1\n");
283 return;
284 }
285
286 while (retries--) {
fa254a68 287 spin_lock_irqsave(&rs_sta->lock, flags);
b481de9c
ZY
288
289 /* If we have filled up the window then subtract one from the
290 * success counter if the high-bit is counting toward
291 * success */
292 if (window->counter == IWL_RATE_MAX_WINDOW) {
293 if (window->data & (1ULL << (IWL_RATE_MAX_WINDOW - 1)))
294 window->success_counter--;
295 } else
296 window->counter++;
297
298 /* Slide the window to the left one bit */
299 window->data = (window->data << 1);
300
301 /* If this packet was a success then set the low bit high */
302 if (success) {
303 window->success_counter++;
304 window->data |= 1;
305 }
306
307 /* window->counter can't be 0 -- it is either >0 or
308 * IWL_RATE_MAX_WINDOW */
309 window->success_ratio = 12800 * window->success_counter /
310 window->counter;
311
312 /* Tag this window as having been updated */
313 window->stamp = jiffies;
314
fa254a68 315 spin_unlock_irqrestore(&rs_sta->lock, flags);
b481de9c
ZY
316 }
317}
318
319static void rs_rate_init(void *priv_rate, void *priv_sta,
320 struct ieee80211_local *local, struct sta_info *sta)
321{
322 int i;
323
324 IWL_DEBUG_RATE("enter\n");
325
326 /* TODO: what is a good starting rate for STA? About middle? Maybe not
327 * the lowest or the highest rate.. Could consider using RSSI from
328 * previous packets? Need to have IEEE 802.1X auth succeed immediately
329 * after assoc.. */
330
331 for (i = IWL_RATE_COUNT - 1; i >= 0; i--) {
8318d78a
JB
332 if (sta->supp_rates[local->hw.conf.channel->band] & (1 << i)) {
333 sta->txrate_idx = i;
b481de9c
ZY
334 break;
335 }
336 }
337
8318d78a 338 sta->last_txrate_idx = sta->txrate_idx;
b481de9c 339
8318d78a
JB
340 /* For 5 GHz band it start at IWL_FIRST_OFDM_RATE */
341 if (local->hw.conf.channel->band == IEEE80211_BAND_5GHZ)
342 sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
14577f23 343
b481de9c
ZY
344 IWL_DEBUG_RATE("leave\n");
345}
346
347static void *rs_alloc(struct ieee80211_local *local)
348{
349 return local->hw.priv;
350}
351
01ebd063 352/* rate scale requires free function to be implemented */
b481de9c
ZY
353static void rs_free(void *priv)
354{
355 return;
356}
357static void rs_clear(void *priv)
358{
359 return;
360}
361
362
363static void *rs_alloc_sta(void *priv, gfp_t gfp)
364{
fa254a68 365 struct iwl3945_rs_sta *rs_sta;
b481de9c
ZY
366 int i;
367
368 IWL_DEBUG_RATE("enter\n");
369
fa254a68
TW
370 rs_sta = kzalloc(sizeof(struct iwl3945_rs_sta), gfp);
371 if (!rs_sta) {
b481de9c
ZY
372 IWL_DEBUG_RATE("leave: ENOMEM\n");
373 return NULL;
374 }
375
fa254a68 376 spin_lock_init(&rs_sta->lock);
b481de9c 377
fa254a68 378 rs_sta->start_rate = IWL_RATE_INVALID;
b481de9c
ZY
379
380 /* default to just 802.11b */
fa254a68 381 rs_sta->expected_tpt = iwl3945_expected_tpt_b;
b481de9c 382
fa254a68
TW
383 rs_sta->last_partial_flush = jiffies;
384 rs_sta->last_flush = jiffies;
385 rs_sta->flush_time = IWL_RATE_FLUSH;
386 rs_sta->last_tx_packets = 0;
387 rs_sta->ibss_sta_added = 0;
b481de9c 388
fa254a68
TW
389 init_timer(&rs_sta->rate_scale_flush);
390 rs_sta->rate_scale_flush.data = (unsigned long)rs_sta;
391 rs_sta->rate_scale_flush.function = &iwl3945_bg_rate_scale_flush;
b481de9c
ZY
392
393 for (i = 0; i < IWL_RATE_COUNT; i++)
fa254a68 394 iwl3945_clear_window(&rs_sta->win[i]);
b481de9c
ZY
395
396 IWL_DEBUG_RATE("leave\n");
397
fa254a68 398 return rs_sta;
b481de9c
ZY
399}
400
401static void rs_free_sta(void *priv, void *priv_sta)
402{
fa254a68 403 struct iwl3945_rs_sta *rs_sta = priv_sta;
b481de9c
ZY
404
405 IWL_DEBUG_RATE("enter\n");
fa254a68
TW
406 del_timer_sync(&rs_sta->rate_scale_flush);
407 kfree(rs_sta);
b481de9c
ZY
408 IWL_DEBUG_RATE("leave\n");
409}
410
14577f23
MA
411
412/*
413 * get ieee prev rate from rate scale table.
414 * for A and B mode we need to overright prev
415 * value
416 */
bb8c093b 417static int rs_adjust_next_rate(struct iwl3945_priv *priv, int rate)
14577f23 418{
bb8c093b 419 int next_rate = iwl3945_get_prev_ieee_rate(rate);
14577f23 420
8318d78a
JB
421 switch (priv->band) {
422 case IEEE80211_BAND_5GHZ:
14577f23
MA
423 if (rate == IWL_RATE_12M_INDEX)
424 next_rate = IWL_RATE_9M_INDEX;
425 else if (rate == IWL_RATE_6M_INDEX)
426 next_rate = IWL_RATE_6M_INDEX;
427 break;
8318d78a 428/* XXX cannot be invoked in current mac80211 so not a regression
14577f23
MA
429 case MODE_IEEE80211B:
430 if (rate == IWL_RATE_11M_INDEX_TABLE)
431 next_rate = IWL_RATE_5M_INDEX_TABLE;
432 break;
8318d78a 433 */
14577f23
MA
434 default:
435 break;
436 }
437
438 return next_rate;
439}
b481de9c
ZY
440/**
441 * rs_tx_status - Update rate control values based on Tx results
442 *
bb8c093b 443 * NOTE: Uses iwl3945_priv->retry_rate for the # of retries attempted by
b481de9c
ZY
444 * the hardware for each rate.
445 */
446static void rs_tx_status(void *priv_rate,
447 struct net_device *dev,
e039fa4a 448 struct sk_buff *skb)
b481de9c
ZY
449{
450 u8 retries, current_count;
451 int scale_rate_index, first_index, last_index;
452 unsigned long flags;
453 struct sta_info *sta;
454 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
bb8c093b 455 struct iwl3945_priv *priv = (struct iwl3945_priv *)priv_rate;
b481de9c 456 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
fa254a68 457 struct iwl3945_rs_sta *rs_sta;
8318d78a 458 struct ieee80211_supported_band *sband;
e039fa4a 459 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
8318d78a 460
28447f3c
TW
461 IWL_DEBUG_RATE("enter\n");
462
8318d78a 463 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
b481de9c 464
b481de9c 465
e039fa4a
JB
466 retries = info->status.retry_count;
467 first_index = sband->bitrates[info->tx_rate_idx].hw_value;
b481de9c 468 if ((first_index < 0) || (first_index >= IWL_RATE_COUNT)) {
8318d78a 469 IWL_DEBUG_RATE("leave: Rate out of bounds: %d\n", first_index);
b481de9c
ZY
470 return;
471 }
472
d0709a65
JB
473 rcu_read_lock();
474
b481de9c
ZY
475 sta = sta_info_get(local, hdr->addr1);
476 if (!sta || !sta->rate_ctrl_priv) {
d0709a65 477 rcu_read_unlock();
b481de9c
ZY
478 IWL_DEBUG_RATE("leave: No STA priv data to update!\n");
479 return;
480 }
481
fa254a68 482 rs_sta = (void *)sta->rate_ctrl_priv;
b481de9c 483
fa254a68 484 rs_sta->tx_packets++;
b481de9c
ZY
485
486 scale_rate_index = first_index;
487 last_index = first_index;
488
489 /*
490 * Update the window for each rate. We determine which rates
491 * were Tx'd based on the total number of retries vs. the number
492 * of retries configured for each rate -- currently set to the
493 * priv value 'retry_rate' vs. rate specific
494 *
495 * On exit from this while loop last_index indicates the rate
496 * at which the frame was finally transmitted (or failed if no
497 * ACK)
498 */
499 while (retries > 0) {
500 if (retries < priv->retry_rate) {
501 current_count = retries;
502 last_index = scale_rate_index;
503 } else {
504 current_count = priv->retry_rate;
14577f23
MA
505 last_index = rs_adjust_next_rate(priv,
506 scale_rate_index);
b481de9c
ZY
507 }
508
509 /* Update this rate accounting for as many retries
510 * as was used for it (per current_count) */
fa254a68
TW
511 iwl3945_collect_tx_data(rs_sta,
512 &rs_sta->win[scale_rate_index],
b481de9c
ZY
513 0, current_count);
514 IWL_DEBUG_RATE("Update rate %d for %d retries.\n",
515 scale_rate_index, current_count);
516
517 retries -= current_count;
518
519 if (retries)
520 scale_rate_index =
14577f23 521 rs_adjust_next_rate(priv, scale_rate_index);
b481de9c
ZY
522 }
523
14577f23 524
b481de9c
ZY
525 /* Update the last index window with success/failure based on ACK */
526 IWL_DEBUG_RATE("Update rate %d with %s.\n",
527 last_index,
e039fa4a 528 (info->flags & IEEE80211_TX_STAT_ACK) ?
b481de9c 529 "success" : "failure");
fa254a68
TW
530 iwl3945_collect_tx_data(rs_sta,
531 &rs_sta->win[last_index],
e039fa4a 532 info->flags & IEEE80211_TX_STAT_ACK, 1);
b481de9c
ZY
533
534 /* We updated the rate scale window -- if its been more than
535 * flush_time since the last run, schedule the flush
536 * again */
fa254a68 537 spin_lock_irqsave(&rs_sta->lock, flags);
b481de9c 538
fa254a68
TW
539 if (!rs_sta->flush_pending &&
540 time_after(jiffies, rs_sta->last_partial_flush +
541 rs_sta->flush_time)) {
b481de9c 542
fa254a68
TW
543 rs_sta->flush_pending = 1;
544 mod_timer(&rs_sta->rate_scale_flush,
545 jiffies + rs_sta->flush_time);
b481de9c
ZY
546 }
547
fa254a68 548 spin_unlock_irqrestore(&rs_sta->lock, flags);
b481de9c 549
d0709a65 550 rcu_read_unlock();
b481de9c
ZY
551
552 IWL_DEBUG_RATE("leave\n");
553
554 return;
555}
556
fa254a68 557static u16 iwl3945_get_adjacent_rate(struct iwl3945_rs_sta *rs_sta,
8318d78a 558 u8 index, u16 rate_mask, enum ieee80211_band band)
b481de9c
ZY
559{
560 u8 high = IWL_RATE_INVALID;
561 u8 low = IWL_RATE_INVALID;
562
01ebd063 563 /* 802.11A walks to the next literal adjacent rate in
b481de9c 564 * the rate table */
8318d78a 565 if (unlikely(band == IEEE80211_BAND_5GHZ)) {
b481de9c
ZY
566 int i;
567 u32 mask;
568
569 /* Find the previous rate that is in the rate mask */
570 i = index - 1;
571 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
572 if (rate_mask & mask) {
573 low = i;
574 break;
575 }
576 }
577
578 /* Find the next rate that is in the rate mask */
579 i = index + 1;
580 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
581 if (rate_mask & mask) {
582 high = i;
583 break;
584 }
585 }
586
587 return (high << 8) | low;
588 }
589
590 low = index;
591 while (low != IWL_RATE_INVALID) {
fa254a68 592 if (rs_sta->tgg)
bb8c093b 593 low = iwl3945_rates[low].prev_rs_tgg;
b481de9c 594 else
bb8c093b 595 low = iwl3945_rates[low].prev_rs;
b481de9c
ZY
596 if (low == IWL_RATE_INVALID)
597 break;
598 if (rate_mask & (1 << low))
599 break;
600 IWL_DEBUG_RATE("Skipping masked lower rate: %d\n", low);
601 }
602
603 high = index;
604 while (high != IWL_RATE_INVALID) {
fa254a68 605 if (rs_sta->tgg)
bb8c093b 606 high = iwl3945_rates[high].next_rs_tgg;
b481de9c 607 else
bb8c093b 608 high = iwl3945_rates[high].next_rs;
b481de9c
ZY
609 if (high == IWL_RATE_INVALID)
610 break;
611 if (rate_mask & (1 << high))
612 break;
613 IWL_DEBUG_RATE("Skipping masked higher rate: %d\n", high);
614 }
615
616 return (high << 8) | low;
617}
618
619/**
620 * rs_get_rate - find the rate for the requested packet
621 *
622 * Returns the ieee80211_rate structure allocated by the driver.
623 *
624 * The rate control algorithm has no internal mapping between hw_mode's
625 * rate ordering and the rate ordering used by the rate control algorithm.
626 *
627 * The rate control algorithm uses a single table of rates that goes across
628 * the entire A/B/G spectrum vs. being limited to just one particular
629 * hw_mode.
630 *
631 * As such, we can't convert the index obtained below into the hw_mode's
632 * rate table and must reference the driver allocated rate table
633 *
634 */
1abbe498 635static void rs_get_rate(void *priv_rate, struct net_device *dev,
28447f3c 636 struct ieee80211_supported_band *sband,
8318d78a 637 struct sk_buff *skb,
1abbe498 638 struct rate_selection *sel)
b481de9c
ZY
639{
640 u8 low = IWL_RATE_INVALID;
641 u8 high = IWL_RATE_INVALID;
642 u16 high_low;
643 int index;
fa254a68 644 struct iwl3945_rs_sta *rs_sta;
bb8c093b 645 struct iwl3945_rate_scale_data *window = NULL;
28447f3c
TW
646 int current_tpt = IWL_INV_TPT;
647 int low_tpt = IWL_INV_TPT;
648 int high_tpt = IWL_INV_TPT;
b481de9c
ZY
649 u32 fail_count;
650 s8 scale_action = 0;
651 unsigned long flags;
652 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
653 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
654 struct sta_info *sta;
2bc454b0 655 u16 fc, rate_mask;
bb8c093b 656 struct iwl3945_priv *priv = (struct iwl3945_priv *)priv_rate;
0795af57 657 DECLARE_MAC_BUF(mac);
b481de9c
ZY
658
659 IWL_DEBUG_RATE("enter\n");
660
d0709a65
JB
661 rcu_read_lock();
662
b481de9c 663 sta = sta_info_get(local, hdr->addr1);
2bc454b0
MW
664
665 /* Send management frames and broadcast/multicast data using lowest
666 * rate. */
667 fc = le16_to_cpu(hdr->frame_control);
668 if ((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA ||
669 is_multicast_ether_addr(hdr->addr1) ||
670 !sta || !sta->rate_ctrl_priv) {
b481de9c 671 IWL_DEBUG_RATE("leave: No STA priv data to update!\n");
2e92e6f2 672 sel->rate_idx = rate_lowest_index(local, sband, sta);
d0709a65 673 rcu_read_unlock();
1abbe498 674 return;
b481de9c
ZY
675 }
676
28447f3c 677 rate_mask = sta->supp_rates[sband->band];
8318d78a 678 index = min(sta->last_txrate_idx & 0xffff, IWL_RATE_COUNT - 1);
14577f23 679
28447f3c 680 if (sband->band == IEEE80211_BAND_5GHZ)
14577f23 681 rate_mask = rate_mask << IWL_FIRST_OFDM_RATE;
b481de9c 682
fa254a68 683 rs_sta = (void *)sta->rate_ctrl_priv;
b481de9c
ZY
684
685 if ((priv->iw_mode == IEEE80211_IF_TYPE_IBSS) &&
fa254a68 686 !rs_sta->ibss_sta_added) {
bb8c093b 687 u8 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
b481de9c
ZY
688
689 if (sta_id == IWL_INVALID_STATION) {
0795af57
JP
690 IWL_DEBUG_RATE("LQ: ADD station %s\n",
691 print_mac(mac, hdr->addr1));
bb8c093b 692 sta_id = iwl3945_add_station(priv,
b481de9c
ZY
693 hdr->addr1, 0, CMD_ASYNC);
694 }
695 if (sta_id != IWL_INVALID_STATION)
fa254a68 696 rs_sta->ibss_sta_added = 1;
b481de9c
ZY
697 }
698
fa254a68 699 spin_lock_irqsave(&rs_sta->lock, flags);
b481de9c 700
fa254a68
TW
701 if (rs_sta->start_rate != IWL_RATE_INVALID) {
702 index = rs_sta->start_rate;
703 rs_sta->start_rate = IWL_RATE_INVALID;
b481de9c
ZY
704 }
705
fa254a68 706 window = &(rs_sta->win[index]);
b481de9c
ZY
707
708 fail_count = window->counter - window->success_counter;
709
710 if (((fail_count <= IWL_RATE_MIN_FAILURE_TH) &&
711 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH))) {
28447f3c 712 window->average_tpt = IWL_INV_TPT;
fa254a68 713 spin_unlock_irqrestore(&rs_sta->lock, flags);
b481de9c
ZY
714
715 IWL_DEBUG_RATE("Invalid average_tpt on rate %d: "
716 "counter: %d, success_counter: %d, "
717 "expected_tpt is %sNULL\n",
718 index,
719 window->counter,
720 window->success_counter,
fa254a68 721 rs_sta->expected_tpt ? "not " : "");
b481de9c
ZY
722 goto out;
723
724 }
725
726 window->average_tpt = ((window->success_ratio *
fa254a68 727 rs_sta->expected_tpt[index] + 64) / 128);
b481de9c
ZY
728 current_tpt = window->average_tpt;
729
fa254a68 730 high_low = iwl3945_get_adjacent_rate(rs_sta, index, rate_mask,
28447f3c 731 sband->band);
b481de9c
ZY
732 low = high_low & 0xff;
733 high = (high_low >> 8) & 0xff;
734
735 if (low != IWL_RATE_INVALID)
fa254a68 736 low_tpt = rs_sta->win[low].average_tpt;
b481de9c
ZY
737
738 if (high != IWL_RATE_INVALID)
fa254a68 739 high_tpt = rs_sta->win[high].average_tpt;
b481de9c 740
fa254a68 741 spin_unlock_irqrestore(&rs_sta->lock, flags);
b481de9c
ZY
742
743 scale_action = 1;
744
745 if ((window->success_ratio < IWL_RATE_DECREASE_TH) || !current_tpt) {
746 IWL_DEBUG_RATE("decrease rate because of low success_ratio\n");
747 scale_action = -1;
28447f3c 748 } else if ((low_tpt == IWL_INV_TPT) && (high_tpt == IWL_INV_TPT))
b481de9c 749 scale_action = 1;
28447f3c
TW
750 else if ((low_tpt != IWL_INV_TPT) && (high_tpt != IWL_INV_TPT) &&
751 (low_tpt < current_tpt) && (high_tpt < current_tpt)) {
b481de9c
ZY
752 IWL_DEBUG_RATE("No action -- low [%d] & high [%d] < "
753 "current_tpt [%d]\n",
754 low_tpt, high_tpt, current_tpt);
755 scale_action = 0;
756 } else {
28447f3c 757 if (high_tpt != IWL_INV_TPT) {
b481de9c
ZY
758 if (high_tpt > current_tpt)
759 scale_action = 1;
760 else {
761 IWL_DEBUG_RATE
762 ("decrease rate because of high tpt\n");
763 scale_action = -1;
764 }
28447f3c 765 } else if (low_tpt != IWL_INV_TPT) {
b481de9c
ZY
766 if (low_tpt > current_tpt) {
767 IWL_DEBUG_RATE
768 ("decrease rate because of low tpt\n");
769 scale_action = -1;
770 } else
771 scale_action = 1;
772 }
773 }
774
775 if ((window->success_ratio > IWL_RATE_HIGH_TH) ||
776 (current_tpt > window->average_tpt)) {
777 IWL_DEBUG_RATE("No action -- success_ratio [%d] > HIGH_TH or "
778 "current_tpt [%d] > average_tpt [%d]\n",
779 window->success_ratio,
780 current_tpt, window->average_tpt);
781 scale_action = 0;
782 }
783
784 switch (scale_action) {
785 case -1:
786 if (low != IWL_RATE_INVALID)
787 index = low;
788 break;
789
790 case 1:
791 if (high != IWL_RATE_INVALID)
792 index = high;
793
794 break;
795
796 case 0:
797 default:
798 break;
799 }
800
801 IWL_DEBUG_RATE("Selected %d (action %d) - low %d high %d\n",
802 index, scale_action, low, high);
803
804 out:
805
8318d78a 806 sta->last_txrate_idx = index;
28447f3c 807 if (sband->band == IEEE80211_BAND_5GHZ)
8318d78a 808 sta->txrate_idx = sta->last_txrate_idx - IWL_FIRST_OFDM_RATE;
14577f23 809 else
8318d78a 810 sta->txrate_idx = sta->last_txrate_idx;
14577f23 811
d0709a65 812 rcu_read_unlock();
b481de9c
ZY
813
814 IWL_DEBUG_RATE("leave: %d\n", index);
815
2e92e6f2 816 sel->rate_idx = sta->txrate_idx;
b481de9c
ZY
817}
818
819static struct rate_control_ops rs_ops = {
820 .module = NULL,
821 .name = RS_NAME,
822 .tx_status = rs_tx_status,
823 .get_rate = rs_get_rate,
824 .rate_init = rs_rate_init,
825 .clear = rs_clear,
826 .alloc = rs_alloc,
827 .free = rs_free,
828 .alloc_sta = rs_alloc_sta,
829 .free_sta = rs_free_sta,
830};
831
bb8c093b 832int iwl3945_fill_rs_info(struct ieee80211_hw *hw, char *buf, u8 sta_id)
b481de9c
ZY
833{
834 struct ieee80211_local *local = hw_to_local(hw);
bb8c093b 835 struct iwl3945_priv *priv = hw->priv;
fa254a68 836 struct iwl3945_rs_sta *rs_sta;
b481de9c
ZY
837 struct sta_info *sta;
838 unsigned long flags;
839 int count = 0, i;
840 u32 samples = 0, success = 0, good = 0;
841 unsigned long now = jiffies;
842 u32 max_time = 0;
843
d0709a65
JB
844 rcu_read_lock();
845
b481de9c
ZY
846 sta = sta_info_get(local, priv->stations[sta_id].sta.sta.addr);
847 if (!sta || !sta->rate_ctrl_priv) {
d0709a65 848 if (sta)
b481de9c 849 IWL_DEBUG_RATE("leave - no private rate data!\n");
d0709a65 850 else
b481de9c 851 IWL_DEBUG_RATE("leave - no station!\n");
d0709a65 852 rcu_read_unlock();
b481de9c
ZY
853 return sprintf(buf, "station %d not found\n", sta_id);
854 }
855
fa254a68
TW
856 rs_sta = (void *)sta->rate_ctrl_priv;
857 spin_lock_irqsave(&rs_sta->lock, flags);
b481de9c
ZY
858 i = IWL_RATE_54M_INDEX;
859 while (1) {
860 u64 mask;
861 int j;
862
863 count +=
bb8c093b 864 sprintf(&buf[count], " %2dMbs: ", iwl3945_rates[i].ieee / 2);
b481de9c
ZY
865
866 mask = (1ULL << (IWL_RATE_MAX_WINDOW - 1));
867 for (j = 0; j < IWL_RATE_MAX_WINDOW; j++, mask >>= 1)
868 buf[count++] =
fa254a68 869 (rs_sta->win[i].data & mask) ? '1' : '0';
b481de9c 870
fa254a68
TW
871 samples += rs_sta->win[i].counter;
872 good += rs_sta->win[i].success_counter;
873 success += rs_sta->win[i].success_counter *
874 iwl3945_rates[i].ieee;
b481de9c 875
fa254a68 876 if (rs_sta->win[i].stamp) {
b481de9c 877 int delta =
fa254a68 878 jiffies_to_msecs(now - rs_sta->win[i].stamp);
b481de9c
ZY
879
880 if (delta > max_time)
881 max_time = delta;
882
883 count += sprintf(&buf[count], "%5dms\n", delta);
884 } else
885 buf[count++] = '\n';
886
bb8c093b 887 j = iwl3945_get_prev_ieee_rate(i);
b481de9c
ZY
888 if (j == i)
889 break;
890 i = j;
891 }
fa254a68 892 spin_unlock_irqrestore(&rs_sta->lock, flags);
d0709a65 893 rcu_read_unlock();
b481de9c
ZY
894
895 /* Display the average rate of all samples taken.
896 *
897 * NOTE: We multiple # of samples by 2 since the IEEE measurement
bb8c093b 898 * added from iwl3945_rates is actually 2X the rate */
b481de9c
ZY
899 if (samples)
900 count += sprintf(
901 &buf[count],
902 "\nAverage rate is %3d.%02dMbs over last %4dms\n"
903 "%3d%% success (%d good packets over %d tries)\n",
904 success / (2 * samples), (success * 5 / samples) % 10,
905 max_time, good * 100 / samples, good, samples);
906 else
907 count += sprintf(&buf[count], "\nAverage rate: 0Mbs\n");
908
909 return count;
910}
911
bb8c093b 912void iwl3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id)
b481de9c 913{
bb8c093b 914 struct iwl3945_priv *priv = hw->priv;
b481de9c
ZY
915 s32 rssi = 0;
916 unsigned long flags;
917 struct ieee80211_local *local = hw_to_local(hw);
fa254a68 918 struct iwl3945_rs_sta *rs_sta;
b481de9c
ZY
919 struct sta_info *sta;
920
921 IWL_DEBUG_RATE("enter\n");
922
923 if (!local->rate_ctrl->ops->name ||
924 strcmp(local->rate_ctrl->ops->name, RS_NAME)) {
925 IWL_WARNING("iwl-3945-rs not selected as rate control algo!\n");
926 IWL_DEBUG_RATE("leave - mac80211 picked the wrong RC algo.\n");
927 return;
928 }
929
d0709a65
JB
930 rcu_read_lock();
931
b481de9c
ZY
932 sta = sta_info_get(local, priv->stations[sta_id].sta.sta.addr);
933 if (!sta || !sta->rate_ctrl_priv) {
b481de9c 934 IWL_DEBUG_RATE("leave - no private rate data!\n");
d0709a65 935 rcu_read_unlock();
b481de9c
ZY
936 return;
937 }
938
fa254a68 939 rs_sta = (void *)sta->rate_ctrl_priv;
b481de9c 940
fa254a68 941 spin_lock_irqsave(&rs_sta->lock, flags);
b481de9c 942
fa254a68 943 rs_sta->tgg = 0;
8318d78a
JB
944 switch (priv->band) {
945 case IEEE80211_BAND_2GHZ:
946 /* TODO: this always does G, not a regression */
b481de9c 947 if (priv->active_rxon.flags & RXON_FLG_TGG_PROTECT_MSK) {
fa254a68
TW
948 rs_sta->tgg = 1;
949 rs_sta->expected_tpt = iwl3945_expected_tpt_g_prot;
b481de9c 950 } else
fa254a68 951 rs_sta->expected_tpt = iwl3945_expected_tpt_g;
b481de9c
ZY
952 break;
953
8318d78a 954 case IEEE80211_BAND_5GHZ:
fa254a68 955 rs_sta->expected_tpt = iwl3945_expected_tpt_a;
b481de9c 956 break;
8318d78a
JB
957 case IEEE80211_NUM_BANDS:
958 BUG();
b481de9c
ZY
959 break;
960 }
961
d0709a65 962 rcu_read_unlock();
fa254a68 963 spin_unlock_irqrestore(&rs_sta->lock, flags);
b481de9c
ZY
964
965 rssi = priv->last_rx_rssi;
966 if (rssi == 0)
967 rssi = IWL_MIN_RSSI_VAL;
968
969 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RATE, "Network RSSI: %d\n", rssi);
970
8318d78a 971 rs_sta->start_rate = iwl3945_get_rate_index_by_rssi(rssi, priv->band);
b481de9c
ZY
972
973 IWL_DEBUG_RATE("leave: rssi %d assign rate index: "
fa254a68
TW
974 "%d (plcp 0x%x)\n", rssi, rs_sta->start_rate,
975 iwl3945_rates[rs_sta->start_rate].plcp);
b481de9c
ZY
976}
977
897e1cf2 978int iwl3945_rate_control_register(void)
b481de9c 979{
897e1cf2 980 return ieee80211_rate_control_register(&rs_ops);
b481de9c
ZY
981}
982
897e1cf2 983void iwl3945_rate_control_unregister(void)
b481de9c
ZY
984{
985 ieee80211_rate_control_unregister(&rs_ops);
986}
987
988
This page took 0.242293 seconds and 5 git commands to generate.