iwl3945: fix station stuff in RC algorithm
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / wireless / iwlwifi / iwl-3945-rs.c
blobc25daec4f93d68790dec01aa3cb2a2abb058c68e
1 /******************************************************************************
3 * Copyright(c) 2005 - 2008 Intel Corporation. All rights reserved.
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.
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.
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
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
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
25 *****************************************************************************/
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>
33 #include <linux/netdevice.h>
34 #include <linux/etherdevice.h>
35 #include <linux/delay.h>
37 #include <linux/workqueue.h>
39 #include "iwl-3945.h"
41 #define RS_NAME "iwl-3945-rs"
43 struct iwl3945_rate_scale_data {
44 u64 data;
45 s32 success_counter;
46 s32 success_ratio;
47 s32 counter;
48 s32 average_tpt;
49 unsigned long stamp;
52 struct iwl3945_rs_sta {
53 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;
65 struct iwl3945_rate_scale_data win[IWL_RATE_COUNT];
67 /* used to be in sta_info */
68 int last_txrate_idx;
71 static s32 iwl3945_expected_tpt_g[IWL_RATE_COUNT] = {
72 7, 13, 35, 58, 0, 0, 76, 104, 130, 168, 191, 202
75 static s32 iwl3945_expected_tpt_g_prot[IWL_RATE_COUNT] = {
76 7, 13, 35, 58, 0, 0, 0, 80, 93, 113, 123, 125
79 static s32 iwl3945_expected_tpt_a[IWL_RATE_COUNT] = {
80 0, 0, 0, 0, 40, 57, 72, 98, 121, 154, 177, 186
83 static s32 iwl3945_expected_tpt_b[IWL_RATE_COUNT] = {
84 7, 13, 35, 58, 0, 0, 0, 0, 0, 0, 0, 0
87 struct iwl3945_tpt_entry {
88 s8 min_rssi;
89 u8 index;
92 static struct iwl3945_tpt_entry iwl3945_tpt_table_a[] = {
93 {-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}
103 static struct iwl3945_tpt_entry iwl3945_tpt_table_g[] = {
104 {-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}
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
124 static u8 iwl3945_get_rate_index_by_rssi(s32 rssi, enum ieee80211_band band)
126 u32 index = 0;
127 u32 table_size = 0;
128 struct iwl3945_tpt_entry *tpt_table = NULL;
130 if ((rssi < IWL_MIN_RSSI_VAL) || (rssi > IWL_MAX_RSSI_VAL))
131 rssi = IWL_MIN_RSSI_VAL;
133 switch (band) {
134 case IEEE80211_BAND_2GHZ:
135 tpt_table = iwl3945_tpt_table_g;
136 table_size = ARRAY_SIZE(iwl3945_tpt_table_g);
137 break;
139 case IEEE80211_BAND_5GHZ:
140 tpt_table = iwl3945_tpt_table_a;
141 table_size = ARRAY_SIZE(iwl3945_tpt_table_a);
142 break;
144 default:
145 BUG();
146 break;
149 while ((index < table_size) && (rssi < tpt_table[index].min_rssi))
150 index++;
152 index = min(index, (table_size - 1));
154 return tpt_table[index].index;
157 static void iwl3945_clear_window(struct iwl3945_rate_scale_data *window)
159 window->data = 0;
160 window->success_counter = 0;
161 window->success_ratio = -1;
162 window->counter = 0;
163 window->average_tpt = IWL_INV_TPT;
164 window->stamp = 0;
168 * iwl3945_rate_scale_flush_windows - flush out the rate scale windows
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.
174 static int iwl3945_rate_scale_flush_windows(struct iwl3945_rs_sta *rs_sta)
176 int unflushed = 0;
177 int i;
178 unsigned long flags;
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
185 for (i = 0; i < IWL_RATE_COUNT; i++) {
186 if (!rs_sta->win[i].counter)
187 continue;
189 spin_lock_irqsave(&rs_sta->lock, flags);
190 if (time_after(jiffies, rs_sta->win[i].stamp +
191 IWL_RATE_WIN_FLUSH)) {
192 IWL_DEBUG_RATE("flushing %d samples of rate "
193 "index %d\n",
194 rs_sta->win[i].counter, i);
195 iwl3945_clear_window(&rs_sta->win[i]);
196 } else
197 unflushed++;
198 spin_unlock_irqrestore(&rs_sta->lock, flags);
201 return unflushed;
204 #define IWL_RATE_FLUSH_MAX 5000 /* msec */
205 #define IWL_RATE_FLUSH_MIN 50 /* msec */
207 static void iwl3945_bg_rate_scale_flush(unsigned long data)
209 struct iwl3945_rs_sta *rs_sta = (void *)data;
210 int unflushed = 0;
211 unsigned long flags;
212 u32 packet_count, duration, pps;
214 IWL_DEBUG_RATE("enter\n");
216 unflushed = iwl3945_rate_scale_flush_windows(rs_sta);
218 spin_lock_irqsave(&rs_sta->lock, flags);
220 rs_sta->flush_pending = 0;
222 /* Number of packets Rx'd since last time this timer ran */
223 packet_count = (rs_sta->tx_packets - rs_sta->last_tx_packets) + 1;
225 rs_sta->last_tx_packets = rs_sta->tx_packets + 1;
227 if (unflushed) {
228 duration =
229 jiffies_to_msecs(jiffies - rs_sta->last_partial_flush);
230 /* duration = jiffies_to_msecs(rs_sta->flush_time); */
232 IWL_DEBUG_RATE("Tx'd %d packets in %dms\n",
233 packet_count, duration);
235 /* Determine packets per second */
236 if (duration)
237 pps = (packet_count * 1000) / duration;
238 else
239 pps = 0;
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;
248 rs_sta->flush_time = msecs_to_jiffies(duration);
250 IWL_DEBUG_RATE("new flush period: %d msec ave %d\n",
251 duration, packet_count);
253 mod_timer(&rs_sta->rate_scale_flush, jiffies +
254 rs_sta->flush_time);
256 rs_sta->last_partial_flush = jiffies;
259 /* If there weren't any unflushed entries, we don't schedule the timer
260 * to run again */
262 rs_sta->last_flush = jiffies;
264 spin_unlock_irqrestore(&rs_sta->lock, flags);
266 IWL_DEBUG_RATE("leave\n");
270 * iwl3945_collect_tx_data - Update the success/failure sliding window
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.
276 static void iwl3945_collect_tx_data(struct iwl3945_rs_sta *rs_sta,
277 struct iwl3945_rate_scale_data *window,
278 int success, int retries)
280 unsigned long flags;
282 if (!retries) {
283 IWL_DEBUG_RATE("leave: retries == 0 -- should be at least 1\n");
284 return;
287 while (retries--) {
288 spin_lock_irqsave(&rs_sta->lock, flags);
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++;
299 /* Slide the window to the left one bit */
300 window->data = (window->data << 1);
302 /* If this packet was a success then set the low bit high */
303 if (success) {
304 window->success_counter++;
305 window->data |= 1;
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;
313 /* Tag this window as having been updated */
314 window->stamp = jiffies;
316 spin_unlock_irqrestore(&rs_sta->lock, flags);
320 static void rs_rate_init(void *priv, struct ieee80211_supported_band *sband,
321 struct ieee80211_sta *sta, void *priv_sta)
323 struct iwl3945_rs_sta *rs_sta = priv_sta;
324 int i;
326 IWL_DEBUG_RATE("enter\n");
328 /* TODO: what is a good starting rate for STA? About middle? Maybe not
329 * the lowest or the highest rate.. Could consider using RSSI from
330 * previous packets? Need to have IEEE 802.1X auth succeed immediately
331 * after assoc.. */
333 for (i = IWL_RATE_COUNT - 1; i >= 0; i--) {
334 if (sta->supp_rates[sband->band] & (1 << i)) {
335 rs_sta->last_txrate_idx = i;
336 break;
340 /* For 5 GHz band it start at IWL_FIRST_OFDM_RATE */
341 if (sband->band == IEEE80211_BAND_5GHZ)
342 rs_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
344 IWL_DEBUG_RATE("leave\n");
347 static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
349 return hw->priv;
352 /* rate scale requires free function to be implemented */
353 static void rs_free(void *priv)
355 return;
358 static void rs_clear(void *priv)
360 return;
364 static void *rs_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
366 struct iwl3945_rs_sta *rs_sta;
367 struct iwl3945_sta_priv *psta = (void *) sta->drv_priv;
368 int i;
371 * XXX: If it's using sta->drv_priv anyway, it might
372 * as well just put all the information there.
375 IWL_DEBUG_RATE("enter\n");
377 rs_sta = kzalloc(sizeof(struct iwl3945_rs_sta), gfp);
378 if (!rs_sta) {
379 IWL_DEBUG_RATE("leave: ENOMEM\n");
380 return NULL;
383 psta->rs_sta = rs_sta;
385 spin_lock_init(&rs_sta->lock);
387 rs_sta->start_rate = IWL_RATE_INVALID;
389 /* default to just 802.11b */
390 rs_sta->expected_tpt = iwl3945_expected_tpt_b;
392 rs_sta->last_partial_flush = jiffies;
393 rs_sta->last_flush = jiffies;
394 rs_sta->flush_time = IWL_RATE_FLUSH;
395 rs_sta->last_tx_packets = 0;
396 rs_sta->ibss_sta_added = 0;
398 init_timer(&rs_sta->rate_scale_flush);
399 rs_sta->rate_scale_flush.data = (unsigned long)rs_sta;
400 rs_sta->rate_scale_flush.function = &iwl3945_bg_rate_scale_flush;
402 for (i = 0; i < IWL_RATE_COUNT; i++)
403 iwl3945_clear_window(&rs_sta->win[i]);
405 IWL_DEBUG_RATE("leave\n");
407 return rs_sta;
410 static void rs_free_sta(void *priv, struct ieee80211_sta *sta,
411 void *priv_sta)
413 struct iwl3945_sta_priv *psta = (void *) sta->drv_priv;
414 struct iwl3945_rs_sta *rs_sta = priv_sta;
416 psta->rs_sta = NULL;
418 IWL_DEBUG_RATE("enter\n");
419 del_timer_sync(&rs_sta->rate_scale_flush);
420 kfree(rs_sta);
421 IWL_DEBUG_RATE("leave\n");
426 * get ieee prev rate from rate scale table.
427 * for A and B mode we need to overright prev
428 * value
430 static int rs_adjust_next_rate(struct iwl3945_priv *priv, int rate)
432 int next_rate = iwl3945_get_prev_ieee_rate(rate);
434 switch (priv->band) {
435 case IEEE80211_BAND_5GHZ:
436 if (rate == IWL_RATE_12M_INDEX)
437 next_rate = IWL_RATE_9M_INDEX;
438 else if (rate == IWL_RATE_6M_INDEX)
439 next_rate = IWL_RATE_6M_INDEX;
440 break;
441 /* XXX cannot be invoked in current mac80211 so not a regression
442 case MODE_IEEE80211B:
443 if (rate == IWL_RATE_11M_INDEX_TABLE)
444 next_rate = IWL_RATE_5M_INDEX_TABLE;
445 break;
447 default:
448 break;
451 return next_rate;
454 * rs_tx_status - Update rate control values based on Tx results
456 * NOTE: Uses iwl3945_priv->retry_rate for the # of retries attempted by
457 * the hardware for each rate.
459 static void rs_tx_status(void *priv_rate, struct ieee80211_supported_band *sband,
460 struct ieee80211_sta *sta, void *priv_sta,
461 struct sk_buff *skb)
463 u8 retries, current_count;
464 int scale_rate_index, first_index, last_index;
465 unsigned long flags;
466 struct iwl3945_priv *priv = (struct iwl3945_priv *)priv_rate;
467 struct iwl3945_rs_sta *rs_sta = priv_sta;
468 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
470 IWL_DEBUG_RATE("enter\n");
472 retries = info->status.retry_count;
473 first_index = sband->bitrates[info->tx_rate_idx].hw_value;
474 if ((first_index < 0) || (first_index >= IWL_RATE_COUNT)) {
475 IWL_DEBUG_RATE("leave: Rate out of bounds: %d\n", first_index);
476 return;
479 if (!priv_sta) {
480 IWL_DEBUG_RATE("leave: No STA priv data to update!\n");
481 return;
484 rs_sta->tx_packets++;
486 scale_rate_index = first_index;
487 last_index = first_index;
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
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)
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;
505 last_index = rs_adjust_next_rate(priv,
506 scale_rate_index);
509 /* Update this rate accounting for as many retries
510 * as was used for it (per current_count) */
511 iwl3945_collect_tx_data(rs_sta,
512 &rs_sta->win[scale_rate_index],
513 0, current_count);
514 IWL_DEBUG_RATE("Update rate %d for %d retries.\n",
515 scale_rate_index, current_count);
517 retries -= current_count;
519 if (retries)
520 scale_rate_index =
521 rs_adjust_next_rate(priv, scale_rate_index);
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,
528 (info->flags & IEEE80211_TX_STAT_ACK) ?
529 "success" : "failure");
530 iwl3945_collect_tx_data(rs_sta,
531 &rs_sta->win[last_index],
532 info->flags & IEEE80211_TX_STAT_ACK, 1);
534 /* We updated the rate scale window -- if its been more than
535 * flush_time since the last run, schedule the flush
536 * again */
537 spin_lock_irqsave(&rs_sta->lock, flags);
539 if (!rs_sta->flush_pending &&
540 time_after(jiffies, rs_sta->last_partial_flush +
541 rs_sta->flush_time)) {
543 rs_sta->flush_pending = 1;
544 mod_timer(&rs_sta->rate_scale_flush,
545 jiffies + rs_sta->flush_time);
548 spin_unlock_irqrestore(&rs_sta->lock, flags);
550 IWL_DEBUG_RATE("leave\n");
552 return;
555 static u16 iwl3945_get_adjacent_rate(struct iwl3945_rs_sta *rs_sta,
556 u8 index, u16 rate_mask, enum ieee80211_band band)
558 u8 high = IWL_RATE_INVALID;
559 u8 low = IWL_RATE_INVALID;
561 /* 802.11A walks to the next literal adjacent rate in
562 * the rate table */
563 if (unlikely(band == IEEE80211_BAND_5GHZ)) {
564 int i;
565 u32 mask;
567 /* Find the previous rate that is in the rate mask */
568 i = index - 1;
569 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
570 if (rate_mask & mask) {
571 low = i;
572 break;
576 /* Find the next rate that is in the rate mask */
577 i = index + 1;
578 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
579 if (rate_mask & mask) {
580 high = i;
581 break;
585 return (high << 8) | low;
588 low = index;
589 while (low != IWL_RATE_INVALID) {
590 if (rs_sta->tgg)
591 low = iwl3945_rates[low].prev_rs_tgg;
592 else
593 low = iwl3945_rates[low].prev_rs;
594 if (low == IWL_RATE_INVALID)
595 break;
596 if (rate_mask & (1 << low))
597 break;
598 IWL_DEBUG_RATE("Skipping masked lower rate: %d\n", low);
601 high = index;
602 while (high != IWL_RATE_INVALID) {
603 if (rs_sta->tgg)
604 high = iwl3945_rates[high].next_rs_tgg;
605 else
606 high = iwl3945_rates[high].next_rs;
607 if (high == IWL_RATE_INVALID)
608 break;
609 if (rate_mask & (1 << high))
610 break;
611 IWL_DEBUG_RATE("Skipping masked higher rate: %d\n", high);
614 return (high << 8) | low;
618 * rs_get_rate - find the rate for the requested packet
620 * Returns the ieee80211_rate structure allocated by the driver.
622 * The rate control algorithm has no internal mapping between hw_mode's
623 * rate ordering and the rate ordering used by the rate control algorithm.
625 * The rate control algorithm uses a single table of rates that goes across
626 * the entire A/B/G spectrum vs. being limited to just one particular
627 * hw_mode.
629 * As such, we can't convert the index obtained below into the hw_mode's
630 * rate table and must reference the driver allocated rate table
633 static void rs_get_rate(void *priv_r, struct ieee80211_supported_band *sband,
634 struct ieee80211_sta *sta, void *priv_sta,
635 struct sk_buff *skb, struct rate_selection *sel)
637 u8 low = IWL_RATE_INVALID;
638 u8 high = IWL_RATE_INVALID;
639 u16 high_low;
640 int index;
641 struct iwl3945_rs_sta *rs_sta = priv_sta;
642 struct iwl3945_rate_scale_data *window = NULL;
643 int current_tpt = IWL_INV_TPT;
644 int low_tpt = IWL_INV_TPT;
645 int high_tpt = IWL_INV_TPT;
646 u32 fail_count;
647 s8 scale_action = 0;
648 unsigned long flags;
649 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
650 u16 fc, rate_mask;
651 struct iwl3945_priv *priv = (struct iwl3945_priv *)priv_r;
653 IWL_DEBUG_RATE("enter\n");
655 /* Send management frames and broadcast/multicast data using lowest
656 * rate. */
657 fc = le16_to_cpu(hdr->frame_control);
658 if ((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA ||
659 is_multicast_ether_addr(hdr->addr1) ||
660 !sta || !priv_sta) {
661 IWL_DEBUG_RATE("leave: No STA priv data to update!\n");
662 sel->rate_idx = rate_lowest_index(sband, sta);
663 return;
666 rate_mask = sta->supp_rates[sband->band];
667 index = min(rs_sta->last_txrate_idx & 0xffff, IWL_RATE_COUNT - 1);
669 if (sband->band == IEEE80211_BAND_5GHZ)
670 rate_mask = rate_mask << IWL_FIRST_OFDM_RATE;
672 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
673 !rs_sta->ibss_sta_added) {
674 u8 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
676 if (sta_id == IWL_INVALID_STATION) {
677 IWL_DEBUG_RATE("LQ: ADD station %pm\n",
678 hdr->addr1);
679 sta_id = iwl3945_add_station(priv,
680 hdr->addr1, 0, CMD_ASYNC);
682 if (sta_id != IWL_INVALID_STATION)
683 rs_sta->ibss_sta_added = 1;
686 spin_lock_irqsave(&rs_sta->lock, flags);
688 if (rs_sta->start_rate != IWL_RATE_INVALID) {
689 index = rs_sta->start_rate;
690 rs_sta->start_rate = IWL_RATE_INVALID;
693 window = &(rs_sta->win[index]);
695 fail_count = window->counter - window->success_counter;
697 if (((fail_count <= IWL_RATE_MIN_FAILURE_TH) &&
698 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH))) {
699 window->average_tpt = IWL_INV_TPT;
700 spin_unlock_irqrestore(&rs_sta->lock, flags);
702 IWL_DEBUG_RATE("Invalid average_tpt on rate %d: "
703 "counter: %d, success_counter: %d, "
704 "expected_tpt is %sNULL\n",
705 index,
706 window->counter,
707 window->success_counter,
708 rs_sta->expected_tpt ? "not " : "");
709 goto out;
713 window->average_tpt = ((window->success_ratio *
714 rs_sta->expected_tpt[index] + 64) / 128);
715 current_tpt = window->average_tpt;
717 high_low = iwl3945_get_adjacent_rate(rs_sta, index, rate_mask,
718 sband->band);
719 low = high_low & 0xff;
720 high = (high_low >> 8) & 0xff;
722 if (low != IWL_RATE_INVALID)
723 low_tpt = rs_sta->win[low].average_tpt;
725 if (high != IWL_RATE_INVALID)
726 high_tpt = rs_sta->win[high].average_tpt;
728 spin_unlock_irqrestore(&rs_sta->lock, flags);
730 scale_action = 1;
732 if ((window->success_ratio < IWL_RATE_DECREASE_TH) || !current_tpt) {
733 IWL_DEBUG_RATE("decrease rate because of low success_ratio\n");
734 scale_action = -1;
735 } else if ((low_tpt == IWL_INV_TPT) && (high_tpt == IWL_INV_TPT))
736 scale_action = 1;
737 else if ((low_tpt != IWL_INV_TPT) && (high_tpt != IWL_INV_TPT) &&
738 (low_tpt < current_tpt) && (high_tpt < current_tpt)) {
739 IWL_DEBUG_RATE("No action -- low [%d] & high [%d] < "
740 "current_tpt [%d]\n",
741 low_tpt, high_tpt, current_tpt);
742 scale_action = 0;
743 } else {
744 if (high_tpt != IWL_INV_TPT) {
745 if (high_tpt > current_tpt)
746 scale_action = 1;
747 else {
748 IWL_DEBUG_RATE
749 ("decrease rate because of high tpt\n");
750 scale_action = -1;
752 } else if (low_tpt != IWL_INV_TPT) {
753 if (low_tpt > current_tpt) {
754 IWL_DEBUG_RATE
755 ("decrease rate because of low tpt\n");
756 scale_action = -1;
757 } else
758 scale_action = 1;
762 if ((window->success_ratio > IWL_RATE_HIGH_TH) ||
763 (current_tpt > window->average_tpt)) {
764 IWL_DEBUG_RATE("No action -- success_ratio [%d] > HIGH_TH or "
765 "current_tpt [%d] > average_tpt [%d]\n",
766 window->success_ratio,
767 current_tpt, window->average_tpt);
768 scale_action = 0;
771 switch (scale_action) {
772 case -1:
773 if (low != IWL_RATE_INVALID)
774 index = low;
775 break;
777 case 1:
778 if (high != IWL_RATE_INVALID)
779 index = high;
781 break;
783 case 0:
784 default:
785 break;
788 IWL_DEBUG_RATE("Selected %d (action %d) - low %d high %d\n",
789 index, scale_action, low, high);
791 out:
793 rs_sta->last_txrate_idx = index;
794 if (sband->band == IEEE80211_BAND_5GHZ)
795 sel->rate_idx = rs_sta->last_txrate_idx - IWL_FIRST_OFDM_RATE;
796 else
797 sel->rate_idx = rs_sta->last_txrate_idx;
799 IWL_DEBUG_RATE("leave: %d\n", index);
802 static struct rate_control_ops rs_ops = {
803 .module = NULL,
804 .name = RS_NAME,
805 .tx_status = rs_tx_status,
806 .get_rate = rs_get_rate,
807 .rate_init = rs_rate_init,
808 .clear = rs_clear,
809 .alloc = rs_alloc,
810 .free = rs_free,
811 .alloc_sta = rs_alloc_sta,
812 .free_sta = rs_free_sta,
815 void iwl3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id)
817 struct iwl3945_priv *priv = hw->priv;
818 s32 rssi = 0;
819 unsigned long flags;
820 struct iwl3945_rs_sta *rs_sta;
821 struct ieee80211_sta *sta;
822 struct iwl3945_sta_priv *psta;
824 IWL_DEBUG_RATE("enter\n");
826 rcu_read_lock();
828 sta = ieee80211_find_sta(hw, priv->stations[sta_id].sta.sta.addr);
829 if (!sta) {
830 rcu_read_unlock();
831 return;
834 psta = (void *) sta->drv_priv;
835 rs_sta = psta->rs_sta;
837 spin_lock_irqsave(&rs_sta->lock, flags);
839 rs_sta->tgg = 0;
840 switch (priv->band) {
841 case IEEE80211_BAND_2GHZ:
842 /* TODO: this always does G, not a regression */
843 if (priv->active_rxon.flags & RXON_FLG_TGG_PROTECT_MSK) {
844 rs_sta->tgg = 1;
845 rs_sta->expected_tpt = iwl3945_expected_tpt_g_prot;
846 } else
847 rs_sta->expected_tpt = iwl3945_expected_tpt_g;
848 break;
850 case IEEE80211_BAND_5GHZ:
851 rs_sta->expected_tpt = iwl3945_expected_tpt_a;
852 break;
853 case IEEE80211_NUM_BANDS:
854 BUG();
855 break;
858 spin_unlock_irqrestore(&rs_sta->lock, flags);
860 rssi = priv->last_rx_rssi;
861 if (rssi == 0)
862 rssi = IWL_MIN_RSSI_VAL;
864 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RATE, "Network RSSI: %d\n", rssi);
866 rs_sta->start_rate = iwl3945_get_rate_index_by_rssi(rssi, priv->band);
868 IWL_DEBUG_RATE("leave: rssi %d assign rate index: "
869 "%d (plcp 0x%x)\n", rssi, rs_sta->start_rate,
870 iwl3945_rates[rs_sta->start_rate].plcp);
871 rcu_read_unlock();
874 int iwl3945_rate_control_register(void)
876 return ieee80211_rate_control_register(&rs_ops);
879 void iwl3945_rate_control_unregister(void)
881 ieee80211_rate_control_unregister(&rs_ops);