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
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 *****************************************************************************/
26 #include <linux/kernel.h>
27 #include <linux/init.h>
28 #include <linux/skbuff.h>
29 #include <linux/wireless.h>
30 #include <net/mac80211.h>
31 #include <net/ieee80211.h>
33 #include <linux/netdevice.h>
34 #include <linux/etherdevice.h>
35 #include <linux/delay.h>
37 #include <linux/workqueue.h>
39 #include "../net/mac80211/rate.h"
43 #include "iwl-helpers.h"
45 #define RS_NAME "iwl-4965-rs"
47 #define NUM_TRY_BEFORE_ANTENNA_TOGGLE 1
48 #define IWL_NUMBER_TRY 1
49 #define IWL_HT_NUMBER_TRY 3
51 #define IWL_RATE_MAX_WINDOW 62 /* # tx in history window */
52 #define IWL_RATE_MIN_FAILURE_TH 6 /* min failures to calc tpt */
53 #define IWL_RATE_MIN_SUCCESS_TH 8 /* min successes to calc tpt */
55 /* max time to accum history 2 seconds */
56 #define IWL_RATE_SCALE_FLUSH_INTVL (2*HZ)
58 static u8 rs_ht_to_legacy
[] = {
59 IWL_RATE_6M_INDEX
, IWL_RATE_6M_INDEX
,
60 IWL_RATE_6M_INDEX
, IWL_RATE_6M_INDEX
,
62 IWL_RATE_6M_INDEX
, IWL_RATE_9M_INDEX
,
63 IWL_RATE_12M_INDEX
, IWL_RATE_18M_INDEX
,
64 IWL_RATE_24M_INDEX
, IWL_RATE_36M_INDEX
,
65 IWL_RATE_48M_INDEX
, IWL_RATE_54M_INDEX
70 } __attribute__ ((packed
));
73 * struct iwl4965_rate_scale_data -- tx success history for one rate
75 struct iwl4965_rate_scale_data
{
76 u64 data
; /* bitmap of successful frames */
77 s32 success_counter
; /* number of frames successful */
78 s32 success_ratio
; /* per-cent * 128 */
79 s32 counter
; /* number of frames attempted */
80 s32 average_tpt
; /* success ratio * expected throughput */
85 * struct iwl4965_scale_tbl_info -- tx params and success history for all rates
87 * There are two of these in struct iwl4965_lq_sta,
88 * one for "active", and one for "search".
90 struct iwl4965_scale_tbl_info
{
91 enum iwl4965_table_type lq_type
;
92 enum iwl4965_antenna_type antenna_type
;
93 u8 is_SGI
; /* 1 = short guard interval */
94 u8 is_fat
; /* 1 = 40 MHz channel width */
95 u8 is_dup
; /* 1 = duplicated data streams */
96 u8 action
; /* change modulation; IWL_[LEGACY/SISO/MIMO]_SWITCH_* */
97 s32
*expected_tpt
; /* throughput metrics; expected_tpt_G, etc. */
98 struct iwl4965_rate current_rate
; /* rate_n_flags, uCode API format */
99 struct iwl4965_rate_scale_data win
[IWL_RATE_COUNT
]; /* rate histories */
102 #ifdef CONFIG_IWL4965_HT
104 struct iwl4965_traffic_load
{
105 unsigned long time_stamp
; /* age of the oldest statistics */
106 u32 packet_count
[TID_QUEUE_MAX_SIZE
]; /* packet count in this time
108 u32 total
; /* total num of packets during the
109 * last TID_MAX_TIME_DIFF */
110 u8 queue_count
; /* number of queues that has
111 * been used since the last cleanup */
112 u8 head
; /* start of the circular buffer */
115 #endif /* CONFIG_IWL4965_HT */
118 * struct iwl4965_lq_sta -- driver's rate scaling private structure
120 * Pointer to this gets passed back and forth between driver and mac80211.
122 struct iwl4965_lq_sta
{
123 u8 active_tbl
; /* index of active table, range 0-1 */
124 u8 enable_counter
; /* indicates HT mode */
125 u8 stay_in_tbl
; /* 1: disallow, 0: allow search for new mode */
126 u8 search_better_tbl
; /* 1: currently trying alternate mode */
129 /* The following determine when to search for a new mode */
130 u32 table_count_limit
;
131 u32 max_failure_limit
; /* # failed frames before new search */
132 u32 max_success_limit
; /* # successful frames before new search */
134 u32 total_failed
; /* total failed frames, any/all rates */
135 u32 total_success
; /* total successful frames, any/all rates */
136 u32 flush_timer
; /* time staying in mode before new search */
138 u8 action_counter
; /* # mode-switch actions tried */
143 enum ieee80211_band band
;
146 /* The following are bitmaps of rates; IWL_RATE_6M_MASK, etc. */
149 u16 active_siso_rate
;
150 u16 active_mimo_rate
;
151 u16 active_rate_basic
;
153 struct iwl_link_quality_cmd lq
;
154 struct iwl4965_scale_tbl_info lq_info
[LQ_SIZE
]; /* "active", "search" */
155 #ifdef CONFIG_IWL4965_HT
156 struct iwl4965_traffic_load load
[TID_MAX_LOAD_COUNT
];
159 #ifdef CONFIG_MAC80211_DEBUGFS
160 struct dentry
*rs_sta_dbgfs_scale_table_file
;
161 struct dentry
*rs_sta_dbgfs_stats_table_file
;
162 #ifdef CONFIG_IWL4965_HT
163 struct dentry
*rs_sta_dbgfs_tx_agg_tid_en_file
;
165 struct iwl4965_rate dbg_fixed
;
166 struct iwl_priv
*drv
;
170 static void rs_rate_scale_perform(struct iwl_priv
*priv
,
171 struct net_device
*dev
,
172 struct ieee80211_hdr
*hdr
,
173 struct sta_info
*sta
);
174 static void rs_fill_link_cmd(struct iwl4965_lq_sta
*lq_sta
,
175 struct iwl4965_rate
*tx_mcs
,
176 struct iwl_link_quality_cmd
*tbl
);
179 #ifdef CONFIG_MAC80211_DEBUGFS
180 static void rs_dbgfs_set_mcs(struct iwl4965_lq_sta
*lq_sta
,
181 struct iwl4965_rate
*mcs
, int index
);
183 static void rs_dbgfs_set_mcs(struct iwl4965_lq_sta
*lq_sta
,
184 struct iwl4965_rate
*mcs
, int index
)
189 * Expected throughput metrics for following rates:
190 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
191 * "G" is the only table that supports CCK (the first 4 rates).
193 static s32 expected_tpt_A
[IWL_RATE_COUNT
] = {
194 0, 0, 0, 0, 40, 57, 72, 98, 121, 154, 177, 186, 186
197 static s32 expected_tpt_G
[IWL_RATE_COUNT
] = {
198 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 186
201 static s32 expected_tpt_siso20MHz
[IWL_RATE_COUNT
] = {
202 0, 0, 0, 0, 42, 42, 76, 102, 124, 159, 183, 193, 202
205 static s32 expected_tpt_siso20MHzSGI
[IWL_RATE_COUNT
] = {
206 0, 0, 0, 0, 46, 46, 82, 110, 132, 168, 192, 202, 211
209 static s32 expected_tpt_mimo20MHz
[IWL_RATE_COUNT
] = {
210 0, 0, 0, 0, 74, 74, 123, 155, 179, 214, 236, 244, 251
213 static s32 expected_tpt_mimo20MHzSGI
[IWL_RATE_COUNT
] = {
214 0, 0, 0, 0, 81, 81, 131, 164, 188, 222, 243, 251, 257
217 static s32 expected_tpt_siso40MHz
[IWL_RATE_COUNT
] = {
218 0, 0, 0, 0, 77, 77, 127, 160, 184, 220, 242, 250, 257
221 static s32 expected_tpt_siso40MHzSGI
[IWL_RATE_COUNT
] = {
222 0, 0, 0, 0, 83, 83, 135, 169, 193, 229, 250, 257, 264
225 static s32 expected_tpt_mimo40MHz
[IWL_RATE_COUNT
] = {
226 0, 0, 0, 0, 123, 123, 182, 214, 235, 264, 279, 285, 289
229 static s32 expected_tpt_mimo40MHzSGI
[IWL_RATE_COUNT
] = {
230 0, 0, 0, 0, 131, 131, 191, 222, 242, 270, 284, 289, 293
233 static inline u8
iwl4965_rate_get_rate(u32 rate_n_flags
)
235 return (u8
)(rate_n_flags
& 0xFF);
238 static void rs_rate_scale_clear_window(struct iwl4965_rate_scale_data
*window
)
241 window
->success_counter
= 0;
242 window
->success_ratio
= IWL_INVALID_VALUE
;
244 window
->average_tpt
= IWL_INVALID_VALUE
;
248 #ifdef CONFIG_IWL4965_HT
250 * removes the old data from the statistics. All data that is older than
251 * TID_MAX_TIME_DIFF, will be deleted.
253 static void rs_tl_rm_old_stats(struct iwl4965_traffic_load
*tl
, u32 curr_time
)
255 /* The oldest age we want to keep */
256 u32 oldest_time
= curr_time
- TID_MAX_TIME_DIFF
;
258 while (tl
->queue_count
&&
259 (tl
->time_stamp
< oldest_time
)) {
260 tl
->total
-= tl
->packet_count
[tl
->head
];
261 tl
->packet_count
[tl
->head
] = 0;
262 tl
->time_stamp
+= TID_QUEUE_CELL_SPACING
;
265 if (tl
->head
>= TID_QUEUE_MAX_SIZE
)
271 * increment traffic load value for tid and also remove
272 * any old values if passed the certain time period
274 static void rs_tl_add_packet(struct iwl4965_lq_sta
*lq_data
, u8 tid
)
276 u32 curr_time
= jiffies_to_msecs(jiffies
);
279 struct iwl4965_traffic_load
*tl
= NULL
;
281 if (tid
>= TID_MAX_LOAD_COUNT
)
284 tl
= &lq_data
->load
[tid
];
286 curr_time
-= curr_time
% TID_ROUND_VALUE
;
288 /* Happens only for the first packet. Initialize the data */
289 if (!(tl
->queue_count
)) {
291 tl
->time_stamp
= curr_time
;
294 tl
->packet_count
[0] = 1;
298 time_diff
= TIME_WRAP_AROUND(tl
->time_stamp
, curr_time
);
299 index
= time_diff
/ TID_QUEUE_CELL_SPACING
;
301 /* The history is too long: remove data that is older than */
302 /* TID_MAX_TIME_DIFF */
303 if (index
>= TID_QUEUE_MAX_SIZE
)
304 rs_tl_rm_old_stats(tl
, curr_time
);
306 index
= (tl
->head
+ index
) % TID_QUEUE_MAX_SIZE
;
307 tl
->packet_count
[index
] = tl
->packet_count
[index
] + 1;
308 tl
->total
= tl
->total
+ 1;
310 if ((index
+ 1) > tl
->queue_count
)
311 tl
->queue_count
= index
+ 1;
315 get the traffic load value for tid
317 static u32
rs_tl_get_load(struct iwl4965_lq_sta
*lq_data
, u8 tid
)
319 u32 curr_time
= jiffies_to_msecs(jiffies
);
322 struct iwl4965_traffic_load
*tl
= NULL
;
324 if (tid
>= TID_MAX_LOAD_COUNT
)
327 tl
= &(lq_data
->load
[tid
]);
329 curr_time
-= curr_time
% TID_ROUND_VALUE
;
331 if (!(tl
->queue_count
))
334 time_diff
= TIME_WRAP_AROUND(tl
->time_stamp
, curr_time
);
335 index
= time_diff
/ TID_QUEUE_CELL_SPACING
;
337 /* The history is too long: remove data that is older than */
338 /* TID_MAX_TIME_DIFF */
339 if (index
>= TID_QUEUE_MAX_SIZE
)
340 rs_tl_rm_old_stats(tl
, curr_time
);
345 static void rs_tl_turn_on_agg_for_tid(struct iwl_priv
*priv
,
346 struct iwl4965_lq_sta
*lq_data
, u8 tid
,
347 struct sta_info
*sta
)
350 DECLARE_MAC_BUF(mac
);
352 spin_lock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
353 state
= sta
->ampdu_mlme
.tid_state_tx
[tid
];
354 spin_unlock_bh(&sta
->ampdu_mlme
.ampdu_tx
);
356 if (state
== HT_AGG_STATE_IDLE
&&
357 rs_tl_get_load(lq_data
, tid
) > IWL_AGG_LOAD_THRESHOLD
) {
358 IWL_DEBUG_HT("Starting Tx agg: STA: %s tid: %d\n",
359 print_mac(mac
, sta
->addr
), tid
);
360 ieee80211_start_tx_ba_session(priv
->hw
, sta
->addr
, tid
);
364 static void rs_tl_turn_on_agg(struct iwl_priv
*priv
, u8 tid
,
365 struct iwl4965_lq_sta
*lq_data
,
366 struct sta_info
*sta
)
368 if ((tid
< TID_MAX_LOAD_COUNT
))
369 rs_tl_turn_on_agg_for_tid(priv
, lq_data
, tid
, sta
);
370 else if (tid
== IWL_AGG_ALL_TID
)
371 for (tid
= 0; tid
< TID_MAX_LOAD_COUNT
; tid
++)
372 rs_tl_turn_on_agg_for_tid(priv
, lq_data
, tid
, sta
);
375 #endif /* CONFIG_IWLWIFI_HT */
378 * rs_collect_tx_data - Update the success/failure sliding window
380 * We keep a sliding window of the last 62 packets transmitted
381 * at this rate. window->data contains the bitmask of successful
384 static int rs_collect_tx_data(struct iwl4965_rate_scale_data
*windows
,
385 int scale_index
, s32 tpt
, int retries
,
388 struct iwl4965_rate_scale_data
*window
= NULL
;
390 u8 win_size
= IWL_RATE_MAX_WINDOW
;
393 if (scale_index
< 0 || scale_index
>= IWL_RATE_COUNT
)
396 /* Select data for current tx bit rate */
397 window
= &(windows
[scale_index
]);
400 * Keep track of only the latest 62 tx frame attempts in this rate's
401 * history window; anything older isn't really relevant any more.
402 * If we have filled up the sliding window, drop the oldest attempt;
403 * if the oldest attempt (highest bit in bitmap) shows "success",
404 * subtract "1" from the success counter (this is the main reason
405 * we keep these bitmaps!).
407 while (retries
> 0) {
408 if (window
->counter
>= win_size
) {
409 window
->counter
= win_size
- 1;
411 mask
= (mask
<< (win_size
- 1));
412 if (window
->data
& mask
) {
413 window
->data
&= ~mask
;
414 window
->success_counter
=
415 window
->success_counter
- 1;
419 /* Increment frames-attempted counter */
422 /* Shift bitmap by one frame (throw away oldest history),
423 * OR in "1", and increment "success" if this
424 * frame was successful. */
426 window
->data
= (mask
<< 1);
428 window
->success_counter
= window
->success_counter
+ 1;
436 /* Calculate current success ratio, avoid divide-by-0! */
437 if (window
->counter
> 0)
438 window
->success_ratio
= 128 * (100 * window
->success_counter
)
441 window
->success_ratio
= IWL_INVALID_VALUE
;
443 fail_count
= window
->counter
- window
->success_counter
;
445 /* Calculate average throughput, if we have enough history. */
446 if ((fail_count
>= IWL_RATE_MIN_FAILURE_TH
) ||
447 (window
->success_counter
>= IWL_RATE_MIN_SUCCESS_TH
))
448 window
->average_tpt
= (window
->success_ratio
* tpt
+ 64) / 128;
450 window
->average_tpt
= IWL_INVALID_VALUE
;
452 /* Tag this window as having been updated */
453 window
->stamp
= jiffies
;
459 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
461 static void rs_mcs_from_tbl(struct iwl4965_rate
*mcs_rate
,
462 struct iwl4965_scale_tbl_info
*tbl
,
463 int index
, u8 use_green
)
465 if (is_legacy(tbl
->lq_type
)) {
466 mcs_rate
->rate_n_flags
= iwl4965_rates
[index
].plcp
;
467 if (index
>= IWL_FIRST_CCK_RATE
&& index
<= IWL_LAST_CCK_RATE
)
468 mcs_rate
->rate_n_flags
|= RATE_MCS_CCK_MSK
;
470 } else if (is_siso(tbl
->lq_type
)) {
471 if (index
> IWL_LAST_OFDM_RATE
)
472 index
= IWL_LAST_OFDM_RATE
;
473 mcs_rate
->rate_n_flags
= iwl4965_rates
[index
].plcp_siso
|
476 if (index
> IWL_LAST_OFDM_RATE
)
477 index
= IWL_LAST_OFDM_RATE
;
478 mcs_rate
->rate_n_flags
= iwl4965_rates
[index
].plcp_mimo
|
482 switch (tbl
->antenna_type
) {
484 mcs_rate
->rate_n_flags
|= RATE_MCS_ANT_AB_MSK
;
487 mcs_rate
->rate_n_flags
|= RATE_MCS_ANT_A_MSK
;
490 mcs_rate
->rate_n_flags
|= RATE_MCS_ANT_B_MSK
;
496 if (is_legacy(tbl
->lq_type
))
501 mcs_rate
->rate_n_flags
|= RATE_MCS_DUP_MSK
;
503 mcs_rate
->rate_n_flags
|= RATE_MCS_FAT_MSK
;
506 mcs_rate
->rate_n_flags
|= RATE_MCS_SGI_MSK
;
509 mcs_rate
->rate_n_flags
|= RATE_MCS_GF_MSK
;
510 if (is_siso(tbl
->lq_type
))
511 mcs_rate
->rate_n_flags
&= ~RATE_MCS_SGI_MSK
;
516 * Interpret uCode API's rate_n_flags format,
517 * fill "search" or "active" tx mode table.
519 static int rs_get_tbl_info_from_mcs(const struct iwl4965_rate
*mcs_rate
,
520 enum ieee80211_band band
,
521 struct iwl4965_scale_tbl_info
*tbl
,
527 index
= iwl4965_hwrate_to_plcp_idx(mcs_rate
->rate_n_flags
);
529 if (index
== IWL_RATE_INVALID
) {
533 tbl
->is_SGI
= 0; /* default legacy setup */
536 tbl
->antenna_type
= ANT_BOTH
; /* default MIMO setup */
538 /* legacy rate format */
539 if (!(mcs_rate
->rate_n_flags
& RATE_MCS_HT_MSK
)) {
540 ant_msk
= (mcs_rate
->rate_n_flags
& RATE_MCS_ANT_AB_MSK
);
542 if (ant_msk
== RATE_MCS_ANT_AB_MSK
)
543 tbl
->lq_type
= LQ_NONE
;
546 if (band
== IEEE80211_BAND_5GHZ
)
551 if (mcs_rate
->rate_n_flags
& RATE_MCS_ANT_A_MSK
)
552 tbl
->antenna_type
= ANT_MAIN
;
554 tbl
->antenna_type
= ANT_AUX
;
558 /* HT rate format, SISO (might be 20 MHz legacy or 40 MHz fat width) */
559 } else if (iwl4965_rate_get_rate(mcs_rate
->rate_n_flags
)
560 <= IWL_RATE_SISO_60M_PLCP
) {
561 tbl
->lq_type
= LQ_SISO
;
563 ant_msk
= (mcs_rate
->rate_n_flags
& RATE_MCS_ANT_AB_MSK
);
564 if (ant_msk
== RATE_MCS_ANT_AB_MSK
)
565 tbl
->lq_type
= LQ_NONE
;
567 if (mcs_rate
->rate_n_flags
& RATE_MCS_ANT_A_MSK
)
568 tbl
->antenna_type
= ANT_MAIN
;
570 tbl
->antenna_type
= ANT_AUX
;
572 if (mcs_rate
->rate_n_flags
& RATE_MCS_SGI_MSK
)
575 if ((mcs_rate
->rate_n_flags
& RATE_MCS_FAT_MSK
) ||
576 (mcs_rate
->rate_n_flags
& RATE_MCS_DUP_MSK
))
579 if (mcs_rate
->rate_n_flags
& RATE_MCS_DUP_MSK
)
584 /* HT rate format, MIMO (might be 20 MHz legacy or 40 MHz fat width) */
586 tbl
->lq_type
= LQ_MIMO
;
587 if (mcs_rate
->rate_n_flags
& RATE_MCS_SGI_MSK
)
590 if ((mcs_rate
->rate_n_flags
& RATE_MCS_FAT_MSK
) ||
591 (mcs_rate
->rate_n_flags
& RATE_MCS_DUP_MSK
))
594 if (mcs_rate
->rate_n_flags
& RATE_MCS_DUP_MSK
)
601 static inline void rs_toggle_antenna(struct iwl4965_rate
*new_rate
,
602 struct iwl4965_scale_tbl_info
*tbl
)
604 if (tbl
->antenna_type
== ANT_AUX
) {
605 tbl
->antenna_type
= ANT_MAIN
;
606 new_rate
->rate_n_flags
&= ~RATE_MCS_ANT_B_MSK
;
607 new_rate
->rate_n_flags
|= RATE_MCS_ANT_A_MSK
;
609 tbl
->antenna_type
= ANT_AUX
;
610 new_rate
->rate_n_flags
&= ~RATE_MCS_ANT_A_MSK
;
611 new_rate
->rate_n_flags
|= RATE_MCS_ANT_B_MSK
;
615 static inline u8
rs_use_green(struct iwl_priv
*priv
,
616 struct ieee80211_conf
*conf
)
618 #ifdef CONFIG_IWL4965_HT
619 return ((conf
->flags
& IEEE80211_CONF_SUPPORT_HT_MODE
) &&
620 priv
->current_ht_config
.is_green_field
&&
621 !priv
->current_ht_config
.non_GF_STA_present
);
622 #endif /* CONFIG_IWL4965_HT */
627 * rs_get_supported_rates - get the available rates
629 * if management frame or broadcast frame only return
630 * basic available rates.
633 static void rs_get_supported_rates(struct iwl4965_lq_sta
*lq_sta
,
634 struct ieee80211_hdr
*hdr
,
635 enum iwl4965_table_type rate_type
,
638 if (is_legacy(rate_type
))
639 *data_rate
= lq_sta
->active_rate
;
641 if (is_siso(rate_type
))
642 *data_rate
= lq_sta
->active_siso_rate
;
644 *data_rate
= lq_sta
->active_mimo_rate
;
647 if (hdr
&& is_multicast_ether_addr(hdr
->addr1
) &&
648 lq_sta
->active_rate_basic
) {
649 *data_rate
= lq_sta
->active_rate_basic
;
653 static u16
rs_get_adjacent_rate(u8 index
, u16 rate_mask
, int rate_type
)
655 u8 high
= IWL_RATE_INVALID
;
656 u8 low
= IWL_RATE_INVALID
;
658 /* 802.11A or ht walks to the next literal adjacent rate in
660 if (is_a_band(rate_type
) || !is_legacy(rate_type
)) {
664 /* Find the previous rate that is in the rate mask */
666 for (mask
= (1 << i
); i
>= 0; i
--, mask
>>= 1) {
667 if (rate_mask
& mask
) {
673 /* Find the next rate that is in the rate mask */
675 for (mask
= (1 << i
); i
< IWL_RATE_COUNT
; i
++, mask
<<= 1) {
676 if (rate_mask
& mask
) {
682 return (high
<< 8) | low
;
686 while (low
!= IWL_RATE_INVALID
) {
687 low
= iwl4965_rates
[low
].prev_rs
;
688 if (low
== IWL_RATE_INVALID
)
690 if (rate_mask
& (1 << low
))
692 IWL_DEBUG_RATE("Skipping masked lower rate: %d\n", low
);
696 while (high
!= IWL_RATE_INVALID
) {
697 high
= iwl4965_rates
[high
].next_rs
;
698 if (high
== IWL_RATE_INVALID
)
700 if (rate_mask
& (1 << high
))
702 IWL_DEBUG_RATE("Skipping masked higher rate: %d\n", high
);
705 return (high
<< 8) | low
;
708 static void rs_get_lower_rate(struct iwl4965_lq_sta
*lq_sta
,
709 struct iwl4965_scale_tbl_info
*tbl
, u8 scale_index
,
710 u8 ht_possible
, struct iwl4965_rate
*mcs_rate
)
715 u8 switch_to_legacy
= 0;
716 u8 is_green
= lq_sta
->is_green
;
718 /* check if we need to switch from HT to legacy rates.
719 * assumption is that mandatory rates (1Mbps or 6Mbps)
720 * are always supported (spec demand) */
721 if (!is_legacy(tbl
->lq_type
) && (!ht_possible
|| !scale_index
)) {
722 switch_to_legacy
= 1;
723 scale_index
= rs_ht_to_legacy
[scale_index
];
724 if (lq_sta
->band
== IEEE80211_BAND_5GHZ
)
729 if ((tbl
->antenna_type
== ANT_BOTH
) ||
730 (tbl
->antenna_type
== ANT_NONE
))
731 tbl
->antenna_type
= ANT_MAIN
;
737 rs_get_supported_rates(lq_sta
, NULL
, tbl
->lq_type
, &rate_mask
);
739 /* Mask with station rate restriction */
740 if (is_legacy(tbl
->lq_type
)) {
741 /* supp_rates has no CCK bits in A mode */
742 if (lq_sta
->band
== IEEE80211_BAND_5GHZ
)
743 rate_mask
= (u16
)(rate_mask
&
744 (lq_sta
->supp_rates
<< IWL_FIRST_OFDM_RATE
));
746 rate_mask
= (u16
)(rate_mask
& lq_sta
->supp_rates
);
749 /* If we switched from HT to legacy, check current rate */
750 if (switch_to_legacy
&& (rate_mask
& (1 << scale_index
))) {
751 rs_mcs_from_tbl(mcs_rate
, tbl
, scale_index
, is_green
);
755 high_low
= rs_get_adjacent_rate(scale_index
, rate_mask
, tbl
->lq_type
);
756 low
= high_low
& 0xff;
758 if (low
!= IWL_RATE_INVALID
)
759 rs_mcs_from_tbl(mcs_rate
, tbl
, low
, is_green
);
761 rs_mcs_from_tbl(mcs_rate
, tbl
, scale_index
, is_green
);
765 * mac80211 sends us Tx status
767 static void rs_tx_status(void *priv_rate
, struct net_device
*dev
,
769 struct ieee80211_tx_status
*tx_resp
)
773 int rs_index
, index
= 0;
774 struct iwl4965_lq_sta
*lq_sta
;
775 struct iwl_link_quality_cmd
*table
;
776 struct sta_info
*sta
;
777 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
778 struct iwl_priv
*priv
= (struct iwl_priv
*)priv_rate
;
779 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
780 struct ieee80211_hw
*hw
= local_to_hw(local
);
781 struct iwl4965_rate_scale_data
*window
= NULL
;
782 struct iwl4965_rate_scale_data
*search_win
= NULL
;
783 struct iwl4965_rate tx_mcs
;
784 struct iwl4965_scale_tbl_info tbl_type
;
785 struct iwl4965_scale_tbl_info
*curr_tbl
, *search_tbl
;
787 u16 fc
= le16_to_cpu(hdr
->frame_control
);
790 IWL_DEBUG_RATE_LIMIT("get frame ack response, update rate scale window\n");
792 if (!ieee80211_is_data(fc
) || is_multicast_ether_addr(hdr
->addr1
))
795 /* This packet was aggregated but doesn't carry rate scale info */
796 if ((tx_resp
->control
.flags
& IEEE80211_TXCTL_AMPDU
) &&
797 !(tx_resp
->flags
& IEEE80211_TX_STATUS_AMPDU
))
800 retries
= tx_resp
->retry_count
;
807 sta
= sta_info_get(local
, hdr
->addr1
);
809 if (!sta
|| !sta
->rate_ctrl_priv
)
813 lq_sta
= (struct iwl4965_lq_sta
*)sta
->rate_ctrl_priv
;
815 if (!priv
->lq_mngr
.lq_ready
)
818 if ((priv
->iw_mode
== IEEE80211_IF_TYPE_IBSS
) &&
819 !lq_sta
->ibss_sta_added
)
823 active_index
= lq_sta
->active_tbl
;
825 /* Get mac80211 antenna info */
827 (lq_sta
->valid_antenna
& local
->hw
.conf
.antenna_sel_tx
);
828 if (!lq_sta
->antenna
)
829 lq_sta
->antenna
= lq_sta
->valid_antenna
;
831 /* Ignore mac80211 antenna info for now */
832 lq_sta
->antenna
= lq_sta
->valid_antenna
;
834 curr_tbl
= &(lq_sta
->lq_info
[active_index
]);
835 search_tbl
= &(lq_sta
->lq_info
[(1 - active_index
)]);
836 window
= (struct iwl4965_rate_scale_data
*)
838 search_win
= (struct iwl4965_rate_scale_data
*)
839 &(search_tbl
->win
[0]);
842 * Ignore this Tx frame response if its initial rate doesn't match
843 * that of latest Link Quality command. There may be stragglers
844 * from a previous Link Quality command, but we're no longer interested
845 * in those; they're either from the "active" mode while we're trying
846 * to check "search" mode, or a prior "search" mode after we've moved
847 * to a new "search" mode (which might become the new "active" mode).
849 tx_mcs
.rate_n_flags
= le32_to_cpu(table
->rs_table
[0].rate_n_flags
);
850 rs_get_tbl_info_from_mcs(&tx_mcs
, priv
->band
, &tbl_type
, &rs_index
);
851 if (priv
->band
== IEEE80211_BAND_5GHZ
)
852 rs_index
-= IWL_FIRST_OFDM_RATE
;
854 if ((tx_resp
->control
.tx_rate
== NULL
) ||
856 !!(tx_resp
->control
.flags
& IEEE80211_TXCTL_SHORT_GI
)) ||
858 !!(tx_resp
->control
.flags
& IEEE80211_TXCTL_40_MHZ_WIDTH
)) ||
860 !!(tx_resp
->control
.flags
& IEEE80211_TXCTL_DUP_DATA
)) ||
861 (tbl_type
.antenna_type
^
862 tx_resp
->control
.antenna_sel_tx
) ||
863 (!!(tx_mcs
.rate_n_flags
& RATE_MCS_HT_MSK
) ^
864 !!(tx_resp
->control
.flags
& IEEE80211_TXCTL_OFDM_HT
)) ||
865 (!!(tx_mcs
.rate_n_flags
& RATE_MCS_GF_MSK
) ^
866 !!(tx_resp
->control
.flags
& IEEE80211_TXCTL_GREEN_FIELD
)) ||
867 (hw
->wiphy
->bands
[priv
->band
]->bitrates
[rs_index
].bitrate
!=
868 tx_resp
->control
.tx_rate
->bitrate
)) {
869 IWL_DEBUG_RATE("initial rate does not match 0x%x\n",
870 tx_mcs
.rate_n_flags
);
874 /* Update frame history window with "failure" for each Tx retry. */
876 /* Look up the rate and other info used for each tx attempt.
877 * Each tx attempt steps one entry deeper in the rate table. */
878 tx_mcs
.rate_n_flags
=
879 le32_to_cpu(table
->rs_table
[index
].rate_n_flags
);
880 rs_get_tbl_info_from_mcs(&tx_mcs
, priv
->band
,
881 &tbl_type
, &rs_index
);
883 /* If type matches "search" table,
884 * add failure to "search" history */
885 if ((tbl_type
.lq_type
== search_tbl
->lq_type
) &&
886 (tbl_type
.antenna_type
== search_tbl
->antenna_type
) &&
887 (tbl_type
.is_SGI
== search_tbl
->is_SGI
)) {
888 if (search_tbl
->expected_tpt
)
889 tpt
= search_tbl
->expected_tpt
[rs_index
];
892 rs_collect_tx_data(search_win
, rs_index
, tpt
, 1, 0);
894 /* Else if type matches "current/active" table,
895 * add failure to "current/active" history */
896 } else if ((tbl_type
.lq_type
== curr_tbl
->lq_type
) &&
897 (tbl_type
.antenna_type
== curr_tbl
->antenna_type
) &&
898 (tbl_type
.is_SGI
== curr_tbl
->is_SGI
)) {
899 if (curr_tbl
->expected_tpt
)
900 tpt
= curr_tbl
->expected_tpt
[rs_index
];
903 rs_collect_tx_data(window
, rs_index
, tpt
, 1, 0);
906 /* If not searching for a new mode, increment failed counter
907 * ... this helps determine when to start searching again */
908 if (lq_sta
->stay_in_tbl
)
909 lq_sta
->total_failed
++;
916 * Find (by rate) the history window to update with final Tx attempt;
917 * if Tx was successful first try, use original rate,
918 * else look up the rate that was, finally, successful.
920 tx_mcs
.rate_n_flags
= le32_to_cpu(table
->rs_table
[index
].rate_n_flags
);
921 rs_get_tbl_info_from_mcs(&tx_mcs
, priv
->band
, &tbl_type
, &rs_index
);
923 /* Update frame history window with "success" if Tx got ACKed ... */
924 if (tx_resp
->flags
& IEEE80211_TX_STATUS_ACK
)
929 /* If type matches "search" table,
930 * add final tx status to "search" history */
931 if ((tbl_type
.lq_type
== search_tbl
->lq_type
) &&
932 (tbl_type
.antenna_type
== search_tbl
->antenna_type
) &&
933 (tbl_type
.is_SGI
== search_tbl
->is_SGI
)) {
934 if (search_tbl
->expected_tpt
)
935 tpt
= search_tbl
->expected_tpt
[rs_index
];
938 if (tx_resp
->control
.flags
& IEEE80211_TXCTL_AMPDU
)
939 rs_collect_tx_data(search_win
, rs_index
, tpt
,
940 tx_resp
->ampdu_ack_len
,
941 tx_resp
->ampdu_ack_map
);
943 rs_collect_tx_data(search_win
, rs_index
, tpt
,
945 /* Else if type matches "current/active" table,
946 * add final tx status to "current/active" history */
947 } else if ((tbl_type
.lq_type
== curr_tbl
->lq_type
) &&
948 (tbl_type
.antenna_type
== curr_tbl
->antenna_type
) &&
949 (tbl_type
.is_SGI
== curr_tbl
->is_SGI
)) {
950 if (curr_tbl
->expected_tpt
)
951 tpt
= curr_tbl
->expected_tpt
[rs_index
];
954 if (tx_resp
->control
.flags
& IEEE80211_TXCTL_AMPDU
)
955 rs_collect_tx_data(window
, rs_index
, tpt
,
956 tx_resp
->ampdu_ack_len
,
957 tx_resp
->ampdu_ack_map
);
959 rs_collect_tx_data(window
, rs_index
, tpt
,
963 /* If not searching for new mode, increment success/failed counter
964 * ... these help determine when to start searching again */
965 if (lq_sta
->stay_in_tbl
) {
966 if (tx_resp
->control
.flags
& IEEE80211_TXCTL_AMPDU
) {
967 lq_sta
->total_success
+= tx_resp
->ampdu_ack_map
;
968 lq_sta
->total_failed
+=
969 (tx_resp
->ampdu_ack_len
- tx_resp
->ampdu_ack_map
);
972 lq_sta
->total_success
++;
974 lq_sta
->total_failed
++;
978 /* See if there's a better rate or modulation mode to try. */
979 rs_rate_scale_perform(priv
, dev
, hdr
, sta
);
985 static u8
rs_is_ant_connected(u8 valid_antenna
,
986 enum iwl4965_antenna_type antenna_type
)
988 if (antenna_type
== ANT_AUX
)
989 return ((valid_antenna
& 0x2) ? 1:0);
990 else if (antenna_type
== ANT_MAIN
)
991 return ((valid_antenna
& 0x1) ? 1:0);
992 else if (antenna_type
== ANT_BOTH
)
993 return ((valid_antenna
& 0x3) == 0x3);
998 static u8
rs_is_other_ant_connected(u8 valid_antenna
,
999 enum iwl4965_antenna_type antenna_type
)
1001 if (antenna_type
== ANT_AUX
)
1002 return rs_is_ant_connected(valid_antenna
, ANT_MAIN
);
1004 return rs_is_ant_connected(valid_antenna
, ANT_AUX
);
1010 * Begin a period of staying with a selected modulation mode.
1011 * Set "stay_in_tbl" flag to prevent any mode switches.
1012 * Set frame tx success limits according to legacy vs. high-throughput,
1013 * and reset overall (spanning all rates) tx success history statistics.
1014 * These control how long we stay using same modulation mode before
1015 * searching for a new mode.
1017 static void rs_set_stay_in_table(u8 is_legacy
,
1018 struct iwl4965_lq_sta
*lq_sta
)
1020 IWL_DEBUG_HT("we are staying in the same table\n");
1021 lq_sta
->stay_in_tbl
= 1; /* only place this gets set */
1023 lq_sta
->table_count_limit
= IWL_LEGACY_TABLE_COUNT
;
1024 lq_sta
->max_failure_limit
= IWL_LEGACY_FAILURE_LIMIT
;
1025 lq_sta
->max_success_limit
= IWL_LEGACY_SUCCESS_LIMIT
;
1027 lq_sta
->table_count_limit
= IWL_NONE_LEGACY_TABLE_COUNT
;
1028 lq_sta
->max_failure_limit
= IWL_NONE_LEGACY_FAILURE_LIMIT
;
1029 lq_sta
->max_success_limit
= IWL_NONE_LEGACY_SUCCESS_LIMIT
;
1031 lq_sta
->table_count
= 0;
1032 lq_sta
->total_failed
= 0;
1033 lq_sta
->total_success
= 0;
1037 * Find correct throughput table for given mode of modulation
1039 static void rs_get_expected_tpt_table(struct iwl4965_lq_sta
*lq_sta
,
1040 struct iwl4965_scale_tbl_info
*tbl
)
1042 if (is_legacy(tbl
->lq_type
)) {
1043 if (!is_a_band(tbl
->lq_type
))
1044 tbl
->expected_tpt
= expected_tpt_G
;
1046 tbl
->expected_tpt
= expected_tpt_A
;
1047 } else if (is_siso(tbl
->lq_type
)) {
1048 if (tbl
->is_fat
&& !lq_sta
->is_dup
)
1050 tbl
->expected_tpt
= expected_tpt_siso40MHzSGI
;
1052 tbl
->expected_tpt
= expected_tpt_siso40MHz
;
1053 else if (tbl
->is_SGI
)
1054 tbl
->expected_tpt
= expected_tpt_siso20MHzSGI
;
1056 tbl
->expected_tpt
= expected_tpt_siso20MHz
;
1058 } else if (is_mimo(tbl
->lq_type
)) {
1059 if (tbl
->is_fat
&& !lq_sta
->is_dup
)
1061 tbl
->expected_tpt
= expected_tpt_mimo40MHzSGI
;
1063 tbl
->expected_tpt
= expected_tpt_mimo40MHz
;
1064 else if (tbl
->is_SGI
)
1065 tbl
->expected_tpt
= expected_tpt_mimo20MHzSGI
;
1067 tbl
->expected_tpt
= expected_tpt_mimo20MHz
;
1069 tbl
->expected_tpt
= expected_tpt_G
;
1072 #ifdef CONFIG_IWL4965_HT
1074 * Find starting rate for new "search" high-throughput mode of modulation.
1075 * Goal is to find lowest expected rate (under perfect conditions) that is
1076 * above the current measured throughput of "active" mode, to give new mode
1077 * a fair chance to prove itself without too many challenges.
1079 * This gets called when transitioning to more aggressive modulation
1080 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1081 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1082 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1083 * bit rate will typically need to increase, but not if performance was bad.
1085 static s32
rs_get_best_rate(struct iwl_priv
*priv
,
1086 struct iwl4965_lq_sta
*lq_sta
,
1087 struct iwl4965_scale_tbl_info
*tbl
, /* "search" */
1088 u16 rate_mask
, s8 index
, s8 rate
)
1090 /* "active" values */
1091 struct iwl4965_scale_tbl_info
*active_tbl
=
1092 &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
1093 s32 active_sr
= active_tbl
->win
[index
].success_ratio
;
1094 s32 active_tpt
= active_tbl
->expected_tpt
[index
];
1096 /* expected "search" throughput */
1097 s32
*tpt_tbl
= tbl
->expected_tpt
;
1099 s32 new_rate
, high
, low
, start_hi
;
1102 new_rate
= high
= low
= start_hi
= IWL_RATE_INVALID
;
1105 high_low
= rs_get_adjacent_rate(rate
, rate_mask
, tbl
->lq_type
);
1107 low
= high_low
& 0xff;
1108 high
= (high_low
>> 8) & 0xff;
1111 * Lower the "search" bit rate, to give new "search" mode
1112 * approximately the same throughput as "active" if:
1114 * 1) "Active" mode has been working modestly well (but not
1115 * great), and expected "search" throughput (under perfect
1116 * conditions) at candidate rate is above the actual
1117 * measured "active" throughput (but less than expected
1118 * "active" throughput under perfect conditions).
1120 * 2) "Active" mode has been working perfectly or very well
1121 * and expected "search" throughput (under perfect
1122 * conditions) at candidate rate is above expected
1123 * "active" throughput (under perfect conditions).
1125 if ((((100 * tpt_tbl
[rate
]) > lq_sta
->last_tpt
) &&
1126 ((active_sr
> IWL_RATE_DECREASE_TH
) &&
1127 (active_sr
<= IWL_RATE_HIGH_TH
) &&
1128 (tpt_tbl
[rate
] <= active_tpt
))) ||
1129 ((active_sr
>= IWL_RATE_SCALE_SWITCH
) &&
1130 (tpt_tbl
[rate
] > active_tpt
))) {
1132 /* (2nd or later pass)
1133 * If we've already tried to raise the rate, and are
1134 * now trying to lower it, use the higher rate. */
1135 if (start_hi
!= IWL_RATE_INVALID
) {
1136 new_rate
= start_hi
;
1142 /* Loop again with lower rate */
1143 if (low
!= IWL_RATE_INVALID
)
1146 /* Lower rate not available, use the original */
1150 /* Else try to raise the "search" rate to match "active" */
1152 /* (2nd or later pass)
1153 * If we've already tried to lower the rate, and are
1154 * now trying to raise it, use the lower rate. */
1155 if (new_rate
!= IWL_RATE_INVALID
)
1158 /* Loop again with higher rate */
1159 else if (high
!= IWL_RATE_INVALID
) {
1163 /* Higher rate not available, use the original */
1173 #endif /* CONFIG_IWL4965_HT */
1175 static inline u8
rs_is_both_ant_supp(u8 valid_antenna
)
1177 return (rs_is_ant_connected(valid_antenna
, ANT_BOTH
));
1181 * Set up search table for MIMO
1183 static int rs_switch_to_mimo(struct iwl_priv
*priv
,
1184 struct iwl4965_lq_sta
*lq_sta
,
1185 struct ieee80211_conf
*conf
,
1186 struct sta_info
*sta
,
1187 struct iwl4965_scale_tbl_info
*tbl
, int index
)
1189 #ifdef CONFIG_IWL4965_HT
1192 s8 is_green
= lq_sta
->is_green
;
1194 if (!(conf
->flags
& IEEE80211_CONF_SUPPORT_HT_MODE
) ||
1195 !sta
->ht_info
.ht_supported
)
1198 IWL_DEBUG_HT("LQ: try to switch to MIMO\n");
1199 tbl
->lq_type
= LQ_MIMO
;
1200 rs_get_supported_rates(lq_sta
, NULL
, tbl
->lq_type
,
1203 if (priv
->current_ht_config
.tx_mimo_ps_mode
== IWL_MIMO_PS_STATIC
)
1206 /* Need both Tx chains/antennas to support MIMO */
1207 if (!rs_is_both_ant_supp(lq_sta
->antenna
))
1210 tbl
->is_dup
= lq_sta
->is_dup
;
1212 if (priv
->current_ht_config
.supported_chan_width
1213 == IWL_CHANNEL_WIDTH_40MHZ
)
1219 if (priv
->current_ht_config
.sgf
& HT_SHORT_GI_40MHZ_ONLY
)
1223 } else if (priv
->current_ht_config
.sgf
& HT_SHORT_GI_20MHZ_ONLY
)
1228 rs_get_expected_tpt_table(lq_sta
, tbl
);
1230 rate
= rs_get_best_rate(priv
, lq_sta
, tbl
, rate_mask
, index
, index
);
1232 IWL_DEBUG_HT("LQ: MIMO best rate %d mask %X\n", rate
, rate_mask
);
1233 if ((rate
== IWL_RATE_INVALID
) || !((1 << rate
) & rate_mask
))
1235 rs_mcs_from_tbl(&tbl
->current_rate
, tbl
, rate
, is_green
);
1237 IWL_DEBUG_HT("LQ: Switch to new mcs %X index is green %X\n",
1238 tbl
->current_rate
.rate_n_flags
, is_green
);
1242 #endif /*CONFIG_IWL4965_HT */
1246 * Set up search table for SISO
1248 static int rs_switch_to_siso(struct iwl_priv
*priv
,
1249 struct iwl4965_lq_sta
*lq_sta
,
1250 struct ieee80211_conf
*conf
,
1251 struct sta_info
*sta
,
1252 struct iwl4965_scale_tbl_info
*tbl
, int index
)
1254 #ifdef CONFIG_IWL4965_HT
1256 u8 is_green
= lq_sta
->is_green
;
1259 IWL_DEBUG_HT("LQ: try to switch to SISO\n");
1260 if (!(conf
->flags
& IEEE80211_CONF_SUPPORT_HT_MODE
) ||
1261 !sta
->ht_info
.ht_supported
)
1264 tbl
->is_dup
= lq_sta
->is_dup
;
1265 tbl
->lq_type
= LQ_SISO
;
1267 rs_get_supported_rates(lq_sta
, NULL
, tbl
->lq_type
,
1270 if (priv
->current_ht_config
.supported_chan_width
1271 == IWL_CHANNEL_WIDTH_40MHZ
)
1277 if (priv
->current_ht_config
.sgf
& HT_SHORT_GI_40MHZ_ONLY
)
1281 } else if (priv
->current_ht_config
.sgf
& HT_SHORT_GI_20MHZ_ONLY
)
1289 rs_get_expected_tpt_table(lq_sta
, tbl
);
1290 rate
= rs_get_best_rate(priv
, lq_sta
, tbl
, rate_mask
, index
, index
);
1292 IWL_DEBUG_HT("LQ: get best rate %d mask %X\n", rate
, rate_mask
);
1293 if ((rate
== IWL_RATE_INVALID
) || !((1 << rate
) & rate_mask
)) {
1294 IWL_DEBUG_HT("can not switch with index %d rate mask %x\n",
1298 rs_mcs_from_tbl(&tbl
->current_rate
, tbl
, rate
, is_green
);
1299 IWL_DEBUG_HT("LQ: Switch to new mcs %X index is green %X\n",
1300 tbl
->current_rate
.rate_n_flags
, is_green
);
1305 #endif /*CONFIG_IWL4965_HT */
1309 * Try to switch to new modulation mode from legacy
1311 static int rs_move_legacy_other(struct iwl_priv
*priv
,
1312 struct iwl4965_lq_sta
*lq_sta
,
1313 struct ieee80211_conf
*conf
,
1314 struct sta_info
*sta
,
1318 struct iwl4965_scale_tbl_info
*tbl
=
1319 &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
1320 struct iwl4965_scale_tbl_info
*search_tbl
=
1321 &(lq_sta
->lq_info
[(1 - lq_sta
->active_tbl
)]);
1322 struct iwl4965_rate_scale_data
*window
= &(tbl
->win
[index
]);
1323 u32 sz
= (sizeof(struct iwl4965_scale_tbl_info
) -
1324 (sizeof(struct iwl4965_rate_scale_data
) * IWL_RATE_COUNT
));
1325 u8 start_action
= tbl
->action
;
1328 switch (tbl
->action
) {
1329 case IWL_LEGACY_SWITCH_ANTENNA
:
1330 IWL_DEBUG_HT("LQ Legacy switch Antenna\n");
1332 search_tbl
->lq_type
= LQ_NONE
;
1333 lq_sta
->action_counter
++;
1335 /* Don't change antenna if success has been great */
1336 if (window
->success_ratio
>= IWL_RS_GOOD_RATIO
)
1339 /* Don't change antenna if other one is not connected */
1340 if (!rs_is_other_ant_connected(lq_sta
->antenna
,
1344 /* Set up search table to try other antenna */
1345 memcpy(search_tbl
, tbl
, sz
);
1347 rs_toggle_antenna(&(search_tbl
->current_rate
),
1349 rs_get_expected_tpt_table(lq_sta
, search_tbl
);
1350 lq_sta
->search_better_tbl
= 1;
1353 case IWL_LEGACY_SWITCH_SISO
:
1354 IWL_DEBUG_HT("LQ: Legacy switch to SISO\n");
1356 /* Set up search table to try SISO */
1357 memcpy(search_tbl
, tbl
, sz
);
1358 search_tbl
->lq_type
= LQ_SISO
;
1359 search_tbl
->is_SGI
= 0;
1360 search_tbl
->is_fat
= 0;
1361 ret
= rs_switch_to_siso(priv
, lq_sta
, conf
, sta
,
1364 lq_sta
->search_better_tbl
= 1;
1365 lq_sta
->action_counter
= 0;
1370 case IWL_LEGACY_SWITCH_MIMO
:
1371 IWL_DEBUG_HT("LQ: Legacy switch MIMO\n");
1373 /* Set up search table to try MIMO */
1374 memcpy(search_tbl
, tbl
, sz
);
1375 search_tbl
->lq_type
= LQ_MIMO
;
1376 search_tbl
->is_SGI
= 0;
1377 search_tbl
->is_fat
= 0;
1378 search_tbl
->antenna_type
= ANT_BOTH
;
1379 ret
= rs_switch_to_mimo(priv
, lq_sta
, conf
, sta
,
1382 lq_sta
->search_better_tbl
= 1;
1383 lq_sta
->action_counter
= 0;
1389 if (tbl
->action
> IWL_LEGACY_SWITCH_MIMO
)
1390 tbl
->action
= IWL_LEGACY_SWITCH_ANTENNA
;
1392 if (tbl
->action
== start_action
)
1400 if (tbl
->action
> IWL_LEGACY_SWITCH_MIMO
)
1401 tbl
->action
= IWL_LEGACY_SWITCH_ANTENNA
;
1407 * Try to switch to new modulation mode from SISO
1409 static int rs_move_siso_to_other(struct iwl_priv
*priv
,
1410 struct iwl4965_lq_sta
*lq_sta
,
1411 struct ieee80211_conf
*conf
,
1412 struct sta_info
*sta
,
1416 u8 is_green
= lq_sta
->is_green
;
1417 struct iwl4965_scale_tbl_info
*tbl
=
1418 &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
1419 struct iwl4965_scale_tbl_info
*search_tbl
=
1420 &(lq_sta
->lq_info
[(1 - lq_sta
->active_tbl
)]);
1421 struct iwl4965_rate_scale_data
*window
= &(tbl
->win
[index
]);
1422 u32 sz
= (sizeof(struct iwl4965_scale_tbl_info
) -
1423 (sizeof(struct iwl4965_rate_scale_data
) * IWL_RATE_COUNT
));
1424 u8 start_action
= tbl
->action
;
1427 lq_sta
->action_counter
++;
1428 switch (tbl
->action
) {
1429 case IWL_SISO_SWITCH_ANTENNA
:
1430 IWL_DEBUG_HT("LQ: SISO SWITCH ANTENNA SISO\n");
1431 search_tbl
->lq_type
= LQ_NONE
;
1432 if (window
->success_ratio
>= IWL_RS_GOOD_RATIO
)
1434 if (!rs_is_other_ant_connected(lq_sta
->antenna
,
1438 memcpy(search_tbl
, tbl
, sz
);
1439 search_tbl
->action
= IWL_SISO_SWITCH_MIMO
;
1440 rs_toggle_antenna(&(search_tbl
->current_rate
),
1442 lq_sta
->search_better_tbl
= 1;
1446 case IWL_SISO_SWITCH_MIMO
:
1447 IWL_DEBUG_HT("LQ: SISO SWITCH TO MIMO FROM SISO\n");
1448 memcpy(search_tbl
, tbl
, sz
);
1449 search_tbl
->lq_type
= LQ_MIMO
;
1450 search_tbl
->is_SGI
= 0;
1451 search_tbl
->is_fat
= 0;
1452 search_tbl
->antenna_type
= ANT_BOTH
;
1453 ret
= rs_switch_to_mimo(priv
, lq_sta
, conf
, sta
,
1456 lq_sta
->search_better_tbl
= 1;
1460 case IWL_SISO_SWITCH_GI
:
1461 IWL_DEBUG_HT("LQ: SISO SWITCH TO GI\n");
1463 memcpy(search_tbl
, tbl
, sz
);
1464 search_tbl
->action
= 0;
1465 if (search_tbl
->is_SGI
)
1466 search_tbl
->is_SGI
= 0;
1468 search_tbl
->is_SGI
= 1;
1471 lq_sta
->search_better_tbl
= 1;
1472 if ((tbl
->lq_type
== LQ_SISO
) &&
1474 s32 tpt
= lq_sta
->last_tpt
/ 100;
1475 if (((!tbl
->is_fat
) &&
1476 (tpt
>= expected_tpt_siso20MHz
[index
])) ||
1478 (tpt
>= expected_tpt_siso40MHz
[index
])))
1479 lq_sta
->search_better_tbl
= 0;
1481 rs_get_expected_tpt_table(lq_sta
, search_tbl
);
1482 rs_mcs_from_tbl(&search_tbl
->current_rate
,
1483 search_tbl
, index
, is_green
);
1487 if (tbl
->action
> IWL_SISO_SWITCH_GI
)
1488 tbl
->action
= IWL_SISO_SWITCH_ANTENNA
;
1490 if (tbl
->action
== start_action
)
1497 if (tbl
->action
> IWL_SISO_SWITCH_GI
)
1498 tbl
->action
= IWL_SISO_SWITCH_ANTENNA
;
1503 * Try to switch to new modulation mode from MIMO
1505 static int rs_move_mimo_to_other(struct iwl_priv
*priv
,
1506 struct iwl4965_lq_sta
*lq_sta
,
1507 struct ieee80211_conf
*conf
,
1508 struct sta_info
*sta
,
1512 s8 is_green
= lq_sta
->is_green
;
1513 struct iwl4965_scale_tbl_info
*tbl
=
1514 &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
1515 struct iwl4965_scale_tbl_info
*search_tbl
=
1516 &(lq_sta
->lq_info
[(1 - lq_sta
->active_tbl
)]);
1517 u32 sz
= (sizeof(struct iwl4965_scale_tbl_info
) -
1518 (sizeof(struct iwl4965_rate_scale_data
) * IWL_RATE_COUNT
));
1519 u8 start_action
= tbl
->action
;
1522 lq_sta
->action_counter
++;
1523 switch (tbl
->action
) {
1524 case IWL_MIMO_SWITCH_ANTENNA_A
:
1525 case IWL_MIMO_SWITCH_ANTENNA_B
:
1526 IWL_DEBUG_HT("LQ: MIMO SWITCH TO SISO\n");
1529 /* Set up new search table for SISO */
1530 memcpy(search_tbl
, tbl
, sz
);
1531 search_tbl
->lq_type
= LQ_SISO
;
1532 search_tbl
->is_SGI
= 0;
1533 search_tbl
->is_fat
= 0;
1534 if (tbl
->action
== IWL_MIMO_SWITCH_ANTENNA_A
)
1535 search_tbl
->antenna_type
= ANT_MAIN
;
1537 search_tbl
->antenna_type
= ANT_AUX
;
1539 ret
= rs_switch_to_siso(priv
, lq_sta
, conf
, sta
,
1542 lq_sta
->search_better_tbl
= 1;
1547 case IWL_MIMO_SWITCH_GI
:
1548 IWL_DEBUG_HT("LQ: MIMO SWITCH TO GI\n");
1550 /* Set up new search table for MIMO */
1551 memcpy(search_tbl
, tbl
, sz
);
1552 search_tbl
->lq_type
= LQ_MIMO
;
1553 search_tbl
->antenna_type
= ANT_BOTH
;
1554 search_tbl
->action
= 0;
1555 if (search_tbl
->is_SGI
)
1556 search_tbl
->is_SGI
= 0;
1558 search_tbl
->is_SGI
= 1;
1559 lq_sta
->search_better_tbl
= 1;
1562 * If active table already uses the fastest possible
1563 * modulation (dual stream with short guard interval),
1564 * and it's working well, there's no need to look
1565 * for a better type of modulation!
1567 if ((tbl
->lq_type
== LQ_MIMO
) &&
1569 s32 tpt
= lq_sta
->last_tpt
/ 100;
1570 if (((!tbl
->is_fat
) &&
1571 (tpt
>= expected_tpt_mimo20MHz
[index
])) ||
1573 (tpt
>= expected_tpt_mimo40MHz
[index
])))
1574 lq_sta
->search_better_tbl
= 0;
1576 rs_get_expected_tpt_table(lq_sta
, search_tbl
);
1577 rs_mcs_from_tbl(&search_tbl
->current_rate
,
1578 search_tbl
, index
, is_green
);
1583 if (tbl
->action
> IWL_MIMO_SWITCH_GI
)
1584 tbl
->action
= IWL_MIMO_SWITCH_ANTENNA_A
;
1586 if (tbl
->action
== start_action
)
1593 if (tbl
->action
> IWL_MIMO_SWITCH_GI
)
1594 tbl
->action
= IWL_MIMO_SWITCH_ANTENNA_A
;
1600 * Check whether we should continue using same modulation mode, or
1601 * begin search for a new mode, based on:
1602 * 1) # tx successes or failures while using this mode
1603 * 2) # times calling this function
1604 * 3) elapsed time in this mode (not used, for now)
1606 static void rs_stay_in_table(struct iwl4965_lq_sta
*lq_sta
)
1608 struct iwl4965_scale_tbl_info
*tbl
;
1611 int flush_interval_passed
= 0;
1613 active_tbl
= lq_sta
->active_tbl
;
1615 tbl
= &(lq_sta
->lq_info
[active_tbl
]);
1617 /* If we've been disallowing search, see if we should now allow it */
1618 if (lq_sta
->stay_in_tbl
) {
1620 /* Elapsed time using current modulation mode */
1621 if (lq_sta
->flush_timer
)
1622 flush_interval_passed
=
1624 (unsigned long)(lq_sta
->flush_timer
+
1625 IWL_RATE_SCALE_FLUSH_INTVL
));
1627 /* For now, disable the elapsed time criterion */
1628 flush_interval_passed
= 0;
1631 * Check if we should allow search for new modulation mode.
1632 * If many frames have failed or succeeded, or we've used
1633 * this same modulation for a long time, allow search, and
1634 * reset history stats that keep track of whether we should
1635 * allow a new search. Also (below) reset all bitmaps and
1636 * stats in active history.
1638 if ((lq_sta
->total_failed
> lq_sta
->max_failure_limit
) ||
1639 (lq_sta
->total_success
> lq_sta
->max_success_limit
) ||
1640 ((!lq_sta
->search_better_tbl
) && (lq_sta
->flush_timer
)
1641 && (flush_interval_passed
))) {
1642 IWL_DEBUG_HT("LQ: stay is expired %d %d %d\n:",
1643 lq_sta
->total_failed
,
1644 lq_sta
->total_success
,
1645 flush_interval_passed
);
1647 /* Allow search for new mode */
1648 lq_sta
->stay_in_tbl
= 0; /* only place reset */
1649 lq_sta
->total_failed
= 0;
1650 lq_sta
->total_success
= 0;
1651 lq_sta
->flush_timer
= 0;
1654 * Else if we've used this modulation mode enough repetitions
1655 * (regardless of elapsed time or success/failure), reset
1656 * history bitmaps and rate-specific stats for all rates in
1660 lq_sta
->table_count
++;
1661 if (lq_sta
->table_count
>=
1662 lq_sta
->table_count_limit
) {
1663 lq_sta
->table_count
= 0;
1665 IWL_DEBUG_HT("LQ: stay in table clear win\n");
1666 for (i
= 0; i
< IWL_RATE_COUNT
; i
++)
1667 rs_rate_scale_clear_window(
1672 /* If transitioning to allow "search", reset all history
1673 * bitmaps and stats in active table (this will become the new
1674 * "search" table). */
1675 if (!lq_sta
->stay_in_tbl
) {
1676 for (i
= 0; i
< IWL_RATE_COUNT
; i
++)
1677 rs_rate_scale_clear_window(&(tbl
->win
[i
]));
1683 * Do rate scaling and search for new modulation mode.
1685 static void rs_rate_scale_perform(struct iwl_priv
*priv
,
1686 struct net_device
*dev
,
1687 struct ieee80211_hdr
*hdr
,
1688 struct sta_info
*sta
)
1690 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1691 struct ieee80211_hw
*hw
= local_to_hw(local
);
1692 struct ieee80211_conf
*conf
= &hw
->conf
;
1693 int low
= IWL_RATE_INVALID
;
1694 int high
= IWL_RATE_INVALID
;
1697 struct iwl4965_rate_scale_data
*window
= NULL
;
1698 int current_tpt
= IWL_INVALID_VALUE
;
1699 int low_tpt
= IWL_INVALID_VALUE
;
1700 int high_tpt
= IWL_INVALID_VALUE
;
1702 s8 scale_action
= 0;
1705 struct iwl4965_lq_sta
*lq_sta
;
1706 struct iwl4965_scale_tbl_info
*tbl
, *tbl1
;
1707 u16 rate_scale_index_msk
= 0;
1708 struct iwl4965_rate mcs_rate
;
1713 #ifdef CONFIG_IWL4965_HT
1714 u8 tid
= MAX_TID_COUNT
;
1718 IWL_DEBUG_RATE("rate scale calculate new rate for skb\n");
1720 fc
= le16_to_cpu(hdr
->frame_control
);
1721 if (!ieee80211_is_data(fc
) || is_multicast_ether_addr(hdr
->addr1
)) {
1722 /* Send management frames and broadcast/multicast data using
1724 /* TODO: this could probably be improved.. */
1728 if (!sta
|| !sta
->rate_ctrl_priv
)
1731 if (!priv
->lq_mngr
.lq_ready
) {
1732 IWL_DEBUG_RATE("still rate scaling not ready\n");
1735 lq_sta
= (struct iwl4965_lq_sta
*)sta
->rate_ctrl_priv
;
1737 #ifdef CONFIG_IWL4965_HT
1738 qc
= ieee80211_get_qos_ctrl(hdr
);
1740 tid
= (u8
)(le16_to_cpu(*qc
) & 0xf);
1741 rs_tl_add_packet(lq_sta
, tid
);
1745 * Select rate-scale / modulation-mode table to work with in
1746 * the rest of this function: "search" if searching for better
1747 * modulation mode, or "active" if doing rate scaling within a mode.
1749 if (!lq_sta
->search_better_tbl
)
1750 active_tbl
= lq_sta
->active_tbl
;
1752 active_tbl
= 1 - lq_sta
->active_tbl
;
1754 tbl
= &(lq_sta
->lq_info
[active_tbl
]);
1755 is_green
= lq_sta
->is_green
;
1757 /* current tx rate */
1758 index
= sta
->last_txrate_idx
;
1760 IWL_DEBUG_RATE("Rate scale index %d for type %d\n", index
,
1763 /* rates available for this association, and for modulation mode */
1764 rs_get_supported_rates(lq_sta
, hdr
, tbl
->lq_type
,
1767 IWL_DEBUG_RATE("mask 0x%04X \n", rate_mask
);
1769 /* mask with station rate restriction */
1770 if (is_legacy(tbl
->lq_type
)) {
1771 if (lq_sta
->band
== IEEE80211_BAND_5GHZ
)
1772 /* supp_rates has no CCK bits in A mode */
1773 rate_scale_index_msk
= (u16
) (rate_mask
&
1774 (lq_sta
->supp_rates
<< IWL_FIRST_OFDM_RATE
));
1776 rate_scale_index_msk
= (u16
) (rate_mask
&
1777 lq_sta
->supp_rates
);
1780 rate_scale_index_msk
= rate_mask
;
1782 if (!rate_scale_index_msk
)
1783 rate_scale_index_msk
= rate_mask
;
1785 /* If current rate is no longer supported on current association,
1786 * or user changed preferences for rates, find a new supported rate. */
1787 if (index
< 0 || !((1 << index
) & rate_scale_index_msk
)) {
1788 index
= IWL_INVALID_VALUE
;
1791 /* get the highest available rate */
1792 for (i
= 0; i
<= IWL_RATE_COUNT
; i
++) {
1793 if ((1 << i
) & rate_scale_index_msk
)
1797 if (index
== IWL_INVALID_VALUE
) {
1798 IWL_WARNING("Can not find a suitable rate\n");
1803 /* Get expected throughput table and history window for current rate */
1804 if (!tbl
->expected_tpt
)
1805 rs_get_expected_tpt_table(lq_sta
, tbl
);
1807 window
= &(tbl
->win
[index
]);
1810 * If there is not enough history to calculate actual average
1811 * throughput, keep analyzing results of more tx frames, without
1812 * changing rate or mode (bypass most of the rest of this function).
1813 * Set up new rate table in uCode only if old rate is not supported
1814 * in current association (use new rate found above).
1816 fail_count
= window
->counter
- window
->success_counter
;
1817 if (((fail_count
< IWL_RATE_MIN_FAILURE_TH
) &&
1818 (window
->success_counter
< IWL_RATE_MIN_SUCCESS_TH
))
1819 || (tbl
->expected_tpt
== NULL
)) {
1820 IWL_DEBUG_RATE("LQ: still below TH succ %d total %d "
1822 window
->success_counter
, window
->counter
, index
);
1824 /* Can't calculate this yet; not enough history */
1825 window
->average_tpt
= IWL_INVALID_VALUE
;
1827 /* Should we stay with this modulation mode,
1828 * or search for a new one? */
1829 rs_stay_in_table(lq_sta
);
1831 /* Set up new rate table in uCode, if needed */
1833 rs_mcs_from_tbl(&mcs_rate
, tbl
, index
, is_green
);
1834 rs_fill_link_cmd(lq_sta
, &mcs_rate
, &lq_sta
->lq
);
1835 iwl_send_lq_cmd(priv
, &lq_sta
->lq
, CMD_ASYNC
);
1839 /* Else we have enough samples; calculate estimate of
1840 * actual average throughput */
1842 window
->average_tpt
= ((window
->success_ratio
*
1843 tbl
->expected_tpt
[index
] + 64) / 128);
1845 /* If we are searching for better modulation mode, check success. */
1846 if (lq_sta
->search_better_tbl
) {
1847 int success_limit
= IWL_RATE_SCALE_SWITCH
;
1849 /* If good success, continue using the "search" mode;
1850 * no need to send new link quality command, since we're
1851 * continuing to use the setup that we've been trying. */
1852 if ((window
->success_ratio
> success_limit
) ||
1853 (window
->average_tpt
> lq_sta
->last_tpt
)) {
1854 if (!is_legacy(tbl
->lq_type
)) {
1855 IWL_DEBUG_HT("LQ: we are switching to HT"
1856 " rate suc %d current tpt %d"
1858 window
->success_ratio
,
1859 window
->average_tpt
,
1861 lq_sta
->enable_counter
= 1;
1863 /* Swap tables; "search" becomes "active" */
1864 lq_sta
->active_tbl
= active_tbl
;
1865 current_tpt
= window
->average_tpt
;
1867 /* Else poor success; go back to mode in "active" table */
1869 /* Nullify "search" table */
1870 tbl
->lq_type
= LQ_NONE
;
1872 /* Revert to "active" table */
1873 active_tbl
= lq_sta
->active_tbl
;
1874 tbl
= &(lq_sta
->lq_info
[active_tbl
]);
1876 /* Revert to "active" rate and throughput info */
1877 index
= iwl4965_hwrate_to_plcp_idx(
1878 tbl
->current_rate
.rate_n_flags
);
1879 current_tpt
= lq_sta
->last_tpt
;
1881 /* Need to set up a new rate table in uCode */
1883 IWL_DEBUG_HT("XXY GO BACK TO OLD TABLE\n");
1886 /* Either way, we've made a decision; modulation mode
1887 * search is done, allow rate adjustment next time. */
1888 lq_sta
->search_better_tbl
= 0;
1889 done_search
= 1; /* Don't switch modes below! */
1893 /* (Else) not in search of better modulation mode, try for better
1894 * starting rate, while staying in this mode. */
1895 high_low
= rs_get_adjacent_rate(index
, rate_scale_index_msk
,
1897 low
= high_low
& 0xff;
1898 high
= (high_low
>> 8) & 0xff;
1900 /* Collect measured throughputs for current and adjacent rates */
1901 current_tpt
= window
->average_tpt
;
1902 if (low
!= IWL_RATE_INVALID
)
1903 low_tpt
= tbl
->win
[low
].average_tpt
;
1904 if (high
!= IWL_RATE_INVALID
)
1905 high_tpt
= tbl
->win
[high
].average_tpt
;
1907 /* Assume rate increase */
1910 /* Too many failures, decrease rate */
1911 if ((window
->success_ratio
<= IWL_RATE_DECREASE_TH
) ||
1912 (current_tpt
== 0)) {
1913 IWL_DEBUG_RATE("decrease rate because of low success_ratio\n");
1916 /* No throughput measured yet for adjacent rates; try increase. */
1917 } else if ((low_tpt
== IWL_INVALID_VALUE
) &&
1918 (high_tpt
== IWL_INVALID_VALUE
))
1921 /* Both adjacent throughputs are measured, but neither one has better
1922 * throughput; we're using the best rate, don't change it! */
1923 else if ((low_tpt
!= IWL_INVALID_VALUE
) &&
1924 (high_tpt
!= IWL_INVALID_VALUE
) &&
1925 (low_tpt
< current_tpt
) &&
1926 (high_tpt
< current_tpt
))
1929 /* At least one adjacent rate's throughput is measured,
1930 * and may have better performance. */
1932 /* Higher adjacent rate's throughput is measured */
1933 if (high_tpt
!= IWL_INVALID_VALUE
) {
1934 /* Higher rate has better throughput */
1935 if (high_tpt
> current_tpt
)
1939 ("decrease rate because of high tpt\n");
1943 /* Lower adjacent rate's throughput is measured */
1944 } else if (low_tpt
!= IWL_INVALID_VALUE
) {
1945 /* Lower rate has better throughput */
1946 if (low_tpt
> current_tpt
) {
1948 ("decrease rate because of low tpt\n");
1955 /* Sanity check; asked for decrease, but success rate or throughput
1956 * has been good at old rate. Don't change it. */
1957 if (scale_action
== -1) {
1958 if ((low
!= IWL_RATE_INVALID
) &&
1959 ((window
->success_ratio
> IWL_RATE_HIGH_TH
) ||
1960 (current_tpt
> (100 * tbl
->expected_tpt
[low
]))))
1963 /* Sanity check; asked for increase, but success rate has not been great
1964 * even at old rate, higher rate will be worse. Don't change it. */
1965 } else if ((scale_action
== 1) &&
1966 (window
->success_ratio
< IWL_RATE_INCREASE_TH
))
1969 switch (scale_action
) {
1971 /* Decrease starting rate, update uCode's rate table */
1972 if (low
!= IWL_RATE_INVALID
) {
1978 /* Increase starting rate, update uCode's rate table */
1979 if (high
!= IWL_RATE_INVALID
) {
1991 IWL_DEBUG_HT("choose rate scale index %d action %d low %d "
1992 "high %d type %d\n",
1993 index
, scale_action
, low
, high
, tbl
->lq_type
);
1996 /* Replace uCode's rate table for the destination station. */
1998 rs_mcs_from_tbl(&mcs_rate
, tbl
, index
, is_green
);
1999 rs_fill_link_cmd(lq_sta
, &mcs_rate
, &lq_sta
->lq
);
2000 iwl_send_lq_cmd(priv
, &lq_sta
->lq
, CMD_ASYNC
);
2003 /* Should we stay with this modulation mode, or search for a new one? */
2004 rs_stay_in_table(lq_sta
);
2007 * Search for new modulation mode if we're:
2008 * 1) Not changing rates right now
2009 * 2) Not just finishing up a search
2010 * 3) Allowing a new search
2012 if (!update_lq
&& !done_search
&& !lq_sta
->stay_in_tbl
) {
2013 /* Save current throughput to compare with "search" throughput*/
2014 lq_sta
->last_tpt
= current_tpt
;
2016 /* Select a new "search" modulation mode to try.
2017 * If one is found, set up the new "search" table. */
2018 if (is_legacy(tbl
->lq_type
))
2019 rs_move_legacy_other(priv
, lq_sta
, conf
, sta
, index
);
2020 else if (is_siso(tbl
->lq_type
))
2021 rs_move_siso_to_other(priv
, lq_sta
, conf
, sta
, index
);
2023 rs_move_mimo_to_other(priv
, lq_sta
, conf
, sta
, index
);
2025 /* If new "search" mode was selected, set up in uCode table */
2026 if (lq_sta
->search_better_tbl
) {
2027 /* Access the "search" table, clear its history. */
2028 tbl
= &(lq_sta
->lq_info
[(1 - lq_sta
->active_tbl
)]);
2029 for (i
= 0; i
< IWL_RATE_COUNT
; i
++)
2030 rs_rate_scale_clear_window(&(tbl
->win
[i
]));
2032 /* Use new "search" start rate */
2033 index
= iwl4965_hwrate_to_plcp_idx(
2034 tbl
->current_rate
.rate_n_flags
);
2036 IWL_DEBUG_HT("Switch current mcs: %X index: %d\n",
2037 tbl
->current_rate
.rate_n_flags
, index
);
2038 rs_fill_link_cmd(lq_sta
, &tbl
->current_rate
,
2040 iwl_send_lq_cmd(priv
, &lq_sta
->lq
, CMD_ASYNC
);
2043 /* If the "active" (non-search) mode was legacy,
2044 * and we've tried switching antennas,
2045 * but we haven't been able to try HT modes (not available),
2046 * stay with best antenna legacy modulation for a while
2047 * before next round of mode comparisons. */
2048 tbl1
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
2049 if (is_legacy(tbl1
->lq_type
) &&
2050 #ifdef CONFIG_IWL4965_HT
2051 (!(conf
->flags
& IEEE80211_CONF_SUPPORT_HT_MODE
)) &&
2053 (lq_sta
->action_counter
>= 1)) {
2054 lq_sta
->action_counter
= 0;
2055 IWL_DEBUG_HT("LQ: STAY in legacy table\n");
2056 rs_set_stay_in_table(1, lq_sta
);
2059 /* If we're in an HT mode, and all 3 mode switch actions
2060 * have been tried and compared, stay in this best modulation
2061 * mode for a while before next round of mode comparisons. */
2062 if (lq_sta
->enable_counter
&&
2063 (lq_sta
->action_counter
>= IWL_ACTION_LIMIT
)) {
2064 #ifdef CONFIG_IWL4965_HT
2065 if ((lq_sta
->last_tpt
> IWL_AGG_TPT_THREHOLD
) &&
2066 (lq_sta
->tx_agg_tid_en
& (1 << tid
)) &&
2067 (tid
!= MAX_TID_COUNT
)) {
2068 IWL_DEBUG_HT("try to aggregate tid %d\n", tid
);
2069 rs_tl_turn_on_agg(priv
, tid
, lq_sta
, sta
);
2071 #endif /*CONFIG_IWL4965_HT */
2072 lq_sta
->action_counter
= 0;
2073 rs_set_stay_in_table(0, lq_sta
);
2077 * Else, don't search for a new modulation mode.
2078 * Put new timestamp in stay-in-modulation-mode flush timer if:
2079 * 1) Not changing rates right now
2080 * 2) Not just finishing up a search
2081 * 3) flush timer is empty
2084 if ((!update_lq
) && (!done_search
) && (!lq_sta
->flush_timer
))
2085 lq_sta
->flush_timer
= jiffies
;
2089 rs_mcs_from_tbl(&tbl
->current_rate
, tbl
, index
, is_green
);
2091 sta
->last_txrate_idx
= i
;
2093 /* sta->txrate_idx is an index to A mode rates which start
2094 * at IWL_FIRST_OFDM_RATE
2096 if (lq_sta
->band
== IEEE80211_BAND_5GHZ
)
2097 sta
->txrate_idx
= i
- IWL_FIRST_OFDM_RATE
;
2099 sta
->txrate_idx
= i
;
2105 static void rs_initialize_lq(struct iwl_priv
*priv
,
2106 struct ieee80211_conf
*conf
,
2107 struct sta_info
*sta
)
2110 struct iwl4965_lq_sta
*lq_sta
;
2111 struct iwl4965_scale_tbl_info
*tbl
;
2114 u8 use_green
= rs_use_green(priv
, conf
);
2115 struct iwl4965_rate mcs_rate
;
2117 if (!sta
|| !sta
->rate_ctrl_priv
)
2120 lq_sta
= (struct iwl4965_lq_sta
*)sta
->rate_ctrl_priv
;
2121 i
= sta
->last_txrate_idx
;
2123 if ((lq_sta
->lq
.sta_id
== 0xff) &&
2124 (priv
->iw_mode
== IEEE80211_IF_TYPE_IBSS
))
2127 if (!lq_sta
->search_better_tbl
)
2128 active_tbl
= lq_sta
->active_tbl
;
2130 active_tbl
= 1 - lq_sta
->active_tbl
;
2132 tbl
= &(lq_sta
->lq_info
[active_tbl
]);
2134 if ((i
< 0) || (i
>= IWL_RATE_COUNT
))
2137 mcs_rate
.rate_n_flags
= iwl4965_rates
[i
].plcp
;
2138 mcs_rate
.rate_n_flags
|= RATE_MCS_ANT_B_MSK
;
2139 mcs_rate
.rate_n_flags
&= ~RATE_MCS_ANT_A_MSK
;
2141 if (i
>= IWL_FIRST_CCK_RATE
&& i
<= IWL_LAST_CCK_RATE
)
2142 mcs_rate
.rate_n_flags
|= RATE_MCS_CCK_MSK
;
2144 tbl
->antenna_type
= ANT_AUX
;
2145 rs_get_tbl_info_from_mcs(&mcs_rate
, priv
->band
, tbl
, &rate_idx
);
2146 if (!rs_is_ant_connected(priv
->valid_antenna
, tbl
->antenna_type
))
2147 rs_toggle_antenna(&mcs_rate
, tbl
);
2149 rs_mcs_from_tbl(&mcs_rate
, tbl
, rate_idx
, use_green
);
2150 tbl
->current_rate
.rate_n_flags
= mcs_rate
.rate_n_flags
;
2151 rs_get_expected_tpt_table(lq_sta
, tbl
);
2152 rs_fill_link_cmd(lq_sta
, &mcs_rate
, &lq_sta
->lq
);
2153 iwl_send_lq_cmd(priv
, &lq_sta
->lq
, CMD_ASYNC
);
2158 static void rs_get_rate(void *priv_rate
, struct net_device
*dev
,
2159 struct ieee80211_supported_band
*sband
,
2160 struct sk_buff
*skb
,
2161 struct rate_selection
*sel
)
2165 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2166 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
2167 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
2168 struct sta_info
*sta
;
2170 struct iwl_priv
*priv
= (struct iwl_priv
*)priv_rate
;
2171 struct iwl4965_lq_sta
*lq_sta
;
2173 IWL_DEBUG_RATE_LIMIT("rate scale calculate new rate for skb\n");
2177 sta
= sta_info_get(local
, hdr
->addr1
);
2179 /* Send management frames and broadcast/multicast data using lowest
2181 fc
= le16_to_cpu(hdr
->frame_control
);
2182 if (!ieee80211_is_data(fc
) || is_multicast_ether_addr(hdr
->addr1
) ||
2183 !sta
|| !sta
->rate_ctrl_priv
) {
2184 sel
->rate
= rate_lowest(local
, sband
, sta
);
2188 lq_sta
= (struct iwl4965_lq_sta
*)sta
->rate_ctrl_priv
;
2189 i
= sta
->last_txrate_idx
;
2191 if ((priv
->iw_mode
== IEEE80211_IF_TYPE_IBSS
) &&
2192 !lq_sta
->ibss_sta_added
) {
2193 u8 sta_id
= iwl4965_hw_find_station(priv
, hdr
->addr1
);
2194 DECLARE_MAC_BUF(mac
);
2196 if (sta_id
== IWL_INVALID_STATION
) {
2197 IWL_DEBUG_RATE("LQ: ADD station %s\n",
2198 print_mac(mac
, hdr
->addr1
));
2199 sta_id
= iwl4965_add_station_flags(priv
, hdr
->addr1
,
2200 0, CMD_ASYNC
, NULL
);
2202 if ((sta_id
!= IWL_INVALID_STATION
)) {
2203 lq_sta
->lq
.sta_id
= sta_id
;
2204 lq_sta
->lq
.rs_table
[0].rate_n_flags
= 0;
2205 lq_sta
->ibss_sta_added
= 1;
2206 rs_initialize_lq(priv
, conf
, sta
);
2208 if (!lq_sta
->ibss_sta_added
)
2213 if ((i
< 0) || (i
> IWL_RATE_COUNT
)) {
2214 sel
->rate
= rate_lowest(local
, sband
, sta
);
2218 sel
->rate
= &priv
->ieee_rates
[i
];
2223 static void *rs_alloc_sta(void *priv
, gfp_t gfp
)
2225 struct iwl4965_lq_sta
*lq_sta
;
2228 IWL_DEBUG_RATE("create station rate scale window\n");
2230 lq_sta
= kzalloc(sizeof(struct iwl4965_lq_sta
), gfp
);
2234 lq_sta
->lq
.sta_id
= 0xff;
2237 for (j
= 0; j
< LQ_SIZE
; j
++)
2238 for (i
= 0; i
< IWL_RATE_COUNT
; i
++)
2239 rs_rate_scale_clear_window(&(lq_sta
->lq_info
[j
].win
[i
]));
2244 static void rs_rate_init(void *priv_rate
, void *priv_sta
,
2245 struct ieee80211_local
*local
,
2246 struct sta_info
*sta
)
2249 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
2250 struct ieee80211_supported_band
*sband
;
2251 struct iwl_priv
*priv
= (struct iwl_priv
*)priv_rate
;
2252 struct iwl4965_lq_sta
*lq_sta
= priv_sta
;
2254 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
2256 lq_sta
->flush_timer
= 0;
2257 lq_sta
->supp_rates
= sta
->supp_rates
[sband
->band
];
2258 sta
->txrate_idx
= 3;
2259 for (j
= 0; j
< LQ_SIZE
; j
++)
2260 for (i
= 0; i
< IWL_RATE_COUNT
; i
++)
2261 rs_rate_scale_clear_window(&(lq_sta
->lq_info
[j
].win
[i
]));
2263 IWL_DEBUG_RATE("rate scale global init\n");
2264 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2265 * the lowest or the highest rate.. Could consider using RSSI from
2266 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2269 lq_sta
->ibss_sta_added
= 0;
2270 if (priv
->iw_mode
== IEEE80211_IF_TYPE_AP
) {
2271 u8 sta_id
= iwl4965_hw_find_station(priv
, sta
->addr
);
2272 DECLARE_MAC_BUF(mac
);
2274 /* for IBSS the call are from tasklet */
2275 IWL_DEBUG_HT("LQ: ADD station %s\n",
2276 print_mac(mac
, sta
->addr
));
2278 if (sta_id
== IWL_INVALID_STATION
) {
2279 IWL_DEBUG_RATE("LQ: ADD station %s\n",
2280 print_mac(mac
, sta
->addr
));
2281 sta_id
= iwl4965_add_station_flags(priv
, sta
->addr
,
2282 0, CMD_ASYNC
, NULL
);
2284 if ((sta_id
!= IWL_INVALID_STATION
)) {
2285 lq_sta
->lq
.sta_id
= sta_id
;
2286 lq_sta
->lq
.rs_table
[0].rate_n_flags
= 0;
2288 /* FIXME: this is w/a remove it later */
2289 priv
->assoc_station_added
= 1;
2292 /* Find highest tx rate supported by hardware and destination station */
2293 for (i
= 0; i
< sband
->n_bitrates
; i
++)
2294 if (sta
->supp_rates
[sband
->band
] & BIT(i
))
2295 sta
->txrate_idx
= i
;
2297 sta
->last_txrate_idx
= sta
->txrate_idx
;
2298 /* WTF is with this bogus comment? A doesn't have cck rates */
2299 /* For MODE_IEEE80211A, cck rates are at end of rate table */
2300 if (local
->hw
.conf
.channel
->band
== IEEE80211_BAND_5GHZ
)
2301 sta
->last_txrate_idx
+= IWL_FIRST_OFDM_RATE
;
2304 lq_sta
->valid_antenna
= priv
->valid_antenna
;
2305 lq_sta
->antenna
= priv
->antenna
;
2306 lq_sta
->is_green
= rs_use_green(priv
, conf
);
2307 lq_sta
->active_rate
= priv
->active_rate
;
2308 lq_sta
->active_rate
&= ~(0x1000);
2309 lq_sta
->active_rate_basic
= priv
->active_rate_basic
;
2310 lq_sta
->band
= priv
->band
;
2311 #ifdef CONFIG_IWL4965_HT
2313 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2314 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2316 lq_sta
->active_siso_rate
= (priv
->current_ht_config
.supp_mcs_set
[0] << 1);
2317 lq_sta
->active_siso_rate
|=
2318 (priv
->current_ht_config
.supp_mcs_set
[0] & 0x1);
2319 lq_sta
->active_siso_rate
&= ~((u16
)0x2);
2320 lq_sta
->active_siso_rate
=
2321 lq_sta
->active_siso_rate
<< IWL_FIRST_OFDM_RATE
;
2324 lq_sta
->active_mimo_rate
= (priv
->current_ht_config
.supp_mcs_set
[1] << 1);
2325 lq_sta
->active_mimo_rate
|=
2326 (priv
->current_ht_config
.supp_mcs_set
[1] & 0x1);
2327 lq_sta
->active_mimo_rate
&= ~((u16
)0x2);
2328 lq_sta
->active_mimo_rate
=
2329 lq_sta
->active_mimo_rate
<< IWL_FIRST_OFDM_RATE
;
2330 IWL_DEBUG_HT("SISO RATE 0x%X MIMO RATE 0x%X\n",
2331 lq_sta
->active_siso_rate
,
2332 lq_sta
->active_mimo_rate
);
2333 /* as default allow aggregation for all tids */
2334 lq_sta
->tx_agg_tid_en
= IWL_AGG_ALL_TID
;
2335 #endif /*CONFIG_IWL4965_HT*/
2336 #ifdef CONFIG_MAC80211_DEBUGFS
2340 if (priv
->assoc_station_added
)
2341 priv
->lq_mngr
.lq_ready
= 1;
2343 rs_initialize_lq(priv
, conf
, sta
);
2346 static void rs_fill_link_cmd(struct iwl4965_lq_sta
*lq_sta
,
2347 struct iwl4965_rate
*tx_mcs
,
2348 struct iwl_link_quality_cmd
*lq_cmd
)
2352 int repeat_rate
= 0;
2353 u8 ant_toggle_count
= 0;
2354 u8 use_ht_possible
= 1;
2355 struct iwl4965_rate new_rate
;
2356 struct iwl4965_scale_tbl_info tbl_type
= { 0 };
2358 /* Override starting rate (index 0) if needed for debug purposes */
2359 rs_dbgfs_set_mcs(lq_sta
, tx_mcs
, index
);
2361 /* Interpret rate_n_flags */
2362 rs_get_tbl_info_from_mcs(tx_mcs
, lq_sta
->band
,
2363 &tbl_type
, &rate_idx
);
2365 /* How many times should we repeat the initial rate? */
2366 if (is_legacy(tbl_type
.lq_type
)) {
2367 ant_toggle_count
= 1;
2368 repeat_rate
= IWL_NUMBER_TRY
;
2370 repeat_rate
= IWL_HT_NUMBER_TRY
;
2372 lq_cmd
->general_params
.mimo_delimiter
=
2373 is_mimo(tbl_type
.lq_type
) ? 1 : 0;
2375 /* Fill 1st table entry (index 0) */
2376 lq_cmd
->rs_table
[index
].rate_n_flags
=
2377 cpu_to_le32(tx_mcs
->rate_n_flags
);
2378 new_rate
.rate_n_flags
= tx_mcs
->rate_n_flags
;
2380 if (is_mimo(tbl_type
.lq_type
) || (tbl_type
.antenna_type
== ANT_MAIN
))
2381 lq_cmd
->general_params
.single_stream_ant_msk
2382 = LINK_QUAL_ANT_A_MSK
;
2384 lq_cmd
->general_params
.single_stream_ant_msk
2385 = LINK_QUAL_ANT_B_MSK
;
2390 /* Fill rest of rate table */
2391 while (index
< LINK_QUAL_MAX_RETRY_NUM
) {
2392 /* Repeat initial/next rate.
2393 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2394 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
2395 while (repeat_rate
> 0 && (index
< LINK_QUAL_MAX_RETRY_NUM
)) {
2396 if (is_legacy(tbl_type
.lq_type
)) {
2397 if (ant_toggle_count
<
2398 NUM_TRY_BEFORE_ANTENNA_TOGGLE
)
2401 rs_toggle_antenna(&new_rate
, &tbl_type
);
2402 ant_toggle_count
= 1;
2406 /* Override next rate if needed for debug purposes */
2407 rs_dbgfs_set_mcs(lq_sta
, &new_rate
, index
);
2409 /* Fill next table entry */
2410 lq_cmd
->rs_table
[index
].rate_n_flags
=
2411 cpu_to_le32(new_rate
.rate_n_flags
);
2416 rs_get_tbl_info_from_mcs(&new_rate
, lq_sta
->band
, &tbl_type
,
2419 /* Indicate to uCode which entries might be MIMO.
2420 * If initial rate was MIMO, this will finally end up
2421 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
2422 if (is_mimo(tbl_type
.lq_type
))
2423 lq_cmd
->general_params
.mimo_delimiter
= index
;
2426 rs_get_lower_rate(lq_sta
, &tbl_type
, rate_idx
,
2427 use_ht_possible
, &new_rate
);
2429 /* How many times should we repeat the next rate? */
2430 if (is_legacy(tbl_type
.lq_type
)) {
2431 if (ant_toggle_count
< NUM_TRY_BEFORE_ANTENNA_TOGGLE
)
2434 rs_toggle_antenna(&new_rate
, &tbl_type
);
2435 ant_toggle_count
= 1;
2437 repeat_rate
= IWL_NUMBER_TRY
;
2439 repeat_rate
= IWL_HT_NUMBER_TRY
;
2441 /* Don't allow HT rates after next pass.
2442 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
2443 use_ht_possible
= 0;
2445 /* Override next rate if needed for debug purposes */
2446 rs_dbgfs_set_mcs(lq_sta
, &new_rate
, index
);
2448 /* Fill next table entry */
2449 lq_cmd
->rs_table
[index
].rate_n_flags
=
2450 cpu_to_le32(new_rate
.rate_n_flags
);
2456 lq_cmd
->general_params
.dual_stream_ant_msk
= 3;
2457 lq_cmd
->agg_params
.agg_dis_start_th
= 3;
2458 lq_cmd
->agg_params
.agg_time_limit
= cpu_to_le16(4000);
2461 static void *rs_alloc(struct ieee80211_local
*local
)
2463 return local
->hw
.priv
;
2465 /* rate scale requires free function to be implemented */
2466 static void rs_free(void *priv_rate
)
2471 static void rs_clear(void *priv_rate
)
2473 struct iwl_priv
*priv
= (struct iwl_priv
*) priv_rate
;
2475 IWL_DEBUG_RATE("enter\n");
2477 priv
->lq_mngr
.lq_ready
= 0;
2479 IWL_DEBUG_RATE("leave\n");
2482 static void rs_free_sta(void *priv
, void *priv_sta
)
2484 struct iwl4965_lq_sta
*lq_sta
= priv_sta
;
2486 IWL_DEBUG_RATE("enter\n");
2488 IWL_DEBUG_RATE("leave\n");
2492 #ifdef CONFIG_MAC80211_DEBUGFS
2493 static int open_file_generic(struct inode
*inode
, struct file
*file
)
2495 file
->private_data
= inode
->i_private
;
2498 static void rs_dbgfs_set_mcs(struct iwl4965_lq_sta
*lq_sta
,
2499 struct iwl4965_rate
*mcs
, int index
)
2503 if (lq_sta
->band
== IEEE80211_BAND_5GHZ
)
2508 if (lq_sta
->dbg_fixed
.rate_n_flags
) {
2510 mcs
->rate_n_flags
= lq_sta
->dbg_fixed
.rate_n_flags
;
2512 mcs
->rate_n_flags
= base_rate
;
2513 IWL_DEBUG_RATE("Fixed rate ON\n");
2517 IWL_DEBUG_RATE("Fixed rate OFF\n");
2520 static ssize_t
rs_sta_dbgfs_scale_table_write(struct file
*file
,
2521 const char __user
*user_buf
, size_t count
, loff_t
*ppos
)
2523 struct iwl4965_lq_sta
*lq_sta
= file
->private_data
;
2528 memset(buf
, 0, sizeof(buf
));
2529 buf_size
= min(count
, sizeof(buf
) - 1);
2530 if (copy_from_user(buf
, user_buf
, buf_size
))
2533 if (sscanf(buf
, "%x", &parsed_rate
) == 1)
2534 lq_sta
->dbg_fixed
.rate_n_flags
= parsed_rate
;
2536 lq_sta
->dbg_fixed
.rate_n_flags
= 0;
2538 lq_sta
->active_rate
= 0x0FFF; /* 1 - 54 MBits, includes CCK */
2539 lq_sta
->active_siso_rate
= 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2540 lq_sta
->active_mimo_rate
= 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2542 IWL_DEBUG_RATE("sta_id %d rate 0x%X\n",
2543 lq_sta
->lq
.sta_id
, lq_sta
->dbg_fixed
.rate_n_flags
);
2545 if (lq_sta
->dbg_fixed
.rate_n_flags
) {
2546 rs_fill_link_cmd(lq_sta
, &lq_sta
->dbg_fixed
, &lq_sta
->lq
);
2547 iwl_send_lq_cmd(lq_sta
->drv
, &lq_sta
->lq
, CMD_ASYNC
);
2553 static ssize_t
rs_sta_dbgfs_scale_table_read(struct file
*file
,
2554 char __user
*user_buf
, size_t count
, loff_t
*ppos
)
2560 struct iwl4965_lq_sta
*lq_sta
= file
->private_data
;
2562 desc
+= sprintf(buff
+desc
, "sta_id %d\n", lq_sta
->lq
.sta_id
);
2563 desc
+= sprintf(buff
+desc
, "failed=%d success=%d rate=0%X\n",
2564 lq_sta
->total_failed
, lq_sta
->total_success
,
2565 lq_sta
->active_rate
);
2566 desc
+= sprintf(buff
+desc
, "fixed rate 0x%X\n",
2567 lq_sta
->dbg_fixed
.rate_n_flags
);
2568 desc
+= sprintf(buff
+desc
, "general:"
2569 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
2570 lq_sta
->lq
.general_params
.flags
,
2571 lq_sta
->lq
.general_params
.mimo_delimiter
,
2572 lq_sta
->lq
.general_params
.single_stream_ant_msk
,
2573 lq_sta
->lq
.general_params
.dual_stream_ant_msk
);
2575 desc
+= sprintf(buff
+desc
, "agg:"
2576 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
2577 le16_to_cpu(lq_sta
->lq
.agg_params
.agg_time_limit
),
2578 lq_sta
->lq
.agg_params
.agg_dis_start_th
,
2579 lq_sta
->lq
.agg_params
.agg_frame_cnt_limit
);
2581 desc
+= sprintf(buff
+desc
,
2582 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
2583 lq_sta
->lq
.general_params
.start_rate_index
[0],
2584 lq_sta
->lq
.general_params
.start_rate_index
[1],
2585 lq_sta
->lq
.general_params
.start_rate_index
[2],
2586 lq_sta
->lq
.general_params
.start_rate_index
[3]);
2589 for (i
= 0; i
< LINK_QUAL_MAX_RETRY_NUM
; i
++)
2590 desc
+= sprintf(buff
+desc
, " rate[%d] 0x%X\n",
2591 i
, le32_to_cpu(lq_sta
->lq
.rs_table
[i
].rate_n_flags
));
2593 return simple_read_from_buffer(user_buf
, count
, ppos
, buff
, desc
);
2596 static const struct file_operations rs_sta_dbgfs_scale_table_ops
= {
2597 .write
= rs_sta_dbgfs_scale_table_write
,
2598 .read
= rs_sta_dbgfs_scale_table_read
,
2599 .open
= open_file_generic
,
2601 static ssize_t
rs_sta_dbgfs_stats_table_read(struct file
*file
,
2602 char __user
*user_buf
, size_t count
, loff_t
*ppos
)
2608 struct iwl4965_lq_sta
*lq_sta
= file
->private_data
;
2609 for (i
= 0; i
< LQ_SIZE
; i
++) {
2610 desc
+= sprintf(buff
+desc
, "%s type=%d SGI=%d FAT=%d DUP=%d\n"
2612 lq_sta
->active_tbl
== i
?"*":"x",
2613 lq_sta
->lq_info
[i
].lq_type
,
2614 lq_sta
->lq_info
[i
].is_SGI
,
2615 lq_sta
->lq_info
[i
].is_fat
,
2616 lq_sta
->lq_info
[i
].is_dup
,
2617 lq_sta
->lq_info
[i
].current_rate
.rate_n_flags
);
2618 for (j
= 0; j
< IWL_RATE_COUNT
; j
++) {
2619 desc
+= sprintf(buff
+desc
,
2620 "counter=%d success=%d %%=%d\n",
2621 lq_sta
->lq_info
[i
].win
[j
].counter
,
2622 lq_sta
->lq_info
[i
].win
[j
].success_counter
,
2623 lq_sta
->lq_info
[i
].win
[j
].success_ratio
);
2626 return simple_read_from_buffer(user_buf
, count
, ppos
, buff
, desc
);
2629 static const struct file_operations rs_sta_dbgfs_stats_table_ops
= {
2630 .read
= rs_sta_dbgfs_stats_table_read
,
2631 .open
= open_file_generic
,
2634 static void rs_add_debugfs(void *priv
, void *priv_sta
,
2637 struct iwl4965_lq_sta
*lq_sta
= priv_sta
;
2638 lq_sta
->rs_sta_dbgfs_scale_table_file
=
2639 debugfs_create_file("rate_scale_table", 0600, dir
,
2640 lq_sta
, &rs_sta_dbgfs_scale_table_ops
);
2641 lq_sta
->rs_sta_dbgfs_stats_table_file
=
2642 debugfs_create_file("rate_stats_table", 0600, dir
,
2643 lq_sta
, &rs_sta_dbgfs_stats_table_ops
);
2644 #ifdef CONFIG_IWL4965_HT
2645 lq_sta
->rs_sta_dbgfs_tx_agg_tid_en_file
=
2646 debugfs_create_u8("tx_agg_tid_enable", 0600, dir
,
2647 &lq_sta
->tx_agg_tid_en
);
2652 static void rs_remove_debugfs(void *priv
, void *priv_sta
)
2654 struct iwl4965_lq_sta
*lq_sta
= priv_sta
;
2655 debugfs_remove(lq_sta
->rs_sta_dbgfs_scale_table_file
);
2656 debugfs_remove(lq_sta
->rs_sta_dbgfs_stats_table_file
);
2657 #ifdef CONFIG_IWL4965_HT
2658 debugfs_remove(lq_sta
->rs_sta_dbgfs_tx_agg_tid_en_file
);
2663 static struct rate_control_ops rs_ops
= {
2666 .tx_status
= rs_tx_status
,
2667 .get_rate
= rs_get_rate
,
2668 .rate_init
= rs_rate_init
,
2672 .alloc_sta
= rs_alloc_sta
,
2673 .free_sta
= rs_free_sta
,
2674 #ifdef CONFIG_MAC80211_DEBUGFS
2675 .add_sta_debugfs
= rs_add_debugfs
,
2676 .remove_sta_debugfs
= rs_remove_debugfs
,
2680 int iwl4965_fill_rs_info(struct ieee80211_hw
*hw
, char *buf
, u8 sta_id
)
2682 struct ieee80211_local
*local
= hw_to_local(hw
);
2683 struct iwl_priv
*priv
= hw
->priv
;
2684 struct iwl4965_lq_sta
*lq_sta
;
2685 struct sta_info
*sta
;
2687 u32 samples
= 0, success
= 0, good
= 0;
2688 unsigned long now
= jiffies
;
2690 u8 lq_type
, antenna
;
2694 sta
= sta_info_get(local
, priv
->stations
[sta_id
].sta
.sta
.addr
);
2695 if (!sta
|| !sta
->rate_ctrl_priv
) {
2697 IWL_DEBUG_RATE("leave - no private rate data!\n");
2699 IWL_DEBUG_RATE("leave - no station!\n");
2701 return sprintf(buf
, "station %d not found\n", sta_id
);
2704 lq_sta
= (void *)sta
->rate_ctrl_priv
;
2706 lq_type
= lq_sta
->lq_info
[lq_sta
->active_tbl
].lq_type
;
2707 antenna
= lq_sta
->lq_info
[lq_sta
->active_tbl
].antenna_type
;
2709 if (is_legacy(lq_type
))
2710 i
= IWL_RATE_54M_INDEX
;
2712 i
= IWL_RATE_60M_INDEX
;
2716 int active
= lq_sta
->active_tbl
;
2719 sprintf(&buf
[cnt
], " %2dMbs: ", iwl4965_rates
[i
].ieee
/ 2);
2721 mask
= (1ULL << (IWL_RATE_MAX_WINDOW
- 1));
2722 for (j
= 0; j
< IWL_RATE_MAX_WINDOW
; j
++, mask
>>= 1)
2724 (lq_sta
->lq_info
[active
].win
[i
].data
& mask
)
2727 samples
+= lq_sta
->lq_info
[active
].win
[i
].counter
;
2728 good
+= lq_sta
->lq_info
[active
].win
[i
].success_counter
;
2729 success
+= lq_sta
->lq_info
[active
].win
[i
].success_counter
*
2730 iwl4965_rates
[i
].ieee
;
2732 if (lq_sta
->lq_info
[active
].win
[i
].stamp
) {
2734 jiffies_to_msecs(now
-
2735 lq_sta
->lq_info
[active
].win
[i
].stamp
);
2737 if (delta
> max_time
)
2740 cnt
+= sprintf(&buf
[cnt
], "%5dms\n", delta
);
2744 j
= iwl4965_get_prev_ieee_rate(i
);
2750 /* Display the average rate of all samples taken.
2752 * NOTE: We multiply # of samples by 2 since the IEEE measurement
2753 * added from iwl4965_rates is actually 2X the rate */
2755 cnt
+= sprintf(&buf
[cnt
],
2756 "\nAverage rate is %3d.%02dMbs over last %4dms\n"
2757 "%3d%% success (%d good packets over %d tries)\n",
2758 success
/ (2 * samples
), (success
* 5 / samples
) % 10,
2759 max_time
, good
* 100 / samples
, good
, samples
);
2761 cnt
+= sprintf(&buf
[cnt
], "\nAverage rate: 0Mbs\n");
2763 cnt
+= sprintf(&buf
[cnt
], "\nrate scale type %d antenna %d "
2764 "active_search %d rate index %d\n", lq_type
, antenna
,
2765 lq_sta
->search_better_tbl
, sta
->last_txrate_idx
);
2771 void iwl4965_rate_scale_init(struct ieee80211_hw
*hw
, s32 sta_id
)
2773 struct iwl_priv
*priv
= hw
->priv
;
2775 priv
->lq_mngr
.lq_ready
= 1;
2778 int iwl4965_rate_control_register(void)
2780 return ieee80211_rate_control_register(&rs_ops
);
2783 void iwl4965_rate_control_unregister(void)
2785 ieee80211_rate_control_unregister(&rs_ops
);