blob: cf4a95bae4ffb1369ca5a192919a5caf0445f8cc [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre1f447802010-01-15 13:43:41 -08003 * Copyright(c) 2005 - 2010 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/wireless.h>
31#include <net/mac80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070032
33#include <linux/netdevice.h>
34#include <linux/etherdevice.h>
35#include <linux/delay.h>
36
37#include <linux/workqueue.h>
38
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070039#include "iwl-dev.h"
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +080040#include "iwl-sta.h"
Tomas Winkler857485c2008-03-21 13:53:44 -070041#include "iwl-core.h"
Zhu Yib481de92007-09-25 17:54:57 -070042
Tomas Winklere227cea2008-07-18 13:53:05 +080043#define RS_NAME "iwl-agn-rs"
Zhu Yib481de92007-09-25 17:54:57 -070044
Guy Cohenaade00c2008-04-23 17:14:59 -070045#define NUM_TRY_BEFORE_ANT_TOGGLE 1
Zhu Yib481de92007-09-25 17:54:57 -070046#define IWL_NUMBER_TRY 1
47#define IWL_HT_NUMBER_TRY 3
48
Ben Cahill77626352007-11-29 11:09:44 +080049#define IWL_RATE_MAX_WINDOW 62 /* # tx in history window */
50#define IWL_RATE_MIN_FAILURE_TH 6 /* min failures to calc tpt */
51#define IWL_RATE_MIN_SUCCESS_TH 8 /* min successes to calc tpt */
52
Abbas, Mohamed7d049e52009-01-20 21:33:53 -080053/* max allowed rate miss before sync LQ cmd */
54#define IWL_MISSED_RATE_MAX 15
Ben Cahill77626352007-11-29 11:09:44 +080055/* max time to accum history 2 seconds */
Mohamed Abbas447fee72009-04-20 14:37:02 -070056#define IWL_RATE_SCALE_FLUSH_INTVL (3*HZ)
Zhu Yib481de92007-09-25 17:54:57 -070057
58static u8 rs_ht_to_legacy[] = {
59 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
60 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
61 IWL_RATE_6M_INDEX,
62 IWL_RATE_6M_INDEX, IWL_RATE_9M_INDEX,
63 IWL_RATE_12M_INDEX, IWL_RATE_18M_INDEX,
64 IWL_RATE_24M_INDEX, IWL_RATE_36M_INDEX,
65 IWL_RATE_48M_INDEX, IWL_RATE_54M_INDEX
66};
67
Guy Cohenaade00c2008-04-23 17:14:59 -070068static const u8 ant_toggle_lookup[] = {
69 /*ANT_NONE -> */ ANT_NONE,
70 /*ANT_A -> */ ANT_B,
71 /*ANT_B -> */ ANT_C,
72 /*ANT_AB -> */ ANT_BC,
73 /*ANT_C -> */ ANT_A,
74 /*ANT_AC -> */ ANT_AB,
75 /*ANT_BC -> */ ANT_AC,
76 /*ANT_ABC -> */ ANT_ABC,
77};
78
Tomas Winklerc79dd5b2008-03-12 16:58:50 -070079static void rs_rate_scale_perform(struct iwl_priv *priv,
Gábor Stefanik514d65c2009-04-23 19:36:08 +020080 struct sk_buff *skb,
Johannes Berg4b7679a2008-09-18 18:14:18 +020081 struct ieee80211_sta *sta,
82 struct iwl_lq_sta *lq_sta);
Wey-Yi Guy46f93812009-07-24 11:13:03 -070083static void rs_fill_link_cmd(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +080084 struct iwl_lq_sta *lq_sta, u32 rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -070085
86
Zhu Yi98d7e092007-09-27 11:27:42 +080087#ifdef CONFIG_MAC80211_DEBUGFS
Tomas Winklere227cea2008-07-18 13:53:05 +080088static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
89 u32 *rate_n_flags, int index);
Zhu Yi98d7e092007-09-27 11:27:42 +080090#else
Tomas Winklere227cea2008-07-18 13:53:05 +080091static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
92 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +080093{}
94#endif
Ben Cahill77626352007-11-29 11:09:44 +080095
Daniel C Halperine3949d62009-09-17 10:43:50 -070096/**
97 * The following tables contain the expected throughput metrics for all rates
98 *
99 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
100 *
101 * where invalid entries are zeros.
102 *
103 * CCK rates are only valid in legacy table and will only be used in G
104 * (2.4 GHz) band.
Ben Cahill77626352007-11-29 11:09:44 +0800105 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -0700106
Daniel C Halperine3949d62009-09-17 10:43:50 -0700107static s32 expected_tpt_legacy[IWL_RATE_COUNT] = {
108 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0
Zhu Yib481de92007-09-25 17:54:57 -0700109};
110
Daniel C Halperine3949d62009-09-17 10:43:50 -0700111static s32 expected_tpt_siso20MHz[4][IWL_RATE_COUNT] = {
112 {0, 0, 0, 0, 42, 0, 76, 102, 124, 158, 183, 193, 202}, /* Norm */
113 {0, 0, 0, 0, 46, 0, 82, 110, 132, 167, 192, 202, 210}, /* SGI */
114 {0, 0, 0, 0, 48, 0, 93, 135, 176, 251, 319, 351, 381}, /* AGG */
115 {0, 0, 0, 0, 53, 0, 102, 149, 193, 275, 348, 381, 413}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700116};
117
Daniel C Halperine3949d62009-09-17 10:43:50 -0700118static s32 expected_tpt_siso40MHz[4][IWL_RATE_COUNT] = {
119 {0, 0, 0, 0, 77, 0, 127, 160, 184, 220, 242, 250, 257}, /* Norm */
120 {0, 0, 0, 0, 83, 0, 135, 169, 193, 229, 250, 257, 264}, /* SGI */
121 {0, 0, 0, 0, 96, 0, 182, 259, 328, 451, 553, 598, 640}, /* AGG */
122 {0, 0, 0, 0, 106, 0, 199, 282, 357, 487, 593, 640, 683}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700123};
124
Daniel C Halperine3949d62009-09-17 10:43:50 -0700125static s32 expected_tpt_mimo2_20MHz[4][IWL_RATE_COUNT] = {
126 {0, 0, 0, 0, 74, 0, 123, 155, 179, 213, 235, 243, 250}, /* Norm */
127 {0, 0, 0, 0, 81, 0, 131, 164, 187, 221, 242, 250, 256}, /* SGI */
128 {0, 0, 0, 0, 92, 0, 175, 250, 317, 436, 534, 578, 619}, /* AGG */
129 {0, 0, 0, 0, 102, 0, 192, 273, 344, 470, 573, 619, 660}, /* AGG+SGI*/
Zhu Yib481de92007-09-25 17:54:57 -0700130};
131
Daniel C Halperine3949d62009-09-17 10:43:50 -0700132static s32 expected_tpt_mimo2_40MHz[4][IWL_RATE_COUNT] = {
133 {0, 0, 0, 0, 123, 0, 182, 214, 235, 264, 279, 285, 289}, /* Norm */
134 {0, 0, 0, 0, 131, 0, 191, 222, 242, 270, 284, 289, 293}, /* SGI */
135 {0, 0, 0, 0, 180, 0, 327, 446, 545, 708, 828, 878, 922}, /* AGG */
136 {0, 0, 0, 0, 197, 0, 355, 481, 584, 752, 872, 922, 966}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700137};
138
Daniel C Halperine3949d62009-09-17 10:43:50 -0700139static s32 expected_tpt_mimo3_20MHz[4][IWL_RATE_COUNT] = {
140 {0, 0, 0, 0, 99, 0, 153, 186, 208, 239, 256, 263, 268}, /* Norm */
141 {0, 0, 0, 0, 106, 0, 162, 194, 215, 246, 262, 268, 273}, /* SGI */
142 {0, 0, 0, 0, 134, 0, 249, 346, 431, 574, 685, 732, 775}, /* AGG */
143 {0, 0, 0, 0, 148, 0, 272, 376, 465, 614, 727, 775, 818}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700144};
145
Daniel C Halperine3949d62009-09-17 10:43:50 -0700146static s32 expected_tpt_mimo3_40MHz[4][IWL_RATE_COUNT] = {
147 {0, 0, 0, 0, 152, 0, 211, 239, 255, 279, 290, 294, 297}, /* Norm */
148 {0, 0, 0, 0, 160, 0, 219, 245, 261, 284, 294, 297, 300}, /* SGI */
149 {0, 0, 0, 0, 254, 0, 443, 584, 695, 868, 984, 1030, 1070}, /* AGG */
150 {0, 0, 0, 0, 277, 0, 478, 624, 737, 911, 1026, 1070, 1109}, /* AGG+SGI */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -0700151};
152
Wey-Yi Guy12b96812009-04-08 11:39:27 -0700153/* mbps, mcs */
Tobias Klauser79496732009-12-23 14:18:11 +0100154static const struct iwl_rate_mcs_info iwl_rate_mcs[IWL_RATE_COUNT] = {
Daniel C Halperine3949d62009-09-17 10:43:50 -0700155 { "1", "BPSK DSSS"},
156 { "2", "QPSK DSSS"},
157 {"5.5", "BPSK CCK"},
158 { "11", "QPSK CCK"},
159 { "6", "BPSK 1/2"},
160 { "9", "BPSK 1/2"},
161 { "12", "QPSK 1/2"},
162 { "18", "QPSK 3/4"},
163 { "24", "16QAM 1/2"},
164 { "36", "16QAM 3/4"},
165 { "48", "64QAM 2/3"},
166 { "54", "64QAM 3/4"},
167 { "60", "64QAM 5/6"},
Wey-Yi Guy12b96812009-04-08 11:39:27 -0700168};
169
Wey-Yi Guya9c146b2009-05-22 11:01:48 -0700170#define MCS_INDEX_PER_STREAM (8)
171
Guy Cohen39e88502008-04-23 17:14:57 -0700172static inline u8 rs_extract_rate(u32 rate_n_flags)
Zhu Yib481de92007-09-25 17:54:57 -0700173{
174 return (u8)(rate_n_flags & 0xFF);
175}
176
Tomas Winklere227cea2008-07-18 13:53:05 +0800177static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window)
Zhu Yib481de92007-09-25 17:54:57 -0700178{
179 window->data = 0;
180 window->success_counter = 0;
181 window->success_ratio = IWL_INVALID_VALUE;
182 window->counter = 0;
183 window->average_tpt = IWL_INVALID_VALUE;
184 window->stamp = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700185}
186
Guy Cohenaade00c2008-04-23 17:14:59 -0700187static inline u8 rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
188{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300189 return (ant_type & valid_antenna) == ant_type;
Guy Cohenaade00c2008-04-23 17:14:59 -0700190}
191
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200192/*
193 * removes the old data from the statistics. All data that is older than
194 * TID_MAX_TIME_DIFF, will be deleted.
195 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800196static void rs_tl_rm_old_stats(struct iwl_traffic_load *tl, u32 curr_time)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200197{
198 /* The oldest age we want to keep */
199 u32 oldest_time = curr_time - TID_MAX_TIME_DIFF;
200
201 while (tl->queue_count &&
202 (tl->time_stamp < oldest_time)) {
203 tl->total -= tl->packet_count[tl->head];
204 tl->packet_count[tl->head] = 0;
205 tl->time_stamp += TID_QUEUE_CELL_SPACING;
206 tl->queue_count--;
207 tl->head++;
208 if (tl->head >= TID_QUEUE_MAX_SIZE)
209 tl->head = 0;
210 }
211}
212
213/*
214 * increment traffic load value for tid and also remove
215 * any old values if passed the certain time period
216 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800217static u8 rs_tl_add_packet(struct iwl_lq_sta *lq_data,
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800218 struct ieee80211_hdr *hdr)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200219{
220 u32 curr_time = jiffies_to_msecs(jiffies);
221 u32 time_diff;
222 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800223 struct iwl_traffic_load *tl = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800224 u8 tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200225
Tomas Winkler417f1142008-11-12 13:14:06 -0800226 if (ieee80211_is_data_qos(hdr->frame_control)) {
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700227 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +0800228 tid = qc[0] & 0xf;
229 } else
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800230 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200231
Reinette Chatree6a6cf42009-08-13 13:30:50 -0700232 if (unlikely(tid >= TID_MAX_LOAD_COUNT))
233 return MAX_TID_COUNT;
234
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200235 tl = &lq_data->load[tid];
236
237 curr_time -= curr_time % TID_ROUND_VALUE;
238
239 /* Happens only for the first packet. Initialize the data */
240 if (!(tl->queue_count)) {
241 tl->total = 1;
242 tl->time_stamp = curr_time;
243 tl->queue_count = 1;
244 tl->head = 0;
245 tl->packet_count[0] = 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800246 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200247 }
248
249 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
250 index = time_diff / TID_QUEUE_CELL_SPACING;
251
252 /* The history is too long: remove data that is older than */
253 /* TID_MAX_TIME_DIFF */
254 if (index >= TID_QUEUE_MAX_SIZE)
255 rs_tl_rm_old_stats(tl, curr_time);
256
257 index = (tl->head + index) % TID_QUEUE_MAX_SIZE;
258 tl->packet_count[index] = tl->packet_count[index] + 1;
259 tl->total = tl->total + 1;
260
261 if ((index + 1) > tl->queue_count)
262 tl->queue_count = index + 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800263
264 return tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200265}
266
267/*
268 get the traffic load value for tid
269*/
Tomas Winklere227cea2008-07-18 13:53:05 +0800270static u32 rs_tl_get_load(struct iwl_lq_sta *lq_data, u8 tid)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200271{
272 u32 curr_time = jiffies_to_msecs(jiffies);
273 u32 time_diff;
274 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800275 struct iwl_traffic_load *tl = NULL;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200276
277 if (tid >= TID_MAX_LOAD_COUNT)
278 return 0;
279
280 tl = &(lq_data->load[tid]);
281
282 curr_time -= curr_time % TID_ROUND_VALUE;
283
284 if (!(tl->queue_count))
285 return 0;
286
287 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
288 index = time_diff / TID_QUEUE_CELL_SPACING;
289
290 /* The history is too long: remove data that is older than */
291 /* TID_MAX_TIME_DIFF */
292 if (index >= TID_QUEUE_MAX_SIZE)
293 rs_tl_rm_old_stats(tl, curr_time);
294
295 return tl->total;
296}
297
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700298static int rs_tl_turn_on_agg_for_tid(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +0800299 struct iwl_lq_sta *lq_data, u8 tid,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200300 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200301{
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700302 int ret = -EAGAIN;
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800303
Johannes Bergff550cb2008-09-11 03:17:05 +0200304 if (rs_tl_get_load(lq_data, tid) > IWL_AGG_LOAD_THRESHOLD) {
Tomas Winklere1623442009-01-27 14:27:56 -0800305 IWL_DEBUG_HT(priv, "Starting Tx agg: STA: %pM tid: %d\n",
Johannes Berge1749612008-10-27 15:59:26 -0700306 sta->addr, tid);
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800307 ret = ieee80211_start_tx_ba_session(sta, tid);
308 if (ret == -EAGAIN) {
309 /*
310 * driver and mac80211 is out of sync
311 * this might be cause by reloading firmware
312 * stop the tx ba session here
313 */
314 IWL_DEBUG_HT(priv, "Fail start Tx agg on tid: %d\n",
315 tid);
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700316 ieee80211_stop_tx_ba_session(sta, tid,
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800317 WLAN_BACK_INITIATOR);
318 }
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700319 } else
320 IWL_ERR(priv, "Fail finding valid aggregation tid: %d\n", tid);
321 return ret;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200322}
323
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700324static void rs_tl_turn_on_agg(struct iwl_priv *priv, u8 tid,
Tomas Winklere227cea2008-07-18 13:53:05 +0800325 struct iwl_lq_sta *lq_data,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200326 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200327{
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700328 if ((tid < TID_MAX_LOAD_COUNT) &&
329 !rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta)) {
330 if (priv->cfg->use_rts_for_ht) {
331 /*
332 * switch to RTS/CTS if it is the prefer protection
333 * method for HT traffic
334 */
335 IWL_DEBUG_HT(priv, "use RTS/CTS protection for HT\n");
336 priv->staging_rxon.flags &= ~RXON_FLG_SELF_CTS_EN;
337 iwlcore_commit_rxon(priv);
338 }
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700339 }
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200340}
341
Guy Cohen39e88502008-04-23 17:14:57 -0700342static inline int get_num_of_ant_from_rate(u32 rate_n_flags)
Guy Cohenfde0db32008-04-21 15:42:01 -0700343{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300344 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
345 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
346 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
Guy Cohenfde0db32008-04-21 15:42:01 -0700347}
348
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700349/*
350 * Static function to get the expected throughput from an iwl_scale_tbl_info
351 * that wraps a NULL pointer check
352 */
353static s32 get_expected_tpt(struct iwl_scale_tbl_info *tbl, int rs_index)
354{
355 if (tbl->expected_tpt)
356 return tbl->expected_tpt[rs_index];
357 return 0;
358}
359
Ben Cahill77626352007-11-29 11:09:44 +0800360/**
361 * rs_collect_tx_data - Update the success/failure sliding window
362 *
363 * We keep a sliding window of the last 62 packets transmitted
364 * at this rate. window->data contains the bitmask of successful
365 * packets.
366 */
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700367static int rs_collect_tx_data(struct iwl_scale_tbl_info *tbl,
368 int scale_index, int attempts, int successes)
Zhu Yib481de92007-09-25 17:54:57 -0700369{
Tomas Winklere227cea2008-07-18 13:53:05 +0800370 struct iwl_rate_scale_data *window = NULL;
Guy Cohen39e88502008-04-23 17:14:57 -0700371 static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1));
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700372 s32 fail_count, tpt;
Zhu Yib481de92007-09-25 17:54:57 -0700373
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800374 if (scale_index < 0 || scale_index >= IWL_RATE_COUNT)
375 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700376
Daniel C Halperine3949d62009-09-17 10:43:50 -0700377 /* Select window for current tx bit rate */
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700378 window = &(tbl->win[scale_index]);
379
380 /* Get expected throughput */
381 tpt = get_expected_tpt(tbl, scale_index);
Zhu Yib481de92007-09-25 17:54:57 -0700382
Ben Cahill77626352007-11-29 11:09:44 +0800383 /*
384 * Keep track of only the latest 62 tx frame attempts in this rate's
385 * history window; anything older isn't really relevant any more.
386 * If we have filled up the sliding window, drop the oldest attempt;
387 * if the oldest attempt (highest bit in bitmap) shows "success",
388 * subtract "1" from the success counter (this is the main reason
389 * we keep these bitmaps!).
390 */
Daniel C Halperine3949d62009-09-17 10:43:50 -0700391 while (attempts > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700392 if (window->counter >= IWL_RATE_MAX_WINDOW) {
393
394 /* remove earliest */
395 window->counter = IWL_RATE_MAX_WINDOW - 1;
396
Ron Rindjunsky99556432008-01-28 14:07:25 +0200397 if (window->data & mask) {
398 window->data &= ~mask;
Guy Cohen39e88502008-04-23 17:14:57 -0700399 window->success_counter--;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200400 }
Zhu Yib481de92007-09-25 17:54:57 -0700401 }
Zhu Yib481de92007-09-25 17:54:57 -0700402
Ron Rindjunsky99556432008-01-28 14:07:25 +0200403 /* Increment frames-attempted counter */
404 window->counter++;
Ben Cahill77626352007-11-29 11:09:44 +0800405
Daniel C Halperine3949d62009-09-17 10:43:50 -0700406 /* Shift bitmap by one frame to throw away oldest history */
Guy Cohen90d77952008-09-09 10:54:53 +0800407 window->data <<= 1;
Daniel C Halperine3949d62009-09-17 10:43:50 -0700408
409 /* Mark the most recent #successes attempts as successful */
Ron Rindjunsky99556432008-01-28 14:07:25 +0200410 if (successes > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700411 window->success_counter++;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200412 window->data |= 0x1;
413 successes--;
414 }
415
Daniel C Halperine3949d62009-09-17 10:43:50 -0700416 attempts--;
Zhu Yib481de92007-09-25 17:54:57 -0700417 }
418
Ben Cahill77626352007-11-29 11:09:44 +0800419 /* Calculate current success ratio, avoid divide-by-0! */
Zhu Yib481de92007-09-25 17:54:57 -0700420 if (window->counter > 0)
421 window->success_ratio = 128 * (100 * window->success_counter)
422 / window->counter;
423 else
424 window->success_ratio = IWL_INVALID_VALUE;
425
426 fail_count = window->counter - window->success_counter;
427
Ben Cahill77626352007-11-29 11:09:44 +0800428 /* Calculate average throughput, if we have enough history. */
Zhu Yib481de92007-09-25 17:54:57 -0700429 if ((fail_count >= IWL_RATE_MIN_FAILURE_TH) ||
430 (window->success_counter >= IWL_RATE_MIN_SUCCESS_TH))
431 window->average_tpt = (window->success_ratio * tpt + 64) / 128;
432 else
433 window->average_tpt = IWL_INVALID_VALUE;
434
Ben Cahill77626352007-11-29 11:09:44 +0800435 /* Tag this window as having been updated */
Zhu Yib481de92007-09-25 17:54:57 -0700436 window->stamp = jiffies;
437
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800438 return 0;
Zhu Yib481de92007-09-25 17:54:57 -0700439}
440
Ben Cahill77626352007-11-29 11:09:44 +0800441/*
442 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
443 */
Guy Cohen39e88502008-04-23 17:14:57 -0700444/* FIXME:RS:remove this function and put the flags statically in the table */
Tomas Winkler978785a2008-12-19 10:37:31 +0800445static u32 rate_n_flags_from_tbl(struct iwl_priv *priv,
446 struct iwl_scale_tbl_info *tbl,
447 int index, u8 use_green)
Zhu Yib481de92007-09-25 17:54:57 -0700448{
Guy Cohen39e88502008-04-23 17:14:57 -0700449 u32 rate_n_flags = 0;
450
Zhu Yib481de92007-09-25 17:54:57 -0700451 if (is_legacy(tbl->lq_type)) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800452 rate_n_flags = iwl_rates[index].plcp;
Zhu Yib481de92007-09-25 17:54:57 -0700453 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -0700454 rate_n_flags |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700455
Guy Cohenfde0db32008-04-21 15:42:01 -0700456 } else if (is_Ht(tbl->lq_type)) {
457 if (index > IWL_LAST_OFDM_RATE) {
Tomas Winkler978785a2008-12-19 10:37:31 +0800458 IWL_ERR(priv, "Invalid HT rate index %d\n", index);
Zhu Yib481de92007-09-25 17:54:57 -0700459 index = IWL_LAST_OFDM_RATE;
Guy Cohenfde0db32008-04-21 15:42:01 -0700460 }
Guy Cohen39e88502008-04-23 17:14:57 -0700461 rate_n_flags = RATE_MCS_HT_MSK;
Guy Cohenfde0db32008-04-21 15:42:01 -0700462
463 if (is_siso(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800464 rate_n_flags |= iwl_rates[index].plcp_siso;
Guy Cohenfde0db32008-04-21 15:42:01 -0700465 else if (is_mimo2(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800466 rate_n_flags |= iwl_rates[index].plcp_mimo2;
Guy Cohenfde0db32008-04-21 15:42:01 -0700467 else
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800468 rate_n_flags |= iwl_rates[index].plcp_mimo3;
Zhu Yib481de92007-09-25 17:54:57 -0700469 } else {
Tomas Winkler978785a2008-12-19 10:37:31 +0800470 IWL_ERR(priv, "Invalid tbl->lq_type %d\n", tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700471 }
472
Guy Cohen39e88502008-04-23 17:14:57 -0700473 rate_n_flags |= ((tbl->ant_type << RATE_MCS_ANT_POS) &
Guy Cohenfde0db32008-04-21 15:42:01 -0700474 RATE_MCS_ANT_ABC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700475
Guy Cohen39e88502008-04-23 17:14:57 -0700476 if (is_Ht(tbl->lq_type)) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700477 if (tbl->is_ht40) {
Guy Cohen39e88502008-04-23 17:14:57 -0700478 if (tbl->is_dup)
479 rate_n_flags |= RATE_MCS_DUP_MSK;
480 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700481 rate_n_flags |= RATE_MCS_HT40_MSK;
Guy Cohen39e88502008-04-23 17:14:57 -0700482 }
483 if (tbl->is_SGI)
484 rate_n_flags |= RATE_MCS_SGI_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700485
Guy Cohen39e88502008-04-23 17:14:57 -0700486 if (use_green) {
487 rate_n_flags |= RATE_MCS_GF_MSK;
488 if (is_siso(tbl->lq_type) && tbl->is_SGI) {
489 rate_n_flags &= ~RATE_MCS_SGI_MSK;
Tomas Winkler978785a2008-12-19 10:37:31 +0800490 IWL_ERR(priv, "GF was set with SGI:SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -0700491 }
492 }
Zhu Yib481de92007-09-25 17:54:57 -0700493 }
Guy Cohen39e88502008-04-23 17:14:57 -0700494 return rate_n_flags;
Zhu Yib481de92007-09-25 17:54:57 -0700495}
496
Ben Cahill77626352007-11-29 11:09:44 +0800497/*
498 * Interpret uCode API's rate_n_flags format,
499 * fill "search" or "active" tx mode table.
500 */
Guy Cohen39e88502008-04-23 17:14:57 -0700501static int rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
Johannes Berg8318d782008-01-24 19:38:38 +0100502 enum ieee80211_band band,
Tomas Winklere227cea2008-07-18 13:53:05 +0800503 struct iwl_scale_tbl_info *tbl,
Zhu Yib481de92007-09-25 17:54:57 -0700504 int *rate_idx)
505{
Guy Cohen39e88502008-04-23 17:14:57 -0700506 u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
507 u8 num_of_ant = get_num_of_ant_from_rate(rate_n_flags);
508 u8 mcs;
Zhu Yib481de92007-09-25 17:54:57 -0700509
Tomas Winklere7d326a2008-06-12 09:47:11 +0800510 *rate_idx = iwl_hwrate_to_plcp_idx(rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700511
Guy Cohenfde0db32008-04-21 15:42:01 -0700512 if (*rate_idx == IWL_RATE_INVALID) {
Zhu Yib481de92007-09-25 17:54:57 -0700513 *rate_idx = -1;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800514 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700515 }
Ben Cahill77626352007-11-29 11:09:44 +0800516 tbl->is_SGI = 0; /* default legacy setup */
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700517 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700518 tbl->is_dup = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -0700519 tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
520 tbl->lq_type = LQ_NONE;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700521 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700522
Ben Cahill77626352007-11-29 11:09:44 +0800523 /* legacy rate format */
Guy Cohen39e88502008-04-23 17:14:57 -0700524 if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700525 if (num_of_ant == 1) {
Johannes Berg8318d782008-01-24 19:38:38 +0100526 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700527 tbl->lq_type = LQ_A;
528 else
529 tbl->lq_type = LQ_G;
Zhu Yib481de92007-09-25 17:54:57 -0700530 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700531 /* HT rate format */
Zhu Yib481de92007-09-25 17:54:57 -0700532 } else {
Guy Cohen39e88502008-04-23 17:14:57 -0700533 if (rate_n_flags & RATE_MCS_SGI_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700534 tbl->is_SGI = 1;
535
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700536 if ((rate_n_flags & RATE_MCS_HT40_MSK) ||
Guy Cohen39e88502008-04-23 17:14:57 -0700537 (rate_n_flags & RATE_MCS_DUP_MSK))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700538 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -0700539
Guy Cohen39e88502008-04-23 17:14:57 -0700540 if (rate_n_flags & RATE_MCS_DUP_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700541 tbl->is_dup = 1;
Guy Cohenfde0db32008-04-21 15:42:01 -0700542
Guy Cohen39e88502008-04-23 17:14:57 -0700543 mcs = rs_extract_rate(rate_n_flags);
Guy Cohenfde0db32008-04-21 15:42:01 -0700544
Guy Cohen39e88502008-04-23 17:14:57 -0700545 /* SISO */
546 if (mcs <= IWL_RATE_SISO_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700547 if (num_of_ant == 1)
548 tbl->lq_type = LQ_SISO; /*else NONE*/
549 /* MIMO2 */
Guy Cohen39e88502008-04-23 17:14:57 -0700550 } else if (mcs <= IWL_RATE_MIMO2_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700551 if (num_of_ant == 2)
552 tbl->lq_type = LQ_MIMO2;
553 /* MIMO3 */
554 } else {
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700555 if (num_of_ant == 3) {
556 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Guy Cohenfde0db32008-04-21 15:42:01 -0700557 tbl->lq_type = LQ_MIMO3;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700558 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700559 }
Zhu Yib481de92007-09-25 17:54:57 -0700560 }
561 return 0;
562}
Guy Cohenaade00c2008-04-23 17:14:59 -0700563
564/* switch to another antenna/antennas and return 1 */
565/* if no other valid antenna found, return 0 */
566static int rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
Tomas Winklere227cea2008-07-18 13:53:05 +0800567 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700568{
Guy Cohenaade00c2008-04-23 17:14:59 -0700569 u8 new_ant_type;
570
571 if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
572 return 0;
573
574 if (!rs_is_valid_ant(valid_ant, tbl->ant_type))
575 return 0;
576
577 new_ant_type = ant_toggle_lookup[tbl->ant_type];
578
579 while ((new_ant_type != tbl->ant_type) &&
580 !rs_is_valid_ant(valid_ant, new_ant_type))
581 new_ant_type = ant_toggle_lookup[new_ant_type];
582
583 if (new_ant_type == tbl->ant_type)
584 return 0;
585
586 tbl->ant_type = new_ant_type;
587 *rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
588 *rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
589 return 1;
Zhu Yib481de92007-09-25 17:54:57 -0700590}
591
Daniel C Halperinb2617932009-08-13 13:30:59 -0700592/**
593 * Green-field mode is valid if the station supports it and
594 * there are no non-GF stations present in the BSS.
595 */
596static inline u8 rs_use_green(struct ieee80211_sta *sta,
Johannes Bergfad95bf2009-09-11 10:38:15 -0700597 struct iwl_ht_config *ht_conf)
Zhu Yib481de92007-09-25 17:54:57 -0700598{
Daniel C Halperinb2617932009-08-13 13:30:59 -0700599 return (sta->ht_cap.cap & IEEE80211_HT_CAP_GRN_FLD) &&
600 !(ht_conf->non_GF_STA_present);
Guy Cohenf935a6d2008-04-23 17:15:02 -0700601}
Zhu Yib481de92007-09-25 17:54:57 -0700602
603/**
604 * rs_get_supported_rates - get the available rates
605 *
606 * if management frame or broadcast frame only return
607 * basic available rates.
608 *
609 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800610static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
611 struct ieee80211_hdr *hdr,
612 enum iwl_table_type rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700613{
Guy Coheneecd6e52008-04-23 17:14:58 -0700614 if (is_legacy(rate_type)) {
615 return lq_sta->active_legacy_rate;
616 } else {
617 if (is_siso(rate_type))
618 return lq_sta->active_siso_rate;
619 else if (is_mimo2(rate_type))
620 return lq_sta->active_mimo2_rate;
621 else
622 return lq_sta->active_mimo3_rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800623 }
Zhu Yib481de92007-09-25 17:54:57 -0700624}
625
Ester Kummerbf403db2008-05-05 10:22:40 +0800626static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
627 int rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700628{
629 u8 high = IWL_RATE_INVALID;
630 u8 low = IWL_RATE_INVALID;
631
Ian Schram01ebd062007-10-25 17:15:22 +0800632 /* 802.11A or ht walks to the next literal adjacent rate in
Zhu Yib481de92007-09-25 17:54:57 -0700633 * the rate table */
634 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
635 int i;
636 u32 mask;
637
638 /* Find the previous rate that is in the rate mask */
639 i = index - 1;
640 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
641 if (rate_mask & mask) {
642 low = i;
643 break;
644 }
645 }
646
647 /* Find the next rate that is in the rate mask */
648 i = index + 1;
649 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
650 if (rate_mask & mask) {
651 high = i;
652 break;
653 }
654 }
655
656 return (high << 8) | low;
657 }
658
659 low = index;
660 while (low != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800661 low = iwl_rates[low].prev_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700662 if (low == IWL_RATE_INVALID)
663 break;
664 if (rate_mask & (1 << low))
665 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800666 IWL_DEBUG_RATE(priv, "Skipping masked lower rate: %d\n", low);
Zhu Yib481de92007-09-25 17:54:57 -0700667 }
668
669 high = index;
670 while (high != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800671 high = iwl_rates[high].next_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700672 if (high == IWL_RATE_INVALID)
673 break;
674 if (rate_mask & (1 << high))
675 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800676 IWL_DEBUG_RATE(priv, "Skipping masked higher rate: %d\n", high);
Zhu Yib481de92007-09-25 17:54:57 -0700677 }
678
679 return (high << 8) | low;
680}
681
Tomas Winklere227cea2008-07-18 13:53:05 +0800682static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta,
683 struct iwl_scale_tbl_info *tbl,
684 u8 scale_index, u8 ht_possible)
Zhu Yib481de92007-09-25 17:54:57 -0700685{
Zhu Yib481de92007-09-25 17:54:57 -0700686 s32 low;
687 u16 rate_mask;
688 u16 high_low;
689 u8 switch_to_legacy = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800690 u8 is_green = lq_sta->is_green;
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700691 struct iwl_priv *priv = lq_sta->drv;
Zhu Yib481de92007-09-25 17:54:57 -0700692
693 /* check if we need to switch from HT to legacy rates.
694 * assumption is that mandatory rates (1Mbps or 6Mbps)
695 * are always supported (spec demand) */
696 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_index)) {
697 switch_to_legacy = 1;
698 scale_index = rs_ht_to_legacy[scale_index];
Johannes Berg8318d782008-01-24 19:38:38 +0100699 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700700 tbl->lq_type = LQ_A;
701 else
702 tbl->lq_type = LQ_G;
703
Guy Cohen69fdb302008-04-23 17:15:01 -0700704 if (num_of_ant(tbl->ant_type) > 1)
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700705 tbl->ant_type =
706 first_antenna(priv->hw_params.valid_tx_ant);
Zhu Yib481de92007-09-25 17:54:57 -0700707
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700708 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700709 tbl->is_SGI = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700710 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700711 }
712
Guy Coheneecd6e52008-04-23 17:14:58 -0700713 rate_mask = rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700714
Ben Cahill77626352007-11-29 11:09:44 +0800715 /* Mask with station rate restriction */
Zhu Yib481de92007-09-25 17:54:57 -0700716 if (is_legacy(tbl->lq_type)) {
Ben Cahill77626352007-11-29 11:09:44 +0800717 /* supp_rates has no CCK bits in A mode */
Johannes Berg8318d782008-01-24 19:38:38 +0100718 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700719 rate_mask = (u16)(rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -0800720 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -0700721 else
Tomas Winklerc33104f2008-01-14 17:46:21 -0800722 rate_mask = (u16)(rate_mask & lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -0700723 }
724
Ben Cahill77626352007-11-29 11:09:44 +0800725 /* If we switched from HT to legacy, check current rate */
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800726 if (switch_to_legacy && (rate_mask & (1 << scale_index))) {
Guy Cohen39e88502008-04-23 17:14:57 -0700727 low = scale_index;
728 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700729 }
730
Ester Kummerbf403db2008-05-05 10:22:40 +0800731 high_low = rs_get_adjacent_rate(lq_sta->drv, scale_index, rate_mask,
732 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700733 low = high_low & 0xff;
734
Guy Cohen39e88502008-04-23 17:14:57 -0700735 if (low == IWL_RATE_INVALID)
736 low = scale_index;
737
738out:
Tomas Winkler978785a2008-12-19 10:37:31 +0800739 return rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
Zhu Yib481de92007-09-25 17:54:57 -0700740}
741
Ben Cahill77626352007-11-29 11:09:44 +0800742/*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700743 * Simple function to compare two rate scale table types
744 */
745static bool table_type_matches(struct iwl_scale_tbl_info *a,
746 struct iwl_scale_tbl_info *b)
747{
748 return (a->lq_type == b->lq_type) && (a->ant_type == b->ant_type) &&
749 (a->is_SGI == b->is_SGI);
750}
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700751
752/*
Ben Cahill77626352007-11-29 11:09:44 +0800753 * mac80211 sends us Tx status
754 */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200755static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband,
756 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200757 struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700758{
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700759 int legacy_success;
760 int retries;
761 int rs_index, mac_index, i;
Tomas Winkler417f1142008-11-12 13:14:06 -0800762 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700763 struct iwl_link_quality_cmd *table;
Zhu Yib481de92007-09-25 17:54:57 -0700764 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200765 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
Johannes Berge039fa42008-05-15 12:55:29 +0200766 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Daniel C Halperin50273092009-08-28 09:44:45 -0700767 enum mac80211_rate_control_flags mac_flags;
Guy Cohen39e88502008-04-23 17:14:57 -0700768 u32 tx_rate;
Tomas Winklere227cea2008-07-18 13:53:05 +0800769 struct iwl_scale_tbl_info tbl_type;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700770 struct iwl_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
Zhu Yib481de92007-09-25 17:54:57 -0700771
Tomas Winklere1623442009-01-27 14:27:56 -0800772 IWL_DEBUG_RATE_LIMIT(priv, "get frame ack response, update rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -0700773
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800774 /* Treat uninitialized rate scaling data same as non-existing. */
775 if (!lq_sta) {
776 IWL_DEBUG_RATE(priv, "Station rate scaling not created yet.\n");
777 return;
778 } else if (!lq_sta->drv) {
779 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
780 return;
781 }
782
Tomas Winkler417f1142008-11-12 13:14:06 -0800783 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200784 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -0700785 return;
786
Daniel C Halperine3949d62009-09-17 10:43:50 -0700787 /* This packet was aggregated but doesn't carry status info */
Johannes Berge039fa42008-05-15 12:55:29 +0200788 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
789 !(info->flags & IEEE80211_TX_STAT_AMPDU))
Ron Rindjunsky99556432008-01-28 14:07:25 +0200790 return;
791
Ben Cahill77626352007-11-29 11:09:44 +0800792 /*
793 * Ignore this Tx frame response if its initial rate doesn't match
794 * that of latest Link Quality command. There may be stragglers
795 * from a previous Link Quality command, but we're no longer interested
796 * in those; they're either from the "active" mode while we're trying
797 * to check "search" mode, or a prior "search" mode after we've moved
798 * to a new "search" mode (which might become the new "active" mode).
799 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700800 table = &lq_sta->lq;
Guy Cohen39e88502008-04-23 17:14:57 -0700801 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
802 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800803 if (priv->band == IEEE80211_BAND_5GHZ)
804 rs_index -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin50273092009-08-28 09:44:45 -0700805 mac_flags = info->status.rates[0].flags;
806 mac_index = info->status.rates[0].idx;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700807 /* For HT packets, map MCS to PLCP */
808 if (mac_flags & IEEE80211_TX_RC_MCS) {
809 mac_index &= RATE_MCS_CODE_MSK; /* Remove # of streams */
810 if (mac_index >= (IWL_RATE_9M_INDEX - IWL_FIRST_OFDM_RATE))
811 mac_index++;
Daniel C Halperin392a0ba2009-09-11 10:38:08 -0700812 /*
813 * mac80211 HT index is always zero-indexed; we need to move
814 * HT OFDM rates after CCK rates in 2.4 GHz band
815 */
816 if (priv->band == IEEE80211_BAND_2GHZ)
817 mac_index += IWL_FIRST_OFDM_RATE;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700818 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700819 /* Here we actually compare this rate to the latest LQ command */
Daniel C Halperin50273092009-08-28 09:44:45 -0700820 if ((mac_index < 0) ||
821 (tbl_type.is_SGI != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI)) ||
822 (tbl_type.is_ht40 != !!(mac_flags & IEEE80211_TX_RC_40_MHZ_WIDTH)) ||
823 (tbl_type.is_dup != !!(mac_flags & IEEE80211_TX_RC_DUP_DATA)) ||
Johannes Berge6a98542008-10-21 12:40:02 +0200824 (tbl_type.ant_type != info->antenna_sel_tx) ||
Daniel C Halperin50273092009-08-28 09:44:45 -0700825 (!!(tx_rate & RATE_MCS_HT_MSK) != !!(mac_flags & IEEE80211_TX_RC_MCS)) ||
826 (!!(tx_rate & RATE_MCS_GF_MSK) != !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD)) ||
Daniel C Halperin31513be2009-08-28 09:44:47 -0700827 (rs_index != mac_index)) {
828 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 -0700829 /*
830 * Since rates mis-match, the last LQ command may have failed.
831 * After IWL_MISSED_RATE_MAX mis-matches, resync the uCode with
832 * ... driver.
Mohamed Abbasd5e49032008-12-12 08:22:15 -0800833 */
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800834 lq_sta->missed_rate_counter++;
835 if (lq_sta->missed_rate_counter > IWL_MISSED_RATE_MAX) {
836 lq_sta->missed_rate_counter = 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800837 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800838 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700839 /* Regardless, ignore this status info for outdated rate */
840 return;
841 } else
842 /* Rate did match, so reset the missed_rate_counter */
843 lq_sta->missed_rate_counter = 0;
844
845 /* Figure out if rate scale algorithm is in active or search table */
846 if (table_type_matches(&tbl_type,
847 &(lq_sta->lq_info[lq_sta->active_tbl]))) {
848 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
849 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
850 } else if (table_type_matches(&tbl_type,
851 &lq_sta->lq_info[1 - lq_sta->active_tbl])) {
852 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
853 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
854 } else {
855 IWL_DEBUG_RATE(priv, "Neither active nor search matches tx rate\n");
856 return;
Zhu Yib481de92007-09-25 17:54:57 -0700857 }
Zhu Yib481de92007-09-25 17:54:57 -0700858
Ben Cahill77626352007-11-29 11:09:44 +0800859 /*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700860 * Updating the frame history depends on whether packets were
861 * aggregated.
862 *
863 * For aggregation, all packets were transmitted at the same rate, the
864 * first index into rate scale table.
Ben Cahill77626352007-11-29 11:09:44 +0800865 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700866 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
867 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
868 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type,
869 &rs_index);
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700870 rs_collect_tx_data(curr_tbl, rs_index,
Daniel Halperine3a3cd82010-04-18 09:27:58 -0700871 info->status.ampdu_len,
872 info->status.ampdu_ack_len);
Zhu Yib481de92007-09-25 17:54:57 -0700873
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700874 /* Update success/fail counts if not searching for new mode */
875 if (lq_sta->stay_in_tbl) {
Daniel Halperine3a3cd82010-04-18 09:27:58 -0700876 lq_sta->total_success += info->status.ampdu_ack_len;
877 lq_sta->total_failed += (info->status.ampdu_len -
878 info->status.ampdu_ack_len);
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700879 }
880 } else {
881 /*
882 * For legacy, update frame history with for each Tx retry.
883 */
884 retries = info->status.rates[0].count - 1;
885 /* HW doesn't send more than 15 retries */
886 retries = min(retries, 15);
887
888 /* The last transmission may have been successful */
889 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
890 /* Collect data for each rate used during failed TX attempts */
891 for (i = 0; i <= retries; ++i) {
892 tx_rate = le32_to_cpu(table->rs_table[i].rate_n_flags);
893 rs_get_tbl_info_from_mcs(tx_rate, priv->band,
894 &tbl_type, &rs_index);
895 /*
896 * Only collect stats if retried rate is in the same RS
897 * table as active/search.
898 */
899 if (table_type_matches(&tbl_type, curr_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700900 tmp_tbl = curr_tbl;
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700901 else if (table_type_matches(&tbl_type, other_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700902 tmp_tbl = other_tbl;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200903 else
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700904 continue;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700905 rs_collect_tx_data(tmp_tbl, rs_index, 1,
906 i < retries ? 0 : legacy_success);
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700907 }
908
909 /* Update success/fail counts if not searching for new mode */
910 if (lq_sta->stay_in_tbl) {
911 lq_sta->total_success += legacy_success;
912 lq_sta->total_failed += retries + (1 - legacy_success);
Ron Rindjunsky99556432008-01-28 14:07:25 +0200913 }
Zhu Yib481de92007-09-25 17:54:57 -0700914 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700915 /* The last TX rate is cached in lq_sta; it's set in if/else above */
916 lq_sta->last_rate_n_flags = tx_rate;
Zhu Yib481de92007-09-25 17:54:57 -0700917
Ben Cahill77626352007-11-29 11:09:44 +0800918 /* See if there's a better rate or modulation mode to try. */
Abbas, Mohamedc338ba32009-01-21 10:58:02 -0800919 if (sta && sta->supp_rates[sband->band])
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200920 rs_rate_scale_perform(priv, skb, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -0700921}
922
Ben Cahill77626352007-11-29 11:09:44 +0800923/*
924 * Begin a period of staying with a selected modulation mode.
925 * Set "stay_in_tbl" flag to prevent any mode switches.
926 * Set frame tx success limits according to legacy vs. high-throughput,
927 * and reset overall (spanning all rates) tx success history statistics.
928 * These control how long we stay using same modulation mode before
929 * searching for a new mode.
930 */
Ester Kummerbf403db2008-05-05 10:22:40 +0800931static void rs_set_stay_in_table(struct iwl_priv *priv, u8 is_legacy,
Tomas Winklere227cea2008-07-18 13:53:05 +0800932 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700933{
Tomas Winklere1623442009-01-27 14:27:56 -0800934 IWL_DEBUG_RATE(priv, "we are staying in the same table\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -0800935 lq_sta->stay_in_tbl = 1; /* only place this gets set */
Zhu Yib481de92007-09-25 17:54:57 -0700936 if (is_legacy) {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800937 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
938 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
939 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700940 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800941 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
942 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
943 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700944 }
Tomas Winklerc33104f2008-01-14 17:46:21 -0800945 lq_sta->table_count = 0;
946 lq_sta->total_failed = 0;
947 lq_sta->total_success = 0;
Mohamed Abbas447fee72009-04-20 14:37:02 -0700948 lq_sta->flush_timer = jiffies;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700949 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700950}
951
Ben Cahill77626352007-11-29 11:09:44 +0800952/*
953 * Find correct throughput table for given mode of modulation
954 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800955static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
956 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700957{
Daniel C Halperine3949d62009-09-17 10:43:50 -0700958 /* Used to choose among HT tables */
959 s32 (*ht_tbl_pointer)[IWL_RATE_COUNT];
960
961 /* Check for invalid LQ type */
962 if (WARN_ON_ONCE(!is_legacy(tbl->lq_type) && !is_Ht(tbl->lq_type))) {
963 tbl->expected_tpt = expected_tpt_legacy;
964 return;
965 }
966
967 /* Legacy rates have only one table */
Zhu Yib481de92007-09-25 17:54:57 -0700968 if (is_legacy(tbl->lq_type)) {
Daniel C Halperine3949d62009-09-17 10:43:50 -0700969 tbl->expected_tpt = expected_tpt_legacy;
970 return;
971 }
972
973 /* Choose among many HT tables depending on number of streams
974 * (SISO/MIMO2/MIMO3), channel width (20/40), SGI, and aggregation
975 * status */
976 if (is_siso(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
977 ht_tbl_pointer = expected_tpt_siso20MHz;
978 else if (is_siso(tbl->lq_type))
979 ht_tbl_pointer = expected_tpt_siso40MHz;
980 else if (is_mimo2(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
981 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
982 else if (is_mimo2(tbl->lq_type))
983 ht_tbl_pointer = expected_tpt_mimo2_40MHz;
984 else if (is_mimo3(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
985 ht_tbl_pointer = expected_tpt_mimo3_20MHz;
986 else /* if (is_mimo3(tbl->lq_type)) <-- must be true */
987 ht_tbl_pointer = expected_tpt_mimo3_40MHz;
988
989 if (!tbl->is_SGI && !lq_sta->is_agg) /* Normal */
990 tbl->expected_tpt = ht_tbl_pointer[0];
991 else if (tbl->is_SGI && !lq_sta->is_agg) /* SGI */
992 tbl->expected_tpt = ht_tbl_pointer[1];
993 else if (!tbl->is_SGI && lq_sta->is_agg) /* AGG */
994 tbl->expected_tpt = ht_tbl_pointer[2];
995 else /* AGG+SGI */
996 tbl->expected_tpt = ht_tbl_pointer[3];
Zhu Yib481de92007-09-25 17:54:57 -0700997}
998
Ben Cahill77626352007-11-29 11:09:44 +0800999/*
1000 * Find starting rate for new "search" high-throughput mode of modulation.
1001 * Goal is to find lowest expected rate (under perfect conditions) that is
1002 * above the current measured throughput of "active" mode, to give new mode
1003 * a fair chance to prove itself without too many challenges.
1004 *
1005 * This gets called when transitioning to more aggressive modulation
1006 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1007 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1008 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1009 * bit rate will typically need to increase, but not if performance was bad.
1010 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001011static s32 rs_get_best_rate(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001012 struct iwl_lq_sta *lq_sta,
1013 struct iwl_scale_tbl_info *tbl, /* "search" */
Guy Cohenf935a6d2008-04-23 17:15:02 -07001014 u16 rate_mask, s8 index)
Zhu Yib481de92007-09-25 17:54:57 -07001015{
Ben Cahill77626352007-11-29 11:09:44 +08001016 /* "active" values */
Tomas Winklere227cea2008-07-18 13:53:05 +08001017 struct iwl_scale_tbl_info *active_tbl =
Tomas Winklerc33104f2008-01-14 17:46:21 -08001018 &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001019 s32 active_sr = active_tbl->win[index].success_ratio;
Zhu Yib481de92007-09-25 17:54:57 -07001020 s32 active_tpt = active_tbl->expected_tpt[index];
Ben Cahill77626352007-11-29 11:09:44 +08001021
1022 /* expected "search" throughput */
1023 s32 *tpt_tbl = tbl->expected_tpt;
1024
1025 s32 new_rate, high, low, start_hi;
Zhu Yib481de92007-09-25 17:54:57 -07001026 u16 high_low;
Guy Cohenf935a6d2008-04-23 17:15:02 -07001027 s8 rate = index;
Zhu Yib481de92007-09-25 17:54:57 -07001028
1029 new_rate = high = low = start_hi = IWL_RATE_INVALID;
1030
1031 for (; ;) {
Ester Kummerbf403db2008-05-05 10:22:40 +08001032 high_low = rs_get_adjacent_rate(priv, rate, rate_mask,
1033 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001034
1035 low = high_low & 0xff;
1036 high = (high_low >> 8) & 0xff;
1037
Ben Cahill77626352007-11-29 11:09:44 +08001038 /*
1039 * Lower the "search" bit rate, to give new "search" mode
1040 * approximately the same throughput as "active" if:
1041 *
1042 * 1) "Active" mode has been working modestly well (but not
1043 * great), and expected "search" throughput (under perfect
1044 * conditions) at candidate rate is above the actual
1045 * measured "active" throughput (but less than expected
1046 * "active" throughput under perfect conditions).
1047 * OR
1048 * 2) "Active" mode has been working perfectly or very well
1049 * and expected "search" throughput (under perfect
1050 * conditions) at candidate rate is above expected
1051 * "active" throughput (under perfect conditions).
1052 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001053 if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
Zhu Yib481de92007-09-25 17:54:57 -07001054 ((active_sr > IWL_RATE_DECREASE_TH) &&
1055 (active_sr <= IWL_RATE_HIGH_TH) &&
1056 (tpt_tbl[rate] <= active_tpt))) ||
1057 ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
1058 (tpt_tbl[rate] > active_tpt))) {
1059
Ben Cahill77626352007-11-29 11:09:44 +08001060 /* (2nd or later pass)
1061 * If we've already tried to raise the rate, and are
1062 * now trying to lower it, use the higher rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001063 if (start_hi != IWL_RATE_INVALID) {
1064 new_rate = start_hi;
1065 break;
1066 }
Ben Cahill77626352007-11-29 11:09:44 +08001067
Zhu Yib481de92007-09-25 17:54:57 -07001068 new_rate = rate;
Ben Cahill77626352007-11-29 11:09:44 +08001069
1070 /* Loop again with lower rate */
Zhu Yib481de92007-09-25 17:54:57 -07001071 if (low != IWL_RATE_INVALID)
1072 rate = low;
Ben Cahill77626352007-11-29 11:09:44 +08001073
1074 /* Lower rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001075 else
1076 break;
Ben Cahill77626352007-11-29 11:09:44 +08001077
1078 /* Else try to raise the "search" rate to match "active" */
Zhu Yib481de92007-09-25 17:54:57 -07001079 } else {
Ben Cahill77626352007-11-29 11:09:44 +08001080 /* (2nd or later pass)
1081 * If we've already tried to lower the rate, and are
1082 * now trying to raise it, use the lower rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001083 if (new_rate != IWL_RATE_INVALID)
1084 break;
Ben Cahill77626352007-11-29 11:09:44 +08001085
1086 /* Loop again with higher rate */
Zhu Yib481de92007-09-25 17:54:57 -07001087 else if (high != IWL_RATE_INVALID) {
1088 start_hi = high;
1089 rate = high;
Ben Cahill77626352007-11-29 11:09:44 +08001090
1091 /* Higher rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001092 } else {
Guy Cohen90d77952008-09-09 10:54:53 +08001093 new_rate = rate;
Zhu Yib481de92007-09-25 17:54:57 -07001094 break;
1095 }
1096 }
1097 }
1098
1099 return new_rate;
1100}
Zhu Yib481de92007-09-25 17:54:57 -07001101
Ben Cahill77626352007-11-29 11:09:44 +08001102/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001103 * Set up search table for MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001104 */
Guy Cohenfde0db32008-04-21 15:42:01 -07001105static int rs_switch_to_mimo2(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001106 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001107 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001108 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001109 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001110{
Zhu Yib481de92007-09-25 17:54:57 -07001111 u16 rate_mask;
1112 s32 rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001113 s8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001114
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001115 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001116 return -1;
1117
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001118 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
Tomas Winkler00c5ae22008-09-03 11:26:42 +08001119 == WLAN_HT_CAP_SM_PS_STATIC)
Zhu Yib481de92007-09-25 17:54:57 -07001120 return -1;
1121
Ben Cahill77626352007-11-29 11:09:44 +08001122 /* Need both Tx chains/antennas to support MIMO */
Guy Cohenaade00c2008-04-23 17:14:59 -07001123 if (priv->hw_params.tx_chains_num < 2)
Zhu Yib481de92007-09-25 17:54:57 -07001124 return -1;
1125
Tomas Winklere1623442009-01-27 14:27:56 -08001126 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO2\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001127
1128 tbl->lq_type = LQ_MIMO2;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001129 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001130 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001131 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001132 rate_mask = lq_sta->active_mimo2_rate;
1133
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001134 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1135 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001136 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001137 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001138
Guy Coheneecd6e52008-04-23 17:14:58 -07001139 rs_set_expected_tpt_table(lq_sta, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07001140
Guy Cohenf935a6d2008-04-23 17:15:02 -07001141 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001142
Tomas Winklere1623442009-01-27 14:27:56 -08001143 IWL_DEBUG_RATE(priv, "LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001144 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
1145 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
1146 rate, rate_mask);
1147 return -1;
1148 }
1149 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Guy Cohen39e88502008-04-23 17:14:57 -07001150
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001151 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
1152 tbl->current_rate, is_green);
1153 return 0;
1154}
1155
1156/*
1157 * Set up search table for MIMO3
1158 */
1159static int rs_switch_to_mimo3(struct iwl_priv *priv,
1160 struct iwl_lq_sta *lq_sta,
1161 struct ieee80211_conf *conf,
1162 struct ieee80211_sta *sta,
1163 struct iwl_scale_tbl_info *tbl, int index)
1164{
1165 u16 rate_mask;
1166 s32 rate;
1167 s8 is_green = lq_sta->is_green;
1168
1169 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1170 return -1;
1171
1172 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
1173 == WLAN_HT_CAP_SM_PS_STATIC)
1174 return -1;
1175
1176 /* Need both Tx chains/antennas to support MIMO */
1177 if (priv->hw_params.tx_chains_num < 3)
1178 return -1;
1179
1180 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO3\n");
1181
1182 tbl->lq_type = LQ_MIMO3;
1183 tbl->is_dup = lq_sta->is_dup;
1184 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001185 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001186 rate_mask = lq_sta->active_mimo3_rate;
1187
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001188 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1189 tbl->is_ht40 = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001190 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001191 tbl->is_ht40 = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001192
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001193 rs_set_expected_tpt_table(lq_sta, tbl);
1194
1195 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
1196
1197 IWL_DEBUG_RATE(priv, "LQ: MIMO3 best rate %d mask %X\n",
1198 rate, rate_mask);
Guy Cohen39e88502008-04-23 17:14:57 -07001199 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001200 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001201 rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001202 return -1;
Guy Cohen39e88502008-04-23 17:14:57 -07001203 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001204 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001205
Tomas Winklere1623442009-01-27 14:27:56 -08001206 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001207 tbl->current_rate, is_green);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001208 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001209}
1210
Ben Cahill77626352007-11-29 11:09:44 +08001211/*
1212 * Set up search table for SISO
1213 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001214static int rs_switch_to_siso(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001215 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001216 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001217 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001218 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001219{
Zhu Yib481de92007-09-25 17:54:57 -07001220 u16 rate_mask;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001221 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001222 s32 rate;
1223
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001224 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001225 return -1;
1226
Tomas Winklere1623442009-01-27 14:27:56 -08001227 IWL_DEBUG_RATE(priv, "LQ: try to switch to SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001228
Tomas Winklerc33104f2008-01-14 17:46:21 -08001229 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001230 tbl->lq_type = LQ_SISO;
1231 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001232 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001233 rate_mask = lq_sta->active_siso_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001234
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001235 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1236 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001237 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001238 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001239
Zhu Yib481de92007-09-25 17:54:57 -07001240 if (is_green)
Guy Cohen39e88502008-04-23 17:14:57 -07001241 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield*/
Zhu Yib481de92007-09-25 17:54:57 -07001242
Guy Coheneecd6e52008-04-23 17:14:58 -07001243 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohenf935a6d2008-04-23 17:15:02 -07001244 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001245
Tomas Winklere1623442009-01-27 14:27:56 -08001246 IWL_DEBUG_RATE(priv, "LQ: get best rate %d mask %X\n", rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001247 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001248 IWL_DEBUG_RATE(priv, "can not switch with index %d rate mask %x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001249 rate, rate_mask);
1250 return -1;
1251 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001252 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Tomas Winklere1623442009-01-27 14:27:56 -08001253 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001254 tbl->current_rate, is_green);
Mohamed Abbas403ab562007-11-06 22:06:25 -08001255 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001256}
1257
Ben Cahill77626352007-11-29 11:09:44 +08001258/*
1259 * Try to switch to new modulation mode from legacy
1260 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001261static int rs_move_legacy_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001262 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001263 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001264 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07001265 int index)
1266{
Tomas Winklere227cea2008-07-18 13:53:05 +08001267 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1268 struct iwl_scale_tbl_info *search_tbl =
1269 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1270 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1271 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1272 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001273 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001274 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001275 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001276 int ret = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001277 u8 update_search_tbl_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001278
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001279 if (!iwl_ht_enabled(priv))
1280 /* stay in Legacy */
1281 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07001282 else if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001283 tbl->action > IWL_LEGACY_SWITCH_SISO)
1284 tbl->action = IWL_LEGACY_SWITCH_SISO;
Zhu Yib481de92007-09-25 17:54:57 -07001285 for (; ;) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001286 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001287 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001288 case IWL_LEGACY_SWITCH_ANTENNA1:
1289 case IWL_LEGACY_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001290 IWL_DEBUG_RATE(priv, "LQ: Legacy toggle Antenna\n");
Zhu Yib481de92007-09-25 17:54:57 -07001291
Guy Cohen3110bef2008-09-09 10:54:54 +08001292 if ((tbl->action == IWL_LEGACY_SWITCH_ANTENNA1 &&
1293 tx_chains_num <= 1) ||
1294 (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2 &&
1295 tx_chains_num <= 2))
1296 break;
1297
Ben Cahill77626352007-11-29 11:09:44 +08001298 /* Don't change antenna if success has been great */
Zhu Yib481de92007-09-25 17:54:57 -07001299 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1300 break;
Ben Cahill77626352007-11-29 11:09:44 +08001301
Ben Cahill77626352007-11-29 11:09:44 +08001302 /* Set up search table to try other antenna */
Zhu Yib481de92007-09-25 17:54:57 -07001303 memcpy(search_tbl, tbl, sz);
1304
Guy Cohenaade00c2008-04-23 17:14:59 -07001305 if (rs_toggle_antenna(valid_tx_ant,
1306 &search_tbl->current_rate, search_tbl)) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001307 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001308 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohenaade00c2008-04-23 17:14:59 -07001309 goto out;
1310 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001311 break;
Zhu Yib481de92007-09-25 17:54:57 -07001312 case IWL_LEGACY_SWITCH_SISO:
Tomas Winklere1623442009-01-27 14:27:56 -08001313 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to SISO\n");
Ben Cahill77626352007-11-29 11:09:44 +08001314
1315 /* Set up search table to try SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001316 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001317 search_tbl->is_SGI = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001318 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001319 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001320 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001321 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001322 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001323 }
Zhu Yib481de92007-09-25 17:54:57 -07001324
1325 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001326 case IWL_LEGACY_SWITCH_MIMO2_AB:
1327 case IWL_LEGACY_SWITCH_MIMO2_AC:
1328 case IWL_LEGACY_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001329 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO2\n");
Ben Cahill77626352007-11-29 11:09:44 +08001330
1331 /* Set up search table to try MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001332 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001333 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001334
1335 if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AB)
1336 search_tbl->ant_type = ANT_AB;
1337 else if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AC)
1338 search_tbl->ant_type = ANT_AC;
1339 else
1340 search_tbl->ant_type = ANT_BC;
1341
1342 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1343 break;
1344
Guy Cohenfde0db32008-04-21 15:42:01 -07001345 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001346 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001347 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001348 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001349 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001350 }
Zhu Yib481de92007-09-25 17:54:57 -07001351 break;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001352
1353 case IWL_LEGACY_SWITCH_MIMO3_ABC:
1354 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO3\n");
1355
1356 /* Set up search table to try MIMO3 */
1357 memcpy(search_tbl, tbl, sz);
1358 search_tbl->is_SGI = 0;
1359
1360 search_tbl->ant_type = ANT_ABC;
1361
1362 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1363 break;
1364
1365 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1366 search_tbl, index);
1367 if (!ret) {
1368 lq_sta->action_counter = 0;
1369 goto out;
1370 }
1371 break;
Zhu Yib481de92007-09-25 17:54:57 -07001372 }
1373 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001374 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001375 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001376
1377 if (tbl->action == start_action)
1378 break;
1379
1380 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001381 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001382 return 0;
1383
Guy Cohen3110bef2008-09-09 10:54:54 +08001384out:
1385 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001386 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001387 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001388 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001389 if (update_search_tbl_counter)
1390 search_tbl->action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001391 return 0;
1392
1393}
1394
Ben Cahill77626352007-11-29 11:09:44 +08001395/*
1396 * Try to switch to new modulation mode from SISO
1397 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001398static int rs_move_siso_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001399 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001400 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001401 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001402{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001403 u8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001404 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1405 struct iwl_scale_tbl_info *search_tbl =
1406 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1407 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001408 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001409 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1410 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001411 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001412 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001413 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001414 u8 update_search_tbl_counter = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -07001415 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001416
Johannes Berg3ad3b922009-08-07 15:41:48 -07001417 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001418 tbl->action > IWL_SISO_SWITCH_ANTENNA2) {
1419 /* stay in SISO */
1420 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1421 }
Zhu Yib481de92007-09-25 17:54:57 -07001422 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001423 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001424 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001425 case IWL_SISO_SWITCH_ANTENNA1:
1426 case IWL_SISO_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001427 IWL_DEBUG_RATE(priv, "LQ: SISO toggle Antenna\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001428
1429 if ((tbl->action == IWL_SISO_SWITCH_ANTENNA1 &&
1430 tx_chains_num <= 1) ||
1431 (tbl->action == IWL_SISO_SWITCH_ANTENNA2 &&
1432 tx_chains_num <= 2))
1433 break;
1434
Zhu Yib481de92007-09-25 17:54:57 -07001435 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1436 break;
Zhu Yib481de92007-09-25 17:54:57 -07001437
1438 memcpy(search_tbl, tbl, sz);
Guy Cohenaade00c2008-04-23 17:14:59 -07001439 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001440 &search_tbl->current_rate, search_tbl)) {
1441 update_search_tbl_counter = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07001442 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001443 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001444 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001445 case IWL_SISO_SWITCH_MIMO2_AB:
1446 case IWL_SISO_SWITCH_MIMO2_AC:
1447 case IWL_SISO_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001448 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO2\n");
Zhu Yib481de92007-09-25 17:54:57 -07001449 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001450 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001451
1452 if (tbl->action == IWL_SISO_SWITCH_MIMO2_AB)
1453 search_tbl->ant_type = ANT_AB;
1454 else if (tbl->action == IWL_SISO_SWITCH_MIMO2_AC)
1455 search_tbl->ant_type = ANT_AC;
1456 else
1457 search_tbl->ant_type = ANT_BC;
1458
1459 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1460 break;
1461
Guy Cohenfde0db32008-04-21 15:42:01 -07001462 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001463 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001464 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001465 goto out;
1466 break;
1467 case IWL_SISO_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001468 if (!tbl->is_ht40 && !(ht_cap->cap &
1469 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001470 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001471 if (tbl->is_ht40 && !(ht_cap->cap &
1472 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001473 break;
1474
Tomas Winklere1623442009-01-27 14:27:56 -08001475 IWL_DEBUG_RATE(priv, "LQ: SISO toggle SGI/NGI\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001476
Zhu Yib481de92007-09-25 17:54:57 -07001477 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001478 if (is_green) {
1479 if (!tbl->is_SGI)
1480 break;
1481 else
Winkler, Tomas15b16872008-12-19 10:37:33 +08001482 IWL_ERR(priv,
1483 "SGI was set in GF+SISO\n");
Zhu Yib481de92007-09-25 17:54:57 -07001484 }
Guy Cohen39e88502008-04-23 17:14:57 -07001485 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001486 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohen39e88502008-04-23 17:14:57 -07001487 if (tbl->is_SGI) {
1488 s32 tpt = lq_sta->last_tpt / 100;
1489 if (tpt >= search_tbl->expected_tpt[index])
1490 break;
1491 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001492 search_tbl->current_rate =
1493 rate_n_flags_from_tbl(priv, search_tbl,
1494 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001495 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001496 goto out;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001497 case IWL_SISO_SWITCH_MIMO3_ABC:
1498 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO3\n");
1499 memcpy(search_tbl, tbl, sz);
1500 search_tbl->is_SGI = 0;
1501 search_tbl->ant_type = ANT_ABC;
1502
1503 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1504 break;
1505
1506 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1507 search_tbl, index);
1508 if (!ret)
1509 goto out;
1510 break;
Zhu Yib481de92007-09-25 17:54:57 -07001511 }
1512 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001513 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001514 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001515
1516 if (tbl->action == start_action)
1517 break;
1518 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001519 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001520 return 0;
1521
1522 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001523 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001524 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001525 if (tbl->action > IWL_SISO_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001526 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001527 if (update_search_tbl_counter)
1528 search_tbl->action = tbl->action;
1529
Zhu Yib481de92007-09-25 17:54:57 -07001530 return 0;
1531}
1532
Ben Cahill77626352007-11-29 11:09:44 +08001533/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001534 * Try to switch to new modulation mode from MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001535 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001536static int rs_move_mimo2_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001537 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001538 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001539 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001540{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001541 s8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001542 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1543 struct iwl_scale_tbl_info *search_tbl =
1544 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Guy Cohen3110bef2008-09-09 10:54:54 +08001545 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001546 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001547 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1548 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001549 u8 start_action = tbl->action;
Guy Cohen3110bef2008-09-09 10:54:54 +08001550 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1551 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001552 u8 update_search_tbl_counter = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07001553 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001554
Johannes Berg3ad3b922009-08-07 15:41:48 -07001555 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001556 (tbl->action < IWL_MIMO2_SWITCH_SISO_A ||
1557 tbl->action > IWL_MIMO2_SWITCH_SISO_C)) {
1558 /* switch in SISO */
1559 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1560 }
Zhu Yib481de92007-09-25 17:54:57 -07001561 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001562 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001563 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001564 case IWL_MIMO2_SWITCH_ANTENNA1:
1565 case IWL_MIMO2_SWITCH_ANTENNA2:
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001566 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle Antennas\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001567
1568 if (tx_chains_num <= 2)
1569 break;
1570
1571 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1572 break;
1573
1574 memcpy(search_tbl, tbl, sz);
1575 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001576 &search_tbl->current_rate, search_tbl)) {
1577 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001578 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001579 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001580 break;
1581 case IWL_MIMO2_SWITCH_SISO_A:
1582 case IWL_MIMO2_SWITCH_SISO_B:
1583 case IWL_MIMO2_SWITCH_SISO_C:
Tomas Winklere1623442009-01-27 14:27:56 -08001584 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to SISO\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001585
Ben Cahill77626352007-11-29 11:09:44 +08001586 /* Set up new search table for SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001587 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001588
Guy Cohen3110bef2008-09-09 10:54:54 +08001589 if (tbl->action == IWL_MIMO2_SWITCH_SISO_A)
Guy Cohenfde0db32008-04-21 15:42:01 -07001590 search_tbl->ant_type = ANT_A;
Guy Cohen3110bef2008-09-09 10:54:54 +08001591 else if (tbl->action == IWL_MIMO2_SWITCH_SISO_B)
Guy Cohenfde0db32008-04-21 15:42:01 -07001592 search_tbl->ant_type = ANT_B;
Guy Cohen3110bef2008-09-09 10:54:54 +08001593 else
1594 search_tbl->ant_type = ANT_C;
1595
1596 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1597 break;
Zhu Yib481de92007-09-25 17:54:57 -07001598
Tomas Winklerc33104f2008-01-14 17:46:21 -08001599 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001600 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001601 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001602 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001603
Zhu Yib481de92007-09-25 17:54:57 -07001604 break;
1605
Guy Cohen3110bef2008-09-09 10:54:54 +08001606 case IWL_MIMO2_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001607 if (!tbl->is_ht40 && !(ht_cap->cap &
1608 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001609 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001610 if (tbl->is_ht40 && !(ht_cap->cap &
1611 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001612 break;
1613
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001614 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle SGI/NGI\n");
1615
1616 /* Set up new search table for MIMO2 */
1617 memcpy(search_tbl, tbl, sz);
1618 search_tbl->is_SGI = !tbl->is_SGI;
1619 rs_set_expected_tpt_table(lq_sta, search_tbl);
1620 /*
1621 * If active table already uses the fastest possible
1622 * modulation (dual stream with short guard interval),
1623 * and it's working well, there's no need to look
1624 * for a better type of modulation!
1625 */
1626 if (tbl->is_SGI) {
1627 s32 tpt = lq_sta->last_tpt / 100;
1628 if (tpt >= search_tbl->expected_tpt[index])
1629 break;
1630 }
1631 search_tbl->current_rate =
1632 rate_n_flags_from_tbl(priv, search_tbl,
1633 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001634 update_search_tbl_counter = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001635 goto out;
1636
1637 case IWL_MIMO2_SWITCH_MIMO3_ABC:
1638 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to MIMO3\n");
1639 memcpy(search_tbl, tbl, sz);
1640 search_tbl->is_SGI = 0;
1641 search_tbl->ant_type = ANT_ABC;
1642
1643 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1644 break;
1645
1646 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1647 search_tbl, index);
1648 if (!ret)
1649 goto out;
1650
1651 break;
1652 }
1653 tbl->action++;
1654 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1655 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
1656
1657 if (tbl->action == start_action)
1658 break;
1659 }
1660 search_tbl->lq_type = LQ_NONE;
1661 return 0;
1662 out:
1663 lq_sta->search_better_tbl = 1;
1664 tbl->action++;
1665 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1666 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001667 if (update_search_tbl_counter)
1668 search_tbl->action = tbl->action;
1669
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001670 return 0;
1671
1672}
1673
1674/*
1675 * Try to switch to new modulation mode from MIMO3
1676 */
1677static int rs_move_mimo3_to_other(struct iwl_priv *priv,
1678 struct iwl_lq_sta *lq_sta,
1679 struct ieee80211_conf *conf,
1680 struct ieee80211_sta *sta, int index)
1681{
1682 s8 is_green = lq_sta->is_green;
1683 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1684 struct iwl_scale_tbl_info *search_tbl =
1685 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1686 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001687 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001688 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1689 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
1690 u8 start_action = tbl->action;
1691 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1692 u8 tx_chains_num = priv->hw_params.tx_chains_num;
1693 int ret;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001694 u8 update_search_tbl_counter = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001695
Johannes Berg3ad3b922009-08-07 15:41:48 -07001696 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001697 (tbl->action < IWL_MIMO3_SWITCH_SISO_A ||
1698 tbl->action > IWL_MIMO3_SWITCH_SISO_C)) {
1699 /* switch in SISO */
1700 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
1701 }
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001702 for (;;) {
1703 lq_sta->action_counter++;
1704 switch (tbl->action) {
1705 case IWL_MIMO3_SWITCH_ANTENNA1:
1706 case IWL_MIMO3_SWITCH_ANTENNA2:
1707 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle Antennas\n");
1708
1709 if (tx_chains_num <= 3)
1710 break;
1711
1712 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1713 break;
1714
1715 memcpy(search_tbl, tbl, sz);
1716 if (rs_toggle_antenna(valid_tx_ant,
1717 &search_tbl->current_rate, search_tbl))
1718 goto out;
1719 break;
1720 case IWL_MIMO3_SWITCH_SISO_A:
1721 case IWL_MIMO3_SWITCH_SISO_B:
1722 case IWL_MIMO3_SWITCH_SISO_C:
1723 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to SISO\n");
1724
1725 /* Set up new search table for SISO */
1726 memcpy(search_tbl, tbl, sz);
1727
1728 if (tbl->action == IWL_MIMO3_SWITCH_SISO_A)
1729 search_tbl->ant_type = ANT_A;
1730 else if (tbl->action == IWL_MIMO3_SWITCH_SISO_B)
1731 search_tbl->ant_type = ANT_B;
1732 else
1733 search_tbl->ant_type = ANT_C;
1734
1735 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1736 break;
1737
1738 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
1739 search_tbl, index);
1740 if (!ret)
1741 goto out;
1742
1743 break;
1744
1745 case IWL_MIMO3_SWITCH_MIMO2_AB:
1746 case IWL_MIMO3_SWITCH_MIMO2_AC:
1747 case IWL_MIMO3_SWITCH_MIMO2_BC:
1748 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to MIMO2\n");
1749
1750 memcpy(search_tbl, tbl, sz);
1751 search_tbl->is_SGI = 0;
1752 if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AB)
1753 search_tbl->ant_type = ANT_AB;
1754 else if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AC)
1755 search_tbl->ant_type = ANT_AC;
1756 else
1757 search_tbl->ant_type = ANT_BC;
1758
1759 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1760 break;
1761
1762 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
1763 search_tbl, index);
1764 if (!ret)
1765 goto out;
1766
1767 break;
1768
1769 case IWL_MIMO3_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001770 if (!tbl->is_ht40 && !(ht_cap->cap &
1771 IEEE80211_HT_CAP_SGI_20))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001772 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001773 if (tbl->is_ht40 && !(ht_cap->cap &
1774 IEEE80211_HT_CAP_SGI_40))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001775 break;
1776
1777 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle SGI/NGI\n");
Ben Cahill77626352007-11-29 11:09:44 +08001778
1779 /* Set up new search table for MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001780 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001781 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001782 rs_set_expected_tpt_table(lq_sta, search_tbl);
Ben Cahill77626352007-11-29 11:09:44 +08001783 /*
1784 * If active table already uses the fastest possible
1785 * modulation (dual stream with short guard interval),
1786 * and it's working well, there's no need to look
1787 * for a better type of modulation!
1788 */
Guy Cohen39e88502008-04-23 17:14:57 -07001789 if (tbl->is_SGI) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001790 s32 tpt = lq_sta->last_tpt / 100;
Guy Cohen39e88502008-04-23 17:14:57 -07001791 if (tpt >= search_tbl->expected_tpt[index])
1792 break;
Zhu Yib481de92007-09-25 17:54:57 -07001793 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001794 search_tbl->current_rate =
1795 rate_n_flags_from_tbl(priv, search_tbl,
1796 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001797 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001798 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07001799 }
1800 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001801 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1802 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001803
1804 if (tbl->action == start_action)
1805 break;
1806 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001807 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001808 return 0;
1809 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001810 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001811 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001812 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1813 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001814 if (update_search_tbl_counter)
1815 search_tbl->action = tbl->action;
1816
Zhu Yib481de92007-09-25 17:54:57 -07001817 return 0;
1818
1819}
1820
Ben Cahill77626352007-11-29 11:09:44 +08001821/*
1822 * Check whether we should continue using same modulation mode, or
1823 * begin search for a new mode, based on:
1824 * 1) # tx successes or failures while using this mode
1825 * 2) # times calling this function
1826 * 3) elapsed time in this mode (not used, for now)
1827 */
Tomas Winklere227cea2008-07-18 13:53:05 +08001828static void rs_stay_in_table(struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001829{
Tomas Winklere227cea2008-07-18 13:53:05 +08001830 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001831 int i;
1832 int active_tbl;
1833 int flush_interval_passed = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08001834 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07001835
Ester Kummerbf403db2008-05-05 10:22:40 +08001836 priv = lq_sta->drv;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001837 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001838
Tomas Winklerc33104f2008-01-14 17:46:21 -08001839 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001840
Ben Cahill77626352007-11-29 11:09:44 +08001841 /* If we've been disallowing search, see if we should now allow it */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001842 if (lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001843
Ben Cahill77626352007-11-29 11:09:44 +08001844 /* Elapsed time using current modulation mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001845 if (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001846 flush_interval_passed =
Mohamed Abbas447fee72009-04-20 14:37:02 -07001847 time_after(jiffies,
1848 (unsigned long)(lq_sta->flush_timer +
Zhu Yib481de92007-09-25 17:54:57 -07001849 IWL_RATE_SCALE_FLUSH_INTVL));
1850
Ben Cahill77626352007-11-29 11:09:44 +08001851 /*
1852 * Check if we should allow search for new modulation mode.
1853 * If many frames have failed or succeeded, or we've used
1854 * this same modulation for a long time, allow search, and
1855 * reset history stats that keep track of whether we should
1856 * allow a new search. Also (below) reset all bitmaps and
1857 * stats in active history.
1858 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001859 if ((lq_sta->total_failed > lq_sta->max_failure_limit) ||
1860 (lq_sta->total_success > lq_sta->max_success_limit) ||
1861 ((!lq_sta->search_better_tbl) && (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001862 && (flush_interval_passed))) {
Tomas Winklere1623442009-01-27 14:27:56 -08001863 IWL_DEBUG_RATE(priv, "LQ: stay is expired %d %d %d\n:",
Tomas Winklerc33104f2008-01-14 17:46:21 -08001864 lq_sta->total_failed,
1865 lq_sta->total_success,
Zhu Yib481de92007-09-25 17:54:57 -07001866 flush_interval_passed);
Ben Cahill77626352007-11-29 11:09:44 +08001867
1868 /* Allow search for new mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001869 lq_sta->stay_in_tbl = 0; /* only place reset */
1870 lq_sta->total_failed = 0;
1871 lq_sta->total_success = 0;
1872 lq_sta->flush_timer = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001873
1874 /*
1875 * Else if we've used this modulation mode enough repetitions
1876 * (regardless of elapsed time or success/failure), reset
1877 * history bitmaps and rate-specific stats for all rates in
1878 * active table.
1879 */
Mohamed Abbas403ab562007-11-06 22:06:25 -08001880 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001881 lq_sta->table_count++;
1882 if (lq_sta->table_count >=
1883 lq_sta->table_count_limit) {
1884 lq_sta->table_count = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001885
Tomas Winklere1623442009-01-27 14:27:56 -08001886 IWL_DEBUG_RATE(priv, "LQ: stay in table clear win\n");
Zhu Yib481de92007-09-25 17:54:57 -07001887 for (i = 0; i < IWL_RATE_COUNT; i++)
1888 rs_rate_scale_clear_window(
1889 &(tbl->win[i]));
1890 }
1891 }
1892
Ben Cahill77626352007-11-29 11:09:44 +08001893 /* If transitioning to allow "search", reset all history
1894 * bitmaps and stats in active table (this will become the new
1895 * "search" table). */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001896 if (!lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001897 for (i = 0; i < IWL_RATE_COUNT; i++)
1898 rs_rate_scale_clear_window(&(tbl->win[i]));
1899 }
1900 }
1901}
1902
Ben Cahill77626352007-11-29 11:09:44 +08001903/*
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07001904 * setup rate table in uCode
1905 * return rate_n_flags as used in the table
1906 */
1907static u32 rs_update_rate_tbl(struct iwl_priv *priv,
1908 struct iwl_lq_sta *lq_sta,
1909 struct iwl_scale_tbl_info *tbl,
1910 int index, u8 is_green)
1911{
1912 u32 rate;
1913
1914 /* Update uCode's rate table. */
1915 rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
1916 rs_fill_link_cmd(priv, lq_sta, rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08001917 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07001918
1919 return rate;
1920}
1921
1922/*
Ben Cahill77626352007-11-29 11:09:44 +08001923 * Do rate scaling and search for new modulation mode.
1924 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001925static void rs_rate_scale_perform(struct iwl_priv *priv,
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001926 struct sk_buff *skb,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001927 struct ieee80211_sta *sta,
1928 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001929{
Johannes Berg4b7679a2008-09-18 18:14:18 +02001930 struct ieee80211_hw *hw = priv->hw;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001931 struct ieee80211_conf *conf = &hw->conf;
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001932 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1933 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001934 int low = IWL_RATE_INVALID;
1935 int high = IWL_RATE_INVALID;
1936 int index;
1937 int i;
Tomas Winklere227cea2008-07-18 13:53:05 +08001938 struct iwl_rate_scale_data *window = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001939 int current_tpt = IWL_INVALID_VALUE;
1940 int low_tpt = IWL_INVALID_VALUE;
1941 int high_tpt = IWL_INVALID_VALUE;
1942 u32 fail_count;
1943 s8 scale_action = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07001944 u16 rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -07001945 u8 update_lq = 0;
Tomas Winklere227cea2008-07-18 13:53:05 +08001946 struct iwl_scale_tbl_info *tbl, *tbl1;
Zhu Yib481de92007-09-25 17:54:57 -07001947 u16 rate_scale_index_msk = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001948 u32 rate;
Zhu Yib481de92007-09-25 17:54:57 -07001949 u8 is_green = 0;
1950 u8 active_tbl = 0;
1951 u8 done_search = 0;
1952 u16 high_low;
Guy Cohena5e8b502008-05-29 16:35:11 +08001953 s32 sr;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001954 u8 tid = MAX_TID_COUNT;
Wey-Yi Guy86b47662009-03-10 14:35:09 -07001955 struct iwl_tid_data *tid_data;
Zhu Yib481de92007-09-25 17:54:57 -07001956
Tomas Winklere1623442009-01-27 14:27:56 -08001957 IWL_DEBUG_RATE(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07001958
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001959 /* Send management frames and NO_ACK data using lowest rate. */
Tomas Winkler417f1142008-11-12 13:14:06 -08001960 /* TODO: this could probably be improved.. */
1961 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001962 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -07001963 return;
Zhu Yib481de92007-09-25 17:54:57 -07001964
Johannes Berg4b7679a2008-09-18 18:14:18 +02001965 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001966 return;
1967
Johannes Berg4b7679a2008-09-18 18:14:18 +02001968 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
Zhu Yib481de92007-09-25 17:54:57 -07001969
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08001970 tid = rs_tl_add_packet(lq_sta, hdr);
Daniel C Halperine3949d62009-09-17 10:43:50 -07001971 if ((tid != MAX_TID_COUNT) && (lq_sta->tx_agg_tid_en & (1 << tid))) {
1972 tid_data = &priv->stations[lq_sta->lq.sta_id].tid[tid];
1973 if (tid_data->agg.state == IWL_AGG_OFF)
1974 lq_sta->is_agg = 0;
1975 else
1976 lq_sta->is_agg = 1;
1977 } else
1978 lq_sta->is_agg = 0;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08001979
Ben Cahill77626352007-11-29 11:09:44 +08001980 /*
1981 * Select rate-scale / modulation-mode table to work with in
1982 * the rest of this function: "search" if searching for better
1983 * modulation mode, or "active" if doing rate scaling within a mode.
1984 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001985 if (!lq_sta->search_better_tbl)
1986 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001987 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08001988 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001989
Tomas Winklerc33104f2008-01-14 17:46:21 -08001990 tbl = &(lq_sta->lq_info[active_tbl]);
Wey-Yi Guy2681b202009-05-21 13:44:22 -07001991 if (is_legacy(tbl->lq_type))
1992 lq_sta->is_green = 0;
1993 else
Daniel C Halperinb2617932009-08-13 13:30:59 -07001994 lq_sta->is_green = rs_use_green(sta, &priv->current_ht_config);
Tomas Winklerc33104f2008-01-14 17:46:21 -08001995 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001996
Ben Cahill77626352007-11-29 11:09:44 +08001997 /* current tx rate */
Johannes Bergb7e35002008-09-11 02:22:58 +02001998 index = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07001999
Tomas Winklere1623442009-01-27 14:27:56 -08002000 IWL_DEBUG_RATE(priv, "Rate scale index %d for type %d\n", index,
Zhu Yib481de92007-09-25 17:54:57 -07002001 tbl->lq_type);
2002
Ben Cahill77626352007-11-29 11:09:44 +08002003 /* rates available for this association, and for modulation mode */
Guy Coheneecd6e52008-04-23 17:14:58 -07002004 rate_mask = rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07002005
Frans Pop91dd6c22010-03-24 14:19:58 -07002006 IWL_DEBUG_RATE(priv, "mask 0x%04X\n", rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07002007
2008 /* mask with station rate restriction */
2009 if (is_legacy(tbl->lq_type)) {
Johannes Berg8318d782008-01-24 19:38:38 +01002010 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Ben Cahill77626352007-11-29 11:09:44 +08002011 /* supp_rates has no CCK bits in A mode */
Zhu Yib481de92007-09-25 17:54:57 -07002012 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002013 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -07002014 else
2015 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002016 lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -07002017
2018 } else
2019 rate_scale_index_msk = rate_mask;
2020
2021 if (!rate_scale_index_msk)
2022 rate_scale_index_msk = rate_mask;
2023
Guy Cohen07bc28e2008-04-23 17:15:03 -07002024 if (!((1 << index) & rate_scale_index_msk)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002025 IWL_ERR(priv, "Current Rate is not valid\n");
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002026 if (lq_sta->search_better_tbl) {
2027 /* revert to active table if search table is not valid*/
2028 tbl->lq_type = LQ_NONE;
2029 lq_sta->search_better_tbl = 0;
2030 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
2031 /* get "active" rate info */
2032 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
2033 rate = rs_update_rate_tbl(priv, lq_sta,
2034 tbl, index, is_green);
2035 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002036 return;
Zhu Yib481de92007-09-25 17:54:57 -07002037 }
2038
Ben Cahill77626352007-11-29 11:09:44 +08002039 /* Get expected throughput table and history window for current rate */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002040 if (!tbl->expected_tpt) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002041 IWL_ERR(priv, "tbl->expected_tpt is NULL\n");
Guy Cohen07bc28e2008-04-23 17:15:03 -07002042 return;
2043 }
Zhu Yib481de92007-09-25 17:54:57 -07002044
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002045 /* force user max rate if set by user */
2046 if ((lq_sta->max_rate_idx != -1) &&
2047 (lq_sta->max_rate_idx < index)) {
2048 index = lq_sta->max_rate_idx;
2049 update_lq = 1;
2050 window = &(tbl->win[index]);
2051 goto lq_update;
2052 }
2053
Zhu Yib481de92007-09-25 17:54:57 -07002054 window = &(tbl->win[index]);
2055
Ben Cahill77626352007-11-29 11:09:44 +08002056 /*
2057 * If there is not enough history to calculate actual average
2058 * throughput, keep analyzing results of more tx frames, without
2059 * changing rate or mode (bypass most of the rest of this function).
2060 * Set up new rate table in uCode only if old rate is not supported
2061 * in current association (use new rate found above).
2062 */
Zhu Yib481de92007-09-25 17:54:57 -07002063 fail_count = window->counter - window->success_counter;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002064 if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
2065 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002066 IWL_DEBUG_RATE(priv, "LQ: still below TH. succ=%d total=%d "
Zhu Yib481de92007-09-25 17:54:57 -07002067 "for index %d\n",
2068 window->success_counter, window->counter, index);
Ben Cahill77626352007-11-29 11:09:44 +08002069
2070 /* Can't calculate this yet; not enough history */
Zhu Yib481de92007-09-25 17:54:57 -07002071 window->average_tpt = IWL_INVALID_VALUE;
Ben Cahill77626352007-11-29 11:09:44 +08002072
2073 /* Should we stay with this modulation mode,
2074 * or search for a new one? */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002075 rs_stay_in_table(lq_sta);
Ben Cahill77626352007-11-29 11:09:44 +08002076
Zhu Yib481de92007-09-25 17:54:57 -07002077 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08002078 }
Ben Cahill77626352007-11-29 11:09:44 +08002079 /* Else we have enough samples; calculate estimate of
2080 * actual average throughput */
Reinette Chatre3d79b2a2010-05-03 10:55:07 -07002081 if (window->average_tpt != ((window->success_ratio *
2082 tbl->expected_tpt[index] + 64) / 128)) {
2083 IWL_ERR(priv, "expected_tpt should have been calculated by now\n");
2084 window->average_tpt = ((window->success_ratio *
2085 tbl->expected_tpt[index] + 64) / 128);
2086 }
Zhu Yib481de92007-09-25 17:54:57 -07002087
Ben Cahill77626352007-11-29 11:09:44 +08002088 /* If we are searching for better modulation mode, check success. */
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002089 if (lq_sta->search_better_tbl &&
Johannes Berg3ad3b922009-08-07 15:41:48 -07002090 (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI)) {
Ben Cahill77626352007-11-29 11:09:44 +08002091 /* If good success, continue using the "search" mode;
2092 * no need to send new link quality command, since we're
2093 * continuing to use the setup that we've been trying. */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002094 if (window->average_tpt > lq_sta->last_tpt) {
2095
Tomas Winklere1623442009-01-27 14:27:56 -08002096 IWL_DEBUG_RATE(priv, "LQ: SWITCHING TO NEW TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002097 "suc=%d cur-tpt=%d old-tpt=%d\n",
2098 window->success_ratio,
2099 window->average_tpt,
2100 lq_sta->last_tpt);
2101
2102 if (!is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002103 lq_sta->enable_counter = 1;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002104
Ben Cahill77626352007-11-29 11:09:44 +08002105 /* Swap tables; "search" becomes "active" */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002106 lq_sta->active_tbl = active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002107 current_tpt = window->average_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002108
2109 /* Else poor success; go back to mode in "active" table */
Zhu Yib481de92007-09-25 17:54:57 -07002110 } else {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002111
Tomas Winklere1623442009-01-27 14:27:56 -08002112 IWL_DEBUG_RATE(priv, "LQ: GOING BACK TO THE OLD TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002113 "suc=%d cur-tpt=%d old-tpt=%d\n",
2114 window->success_ratio,
2115 window->average_tpt,
2116 lq_sta->last_tpt);
2117
Ben Cahill77626352007-11-29 11:09:44 +08002118 /* Nullify "search" table */
Zhu Yib481de92007-09-25 17:54:57 -07002119 tbl->lq_type = LQ_NONE;
Ben Cahill77626352007-11-29 11:09:44 +08002120
2121 /* Revert to "active" table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002122 active_tbl = lq_sta->active_tbl;
2123 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002124
Ben Cahill77626352007-11-29 11:09:44 +08002125 /* Revert to "active" rate and throughput info */
Tomas Winklere7d326a2008-06-12 09:47:11 +08002126 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002127 current_tpt = lq_sta->last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002128
2129 /* Need to set up a new rate table in uCode */
2130 update_lq = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002131 }
Ben Cahill77626352007-11-29 11:09:44 +08002132
2133 /* Either way, we've made a decision; modulation mode
2134 * search is done, allow rate adjustment next time. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002135 lq_sta->search_better_tbl = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002136 done_search = 1; /* Don't switch modes below! */
Zhu Yib481de92007-09-25 17:54:57 -07002137 goto lq_update;
2138 }
2139
Ben Cahill77626352007-11-29 11:09:44 +08002140 /* (Else) not in search of better modulation mode, try for better
2141 * starting rate, while staying in this mode. */
Ester Kummerbf403db2008-05-05 10:22:40 +08002142 high_low = rs_get_adjacent_rate(priv, index, rate_scale_index_msk,
Zhu Yib481de92007-09-25 17:54:57 -07002143 tbl->lq_type);
2144 low = high_low & 0xff;
2145 high = (high_low >> 8) & 0xff;
2146
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002147 /* If user set max rate, dont allow higher than user constrain */
2148 if ((lq_sta->max_rate_idx != -1) &&
2149 (lq_sta->max_rate_idx < high))
2150 high = IWL_RATE_INVALID;
2151
Guy Cohena5e8b502008-05-29 16:35:11 +08002152 sr = window->success_ratio;
2153
Ben Cahill77626352007-11-29 11:09:44 +08002154 /* Collect measured throughputs for current and adjacent rates */
Zhu Yib481de92007-09-25 17:54:57 -07002155 current_tpt = window->average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002156 if (low != IWL_RATE_INVALID)
2157 low_tpt = tbl->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002158 if (high != IWL_RATE_INVALID)
2159 high_tpt = tbl->win[high].average_tpt;
2160
Guy Cohena5e8b502008-05-29 16:35:11 +08002161 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002162
Ben Cahill77626352007-11-29 11:09:44 +08002163 /* Too many failures, decrease rate */
Guy Cohena5e8b502008-05-29 16:35:11 +08002164 if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002165 IWL_DEBUG_RATE(priv, "decrease rate because of low success_ratio\n");
Zhu Yib481de92007-09-25 17:54:57 -07002166 scale_action = -1;
Ben Cahill77626352007-11-29 11:09:44 +08002167
2168 /* No throughput measured yet for adjacent rates; try increase. */
Zhu Yib481de92007-09-25 17:54:57 -07002169 } else if ((low_tpt == IWL_INVALID_VALUE) &&
Guy Cohena5e8b502008-05-29 16:35:11 +08002170 (high_tpt == IWL_INVALID_VALUE)) {
2171
2172 if (high != IWL_RATE_INVALID && sr >= IWL_RATE_INCREASE_TH)
2173 scale_action = 1;
2174 else if (low != IWL_RATE_INVALID)
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002175 scale_action = 0;
Guy Cohena5e8b502008-05-29 16:35:11 +08002176 }
Ben Cahill77626352007-11-29 11:09:44 +08002177
2178 /* Both adjacent throughputs are measured, but neither one has better
2179 * throughput; we're using the best rate, don't change it! */
Zhu Yib481de92007-09-25 17:54:57 -07002180 else if ((low_tpt != IWL_INVALID_VALUE) &&
2181 (high_tpt != IWL_INVALID_VALUE) &&
2182 (low_tpt < current_tpt) &&
2183 (high_tpt < current_tpt))
2184 scale_action = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002185
2186 /* At least one adjacent rate's throughput is measured,
2187 * and may have better performance. */
Zhu Yib481de92007-09-25 17:54:57 -07002188 else {
Ben Cahill77626352007-11-29 11:09:44 +08002189 /* Higher adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002190 if (high_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002191 /* Higher rate has better throughput */
Guy Cohena5e8b502008-05-29 16:35:11 +08002192 if (high_tpt > current_tpt &&
2193 sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002194 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002195 } else {
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002196 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002197 }
Ben Cahill77626352007-11-29 11:09:44 +08002198
2199 /* Lower adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002200 } else if (low_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002201 /* Lower rate has better throughput */
Zhu Yib481de92007-09-25 17:54:57 -07002202 if (low_tpt > current_tpt) {
Tomas Winklere1623442009-01-27 14:27:56 -08002203 IWL_DEBUG_RATE(priv,
2204 "decrease rate because of low tpt\n");
Zhu Yib481de92007-09-25 17:54:57 -07002205 scale_action = -1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002206 } else if (sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002207 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002208 }
Zhu Yib481de92007-09-25 17:54:57 -07002209 }
2210 }
2211
Ben Cahill77626352007-11-29 11:09:44 +08002212 /* Sanity check; asked for decrease, but success rate or throughput
2213 * has been good at old rate. Don't change it. */
Guy Cohena5e8b502008-05-29 16:35:11 +08002214 if ((scale_action == -1) && (low != IWL_RATE_INVALID) &&
2215 ((sr > IWL_RATE_HIGH_TH) ||
Zhu Yib481de92007-09-25 17:54:57 -07002216 (current_tpt > (100 * tbl->expected_tpt[low]))))
Zhu Yib481de92007-09-25 17:54:57 -07002217 scale_action = 0;
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002218 if (!iwl_ht_enabled(priv) && !is_legacy(tbl->lq_type))
2219 scale_action = -1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07002220 if (iwl_tx_ant_restriction(priv) != IWL_ANT_OK_MULTI &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002221 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type)))
2222 scale_action = -1;
Zhu Yib481de92007-09-25 17:54:57 -07002223 switch (scale_action) {
2224 case -1:
Ben Cahill77626352007-11-29 11:09:44 +08002225 /* Decrease starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002226 if (low != IWL_RATE_INVALID) {
2227 update_lq = 1;
2228 index = low;
2229 }
Mohamed Abbas447fee72009-04-20 14:37:02 -07002230
Zhu Yib481de92007-09-25 17:54:57 -07002231 break;
2232 case 1:
Ben Cahill77626352007-11-29 11:09:44 +08002233 /* Increase starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002234 if (high != IWL_RATE_INVALID) {
2235 update_lq = 1;
2236 index = high;
2237 }
2238
2239 break;
2240 case 0:
Ben Cahill77626352007-11-29 11:09:44 +08002241 /* No change */
Zhu Yib481de92007-09-25 17:54:57 -07002242 default:
2243 break;
2244 }
2245
Tomas Winklere1623442009-01-27 14:27:56 -08002246 IWL_DEBUG_RATE(priv, "choose rate scale index %d action %d low %d "
Zhu Yib481de92007-09-25 17:54:57 -07002247 "high %d type %d\n",
2248 index, scale_action, low, high, tbl->lq_type);
2249
Guy Cohena5e8b502008-05-29 16:35:11 +08002250lq_update:
Ben Cahill77626352007-11-29 11:09:44 +08002251 /* Replace uCode's rate table for the destination station. */
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002252 if (update_lq)
2253 rate = rs_update_rate_tbl(priv, lq_sta,
2254 tbl, index, is_green);
Ben Cahill77626352007-11-29 11:09:44 +08002255
Johannes Berg3ad3b922009-08-07 15:41:48 -07002256 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI) {
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002257 /* Should we stay with this modulation mode,
2258 * or search for a new one? */
2259 rs_stay_in_table(lq_sta);
2260 }
Ben Cahill77626352007-11-29 11:09:44 +08002261 /*
2262 * Search for new modulation mode if we're:
2263 * 1) Not changing rates right now
2264 * 2) Not just finishing up a search
2265 * 3) Allowing a new search
2266 */
Guy Cohen47cfd462008-05-27 11:29:34 +08002267 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && window->counter) {
Ben Cahill77626352007-11-29 11:09:44 +08002268 /* Save current throughput to compare with "search" throughput*/
Tomas Winklerc33104f2008-01-14 17:46:21 -08002269 lq_sta->last_tpt = current_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002270
Ben Cahill77626352007-11-29 11:09:44 +08002271 /* Select a new "search" modulation mode to try.
2272 * If one is found, set up the new "search" table. */
Zhu Yib481de92007-09-25 17:54:57 -07002273 if (is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002274 rs_move_legacy_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002275 else if (is_siso(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002276 rs_move_siso_to_other(priv, lq_sta, conf, sta, index);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002277 else if (is_mimo2(tbl->lq_type))
2278 rs_move_mimo2_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002279 else
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002280 rs_move_mimo3_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002281
Ben Cahill77626352007-11-29 11:09:44 +08002282 /* If new "search" mode was selected, set up in uCode table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002283 if (lq_sta->search_better_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002284 /* Access the "search" table, clear its history. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002285 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Zhu Yib481de92007-09-25 17:54:57 -07002286 for (i = 0; i < IWL_RATE_COUNT; i++)
2287 rs_rate_scale_clear_window(&(tbl->win[i]));
2288
Ben Cahill77626352007-11-29 11:09:44 +08002289 /* Use new "search" start rate */
Tomas Winklere7d326a2008-06-12 09:47:11 +08002290 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002291
Tomas Winklere1623442009-01-27 14:27:56 -08002292 IWL_DEBUG_RATE(priv, "Switch current mcs: %X index: %d\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002293 tbl->current_rate, index);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002294 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002295 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Mohamed Abbas447fee72009-04-20 14:37:02 -07002296 } else
2297 done_search = 1;
2298 }
Zhu Yib481de92007-09-25 17:54:57 -07002299
Mohamed Abbas447fee72009-04-20 14:37:02 -07002300 if (done_search && !lq_sta->stay_in_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002301 /* If the "active" (non-search) mode was legacy,
2302 * and we've tried switching antennas,
2303 * but we haven't been able to try HT modes (not available),
2304 * stay with best antenna legacy modulation for a while
2305 * before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002306 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08002307 if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
Mohamed Abbasd6e93392009-05-08 13:44:39 -07002308 lq_sta->action_counter > tbl1->max_search) {
Tomas Winklere1623442009-01-27 14:27:56 -08002309 IWL_DEBUG_RATE(priv, "LQ: STAY in legacy table\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08002310 rs_set_stay_in_table(priv, 1, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002311 }
2312
Ben Cahill77626352007-11-29 11:09:44 +08002313 /* If we're in an HT mode, and all 3 mode switch actions
2314 * have been tried and compared, stay in this best modulation
2315 * mode for a while before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002316 if (lq_sta->enable_counter &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002317 (lq_sta->action_counter >= tbl1->max_search) &&
2318 iwl_ht_enabled(priv)) {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002319 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2320 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2321 (tid != MAX_TID_COUNT)) {
Wey-Yi Guy86b47662009-03-10 14:35:09 -07002322 tid_data =
2323 &priv->stations[lq_sta->lq.sta_id].tid[tid];
2324 if (tid_data->agg.state == IWL_AGG_OFF) {
2325 IWL_DEBUG_RATE(priv,
2326 "try to aggregate tid %d\n",
2327 tid);
2328 rs_tl_turn_on_agg(priv, tid,
2329 lq_sta, sta);
2330 }
Zhu Yib481de92007-09-25 17:54:57 -07002331 }
Ester Kummerbf403db2008-05-05 10:22:40 +08002332 rs_set_stay_in_table(priv, 0, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002333 }
Zhu Yib481de92007-09-25 17:54:57 -07002334 }
2335
2336out:
Tomas Winkler978785a2008-12-19 10:37:31 +08002337 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07002338 i = index;
Johannes Bergb7e35002008-09-11 02:22:58 +02002339 lq_sta->last_txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -07002340}
2341
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002342/**
2343 * rs_initialize_lq - Initialize a station's hardware rate table
2344 *
2345 * The uCode's station table contains a table of fallback rates
2346 * for automatic fallback during transmission.
2347 *
2348 * NOTE: This sets up a default set of values. These will be replaced later
2349 * if the driver's iwl-agn-rs rate scaling algorithm is used, instead of
2350 * rc80211_simple.
2351 *
2352 * NOTE: Run REPLY_ADD_STA command to set up station table entry, before
2353 * calling this function (which runs REPLY_TX_LINK_QUALITY_CMD,
2354 * which requires station table entry to exist).
2355 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002356static void rs_initialize_lq(struct iwl_priv *priv,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002357 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002358 struct ieee80211_sta *sta,
2359 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002360{
Tomas Winklere227cea2008-07-18 13:53:05 +08002361 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002362 int rate_idx;
Guy Cohenaade00c2008-04-23 17:14:59 -07002363 int i;
Guy Cohen39e88502008-04-23 17:14:57 -07002364 u32 rate;
Daniel C Halperinb2617932009-08-13 13:30:59 -07002365 u8 use_green = rs_use_green(sta, &priv->current_ht_config);
Guy Cohenaade00c2008-04-23 17:14:59 -07002366 u8 active_tbl = 0;
2367 u8 valid_tx_ant;
Zhu Yib481de92007-09-25 17:54:57 -07002368
Johannes Berg4b7679a2008-09-18 18:14:18 +02002369 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002370 goto out;
2371
Johannes Bergb7e35002008-09-11 02:22:58 +02002372 i = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002373
Guy Cohenaade00c2008-04-23 17:14:59 -07002374 valid_tx_ant = priv->hw_params.valid_tx_ant;
2375
Tomas Winklerc33104f2008-01-14 17:46:21 -08002376 if (!lq_sta->search_better_tbl)
2377 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002378 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002379 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002380
Tomas Winklerc33104f2008-01-14 17:46:21 -08002381 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002382
2383 if ((i < 0) || (i >= IWL_RATE_COUNT))
2384 i = 0;
2385
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002386 rate = iwl_rates[i].plcp;
Winkler, Tomaseb48dca2008-10-29 14:05:48 -07002387 tbl->ant_type = first_antenna(valid_tx_ant);
2388 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
Zhu Yib481de92007-09-25 17:54:57 -07002389
2390 if (i >= IWL_FIRST_CCK_RATE && i <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -07002391 rate |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002392
Guy Cohen39e88502008-04-23 17:14:57 -07002393 rs_get_tbl_info_from_mcs(rate, priv->band, tbl, &rate_idx);
Guy Cohenaade00c2008-04-23 17:14:59 -07002394 if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2395 rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07002396
Tomas Winkler978785a2008-12-19 10:37:31 +08002397 rate = rate_n_flags_from_tbl(priv, tbl, rate_idx, use_green);
Guy Cohen39e88502008-04-23 17:14:57 -07002398 tbl->current_rate = rate;
Guy Coheneecd6e52008-04-23 17:14:58 -07002399 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002400 rs_fill_link_cmd(NULL, lq_sta, rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002401 priv->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq;
2402 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_SYNC, true);
Zhu Yib481de92007-09-25 17:54:57 -07002403 out:
2404 return;
2405}
2406
Johannes Berge6a98542008-10-21 12:40:02 +02002407static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta,
2408 struct ieee80211_tx_rate_control *txrc)
Zhu Yib481de92007-09-25 17:54:57 -07002409{
2410
Johannes Berge6a98542008-10-21 12:40:02 +02002411 struct sk_buff *skb = txrc->skb;
2412 struct ieee80211_supported_band *sband = txrc->sband;
Reinette Chatref875f512010-04-05 10:43:10 -07002413 struct iwl_priv *priv __maybe_unused = (struct iwl_priv *)priv_r;
Johannes Berge6a98542008-10-21 12:40:02 +02002414 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winkler417f1142008-11-12 13:14:06 -08002415 struct iwl_lq_sta *lq_sta = priv_sta;
2416 int rate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002417
Tomas Winklere1623442009-01-27 14:27:56 -08002418 IWL_DEBUG_RATE_LIMIT(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002419
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002420 /* Get max rate if user set max rate */
2421 if (lq_sta) {
2422 lq_sta->max_rate_idx = txrc->max_rate_idx;
2423 if ((sband->band == IEEE80211_BAND_5GHZ) &&
2424 (lq_sta->max_rate_idx != -1))
2425 lq_sta->max_rate_idx += IWL_FIRST_OFDM_RATE;
2426 if ((lq_sta->max_rate_idx < 0) ||
2427 (lq_sta->max_rate_idx >= IWL_RATE_COUNT))
2428 lq_sta->max_rate_idx = -1;
2429 }
2430
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002431 /* Treat uninitialized rate scaling data same as non-existing. */
2432 if (lq_sta && !lq_sta->drv) {
2433 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
2434 priv_sta = NULL;
2435 }
2436
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002437 /* Send management frames and NO_ACK data using lowest rate. */
Luis R. Rodriguez4c6d4f52009-07-16 10:05:41 -07002438 if (rate_control_send_low(sta, priv_sta, txrc))
Johannes Berg4b7679a2008-09-18 18:14:18 +02002439 return;
Zhu Yib481de92007-09-25 17:54:57 -07002440
Tomas Winkler417f1142008-11-12 13:14:06 -08002441 rate_idx = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002442
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002443 if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
Tomas Winkler417f1142008-11-12 13:14:06 -08002444 rate_idx -= IWL_FIRST_OFDM_RATE;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002445 /* 6M and 9M shared same MCS index */
2446 rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
2447 if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2448 IWL_RATE_MIMO3_6M_PLCP)
2449 rate_idx = rate_idx + (2 * MCS_INDEX_PER_STREAM);
2450 else if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2451 IWL_RATE_MIMO2_6M_PLCP)
2452 rate_idx = rate_idx + MCS_INDEX_PER_STREAM;
2453 info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
2454 if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
2455 info->control.rates[0].flags |= IEEE80211_TX_RC_SHORT_GI;
2456 if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
2457 info->control.rates[0].flags |= IEEE80211_TX_RC_DUP_DATA;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002458 if (lq_sta->last_rate_n_flags & RATE_MCS_HT40_MSK)
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002459 info->control.rates[0].flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2460 if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
2461 info->control.rates[0].flags |= IEEE80211_TX_RC_GREEN_FIELD;
2462 } else {
Daniel C Halperin50273092009-08-28 09:44:45 -07002463 /* Check for invalid rates */
2464 if ((rate_idx < 0) || (rate_idx >= IWL_RATE_COUNT_LEGACY) ||
2465 ((sband->band == IEEE80211_BAND_5GHZ) &&
2466 (rate_idx < IWL_FIRST_OFDM_RATE)))
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002467 rate_idx = rate_lowest_index(sband, sta);
Daniel C Halperin50273092009-08-28 09:44:45 -07002468 /* On valid 5 GHz rate, adjust index */
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002469 else if (sband->band == IEEE80211_BAND_5GHZ)
2470 rate_idx -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin7ebaeff2009-08-21 13:34:20 -07002471 info->control.rates[0].flags = 0;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002472 }
Tomas Winkler417f1142008-11-12 13:14:06 -08002473 info->control.rates[0].idx = rate_idx;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002474
Zhu Yib481de92007-09-25 17:54:57 -07002475}
2476
Johannes Berg4b7679a2008-09-18 18:14:18 +02002477static void *rs_alloc_sta(void *priv_rate, struct ieee80211_sta *sta,
2478 gfp_t gfp)
Zhu Yib481de92007-09-25 17:54:57 -07002479{
Tomas Winklere227cea2008-07-18 13:53:05 +08002480 struct iwl_lq_sta *lq_sta;
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002481 struct iwl_station_priv *sta_priv = (struct iwl_station_priv *) sta->drv_priv;
Ester Kummerbf403db2008-05-05 10:22:40 +08002482 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002483
Ester Kummerbf403db2008-05-05 10:22:40 +08002484 priv = (struct iwl_priv *)priv_rate;
Tomas Winklere1623442009-01-27 14:27:56 -08002485 IWL_DEBUG_RATE(priv, "create station rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -07002486
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002487 lq_sta = &sta_priv->lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002488
Tomas Winklerc33104f2008-01-14 17:46:21 -08002489 return lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002490}
2491
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002492/*
2493 * Called after adding a new station to initialize rate scaling
2494 */
2495void iwl_rs_rate_init(struct iwl_priv *priv, struct ieee80211_sta *sta, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07002496{
2497 int i, j;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002498 struct ieee80211_hw *hw = priv->hw;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002499 struct ieee80211_conf *conf = &priv->hw->conf;
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002500 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002501 struct iwl_station_priv *sta_priv;
2502 struct iwl_lq_sta *lq_sta;
2503 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07002504
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002505 sta_priv = (struct iwl_station_priv *) sta->drv_priv;
2506 lq_sta = &sta_priv->lq_sta;
2507 sband = hw->wiphy->bands[conf->channel->band];
2508
2509
2510 lq_sta->lq.sta_id = sta_id;
Reinette Chatre5ad13f82009-10-30 14:36:14 -07002511
2512 for (j = 0; j < LQ_SIZE; j++)
2513 for (i = 0; i < IWL_RATE_COUNT; i++)
2514 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
2515
Tomas Winklerc33104f2008-01-14 17:46:21 -08002516 lq_sta->flush_timer = 0;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002517 lq_sta->supp_rates = sta->supp_rates[sband->band];
Zhu Yib481de92007-09-25 17:54:57 -07002518 for (j = 0; j < LQ_SIZE; j++)
2519 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002520 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002521
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002522 IWL_DEBUG_RATE(priv, "LQ: *** rate scale station global init for station %d ***\n",
2523 sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002524 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2525 * the lowest or the highest rate.. Could consider using RSSI from
2526 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2527 * after assoc.. */
2528
Tomas Winklerc33104f2008-01-14 17:46:21 -08002529 lq_sta->is_dup = 0;
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002530 lq_sta->max_rate_idx = -1;
Abbas, Mohamed7d049e52009-01-20 21:33:53 -08002531 lq_sta->missed_rate_counter = IWL_MISSED_RATE_MAX;
Daniel C Halperinb2617932009-08-13 13:30:59 -07002532 lq_sta->is_green = rs_use_green(sta, &priv->current_ht_config);
Guy Cohen39e88502008-04-23 17:14:57 -07002533 lq_sta->active_legacy_rate = priv->active_rate & ~(0x1000);
Johannes Berg8318d782008-01-24 19:38:38 +01002534 lq_sta->band = priv->band;
Ben Cahill77626352007-11-29 11:09:44 +08002535 /*
2536 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2537 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2538 */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002539 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2540 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002541 lq_sta->active_siso_rate &= ~((u16)0x2);
2542 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002543
Ben Cahill77626352007-11-29 11:09:44 +08002544 /* Same here */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002545 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2546 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002547 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2548 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2549
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002550 lq_sta->active_mimo3_rate = ht_cap->mcs.rx_mask[2] << 1;
2551 lq_sta->active_mimo3_rate |= ht_cap->mcs.rx_mask[2] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002552 lq_sta->active_mimo3_rate &= ~((u16)0x2);
2553 lq_sta->active_mimo3_rate <<= IWL_FIRST_OFDM_RATE;
2554
Tomas Winklere1623442009-01-27 14:27:56 -08002555 IWL_DEBUG_RATE(priv, "SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002556 lq_sta->active_siso_rate,
Guy Cohenfde0db32008-04-21 15:42:01 -07002557 lq_sta->active_mimo2_rate,
2558 lq_sta->active_mimo3_rate);
2559
Tomas Winklera96a27f2008-10-23 23:48:56 -07002560 /* These values will be overridden later */
Wey-Yi Guy3a23d692010-04-03 16:44:39 -07002561 lq_sta->lq.general_params.single_stream_ant_msk =
2562 first_antenna(priv->hw_params.valid_tx_ant);
2563 lq_sta->lq.general_params.dual_stream_ant_msk =
2564 priv->hw_params.valid_tx_ant &
2565 ~first_antenna(priv->hw_params.valid_tx_ant);
2566 if (!lq_sta->lq.general_params.dual_stream_ant_msk) {
2567 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2568 } else if (num_of_ant(priv->hw_params.valid_tx_ant) == 2) {
2569 lq_sta->lq.general_params.dual_stream_ant_msk =
2570 priv->hw_params.valid_tx_ant;
2571 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002572
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002573 /* as default allow aggregation for all tids */
2574 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002575 lq_sta->drv = priv;
Zhu Yib481de92007-09-25 17:54:57 -07002576
Daniel C Halperin50273092009-08-28 09:44:45 -07002577 /* Set last_txrate_idx to lowest rate */
2578 lq_sta->last_txrate_idx = rate_lowest_index(sband, sta);
2579 if (sband->band == IEEE80211_BAND_5GHZ)
2580 lq_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
Daniel C Halperine3949d62009-09-17 10:43:50 -07002581 lq_sta->is_agg = 0;
Mohamed Abbasd5e49032008-12-12 08:22:15 -08002582
Johannes Berg4b7679a2008-09-18 18:14:18 +02002583 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002584}
2585
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002586static void rs_fill_link_cmd(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08002587 struct iwl_lq_sta *lq_sta, u32 new_rate)
Zhu Yib481de92007-09-25 17:54:57 -07002588{
Tomas Winklere227cea2008-07-18 13:53:05 +08002589 struct iwl_scale_tbl_info tbl_type;
Zhu Yib481de92007-09-25 17:54:57 -07002590 int index = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002591 int rate_idx;
Zhu Yi1b696de2007-09-27 11:27:41 +08002592 int repeat_rate = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07002593 u8 ant_toggle_cnt = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002594 u8 use_ht_possible = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07002595 u8 valid_tx_ant = 0;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002596 struct iwl_link_quality_cmd *lq_cmd = &lq_sta->lq;
Zhu Yib481de92007-09-25 17:54:57 -07002597
Ben Cahill77626352007-11-29 11:09:44 +08002598 /* Override starting rate (index 0) if needed for debug purposes */
Guy Cohen39e88502008-04-23 17:14:57 -07002599 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Zhu Yi98d7e092007-09-27 11:27:42 +08002600
Guy Cohen39e88502008-04-23 17:14:57 -07002601 /* Interpret new_rate (rate_n_flags) */
Guy Cohenaade00c2008-04-23 17:14:59 -07002602 memset(&tbl_type, 0, sizeof(tbl_type));
Guy Cohen39e88502008-04-23 17:14:57 -07002603 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
Zhu Yib481de92007-09-25 17:54:57 -07002604 &tbl_type, &rate_idx);
2605
Ben Cahill77626352007-11-29 11:09:44 +08002606 /* How many times should we repeat the initial rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002607 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002608 ant_toggle_cnt = 1;
Zhu Yi1b696de2007-09-27 11:27:41 +08002609 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002610 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002611 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002612 }
Zhu Yib481de92007-09-25 17:54:57 -07002613
2614 lq_cmd->general_params.mimo_delimiter =
2615 is_mimo(tbl_type.lq_type) ? 1 : 0;
Ben Cahill77626352007-11-29 11:09:44 +08002616
2617 /* Fill 1st table entry (index 0) */
Guy Cohen39e88502008-04-23 17:14:57 -07002618 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002619
Guy Cohen07bc28e2008-04-23 17:15:03 -07002620 if (num_of_ant(tbl_type.ant_type) == 1) {
2621 lq_cmd->general_params.single_stream_ant_msk =
2622 tbl_type.ant_type;
2623 } else if (num_of_ant(tbl_type.ant_type) == 2) {
2624 lq_cmd->general_params.dual_stream_ant_msk =
2625 tbl_type.ant_type;
2626 } /* otherwise we don't modify the existing value */
Zhu Yib481de92007-09-25 17:54:57 -07002627
2628 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002629 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002630
Guy Cohenaade00c2008-04-23 17:14:59 -07002631 if (priv)
2632 valid_tx_ant = priv->hw_params.valid_tx_ant;
2633
Ben Cahill77626352007-11-29 11:09:44 +08002634 /* Fill rest of rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002635 while (index < LINK_QUAL_MAX_RETRY_NUM) {
Ben Cahill77626352007-11-29 11:09:44 +08002636 /* Repeat initial/next rate.
2637 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2638 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
Zhu Yi1b696de2007-09-27 11:27:41 +08002639 while (repeat_rate > 0 && (index < LINK_QUAL_MAX_RETRY_NUM)) {
Zhu Yib481de92007-09-25 17:54:57 -07002640 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002641 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2642 ant_toggle_cnt++;
2643 else if (priv &&
2644 rs_toggle_antenna(valid_tx_ant,
2645 &new_rate, &tbl_type))
2646 ant_toggle_cnt = 1;
2647}
Zhu Yi98d7e092007-09-27 11:27:42 +08002648
Ben Cahill77626352007-11-29 11:09:44 +08002649 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002650 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002651
2652 /* Fill next table entry */
Zhu Yib481de92007-09-25 17:54:57 -07002653 lq_cmd->rs_table[index].rate_n_flags =
Guy Cohen39e88502008-04-23 17:14:57 -07002654 cpu_to_le32(new_rate);
Zhu Yi1b696de2007-09-27 11:27:41 +08002655 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002656 index++;
2657 }
2658
Guy Cohen39e88502008-04-23 17:14:57 -07002659 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
Zhu Yib481de92007-09-25 17:54:57 -07002660 &rate_idx);
2661
Ben Cahill77626352007-11-29 11:09:44 +08002662 /* Indicate to uCode which entries might be MIMO.
2663 * If initial rate was MIMO, this will finally end up
2664 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Zhu Yib481de92007-09-25 17:54:57 -07002665 if (is_mimo(tbl_type.lq_type))
2666 lq_cmd->general_params.mimo_delimiter = index;
2667
Ben Cahill77626352007-11-29 11:09:44 +08002668 /* Get next rate */
Guy Cohen39e88502008-04-23 17:14:57 -07002669 new_rate = rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2670 use_ht_possible);
Zhu Yib481de92007-09-25 17:54:57 -07002671
Ben Cahill77626352007-11-29 11:09:44 +08002672 /* How many times should we repeat the next rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002673 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002674 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2675 ant_toggle_cnt++;
2676 else if (priv &&
2677 rs_toggle_antenna(valid_tx_ant,
2678 &new_rate, &tbl_type))
2679 ant_toggle_cnt = 1;
2680
Zhu Yi1b696de2007-09-27 11:27:41 +08002681 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002682 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002683 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002684 }
Zhu Yib481de92007-09-25 17:54:57 -07002685
Ben Cahill77626352007-11-29 11:09:44 +08002686 /* Don't allow HT rates after next pass.
2687 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Zhu Yib481de92007-09-25 17:54:57 -07002688 use_ht_possible = 0;
2689
Ben Cahill77626352007-11-29 11:09:44 +08002690 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002691 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002692
2693 /* Fill next table entry */
Guy Cohen39e88502008-04-23 17:14:57 -07002694 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002695
2696 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002697 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002698 }
2699
Wey-Yi Guy4d80d722009-10-02 13:44:01 -07002700 lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07002701 lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2702 lq_cmd->agg_params.agg_time_limit =
2703 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
Zhu Yib481de92007-09-25 17:54:57 -07002704}
2705
Johannes Berg4b7679a2008-09-18 18:14:18 +02002706static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Zhu Yib481de92007-09-25 17:54:57 -07002707{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002708 return hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002709}
2710/* rate scale requires free function to be implemented */
2711static void rs_free(void *priv_rate)
2712{
2713 return;
2714}
2715
Johannes Berg4b7679a2008-09-18 18:14:18 +02002716static void rs_free_sta(void *priv_r, struct ieee80211_sta *sta,
2717 void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002718{
Rami Rosen45527c22008-10-07 09:50:01 +02002719 struct iwl_priv *priv __maybe_unused = priv_r;
Zhu Yib481de92007-09-25 17:54:57 -07002720
Tomas Winklere1623442009-01-27 14:27:56 -08002721 IWL_DEBUG_RATE(priv, "enter\n");
Tomas Winklere1623442009-01-27 14:27:56 -08002722 IWL_DEBUG_RATE(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002723}
2724
2725
Zhu Yi93dc6462007-09-27 11:27:37 +08002726#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi5ae212c2007-09-27 11:27:38 +08002727static int open_file_generic(struct inode *inode, struct file *file)
2728{
2729 file->private_data = inode->i_private;
2730 return 0;
2731}
Tomas Winklere227cea2008-07-18 13:53:05 +08002732static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
2733 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +08002734{
Ester Kummerbf403db2008-05-05 10:22:40 +08002735 struct iwl_priv *priv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002736 u8 valid_tx_ant;
2737 u8 ant_sel_tx;
Ester Kummerbf403db2008-05-05 10:22:40 +08002738
2739 priv = lq_sta->drv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002740 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen39e88502008-04-23 17:14:57 -07002741 if (lq_sta->dbg_fixed_rate) {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002742 ant_sel_tx =
2743 ((lq_sta->dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK)
2744 >> RATE_MCS_ANT_POS);
2745 if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
Guy Cohen39e88502008-04-23 17:14:57 -07002746 *rate_n_flags = lq_sta->dbg_fixed_rate;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002747 IWL_DEBUG_RATE(priv, "Fixed rate ON\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002748 } else {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002749 lq_sta->dbg_fixed_rate = 0;
2750 IWL_ERR(priv,
2751 "Invalid antenna selection 0x%X, Valid is 0x%X\n",
2752 ant_sel_tx, valid_tx_ant);
2753 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002754 }
Guy Cohen39e88502008-04-23 17:14:57 -07002755 } else {
Tomas Winklere1623442009-01-27 14:27:56 -08002756 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Zhu Yi98d7e092007-09-27 11:27:42 +08002757 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002758}
2759
2760static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
2761 const char __user *user_buf, size_t count, loff_t *ppos)
2762{
Tomas Winklere227cea2008-07-18 13:53:05 +08002763 struct iwl_lq_sta *lq_sta = file->private_data;
Ester Kummerbf403db2008-05-05 10:22:40 +08002764 struct iwl_priv *priv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002765 char buf[64];
2766 int buf_size;
2767 u32 parsed_rate;
2768
Ester Kummerbf403db2008-05-05 10:22:40 +08002769 priv = lq_sta->drv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002770 memset(buf, 0, sizeof(buf));
2771 buf_size = min(count, sizeof(buf) - 1);
2772 if (copy_from_user(buf, user_buf, buf_size))
2773 return -EFAULT;
2774
2775 if (sscanf(buf, "%x", &parsed_rate) == 1)
Guy Cohen39e88502008-04-23 17:14:57 -07002776 lq_sta->dbg_fixed_rate = parsed_rate;
Zhu Yi98d7e092007-09-27 11:27:42 +08002777 else
Guy Cohen39e88502008-04-23 17:14:57 -07002778 lq_sta->dbg_fixed_rate = 0;
Zhu Yi98d7e092007-09-27 11:27:42 +08002779
Guy Cohen39e88502008-04-23 17:14:57 -07002780 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
2781 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2782 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2783 lq_sta->active_mimo3_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Zhu Yi98d7e092007-09-27 11:27:42 +08002784
Tomas Winklere1623442009-01-27 14:27:56 -08002785 IWL_DEBUG_RATE(priv, "sta_id %d rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002786 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002787
Guy Cohen39e88502008-04-23 17:14:57 -07002788 if (lq_sta->dbg_fixed_rate) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002789 rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002790 iwl_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC, false);
Zhu Yi98d7e092007-09-27 11:27:42 +08002791 }
2792
2793 return count;
2794}
Zhu Yi0209dc12007-09-27 11:27:43 +08002795
Zhu Yi5ae212c2007-09-27 11:27:38 +08002796static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
2797 char __user *user_buf, size_t count, loff_t *ppos)
2798{
Frank Seidela412c802009-03-01 20:25:38 +01002799 char *buff;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002800 int desc = 0;
2801 int i = 0;
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002802 int index = 0;
Frank Seidela412c802009-03-01 20:25:38 +01002803 ssize_t ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002804
Tomas Winklere227cea2008-07-18 13:53:05 +08002805 struct iwl_lq_sta *lq_sta = file->private_data;
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002806 struct iwl_priv *priv;
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002807 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002808
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002809 priv = lq_sta->drv;
Frank Seidela412c802009-03-01 20:25:38 +01002810 buff = kmalloc(1024, GFP_KERNEL);
2811 if (!buff)
2812 return -ENOMEM;
2813
Tomas Winklerc33104f2008-01-14 17:46:21 -08002814 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
Zhu Yi98d7e092007-09-27 11:27:42 +08002815 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002816 lq_sta->total_failed, lq_sta->total_success,
Guy Cohen39e88502008-04-23 17:14:57 -07002817 lq_sta->active_legacy_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002818 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002819 lq_sta->dbg_fixed_rate);
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002820 desc += sprintf(buff+desc, "valid_tx_ant %s%s%s\n",
2821 (priv->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
2822 (priv->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
2823 (priv->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002824 desc += sprintf(buff+desc, "lq type %s\n",
2825 (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
2826 if (is_Ht(tbl->lq_type)) {
2827 desc += sprintf(buff+desc, " %s",
2828 (is_siso(tbl->lq_type)) ? "SISO" :
2829 ((is_mimo2(tbl->lq_type)) ? "MIMO2" : "MIMO3"));
2830 desc += sprintf(buff+desc, " %s",
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002831 (tbl->is_ht40) ? "40MHz" : "20MHz");
Daniel C Halperine3949d62009-09-17 10:43:50 -07002832 desc += sprintf(buff+desc, " %s %s %s\n", (tbl->is_SGI) ? "SGI" : "",
2833 (lq_sta->is_green) ? "GF enabled" : "",
2834 (lq_sta->is_agg) ? "AGG on" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002835 }
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002836 desc += sprintf(buff+desc, "last tx rate=0x%X\n",
2837 lq_sta->last_rate_n_flags);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002838 desc += sprintf(buff+desc, "general:"
2839 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002840 lq_sta->lq.general_params.flags,
2841 lq_sta->lq.general_params.mimo_delimiter,
2842 lq_sta->lq.general_params.single_stream_ant_msk,
2843 lq_sta->lq.general_params.dual_stream_ant_msk);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002844
2845 desc += sprintf(buff+desc, "agg:"
2846 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002847 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
2848 lq_sta->lq.agg_params.agg_dis_start_th,
2849 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002850
2851 desc += sprintf(buff+desc,
2852 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002853 lq_sta->lq.general_params.start_rate_index[0],
2854 lq_sta->lq.general_params.start_rate_index[1],
2855 lq_sta->lq.general_params.start_rate_index[2],
2856 lq_sta->lq.general_params.start_rate_index[3]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002857
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002858 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
2859 index = iwl_hwrate_to_plcp_idx(
2860 le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags));
2861 if (is_legacy(tbl->lq_type)) {
2862 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps\n",
2863 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
2864 iwl_rate_mcs[index].mbps);
2865 } else {
2866 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps (%s)\n",
2867 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
2868 iwl_rate_mcs[index].mbps, iwl_rate_mcs[index].mcs);
2869 }
2870 }
Zhu Yi5ae212c2007-09-27 11:27:38 +08002871
Frank Seidela412c802009-03-01 20:25:38 +01002872 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2873 kfree(buff);
2874 return ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002875}
2876
2877static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Zhu Yi98d7e092007-09-27 11:27:42 +08002878 .write = rs_sta_dbgfs_scale_table_write,
Zhu Yi5ae212c2007-09-27 11:27:38 +08002879 .read = rs_sta_dbgfs_scale_table_read,
2880 .open = open_file_generic,
2881};
Zhu Yi0209dc12007-09-27 11:27:43 +08002882static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
2883 char __user *user_buf, size_t count, loff_t *ppos)
2884{
Frank Seidela412c802009-03-01 20:25:38 +01002885 char *buff;
Zhu Yi0209dc12007-09-27 11:27:43 +08002886 int desc = 0;
2887 int i, j;
Frank Seidela412c802009-03-01 20:25:38 +01002888 ssize_t ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08002889
Tomas Winklere227cea2008-07-18 13:53:05 +08002890 struct iwl_lq_sta *lq_sta = file->private_data;
Frank Seidela412c802009-03-01 20:25:38 +01002891
2892 buff = kmalloc(1024, GFP_KERNEL);
2893 if (!buff)
2894 return -ENOMEM;
2895
Zhu Yi0209dc12007-09-27 11:27:43 +08002896 for (i = 0; i < LQ_SIZE; i++) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002897 desc += sprintf(buff+desc,
2898 "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
Zhu Yi0209dc12007-09-27 11:27:43 +08002899 "rate=0x%X\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08002900 lq_sta->active_tbl == i ? "*" : "x",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002901 lq_sta->lq_info[i].lq_type,
2902 lq_sta->lq_info[i].is_SGI,
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002903 lq_sta->lq_info[i].is_ht40,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002904 lq_sta->lq_info[i].is_dup,
Wey-Yi Guy2681b202009-05-21 13:44:22 -07002905 lq_sta->is_green,
Guy Cohen39e88502008-04-23 17:14:57 -07002906 lq_sta->lq_info[i].current_rate);
Zhu Yi0209dc12007-09-27 11:27:43 +08002907 for (j = 0; j < IWL_RATE_COUNT; j++) {
2908 desc += sprintf(buff+desc,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002909 "counter=%d success=%d %%=%d\n",
2910 lq_sta->lq_info[i].win[j].counter,
2911 lq_sta->lq_info[i].win[j].success_counter,
2912 lq_sta->lq_info[i].win[j].success_ratio);
Zhu Yi0209dc12007-09-27 11:27:43 +08002913 }
2914 }
Frank Seidela412c802009-03-01 20:25:38 +01002915 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2916 kfree(buff);
2917 return ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08002918}
2919
2920static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
2921 .read = rs_sta_dbgfs_stats_table_read,
2922 .open = open_file_generic,
2923};
Zhu Yi5ae212c2007-09-27 11:27:38 +08002924
Wey-Yi Guy38167452009-05-08 13:44:43 -07002925static ssize_t rs_sta_dbgfs_rate_scale_data_read(struct file *file,
2926 char __user *user_buf, size_t count, loff_t *ppos)
2927{
2928 char buff[120];
2929 int desc = 0;
2930 ssize_t ret;
2931
2932 struct iwl_lq_sta *lq_sta = file->private_data;
2933 struct iwl_priv *priv;
2934 struct iwl_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
2935
2936 priv = lq_sta->drv;
2937
2938 if (is_Ht(tbl->lq_type))
2939 desc += sprintf(buff+desc,
2940 "Bit Rate= %d Mb/s\n",
2941 tbl->expected_tpt[lq_sta->last_txrate_idx]);
2942 else
2943 desc += sprintf(buff+desc,
2944 "Bit Rate= %d Mb/s\n",
2945 iwl_rates[lq_sta->last_txrate_idx].ieee >> 1);
Wey-Yi Guy38167452009-05-08 13:44:43 -07002946
2947 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2948 return ret;
2949}
2950
2951static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
2952 .read = rs_sta_dbgfs_rate_scale_data_read,
2953 .open = open_file_generic,
2954};
2955
Zhu Yi93dc6462007-09-27 11:27:37 +08002956static void rs_add_debugfs(void *priv, void *priv_sta,
2957 struct dentry *dir)
2958{
Tomas Winklere227cea2008-07-18 13:53:05 +08002959 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002960 lq_sta->rs_sta_dbgfs_scale_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002961 debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002962 lq_sta, &rs_sta_dbgfs_scale_table_ops);
2963 lq_sta->rs_sta_dbgfs_stats_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002964 debugfs_create_file("rate_stats_table", S_IRUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002965 lq_sta, &rs_sta_dbgfs_stats_table_ops);
Wey-Yi Guy38167452009-05-08 13:44:43 -07002966 lq_sta->rs_sta_dbgfs_rate_scale_data_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002967 debugfs_create_file("rate_scale_data", S_IRUSR, dir,
Wey-Yi Guy38167452009-05-08 13:44:43 -07002968 lq_sta, &rs_sta_dbgfs_rate_scale_data_ops);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002969 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002970 debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002971 &lq_sta->tx_agg_tid_en);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002972
Zhu Yi93dc6462007-09-27 11:27:37 +08002973}
2974
2975static void rs_remove_debugfs(void *priv, void *priv_sta)
2976{
Tomas Winklere227cea2008-07-18 13:53:05 +08002977 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002978 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
2979 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
Wey-Yi Guy38167452009-05-08 13:44:43 -07002980 debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002981 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
Zhu Yi93dc6462007-09-27 11:27:37 +08002982}
2983#endif
2984
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002985/*
2986 * Initialization of rate scaling information is done by driver after
2987 * the station is added. Since mac80211 calls this function before a
2988 * station is added we ignore it.
2989 */
2990static void rs_rate_init_stub(void *priv_r, struct ieee80211_supported_band *sband,
2991 struct ieee80211_sta *sta, void *priv_sta)
2992{
2993}
Zhu Yib481de92007-09-25 17:54:57 -07002994static struct rate_control_ops rs_ops = {
2995 .module = NULL,
2996 .name = RS_NAME,
2997 .tx_status = rs_tx_status,
2998 .get_rate = rs_get_rate,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002999 .rate_init = rs_rate_init_stub,
Zhu Yib481de92007-09-25 17:54:57 -07003000 .alloc = rs_alloc,
3001 .free = rs_free,
3002 .alloc_sta = rs_alloc_sta,
3003 .free_sta = rs_free_sta,
Zhu Yi93dc6462007-09-27 11:27:37 +08003004#ifdef CONFIG_MAC80211_DEBUGFS
3005 .add_sta_debugfs = rs_add_debugfs,
3006 .remove_sta_debugfs = rs_remove_debugfs,
3007#endif
Zhu Yib481de92007-09-25 17:54:57 -07003008};
3009
Tomas Winklere227cea2008-07-18 13:53:05 +08003010int iwlagn_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -07003011{
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003012 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003013}
3014
Tomas Winklere227cea2008-07-18 13:53:05 +08003015void iwlagn_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -07003016{
3017 ieee80211_rate_control_unregister(&rs_ops);
3018}
3019