blob: e6c35e07f41b159de7e5213d3ba25310f7dbb47b [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre01f81622009-01-08 10:20:02 -08003 * Copyright(c) 2005 - 2009 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080022 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070023 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
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>
Zhu Yib481de92007-09-25 17:54:57 -070031
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/delay.h>
35
36#include <linux/workqueue.h>
37
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070038#include "iwl-dev.h"
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +080039#include "iwl-sta.h"
Tomas Winkler857485c2008-03-21 13:53:44 -070040#include "iwl-core.h"
Zhu Yib481de92007-09-25 17:54:57 -070041
Tomas Winklere227cea2008-07-18 13:53:05 +080042#define RS_NAME "iwl-agn-rs"
Zhu Yib481de92007-09-25 17:54:57 -070043
Guy Cohenaade00c2008-04-23 17:14:59 -070044#define NUM_TRY_BEFORE_ANT_TOGGLE 1
Zhu Yib481de92007-09-25 17:54:57 -070045#define IWL_NUMBER_TRY 1
46#define IWL_HT_NUMBER_TRY 3
47
Ben Cahill77626352007-11-29 11:09:44 +080048#define IWL_RATE_MAX_WINDOW 62 /* # tx in history window */
49#define IWL_RATE_MIN_FAILURE_TH 6 /* min failures to calc tpt */
50#define IWL_RATE_MIN_SUCCESS_TH 8 /* min successes to calc tpt */
51
Abbas, Mohamed7d049e52009-01-20 21:33:53 -080052/* max allowed rate miss before sync LQ cmd */
53#define IWL_MISSED_RATE_MAX 15
Ben Cahill77626352007-11-29 11:09:44 +080054/* max time to accum history 2 seconds */
Mohamed Abbas447fee72009-04-20 14:37:02 -070055#define IWL_RATE_SCALE_FLUSH_INTVL (3*HZ)
Zhu Yib481de92007-09-25 17:54:57 -070056
57static u8 rs_ht_to_legacy[] = {
58 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
59 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
60 IWL_RATE_6M_INDEX,
61 IWL_RATE_6M_INDEX, IWL_RATE_9M_INDEX,
62 IWL_RATE_12M_INDEX, IWL_RATE_18M_INDEX,
63 IWL_RATE_24M_INDEX, IWL_RATE_36M_INDEX,
64 IWL_RATE_48M_INDEX, IWL_RATE_54M_INDEX
65};
66
Guy Cohenaade00c2008-04-23 17:14:59 -070067static const u8 ant_toggle_lookup[] = {
68 /*ANT_NONE -> */ ANT_NONE,
69 /*ANT_A -> */ ANT_B,
70 /*ANT_B -> */ ANT_C,
71 /*ANT_AB -> */ ANT_BC,
72 /*ANT_C -> */ ANT_A,
73 /*ANT_AC -> */ ANT_AB,
74 /*ANT_BC -> */ ANT_AC,
75 /*ANT_ABC -> */ ANT_ABC,
76};
77
Ben Cahill77626352007-11-29 11:09:44 +080078/**
Tomas Winklere227cea2008-07-18 13:53:05 +080079 * struct iwl_rate_scale_data -- tx success history for one rate
Ben Cahill77626352007-11-29 11:09:44 +080080 */
Tomas Winklere227cea2008-07-18 13:53:05 +080081struct iwl_rate_scale_data {
Ben Cahill77626352007-11-29 11:09:44 +080082 u64 data; /* bitmap of successful frames */
83 s32 success_counter; /* number of frames successful */
84 s32 success_ratio; /* per-cent * 128 */
85 s32 counter; /* number of frames attempted */
86 s32 average_tpt; /* success ratio * expected throughput */
Zhu Yib481de92007-09-25 17:54:57 -070087 unsigned long stamp;
88};
89
Ben Cahill77626352007-11-29 11:09:44 +080090/**
Tomas Winklere227cea2008-07-18 13:53:05 +080091 * struct iwl_scale_tbl_info -- tx params and success history for all rates
Ben Cahill77626352007-11-29 11:09:44 +080092 *
Tomas Winklere227cea2008-07-18 13:53:05 +080093 * There are two of these in struct iwl_lq_sta,
Ben Cahill77626352007-11-29 11:09:44 +080094 * one for "active", and one for "search".
95 */
Tomas Winklere227cea2008-07-18 13:53:05 +080096struct iwl_scale_tbl_info {
Guy Cohenfde0db32008-04-21 15:42:01 -070097 enum iwl_table_type lq_type;
98 u8 ant_type;
Ben Cahill77626352007-11-29 11:09:44 +080099 u8 is_SGI; /* 1 = short guard interval */
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700100 u8 is_ht40; /* 1 = 40 MHz channel width */
Ben Cahill77626352007-11-29 11:09:44 +0800101 u8 is_dup; /* 1 = duplicated data streams */
102 u8 action; /* change modulation; IWL_[LEGACY/SISO/MIMO]_SWITCH_* */
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700103 u8 max_search; /* maximun number of tables we can search */
Ben Cahill77626352007-11-29 11:09:44 +0800104 s32 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
Guy Cohen39e88502008-04-23 17:14:57 -0700105 u32 current_rate; /* rate_n_flags, uCode API format */
Tomas Winklere227cea2008-07-18 13:53:05 +0800106 struct iwl_rate_scale_data win[IWL_RATE_COUNT]; /* rate histories */
Zhu Yib481de92007-09-25 17:54:57 -0700107};
108
Tomas Winklere227cea2008-07-18 13:53:05 +0800109struct iwl_traffic_load {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200110 unsigned long time_stamp; /* age of the oldest statistics */
111 u32 packet_count[TID_QUEUE_MAX_SIZE]; /* packet count in this time
112 * slice */
113 u32 total; /* total num of packets during the
114 * last TID_MAX_TIME_DIFF */
115 u8 queue_count; /* number of queues that has
116 * been used since the last cleanup */
117 u8 head; /* start of the circular buffer */
118};
119
Ben Cahill77626352007-11-29 11:09:44 +0800120/**
Tomas Winklere227cea2008-07-18 13:53:05 +0800121 * struct iwl_lq_sta -- driver's rate scaling private structure
Ben Cahill77626352007-11-29 11:09:44 +0800122 *
123 * Pointer to this gets passed back and forth between driver and mac80211.
124 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800125struct iwl_lq_sta {
Ben Cahill77626352007-11-29 11:09:44 +0800126 u8 active_tbl; /* index of active table, range 0-1 */
127 u8 enable_counter; /* indicates HT mode */
128 u8 stay_in_tbl; /* 1: disallow, 0: allow search for new mode */
129 u8 search_better_tbl; /* 1: currently trying alternate mode */
Zhu Yib481de92007-09-25 17:54:57 -0700130 s32 last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +0800131
132 /* The following determine when to search for a new mode */
Zhu Yib481de92007-09-25 17:54:57 -0700133 u32 table_count_limit;
Ben Cahill77626352007-11-29 11:09:44 +0800134 u32 max_failure_limit; /* # failed frames before new search */
135 u32 max_success_limit; /* # successful frames before new search */
Zhu Yib481de92007-09-25 17:54:57 -0700136 u32 table_count;
Ben Cahill77626352007-11-29 11:09:44 +0800137 u32 total_failed; /* total failed frames, any/all rates */
138 u32 total_success; /* total successful frames, any/all rates */
Mohamed Abbas447fee72009-04-20 14:37:02 -0700139 u64 flush_timer; /* time staying in mode before new search */
Ben Cahill77626352007-11-29 11:09:44 +0800140
141 u8 action_counter; /* # mode-switch actions tried */
Zhu Yib481de92007-09-25 17:54:57 -0700142 u8 is_green;
143 u8 is_dup;
Johannes Berg8318d782008-01-24 19:38:38 +0100144 enum ieee80211_band band;
Zhu Yib481de92007-09-25 17:54:57 -0700145 u8 ibss_sta_added;
Ben Cahill77626352007-11-29 11:09:44 +0800146
147 /* The following are bitmaps of rates; IWL_RATE_6M_MASK, etc. */
Zhu Yi02dede02007-09-27 11:27:40 +0800148 u32 supp_rates;
Guy Cohen39e88502008-04-23 17:14:57 -0700149 u16 active_legacy_rate;
Zhu Yib481de92007-09-25 17:54:57 -0700150 u16 active_siso_rate;
Guy Cohenfde0db32008-04-21 15:42:01 -0700151 u16 active_mimo2_rate;
152 u16 active_mimo3_rate;
Zhu Yib481de92007-09-25 17:54:57 -0700153 u16 active_rate_basic;
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -0800154 s8 max_rate_idx; /* Max rate set by user */
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800155 u8 missed_rate_counter;
Ben Cahill77626352007-11-29 11:09:44 +0800156
Tomas Winkler66c73db2008-04-15 16:01:40 -0700157 struct iwl_link_quality_cmd lq;
Tomas Winklere227cea2008-07-18 13:53:05 +0800158 struct iwl_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
159 struct iwl_traffic_load load[TID_MAX_LOAD_COUNT];
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200160 u8 tx_agg_tid_en;
Zhu Yi5ae212c2007-09-27 11:27:38 +0800161#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi98d7e092007-09-27 11:27:42 +0800162 struct dentry *rs_sta_dbgfs_scale_table_file;
Zhu Yi0209dc12007-09-27 11:27:43 +0800163 struct dentry *rs_sta_dbgfs_stats_table_file;
Wey-Yi Guy38167452009-05-08 13:44:43 -0700164 struct dentry *rs_sta_dbgfs_rate_scale_data_file;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200165 struct dentry *rs_sta_dbgfs_tx_agg_tid_en_file;
Guy Cohen39e88502008-04-23 17:14:57 -0700166 u32 dbg_fixed_rate;
Zhu Yi5ae212c2007-09-27 11:27:38 +0800167#endif
Zhu Yi62430652008-05-05 10:22:46 +0800168 struct iwl_priv *drv;
Johannes Bergb7e35002008-09-11 02:22:58 +0200169
170 /* used to be in sta_info */
171 int last_txrate_idx;
Wey-Yi Guy12b96812009-04-08 11:39:27 -0700172 /* last tx rate_n_flags */
173 u32 last_rate_n_flags;
Daniel C Halperine3949d62009-09-17 10:43:50 -0700174 /* packets destined for this STA are aggregated */
175 u8 is_agg;
Zhu Yib481de92007-09-25 17:54:57 -0700176};
177
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700178static void rs_rate_scale_perform(struct iwl_priv *priv,
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200179 struct sk_buff *skb,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200180 struct ieee80211_sta *sta,
181 struct iwl_lq_sta *lq_sta);
Wey-Yi Guy46f93812009-07-24 11:13:03 -0700182static void rs_fill_link_cmd(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +0800183 struct iwl_lq_sta *lq_sta, u32 rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700184
185
Zhu Yi98d7e092007-09-27 11:27:42 +0800186#ifdef CONFIG_MAC80211_DEBUGFS
Tomas Winklere227cea2008-07-18 13:53:05 +0800187static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
188 u32 *rate_n_flags, int index);
Zhu Yi98d7e092007-09-27 11:27:42 +0800189#else
Tomas Winklere227cea2008-07-18 13:53:05 +0800190static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
191 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +0800192{}
193#endif
Ben Cahill77626352007-11-29 11:09:44 +0800194
Daniel C Halperine3949d62009-09-17 10:43:50 -0700195/**
196 * The following tables contain the expected throughput metrics for all rates
197 *
198 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
199 *
200 * where invalid entries are zeros.
201 *
202 * CCK rates are only valid in legacy table and will only be used in G
203 * (2.4 GHz) band.
Ben Cahill77626352007-11-29 11:09:44 +0800204 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -0700205
Daniel C Halperine3949d62009-09-17 10:43:50 -0700206static s32 expected_tpt_legacy[IWL_RATE_COUNT] = {
207 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0
Zhu Yib481de92007-09-25 17:54:57 -0700208};
209
Daniel C Halperine3949d62009-09-17 10:43:50 -0700210static s32 expected_tpt_siso20MHz[4][IWL_RATE_COUNT] = {
211 {0, 0, 0, 0, 42, 0, 76, 102, 124, 158, 183, 193, 202}, /* Norm */
212 {0, 0, 0, 0, 46, 0, 82, 110, 132, 167, 192, 202, 210}, /* SGI */
213 {0, 0, 0, 0, 48, 0, 93, 135, 176, 251, 319, 351, 381}, /* AGG */
214 {0, 0, 0, 0, 53, 0, 102, 149, 193, 275, 348, 381, 413}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700215};
216
Daniel C Halperine3949d62009-09-17 10:43:50 -0700217static s32 expected_tpt_siso40MHz[4][IWL_RATE_COUNT] = {
218 {0, 0, 0, 0, 77, 0, 127, 160, 184, 220, 242, 250, 257}, /* Norm */
219 {0, 0, 0, 0, 83, 0, 135, 169, 193, 229, 250, 257, 264}, /* SGI */
220 {0, 0, 0, 0, 96, 0, 182, 259, 328, 451, 553, 598, 640}, /* AGG */
221 {0, 0, 0, 0, 106, 0, 199, 282, 357, 487, 593, 640, 683}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700222};
223
Daniel C Halperine3949d62009-09-17 10:43:50 -0700224static s32 expected_tpt_mimo2_20MHz[4][IWL_RATE_COUNT] = {
225 {0, 0, 0, 0, 74, 0, 123, 155, 179, 213, 235, 243, 250}, /* Norm */
226 {0, 0, 0, 0, 81, 0, 131, 164, 187, 221, 242, 250, 256}, /* SGI */
227 {0, 0, 0, 0, 92, 0, 175, 250, 317, 436, 534, 578, 619}, /* AGG */
228 {0, 0, 0, 0, 102, 0, 192, 273, 344, 470, 573, 619, 660}, /* AGG+SGI*/
Zhu Yib481de92007-09-25 17:54:57 -0700229};
230
Daniel C Halperine3949d62009-09-17 10:43:50 -0700231static s32 expected_tpt_mimo2_40MHz[4][IWL_RATE_COUNT] = {
232 {0, 0, 0, 0, 123, 0, 182, 214, 235, 264, 279, 285, 289}, /* Norm */
233 {0, 0, 0, 0, 131, 0, 191, 222, 242, 270, 284, 289, 293}, /* SGI */
234 {0, 0, 0, 0, 180, 0, 327, 446, 545, 708, 828, 878, 922}, /* AGG */
235 {0, 0, 0, 0, 197, 0, 355, 481, 584, 752, 872, 922, 966}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700236};
237
Daniel C Halperine3949d62009-09-17 10:43:50 -0700238static s32 expected_tpt_mimo3_20MHz[4][IWL_RATE_COUNT] = {
239 {0, 0, 0, 0, 99, 0, 153, 186, 208, 239, 256, 263, 268}, /* Norm */
240 {0, 0, 0, 0, 106, 0, 162, 194, 215, 246, 262, 268, 273}, /* SGI */
241 {0, 0, 0, 0, 134, 0, 249, 346, 431, 574, 685, 732, 775}, /* AGG */
242 {0, 0, 0, 0, 148, 0, 272, 376, 465, 614, 727, 775, 818}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700243};
244
Daniel C Halperine3949d62009-09-17 10:43:50 -0700245static s32 expected_tpt_mimo3_40MHz[4][IWL_RATE_COUNT] = {
246 {0, 0, 0, 0, 152, 0, 211, 239, 255, 279, 290, 294, 297}, /* Norm */
247 {0, 0, 0, 0, 160, 0, 219, 245, 261, 284, 294, 297, 300}, /* SGI */
248 {0, 0, 0, 0, 254, 0, 443, 584, 695, 868, 984, 1030, 1070}, /* AGG */
249 {0, 0, 0, 0, 277, 0, 478, 624, 737, 911, 1026, 1070, 1109}, /* AGG+SGI */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -0700250};
251
Wey-Yi Guy12b96812009-04-08 11:39:27 -0700252/* mbps, mcs */
253const static struct iwl_rate_mcs_info iwl_rate_mcs[IWL_RATE_COUNT] = {
Daniel C Halperine3949d62009-09-17 10:43:50 -0700254 { "1", "BPSK DSSS"},
255 { "2", "QPSK DSSS"},
256 {"5.5", "BPSK CCK"},
257 { "11", "QPSK CCK"},
258 { "6", "BPSK 1/2"},
259 { "9", "BPSK 1/2"},
260 { "12", "QPSK 1/2"},
261 { "18", "QPSK 3/4"},
262 { "24", "16QAM 1/2"},
263 { "36", "16QAM 3/4"},
264 { "48", "64QAM 2/3"},
265 { "54", "64QAM 3/4"},
266 { "60", "64QAM 5/6"},
Wey-Yi Guy12b96812009-04-08 11:39:27 -0700267};
268
Wey-Yi Guya9c146b2009-05-22 11:01:48 -0700269#define MCS_INDEX_PER_STREAM (8)
270
Guy Cohen39e88502008-04-23 17:14:57 -0700271static inline u8 rs_extract_rate(u32 rate_n_flags)
Zhu Yib481de92007-09-25 17:54:57 -0700272{
273 return (u8)(rate_n_flags & 0xFF);
274}
275
Tomas Winklere227cea2008-07-18 13:53:05 +0800276static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window)
Zhu Yib481de92007-09-25 17:54:57 -0700277{
278 window->data = 0;
279 window->success_counter = 0;
280 window->success_ratio = IWL_INVALID_VALUE;
281 window->counter = 0;
282 window->average_tpt = IWL_INVALID_VALUE;
283 window->stamp = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700284}
285
Guy Cohenaade00c2008-04-23 17:14:59 -0700286static inline u8 rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
287{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300288 return (ant_type & valid_antenna) == ant_type;
Guy Cohenaade00c2008-04-23 17:14:59 -0700289}
290
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200291/*
292 * removes the old data from the statistics. All data that is older than
293 * TID_MAX_TIME_DIFF, will be deleted.
294 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800295static void rs_tl_rm_old_stats(struct iwl_traffic_load *tl, u32 curr_time)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200296{
297 /* The oldest age we want to keep */
298 u32 oldest_time = curr_time - TID_MAX_TIME_DIFF;
299
300 while (tl->queue_count &&
301 (tl->time_stamp < oldest_time)) {
302 tl->total -= tl->packet_count[tl->head];
303 tl->packet_count[tl->head] = 0;
304 tl->time_stamp += TID_QUEUE_CELL_SPACING;
305 tl->queue_count--;
306 tl->head++;
307 if (tl->head >= TID_QUEUE_MAX_SIZE)
308 tl->head = 0;
309 }
310}
311
312/*
313 * increment traffic load value for tid and also remove
314 * any old values if passed the certain time period
315 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800316static u8 rs_tl_add_packet(struct iwl_lq_sta *lq_data,
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800317 struct ieee80211_hdr *hdr)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200318{
319 u32 curr_time = jiffies_to_msecs(jiffies);
320 u32 time_diff;
321 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800322 struct iwl_traffic_load *tl = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800323 u8 tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200324
Tomas Winkler417f1142008-11-12 13:14:06 -0800325 if (ieee80211_is_data_qos(hdr->frame_control)) {
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700326 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +0800327 tid = qc[0] & 0xf;
328 } else
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800329 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200330
Reinette Chatree6a6cf42009-08-13 13:30:50 -0700331 if (unlikely(tid >= TID_MAX_LOAD_COUNT))
332 return MAX_TID_COUNT;
333
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200334 tl = &lq_data->load[tid];
335
336 curr_time -= curr_time % TID_ROUND_VALUE;
337
338 /* Happens only for the first packet. Initialize the data */
339 if (!(tl->queue_count)) {
340 tl->total = 1;
341 tl->time_stamp = curr_time;
342 tl->queue_count = 1;
343 tl->head = 0;
344 tl->packet_count[0] = 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800345 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200346 }
347
348 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
349 index = time_diff / TID_QUEUE_CELL_SPACING;
350
351 /* The history is too long: remove data that is older than */
352 /* TID_MAX_TIME_DIFF */
353 if (index >= TID_QUEUE_MAX_SIZE)
354 rs_tl_rm_old_stats(tl, curr_time);
355
356 index = (tl->head + index) % TID_QUEUE_MAX_SIZE;
357 tl->packet_count[index] = tl->packet_count[index] + 1;
358 tl->total = tl->total + 1;
359
360 if ((index + 1) > tl->queue_count)
361 tl->queue_count = index + 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800362
363 return tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200364}
365
366/*
367 get the traffic load value for tid
368*/
Tomas Winklere227cea2008-07-18 13:53:05 +0800369static u32 rs_tl_get_load(struct iwl_lq_sta *lq_data, u8 tid)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200370{
371 u32 curr_time = jiffies_to_msecs(jiffies);
372 u32 time_diff;
373 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800374 struct iwl_traffic_load *tl = NULL;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200375
376 if (tid >= TID_MAX_LOAD_COUNT)
377 return 0;
378
379 tl = &(lq_data->load[tid]);
380
381 curr_time -= curr_time % TID_ROUND_VALUE;
382
383 if (!(tl->queue_count))
384 return 0;
385
386 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
387 index = time_diff / TID_QUEUE_CELL_SPACING;
388
389 /* The history is too long: remove data that is older than */
390 /* TID_MAX_TIME_DIFF */
391 if (index >= TID_QUEUE_MAX_SIZE)
392 rs_tl_rm_old_stats(tl, curr_time);
393
394 return tl->total;
395}
396
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700397static void rs_tl_turn_on_agg_for_tid(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +0800398 struct iwl_lq_sta *lq_data, u8 tid,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200399 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200400{
Johannes Bergff550cb2008-09-11 03:17:05 +0200401 if (rs_tl_get_load(lq_data, tid) > IWL_AGG_LOAD_THRESHOLD) {
Tomas Winklere1623442009-01-27 14:27:56 -0800402 IWL_DEBUG_HT(priv, "Starting Tx agg: STA: %pM tid: %d\n",
Johannes Berge1749612008-10-27 15:59:26 -0700403 sta->addr, tid);
Johannes Berg4b7679a2008-09-18 18:14:18 +0200404 ieee80211_start_tx_ba_session(priv->hw, sta->addr, tid);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200405 }
406}
407
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700408static void rs_tl_turn_on_agg(struct iwl_priv *priv, u8 tid,
Tomas Winklere227cea2008-07-18 13:53:05 +0800409 struct iwl_lq_sta *lq_data,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200410 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200411{
412 if ((tid < TID_MAX_LOAD_COUNT))
413 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
414 else if (tid == IWL_AGG_ALL_TID)
415 for (tid = 0; tid < TID_MAX_LOAD_COUNT; tid++)
416 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700417 if (priv->cfg->use_rts_for_ht) {
418 /*
419 * switch to RTS/CTS if it is the prefer protection method
420 * for HT traffic
421 */
422 IWL_DEBUG_HT(priv, "use RTS/CTS protection for HT\n");
423 priv->staging_rxon.flags &= ~RXON_FLG_SELF_CTS_EN;
424 iwlcore_commit_rxon(priv);
425 }
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200426}
427
Guy Cohen39e88502008-04-23 17:14:57 -0700428static inline int get_num_of_ant_from_rate(u32 rate_n_flags)
Guy Cohenfde0db32008-04-21 15:42:01 -0700429{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300430 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
431 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
432 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
Guy Cohenfde0db32008-04-21 15:42:01 -0700433}
434
Ben Cahill77626352007-11-29 11:09:44 +0800435/**
436 * rs_collect_tx_data - Update the success/failure sliding window
437 *
438 * We keep a sliding window of the last 62 packets transmitted
439 * at this rate. window->data contains the bitmask of successful
440 * packets.
441 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800442static int rs_collect_tx_data(struct iwl_rate_scale_data *windows,
Daniel C Halperine3949d62009-09-17 10:43:50 -0700443 int scale_index, s32 tpt, int attempts,
Ron Rindjunsky99556432008-01-28 14:07:25 +0200444 int successes)
Zhu Yib481de92007-09-25 17:54:57 -0700445{
Tomas Winklere227cea2008-07-18 13:53:05 +0800446 struct iwl_rate_scale_data *window = NULL;
Guy Cohen39e88502008-04-23 17:14:57 -0700447 static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1));
Zhu Yib481de92007-09-25 17:54:57 -0700448 s32 fail_count;
449
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800450 if (scale_index < 0 || scale_index >= IWL_RATE_COUNT)
451 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700452
Daniel C Halperine3949d62009-09-17 10:43:50 -0700453 /* Select window for current tx bit rate */
Zhu Yib481de92007-09-25 17:54:57 -0700454 window = &(windows[scale_index]);
455
Ben Cahill77626352007-11-29 11:09:44 +0800456 /*
457 * Keep track of only the latest 62 tx frame attempts in this rate's
458 * history window; anything older isn't really relevant any more.
459 * If we have filled up the sliding window, drop the oldest attempt;
460 * if the oldest attempt (highest bit in bitmap) shows "success",
461 * subtract "1" from the success counter (this is the main reason
462 * we keep these bitmaps!).
463 */
Daniel C Halperine3949d62009-09-17 10:43:50 -0700464 while (attempts > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700465 if (window->counter >= IWL_RATE_MAX_WINDOW) {
466
467 /* remove earliest */
468 window->counter = IWL_RATE_MAX_WINDOW - 1;
469
Ron Rindjunsky99556432008-01-28 14:07:25 +0200470 if (window->data & mask) {
471 window->data &= ~mask;
Guy Cohen39e88502008-04-23 17:14:57 -0700472 window->success_counter--;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200473 }
Zhu Yib481de92007-09-25 17:54:57 -0700474 }
Zhu Yib481de92007-09-25 17:54:57 -0700475
Ron Rindjunsky99556432008-01-28 14:07:25 +0200476 /* Increment frames-attempted counter */
477 window->counter++;
Ben Cahill77626352007-11-29 11:09:44 +0800478
Daniel C Halperine3949d62009-09-17 10:43:50 -0700479 /* Shift bitmap by one frame to throw away oldest history */
Guy Cohen90d77952008-09-09 10:54:53 +0800480 window->data <<= 1;
Daniel C Halperine3949d62009-09-17 10:43:50 -0700481
482 /* Mark the most recent #successes attempts as successful */
Ron Rindjunsky99556432008-01-28 14:07:25 +0200483 if (successes > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700484 window->success_counter++;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200485 window->data |= 0x1;
486 successes--;
487 }
488
Daniel C Halperine3949d62009-09-17 10:43:50 -0700489 attempts--;
Zhu Yib481de92007-09-25 17:54:57 -0700490 }
491
Ben Cahill77626352007-11-29 11:09:44 +0800492 /* Calculate current success ratio, avoid divide-by-0! */
Zhu Yib481de92007-09-25 17:54:57 -0700493 if (window->counter > 0)
494 window->success_ratio = 128 * (100 * window->success_counter)
495 / window->counter;
496 else
497 window->success_ratio = IWL_INVALID_VALUE;
498
499 fail_count = window->counter - window->success_counter;
500
Ben Cahill77626352007-11-29 11:09:44 +0800501 /* Calculate average throughput, if we have enough history. */
Zhu Yib481de92007-09-25 17:54:57 -0700502 if ((fail_count >= IWL_RATE_MIN_FAILURE_TH) ||
503 (window->success_counter >= IWL_RATE_MIN_SUCCESS_TH))
504 window->average_tpt = (window->success_ratio * tpt + 64) / 128;
505 else
506 window->average_tpt = IWL_INVALID_VALUE;
507
Ben Cahill77626352007-11-29 11:09:44 +0800508 /* Tag this window as having been updated */
Zhu Yib481de92007-09-25 17:54:57 -0700509 window->stamp = jiffies;
510
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800511 return 0;
Zhu Yib481de92007-09-25 17:54:57 -0700512}
513
Ben Cahill77626352007-11-29 11:09:44 +0800514/*
515 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
516 */
Guy Cohen39e88502008-04-23 17:14:57 -0700517/* FIXME:RS:remove this function and put the flags statically in the table */
Tomas Winkler978785a2008-12-19 10:37:31 +0800518static u32 rate_n_flags_from_tbl(struct iwl_priv *priv,
519 struct iwl_scale_tbl_info *tbl,
520 int index, u8 use_green)
Zhu Yib481de92007-09-25 17:54:57 -0700521{
Guy Cohen39e88502008-04-23 17:14:57 -0700522 u32 rate_n_flags = 0;
523
Zhu Yib481de92007-09-25 17:54:57 -0700524 if (is_legacy(tbl->lq_type)) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800525 rate_n_flags = iwl_rates[index].plcp;
Zhu Yib481de92007-09-25 17:54:57 -0700526 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -0700527 rate_n_flags |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700528
Guy Cohenfde0db32008-04-21 15:42:01 -0700529 } else if (is_Ht(tbl->lq_type)) {
530 if (index > IWL_LAST_OFDM_RATE) {
Tomas Winkler978785a2008-12-19 10:37:31 +0800531 IWL_ERR(priv, "Invalid HT rate index %d\n", index);
Zhu Yib481de92007-09-25 17:54:57 -0700532 index = IWL_LAST_OFDM_RATE;
Guy Cohenfde0db32008-04-21 15:42:01 -0700533 }
Guy Cohen39e88502008-04-23 17:14:57 -0700534 rate_n_flags = RATE_MCS_HT_MSK;
Guy Cohenfde0db32008-04-21 15:42:01 -0700535
536 if (is_siso(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800537 rate_n_flags |= iwl_rates[index].plcp_siso;
Guy Cohenfde0db32008-04-21 15:42:01 -0700538 else if (is_mimo2(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800539 rate_n_flags |= iwl_rates[index].plcp_mimo2;
Guy Cohenfde0db32008-04-21 15:42:01 -0700540 else
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800541 rate_n_flags |= iwl_rates[index].plcp_mimo3;
Zhu Yib481de92007-09-25 17:54:57 -0700542 } else {
Tomas Winkler978785a2008-12-19 10:37:31 +0800543 IWL_ERR(priv, "Invalid tbl->lq_type %d\n", tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700544 }
545
Guy Cohen39e88502008-04-23 17:14:57 -0700546 rate_n_flags |= ((tbl->ant_type << RATE_MCS_ANT_POS) &
Guy Cohenfde0db32008-04-21 15:42:01 -0700547 RATE_MCS_ANT_ABC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700548
Guy Cohen39e88502008-04-23 17:14:57 -0700549 if (is_Ht(tbl->lq_type)) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700550 if (tbl->is_ht40) {
Guy Cohen39e88502008-04-23 17:14:57 -0700551 if (tbl->is_dup)
552 rate_n_flags |= RATE_MCS_DUP_MSK;
553 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700554 rate_n_flags |= RATE_MCS_HT40_MSK;
Guy Cohen39e88502008-04-23 17:14:57 -0700555 }
556 if (tbl->is_SGI)
557 rate_n_flags |= RATE_MCS_SGI_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700558
Guy Cohen39e88502008-04-23 17:14:57 -0700559 if (use_green) {
560 rate_n_flags |= RATE_MCS_GF_MSK;
561 if (is_siso(tbl->lq_type) && tbl->is_SGI) {
562 rate_n_flags &= ~RATE_MCS_SGI_MSK;
Tomas Winkler978785a2008-12-19 10:37:31 +0800563 IWL_ERR(priv, "GF was set with SGI:SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -0700564 }
565 }
Zhu Yib481de92007-09-25 17:54:57 -0700566 }
Guy Cohen39e88502008-04-23 17:14:57 -0700567 return rate_n_flags;
Zhu Yib481de92007-09-25 17:54:57 -0700568}
569
Ben Cahill77626352007-11-29 11:09:44 +0800570/*
571 * Interpret uCode API's rate_n_flags format,
572 * fill "search" or "active" tx mode table.
573 */
Guy Cohen39e88502008-04-23 17:14:57 -0700574static int rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
Johannes Berg8318d782008-01-24 19:38:38 +0100575 enum ieee80211_band band,
Tomas Winklere227cea2008-07-18 13:53:05 +0800576 struct iwl_scale_tbl_info *tbl,
Zhu Yib481de92007-09-25 17:54:57 -0700577 int *rate_idx)
578{
Guy Cohen39e88502008-04-23 17:14:57 -0700579 u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
580 u8 num_of_ant = get_num_of_ant_from_rate(rate_n_flags);
581 u8 mcs;
Zhu Yib481de92007-09-25 17:54:57 -0700582
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800583 *rate_idx = iwl_hwrate_to_plcp_idx(rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700584
Guy Cohenfde0db32008-04-21 15:42:01 -0700585 if (*rate_idx == IWL_RATE_INVALID) {
Zhu Yib481de92007-09-25 17:54:57 -0700586 *rate_idx = -1;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800587 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700588 }
Ben Cahill77626352007-11-29 11:09:44 +0800589 tbl->is_SGI = 0; /* default legacy setup */
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700590 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700591 tbl->is_dup = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -0700592 tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
593 tbl->lq_type = LQ_NONE;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700594 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700595
Ben Cahill77626352007-11-29 11:09:44 +0800596 /* legacy rate format */
Guy Cohen39e88502008-04-23 17:14:57 -0700597 if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700598 if (num_of_ant == 1) {
Johannes Berg8318d782008-01-24 19:38:38 +0100599 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700600 tbl->lq_type = LQ_A;
601 else
602 tbl->lq_type = LQ_G;
Zhu Yib481de92007-09-25 17:54:57 -0700603 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700604 /* HT rate format */
Zhu Yib481de92007-09-25 17:54:57 -0700605 } else {
Guy Cohen39e88502008-04-23 17:14:57 -0700606 if (rate_n_flags & RATE_MCS_SGI_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700607 tbl->is_SGI = 1;
608
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700609 if ((rate_n_flags & RATE_MCS_HT40_MSK) ||
Guy Cohen39e88502008-04-23 17:14:57 -0700610 (rate_n_flags & RATE_MCS_DUP_MSK))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700611 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -0700612
Guy Cohen39e88502008-04-23 17:14:57 -0700613 if (rate_n_flags & RATE_MCS_DUP_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700614 tbl->is_dup = 1;
Guy Cohenfde0db32008-04-21 15:42:01 -0700615
Guy Cohen39e88502008-04-23 17:14:57 -0700616 mcs = rs_extract_rate(rate_n_flags);
Guy Cohenfde0db32008-04-21 15:42:01 -0700617
Guy Cohen39e88502008-04-23 17:14:57 -0700618 /* SISO */
619 if (mcs <= IWL_RATE_SISO_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700620 if (num_of_ant == 1)
621 tbl->lq_type = LQ_SISO; /*else NONE*/
622 /* MIMO2 */
Guy Cohen39e88502008-04-23 17:14:57 -0700623 } else if (mcs <= IWL_RATE_MIMO2_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700624 if (num_of_ant == 2)
625 tbl->lq_type = LQ_MIMO2;
626 /* MIMO3 */
627 } else {
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700628 if (num_of_ant == 3) {
629 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Guy Cohenfde0db32008-04-21 15:42:01 -0700630 tbl->lq_type = LQ_MIMO3;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700631 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700632 }
Zhu Yib481de92007-09-25 17:54:57 -0700633 }
634 return 0;
635}
Guy Cohenaade00c2008-04-23 17:14:59 -0700636
637/* switch to another antenna/antennas and return 1 */
638/* if no other valid antenna found, return 0 */
639static int rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
Tomas Winklere227cea2008-07-18 13:53:05 +0800640 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700641{
Guy Cohenaade00c2008-04-23 17:14:59 -0700642 u8 new_ant_type;
643
644 if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
645 return 0;
646
647 if (!rs_is_valid_ant(valid_ant, tbl->ant_type))
648 return 0;
649
650 new_ant_type = ant_toggle_lookup[tbl->ant_type];
651
652 while ((new_ant_type != tbl->ant_type) &&
653 !rs_is_valid_ant(valid_ant, new_ant_type))
654 new_ant_type = ant_toggle_lookup[new_ant_type];
655
656 if (new_ant_type == tbl->ant_type)
657 return 0;
658
659 tbl->ant_type = new_ant_type;
660 *rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
661 *rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
662 return 1;
Zhu Yib481de92007-09-25 17:54:57 -0700663}
664
Daniel C Halperinb2617932009-08-13 13:30:59 -0700665/**
666 * Green-field mode is valid if the station supports it and
667 * there are no non-GF stations present in the BSS.
668 */
669static inline u8 rs_use_green(struct ieee80211_sta *sta,
Johannes Bergfad95bf2009-09-11 10:38:15 -0700670 struct iwl_ht_config *ht_conf)
Zhu Yib481de92007-09-25 17:54:57 -0700671{
Daniel C Halperinb2617932009-08-13 13:30:59 -0700672 return (sta->ht_cap.cap & IEEE80211_HT_CAP_GRN_FLD) &&
673 !(ht_conf->non_GF_STA_present);
Guy Cohenf935a6d2008-04-23 17:15:02 -0700674}
Zhu Yib481de92007-09-25 17:54:57 -0700675
676/**
677 * rs_get_supported_rates - get the available rates
678 *
679 * if management frame or broadcast frame only return
680 * basic available rates.
681 *
682 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800683static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
684 struct ieee80211_hdr *hdr,
685 enum iwl_table_type rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700686{
Zhu Yib481de92007-09-25 17:54:57 -0700687 if (hdr && is_multicast_ether_addr(hdr->addr1) &&
Guy Coheneecd6e52008-04-23 17:14:58 -0700688 lq_sta->active_rate_basic)
689 return lq_sta->active_rate_basic;
690
691 if (is_legacy(rate_type)) {
692 return lq_sta->active_legacy_rate;
693 } else {
694 if (is_siso(rate_type))
695 return lq_sta->active_siso_rate;
696 else if (is_mimo2(rate_type))
697 return lq_sta->active_mimo2_rate;
698 else
699 return lq_sta->active_mimo3_rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800700 }
Zhu Yib481de92007-09-25 17:54:57 -0700701}
702
Ester Kummerbf403db2008-05-05 10:22:40 +0800703static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
704 int rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700705{
706 u8 high = IWL_RATE_INVALID;
707 u8 low = IWL_RATE_INVALID;
708
Ian Schram01ebd062007-10-25 17:15:22 +0800709 /* 802.11A or ht walks to the next literal adjacent rate in
Zhu Yib481de92007-09-25 17:54:57 -0700710 * the rate table */
711 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
712 int i;
713 u32 mask;
714
715 /* Find the previous rate that is in the rate mask */
716 i = index - 1;
717 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
718 if (rate_mask & mask) {
719 low = i;
720 break;
721 }
722 }
723
724 /* Find the next rate that is in the rate mask */
725 i = index + 1;
726 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
727 if (rate_mask & mask) {
728 high = i;
729 break;
730 }
731 }
732
733 return (high << 8) | low;
734 }
735
736 low = index;
737 while (low != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800738 low = iwl_rates[low].prev_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700739 if (low == IWL_RATE_INVALID)
740 break;
741 if (rate_mask & (1 << low))
742 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800743 IWL_DEBUG_RATE(priv, "Skipping masked lower rate: %d\n", low);
Zhu Yib481de92007-09-25 17:54:57 -0700744 }
745
746 high = index;
747 while (high != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800748 high = iwl_rates[high].next_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700749 if (high == IWL_RATE_INVALID)
750 break;
751 if (rate_mask & (1 << high))
752 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800753 IWL_DEBUG_RATE(priv, "Skipping masked higher rate: %d\n", high);
Zhu Yib481de92007-09-25 17:54:57 -0700754 }
755
756 return (high << 8) | low;
757}
758
Tomas Winklere227cea2008-07-18 13:53:05 +0800759static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta,
760 struct iwl_scale_tbl_info *tbl,
761 u8 scale_index, u8 ht_possible)
Zhu Yib481de92007-09-25 17:54:57 -0700762{
Zhu Yib481de92007-09-25 17:54:57 -0700763 s32 low;
764 u16 rate_mask;
765 u16 high_low;
766 u8 switch_to_legacy = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800767 u8 is_green = lq_sta->is_green;
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700768 struct iwl_priv *priv = lq_sta->drv;
Zhu Yib481de92007-09-25 17:54:57 -0700769
770 /* check if we need to switch from HT to legacy rates.
771 * assumption is that mandatory rates (1Mbps or 6Mbps)
772 * are always supported (spec demand) */
773 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_index)) {
774 switch_to_legacy = 1;
775 scale_index = rs_ht_to_legacy[scale_index];
Johannes Berg8318d782008-01-24 19:38:38 +0100776 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700777 tbl->lq_type = LQ_A;
778 else
779 tbl->lq_type = LQ_G;
780
Guy Cohen69fdb302008-04-23 17:15:01 -0700781 if (num_of_ant(tbl->ant_type) > 1)
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700782 tbl->ant_type =
783 first_antenna(priv->hw_params.valid_tx_ant);
Zhu Yib481de92007-09-25 17:54:57 -0700784
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700785 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700786 tbl->is_SGI = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700787 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700788 }
789
Guy Coheneecd6e52008-04-23 17:14:58 -0700790 rate_mask = rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700791
Ben Cahill77626352007-11-29 11:09:44 +0800792 /* Mask with station rate restriction */
Zhu Yib481de92007-09-25 17:54:57 -0700793 if (is_legacy(tbl->lq_type)) {
Ben Cahill77626352007-11-29 11:09:44 +0800794 /* supp_rates has no CCK bits in A mode */
Johannes Berg8318d782008-01-24 19:38:38 +0100795 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700796 rate_mask = (u16)(rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -0800797 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -0700798 else
Tomas Winklerc33104f2008-01-14 17:46:21 -0800799 rate_mask = (u16)(rate_mask & lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -0700800 }
801
Ben Cahill77626352007-11-29 11:09:44 +0800802 /* If we switched from HT to legacy, check current rate */
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800803 if (switch_to_legacy && (rate_mask & (1 << scale_index))) {
Guy Cohen39e88502008-04-23 17:14:57 -0700804 low = scale_index;
805 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700806 }
807
Ester Kummerbf403db2008-05-05 10:22:40 +0800808 high_low = rs_get_adjacent_rate(lq_sta->drv, scale_index, rate_mask,
809 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700810 low = high_low & 0xff;
811
Guy Cohen39e88502008-04-23 17:14:57 -0700812 if (low == IWL_RATE_INVALID)
813 low = scale_index;
814
815out:
Tomas Winkler978785a2008-12-19 10:37:31 +0800816 return rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
Zhu Yib481de92007-09-25 17:54:57 -0700817}
818
Ben Cahill77626352007-11-29 11:09:44 +0800819/*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700820 * Simple function to compare two rate scale table types
821 */
822static bool table_type_matches(struct iwl_scale_tbl_info *a,
823 struct iwl_scale_tbl_info *b)
824{
825 return (a->lq_type == b->lq_type) && (a->ant_type == b->ant_type) &&
826 (a->is_SGI == b->is_SGI);
827}
828/*
829 * Static function to get the expected throughput from an iwl_scale_tbl_info
830 * that wraps a NULL pointer check
831 */
832static s32 get_expected_tpt(struct iwl_scale_tbl_info *tbl, int rs_index)
833{
834 if (tbl->expected_tpt)
835 return tbl->expected_tpt[rs_index];
836 return 0;
837}
838
839/*
Ben Cahill77626352007-11-29 11:09:44 +0800840 * mac80211 sends us Tx status
841 */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200842static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband,
843 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200844 struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700845{
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700846 int legacy_success;
847 int retries;
848 int rs_index, mac_index, i;
Tomas Winkler417f1142008-11-12 13:14:06 -0800849 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700850 struct iwl_link_quality_cmd *table;
Zhu Yib481de92007-09-25 17:54:57 -0700851 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200852 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
Johannes Berge039fa42008-05-15 12:55:29 +0200853 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winklere227cea2008-07-18 13:53:05 +0800854 struct iwl_rate_scale_data *window = NULL;
Daniel C Halperin50273092009-08-28 09:44:45 -0700855 enum mac80211_rate_control_flags mac_flags;
Guy Cohen39e88502008-04-23 17:14:57 -0700856 u32 tx_rate;
Tomas Winklere227cea2008-07-18 13:53:05 +0800857 struct iwl_scale_tbl_info tbl_type;
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700858 struct iwl_scale_tbl_info *curr_tbl, *other_tbl;
Zhu Yib481de92007-09-25 17:54:57 -0700859 s32 tpt = 0;
860
Tomas Winklere1623442009-01-27 14:27:56 -0800861 IWL_DEBUG_RATE_LIMIT(priv, "get frame ack response, update rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -0700862
Tomas Winkler417f1142008-11-12 13:14:06 -0800863 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200864 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -0700865 return;
866
Daniel C Halperine3949d62009-09-17 10:43:50 -0700867 /* This packet was aggregated but doesn't carry status info */
Johannes Berge039fa42008-05-15 12:55:29 +0200868 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
869 !(info->flags & IEEE80211_TX_STAT_AMPDU))
Ron Rindjunsky99556432008-01-28 14:07:25 +0200870 return;
871
Johannes Berg05c914f2008-09-11 00:01:58 +0200872 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
Tomas Winklerc33104f2008-01-14 17:46:21 -0800873 !lq_sta->ibss_sta_added)
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700874 return;
Zhu Yib481de92007-09-25 17:54:57 -0700875
Ben Cahill77626352007-11-29 11:09:44 +0800876 /*
877 * Ignore this Tx frame response if its initial rate doesn't match
878 * that of latest Link Quality command. There may be stragglers
879 * from a previous Link Quality command, but we're no longer interested
880 * in those; they're either from the "active" mode while we're trying
881 * to check "search" mode, or a prior "search" mode after we've moved
882 * to a new "search" mode (which might become the new "active" mode).
883 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700884 table = &lq_sta->lq;
Guy Cohen39e88502008-04-23 17:14:57 -0700885 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
886 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800887 if (priv->band == IEEE80211_BAND_5GHZ)
888 rs_index -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin50273092009-08-28 09:44:45 -0700889 mac_flags = info->status.rates[0].flags;
890 mac_index = info->status.rates[0].idx;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700891 /* For HT packets, map MCS to PLCP */
892 if (mac_flags & IEEE80211_TX_RC_MCS) {
893 mac_index &= RATE_MCS_CODE_MSK; /* Remove # of streams */
894 if (mac_index >= (IWL_RATE_9M_INDEX - IWL_FIRST_OFDM_RATE))
895 mac_index++;
Daniel C Halperin392a0ba2009-09-11 10:38:08 -0700896 /*
897 * mac80211 HT index is always zero-indexed; we need to move
898 * HT OFDM rates after CCK rates in 2.4 GHz band
899 */
900 if (priv->band == IEEE80211_BAND_2GHZ)
901 mac_index += IWL_FIRST_OFDM_RATE;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700902 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700903 /* Here we actually compare this rate to the latest LQ command */
Daniel C Halperin50273092009-08-28 09:44:45 -0700904 if ((mac_index < 0) ||
905 (tbl_type.is_SGI != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI)) ||
906 (tbl_type.is_ht40 != !!(mac_flags & IEEE80211_TX_RC_40_MHZ_WIDTH)) ||
907 (tbl_type.is_dup != !!(mac_flags & IEEE80211_TX_RC_DUP_DATA)) ||
Johannes Berge6a98542008-10-21 12:40:02 +0200908 (tbl_type.ant_type != info->antenna_sel_tx) ||
Daniel C Halperin50273092009-08-28 09:44:45 -0700909 (!!(tx_rate & RATE_MCS_HT_MSK) != !!(mac_flags & IEEE80211_TX_RC_MCS)) ||
910 (!!(tx_rate & RATE_MCS_GF_MSK) != !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD)) ||
Daniel C Halperin31513be2009-08-28 09:44:47 -0700911 (rs_index != mac_index)) {
912 IWL_DEBUG_RATE(priv, "initial rate %d does not match %d (0x%x)\n", mac_index, rs_index, tx_rate);
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700913 /*
914 * Since rates mis-match, the last LQ command may have failed.
915 * After IWL_MISSED_RATE_MAX mis-matches, resync the uCode with
916 * ... driver.
Mohamed Abbasd5e49032008-12-12 08:22:15 -0800917 */
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800918 lq_sta->missed_rate_counter++;
919 if (lq_sta->missed_rate_counter > IWL_MISSED_RATE_MAX) {
920 lq_sta->missed_rate_counter = 0;
921 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
922 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700923 /* Regardless, ignore this status info for outdated rate */
924 return;
925 } else
926 /* Rate did match, so reset the missed_rate_counter */
927 lq_sta->missed_rate_counter = 0;
928
929 /* Figure out if rate scale algorithm is in active or search table */
930 if (table_type_matches(&tbl_type,
931 &(lq_sta->lq_info[lq_sta->active_tbl]))) {
932 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
933 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
934 } else if (table_type_matches(&tbl_type,
935 &lq_sta->lq_info[1 - lq_sta->active_tbl])) {
936 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
937 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
938 } else {
939 IWL_DEBUG_RATE(priv, "Neither active nor search matches tx rate\n");
940 return;
Zhu Yib481de92007-09-25 17:54:57 -0700941 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700942 window = (struct iwl_rate_scale_data *)&(curr_tbl->win[0]);
Zhu Yib481de92007-09-25 17:54:57 -0700943
Ben Cahill77626352007-11-29 11:09:44 +0800944 /*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700945 * Updating the frame history depends on whether packets were
946 * aggregated.
947 *
948 * For aggregation, all packets were transmitted at the same rate, the
949 * first index into rate scale table.
Ben Cahill77626352007-11-29 11:09:44 +0800950 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700951 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
952 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
953 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type,
954 &rs_index);
955 tpt = get_expected_tpt(curr_tbl, rs_index);
956 rs_collect_tx_data(window, rs_index, tpt,
957 info->status.ampdu_ack_len,
958 info->status.ampdu_ack_map);
Zhu Yib481de92007-09-25 17:54:57 -0700959
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700960 /* Update success/fail counts if not searching for new mode */
961 if (lq_sta->stay_in_tbl) {
Johannes Berge039fa42008-05-15 12:55:29 +0200962 lq_sta->total_success += info->status.ampdu_ack_map;
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700963 lq_sta->total_failed += (info->status.ampdu_ack_len -
964 info->status.ampdu_ack_map);
965 }
966 } else {
967 /*
968 * For legacy, update frame history with for each Tx retry.
969 */
970 retries = info->status.rates[0].count - 1;
971 /* HW doesn't send more than 15 retries */
972 retries = min(retries, 15);
973
974 /* The last transmission may have been successful */
975 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
976 /* Collect data for each rate used during failed TX attempts */
977 for (i = 0; i <= retries; ++i) {
978 tx_rate = le32_to_cpu(table->rs_table[i].rate_n_flags);
979 rs_get_tbl_info_from_mcs(tx_rate, priv->band,
980 &tbl_type, &rs_index);
981 /*
982 * Only collect stats if retried rate is in the same RS
983 * table as active/search.
984 */
985 if (table_type_matches(&tbl_type, curr_tbl))
986 tpt = get_expected_tpt(curr_tbl, rs_index);
987 else if (table_type_matches(&tbl_type, other_tbl))
988 tpt = get_expected_tpt(other_tbl, rs_index);
Ron Rindjunsky99556432008-01-28 14:07:25 +0200989 else
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700990 continue;
991
992 /* Constants mean 1 transmission, 0 successes */
993 if (i < retries)
994 rs_collect_tx_data(window, rs_index, tpt, 1,
995 0);
996 else
997 rs_collect_tx_data(window, rs_index, tpt, 1,
998 legacy_success);
999 }
1000
1001 /* Update success/fail counts if not searching for new mode */
1002 if (lq_sta->stay_in_tbl) {
1003 lq_sta->total_success += legacy_success;
1004 lq_sta->total_failed += retries + (1 - legacy_success);
Ron Rindjunsky99556432008-01-28 14:07:25 +02001005 }
Zhu Yib481de92007-09-25 17:54:57 -07001006 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -07001007 /* The last TX rate is cached in lq_sta; it's set in if/else above */
1008 lq_sta->last_rate_n_flags = tx_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001009
Ben Cahill77626352007-11-29 11:09:44 +08001010 /* See if there's a better rate or modulation mode to try. */
Abbas, Mohamedc338ba32009-01-21 10:58:02 -08001011 if (sta && sta->supp_rates[sband->band])
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001012 rs_rate_scale_perform(priv, skb, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07001013}
1014
Ben Cahill77626352007-11-29 11:09:44 +08001015/*
1016 * Begin a period of staying with a selected modulation mode.
1017 * Set "stay_in_tbl" flag to prevent any mode switches.
1018 * Set frame tx success limits according to legacy vs. high-throughput,
1019 * and reset overall (spanning all rates) tx success history statistics.
1020 * These control how long we stay using same modulation mode before
1021 * searching for a new mode.
1022 */
Ester Kummerbf403db2008-05-05 10:22:40 +08001023static void rs_set_stay_in_table(struct iwl_priv *priv, u8 is_legacy,
Tomas Winklere227cea2008-07-18 13:53:05 +08001024 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001025{
Tomas Winklere1623442009-01-27 14:27:56 -08001026 IWL_DEBUG_RATE(priv, "we are staying in the same table\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -08001027 lq_sta->stay_in_tbl = 1; /* only place this gets set */
Zhu Yib481de92007-09-25 17:54:57 -07001028 if (is_legacy) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001029 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
1030 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
1031 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -07001032 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001033 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
1034 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
1035 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -07001036 }
Tomas Winklerc33104f2008-01-14 17:46:21 -08001037 lq_sta->table_count = 0;
1038 lq_sta->total_failed = 0;
1039 lq_sta->total_success = 0;
Mohamed Abbas447fee72009-04-20 14:37:02 -07001040 lq_sta->flush_timer = jiffies;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001041 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001042}
1043
Ben Cahill77626352007-11-29 11:09:44 +08001044/*
1045 * Find correct throughput table for given mode of modulation
1046 */
Tomas Winklere227cea2008-07-18 13:53:05 +08001047static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
1048 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -07001049{
Daniel C Halperine3949d62009-09-17 10:43:50 -07001050 /* Used to choose among HT tables */
1051 s32 (*ht_tbl_pointer)[IWL_RATE_COUNT];
1052
1053 /* Check for invalid LQ type */
1054 if (WARN_ON_ONCE(!is_legacy(tbl->lq_type) && !is_Ht(tbl->lq_type))) {
1055 tbl->expected_tpt = expected_tpt_legacy;
1056 return;
1057 }
1058
1059 /* Legacy rates have only one table */
Zhu Yib481de92007-09-25 17:54:57 -07001060 if (is_legacy(tbl->lq_type)) {
Daniel C Halperine3949d62009-09-17 10:43:50 -07001061 tbl->expected_tpt = expected_tpt_legacy;
1062 return;
1063 }
1064
1065 /* Choose among many HT tables depending on number of streams
1066 * (SISO/MIMO2/MIMO3), channel width (20/40), SGI, and aggregation
1067 * status */
1068 if (is_siso(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1069 ht_tbl_pointer = expected_tpt_siso20MHz;
1070 else if (is_siso(tbl->lq_type))
1071 ht_tbl_pointer = expected_tpt_siso40MHz;
1072 else if (is_mimo2(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1073 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
1074 else if (is_mimo2(tbl->lq_type))
1075 ht_tbl_pointer = expected_tpt_mimo2_40MHz;
1076 else if (is_mimo3(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1077 ht_tbl_pointer = expected_tpt_mimo3_20MHz;
1078 else /* if (is_mimo3(tbl->lq_type)) <-- must be true */
1079 ht_tbl_pointer = expected_tpt_mimo3_40MHz;
1080
1081 if (!tbl->is_SGI && !lq_sta->is_agg) /* Normal */
1082 tbl->expected_tpt = ht_tbl_pointer[0];
1083 else if (tbl->is_SGI && !lq_sta->is_agg) /* SGI */
1084 tbl->expected_tpt = ht_tbl_pointer[1];
1085 else if (!tbl->is_SGI && lq_sta->is_agg) /* AGG */
1086 tbl->expected_tpt = ht_tbl_pointer[2];
1087 else /* AGG+SGI */
1088 tbl->expected_tpt = ht_tbl_pointer[3];
Zhu Yib481de92007-09-25 17:54:57 -07001089}
1090
Ben Cahill77626352007-11-29 11:09:44 +08001091/*
1092 * Find starting rate for new "search" high-throughput mode of modulation.
1093 * Goal is to find lowest expected rate (under perfect conditions) that is
1094 * above the current measured throughput of "active" mode, to give new mode
1095 * a fair chance to prove itself without too many challenges.
1096 *
1097 * This gets called when transitioning to more aggressive modulation
1098 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1099 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1100 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1101 * bit rate will typically need to increase, but not if performance was bad.
1102 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001103static s32 rs_get_best_rate(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001104 struct iwl_lq_sta *lq_sta,
1105 struct iwl_scale_tbl_info *tbl, /* "search" */
Guy Cohenf935a6d2008-04-23 17:15:02 -07001106 u16 rate_mask, s8 index)
Zhu Yib481de92007-09-25 17:54:57 -07001107{
Ben Cahill77626352007-11-29 11:09:44 +08001108 /* "active" values */
Tomas Winklere227cea2008-07-18 13:53:05 +08001109 struct iwl_scale_tbl_info *active_tbl =
Tomas Winklerc33104f2008-01-14 17:46:21 -08001110 &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001111 s32 active_sr = active_tbl->win[index].success_ratio;
Zhu Yib481de92007-09-25 17:54:57 -07001112 s32 active_tpt = active_tbl->expected_tpt[index];
Ben Cahill77626352007-11-29 11:09:44 +08001113
1114 /* expected "search" throughput */
1115 s32 *tpt_tbl = tbl->expected_tpt;
1116
1117 s32 new_rate, high, low, start_hi;
Zhu Yib481de92007-09-25 17:54:57 -07001118 u16 high_low;
Guy Cohenf935a6d2008-04-23 17:15:02 -07001119 s8 rate = index;
Zhu Yib481de92007-09-25 17:54:57 -07001120
1121 new_rate = high = low = start_hi = IWL_RATE_INVALID;
1122
1123 for (; ;) {
Ester Kummerbf403db2008-05-05 10:22:40 +08001124 high_low = rs_get_adjacent_rate(priv, rate, rate_mask,
1125 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001126
1127 low = high_low & 0xff;
1128 high = (high_low >> 8) & 0xff;
1129
Ben Cahill77626352007-11-29 11:09:44 +08001130 /*
1131 * Lower the "search" bit rate, to give new "search" mode
1132 * approximately the same throughput as "active" if:
1133 *
1134 * 1) "Active" mode has been working modestly well (but not
1135 * great), and expected "search" throughput (under perfect
1136 * conditions) at candidate rate is above the actual
1137 * measured "active" throughput (but less than expected
1138 * "active" throughput under perfect conditions).
1139 * OR
1140 * 2) "Active" mode has been working perfectly or very well
1141 * and expected "search" throughput (under perfect
1142 * conditions) at candidate rate is above expected
1143 * "active" throughput (under perfect conditions).
1144 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001145 if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
Zhu Yib481de92007-09-25 17:54:57 -07001146 ((active_sr > IWL_RATE_DECREASE_TH) &&
1147 (active_sr <= IWL_RATE_HIGH_TH) &&
1148 (tpt_tbl[rate] <= active_tpt))) ||
1149 ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
1150 (tpt_tbl[rate] > active_tpt))) {
1151
Ben Cahill77626352007-11-29 11:09:44 +08001152 /* (2nd or later pass)
1153 * If we've already tried to raise the rate, and are
1154 * now trying to lower it, use the higher rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001155 if (start_hi != IWL_RATE_INVALID) {
1156 new_rate = start_hi;
1157 break;
1158 }
Ben Cahill77626352007-11-29 11:09:44 +08001159
Zhu Yib481de92007-09-25 17:54:57 -07001160 new_rate = rate;
Ben Cahill77626352007-11-29 11:09:44 +08001161
1162 /* Loop again with lower rate */
Zhu Yib481de92007-09-25 17:54:57 -07001163 if (low != IWL_RATE_INVALID)
1164 rate = low;
Ben Cahill77626352007-11-29 11:09:44 +08001165
1166 /* Lower rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001167 else
1168 break;
Ben Cahill77626352007-11-29 11:09:44 +08001169
1170 /* Else try to raise the "search" rate to match "active" */
Zhu Yib481de92007-09-25 17:54:57 -07001171 } else {
Ben Cahill77626352007-11-29 11:09:44 +08001172 /* (2nd or later pass)
1173 * If we've already tried to lower the rate, and are
1174 * now trying to raise it, use the lower rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001175 if (new_rate != IWL_RATE_INVALID)
1176 break;
Ben Cahill77626352007-11-29 11:09:44 +08001177
1178 /* Loop again with higher rate */
Zhu Yib481de92007-09-25 17:54:57 -07001179 else if (high != IWL_RATE_INVALID) {
1180 start_hi = high;
1181 rate = high;
Ben Cahill77626352007-11-29 11:09:44 +08001182
1183 /* Higher rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001184 } else {
Guy Cohen90d77952008-09-09 10:54:53 +08001185 new_rate = rate;
Zhu Yib481de92007-09-25 17:54:57 -07001186 break;
1187 }
1188 }
1189 }
1190
1191 return new_rate;
1192}
Zhu Yib481de92007-09-25 17:54:57 -07001193
Ben Cahill77626352007-11-29 11:09:44 +08001194/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001195 * Set up search table for MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001196 */
Guy Cohenfde0db32008-04-21 15:42:01 -07001197static int rs_switch_to_mimo2(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001198 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001199 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001200 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001201 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001202{
Zhu Yib481de92007-09-25 17:54:57 -07001203 u16 rate_mask;
1204 s32 rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001205 s8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001206
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001207 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001208 return -1;
1209
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001210 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
Tomas Winkler00c5ae22008-09-03 11:26:42 +08001211 == WLAN_HT_CAP_SM_PS_STATIC)
Zhu Yib481de92007-09-25 17:54:57 -07001212 return -1;
1213
Ben Cahill77626352007-11-29 11:09:44 +08001214 /* Need both Tx chains/antennas to support MIMO */
Guy Cohenaade00c2008-04-23 17:14:59 -07001215 if (priv->hw_params.tx_chains_num < 2)
Zhu Yib481de92007-09-25 17:54:57 -07001216 return -1;
1217
Tomas Winklere1623442009-01-27 14:27:56 -08001218 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO2\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001219
1220 tbl->lq_type = LQ_MIMO2;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001221 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001222 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001223 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001224 rate_mask = lq_sta->active_mimo2_rate;
1225
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001226 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1227 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001228 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001229 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001230
Guy Coheneecd6e52008-04-23 17:14:58 -07001231 rs_set_expected_tpt_table(lq_sta, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07001232
Guy Cohenf935a6d2008-04-23 17:15:02 -07001233 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001234
Tomas Winklere1623442009-01-27 14:27:56 -08001235 IWL_DEBUG_RATE(priv, "LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001236 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
1237 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
1238 rate, rate_mask);
1239 return -1;
1240 }
1241 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Guy Cohen39e88502008-04-23 17:14:57 -07001242
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001243 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
1244 tbl->current_rate, is_green);
1245 return 0;
1246}
1247
1248/*
1249 * Set up search table for MIMO3
1250 */
1251static int rs_switch_to_mimo3(struct iwl_priv *priv,
1252 struct iwl_lq_sta *lq_sta,
1253 struct ieee80211_conf *conf,
1254 struct ieee80211_sta *sta,
1255 struct iwl_scale_tbl_info *tbl, int index)
1256{
1257 u16 rate_mask;
1258 s32 rate;
1259 s8 is_green = lq_sta->is_green;
1260
1261 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1262 return -1;
1263
1264 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
1265 == WLAN_HT_CAP_SM_PS_STATIC)
1266 return -1;
1267
1268 /* Need both Tx chains/antennas to support MIMO */
1269 if (priv->hw_params.tx_chains_num < 3)
1270 return -1;
1271
1272 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO3\n");
1273
1274 tbl->lq_type = LQ_MIMO3;
1275 tbl->is_dup = lq_sta->is_dup;
1276 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001277 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001278 rate_mask = lq_sta->active_mimo3_rate;
1279
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001280 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1281 tbl->is_ht40 = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001282 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001283 tbl->is_ht40 = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001284
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001285 rs_set_expected_tpt_table(lq_sta, tbl);
1286
1287 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
1288
1289 IWL_DEBUG_RATE(priv, "LQ: MIMO3 best rate %d mask %X\n",
1290 rate, rate_mask);
Guy Cohen39e88502008-04-23 17:14:57 -07001291 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001292 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001293 rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001294 return -1;
Guy Cohen39e88502008-04-23 17:14:57 -07001295 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001296 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001297
Tomas Winklere1623442009-01-27 14:27:56 -08001298 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001299 tbl->current_rate, is_green);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001300 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001301}
1302
Ben Cahill77626352007-11-29 11:09:44 +08001303/*
1304 * Set up search table for SISO
1305 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001306static int rs_switch_to_siso(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001307 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001308 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001309 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001310 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001311{
Zhu Yib481de92007-09-25 17:54:57 -07001312 u16 rate_mask;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001313 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001314 s32 rate;
1315
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001316 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001317 return -1;
1318
Tomas Winklere1623442009-01-27 14:27:56 -08001319 IWL_DEBUG_RATE(priv, "LQ: try to switch to SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001320
Tomas Winklerc33104f2008-01-14 17:46:21 -08001321 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001322 tbl->lq_type = LQ_SISO;
1323 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001324 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001325 rate_mask = lq_sta->active_siso_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001326
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001327 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1328 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001329 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001330 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001331
Zhu Yib481de92007-09-25 17:54:57 -07001332 if (is_green)
Guy Cohen39e88502008-04-23 17:14:57 -07001333 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield*/
Zhu Yib481de92007-09-25 17:54:57 -07001334
Guy Coheneecd6e52008-04-23 17:14:58 -07001335 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohenf935a6d2008-04-23 17:15:02 -07001336 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001337
Tomas Winklere1623442009-01-27 14:27:56 -08001338 IWL_DEBUG_RATE(priv, "LQ: get best rate %d mask %X\n", rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001339 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001340 IWL_DEBUG_RATE(priv, "can not switch with index %d rate mask %x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001341 rate, rate_mask);
1342 return -1;
1343 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001344 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Tomas Winklere1623442009-01-27 14:27:56 -08001345 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001346 tbl->current_rate, is_green);
Mohamed Abbas403ab562007-11-06 22:06:25 -08001347 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001348}
1349
Ben Cahill77626352007-11-29 11:09:44 +08001350/*
1351 * Try to switch to new modulation mode from legacy
1352 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001353static int rs_move_legacy_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001354 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001355 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001356 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07001357 int index)
1358{
Tomas Winklere227cea2008-07-18 13:53:05 +08001359 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1360 struct iwl_scale_tbl_info *search_tbl =
1361 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1362 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1363 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1364 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001365 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001366 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001367 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001368 int ret = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001369 u8 update_search_tbl_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001370
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001371 if (!iwl_ht_enabled(priv))
1372 /* stay in Legacy */
1373 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07001374 else if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001375 tbl->action > IWL_LEGACY_SWITCH_SISO)
1376 tbl->action = IWL_LEGACY_SWITCH_SISO;
Zhu Yib481de92007-09-25 17:54:57 -07001377 for (; ;) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001378 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001379 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001380 case IWL_LEGACY_SWITCH_ANTENNA1:
1381 case IWL_LEGACY_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001382 IWL_DEBUG_RATE(priv, "LQ: Legacy toggle Antenna\n");
Zhu Yib481de92007-09-25 17:54:57 -07001383
Guy Cohen3110bef2008-09-09 10:54:54 +08001384 if ((tbl->action == IWL_LEGACY_SWITCH_ANTENNA1 &&
1385 tx_chains_num <= 1) ||
1386 (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2 &&
1387 tx_chains_num <= 2))
1388 break;
1389
Ben Cahill77626352007-11-29 11:09:44 +08001390 /* Don't change antenna if success has been great */
Zhu Yib481de92007-09-25 17:54:57 -07001391 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1392 break;
Ben Cahill77626352007-11-29 11:09:44 +08001393
Ben Cahill77626352007-11-29 11:09:44 +08001394 /* Set up search table to try other antenna */
Zhu Yib481de92007-09-25 17:54:57 -07001395 memcpy(search_tbl, tbl, sz);
1396
Guy Cohenaade00c2008-04-23 17:14:59 -07001397 if (rs_toggle_antenna(valid_tx_ant,
1398 &search_tbl->current_rate, search_tbl)) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001399 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001400 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohenaade00c2008-04-23 17:14:59 -07001401 goto out;
1402 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001403 break;
Zhu Yib481de92007-09-25 17:54:57 -07001404 case IWL_LEGACY_SWITCH_SISO:
Tomas Winklere1623442009-01-27 14:27:56 -08001405 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to SISO\n");
Ben Cahill77626352007-11-29 11:09:44 +08001406
1407 /* Set up search table to try SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001408 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001409 search_tbl->is_SGI = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001410 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001411 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001412 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001413 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001414 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001415 }
Zhu Yib481de92007-09-25 17:54:57 -07001416
1417 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001418 case IWL_LEGACY_SWITCH_MIMO2_AB:
1419 case IWL_LEGACY_SWITCH_MIMO2_AC:
1420 case IWL_LEGACY_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001421 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO2\n");
Ben Cahill77626352007-11-29 11:09:44 +08001422
1423 /* Set up search table to try MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001424 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001425 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001426
1427 if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AB)
1428 search_tbl->ant_type = ANT_AB;
1429 else if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AC)
1430 search_tbl->ant_type = ANT_AC;
1431 else
1432 search_tbl->ant_type = ANT_BC;
1433
1434 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1435 break;
1436
Guy Cohenfde0db32008-04-21 15:42:01 -07001437 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001438 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001439 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001440 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001441 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001442 }
Zhu Yib481de92007-09-25 17:54:57 -07001443 break;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001444
1445 case IWL_LEGACY_SWITCH_MIMO3_ABC:
1446 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO3\n");
1447
1448 /* Set up search table to try MIMO3 */
1449 memcpy(search_tbl, tbl, sz);
1450 search_tbl->is_SGI = 0;
1451
1452 search_tbl->ant_type = ANT_ABC;
1453
1454 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1455 break;
1456
1457 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1458 search_tbl, index);
1459 if (!ret) {
1460 lq_sta->action_counter = 0;
1461 goto out;
1462 }
1463 break;
Zhu Yib481de92007-09-25 17:54:57 -07001464 }
1465 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001466 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001467 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001468
1469 if (tbl->action == start_action)
1470 break;
1471
1472 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001473 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001474 return 0;
1475
Guy Cohen3110bef2008-09-09 10:54:54 +08001476out:
1477 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001478 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001479 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001480 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001481 if (update_search_tbl_counter)
1482 search_tbl->action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001483 return 0;
1484
1485}
1486
Ben Cahill77626352007-11-29 11:09:44 +08001487/*
1488 * Try to switch to new modulation mode from SISO
1489 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001490static int rs_move_siso_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001491 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001492 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001493 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001494{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001495 u8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001496 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1497 struct iwl_scale_tbl_info *search_tbl =
1498 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1499 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001500 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001501 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1502 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001503 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001504 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001505 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001506 u8 update_search_tbl_counter = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -07001507 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001508
Johannes Berg3ad3b922009-08-07 15:41:48 -07001509 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001510 tbl->action > IWL_SISO_SWITCH_ANTENNA2) {
1511 /* stay in SISO */
1512 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1513 }
Zhu Yib481de92007-09-25 17:54:57 -07001514 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001515 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001516 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001517 case IWL_SISO_SWITCH_ANTENNA1:
1518 case IWL_SISO_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001519 IWL_DEBUG_RATE(priv, "LQ: SISO toggle Antenna\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001520
1521 if ((tbl->action == IWL_SISO_SWITCH_ANTENNA1 &&
1522 tx_chains_num <= 1) ||
1523 (tbl->action == IWL_SISO_SWITCH_ANTENNA2 &&
1524 tx_chains_num <= 2))
1525 break;
1526
Zhu Yib481de92007-09-25 17:54:57 -07001527 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1528 break;
Zhu Yib481de92007-09-25 17:54:57 -07001529
1530 memcpy(search_tbl, tbl, sz);
Guy Cohenaade00c2008-04-23 17:14:59 -07001531 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001532 &search_tbl->current_rate, search_tbl)) {
1533 update_search_tbl_counter = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07001534 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001535 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001536 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001537 case IWL_SISO_SWITCH_MIMO2_AB:
1538 case IWL_SISO_SWITCH_MIMO2_AC:
1539 case IWL_SISO_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001540 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO2\n");
Zhu Yib481de92007-09-25 17:54:57 -07001541 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001542 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001543
1544 if (tbl->action == IWL_SISO_SWITCH_MIMO2_AB)
1545 search_tbl->ant_type = ANT_AB;
1546 else if (tbl->action == IWL_SISO_SWITCH_MIMO2_AC)
1547 search_tbl->ant_type = ANT_AC;
1548 else
1549 search_tbl->ant_type = ANT_BC;
1550
1551 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1552 break;
1553
Guy Cohenfde0db32008-04-21 15:42:01 -07001554 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001555 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001556 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001557 goto out;
1558 break;
1559 case IWL_SISO_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001560 if (!tbl->is_ht40 && !(ht_cap->cap &
1561 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001562 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001563 if (tbl->is_ht40 && !(ht_cap->cap &
1564 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001565 break;
1566
Tomas Winklere1623442009-01-27 14:27:56 -08001567 IWL_DEBUG_RATE(priv, "LQ: SISO toggle SGI/NGI\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001568
Zhu Yib481de92007-09-25 17:54:57 -07001569 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001570 if (is_green) {
1571 if (!tbl->is_SGI)
1572 break;
1573 else
Winkler, Tomas15b16872008-12-19 10:37:33 +08001574 IWL_ERR(priv,
1575 "SGI was set in GF+SISO\n");
Zhu Yib481de92007-09-25 17:54:57 -07001576 }
Guy Cohen39e88502008-04-23 17:14:57 -07001577 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001578 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohen39e88502008-04-23 17:14:57 -07001579 if (tbl->is_SGI) {
1580 s32 tpt = lq_sta->last_tpt / 100;
1581 if (tpt >= search_tbl->expected_tpt[index])
1582 break;
1583 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001584 search_tbl->current_rate =
1585 rate_n_flags_from_tbl(priv, search_tbl,
1586 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001587 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001588 goto out;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001589 case IWL_SISO_SWITCH_MIMO3_ABC:
1590 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO3\n");
1591 memcpy(search_tbl, tbl, sz);
1592 search_tbl->is_SGI = 0;
1593 search_tbl->ant_type = ANT_ABC;
1594
1595 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1596 break;
1597
1598 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1599 search_tbl, index);
1600 if (!ret)
1601 goto out;
1602 break;
Zhu Yib481de92007-09-25 17:54:57 -07001603 }
1604 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001605 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001606 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001607
1608 if (tbl->action == start_action)
1609 break;
1610 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001611 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001612 return 0;
1613
1614 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001615 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001616 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001617 if (tbl->action > IWL_SISO_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001618 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001619 if (update_search_tbl_counter)
1620 search_tbl->action = tbl->action;
1621
Zhu Yib481de92007-09-25 17:54:57 -07001622 return 0;
1623}
1624
Ben Cahill77626352007-11-29 11:09:44 +08001625/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001626 * Try to switch to new modulation mode from MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001627 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001628static int rs_move_mimo2_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001629 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001630 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001631 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001632{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001633 s8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001634 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1635 struct iwl_scale_tbl_info *search_tbl =
1636 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Guy Cohen3110bef2008-09-09 10:54:54 +08001637 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001638 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001639 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1640 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001641 u8 start_action = tbl->action;
Guy Cohen3110bef2008-09-09 10:54:54 +08001642 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1643 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001644 u8 update_search_tbl_counter = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07001645 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001646
Johannes Berg3ad3b922009-08-07 15:41:48 -07001647 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001648 (tbl->action < IWL_MIMO2_SWITCH_SISO_A ||
1649 tbl->action > IWL_MIMO2_SWITCH_SISO_C)) {
1650 /* switch in SISO */
1651 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1652 }
Zhu Yib481de92007-09-25 17:54:57 -07001653 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001654 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001655 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001656 case IWL_MIMO2_SWITCH_ANTENNA1:
1657 case IWL_MIMO2_SWITCH_ANTENNA2:
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001658 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle Antennas\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001659
1660 if (tx_chains_num <= 2)
1661 break;
1662
1663 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1664 break;
1665
1666 memcpy(search_tbl, tbl, sz);
1667 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001668 &search_tbl->current_rate, search_tbl)) {
1669 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001670 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001671 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001672 break;
1673 case IWL_MIMO2_SWITCH_SISO_A:
1674 case IWL_MIMO2_SWITCH_SISO_B:
1675 case IWL_MIMO2_SWITCH_SISO_C:
Tomas Winklere1623442009-01-27 14:27:56 -08001676 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to SISO\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001677
Ben Cahill77626352007-11-29 11:09:44 +08001678 /* Set up new search table for SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001679 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001680
Guy Cohen3110bef2008-09-09 10:54:54 +08001681 if (tbl->action == IWL_MIMO2_SWITCH_SISO_A)
Guy Cohenfde0db32008-04-21 15:42:01 -07001682 search_tbl->ant_type = ANT_A;
Guy Cohen3110bef2008-09-09 10:54:54 +08001683 else if (tbl->action == IWL_MIMO2_SWITCH_SISO_B)
Guy Cohenfde0db32008-04-21 15:42:01 -07001684 search_tbl->ant_type = ANT_B;
Guy Cohen3110bef2008-09-09 10:54:54 +08001685 else
1686 search_tbl->ant_type = ANT_C;
1687
1688 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1689 break;
Zhu Yib481de92007-09-25 17:54:57 -07001690
Tomas Winklerc33104f2008-01-14 17:46:21 -08001691 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001692 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001693 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001694 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001695
Zhu Yib481de92007-09-25 17:54:57 -07001696 break;
1697
Guy Cohen3110bef2008-09-09 10:54:54 +08001698 case IWL_MIMO2_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001699 if (!tbl->is_ht40 && !(ht_cap->cap &
1700 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001701 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001702 if (tbl->is_ht40 && !(ht_cap->cap &
1703 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001704 break;
1705
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001706 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle SGI/NGI\n");
1707
1708 /* Set up new search table for MIMO2 */
1709 memcpy(search_tbl, tbl, sz);
1710 search_tbl->is_SGI = !tbl->is_SGI;
1711 rs_set_expected_tpt_table(lq_sta, search_tbl);
1712 /*
1713 * If active table already uses the fastest possible
1714 * modulation (dual stream with short guard interval),
1715 * and it's working well, there's no need to look
1716 * for a better type of modulation!
1717 */
1718 if (tbl->is_SGI) {
1719 s32 tpt = lq_sta->last_tpt / 100;
1720 if (tpt >= search_tbl->expected_tpt[index])
1721 break;
1722 }
1723 search_tbl->current_rate =
1724 rate_n_flags_from_tbl(priv, search_tbl,
1725 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001726 update_search_tbl_counter = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001727 goto out;
1728
1729 case IWL_MIMO2_SWITCH_MIMO3_ABC:
1730 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to MIMO3\n");
1731 memcpy(search_tbl, tbl, sz);
1732 search_tbl->is_SGI = 0;
1733 search_tbl->ant_type = ANT_ABC;
1734
1735 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1736 break;
1737
1738 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1739 search_tbl, index);
1740 if (!ret)
1741 goto out;
1742
1743 break;
1744 }
1745 tbl->action++;
1746 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1747 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
1748
1749 if (tbl->action == start_action)
1750 break;
1751 }
1752 search_tbl->lq_type = LQ_NONE;
1753 return 0;
1754 out:
1755 lq_sta->search_better_tbl = 1;
1756 tbl->action++;
1757 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1758 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001759 if (update_search_tbl_counter)
1760 search_tbl->action = tbl->action;
1761
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001762 return 0;
1763
1764}
1765
1766/*
1767 * Try to switch to new modulation mode from MIMO3
1768 */
1769static int rs_move_mimo3_to_other(struct iwl_priv *priv,
1770 struct iwl_lq_sta *lq_sta,
1771 struct ieee80211_conf *conf,
1772 struct ieee80211_sta *sta, int index)
1773{
1774 s8 is_green = lq_sta->is_green;
1775 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1776 struct iwl_scale_tbl_info *search_tbl =
1777 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1778 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001779 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001780 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1781 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
1782 u8 start_action = tbl->action;
1783 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1784 u8 tx_chains_num = priv->hw_params.tx_chains_num;
1785 int ret;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001786 u8 update_search_tbl_counter = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001787
Johannes Berg3ad3b922009-08-07 15:41:48 -07001788 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001789 (tbl->action < IWL_MIMO3_SWITCH_SISO_A ||
1790 tbl->action > IWL_MIMO3_SWITCH_SISO_C)) {
1791 /* switch in SISO */
1792 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
1793 }
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001794 for (;;) {
1795 lq_sta->action_counter++;
1796 switch (tbl->action) {
1797 case IWL_MIMO3_SWITCH_ANTENNA1:
1798 case IWL_MIMO3_SWITCH_ANTENNA2:
1799 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle Antennas\n");
1800
1801 if (tx_chains_num <= 3)
1802 break;
1803
1804 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1805 break;
1806
1807 memcpy(search_tbl, tbl, sz);
1808 if (rs_toggle_antenna(valid_tx_ant,
1809 &search_tbl->current_rate, search_tbl))
1810 goto out;
1811 break;
1812 case IWL_MIMO3_SWITCH_SISO_A:
1813 case IWL_MIMO3_SWITCH_SISO_B:
1814 case IWL_MIMO3_SWITCH_SISO_C:
1815 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to SISO\n");
1816
1817 /* Set up new search table for SISO */
1818 memcpy(search_tbl, tbl, sz);
1819
1820 if (tbl->action == IWL_MIMO3_SWITCH_SISO_A)
1821 search_tbl->ant_type = ANT_A;
1822 else if (tbl->action == IWL_MIMO3_SWITCH_SISO_B)
1823 search_tbl->ant_type = ANT_B;
1824 else
1825 search_tbl->ant_type = ANT_C;
1826
1827 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1828 break;
1829
1830 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
1831 search_tbl, index);
1832 if (!ret)
1833 goto out;
1834
1835 break;
1836
1837 case IWL_MIMO3_SWITCH_MIMO2_AB:
1838 case IWL_MIMO3_SWITCH_MIMO2_AC:
1839 case IWL_MIMO3_SWITCH_MIMO2_BC:
1840 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to MIMO2\n");
1841
1842 memcpy(search_tbl, tbl, sz);
1843 search_tbl->is_SGI = 0;
1844 if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AB)
1845 search_tbl->ant_type = ANT_AB;
1846 else if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AC)
1847 search_tbl->ant_type = ANT_AC;
1848 else
1849 search_tbl->ant_type = ANT_BC;
1850
1851 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1852 break;
1853
1854 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
1855 search_tbl, index);
1856 if (!ret)
1857 goto out;
1858
1859 break;
1860
1861 case IWL_MIMO3_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001862 if (!tbl->is_ht40 && !(ht_cap->cap &
1863 IEEE80211_HT_CAP_SGI_20))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001864 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001865 if (tbl->is_ht40 && !(ht_cap->cap &
1866 IEEE80211_HT_CAP_SGI_40))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001867 break;
1868
1869 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle SGI/NGI\n");
Ben Cahill77626352007-11-29 11:09:44 +08001870
1871 /* Set up new search table for MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001872 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001873 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001874 rs_set_expected_tpt_table(lq_sta, search_tbl);
Ben Cahill77626352007-11-29 11:09:44 +08001875 /*
1876 * If active table already uses the fastest possible
1877 * modulation (dual stream with short guard interval),
1878 * and it's working well, there's no need to look
1879 * for a better type of modulation!
1880 */
Guy Cohen39e88502008-04-23 17:14:57 -07001881 if (tbl->is_SGI) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001882 s32 tpt = lq_sta->last_tpt / 100;
Guy Cohen39e88502008-04-23 17:14:57 -07001883 if (tpt >= search_tbl->expected_tpt[index])
1884 break;
Zhu Yib481de92007-09-25 17:54:57 -07001885 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001886 search_tbl->current_rate =
1887 rate_n_flags_from_tbl(priv, search_tbl,
1888 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001889 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001890 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07001891 }
1892 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001893 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1894 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001895
1896 if (tbl->action == start_action)
1897 break;
1898 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001899 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001900 return 0;
1901 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001902 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001903 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001904 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1905 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001906 if (update_search_tbl_counter)
1907 search_tbl->action = tbl->action;
1908
Zhu Yib481de92007-09-25 17:54:57 -07001909 return 0;
1910
1911}
1912
Ben Cahill77626352007-11-29 11:09:44 +08001913/*
1914 * Check whether we should continue using same modulation mode, or
1915 * begin search for a new mode, based on:
1916 * 1) # tx successes or failures while using this mode
1917 * 2) # times calling this function
1918 * 3) elapsed time in this mode (not used, for now)
1919 */
Tomas Winklere227cea2008-07-18 13:53:05 +08001920static void rs_stay_in_table(struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001921{
Tomas Winklere227cea2008-07-18 13:53:05 +08001922 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001923 int i;
1924 int active_tbl;
1925 int flush_interval_passed = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08001926 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07001927
Ester Kummerbf403db2008-05-05 10:22:40 +08001928 priv = lq_sta->drv;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001929 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001930
Tomas Winklerc33104f2008-01-14 17:46:21 -08001931 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001932
Ben Cahill77626352007-11-29 11:09:44 +08001933 /* If we've been disallowing search, see if we should now allow it */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001934 if (lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001935
Ben Cahill77626352007-11-29 11:09:44 +08001936 /* Elapsed time using current modulation mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001937 if (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001938 flush_interval_passed =
Mohamed Abbas447fee72009-04-20 14:37:02 -07001939 time_after(jiffies,
1940 (unsigned long)(lq_sta->flush_timer +
Zhu Yib481de92007-09-25 17:54:57 -07001941 IWL_RATE_SCALE_FLUSH_INTVL));
1942
Ben Cahill77626352007-11-29 11:09:44 +08001943 /*
1944 * Check if we should allow search for new modulation mode.
1945 * If many frames have failed or succeeded, or we've used
1946 * this same modulation for a long time, allow search, and
1947 * reset history stats that keep track of whether we should
1948 * allow a new search. Also (below) reset all bitmaps and
1949 * stats in active history.
1950 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001951 if ((lq_sta->total_failed > lq_sta->max_failure_limit) ||
1952 (lq_sta->total_success > lq_sta->max_success_limit) ||
1953 ((!lq_sta->search_better_tbl) && (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001954 && (flush_interval_passed))) {
Tomas Winklere1623442009-01-27 14:27:56 -08001955 IWL_DEBUG_RATE(priv, "LQ: stay is expired %d %d %d\n:",
Tomas Winklerc33104f2008-01-14 17:46:21 -08001956 lq_sta->total_failed,
1957 lq_sta->total_success,
Zhu Yib481de92007-09-25 17:54:57 -07001958 flush_interval_passed);
Ben Cahill77626352007-11-29 11:09:44 +08001959
1960 /* Allow search for new mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001961 lq_sta->stay_in_tbl = 0; /* only place reset */
1962 lq_sta->total_failed = 0;
1963 lq_sta->total_success = 0;
1964 lq_sta->flush_timer = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001965
1966 /*
1967 * Else if we've used this modulation mode enough repetitions
1968 * (regardless of elapsed time or success/failure), reset
1969 * history bitmaps and rate-specific stats for all rates in
1970 * active table.
1971 */
Mohamed Abbas403ab562007-11-06 22:06:25 -08001972 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001973 lq_sta->table_count++;
1974 if (lq_sta->table_count >=
1975 lq_sta->table_count_limit) {
1976 lq_sta->table_count = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001977
Tomas Winklere1623442009-01-27 14:27:56 -08001978 IWL_DEBUG_RATE(priv, "LQ: stay in table clear win\n");
Zhu Yib481de92007-09-25 17:54:57 -07001979 for (i = 0; i < IWL_RATE_COUNT; i++)
1980 rs_rate_scale_clear_window(
1981 &(tbl->win[i]));
1982 }
1983 }
1984
Ben Cahill77626352007-11-29 11:09:44 +08001985 /* If transitioning to allow "search", reset all history
1986 * bitmaps and stats in active table (this will become the new
1987 * "search" table). */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001988 if (!lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001989 for (i = 0; i < IWL_RATE_COUNT; i++)
1990 rs_rate_scale_clear_window(&(tbl->win[i]));
1991 }
1992 }
1993}
1994
Ben Cahill77626352007-11-29 11:09:44 +08001995/*
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07001996 * setup rate table in uCode
1997 * return rate_n_flags as used in the table
1998 */
1999static u32 rs_update_rate_tbl(struct iwl_priv *priv,
2000 struct iwl_lq_sta *lq_sta,
2001 struct iwl_scale_tbl_info *tbl,
2002 int index, u8 is_green)
2003{
2004 u32 rate;
2005
2006 /* Update uCode's rate table. */
2007 rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
2008 rs_fill_link_cmd(priv, lq_sta, rate);
2009 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
2010
2011 return rate;
2012}
2013
2014/*
Ben Cahill77626352007-11-29 11:09:44 +08002015 * Do rate scaling and search for new modulation mode.
2016 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002017static void rs_rate_scale_perform(struct iwl_priv *priv,
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002018 struct sk_buff *skb,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002019 struct ieee80211_sta *sta,
2020 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002021{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002022 struct ieee80211_hw *hw = priv->hw;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002023 struct ieee80211_conf *conf = &hw->conf;
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002024 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2025 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002026 int low = IWL_RATE_INVALID;
2027 int high = IWL_RATE_INVALID;
2028 int index;
2029 int i;
Tomas Winklere227cea2008-07-18 13:53:05 +08002030 struct iwl_rate_scale_data *window = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002031 int current_tpt = IWL_INVALID_VALUE;
2032 int low_tpt = IWL_INVALID_VALUE;
2033 int high_tpt = IWL_INVALID_VALUE;
2034 u32 fail_count;
2035 s8 scale_action = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002036 u16 rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -07002037 u8 update_lq = 0;
Tomas Winklere227cea2008-07-18 13:53:05 +08002038 struct iwl_scale_tbl_info *tbl, *tbl1;
Zhu Yib481de92007-09-25 17:54:57 -07002039 u16 rate_scale_index_msk = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07002040 u32 rate;
Zhu Yib481de92007-09-25 17:54:57 -07002041 u8 is_green = 0;
2042 u8 active_tbl = 0;
2043 u8 done_search = 0;
2044 u16 high_low;
Guy Cohena5e8b502008-05-29 16:35:11 +08002045 s32 sr;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002046 u8 tid = MAX_TID_COUNT;
Wey-Yi Guy86b47662009-03-10 14:35:09 -07002047 struct iwl_tid_data *tid_data;
Zhu Yib481de92007-09-25 17:54:57 -07002048
Tomas Winklere1623442009-01-27 14:27:56 -08002049 IWL_DEBUG_RATE(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002050
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002051 /* Send management frames and NO_ACK data using lowest rate. */
Tomas Winkler417f1142008-11-12 13:14:06 -08002052 /* TODO: this could probably be improved.. */
2053 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002054 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -07002055 return;
Zhu Yib481de92007-09-25 17:54:57 -07002056
Johannes Berg4b7679a2008-09-18 18:14:18 +02002057 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002058 return;
2059
Johannes Berg4b7679a2008-09-18 18:14:18 +02002060 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
Zhu Yib481de92007-09-25 17:54:57 -07002061
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08002062 tid = rs_tl_add_packet(lq_sta, hdr);
Daniel C Halperine3949d62009-09-17 10:43:50 -07002063 if ((tid != MAX_TID_COUNT) && (lq_sta->tx_agg_tid_en & (1 << tid))) {
2064 tid_data = &priv->stations[lq_sta->lq.sta_id].tid[tid];
2065 if (tid_data->agg.state == IWL_AGG_OFF)
2066 lq_sta->is_agg = 0;
2067 else
2068 lq_sta->is_agg = 1;
2069 } else
2070 lq_sta->is_agg = 0;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08002071
Ben Cahill77626352007-11-29 11:09:44 +08002072 /*
2073 * Select rate-scale / modulation-mode table to work with in
2074 * the rest of this function: "search" if searching for better
2075 * modulation mode, or "active" if doing rate scaling within a mode.
2076 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002077 if (!lq_sta->search_better_tbl)
2078 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002079 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002080 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002081
Tomas Winklerc33104f2008-01-14 17:46:21 -08002082 tbl = &(lq_sta->lq_info[active_tbl]);
Wey-Yi Guy2681b202009-05-21 13:44:22 -07002083 if (is_legacy(tbl->lq_type))
2084 lq_sta->is_green = 0;
2085 else
Daniel C Halperinb2617932009-08-13 13:30:59 -07002086 lq_sta->is_green = rs_use_green(sta, &priv->current_ht_config);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002087 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07002088
Ben Cahill77626352007-11-29 11:09:44 +08002089 /* current tx rate */
Johannes Bergb7e35002008-09-11 02:22:58 +02002090 index = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002091
Tomas Winklere1623442009-01-27 14:27:56 -08002092 IWL_DEBUG_RATE(priv, "Rate scale index %d for type %d\n", index,
Zhu Yib481de92007-09-25 17:54:57 -07002093 tbl->lq_type);
2094
Ben Cahill77626352007-11-29 11:09:44 +08002095 /* rates available for this association, and for modulation mode */
Guy Coheneecd6e52008-04-23 17:14:58 -07002096 rate_mask = rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07002097
Tomas Winklere1623442009-01-27 14:27:56 -08002098 IWL_DEBUG_RATE(priv, "mask 0x%04X \n", rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07002099
2100 /* mask with station rate restriction */
2101 if (is_legacy(tbl->lq_type)) {
Johannes Berg8318d782008-01-24 19:38:38 +01002102 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Ben Cahill77626352007-11-29 11:09:44 +08002103 /* supp_rates has no CCK bits in A mode */
Zhu Yib481de92007-09-25 17:54:57 -07002104 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002105 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -07002106 else
2107 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002108 lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -07002109
2110 } else
2111 rate_scale_index_msk = rate_mask;
2112
2113 if (!rate_scale_index_msk)
2114 rate_scale_index_msk = rate_mask;
2115
Guy Cohen07bc28e2008-04-23 17:15:03 -07002116 if (!((1 << index) & rate_scale_index_msk)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002117 IWL_ERR(priv, "Current Rate is not valid\n");
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002118 if (lq_sta->search_better_tbl) {
2119 /* revert to active table if search table is not valid*/
2120 tbl->lq_type = LQ_NONE;
2121 lq_sta->search_better_tbl = 0;
2122 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
2123 /* get "active" rate info */
2124 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
2125 rate = rs_update_rate_tbl(priv, lq_sta,
2126 tbl, index, is_green);
2127 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002128 return;
Zhu Yib481de92007-09-25 17:54:57 -07002129 }
2130
Ben Cahill77626352007-11-29 11:09:44 +08002131 /* Get expected throughput table and history window for current rate */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002132 if (!tbl->expected_tpt) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002133 IWL_ERR(priv, "tbl->expected_tpt is NULL\n");
Guy Cohen07bc28e2008-04-23 17:15:03 -07002134 return;
2135 }
Zhu Yib481de92007-09-25 17:54:57 -07002136
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002137 /* force user max rate if set by user */
2138 if ((lq_sta->max_rate_idx != -1) &&
2139 (lq_sta->max_rate_idx < index)) {
2140 index = lq_sta->max_rate_idx;
2141 update_lq = 1;
2142 window = &(tbl->win[index]);
2143 goto lq_update;
2144 }
2145
Zhu Yib481de92007-09-25 17:54:57 -07002146 window = &(tbl->win[index]);
2147
Ben Cahill77626352007-11-29 11:09:44 +08002148 /*
2149 * If there is not enough history to calculate actual average
2150 * throughput, keep analyzing results of more tx frames, without
2151 * changing rate or mode (bypass most of the rest of this function).
2152 * Set up new rate table in uCode only if old rate is not supported
2153 * in current association (use new rate found above).
2154 */
Zhu Yib481de92007-09-25 17:54:57 -07002155 fail_count = window->counter - window->success_counter;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002156 if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
2157 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002158 IWL_DEBUG_RATE(priv, "LQ: still below TH. succ=%d total=%d "
Zhu Yib481de92007-09-25 17:54:57 -07002159 "for index %d\n",
2160 window->success_counter, window->counter, index);
Ben Cahill77626352007-11-29 11:09:44 +08002161
2162 /* Can't calculate this yet; not enough history */
Zhu Yib481de92007-09-25 17:54:57 -07002163 window->average_tpt = IWL_INVALID_VALUE;
Ben Cahill77626352007-11-29 11:09:44 +08002164
2165 /* Should we stay with this modulation mode,
2166 * or search for a new one? */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002167 rs_stay_in_table(lq_sta);
Ben Cahill77626352007-11-29 11:09:44 +08002168
Zhu Yib481de92007-09-25 17:54:57 -07002169 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08002170 }
Ben Cahill77626352007-11-29 11:09:44 +08002171 /* Else we have enough samples; calculate estimate of
2172 * actual average throughput */
Guy Cohen3110bef2008-09-09 10:54:54 +08002173
Daniel C Halperine3949d62009-09-17 10:43:50 -07002174 /* Sanity-check TPT calculations */
Guy Cohen3110bef2008-09-09 10:54:54 +08002175 BUG_ON(window->average_tpt != ((window->success_ratio *
2176 tbl->expected_tpt[index] + 64) / 128));
Zhu Yib481de92007-09-25 17:54:57 -07002177
Ben Cahill77626352007-11-29 11:09:44 +08002178 /* If we are searching for better modulation mode, check success. */
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002179 if (lq_sta->search_better_tbl &&
Johannes Berg3ad3b922009-08-07 15:41:48 -07002180 (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI)) {
Ben Cahill77626352007-11-29 11:09:44 +08002181 /* If good success, continue using the "search" mode;
2182 * no need to send new link quality command, since we're
2183 * continuing to use the setup that we've been trying. */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002184 if (window->average_tpt > lq_sta->last_tpt) {
2185
Tomas Winklere1623442009-01-27 14:27:56 -08002186 IWL_DEBUG_RATE(priv, "LQ: SWITCHING TO NEW TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002187 "suc=%d cur-tpt=%d old-tpt=%d\n",
2188 window->success_ratio,
2189 window->average_tpt,
2190 lq_sta->last_tpt);
2191
2192 if (!is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002193 lq_sta->enable_counter = 1;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002194
Ben Cahill77626352007-11-29 11:09:44 +08002195 /* Swap tables; "search" becomes "active" */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002196 lq_sta->active_tbl = active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002197 current_tpt = window->average_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002198
2199 /* Else poor success; go back to mode in "active" table */
Zhu Yib481de92007-09-25 17:54:57 -07002200 } else {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002201
Tomas Winklere1623442009-01-27 14:27:56 -08002202 IWL_DEBUG_RATE(priv, "LQ: GOING BACK TO THE OLD TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002203 "suc=%d cur-tpt=%d old-tpt=%d\n",
2204 window->success_ratio,
2205 window->average_tpt,
2206 lq_sta->last_tpt);
2207
Ben Cahill77626352007-11-29 11:09:44 +08002208 /* Nullify "search" table */
Zhu Yib481de92007-09-25 17:54:57 -07002209 tbl->lq_type = LQ_NONE;
Ben Cahill77626352007-11-29 11:09:44 +08002210
2211 /* Revert to "active" table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002212 active_tbl = lq_sta->active_tbl;
2213 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002214
Ben Cahill77626352007-11-29 11:09:44 +08002215 /* Revert to "active" rate and throughput info */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002216 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002217 current_tpt = lq_sta->last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002218
2219 /* Need to set up a new rate table in uCode */
2220 update_lq = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002221 }
Ben Cahill77626352007-11-29 11:09:44 +08002222
2223 /* Either way, we've made a decision; modulation mode
2224 * search is done, allow rate adjustment next time. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002225 lq_sta->search_better_tbl = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002226 done_search = 1; /* Don't switch modes below! */
Zhu Yib481de92007-09-25 17:54:57 -07002227 goto lq_update;
2228 }
2229
Ben Cahill77626352007-11-29 11:09:44 +08002230 /* (Else) not in search of better modulation mode, try for better
2231 * starting rate, while staying in this mode. */
Ester Kummerbf403db2008-05-05 10:22:40 +08002232 high_low = rs_get_adjacent_rate(priv, index, rate_scale_index_msk,
Zhu Yib481de92007-09-25 17:54:57 -07002233 tbl->lq_type);
2234 low = high_low & 0xff;
2235 high = (high_low >> 8) & 0xff;
2236
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002237 /* If user set max rate, dont allow higher than user constrain */
2238 if ((lq_sta->max_rate_idx != -1) &&
2239 (lq_sta->max_rate_idx < high))
2240 high = IWL_RATE_INVALID;
2241
Guy Cohena5e8b502008-05-29 16:35:11 +08002242 sr = window->success_ratio;
2243
Ben Cahill77626352007-11-29 11:09:44 +08002244 /* Collect measured throughputs for current and adjacent rates */
Zhu Yib481de92007-09-25 17:54:57 -07002245 current_tpt = window->average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002246 if (low != IWL_RATE_INVALID)
2247 low_tpt = tbl->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002248 if (high != IWL_RATE_INVALID)
2249 high_tpt = tbl->win[high].average_tpt;
2250
Guy Cohena5e8b502008-05-29 16:35:11 +08002251 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002252
Ben Cahill77626352007-11-29 11:09:44 +08002253 /* Too many failures, decrease rate */
Guy Cohena5e8b502008-05-29 16:35:11 +08002254 if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002255 IWL_DEBUG_RATE(priv, "decrease rate because of low success_ratio\n");
Zhu Yib481de92007-09-25 17:54:57 -07002256 scale_action = -1;
Ben Cahill77626352007-11-29 11:09:44 +08002257
2258 /* No throughput measured yet for adjacent rates; try increase. */
Zhu Yib481de92007-09-25 17:54:57 -07002259 } else if ((low_tpt == IWL_INVALID_VALUE) &&
Guy Cohena5e8b502008-05-29 16:35:11 +08002260 (high_tpt == IWL_INVALID_VALUE)) {
2261
2262 if (high != IWL_RATE_INVALID && sr >= IWL_RATE_INCREASE_TH)
2263 scale_action = 1;
2264 else if (low != IWL_RATE_INVALID)
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002265 scale_action = 0;
Guy Cohena5e8b502008-05-29 16:35:11 +08002266 }
Ben Cahill77626352007-11-29 11:09:44 +08002267
2268 /* Both adjacent throughputs are measured, but neither one has better
2269 * throughput; we're using the best rate, don't change it! */
Zhu Yib481de92007-09-25 17:54:57 -07002270 else if ((low_tpt != IWL_INVALID_VALUE) &&
2271 (high_tpt != IWL_INVALID_VALUE) &&
2272 (low_tpt < current_tpt) &&
2273 (high_tpt < current_tpt))
2274 scale_action = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002275
2276 /* At least one adjacent rate's throughput is measured,
2277 * and may have better performance. */
Zhu Yib481de92007-09-25 17:54:57 -07002278 else {
Ben Cahill77626352007-11-29 11:09:44 +08002279 /* Higher adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002280 if (high_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002281 /* Higher rate has better throughput */
Guy Cohena5e8b502008-05-29 16:35:11 +08002282 if (high_tpt > current_tpt &&
2283 sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002284 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002285 } else {
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002286 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002287 }
Ben Cahill77626352007-11-29 11:09:44 +08002288
2289 /* Lower adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002290 } else if (low_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002291 /* Lower rate has better throughput */
Zhu Yib481de92007-09-25 17:54:57 -07002292 if (low_tpt > current_tpt) {
Tomas Winklere1623442009-01-27 14:27:56 -08002293 IWL_DEBUG_RATE(priv,
2294 "decrease rate because of low tpt\n");
Zhu Yib481de92007-09-25 17:54:57 -07002295 scale_action = -1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002296 } else if (sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002297 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002298 }
Zhu Yib481de92007-09-25 17:54:57 -07002299 }
2300 }
2301
Ben Cahill77626352007-11-29 11:09:44 +08002302 /* Sanity check; asked for decrease, but success rate or throughput
2303 * has been good at old rate. Don't change it. */
Guy Cohena5e8b502008-05-29 16:35:11 +08002304 if ((scale_action == -1) && (low != IWL_RATE_INVALID) &&
2305 ((sr > IWL_RATE_HIGH_TH) ||
Zhu Yib481de92007-09-25 17:54:57 -07002306 (current_tpt > (100 * tbl->expected_tpt[low]))))
Zhu Yib481de92007-09-25 17:54:57 -07002307 scale_action = 0;
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002308 if (!iwl_ht_enabled(priv) && !is_legacy(tbl->lq_type))
2309 scale_action = -1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07002310 if (iwl_tx_ant_restriction(priv) != IWL_ANT_OK_MULTI &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002311 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type)))
2312 scale_action = -1;
Zhu Yib481de92007-09-25 17:54:57 -07002313 switch (scale_action) {
2314 case -1:
Ben Cahill77626352007-11-29 11:09:44 +08002315 /* Decrease starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002316 if (low != IWL_RATE_INVALID) {
2317 update_lq = 1;
2318 index = low;
2319 }
Mohamed Abbas447fee72009-04-20 14:37:02 -07002320
Zhu Yib481de92007-09-25 17:54:57 -07002321 break;
2322 case 1:
Ben Cahill77626352007-11-29 11:09:44 +08002323 /* Increase starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002324 if (high != IWL_RATE_INVALID) {
2325 update_lq = 1;
2326 index = high;
2327 }
2328
2329 break;
2330 case 0:
Ben Cahill77626352007-11-29 11:09:44 +08002331 /* No change */
Zhu Yib481de92007-09-25 17:54:57 -07002332 default:
2333 break;
2334 }
2335
Tomas Winklere1623442009-01-27 14:27:56 -08002336 IWL_DEBUG_RATE(priv, "choose rate scale index %d action %d low %d "
Zhu Yib481de92007-09-25 17:54:57 -07002337 "high %d type %d\n",
2338 index, scale_action, low, high, tbl->lq_type);
2339
Guy Cohena5e8b502008-05-29 16:35:11 +08002340lq_update:
Ben Cahill77626352007-11-29 11:09:44 +08002341 /* Replace uCode's rate table for the destination station. */
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002342 if (update_lq)
2343 rate = rs_update_rate_tbl(priv, lq_sta,
2344 tbl, index, is_green);
Ben Cahill77626352007-11-29 11:09:44 +08002345
Johannes Berg3ad3b922009-08-07 15:41:48 -07002346 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI) {
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002347 /* Should we stay with this modulation mode,
2348 * or search for a new one? */
2349 rs_stay_in_table(lq_sta);
2350 }
Ben Cahill77626352007-11-29 11:09:44 +08002351 /*
2352 * Search for new modulation mode if we're:
2353 * 1) Not changing rates right now
2354 * 2) Not just finishing up a search
2355 * 3) Allowing a new search
2356 */
Guy Cohen47cfd462008-05-27 11:29:34 +08002357 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && window->counter) {
Ben Cahill77626352007-11-29 11:09:44 +08002358 /* Save current throughput to compare with "search" throughput*/
Tomas Winklerc33104f2008-01-14 17:46:21 -08002359 lq_sta->last_tpt = current_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002360
Ben Cahill77626352007-11-29 11:09:44 +08002361 /* Select a new "search" modulation mode to try.
2362 * If one is found, set up the new "search" table. */
Zhu Yib481de92007-09-25 17:54:57 -07002363 if (is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002364 rs_move_legacy_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002365 else if (is_siso(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002366 rs_move_siso_to_other(priv, lq_sta, conf, sta, index);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002367 else if (is_mimo2(tbl->lq_type))
2368 rs_move_mimo2_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002369 else
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002370 rs_move_mimo3_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002371
Ben Cahill77626352007-11-29 11:09:44 +08002372 /* If new "search" mode was selected, set up in uCode table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002373 if (lq_sta->search_better_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002374 /* Access the "search" table, clear its history. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002375 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Zhu Yib481de92007-09-25 17:54:57 -07002376 for (i = 0; i < IWL_RATE_COUNT; i++)
2377 rs_rate_scale_clear_window(&(tbl->win[i]));
2378
Ben Cahill77626352007-11-29 11:09:44 +08002379 /* Use new "search" start rate */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002380 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002381
Tomas Winklere1623442009-01-27 14:27:56 -08002382 IWL_DEBUG_RATE(priv, "Switch current mcs: %X index: %d\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002383 tbl->current_rate, index);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002384 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07002385 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
Mohamed Abbas447fee72009-04-20 14:37:02 -07002386 } else
2387 done_search = 1;
2388 }
Zhu Yib481de92007-09-25 17:54:57 -07002389
Mohamed Abbas447fee72009-04-20 14:37:02 -07002390 if (done_search && !lq_sta->stay_in_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002391 /* If the "active" (non-search) mode was legacy,
2392 * and we've tried switching antennas,
2393 * but we haven't been able to try HT modes (not available),
2394 * stay with best antenna legacy modulation for a while
2395 * before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002396 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08002397 if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
Mohamed Abbasd6e93392009-05-08 13:44:39 -07002398 lq_sta->action_counter > tbl1->max_search) {
Tomas Winklere1623442009-01-27 14:27:56 -08002399 IWL_DEBUG_RATE(priv, "LQ: STAY in legacy table\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08002400 rs_set_stay_in_table(priv, 1, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002401 }
2402
Ben Cahill77626352007-11-29 11:09:44 +08002403 /* If we're in an HT mode, and all 3 mode switch actions
2404 * have been tried and compared, stay in this best modulation
2405 * mode for a while before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002406 if (lq_sta->enable_counter &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002407 (lq_sta->action_counter >= tbl1->max_search) &&
2408 iwl_ht_enabled(priv)) {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002409 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2410 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2411 (tid != MAX_TID_COUNT)) {
Wey-Yi Guy86b47662009-03-10 14:35:09 -07002412 tid_data =
2413 &priv->stations[lq_sta->lq.sta_id].tid[tid];
2414 if (tid_data->agg.state == IWL_AGG_OFF) {
2415 IWL_DEBUG_RATE(priv,
2416 "try to aggregate tid %d\n",
2417 tid);
2418 rs_tl_turn_on_agg(priv, tid,
2419 lq_sta, sta);
2420 }
Zhu Yib481de92007-09-25 17:54:57 -07002421 }
Ester Kummerbf403db2008-05-05 10:22:40 +08002422 rs_set_stay_in_table(priv, 0, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002423 }
Zhu Yib481de92007-09-25 17:54:57 -07002424 }
2425
2426out:
Tomas Winkler978785a2008-12-19 10:37:31 +08002427 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07002428 i = index;
Johannes Bergb7e35002008-09-11 02:22:58 +02002429 lq_sta->last_txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -07002430
Zhu Yib481de92007-09-25 17:54:57 -07002431 return;
2432}
2433
2434
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002435static void rs_initialize_lq(struct iwl_priv *priv,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002436 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002437 struct ieee80211_sta *sta,
2438 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002439{
Tomas Winklere227cea2008-07-18 13:53:05 +08002440 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002441 int rate_idx;
Guy Cohenaade00c2008-04-23 17:14:59 -07002442 int i;
Guy Cohen39e88502008-04-23 17:14:57 -07002443 u32 rate;
Daniel C Halperinb2617932009-08-13 13:30:59 -07002444 u8 use_green = rs_use_green(sta, &priv->current_ht_config);
Guy Cohenaade00c2008-04-23 17:14:59 -07002445 u8 active_tbl = 0;
2446 u8 valid_tx_ant;
Zhu Yib481de92007-09-25 17:54:57 -07002447
Johannes Berg4b7679a2008-09-18 18:14:18 +02002448 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002449 goto out;
2450
Johannes Bergb7e35002008-09-11 02:22:58 +02002451 i = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002452
Tomas Winklerc33104f2008-01-14 17:46:21 -08002453 if ((lq_sta->lq.sta_id == 0xff) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002454 (priv->iw_mode == NL80211_IFTYPE_ADHOC))
Zhu Yib481de92007-09-25 17:54:57 -07002455 goto out;
2456
Guy Cohenaade00c2008-04-23 17:14:59 -07002457 valid_tx_ant = priv->hw_params.valid_tx_ant;
2458
Tomas Winklerc33104f2008-01-14 17:46:21 -08002459 if (!lq_sta->search_better_tbl)
2460 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002461 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002462 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002463
Tomas Winklerc33104f2008-01-14 17:46:21 -08002464 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002465
2466 if ((i < 0) || (i >= IWL_RATE_COUNT))
2467 i = 0;
2468
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002469 rate = iwl_rates[i].plcp;
Winkler, Tomaseb48dca2008-10-29 14:05:48 -07002470 tbl->ant_type = first_antenna(valid_tx_ant);
2471 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
Zhu Yib481de92007-09-25 17:54:57 -07002472
2473 if (i >= IWL_FIRST_CCK_RATE && i <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -07002474 rate |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002475
Guy Cohen39e88502008-04-23 17:14:57 -07002476 rs_get_tbl_info_from_mcs(rate, priv->band, tbl, &rate_idx);
Guy Cohenaade00c2008-04-23 17:14:59 -07002477 if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2478 rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07002479
Tomas Winkler978785a2008-12-19 10:37:31 +08002480 rate = rate_n_flags_from_tbl(priv, tbl, rate_idx, use_green);
Guy Cohen39e88502008-04-23 17:14:57 -07002481 tbl->current_rate = rate;
Guy Coheneecd6e52008-04-23 17:14:58 -07002482 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002483 rs_fill_link_cmd(NULL, lq_sta, rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07002484 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002485 out:
2486 return;
2487}
2488
Johannes Berge6a98542008-10-21 12:40:02 +02002489static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta,
2490 struct ieee80211_tx_rate_control *txrc)
Zhu Yib481de92007-09-25 17:54:57 -07002491{
2492
Johannes Berge6a98542008-10-21 12:40:02 +02002493 struct sk_buff *skb = txrc->skb;
2494 struct ieee80211_supported_band *sband = txrc->sband;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002495 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
2496 struct ieee80211_conf *conf = &priv->hw->conf;
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002497 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Zhu Yib481de92007-09-25 17:54:57 -07002498 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge6a98542008-10-21 12:40:02 +02002499 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winkler417f1142008-11-12 13:14:06 -08002500 struct iwl_lq_sta *lq_sta = priv_sta;
2501 int rate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002502
Tomas Winklere1623442009-01-27 14:27:56 -08002503 IWL_DEBUG_RATE_LIMIT(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002504
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002505 /* Get max rate if user set max rate */
2506 if (lq_sta) {
2507 lq_sta->max_rate_idx = txrc->max_rate_idx;
2508 if ((sband->band == IEEE80211_BAND_5GHZ) &&
2509 (lq_sta->max_rate_idx != -1))
2510 lq_sta->max_rate_idx += IWL_FIRST_OFDM_RATE;
2511 if ((lq_sta->max_rate_idx < 0) ||
2512 (lq_sta->max_rate_idx >= IWL_RATE_COUNT))
2513 lq_sta->max_rate_idx = -1;
2514 }
2515
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002516 /* Send management frames and NO_ACK data using lowest rate. */
Luis R. Rodriguez4c6d4f52009-07-16 10:05:41 -07002517 if (rate_control_send_low(sta, priv_sta, txrc))
Johannes Berg4b7679a2008-09-18 18:14:18 +02002518 return;
Zhu Yib481de92007-09-25 17:54:57 -07002519
Tomas Winkler417f1142008-11-12 13:14:06 -08002520 rate_idx = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002521
Johannes Berg05c914f2008-09-11 00:01:58 +02002522 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
Tomas Winklerc33104f2008-01-14 17:46:21 -08002523 !lq_sta->ibss_sta_added) {
Tomas Winklerc587de02009-06-03 11:44:07 -07002524 u8 sta_id = iwl_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002525
2526 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08002527 IWL_DEBUG_RATE(priv, "LQ: ADD station %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07002528 hdr->addr1);
Tomas Winklerc587de02009-06-03 11:44:07 -07002529 sta_id = iwl_add_station(priv, hdr->addr1,
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002530 false, CMD_ASYNC, ht_cap);
Zhu Yib481de92007-09-25 17:54:57 -07002531 }
2532 if ((sta_id != IWL_INVALID_STATION)) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002533 lq_sta->lq.sta_id = sta_id;
2534 lq_sta->lq.rs_table[0].rate_n_flags = 0;
2535 lq_sta->ibss_sta_added = 1;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002536 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002537 }
Zhu Yib481de92007-09-25 17:54:57 -07002538 }
2539
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002540 if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
Tomas Winkler417f1142008-11-12 13:14:06 -08002541 rate_idx -= IWL_FIRST_OFDM_RATE;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002542 /* 6M and 9M shared same MCS index */
2543 rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
2544 if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2545 IWL_RATE_MIMO3_6M_PLCP)
2546 rate_idx = rate_idx + (2 * MCS_INDEX_PER_STREAM);
2547 else if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2548 IWL_RATE_MIMO2_6M_PLCP)
2549 rate_idx = rate_idx + MCS_INDEX_PER_STREAM;
2550 info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
2551 if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
2552 info->control.rates[0].flags |= IEEE80211_TX_RC_SHORT_GI;
2553 if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
2554 info->control.rates[0].flags |= IEEE80211_TX_RC_DUP_DATA;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002555 if (lq_sta->last_rate_n_flags & RATE_MCS_HT40_MSK)
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002556 info->control.rates[0].flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2557 if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
2558 info->control.rates[0].flags |= IEEE80211_TX_RC_GREEN_FIELD;
2559 } else {
Daniel C Halperin50273092009-08-28 09:44:45 -07002560 /* Check for invalid rates */
2561 if ((rate_idx < 0) || (rate_idx >= IWL_RATE_COUNT_LEGACY) ||
2562 ((sband->band == IEEE80211_BAND_5GHZ) &&
2563 (rate_idx < IWL_FIRST_OFDM_RATE)))
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002564 rate_idx = rate_lowest_index(sband, sta);
Daniel C Halperin50273092009-08-28 09:44:45 -07002565 /* On valid 5 GHz rate, adjust index */
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002566 else if (sband->band == IEEE80211_BAND_5GHZ)
2567 rate_idx -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin7ebaeff2009-08-21 13:34:20 -07002568 info->control.rates[0].flags = 0;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002569 }
Tomas Winkler417f1142008-11-12 13:14:06 -08002570 info->control.rates[0].idx = rate_idx;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002571
Zhu Yib481de92007-09-25 17:54:57 -07002572}
2573
Johannes Berg4b7679a2008-09-18 18:14:18 +02002574static void *rs_alloc_sta(void *priv_rate, struct ieee80211_sta *sta,
2575 gfp_t gfp)
Zhu Yib481de92007-09-25 17:54:57 -07002576{
Tomas Winklere227cea2008-07-18 13:53:05 +08002577 struct iwl_lq_sta *lq_sta;
Ester Kummerbf403db2008-05-05 10:22:40 +08002578 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002579 int i, j;
2580
Ester Kummerbf403db2008-05-05 10:22:40 +08002581 priv = (struct iwl_priv *)priv_rate;
Tomas Winklere1623442009-01-27 14:27:56 -08002582 IWL_DEBUG_RATE(priv, "create station rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -07002583
Tomas Winklere227cea2008-07-18 13:53:05 +08002584 lq_sta = kzalloc(sizeof(struct iwl_lq_sta), gfp);
Zhu Yib481de92007-09-25 17:54:57 -07002585
Tomas Winklerc33104f2008-01-14 17:46:21 -08002586 if (lq_sta == NULL)
Zhu Yib481de92007-09-25 17:54:57 -07002587 return NULL;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002588 lq_sta->lq.sta_id = 0xff;
Zhu Yib481de92007-09-25 17:54:57 -07002589
Zhu Yi63fddb92007-09-27 11:27:36 +08002590
Zhu Yib481de92007-09-25 17:54:57 -07002591 for (j = 0; j < LQ_SIZE; j++)
2592 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002593 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002594
Tomas Winklerc33104f2008-01-14 17:46:21 -08002595 return lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002596}
2597
Johannes Berg4b7679a2008-09-18 18:14:18 +02002598static void rs_rate_init(void *priv_r, struct ieee80211_supported_band *sband,
2599 struct ieee80211_sta *sta, void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002600{
2601 int i, j;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002602 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
2603 struct ieee80211_conf *conf = &priv->hw->conf;
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002604 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08002605 struct iwl_lq_sta *lq_sta = priv_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002606
Tomas Winklerc33104f2008-01-14 17:46:21 -08002607 lq_sta->flush_timer = 0;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002608 lq_sta->supp_rates = sta->supp_rates[sband->band];
Zhu Yib481de92007-09-25 17:54:57 -07002609 for (j = 0; j < LQ_SIZE; j++)
2610 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002611 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002612
Tomas Winklere1623442009-01-27 14:27:56 -08002613 IWL_DEBUG_RATE(priv, "LQ: *** rate scale station global init ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07002614 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2615 * the lowest or the highest rate.. Could consider using RSSI from
2616 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2617 * after assoc.. */
2618
Tomas Winklerc33104f2008-01-14 17:46:21 -08002619 lq_sta->ibss_sta_added = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02002620 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Tomas Winklerc587de02009-06-03 11:44:07 -07002621 u8 sta_id = iwl_find_station(priv,
Abhijeet Kolekare11bc022009-04-08 11:26:41 -07002622 sta->addr);
Joe Perches0795af52007-10-03 17:59:30 -07002623
Zhu Yib481de92007-09-25 17:54:57 -07002624 /* for IBSS the call are from tasklet */
Tomas Winklere1623442009-01-27 14:27:56 -08002625 IWL_DEBUG_RATE(priv, "LQ: ADD station %pM\n", sta->addr);
Zhu Yib481de92007-09-25 17:54:57 -07002626
2627 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08002628 IWL_DEBUG_RATE(priv, "LQ: ADD station %pM\n", sta->addr);
Tomas Winklerc587de02009-06-03 11:44:07 -07002629 sta_id = iwl_add_station(priv, sta->addr, false,
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002630 CMD_ASYNC, ht_cap);
Zhu Yib481de92007-09-25 17:54:57 -07002631 }
2632 if ((sta_id != IWL_INVALID_STATION)) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002633 lq_sta->lq.sta_id = sta_id;
2634 lq_sta->lq.rs_table[0].rate_n_flags = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002635 }
2636 /* FIXME: this is w/a remove it later */
2637 priv->assoc_station_added = 1;
2638 }
2639
Tomas Winklerc33104f2008-01-14 17:46:21 -08002640 lq_sta->is_dup = 0;
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002641 lq_sta->max_rate_idx = -1;
Abbas, Mohamed7d049e52009-01-20 21:33:53 -08002642 lq_sta->missed_rate_counter = IWL_MISSED_RATE_MAX;
Daniel C Halperinb2617932009-08-13 13:30:59 -07002643 lq_sta->is_green = rs_use_green(sta, &priv->current_ht_config);
Guy Cohen39e88502008-04-23 17:14:57 -07002644 lq_sta->active_legacy_rate = priv->active_rate & ~(0x1000);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002645 lq_sta->active_rate_basic = priv->active_rate_basic;
Johannes Berg8318d782008-01-24 19:38:38 +01002646 lq_sta->band = priv->band;
Ben Cahill77626352007-11-29 11:09:44 +08002647 /*
2648 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2649 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2650 */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002651 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2652 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002653 lq_sta->active_siso_rate &= ~((u16)0x2);
2654 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002655
Ben Cahill77626352007-11-29 11:09:44 +08002656 /* Same here */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002657 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2658 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002659 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2660 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2661
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002662 lq_sta->active_mimo3_rate = ht_cap->mcs.rx_mask[2] << 1;
2663 lq_sta->active_mimo3_rate |= ht_cap->mcs.rx_mask[2] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002664 lq_sta->active_mimo3_rate &= ~((u16)0x2);
2665 lq_sta->active_mimo3_rate <<= IWL_FIRST_OFDM_RATE;
2666
Tomas Winklere1623442009-01-27 14:27:56 -08002667 IWL_DEBUG_RATE(priv, "SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002668 lq_sta->active_siso_rate,
Guy Cohenfde0db32008-04-21 15:42:01 -07002669 lq_sta->active_mimo2_rate,
2670 lq_sta->active_mimo3_rate);
2671
Tomas Winklera96a27f2008-10-23 23:48:56 -07002672 /* These values will be overridden later */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002673 lq_sta->lq.general_params.single_stream_ant_msk = ANT_A;
2674 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2675
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002676 /* as default allow aggregation for all tids */
2677 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002678 lq_sta->drv = priv;
Zhu Yib481de92007-09-25 17:54:57 -07002679
Daniel C Halperin50273092009-08-28 09:44:45 -07002680 /* Set last_txrate_idx to lowest rate */
2681 lq_sta->last_txrate_idx = rate_lowest_index(sband, sta);
2682 if (sband->band == IEEE80211_BAND_5GHZ)
2683 lq_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
Daniel C Halperine3949d62009-09-17 10:43:50 -07002684 lq_sta->is_agg = 0;
Mohamed Abbasd5e49032008-12-12 08:22:15 -08002685
Johannes Berg4b7679a2008-09-18 18:14:18 +02002686 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002687}
2688
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002689static void rs_fill_link_cmd(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08002690 struct iwl_lq_sta *lq_sta, u32 new_rate)
Zhu Yib481de92007-09-25 17:54:57 -07002691{
Tomas Winklere227cea2008-07-18 13:53:05 +08002692 struct iwl_scale_tbl_info tbl_type;
Zhu Yib481de92007-09-25 17:54:57 -07002693 int index = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002694 int rate_idx;
Zhu Yi1b696de2007-09-27 11:27:41 +08002695 int repeat_rate = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07002696 u8 ant_toggle_cnt = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002697 u8 use_ht_possible = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07002698 u8 valid_tx_ant = 0;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002699 struct iwl_link_quality_cmd *lq_cmd = &lq_sta->lq;
Zhu Yib481de92007-09-25 17:54:57 -07002700
Ben Cahill77626352007-11-29 11:09:44 +08002701 /* Override starting rate (index 0) if needed for debug purposes */
Guy Cohen39e88502008-04-23 17:14:57 -07002702 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Zhu Yi98d7e092007-09-27 11:27:42 +08002703
Guy Cohen39e88502008-04-23 17:14:57 -07002704 /* Interpret new_rate (rate_n_flags) */
Guy Cohenaade00c2008-04-23 17:14:59 -07002705 memset(&tbl_type, 0, sizeof(tbl_type));
Guy Cohen39e88502008-04-23 17:14:57 -07002706 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
Zhu Yib481de92007-09-25 17:54:57 -07002707 &tbl_type, &rate_idx);
2708
Ben Cahill77626352007-11-29 11:09:44 +08002709 /* How many times should we repeat the initial rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002710 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002711 ant_toggle_cnt = 1;
Zhu Yi1b696de2007-09-27 11:27:41 +08002712 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002713 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002714 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002715 }
Zhu Yib481de92007-09-25 17:54:57 -07002716
2717 lq_cmd->general_params.mimo_delimiter =
2718 is_mimo(tbl_type.lq_type) ? 1 : 0;
Ben Cahill77626352007-11-29 11:09:44 +08002719
2720 /* Fill 1st table entry (index 0) */
Guy Cohen39e88502008-04-23 17:14:57 -07002721 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002722
Guy Cohen07bc28e2008-04-23 17:15:03 -07002723 if (num_of_ant(tbl_type.ant_type) == 1) {
2724 lq_cmd->general_params.single_stream_ant_msk =
2725 tbl_type.ant_type;
2726 } else if (num_of_ant(tbl_type.ant_type) == 2) {
2727 lq_cmd->general_params.dual_stream_ant_msk =
2728 tbl_type.ant_type;
2729 } /* otherwise we don't modify the existing value */
Zhu Yib481de92007-09-25 17:54:57 -07002730
2731 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002732 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002733
Guy Cohenaade00c2008-04-23 17:14:59 -07002734 if (priv)
2735 valid_tx_ant = priv->hw_params.valid_tx_ant;
2736
Ben Cahill77626352007-11-29 11:09:44 +08002737 /* Fill rest of rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002738 while (index < LINK_QUAL_MAX_RETRY_NUM) {
Ben Cahill77626352007-11-29 11:09:44 +08002739 /* Repeat initial/next rate.
2740 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2741 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
Zhu Yi1b696de2007-09-27 11:27:41 +08002742 while (repeat_rate > 0 && (index < LINK_QUAL_MAX_RETRY_NUM)) {
Zhu Yib481de92007-09-25 17:54:57 -07002743 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002744 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2745 ant_toggle_cnt++;
2746 else if (priv &&
2747 rs_toggle_antenna(valid_tx_ant,
2748 &new_rate, &tbl_type))
2749 ant_toggle_cnt = 1;
2750}
Zhu Yi98d7e092007-09-27 11:27:42 +08002751
Ben Cahill77626352007-11-29 11:09:44 +08002752 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002753 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002754
2755 /* Fill next table entry */
Zhu Yib481de92007-09-25 17:54:57 -07002756 lq_cmd->rs_table[index].rate_n_flags =
Guy Cohen39e88502008-04-23 17:14:57 -07002757 cpu_to_le32(new_rate);
Zhu Yi1b696de2007-09-27 11:27:41 +08002758 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002759 index++;
2760 }
2761
Guy Cohen39e88502008-04-23 17:14:57 -07002762 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
Zhu Yib481de92007-09-25 17:54:57 -07002763 &rate_idx);
2764
Ben Cahill77626352007-11-29 11:09:44 +08002765 /* Indicate to uCode which entries might be MIMO.
2766 * If initial rate was MIMO, this will finally end up
2767 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Zhu Yib481de92007-09-25 17:54:57 -07002768 if (is_mimo(tbl_type.lq_type))
2769 lq_cmd->general_params.mimo_delimiter = index;
2770
Ben Cahill77626352007-11-29 11:09:44 +08002771 /* Get next rate */
Guy Cohen39e88502008-04-23 17:14:57 -07002772 new_rate = rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2773 use_ht_possible);
Zhu Yib481de92007-09-25 17:54:57 -07002774
Ben Cahill77626352007-11-29 11:09:44 +08002775 /* How many times should we repeat the next rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002776 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002777 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2778 ant_toggle_cnt++;
2779 else if (priv &&
2780 rs_toggle_antenna(valid_tx_ant,
2781 &new_rate, &tbl_type))
2782 ant_toggle_cnt = 1;
2783
Zhu Yi1b696de2007-09-27 11:27:41 +08002784 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002785 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002786 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002787 }
Zhu Yib481de92007-09-25 17:54:57 -07002788
Ben Cahill77626352007-11-29 11:09:44 +08002789 /* Don't allow HT rates after next pass.
2790 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Zhu Yib481de92007-09-25 17:54:57 -07002791 use_ht_possible = 0;
2792
Ben Cahill77626352007-11-29 11:09:44 +08002793 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002794 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002795
2796 /* Fill next table entry */
Guy Cohen39e88502008-04-23 17:14:57 -07002797 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002798
2799 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002800 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002801 }
2802
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07002803 lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_MAX;
2804 lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2805 lq_cmd->agg_params.agg_time_limit =
2806 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
Zhu Yib481de92007-09-25 17:54:57 -07002807}
2808
Johannes Berg4b7679a2008-09-18 18:14:18 +02002809static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Zhu Yib481de92007-09-25 17:54:57 -07002810{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002811 return hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002812}
2813/* rate scale requires free function to be implemented */
2814static void rs_free(void *priv_rate)
2815{
2816 return;
2817}
2818
Johannes Berg4b7679a2008-09-18 18:14:18 +02002819static void rs_free_sta(void *priv_r, struct ieee80211_sta *sta,
2820 void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002821{
Tomas Winklere227cea2008-07-18 13:53:05 +08002822 struct iwl_lq_sta *lq_sta = priv_sta;
Rami Rosen45527c22008-10-07 09:50:01 +02002823 struct iwl_priv *priv __maybe_unused = priv_r;
Zhu Yib481de92007-09-25 17:54:57 -07002824
Tomas Winklere1623442009-01-27 14:27:56 -08002825 IWL_DEBUG_RATE(priv, "enter\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -08002826 kfree(lq_sta);
Tomas Winklere1623442009-01-27 14:27:56 -08002827 IWL_DEBUG_RATE(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002828}
2829
2830
Zhu Yi93dc6462007-09-27 11:27:37 +08002831#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi5ae212c2007-09-27 11:27:38 +08002832static int open_file_generic(struct inode *inode, struct file *file)
2833{
2834 file->private_data = inode->i_private;
2835 return 0;
2836}
Tomas Winklere227cea2008-07-18 13:53:05 +08002837static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
2838 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +08002839{
Ester Kummerbf403db2008-05-05 10:22:40 +08002840 struct iwl_priv *priv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002841 u8 valid_tx_ant;
2842 u8 ant_sel_tx;
Ester Kummerbf403db2008-05-05 10:22:40 +08002843
2844 priv = lq_sta->drv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002845 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen39e88502008-04-23 17:14:57 -07002846 if (lq_sta->dbg_fixed_rate) {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002847 ant_sel_tx =
2848 ((lq_sta->dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK)
2849 >> RATE_MCS_ANT_POS);
2850 if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
Guy Cohen39e88502008-04-23 17:14:57 -07002851 *rate_n_flags = lq_sta->dbg_fixed_rate;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002852 IWL_DEBUG_RATE(priv, "Fixed rate ON\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002853 } else {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002854 lq_sta->dbg_fixed_rate = 0;
2855 IWL_ERR(priv,
2856 "Invalid antenna selection 0x%X, Valid is 0x%X\n",
2857 ant_sel_tx, valid_tx_ant);
2858 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002859 }
Guy Cohen39e88502008-04-23 17:14:57 -07002860 } else {
Tomas Winklere1623442009-01-27 14:27:56 -08002861 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Zhu Yi98d7e092007-09-27 11:27:42 +08002862 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002863}
2864
2865static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
2866 const char __user *user_buf, size_t count, loff_t *ppos)
2867{
Tomas Winklere227cea2008-07-18 13:53:05 +08002868 struct iwl_lq_sta *lq_sta = file->private_data;
Ester Kummerbf403db2008-05-05 10:22:40 +08002869 struct iwl_priv *priv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002870 char buf[64];
2871 int buf_size;
2872 u32 parsed_rate;
2873
Ester Kummerbf403db2008-05-05 10:22:40 +08002874 priv = lq_sta->drv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002875 memset(buf, 0, sizeof(buf));
2876 buf_size = min(count, sizeof(buf) - 1);
2877 if (copy_from_user(buf, user_buf, buf_size))
2878 return -EFAULT;
2879
2880 if (sscanf(buf, "%x", &parsed_rate) == 1)
Guy Cohen39e88502008-04-23 17:14:57 -07002881 lq_sta->dbg_fixed_rate = parsed_rate;
Zhu Yi98d7e092007-09-27 11:27:42 +08002882 else
Guy Cohen39e88502008-04-23 17:14:57 -07002883 lq_sta->dbg_fixed_rate = 0;
Zhu Yi98d7e092007-09-27 11:27:42 +08002884
Guy Cohen39e88502008-04-23 17:14:57 -07002885 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
2886 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2887 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2888 lq_sta->active_mimo3_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Zhu Yi98d7e092007-09-27 11:27:42 +08002889
Tomas Winklere1623442009-01-27 14:27:56 -08002890 IWL_DEBUG_RATE(priv, "sta_id %d rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002891 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002892
Guy Cohen39e88502008-04-23 17:14:57 -07002893 if (lq_sta->dbg_fixed_rate) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002894 rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07002895 iwl_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC);
Zhu Yi98d7e092007-09-27 11:27:42 +08002896 }
2897
2898 return count;
2899}
Zhu Yi0209dc12007-09-27 11:27:43 +08002900
Zhu Yi5ae212c2007-09-27 11:27:38 +08002901static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
2902 char __user *user_buf, size_t count, loff_t *ppos)
2903{
Frank Seidela412c802009-03-01 20:25:38 +01002904 char *buff;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002905 int desc = 0;
2906 int i = 0;
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002907 int index = 0;
Frank Seidela412c802009-03-01 20:25:38 +01002908 ssize_t ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002909
Tomas Winklere227cea2008-07-18 13:53:05 +08002910 struct iwl_lq_sta *lq_sta = file->private_data;
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002911 struct iwl_priv *priv;
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002912 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002913
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002914 priv = lq_sta->drv;
Frank Seidela412c802009-03-01 20:25:38 +01002915 buff = kmalloc(1024, GFP_KERNEL);
2916 if (!buff)
2917 return -ENOMEM;
2918
Tomas Winklerc33104f2008-01-14 17:46:21 -08002919 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
Zhu Yi98d7e092007-09-27 11:27:42 +08002920 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002921 lq_sta->total_failed, lq_sta->total_success,
Guy Cohen39e88502008-04-23 17:14:57 -07002922 lq_sta->active_legacy_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002923 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002924 lq_sta->dbg_fixed_rate);
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002925 desc += sprintf(buff+desc, "valid_tx_ant %s%s%s\n",
2926 (priv->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
2927 (priv->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
2928 (priv->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002929 desc += sprintf(buff+desc, "lq type %s\n",
2930 (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
2931 if (is_Ht(tbl->lq_type)) {
2932 desc += sprintf(buff+desc, " %s",
2933 (is_siso(tbl->lq_type)) ? "SISO" :
2934 ((is_mimo2(tbl->lq_type)) ? "MIMO2" : "MIMO3"));
2935 desc += sprintf(buff+desc, " %s",
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002936 (tbl->is_ht40) ? "40MHz" : "20MHz");
Daniel C Halperine3949d62009-09-17 10:43:50 -07002937 desc += sprintf(buff+desc, " %s %s %s\n", (tbl->is_SGI) ? "SGI" : "",
2938 (lq_sta->is_green) ? "GF enabled" : "",
2939 (lq_sta->is_agg) ? "AGG on" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002940 }
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002941 desc += sprintf(buff+desc, "last tx rate=0x%X\n",
2942 lq_sta->last_rate_n_flags);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002943 desc += sprintf(buff+desc, "general:"
2944 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002945 lq_sta->lq.general_params.flags,
2946 lq_sta->lq.general_params.mimo_delimiter,
2947 lq_sta->lq.general_params.single_stream_ant_msk,
2948 lq_sta->lq.general_params.dual_stream_ant_msk);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002949
2950 desc += sprintf(buff+desc, "agg:"
2951 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002952 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
2953 lq_sta->lq.agg_params.agg_dis_start_th,
2954 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002955
2956 desc += sprintf(buff+desc,
2957 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002958 lq_sta->lq.general_params.start_rate_index[0],
2959 lq_sta->lq.general_params.start_rate_index[1],
2960 lq_sta->lq.general_params.start_rate_index[2],
2961 lq_sta->lq.general_params.start_rate_index[3]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002962
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002963 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
2964 index = iwl_hwrate_to_plcp_idx(
2965 le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags));
2966 if (is_legacy(tbl->lq_type)) {
2967 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps\n",
2968 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
2969 iwl_rate_mcs[index].mbps);
2970 } else {
2971 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps (%s)\n",
2972 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
2973 iwl_rate_mcs[index].mbps, iwl_rate_mcs[index].mcs);
2974 }
2975 }
Zhu Yi5ae212c2007-09-27 11:27:38 +08002976
Frank Seidela412c802009-03-01 20:25:38 +01002977 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2978 kfree(buff);
2979 return ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002980}
2981
2982static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Zhu Yi98d7e092007-09-27 11:27:42 +08002983 .write = rs_sta_dbgfs_scale_table_write,
Zhu Yi5ae212c2007-09-27 11:27:38 +08002984 .read = rs_sta_dbgfs_scale_table_read,
2985 .open = open_file_generic,
2986};
Zhu Yi0209dc12007-09-27 11:27:43 +08002987static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
2988 char __user *user_buf, size_t count, loff_t *ppos)
2989{
Frank Seidela412c802009-03-01 20:25:38 +01002990 char *buff;
Zhu Yi0209dc12007-09-27 11:27:43 +08002991 int desc = 0;
2992 int i, j;
Frank Seidela412c802009-03-01 20:25:38 +01002993 ssize_t ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08002994
Tomas Winklere227cea2008-07-18 13:53:05 +08002995 struct iwl_lq_sta *lq_sta = file->private_data;
Frank Seidela412c802009-03-01 20:25:38 +01002996
2997 buff = kmalloc(1024, GFP_KERNEL);
2998 if (!buff)
2999 return -ENOMEM;
3000
Zhu Yi0209dc12007-09-27 11:27:43 +08003001 for (i = 0; i < LQ_SIZE; i++) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07003002 desc += sprintf(buff+desc,
3003 "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
Zhu Yi0209dc12007-09-27 11:27:43 +08003004 "rate=0x%X\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08003005 lq_sta->active_tbl == i ? "*" : "x",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003006 lq_sta->lq_info[i].lq_type,
3007 lq_sta->lq_info[i].is_SGI,
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07003008 lq_sta->lq_info[i].is_ht40,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003009 lq_sta->lq_info[i].is_dup,
Wey-Yi Guy2681b202009-05-21 13:44:22 -07003010 lq_sta->is_green,
Guy Cohen39e88502008-04-23 17:14:57 -07003011 lq_sta->lq_info[i].current_rate);
Zhu Yi0209dc12007-09-27 11:27:43 +08003012 for (j = 0; j < IWL_RATE_COUNT; j++) {
3013 desc += sprintf(buff+desc,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003014 "counter=%d success=%d %%=%d\n",
3015 lq_sta->lq_info[i].win[j].counter,
3016 lq_sta->lq_info[i].win[j].success_counter,
3017 lq_sta->lq_info[i].win[j].success_ratio);
Zhu Yi0209dc12007-09-27 11:27:43 +08003018 }
3019 }
Frank Seidela412c802009-03-01 20:25:38 +01003020 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3021 kfree(buff);
3022 return ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08003023}
3024
3025static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
3026 .read = rs_sta_dbgfs_stats_table_read,
3027 .open = open_file_generic,
3028};
Zhu Yi5ae212c2007-09-27 11:27:38 +08003029
Wey-Yi Guy38167452009-05-08 13:44:43 -07003030static ssize_t rs_sta_dbgfs_rate_scale_data_read(struct file *file,
3031 char __user *user_buf, size_t count, loff_t *ppos)
3032{
3033 char buff[120];
3034 int desc = 0;
3035 ssize_t ret;
3036
3037 struct iwl_lq_sta *lq_sta = file->private_data;
3038 struct iwl_priv *priv;
3039 struct iwl_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
3040
3041 priv = lq_sta->drv;
3042
3043 if (is_Ht(tbl->lq_type))
3044 desc += sprintf(buff+desc,
3045 "Bit Rate= %d Mb/s\n",
3046 tbl->expected_tpt[lq_sta->last_txrate_idx]);
3047 else
3048 desc += sprintf(buff+desc,
3049 "Bit Rate= %d Mb/s\n",
3050 iwl_rates[lq_sta->last_txrate_idx].ieee >> 1);
3051 desc += sprintf(buff+desc,
3052 "Signal Level= %d dBm\tNoise Level= %d dBm\n",
3053 priv->last_rx_rssi, priv->last_rx_noise);
3054 desc += sprintf(buff+desc,
3055 "Tsf= 0x%llx\tBeacon time= 0x%08X\n",
3056 priv->last_tsf, priv->last_beacon_time);
3057
3058 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3059 return ret;
3060}
3061
3062static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
3063 .read = rs_sta_dbgfs_rate_scale_data_read,
3064 .open = open_file_generic,
3065};
3066
Zhu Yi93dc6462007-09-27 11:27:37 +08003067static void rs_add_debugfs(void *priv, void *priv_sta,
3068 struct dentry *dir)
3069{
Tomas Winklere227cea2008-07-18 13:53:05 +08003070 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08003071 lq_sta->rs_sta_dbgfs_scale_table_file =
Zhu Yi0209dc12007-09-27 11:27:43 +08003072 debugfs_create_file("rate_scale_table", 0600, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003073 lq_sta, &rs_sta_dbgfs_scale_table_ops);
3074 lq_sta->rs_sta_dbgfs_stats_table_file =
Zhu Yi0209dc12007-09-27 11:27:43 +08003075 debugfs_create_file("rate_stats_table", 0600, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003076 lq_sta, &rs_sta_dbgfs_stats_table_ops);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003077 lq_sta->rs_sta_dbgfs_rate_scale_data_file =
3078 debugfs_create_file("rate_scale_data", 0600, dir,
3079 lq_sta, &rs_sta_dbgfs_rate_scale_data_ops);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003080 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
3081 debugfs_create_u8("tx_agg_tid_enable", 0600, dir,
3082 &lq_sta->tx_agg_tid_en);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003083
Zhu Yi93dc6462007-09-27 11:27:37 +08003084}
3085
3086static void rs_remove_debugfs(void *priv, void *priv_sta)
3087{
Tomas Winklere227cea2008-07-18 13:53:05 +08003088 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08003089 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
3090 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003091 debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003092 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
Zhu Yi93dc6462007-09-27 11:27:37 +08003093}
3094#endif
3095
Zhu Yib481de92007-09-25 17:54:57 -07003096static struct rate_control_ops rs_ops = {
3097 .module = NULL,
3098 .name = RS_NAME,
3099 .tx_status = rs_tx_status,
3100 .get_rate = rs_get_rate,
3101 .rate_init = rs_rate_init,
Zhu Yib481de92007-09-25 17:54:57 -07003102 .alloc = rs_alloc,
3103 .free = rs_free,
3104 .alloc_sta = rs_alloc_sta,
3105 .free_sta = rs_free_sta,
Zhu Yi93dc6462007-09-27 11:27:37 +08003106#ifdef CONFIG_MAC80211_DEBUGFS
3107 .add_sta_debugfs = rs_add_debugfs,
3108 .remove_sta_debugfs = rs_remove_debugfs,
3109#endif
Zhu Yib481de92007-09-25 17:54:57 -07003110};
3111
Tomas Winklere227cea2008-07-18 13:53:05 +08003112int iwlagn_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -07003113{
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003114 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003115}
3116
Tomas Winklere227cea2008-07-18 13:53:05 +08003117void iwlagn_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -07003118{
3119 ieee80211_rate_control_unregister(&rs_ops);
3120}
3121