blob: e78f3f0592d6fb590a043002fda00bddcfd5b853 [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);
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -070085static void rs_stay_in_table(struct iwl_lq_sta *lq_sta, bool force_search);
Zhu Yib481de92007-09-25 17:54:57 -070086
87
Zhu Yi98d7e092007-09-27 11:27:42 +080088#ifdef CONFIG_MAC80211_DEBUGFS
Tomas Winklere227cea2008-07-18 13:53:05 +080089static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
90 u32 *rate_n_flags, int index);
Zhu Yi98d7e092007-09-27 11:27:42 +080091#else
Tomas Winklere227cea2008-07-18 13:53:05 +080092static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
93 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +080094{}
95#endif
Ben Cahill77626352007-11-29 11:09:44 +080096
Daniel C Halperine3949d62009-09-17 10:43:50 -070097/**
98 * The following tables contain the expected throughput metrics for all rates
99 *
100 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
101 *
102 * where invalid entries are zeros.
103 *
104 * CCK rates are only valid in legacy table and will only be used in G
105 * (2.4 GHz) band.
Ben Cahill77626352007-11-29 11:09:44 +0800106 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -0700107
Daniel C Halperine3949d62009-09-17 10:43:50 -0700108static s32 expected_tpt_legacy[IWL_RATE_COUNT] = {
109 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0
Zhu Yib481de92007-09-25 17:54:57 -0700110};
111
Daniel C Halperine3949d62009-09-17 10:43:50 -0700112static s32 expected_tpt_siso20MHz[4][IWL_RATE_COUNT] = {
113 {0, 0, 0, 0, 42, 0, 76, 102, 124, 158, 183, 193, 202}, /* Norm */
114 {0, 0, 0, 0, 46, 0, 82, 110, 132, 167, 192, 202, 210}, /* SGI */
115 {0, 0, 0, 0, 48, 0, 93, 135, 176, 251, 319, 351, 381}, /* AGG */
116 {0, 0, 0, 0, 53, 0, 102, 149, 193, 275, 348, 381, 413}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700117};
118
Daniel C Halperine3949d62009-09-17 10:43:50 -0700119static s32 expected_tpt_siso40MHz[4][IWL_RATE_COUNT] = {
120 {0, 0, 0, 0, 77, 0, 127, 160, 184, 220, 242, 250, 257}, /* Norm */
121 {0, 0, 0, 0, 83, 0, 135, 169, 193, 229, 250, 257, 264}, /* SGI */
122 {0, 0, 0, 0, 96, 0, 182, 259, 328, 451, 553, 598, 640}, /* AGG */
123 {0, 0, 0, 0, 106, 0, 199, 282, 357, 487, 593, 640, 683}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700124};
125
Daniel C Halperine3949d62009-09-17 10:43:50 -0700126static s32 expected_tpt_mimo2_20MHz[4][IWL_RATE_COUNT] = {
127 {0, 0, 0, 0, 74, 0, 123, 155, 179, 213, 235, 243, 250}, /* Norm */
128 {0, 0, 0, 0, 81, 0, 131, 164, 187, 221, 242, 250, 256}, /* SGI */
129 {0, 0, 0, 0, 92, 0, 175, 250, 317, 436, 534, 578, 619}, /* AGG */
130 {0, 0, 0, 0, 102, 0, 192, 273, 344, 470, 573, 619, 660}, /* AGG+SGI*/
Zhu Yib481de92007-09-25 17:54:57 -0700131};
132
Daniel C Halperine3949d62009-09-17 10:43:50 -0700133static s32 expected_tpt_mimo2_40MHz[4][IWL_RATE_COUNT] = {
134 {0, 0, 0, 0, 123, 0, 182, 214, 235, 264, 279, 285, 289}, /* Norm */
135 {0, 0, 0, 0, 131, 0, 191, 222, 242, 270, 284, 289, 293}, /* SGI */
136 {0, 0, 0, 0, 180, 0, 327, 446, 545, 708, 828, 878, 922}, /* AGG */
137 {0, 0, 0, 0, 197, 0, 355, 481, 584, 752, 872, 922, 966}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700138};
139
Daniel C Halperine3949d62009-09-17 10:43:50 -0700140static s32 expected_tpt_mimo3_20MHz[4][IWL_RATE_COUNT] = {
141 {0, 0, 0, 0, 99, 0, 153, 186, 208, 239, 256, 263, 268}, /* Norm */
142 {0, 0, 0, 0, 106, 0, 162, 194, 215, 246, 262, 268, 273}, /* SGI */
143 {0, 0, 0, 0, 134, 0, 249, 346, 431, 574, 685, 732, 775}, /* AGG */
144 {0, 0, 0, 0, 148, 0, 272, 376, 465, 614, 727, 775, 818}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700145};
146
Daniel C Halperine3949d62009-09-17 10:43:50 -0700147static s32 expected_tpt_mimo3_40MHz[4][IWL_RATE_COUNT] = {
148 {0, 0, 0, 0, 152, 0, 211, 239, 255, 279, 290, 294, 297}, /* Norm */
149 {0, 0, 0, 0, 160, 0, 219, 245, 261, 284, 294, 297, 300}, /* SGI */
150 {0, 0, 0, 0, 254, 0, 443, 584, 695, 868, 984, 1030, 1070}, /* AGG */
151 {0, 0, 0, 0, 277, 0, 478, 624, 737, 911, 1026, 1070, 1109}, /* AGG+SGI */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -0700152};
153
Wey-Yi Guy12b96812009-04-08 11:39:27 -0700154/* mbps, mcs */
Tobias Klauser79496732009-12-23 14:18:11 +0100155static const struct iwl_rate_mcs_info iwl_rate_mcs[IWL_RATE_COUNT] = {
Daniel C Halperine3949d62009-09-17 10:43:50 -0700156 { "1", "BPSK DSSS"},
157 { "2", "QPSK DSSS"},
158 {"5.5", "BPSK CCK"},
159 { "11", "QPSK CCK"},
160 { "6", "BPSK 1/2"},
161 { "9", "BPSK 1/2"},
162 { "12", "QPSK 1/2"},
163 { "18", "QPSK 3/4"},
164 { "24", "16QAM 1/2"},
165 { "36", "16QAM 3/4"},
166 { "48", "64QAM 2/3"},
167 { "54", "64QAM 3/4"},
168 { "60", "64QAM 5/6"},
Wey-Yi Guy12b96812009-04-08 11:39:27 -0700169};
170
Wey-Yi Guya9c146b2009-05-22 11:01:48 -0700171#define MCS_INDEX_PER_STREAM (8)
172
Guy Cohen39e88502008-04-23 17:14:57 -0700173static inline u8 rs_extract_rate(u32 rate_n_flags)
Zhu Yib481de92007-09-25 17:54:57 -0700174{
175 return (u8)(rate_n_flags & 0xFF);
176}
177
Tomas Winklere227cea2008-07-18 13:53:05 +0800178static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window)
Zhu Yib481de92007-09-25 17:54:57 -0700179{
180 window->data = 0;
181 window->success_counter = 0;
182 window->success_ratio = IWL_INVALID_VALUE;
183 window->counter = 0;
184 window->average_tpt = IWL_INVALID_VALUE;
185 window->stamp = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700186}
187
Guy Cohenaade00c2008-04-23 17:14:59 -0700188static inline u8 rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
189{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300190 return (ant_type & valid_antenna) == ant_type;
Guy Cohenaade00c2008-04-23 17:14:59 -0700191}
192
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200193/*
194 * removes the old data from the statistics. All data that is older than
195 * TID_MAX_TIME_DIFF, will be deleted.
196 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800197static void rs_tl_rm_old_stats(struct iwl_traffic_load *tl, u32 curr_time)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200198{
199 /* The oldest age we want to keep */
200 u32 oldest_time = curr_time - TID_MAX_TIME_DIFF;
201
202 while (tl->queue_count &&
203 (tl->time_stamp < oldest_time)) {
204 tl->total -= tl->packet_count[tl->head];
205 tl->packet_count[tl->head] = 0;
206 tl->time_stamp += TID_QUEUE_CELL_SPACING;
207 tl->queue_count--;
208 tl->head++;
209 if (tl->head >= TID_QUEUE_MAX_SIZE)
210 tl->head = 0;
211 }
212}
213
214/*
215 * increment traffic load value for tid and also remove
216 * any old values if passed the certain time period
217 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800218static u8 rs_tl_add_packet(struct iwl_lq_sta *lq_data,
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800219 struct ieee80211_hdr *hdr)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200220{
221 u32 curr_time = jiffies_to_msecs(jiffies);
222 u32 time_diff;
223 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800224 struct iwl_traffic_load *tl = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800225 u8 tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200226
Tomas Winkler417f1142008-11-12 13:14:06 -0800227 if (ieee80211_is_data_qos(hdr->frame_control)) {
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700228 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +0800229 tid = qc[0] & 0xf;
230 } else
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800231 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200232
Reinette Chatree6a6cf42009-08-13 13:30:50 -0700233 if (unlikely(tid >= TID_MAX_LOAD_COUNT))
234 return MAX_TID_COUNT;
235
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200236 tl = &lq_data->load[tid];
237
238 curr_time -= curr_time % TID_ROUND_VALUE;
239
240 /* Happens only for the first packet. Initialize the data */
241 if (!(tl->queue_count)) {
242 tl->total = 1;
243 tl->time_stamp = curr_time;
244 tl->queue_count = 1;
245 tl->head = 0;
246 tl->packet_count[0] = 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800247 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200248 }
249
250 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
251 index = time_diff / TID_QUEUE_CELL_SPACING;
252
253 /* The history is too long: remove data that is older than */
254 /* TID_MAX_TIME_DIFF */
255 if (index >= TID_QUEUE_MAX_SIZE)
256 rs_tl_rm_old_stats(tl, curr_time);
257
258 index = (tl->head + index) % TID_QUEUE_MAX_SIZE;
259 tl->packet_count[index] = tl->packet_count[index] + 1;
260 tl->total = tl->total + 1;
261
262 if ((index + 1) > tl->queue_count)
263 tl->queue_count = index + 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800264
265 return tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200266}
267
268/*
269 get the traffic load value for tid
270*/
Tomas Winklere227cea2008-07-18 13:53:05 +0800271static u32 rs_tl_get_load(struct iwl_lq_sta *lq_data, u8 tid)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200272{
273 u32 curr_time = jiffies_to_msecs(jiffies);
274 u32 time_diff;
275 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800276 struct iwl_traffic_load *tl = NULL;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200277
278 if (tid >= TID_MAX_LOAD_COUNT)
279 return 0;
280
281 tl = &(lq_data->load[tid]);
282
283 curr_time -= curr_time % TID_ROUND_VALUE;
284
285 if (!(tl->queue_count))
286 return 0;
287
288 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
289 index = time_diff / TID_QUEUE_CELL_SPACING;
290
291 /* The history is too long: remove data that is older than */
292 /* TID_MAX_TIME_DIFF */
293 if (index >= TID_QUEUE_MAX_SIZE)
294 rs_tl_rm_old_stats(tl, curr_time);
295
296 return tl->total;
297}
298
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700299static int rs_tl_turn_on_agg_for_tid(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +0800300 struct iwl_lq_sta *lq_data, u8 tid,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200301 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200302{
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700303 int ret = -EAGAIN;
Johannes Berg290f5992010-08-23 07:56:58 -0700304 u32 load;
305
306 /*
307 * Don't create TX aggregation sessions when in high
308 * BT traffic, as they would just be disrupted by BT.
309 */
310 if (priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH) {
311 IWL_ERR(priv, "BT traffic (%d), no aggregation allowed\n",
312 priv->bt_traffic_load);
313 return ret;
314 }
315
316 load = rs_tl_get_load(lq_data, tid);
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800317
Andy Lutomirski24110542010-07-25 13:14:29 -0400318 if (load > IWL_AGG_LOAD_THRESHOLD) {
Tomas Winklere1623442009-01-27 14:27:56 -0800319 IWL_DEBUG_HT(priv, "Starting Tx agg: STA: %pM tid: %d\n",
Johannes Berge1749612008-10-27 15:59:26 -0700320 sta->addr, tid);
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800321 ret = ieee80211_start_tx_ba_session(sta, tid);
322 if (ret == -EAGAIN) {
323 /*
324 * driver and mac80211 is out of sync
325 * this might be cause by reloading firmware
326 * stop the tx ba session here
327 */
Andy Lutomirski24110542010-07-25 13:14:29 -0400328 IWL_ERR(priv, "Fail start Tx agg on tid: %d\n",
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800329 tid);
Johannes Berg6a8579d2010-05-27 14:41:07 +0200330 ieee80211_stop_tx_ba_session(sta, tid);
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800331 }
Andy Lutomirski24110542010-07-25 13:14:29 -0400332 } else {
333 IWL_ERR(priv, "Aggregation not enabled for tid %d "
334 "because load = %u\n", tid, load);
335 }
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700336 return ret;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200337}
338
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700339static void rs_tl_turn_on_agg(struct iwl_priv *priv, u8 tid,
Tomas Winklere227cea2008-07-18 13:53:05 +0800340 struct iwl_lq_sta *lq_data,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200341 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200342{
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -0700343 if (tid < TID_MAX_LOAD_COUNT)
344 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
345 else
346 IWL_ERR(priv, "tid exceeds max load count: %d/%d\n",
347 tid, TID_MAX_LOAD_COUNT);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200348}
349
Guy Cohen39e88502008-04-23 17:14:57 -0700350static inline int get_num_of_ant_from_rate(u32 rate_n_flags)
Guy Cohenfde0db32008-04-21 15:42:01 -0700351{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300352 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
353 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
354 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
Guy Cohenfde0db32008-04-21 15:42:01 -0700355}
356
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700357/*
358 * Static function to get the expected throughput from an iwl_scale_tbl_info
359 * that wraps a NULL pointer check
360 */
361static s32 get_expected_tpt(struct iwl_scale_tbl_info *tbl, int rs_index)
362{
363 if (tbl->expected_tpt)
364 return tbl->expected_tpt[rs_index];
365 return 0;
366}
367
Ben Cahill77626352007-11-29 11:09:44 +0800368/**
369 * rs_collect_tx_data - Update the success/failure sliding window
370 *
371 * We keep a sliding window of the last 62 packets transmitted
372 * at this rate. window->data contains the bitmask of successful
373 * packets.
374 */
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700375static int rs_collect_tx_data(struct iwl_scale_tbl_info *tbl,
376 int scale_index, int attempts, int successes)
Zhu Yib481de92007-09-25 17:54:57 -0700377{
Tomas Winklere227cea2008-07-18 13:53:05 +0800378 struct iwl_rate_scale_data *window = NULL;
Guy Cohen39e88502008-04-23 17:14:57 -0700379 static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1));
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700380 s32 fail_count, tpt;
Zhu Yib481de92007-09-25 17:54:57 -0700381
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800382 if (scale_index < 0 || scale_index >= IWL_RATE_COUNT)
383 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700384
Daniel C Halperine3949d62009-09-17 10:43:50 -0700385 /* Select window for current tx bit rate */
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700386 window = &(tbl->win[scale_index]);
387
388 /* Get expected throughput */
389 tpt = get_expected_tpt(tbl, scale_index);
Zhu Yib481de92007-09-25 17:54:57 -0700390
Ben Cahill77626352007-11-29 11:09:44 +0800391 /*
392 * Keep track of only the latest 62 tx frame attempts in this rate's
393 * history window; anything older isn't really relevant any more.
394 * If we have filled up the sliding window, drop the oldest attempt;
395 * if the oldest attempt (highest bit in bitmap) shows "success",
396 * subtract "1" from the success counter (this is the main reason
397 * we keep these bitmaps!).
398 */
Daniel C Halperine3949d62009-09-17 10:43:50 -0700399 while (attempts > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700400 if (window->counter >= IWL_RATE_MAX_WINDOW) {
401
402 /* remove earliest */
403 window->counter = IWL_RATE_MAX_WINDOW - 1;
404
Ron Rindjunsky99556432008-01-28 14:07:25 +0200405 if (window->data & mask) {
406 window->data &= ~mask;
Guy Cohen39e88502008-04-23 17:14:57 -0700407 window->success_counter--;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200408 }
Zhu Yib481de92007-09-25 17:54:57 -0700409 }
Zhu Yib481de92007-09-25 17:54:57 -0700410
Ron Rindjunsky99556432008-01-28 14:07:25 +0200411 /* Increment frames-attempted counter */
412 window->counter++;
Ben Cahill77626352007-11-29 11:09:44 +0800413
Daniel C Halperine3949d62009-09-17 10:43:50 -0700414 /* Shift bitmap by one frame to throw away oldest history */
Guy Cohen90d77952008-09-09 10:54:53 +0800415 window->data <<= 1;
Daniel C Halperine3949d62009-09-17 10:43:50 -0700416
417 /* Mark the most recent #successes attempts as successful */
Ron Rindjunsky99556432008-01-28 14:07:25 +0200418 if (successes > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700419 window->success_counter++;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200420 window->data |= 0x1;
421 successes--;
422 }
423
Daniel C Halperine3949d62009-09-17 10:43:50 -0700424 attempts--;
Zhu Yib481de92007-09-25 17:54:57 -0700425 }
426
Ben Cahill77626352007-11-29 11:09:44 +0800427 /* Calculate current success ratio, avoid divide-by-0! */
Zhu Yib481de92007-09-25 17:54:57 -0700428 if (window->counter > 0)
429 window->success_ratio = 128 * (100 * window->success_counter)
430 / window->counter;
431 else
432 window->success_ratio = IWL_INVALID_VALUE;
433
434 fail_count = window->counter - window->success_counter;
435
Ben Cahill77626352007-11-29 11:09:44 +0800436 /* Calculate average throughput, if we have enough history. */
Zhu Yib481de92007-09-25 17:54:57 -0700437 if ((fail_count >= IWL_RATE_MIN_FAILURE_TH) ||
438 (window->success_counter >= IWL_RATE_MIN_SUCCESS_TH))
439 window->average_tpt = (window->success_ratio * tpt + 64) / 128;
440 else
441 window->average_tpt = IWL_INVALID_VALUE;
442
Ben Cahill77626352007-11-29 11:09:44 +0800443 /* Tag this window as having been updated */
Zhu Yib481de92007-09-25 17:54:57 -0700444 window->stamp = jiffies;
445
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800446 return 0;
Zhu Yib481de92007-09-25 17:54:57 -0700447}
448
Ben Cahill77626352007-11-29 11:09:44 +0800449/*
450 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
451 */
Guy Cohen39e88502008-04-23 17:14:57 -0700452/* FIXME:RS:remove this function and put the flags statically in the table */
Tomas Winkler978785a2008-12-19 10:37:31 +0800453static u32 rate_n_flags_from_tbl(struct iwl_priv *priv,
454 struct iwl_scale_tbl_info *tbl,
455 int index, u8 use_green)
Zhu Yib481de92007-09-25 17:54:57 -0700456{
Guy Cohen39e88502008-04-23 17:14:57 -0700457 u32 rate_n_flags = 0;
458
Zhu Yib481de92007-09-25 17:54:57 -0700459 if (is_legacy(tbl->lq_type)) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800460 rate_n_flags = iwl_rates[index].plcp;
Zhu Yib481de92007-09-25 17:54:57 -0700461 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -0700462 rate_n_flags |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700463
Guy Cohenfde0db32008-04-21 15:42:01 -0700464 } else if (is_Ht(tbl->lq_type)) {
465 if (index > IWL_LAST_OFDM_RATE) {
Tomas Winkler978785a2008-12-19 10:37:31 +0800466 IWL_ERR(priv, "Invalid HT rate index %d\n", index);
Zhu Yib481de92007-09-25 17:54:57 -0700467 index = IWL_LAST_OFDM_RATE;
Guy Cohenfde0db32008-04-21 15:42:01 -0700468 }
Guy Cohen39e88502008-04-23 17:14:57 -0700469 rate_n_flags = RATE_MCS_HT_MSK;
Guy Cohenfde0db32008-04-21 15:42:01 -0700470
471 if (is_siso(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800472 rate_n_flags |= iwl_rates[index].plcp_siso;
Guy Cohenfde0db32008-04-21 15:42:01 -0700473 else if (is_mimo2(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800474 rate_n_flags |= iwl_rates[index].plcp_mimo2;
Guy Cohenfde0db32008-04-21 15:42:01 -0700475 else
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800476 rate_n_flags |= iwl_rates[index].plcp_mimo3;
Zhu Yib481de92007-09-25 17:54:57 -0700477 } else {
Tomas Winkler978785a2008-12-19 10:37:31 +0800478 IWL_ERR(priv, "Invalid tbl->lq_type %d\n", tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700479 }
480
Guy Cohen39e88502008-04-23 17:14:57 -0700481 rate_n_flags |= ((tbl->ant_type << RATE_MCS_ANT_POS) &
Guy Cohenfde0db32008-04-21 15:42:01 -0700482 RATE_MCS_ANT_ABC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700483
Guy Cohen39e88502008-04-23 17:14:57 -0700484 if (is_Ht(tbl->lq_type)) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700485 if (tbl->is_ht40) {
Guy Cohen39e88502008-04-23 17:14:57 -0700486 if (tbl->is_dup)
487 rate_n_flags |= RATE_MCS_DUP_MSK;
488 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700489 rate_n_flags |= RATE_MCS_HT40_MSK;
Guy Cohen39e88502008-04-23 17:14:57 -0700490 }
491 if (tbl->is_SGI)
492 rate_n_flags |= RATE_MCS_SGI_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700493
Guy Cohen39e88502008-04-23 17:14:57 -0700494 if (use_green) {
495 rate_n_flags |= RATE_MCS_GF_MSK;
496 if (is_siso(tbl->lq_type) && tbl->is_SGI) {
497 rate_n_flags &= ~RATE_MCS_SGI_MSK;
Tomas Winkler978785a2008-12-19 10:37:31 +0800498 IWL_ERR(priv, "GF was set with SGI:SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -0700499 }
500 }
Zhu Yib481de92007-09-25 17:54:57 -0700501 }
Guy Cohen39e88502008-04-23 17:14:57 -0700502 return rate_n_flags;
Zhu Yib481de92007-09-25 17:54:57 -0700503}
504
Ben Cahill77626352007-11-29 11:09:44 +0800505/*
506 * Interpret uCode API's rate_n_flags format,
507 * fill "search" or "active" tx mode table.
508 */
Guy Cohen39e88502008-04-23 17:14:57 -0700509static int rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
Johannes Berg8318d782008-01-24 19:38:38 +0100510 enum ieee80211_band band,
Tomas Winklere227cea2008-07-18 13:53:05 +0800511 struct iwl_scale_tbl_info *tbl,
Zhu Yib481de92007-09-25 17:54:57 -0700512 int *rate_idx)
513{
Guy Cohen39e88502008-04-23 17:14:57 -0700514 u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
515 u8 num_of_ant = get_num_of_ant_from_rate(rate_n_flags);
516 u8 mcs;
Zhu Yib481de92007-09-25 17:54:57 -0700517
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700518 memset(tbl, 0, sizeof(struct iwl_scale_tbl_info));
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800519 *rate_idx = iwl_hwrate_to_plcp_idx(rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700520
Guy Cohenfde0db32008-04-21 15:42:01 -0700521 if (*rate_idx == IWL_RATE_INVALID) {
Zhu Yib481de92007-09-25 17:54:57 -0700522 *rate_idx = -1;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800523 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700524 }
Ben Cahill77626352007-11-29 11:09:44 +0800525 tbl->is_SGI = 0; /* default legacy setup */
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700526 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700527 tbl->is_dup = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -0700528 tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
529 tbl->lq_type = LQ_NONE;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700530 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700531
Ben Cahill77626352007-11-29 11:09:44 +0800532 /* legacy rate format */
Guy Cohen39e88502008-04-23 17:14:57 -0700533 if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700534 if (num_of_ant == 1) {
Johannes Berg8318d782008-01-24 19:38:38 +0100535 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700536 tbl->lq_type = LQ_A;
537 else
538 tbl->lq_type = LQ_G;
Zhu Yib481de92007-09-25 17:54:57 -0700539 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700540 /* HT rate format */
Zhu Yib481de92007-09-25 17:54:57 -0700541 } else {
Guy Cohen39e88502008-04-23 17:14:57 -0700542 if (rate_n_flags & RATE_MCS_SGI_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700543 tbl->is_SGI = 1;
544
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700545 if ((rate_n_flags & RATE_MCS_HT40_MSK) ||
Guy Cohen39e88502008-04-23 17:14:57 -0700546 (rate_n_flags & RATE_MCS_DUP_MSK))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700547 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -0700548
Guy Cohen39e88502008-04-23 17:14:57 -0700549 if (rate_n_flags & RATE_MCS_DUP_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700550 tbl->is_dup = 1;
Guy Cohenfde0db32008-04-21 15:42:01 -0700551
Guy Cohen39e88502008-04-23 17:14:57 -0700552 mcs = rs_extract_rate(rate_n_flags);
Guy Cohenfde0db32008-04-21 15:42:01 -0700553
Guy Cohen39e88502008-04-23 17:14:57 -0700554 /* SISO */
555 if (mcs <= IWL_RATE_SISO_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700556 if (num_of_ant == 1)
557 tbl->lq_type = LQ_SISO; /*else NONE*/
558 /* MIMO2 */
Guy Cohen39e88502008-04-23 17:14:57 -0700559 } else if (mcs <= IWL_RATE_MIMO2_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700560 if (num_of_ant == 2)
561 tbl->lq_type = LQ_MIMO2;
562 /* MIMO3 */
563 } else {
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700564 if (num_of_ant == 3) {
565 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Guy Cohenfde0db32008-04-21 15:42:01 -0700566 tbl->lq_type = LQ_MIMO3;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700567 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700568 }
Zhu Yib481de92007-09-25 17:54:57 -0700569 }
570 return 0;
571}
Guy Cohenaade00c2008-04-23 17:14:59 -0700572
573/* switch to another antenna/antennas and return 1 */
574/* if no other valid antenna found, return 0 */
575static int rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
Tomas Winklere227cea2008-07-18 13:53:05 +0800576 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700577{
Guy Cohenaade00c2008-04-23 17:14:59 -0700578 u8 new_ant_type;
579
580 if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
581 return 0;
582
583 if (!rs_is_valid_ant(valid_ant, tbl->ant_type))
584 return 0;
585
586 new_ant_type = ant_toggle_lookup[tbl->ant_type];
587
588 while ((new_ant_type != tbl->ant_type) &&
589 !rs_is_valid_ant(valid_ant, new_ant_type))
590 new_ant_type = ant_toggle_lookup[new_ant_type];
591
592 if (new_ant_type == tbl->ant_type)
593 return 0;
594
595 tbl->ant_type = new_ant_type;
596 *rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
597 *rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
598 return 1;
Zhu Yib481de92007-09-25 17:54:57 -0700599}
600
Daniel C Halperinb2617932009-08-13 13:30:59 -0700601/**
602 * Green-field mode is valid if the station supports it and
603 * there are no non-GF stations present in the BSS.
604 */
605static inline u8 rs_use_green(struct ieee80211_sta *sta,
Johannes Bergfad95bf2009-09-11 10:38:15 -0700606 struct iwl_ht_config *ht_conf)
Zhu Yib481de92007-09-25 17:54:57 -0700607{
Daniel C Halperinb2617932009-08-13 13:30:59 -0700608 return (sta->ht_cap.cap & IEEE80211_HT_CAP_GRN_FLD) &&
609 !(ht_conf->non_GF_STA_present);
Guy Cohenf935a6d2008-04-23 17:15:02 -0700610}
Zhu Yib481de92007-09-25 17:54:57 -0700611
612/**
613 * rs_get_supported_rates - get the available rates
614 *
615 * if management frame or broadcast frame only return
616 * basic available rates.
617 *
618 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800619static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
620 struct ieee80211_hdr *hdr,
621 enum iwl_table_type rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700622{
Guy Coheneecd6e52008-04-23 17:14:58 -0700623 if (is_legacy(rate_type)) {
624 return lq_sta->active_legacy_rate;
625 } else {
626 if (is_siso(rate_type))
627 return lq_sta->active_siso_rate;
628 else if (is_mimo2(rate_type))
629 return lq_sta->active_mimo2_rate;
630 else
631 return lq_sta->active_mimo3_rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800632 }
Zhu Yib481de92007-09-25 17:54:57 -0700633}
634
Ester Kummerbf403db2008-05-05 10:22:40 +0800635static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
636 int rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700637{
638 u8 high = IWL_RATE_INVALID;
639 u8 low = IWL_RATE_INVALID;
640
Ian Schram01ebd062007-10-25 17:15:22 +0800641 /* 802.11A or ht walks to the next literal adjacent rate in
Zhu Yib481de92007-09-25 17:54:57 -0700642 * the rate table */
643 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
644 int i;
645 u32 mask;
646
647 /* Find the previous rate that is in the rate mask */
648 i = index - 1;
649 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
650 if (rate_mask & mask) {
651 low = i;
652 break;
653 }
654 }
655
656 /* Find the next rate that is in the rate mask */
657 i = index + 1;
658 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
659 if (rate_mask & mask) {
660 high = i;
661 break;
662 }
663 }
664
665 return (high << 8) | low;
666 }
667
668 low = index;
669 while (low != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800670 low = iwl_rates[low].prev_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700671 if (low == IWL_RATE_INVALID)
672 break;
673 if (rate_mask & (1 << low))
674 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800675 IWL_DEBUG_RATE(priv, "Skipping masked lower rate: %d\n", low);
Zhu Yib481de92007-09-25 17:54:57 -0700676 }
677
678 high = index;
679 while (high != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800680 high = iwl_rates[high].next_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700681 if (high == IWL_RATE_INVALID)
682 break;
683 if (rate_mask & (1 << high))
684 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800685 IWL_DEBUG_RATE(priv, "Skipping masked higher rate: %d\n", high);
Zhu Yib481de92007-09-25 17:54:57 -0700686 }
687
688 return (high << 8) | low;
689}
690
Tomas Winklere227cea2008-07-18 13:53:05 +0800691static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta,
692 struct iwl_scale_tbl_info *tbl,
693 u8 scale_index, u8 ht_possible)
Zhu Yib481de92007-09-25 17:54:57 -0700694{
Zhu Yib481de92007-09-25 17:54:57 -0700695 s32 low;
696 u16 rate_mask;
697 u16 high_low;
698 u8 switch_to_legacy = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800699 u8 is_green = lq_sta->is_green;
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700700 struct iwl_priv *priv = lq_sta->drv;
Zhu Yib481de92007-09-25 17:54:57 -0700701
702 /* check if we need to switch from HT to legacy rates.
703 * assumption is that mandatory rates (1Mbps or 6Mbps)
704 * are always supported (spec demand) */
705 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_index)) {
706 switch_to_legacy = 1;
707 scale_index = rs_ht_to_legacy[scale_index];
Johannes Berg8318d782008-01-24 19:38:38 +0100708 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700709 tbl->lq_type = LQ_A;
710 else
711 tbl->lq_type = LQ_G;
712
Guy Cohen69fdb302008-04-23 17:15:01 -0700713 if (num_of_ant(tbl->ant_type) > 1)
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700714 tbl->ant_type =
715 first_antenna(priv->hw_params.valid_tx_ant);
Zhu Yib481de92007-09-25 17:54:57 -0700716
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700717 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700718 tbl->is_SGI = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700719 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700720 }
721
Guy Coheneecd6e52008-04-23 17:14:58 -0700722 rate_mask = rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700723
Ben Cahill77626352007-11-29 11:09:44 +0800724 /* Mask with station rate restriction */
Zhu Yib481de92007-09-25 17:54:57 -0700725 if (is_legacy(tbl->lq_type)) {
Ben Cahill77626352007-11-29 11:09:44 +0800726 /* supp_rates has no CCK bits in A mode */
Johannes Berg8318d782008-01-24 19:38:38 +0100727 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700728 rate_mask = (u16)(rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -0800729 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -0700730 else
Tomas Winklerc33104f2008-01-14 17:46:21 -0800731 rate_mask = (u16)(rate_mask & lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -0700732 }
733
Ben Cahill77626352007-11-29 11:09:44 +0800734 /* If we switched from HT to legacy, check current rate */
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800735 if (switch_to_legacy && (rate_mask & (1 << scale_index))) {
Guy Cohen39e88502008-04-23 17:14:57 -0700736 low = scale_index;
737 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700738 }
739
Ester Kummerbf403db2008-05-05 10:22:40 +0800740 high_low = rs_get_adjacent_rate(lq_sta->drv, scale_index, rate_mask,
741 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700742 low = high_low & 0xff;
743
Guy Cohen39e88502008-04-23 17:14:57 -0700744 if (low == IWL_RATE_INVALID)
745 low = scale_index;
746
747out:
Tomas Winkler978785a2008-12-19 10:37:31 +0800748 return rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
Zhu Yib481de92007-09-25 17:54:57 -0700749}
750
Ben Cahill77626352007-11-29 11:09:44 +0800751/*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700752 * Simple function to compare two rate scale table types
753 */
754static bool table_type_matches(struct iwl_scale_tbl_info *a,
755 struct iwl_scale_tbl_info *b)
756{
757 return (a->lq_type == b->lq_type) && (a->ant_type == b->ant_type) &&
758 (a->is_SGI == b->is_SGI);
759}
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700760
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700761static void rs_bt_update_lq(struct iwl_priv *priv,
762 struct iwl_lq_sta *lq_sta)
763{
764 struct iwl_scale_tbl_info *tbl;
765 bool full_concurrent;
766 unsigned long flags;
767
768 spin_lock_irqsave(&priv->lock, flags);
769 if (priv->bt_ci_compliance && priv->bt_ant_couple_ok)
770 full_concurrent = true;
771 else
772 full_concurrent = false;
773 spin_unlock_irqrestore(&priv->lock, flags);
774
775 if (priv->bt_full_concurrent != full_concurrent) {
776 priv->bt_full_concurrent = full_concurrent;
777
778 /* Update uCode's rate table. */
779 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
780 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
781 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
782
783 queue_work(priv->workqueue, &priv->bt_full_concurrency);
784 }
785}
786
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700787/*
Ben Cahill77626352007-11-29 11:09:44 +0800788 * mac80211 sends us Tx status
789 */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200790static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband,
791 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200792 struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700793{
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700794 int legacy_success;
795 int retries;
796 int rs_index, mac_index, i;
Tomas Winkler417f1142008-11-12 13:14:06 -0800797 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700798 struct iwl_link_quality_cmd *table;
Zhu Yib481de92007-09-25 17:54:57 -0700799 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200800 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
Johannes Berge039fa42008-05-15 12:55:29 +0200801 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Daniel C Halperin50273092009-08-28 09:44:45 -0700802 enum mac80211_rate_control_flags mac_flags;
Guy Cohen39e88502008-04-23 17:14:57 -0700803 u32 tx_rate;
Tomas Winklere227cea2008-07-18 13:53:05 +0800804 struct iwl_scale_tbl_info tbl_type;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700805 struct iwl_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
Zhu Yib481de92007-09-25 17:54:57 -0700806
Tomas Winklere1623442009-01-27 14:27:56 -0800807 IWL_DEBUG_RATE_LIMIT(priv, "get frame ack response, update rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -0700808
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800809 /* Treat uninitialized rate scaling data same as non-existing. */
810 if (!lq_sta) {
811 IWL_DEBUG_RATE(priv, "Station rate scaling not created yet.\n");
812 return;
813 } else if (!lq_sta->drv) {
814 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
815 return;
816 }
817
Tomas Winkler417f1142008-11-12 13:14:06 -0800818 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200819 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -0700820 return;
821
Daniel C Halperine3949d62009-09-17 10:43:50 -0700822 /* This packet was aggregated but doesn't carry status info */
Johannes Berge039fa42008-05-15 12:55:29 +0200823 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
824 !(info->flags & IEEE80211_TX_STAT_AMPDU))
Ron Rindjunsky99556432008-01-28 14:07:25 +0200825 return;
826
Ben Cahill77626352007-11-29 11:09:44 +0800827 /*
828 * Ignore this Tx frame response if its initial rate doesn't match
829 * that of latest Link Quality command. There may be stragglers
830 * from a previous Link Quality command, but we're no longer interested
831 * in those; they're either from the "active" mode while we're trying
832 * to check "search" mode, or a prior "search" mode after we've moved
833 * to a new "search" mode (which might become the new "active" mode).
834 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700835 table = &lq_sta->lq;
Guy Cohen39e88502008-04-23 17:14:57 -0700836 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
837 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800838 if (priv->band == IEEE80211_BAND_5GHZ)
839 rs_index -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin50273092009-08-28 09:44:45 -0700840 mac_flags = info->status.rates[0].flags;
841 mac_index = info->status.rates[0].idx;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700842 /* For HT packets, map MCS to PLCP */
843 if (mac_flags & IEEE80211_TX_RC_MCS) {
844 mac_index &= RATE_MCS_CODE_MSK; /* Remove # of streams */
845 if (mac_index >= (IWL_RATE_9M_INDEX - IWL_FIRST_OFDM_RATE))
846 mac_index++;
Daniel C Halperin392a0ba2009-09-11 10:38:08 -0700847 /*
848 * mac80211 HT index is always zero-indexed; we need to move
849 * HT OFDM rates after CCK rates in 2.4 GHz band
850 */
851 if (priv->band == IEEE80211_BAND_2GHZ)
852 mac_index += IWL_FIRST_OFDM_RATE;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700853 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700854 /* Here we actually compare this rate to the latest LQ command */
Daniel C Halperin50273092009-08-28 09:44:45 -0700855 if ((mac_index < 0) ||
856 (tbl_type.is_SGI != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI)) ||
857 (tbl_type.is_ht40 != !!(mac_flags & IEEE80211_TX_RC_40_MHZ_WIDTH)) ||
858 (tbl_type.is_dup != !!(mac_flags & IEEE80211_TX_RC_DUP_DATA)) ||
Johannes Berge6a98542008-10-21 12:40:02 +0200859 (tbl_type.ant_type != info->antenna_sel_tx) ||
Daniel C Halperin50273092009-08-28 09:44:45 -0700860 (!!(tx_rate & RATE_MCS_HT_MSK) != !!(mac_flags & IEEE80211_TX_RC_MCS)) ||
861 (!!(tx_rate & RATE_MCS_GF_MSK) != !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD)) ||
Daniel C Halperin31513be2009-08-28 09:44:47 -0700862 (rs_index != mac_index)) {
863 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 -0700864 /*
865 * Since rates mis-match, the last LQ command may have failed.
866 * After IWL_MISSED_RATE_MAX mis-matches, resync the uCode with
867 * ... driver.
Mohamed Abbasd5e49032008-12-12 08:22:15 -0800868 */
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800869 lq_sta->missed_rate_counter++;
870 if (lq_sta->missed_rate_counter > IWL_MISSED_RATE_MAX) {
871 lq_sta->missed_rate_counter = 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800872 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800873 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700874 /* Regardless, ignore this status info for outdated rate */
875 return;
876 } else
877 /* Rate did match, so reset the missed_rate_counter */
878 lq_sta->missed_rate_counter = 0;
879
880 /* Figure out if rate scale algorithm is in active or search table */
881 if (table_type_matches(&tbl_type,
882 &(lq_sta->lq_info[lq_sta->active_tbl]))) {
883 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
884 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
885 } else if (table_type_matches(&tbl_type,
886 &lq_sta->lq_info[1 - lq_sta->active_tbl])) {
887 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
888 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
889 } else {
890 IWL_DEBUG_RATE(priv, "Neither active nor search matches tx rate\n");
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700891 tmp_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
892 IWL_DEBUG_RATE(priv, "active- lq:%x, ant:%x, SGI:%d\n",
893 tmp_tbl->lq_type, tmp_tbl->ant_type, tmp_tbl->is_SGI);
894 tmp_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
895 IWL_DEBUG_RATE(priv, "search- lq:%x, ant:%x, SGI:%d\n",
896 tmp_tbl->lq_type, tmp_tbl->ant_type, tmp_tbl->is_SGI);
897 IWL_DEBUG_RATE(priv, "actual- lq:%x, ant:%x, SGI:%d\n",
898 tbl_type.lq_type, tbl_type.ant_type, tbl_type.is_SGI);
899 /*
900 * no matching table found, let's by-pass the data collection
901 * and continue to perform rate scale to find the rate table
902 */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -0700903 rs_stay_in_table(lq_sta, true);
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700904 goto done;
Zhu Yib481de92007-09-25 17:54:57 -0700905 }
Zhu Yib481de92007-09-25 17:54:57 -0700906
Ben Cahill77626352007-11-29 11:09:44 +0800907 /*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700908 * Updating the frame history depends on whether packets were
909 * aggregated.
910 *
911 * For aggregation, all packets were transmitted at the same rate, the
912 * first index into rate scale table.
Ben Cahill77626352007-11-29 11:09:44 +0800913 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700914 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
915 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
916 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type,
917 &rs_index);
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700918 rs_collect_tx_data(curr_tbl, rs_index,
Daniel Halperine3a3cd82010-04-18 09:27:58 -0700919 info->status.ampdu_len,
920 info->status.ampdu_ack_len);
Zhu Yib481de92007-09-25 17:54:57 -0700921
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700922 /* Update success/fail counts if not searching for new mode */
923 if (lq_sta->stay_in_tbl) {
Daniel Halperine3a3cd82010-04-18 09:27:58 -0700924 lq_sta->total_success += info->status.ampdu_ack_len;
925 lq_sta->total_failed += (info->status.ampdu_len -
926 info->status.ampdu_ack_len);
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700927 }
928 } else {
929 /*
930 * For legacy, update frame history with for each Tx retry.
931 */
932 retries = info->status.rates[0].count - 1;
933 /* HW doesn't send more than 15 retries */
934 retries = min(retries, 15);
935
936 /* The last transmission may have been successful */
937 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
938 /* Collect data for each rate used during failed TX attempts */
939 for (i = 0; i <= retries; ++i) {
940 tx_rate = le32_to_cpu(table->rs_table[i].rate_n_flags);
941 rs_get_tbl_info_from_mcs(tx_rate, priv->band,
942 &tbl_type, &rs_index);
943 /*
944 * Only collect stats if retried rate is in the same RS
945 * table as active/search.
946 */
947 if (table_type_matches(&tbl_type, curr_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700948 tmp_tbl = curr_tbl;
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700949 else if (table_type_matches(&tbl_type, other_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700950 tmp_tbl = other_tbl;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200951 else
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700952 continue;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700953 rs_collect_tx_data(tmp_tbl, rs_index, 1,
954 i < retries ? 0 : legacy_success);
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700955 }
956
957 /* Update success/fail counts if not searching for new mode */
958 if (lq_sta->stay_in_tbl) {
959 lq_sta->total_success += legacy_success;
960 lq_sta->total_failed += retries + (1 - legacy_success);
Ron Rindjunsky99556432008-01-28 14:07:25 +0200961 }
Zhu Yib481de92007-09-25 17:54:57 -0700962 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700963 /* The last TX rate is cached in lq_sta; it's set in if/else above */
964 lq_sta->last_rate_n_flags = tx_rate;
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700965done:
Ben Cahill77626352007-11-29 11:09:44 +0800966 /* See if there's a better rate or modulation mode to try. */
Abbas, Mohamedc338ba32009-01-21 10:58:02 -0800967 if (sta && sta->supp_rates[sband->band])
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200968 rs_rate_scale_perform(priv, skb, sta, lq_sta);
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700969
970 /* Is there a need to switch between full concurrency and 3-wire? */
971 if (priv->bt_ant_couple_ok)
972 rs_bt_update_lq(priv, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -0700973}
974
Ben Cahill77626352007-11-29 11:09:44 +0800975/*
976 * Begin a period of staying with a selected modulation mode.
977 * Set "stay_in_tbl" flag to prevent any mode switches.
978 * Set frame tx success limits according to legacy vs. high-throughput,
979 * and reset overall (spanning all rates) tx success history statistics.
980 * These control how long we stay using same modulation mode before
981 * searching for a new mode.
982 */
Ester Kummerbf403db2008-05-05 10:22:40 +0800983static void rs_set_stay_in_table(struct iwl_priv *priv, u8 is_legacy,
Tomas Winklere227cea2008-07-18 13:53:05 +0800984 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700985{
Tomas Winklere1623442009-01-27 14:27:56 -0800986 IWL_DEBUG_RATE(priv, "we are staying in the same table\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -0800987 lq_sta->stay_in_tbl = 1; /* only place this gets set */
Zhu Yib481de92007-09-25 17:54:57 -0700988 if (is_legacy) {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800989 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
990 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
991 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700992 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800993 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
994 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
995 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700996 }
Tomas Winklerc33104f2008-01-14 17:46:21 -0800997 lq_sta->table_count = 0;
998 lq_sta->total_failed = 0;
999 lq_sta->total_success = 0;
Mohamed Abbas447fee72009-04-20 14:37:02 -07001000 lq_sta->flush_timer = jiffies;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001001 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001002}
1003
Ben Cahill77626352007-11-29 11:09:44 +08001004/*
1005 * Find correct throughput table for given mode of modulation
1006 */
Tomas Winklere227cea2008-07-18 13:53:05 +08001007static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
1008 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -07001009{
Daniel C Halperine3949d62009-09-17 10:43:50 -07001010 /* Used to choose among HT tables */
1011 s32 (*ht_tbl_pointer)[IWL_RATE_COUNT];
1012
1013 /* Check for invalid LQ type */
1014 if (WARN_ON_ONCE(!is_legacy(tbl->lq_type) && !is_Ht(tbl->lq_type))) {
1015 tbl->expected_tpt = expected_tpt_legacy;
1016 return;
1017 }
1018
1019 /* Legacy rates have only one table */
Zhu Yib481de92007-09-25 17:54:57 -07001020 if (is_legacy(tbl->lq_type)) {
Daniel C Halperine3949d62009-09-17 10:43:50 -07001021 tbl->expected_tpt = expected_tpt_legacy;
1022 return;
1023 }
1024
1025 /* Choose among many HT tables depending on number of streams
1026 * (SISO/MIMO2/MIMO3), channel width (20/40), SGI, and aggregation
1027 * status */
1028 if (is_siso(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1029 ht_tbl_pointer = expected_tpt_siso20MHz;
1030 else if (is_siso(tbl->lq_type))
1031 ht_tbl_pointer = expected_tpt_siso40MHz;
1032 else if (is_mimo2(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1033 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
1034 else if (is_mimo2(tbl->lq_type))
1035 ht_tbl_pointer = expected_tpt_mimo2_40MHz;
1036 else if (is_mimo3(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1037 ht_tbl_pointer = expected_tpt_mimo3_20MHz;
1038 else /* if (is_mimo3(tbl->lq_type)) <-- must be true */
1039 ht_tbl_pointer = expected_tpt_mimo3_40MHz;
1040
1041 if (!tbl->is_SGI && !lq_sta->is_agg) /* Normal */
1042 tbl->expected_tpt = ht_tbl_pointer[0];
1043 else if (tbl->is_SGI && !lq_sta->is_agg) /* SGI */
1044 tbl->expected_tpt = ht_tbl_pointer[1];
1045 else if (!tbl->is_SGI && lq_sta->is_agg) /* AGG */
1046 tbl->expected_tpt = ht_tbl_pointer[2];
1047 else /* AGG+SGI */
1048 tbl->expected_tpt = ht_tbl_pointer[3];
Zhu Yib481de92007-09-25 17:54:57 -07001049}
1050
Ben Cahill77626352007-11-29 11:09:44 +08001051/*
1052 * Find starting rate for new "search" high-throughput mode of modulation.
1053 * Goal is to find lowest expected rate (under perfect conditions) that is
1054 * above the current measured throughput of "active" mode, to give new mode
1055 * a fair chance to prove itself without too many challenges.
1056 *
1057 * This gets called when transitioning to more aggressive modulation
1058 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1059 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1060 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1061 * bit rate will typically need to increase, but not if performance was bad.
1062 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001063static s32 rs_get_best_rate(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001064 struct iwl_lq_sta *lq_sta,
1065 struct iwl_scale_tbl_info *tbl, /* "search" */
Guy Cohenf935a6d2008-04-23 17:15:02 -07001066 u16 rate_mask, s8 index)
Zhu Yib481de92007-09-25 17:54:57 -07001067{
Ben Cahill77626352007-11-29 11:09:44 +08001068 /* "active" values */
Tomas Winklere227cea2008-07-18 13:53:05 +08001069 struct iwl_scale_tbl_info *active_tbl =
Tomas Winklerc33104f2008-01-14 17:46:21 -08001070 &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001071 s32 active_sr = active_tbl->win[index].success_ratio;
Zhu Yib481de92007-09-25 17:54:57 -07001072 s32 active_tpt = active_tbl->expected_tpt[index];
Ben Cahill77626352007-11-29 11:09:44 +08001073
1074 /* expected "search" throughput */
1075 s32 *tpt_tbl = tbl->expected_tpt;
1076
1077 s32 new_rate, high, low, start_hi;
Zhu Yib481de92007-09-25 17:54:57 -07001078 u16 high_low;
Guy Cohenf935a6d2008-04-23 17:15:02 -07001079 s8 rate = index;
Zhu Yib481de92007-09-25 17:54:57 -07001080
1081 new_rate = high = low = start_hi = IWL_RATE_INVALID;
1082
1083 for (; ;) {
Ester Kummerbf403db2008-05-05 10:22:40 +08001084 high_low = rs_get_adjacent_rate(priv, rate, rate_mask,
1085 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001086
1087 low = high_low & 0xff;
1088 high = (high_low >> 8) & 0xff;
1089
Ben Cahill77626352007-11-29 11:09:44 +08001090 /*
1091 * Lower the "search" bit rate, to give new "search" mode
1092 * approximately the same throughput as "active" if:
1093 *
1094 * 1) "Active" mode has been working modestly well (but not
1095 * great), and expected "search" throughput (under perfect
1096 * conditions) at candidate rate is above the actual
1097 * measured "active" throughput (but less than expected
1098 * "active" throughput under perfect conditions).
1099 * OR
1100 * 2) "Active" mode has been working perfectly or very well
1101 * and expected "search" throughput (under perfect
1102 * conditions) at candidate rate is above expected
1103 * "active" throughput (under perfect conditions).
1104 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001105 if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
Zhu Yib481de92007-09-25 17:54:57 -07001106 ((active_sr > IWL_RATE_DECREASE_TH) &&
1107 (active_sr <= IWL_RATE_HIGH_TH) &&
1108 (tpt_tbl[rate] <= active_tpt))) ||
1109 ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
1110 (tpt_tbl[rate] > active_tpt))) {
1111
Ben Cahill77626352007-11-29 11:09:44 +08001112 /* (2nd or later pass)
1113 * If we've already tried to raise the rate, and are
1114 * now trying to lower it, use the higher rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001115 if (start_hi != IWL_RATE_INVALID) {
1116 new_rate = start_hi;
1117 break;
1118 }
Ben Cahill77626352007-11-29 11:09:44 +08001119
Zhu Yib481de92007-09-25 17:54:57 -07001120 new_rate = rate;
Ben Cahill77626352007-11-29 11:09:44 +08001121
1122 /* Loop again with lower rate */
Zhu Yib481de92007-09-25 17:54:57 -07001123 if (low != IWL_RATE_INVALID)
1124 rate = low;
Ben Cahill77626352007-11-29 11:09:44 +08001125
1126 /* Lower rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001127 else
1128 break;
Ben Cahill77626352007-11-29 11:09:44 +08001129
1130 /* Else try to raise the "search" rate to match "active" */
Zhu Yib481de92007-09-25 17:54:57 -07001131 } else {
Ben Cahill77626352007-11-29 11:09:44 +08001132 /* (2nd or later pass)
1133 * If we've already tried to lower the rate, and are
1134 * now trying to raise it, use the lower rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001135 if (new_rate != IWL_RATE_INVALID)
1136 break;
Ben Cahill77626352007-11-29 11:09:44 +08001137
1138 /* Loop again with higher rate */
Zhu Yib481de92007-09-25 17:54:57 -07001139 else if (high != IWL_RATE_INVALID) {
1140 start_hi = high;
1141 rate = high;
Ben Cahill77626352007-11-29 11:09:44 +08001142
1143 /* Higher rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001144 } else {
Guy Cohen90d77952008-09-09 10:54:53 +08001145 new_rate = rate;
Zhu Yib481de92007-09-25 17:54:57 -07001146 break;
1147 }
1148 }
1149 }
1150
1151 return new_rate;
1152}
Zhu Yib481de92007-09-25 17:54:57 -07001153
Ben Cahill77626352007-11-29 11:09:44 +08001154/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001155 * Set up search table for MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001156 */
Guy Cohenfde0db32008-04-21 15:42:01 -07001157static int rs_switch_to_mimo2(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001158 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001159 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001160 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001161 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001162{
Zhu Yib481de92007-09-25 17:54:57 -07001163 u16 rate_mask;
1164 s32 rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001165 s8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001166
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001167 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001168 return -1;
1169
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001170 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
Tomas Winkler00c5ae22008-09-03 11:26:42 +08001171 == WLAN_HT_CAP_SM_PS_STATIC)
Zhu Yib481de92007-09-25 17:54:57 -07001172 return -1;
1173
Ben Cahill77626352007-11-29 11:09:44 +08001174 /* Need both Tx chains/antennas to support MIMO */
Guy Cohenaade00c2008-04-23 17:14:59 -07001175 if (priv->hw_params.tx_chains_num < 2)
Zhu Yib481de92007-09-25 17:54:57 -07001176 return -1;
1177
Tomas Winklere1623442009-01-27 14:27:56 -08001178 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO2\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001179
1180 tbl->lq_type = LQ_MIMO2;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001181 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001182 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001183 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001184 rate_mask = lq_sta->active_mimo2_rate;
1185
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001186 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1187 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001188 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001189 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001190
Guy Coheneecd6e52008-04-23 17:14:58 -07001191 rs_set_expected_tpt_table(lq_sta, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07001192
Guy Cohenf935a6d2008-04-23 17:15:02 -07001193 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001194
Tomas Winklere1623442009-01-27 14:27:56 -08001195 IWL_DEBUG_RATE(priv, "LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001196 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
1197 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
1198 rate, rate_mask);
1199 return -1;
1200 }
1201 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Guy Cohen39e88502008-04-23 17:14:57 -07001202
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001203 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
1204 tbl->current_rate, is_green);
1205 return 0;
1206}
1207
1208/*
1209 * Set up search table for MIMO3
1210 */
1211static int rs_switch_to_mimo3(struct iwl_priv *priv,
1212 struct iwl_lq_sta *lq_sta,
1213 struct ieee80211_conf *conf,
1214 struct ieee80211_sta *sta,
1215 struct iwl_scale_tbl_info *tbl, int index)
1216{
1217 u16 rate_mask;
1218 s32 rate;
1219 s8 is_green = lq_sta->is_green;
1220
1221 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1222 return -1;
1223
1224 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
1225 == WLAN_HT_CAP_SM_PS_STATIC)
1226 return -1;
1227
1228 /* Need both Tx chains/antennas to support MIMO */
1229 if (priv->hw_params.tx_chains_num < 3)
1230 return -1;
1231
1232 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO3\n");
1233
1234 tbl->lq_type = LQ_MIMO3;
1235 tbl->is_dup = lq_sta->is_dup;
1236 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001237 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001238 rate_mask = lq_sta->active_mimo3_rate;
1239
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001240 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1241 tbl->is_ht40 = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001242 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001243 tbl->is_ht40 = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001244
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001245 rs_set_expected_tpt_table(lq_sta, tbl);
1246
1247 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
1248
1249 IWL_DEBUG_RATE(priv, "LQ: MIMO3 best rate %d mask %X\n",
1250 rate, rate_mask);
Guy Cohen39e88502008-04-23 17:14:57 -07001251 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001252 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001253 rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001254 return -1;
Guy Cohen39e88502008-04-23 17:14:57 -07001255 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001256 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001257
Tomas Winklere1623442009-01-27 14:27:56 -08001258 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001259 tbl->current_rate, is_green);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001260 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001261}
1262
Ben Cahill77626352007-11-29 11:09:44 +08001263/*
1264 * Set up search table for SISO
1265 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001266static int rs_switch_to_siso(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001267 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001268 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001269 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001270 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001271{
Zhu Yib481de92007-09-25 17:54:57 -07001272 u16 rate_mask;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001273 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001274 s32 rate;
1275
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001276 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001277 return -1;
1278
Tomas Winklere1623442009-01-27 14:27:56 -08001279 IWL_DEBUG_RATE(priv, "LQ: try to switch to SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001280
Tomas Winklerc33104f2008-01-14 17:46:21 -08001281 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001282 tbl->lq_type = LQ_SISO;
1283 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001284 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001285 rate_mask = lq_sta->active_siso_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001286
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001287 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1288 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001289 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001290 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001291
Zhu Yib481de92007-09-25 17:54:57 -07001292 if (is_green)
Guy Cohen39e88502008-04-23 17:14:57 -07001293 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield*/
Zhu Yib481de92007-09-25 17:54:57 -07001294
Guy Coheneecd6e52008-04-23 17:14:58 -07001295 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohenf935a6d2008-04-23 17:15:02 -07001296 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001297
Tomas Winklere1623442009-01-27 14:27:56 -08001298 IWL_DEBUG_RATE(priv, "LQ: get best rate %d mask %X\n", rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001299 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001300 IWL_DEBUG_RATE(priv, "can not switch with index %d rate mask %x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001301 rate, rate_mask);
1302 return -1;
1303 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001304 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Tomas Winklere1623442009-01-27 14:27:56 -08001305 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001306 tbl->current_rate, is_green);
Mohamed Abbas403ab562007-11-06 22:06:25 -08001307 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001308}
1309
Ben Cahill77626352007-11-29 11:09:44 +08001310/*
1311 * Try to switch to new modulation mode from legacy
1312 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001313static int rs_move_legacy_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001314 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001315 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001316 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07001317 int index)
1318{
Tomas Winklere227cea2008-07-18 13:53:05 +08001319 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1320 struct iwl_scale_tbl_info *search_tbl =
1321 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1322 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1323 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1324 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001325 u8 start_action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001326 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001327 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001328 int ret = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001329 u8 update_search_tbl_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001330
Johannes Berg290f5992010-08-23 07:56:58 -07001331 switch (priv->bt_traffic_load) {
1332 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1333 /* nothing */
1334 break;
1335 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1336 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001337 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Johannes Berg290f5992010-08-23 07:56:58 -07001338 if (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2)
1339 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
1340 break;
1341 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1342 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1343 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001344 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Johannes Berg290f5992010-08-23 07:56:58 -07001345 if (tbl->action >= IWL_LEGACY_SWITCH_ANTENNA2 &&
1346 tbl->action != IWL_LEGACY_SWITCH_SISO)
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001347 tbl->action = IWL_LEGACY_SWITCH_SISO;
Johannes Berg290f5992010-08-23 07:56:58 -07001348 break;
1349 default:
1350 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1351 break;
1352 }
1353
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001354 if (!iwl_ht_enabled(priv))
1355 /* stay in Legacy */
1356 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07001357 else if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001358 tbl->action > IWL_LEGACY_SWITCH_SISO)
1359 tbl->action = IWL_LEGACY_SWITCH_SISO;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001360
1361 /* configure as 1x1 if bt full concurrency */
1362 if (priv->bt_full_concurrent) {
1363 if (!iwl_ht_enabled(priv))
1364 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
1365 else if (tbl->action >= IWL_LEGACY_SWITCH_ANTENNA2)
1366 tbl->action = IWL_LEGACY_SWITCH_SISO;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001367 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001368 }
1369
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001370 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001371 for (; ;) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001372 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001373 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001374 case IWL_LEGACY_SWITCH_ANTENNA1:
1375 case IWL_LEGACY_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001376 IWL_DEBUG_RATE(priv, "LQ: Legacy toggle Antenna\n");
Zhu Yib481de92007-09-25 17:54:57 -07001377
Guy Cohen3110bef2008-09-09 10:54:54 +08001378 if ((tbl->action == IWL_LEGACY_SWITCH_ANTENNA1 &&
1379 tx_chains_num <= 1) ||
1380 (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2 &&
1381 tx_chains_num <= 2))
1382 break;
1383
Ben Cahill77626352007-11-29 11:09:44 +08001384 /* Don't change antenna if success has been great */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001385 if (window->success_ratio >= IWL_RS_GOOD_RATIO &&
1386 !priv->bt_full_concurrent &&
1387 priv->bt_traffic_load ==
1388 IWL_BT_COEX_TRAFFIC_LOAD_NONE)
Zhu Yib481de92007-09-25 17:54:57 -07001389 break;
Ben Cahill77626352007-11-29 11:09:44 +08001390
Ben Cahill77626352007-11-29 11:09:44 +08001391 /* Set up search table to try other antenna */
Zhu Yib481de92007-09-25 17:54:57 -07001392 memcpy(search_tbl, tbl, sz);
1393
Guy Cohenaade00c2008-04-23 17:14:59 -07001394 if (rs_toggle_antenna(valid_tx_ant,
1395 &search_tbl->current_rate, search_tbl)) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001396 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001397 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohenaade00c2008-04-23 17:14:59 -07001398 goto out;
1399 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001400 break;
Zhu Yib481de92007-09-25 17:54:57 -07001401 case IWL_LEGACY_SWITCH_SISO:
Tomas Winklere1623442009-01-27 14:27:56 -08001402 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to SISO\n");
Ben Cahill77626352007-11-29 11:09:44 +08001403
1404 /* Set up search table to try SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001405 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001406 search_tbl->is_SGI = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001407 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001408 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001409 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001410 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001411 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001412 }
Zhu Yib481de92007-09-25 17:54:57 -07001413
1414 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001415 case IWL_LEGACY_SWITCH_MIMO2_AB:
1416 case IWL_LEGACY_SWITCH_MIMO2_AC:
1417 case IWL_LEGACY_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001418 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO2\n");
Ben Cahill77626352007-11-29 11:09:44 +08001419
1420 /* Set up search table to try MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001421 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001422 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001423
1424 if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AB)
1425 search_tbl->ant_type = ANT_AB;
1426 else if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AC)
1427 search_tbl->ant_type = ANT_AC;
1428 else
1429 search_tbl->ant_type = ANT_BC;
1430
1431 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1432 break;
1433
Guy Cohenfde0db32008-04-21 15:42:01 -07001434 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001435 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001436 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001437 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001438 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001439 }
Zhu Yib481de92007-09-25 17:54:57 -07001440 break;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001441
1442 case IWL_LEGACY_SWITCH_MIMO3_ABC:
1443 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO3\n");
1444
1445 /* Set up search table to try MIMO3 */
1446 memcpy(search_tbl, tbl, sz);
1447 search_tbl->is_SGI = 0;
1448
1449 search_tbl->ant_type = ANT_ABC;
1450
1451 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1452 break;
1453
1454 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1455 search_tbl, index);
1456 if (!ret) {
1457 lq_sta->action_counter = 0;
1458 goto out;
1459 }
1460 break;
Zhu Yib481de92007-09-25 17:54:57 -07001461 }
1462 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001463 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001464 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001465
1466 if (tbl->action == start_action)
1467 break;
1468
1469 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001470 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001471 return 0;
1472
Guy Cohen3110bef2008-09-09 10:54:54 +08001473out:
1474 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001475 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001476 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001477 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001478 if (update_search_tbl_counter)
1479 search_tbl->action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001480 return 0;
1481
1482}
1483
Ben Cahill77626352007-11-29 11:09:44 +08001484/*
1485 * Try to switch to new modulation mode from SISO
1486 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001487static int rs_move_siso_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001488 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001489 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001490 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001491{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001492 u8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001493 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1494 struct iwl_scale_tbl_info *search_tbl =
1495 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1496 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001497 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001498 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1499 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001500 u8 start_action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001501 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001502 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001503 u8 update_search_tbl_counter = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -07001504 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001505
Johannes Berg290f5992010-08-23 07:56:58 -07001506 switch (priv->bt_traffic_load) {
1507 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1508 /* nothing */
1509 break;
1510 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1511 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001512 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Johannes Berg290f5992010-08-23 07:56:58 -07001513 if (tbl->action == IWL_SISO_SWITCH_ANTENNA2)
1514 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1515 break;
1516 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1517 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1518 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001519 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
1520 if (tbl->action != IWL_SISO_SWITCH_ANTENNA1)
Johannes Berg290f5992010-08-23 07:56:58 -07001521 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1522 break;
1523 default:
1524 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1525 break;
1526 }
1527
Johannes Berg3ad3b922009-08-07 15:41:48 -07001528 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001529 tbl->action > IWL_SISO_SWITCH_ANTENNA2) {
1530 /* stay in SISO */
1531 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1532 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001533
1534 /* configure as 1x1 if bt full concurrency */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001535 if (priv->bt_full_concurrent) {
1536 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
1537 if (tbl->action >= IWL_LEGACY_SWITCH_ANTENNA2)
1538 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1539 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001540
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001541 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001542 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001543 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001544 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001545 case IWL_SISO_SWITCH_ANTENNA1:
1546 case IWL_SISO_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001547 IWL_DEBUG_RATE(priv, "LQ: SISO toggle Antenna\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001548 if ((tbl->action == IWL_SISO_SWITCH_ANTENNA1 &&
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001549 tx_chains_num <= 1) ||
Guy Cohen3110bef2008-09-09 10:54:54 +08001550 (tbl->action == IWL_SISO_SWITCH_ANTENNA2 &&
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001551 tx_chains_num <= 2))
Guy Cohen3110bef2008-09-09 10:54:54 +08001552 break;
1553
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001554 if (window->success_ratio >= IWL_RS_GOOD_RATIO &&
1555 !priv->bt_full_concurrent &&
1556 priv->bt_traffic_load ==
1557 IWL_BT_COEX_TRAFFIC_LOAD_NONE)
Zhu Yib481de92007-09-25 17:54:57 -07001558 break;
Zhu Yib481de92007-09-25 17:54:57 -07001559
1560 memcpy(search_tbl, tbl, sz);
Guy Cohenaade00c2008-04-23 17:14:59 -07001561 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001562 &search_tbl->current_rate, search_tbl)) {
1563 update_search_tbl_counter = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07001564 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001565 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001566 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001567 case IWL_SISO_SWITCH_MIMO2_AB:
1568 case IWL_SISO_SWITCH_MIMO2_AC:
1569 case IWL_SISO_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001570 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO2\n");
Zhu Yib481de92007-09-25 17:54:57 -07001571 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001572 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001573
1574 if (tbl->action == IWL_SISO_SWITCH_MIMO2_AB)
1575 search_tbl->ant_type = ANT_AB;
1576 else if (tbl->action == IWL_SISO_SWITCH_MIMO2_AC)
1577 search_tbl->ant_type = ANT_AC;
1578 else
1579 search_tbl->ant_type = ANT_BC;
1580
1581 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1582 break;
1583
Guy Cohenfde0db32008-04-21 15:42:01 -07001584 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001585 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001586 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001587 goto out;
1588 break;
1589 case IWL_SISO_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001590 if (!tbl->is_ht40 && !(ht_cap->cap &
1591 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001592 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001593 if (tbl->is_ht40 && !(ht_cap->cap &
1594 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001595 break;
1596
Tomas Winklere1623442009-01-27 14:27:56 -08001597 IWL_DEBUG_RATE(priv, "LQ: SISO toggle SGI/NGI\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001598
Zhu Yib481de92007-09-25 17:54:57 -07001599 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001600 if (is_green) {
1601 if (!tbl->is_SGI)
1602 break;
1603 else
Winkler, Tomas15b16872008-12-19 10:37:33 +08001604 IWL_ERR(priv,
1605 "SGI was set in GF+SISO\n");
Zhu Yib481de92007-09-25 17:54:57 -07001606 }
Guy Cohen39e88502008-04-23 17:14:57 -07001607 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001608 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohen39e88502008-04-23 17:14:57 -07001609 if (tbl->is_SGI) {
1610 s32 tpt = lq_sta->last_tpt / 100;
1611 if (tpt >= search_tbl->expected_tpt[index])
1612 break;
1613 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001614 search_tbl->current_rate =
1615 rate_n_flags_from_tbl(priv, search_tbl,
1616 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001617 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001618 goto out;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001619 case IWL_SISO_SWITCH_MIMO3_ABC:
1620 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO3\n");
1621 memcpy(search_tbl, tbl, sz);
1622 search_tbl->is_SGI = 0;
1623 search_tbl->ant_type = ANT_ABC;
1624
1625 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1626 break;
1627
1628 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1629 search_tbl, index);
1630 if (!ret)
1631 goto out;
1632 break;
Zhu Yib481de92007-09-25 17:54:57 -07001633 }
1634 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001635 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001636 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001637
1638 if (tbl->action == start_action)
1639 break;
1640 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001641 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001642 return 0;
1643
1644 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001645 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001646 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001647 if (tbl->action > IWL_SISO_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001648 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001649 if (update_search_tbl_counter)
1650 search_tbl->action = tbl->action;
1651
Zhu Yib481de92007-09-25 17:54:57 -07001652 return 0;
1653}
1654
Ben Cahill77626352007-11-29 11:09:44 +08001655/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001656 * Try to switch to new modulation mode from MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001657 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001658static int rs_move_mimo2_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001659 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001660 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001661 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001662{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001663 s8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001664 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1665 struct iwl_scale_tbl_info *search_tbl =
1666 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Guy Cohen3110bef2008-09-09 10:54:54 +08001667 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001668 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001669 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1670 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001671 u8 start_action;
Guy Cohen3110bef2008-09-09 10:54:54 +08001672 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1673 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001674 u8 update_search_tbl_counter = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07001675 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001676
Johannes Berg290f5992010-08-23 07:56:58 -07001677 switch (priv->bt_traffic_load) {
1678 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1679 /* nothing */
1680 break;
1681 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1682 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1683 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001684 if (tbl->action != IWL_MIMO2_SWITCH_SISO_A)
1685 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1686 break;
Johannes Berg290f5992010-08-23 07:56:58 -07001687 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1688 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001689 if (tbl->action == IWL_MIMO2_SWITCH_SISO_B ||
1690 tbl->action == IWL_MIMO2_SWITCH_SISO_C)
Johannes Berg290f5992010-08-23 07:56:58 -07001691 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1692 break;
1693 default:
1694 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1695 break;
1696 }
1697
Johannes Berg3ad3b922009-08-07 15:41:48 -07001698 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001699 (tbl->action < IWL_MIMO2_SWITCH_SISO_A ||
1700 tbl->action > IWL_MIMO2_SWITCH_SISO_C)) {
1701 /* switch in SISO */
1702 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1703 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001704
1705 /* configure as 1x1 if bt full concurrency */
1706 if (priv->bt_full_concurrent &&
1707 (tbl->action < IWL_MIMO2_SWITCH_SISO_A ||
1708 tbl->action > IWL_MIMO2_SWITCH_SISO_C))
1709 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1710
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001711 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001712 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001713 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001714 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001715 case IWL_MIMO2_SWITCH_ANTENNA1:
1716 case IWL_MIMO2_SWITCH_ANTENNA2:
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001717 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle Antennas\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001718
1719 if (tx_chains_num <= 2)
1720 break;
1721
1722 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1723 break;
1724
1725 memcpy(search_tbl, tbl, sz);
1726 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001727 &search_tbl->current_rate, search_tbl)) {
1728 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001729 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001730 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001731 break;
1732 case IWL_MIMO2_SWITCH_SISO_A:
1733 case IWL_MIMO2_SWITCH_SISO_B:
1734 case IWL_MIMO2_SWITCH_SISO_C:
Tomas Winklere1623442009-01-27 14:27:56 -08001735 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to SISO\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001736
Ben Cahill77626352007-11-29 11:09:44 +08001737 /* Set up new search table for SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001738 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001739
Guy Cohen3110bef2008-09-09 10:54:54 +08001740 if (tbl->action == IWL_MIMO2_SWITCH_SISO_A)
Guy Cohenfde0db32008-04-21 15:42:01 -07001741 search_tbl->ant_type = ANT_A;
Guy Cohen3110bef2008-09-09 10:54:54 +08001742 else if (tbl->action == IWL_MIMO2_SWITCH_SISO_B)
Guy Cohenfde0db32008-04-21 15:42:01 -07001743 search_tbl->ant_type = ANT_B;
Guy Cohen3110bef2008-09-09 10:54:54 +08001744 else
1745 search_tbl->ant_type = ANT_C;
1746
1747 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1748 break;
Zhu Yib481de92007-09-25 17:54:57 -07001749
Tomas Winklerc33104f2008-01-14 17:46:21 -08001750 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001751 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001752 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001753 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001754
Zhu Yib481de92007-09-25 17:54:57 -07001755 break;
1756
Guy Cohen3110bef2008-09-09 10:54:54 +08001757 case IWL_MIMO2_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001758 if (!tbl->is_ht40 && !(ht_cap->cap &
1759 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001760 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001761 if (tbl->is_ht40 && !(ht_cap->cap &
1762 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001763 break;
1764
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001765 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle SGI/NGI\n");
1766
1767 /* Set up new search table for MIMO2 */
1768 memcpy(search_tbl, tbl, sz);
1769 search_tbl->is_SGI = !tbl->is_SGI;
1770 rs_set_expected_tpt_table(lq_sta, search_tbl);
1771 /*
1772 * If active table already uses the fastest possible
1773 * modulation (dual stream with short guard interval),
1774 * and it's working well, there's no need to look
1775 * for a better type of modulation!
1776 */
1777 if (tbl->is_SGI) {
1778 s32 tpt = lq_sta->last_tpt / 100;
1779 if (tpt >= search_tbl->expected_tpt[index])
1780 break;
1781 }
1782 search_tbl->current_rate =
1783 rate_n_flags_from_tbl(priv, search_tbl,
1784 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001785 update_search_tbl_counter = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001786 goto out;
1787
1788 case IWL_MIMO2_SWITCH_MIMO3_ABC:
1789 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to MIMO3\n");
1790 memcpy(search_tbl, tbl, sz);
1791 search_tbl->is_SGI = 0;
1792 search_tbl->ant_type = ANT_ABC;
1793
1794 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1795 break;
1796
1797 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1798 search_tbl, index);
1799 if (!ret)
1800 goto out;
1801
1802 break;
1803 }
1804 tbl->action++;
1805 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1806 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
1807
1808 if (tbl->action == start_action)
1809 break;
1810 }
1811 search_tbl->lq_type = LQ_NONE;
1812 return 0;
1813 out:
1814 lq_sta->search_better_tbl = 1;
1815 tbl->action++;
1816 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1817 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001818 if (update_search_tbl_counter)
1819 search_tbl->action = tbl->action;
1820
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001821 return 0;
1822
1823}
1824
1825/*
1826 * Try to switch to new modulation mode from MIMO3
1827 */
1828static int rs_move_mimo3_to_other(struct iwl_priv *priv,
1829 struct iwl_lq_sta *lq_sta,
1830 struct ieee80211_conf *conf,
1831 struct ieee80211_sta *sta, int index)
1832{
1833 s8 is_green = lq_sta->is_green;
1834 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1835 struct iwl_scale_tbl_info *search_tbl =
1836 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1837 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001838 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001839 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1840 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001841 u8 start_action;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001842 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1843 u8 tx_chains_num = priv->hw_params.tx_chains_num;
1844 int ret;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001845 u8 update_search_tbl_counter = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001846
Johannes Berg290f5992010-08-23 07:56:58 -07001847 switch (priv->bt_traffic_load) {
1848 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1849 /* nothing */
1850 break;
1851 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1852 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1853 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001854 if (tbl->action != IWL_MIMO3_SWITCH_SISO_A)
Johannes Berg290f5992010-08-23 07:56:58 -07001855 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001856 break;
Johannes Berg290f5992010-08-23 07:56:58 -07001857 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1858 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001859 if (tbl->action == IWL_MIMO3_SWITCH_SISO_B ||
1860 tbl->action == IWL_MIMO3_SWITCH_SISO_C)
Johannes Berg290f5992010-08-23 07:56:58 -07001861 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
Johannes Berg290f5992010-08-23 07:56:58 -07001862 break;
1863 default:
1864 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1865 break;
1866 }
1867
Johannes Berg3ad3b922009-08-07 15:41:48 -07001868 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001869 (tbl->action < IWL_MIMO3_SWITCH_SISO_A ||
1870 tbl->action > IWL_MIMO3_SWITCH_SISO_C)) {
1871 /* switch in SISO */
1872 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
1873 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001874
1875 /* configure as 1x1 if bt full concurrency */
1876 if (priv->bt_full_concurrent &&
1877 (tbl->action < IWL_MIMO3_SWITCH_SISO_A ||
1878 tbl->action > IWL_MIMO3_SWITCH_SISO_C))
1879 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
1880
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001881 start_action = tbl->action;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001882 for (;;) {
1883 lq_sta->action_counter++;
1884 switch (tbl->action) {
1885 case IWL_MIMO3_SWITCH_ANTENNA1:
1886 case IWL_MIMO3_SWITCH_ANTENNA2:
1887 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle Antennas\n");
1888
1889 if (tx_chains_num <= 3)
1890 break;
1891
1892 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1893 break;
1894
1895 memcpy(search_tbl, tbl, sz);
1896 if (rs_toggle_antenna(valid_tx_ant,
1897 &search_tbl->current_rate, search_tbl))
1898 goto out;
1899 break;
1900 case IWL_MIMO3_SWITCH_SISO_A:
1901 case IWL_MIMO3_SWITCH_SISO_B:
1902 case IWL_MIMO3_SWITCH_SISO_C:
1903 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to SISO\n");
1904
1905 /* Set up new search table for SISO */
1906 memcpy(search_tbl, tbl, sz);
1907
1908 if (tbl->action == IWL_MIMO3_SWITCH_SISO_A)
1909 search_tbl->ant_type = ANT_A;
1910 else if (tbl->action == IWL_MIMO3_SWITCH_SISO_B)
1911 search_tbl->ant_type = ANT_B;
1912 else
1913 search_tbl->ant_type = ANT_C;
1914
1915 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1916 break;
1917
1918 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
1919 search_tbl, index);
1920 if (!ret)
1921 goto out;
1922
1923 break;
1924
1925 case IWL_MIMO3_SWITCH_MIMO2_AB:
1926 case IWL_MIMO3_SWITCH_MIMO2_AC:
1927 case IWL_MIMO3_SWITCH_MIMO2_BC:
1928 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to MIMO2\n");
1929
1930 memcpy(search_tbl, tbl, sz);
1931 search_tbl->is_SGI = 0;
1932 if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AB)
1933 search_tbl->ant_type = ANT_AB;
1934 else if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AC)
1935 search_tbl->ant_type = ANT_AC;
1936 else
1937 search_tbl->ant_type = ANT_BC;
1938
1939 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1940 break;
1941
1942 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
1943 search_tbl, index);
1944 if (!ret)
1945 goto out;
1946
1947 break;
1948
1949 case IWL_MIMO3_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001950 if (!tbl->is_ht40 && !(ht_cap->cap &
1951 IEEE80211_HT_CAP_SGI_20))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001952 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001953 if (tbl->is_ht40 && !(ht_cap->cap &
1954 IEEE80211_HT_CAP_SGI_40))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001955 break;
1956
1957 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle SGI/NGI\n");
Ben Cahill77626352007-11-29 11:09:44 +08001958
1959 /* Set up new search table for MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001960 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001961 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001962 rs_set_expected_tpt_table(lq_sta, search_tbl);
Ben Cahill77626352007-11-29 11:09:44 +08001963 /*
1964 * If active table already uses the fastest possible
1965 * modulation (dual stream with short guard interval),
1966 * and it's working well, there's no need to look
1967 * for a better type of modulation!
1968 */
Guy Cohen39e88502008-04-23 17:14:57 -07001969 if (tbl->is_SGI) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001970 s32 tpt = lq_sta->last_tpt / 100;
Guy Cohen39e88502008-04-23 17:14:57 -07001971 if (tpt >= search_tbl->expected_tpt[index])
1972 break;
Zhu Yib481de92007-09-25 17:54:57 -07001973 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001974 search_tbl->current_rate =
1975 rate_n_flags_from_tbl(priv, search_tbl,
1976 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001977 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001978 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07001979 }
1980 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001981 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1982 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001983
1984 if (tbl->action == start_action)
1985 break;
1986 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001987 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001988 return 0;
1989 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001990 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001991 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001992 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1993 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001994 if (update_search_tbl_counter)
1995 search_tbl->action = tbl->action;
1996
Zhu Yib481de92007-09-25 17:54:57 -07001997 return 0;
1998
1999}
2000
Ben Cahill77626352007-11-29 11:09:44 +08002001/*
2002 * Check whether we should continue using same modulation mode, or
2003 * begin search for a new mode, based on:
2004 * 1) # tx successes or failures while using this mode
2005 * 2) # times calling this function
2006 * 3) elapsed time in this mode (not used, for now)
2007 */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002008static void rs_stay_in_table(struct iwl_lq_sta *lq_sta, bool force_search)
Zhu Yib481de92007-09-25 17:54:57 -07002009{
Tomas Winklere227cea2008-07-18 13:53:05 +08002010 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002011 int i;
2012 int active_tbl;
2013 int flush_interval_passed = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08002014 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002015
Ester Kummerbf403db2008-05-05 10:22:40 +08002016 priv = lq_sta->drv;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002017 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002018
Tomas Winklerc33104f2008-01-14 17:46:21 -08002019 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002020
Ben Cahill77626352007-11-29 11:09:44 +08002021 /* If we've been disallowing search, see if we should now allow it */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002022 if (lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07002023
Ben Cahill77626352007-11-29 11:09:44 +08002024 /* Elapsed time using current modulation mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002025 if (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07002026 flush_interval_passed =
Mohamed Abbas447fee72009-04-20 14:37:02 -07002027 time_after(jiffies,
2028 (unsigned long)(lq_sta->flush_timer +
Zhu Yib481de92007-09-25 17:54:57 -07002029 IWL_RATE_SCALE_FLUSH_INTVL));
2030
Ben Cahill77626352007-11-29 11:09:44 +08002031 /*
2032 * Check if we should allow search for new modulation mode.
2033 * If many frames have failed or succeeded, or we've used
2034 * this same modulation for a long time, allow search, and
2035 * reset history stats that keep track of whether we should
2036 * allow a new search. Also (below) reset all bitmaps and
2037 * stats in active history.
2038 */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002039 if (force_search ||
2040 (lq_sta->total_failed > lq_sta->max_failure_limit) ||
Tomas Winklerc33104f2008-01-14 17:46:21 -08002041 (lq_sta->total_success > lq_sta->max_success_limit) ||
2042 ((!lq_sta->search_better_tbl) && (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07002043 && (flush_interval_passed))) {
Tomas Winklere1623442009-01-27 14:27:56 -08002044 IWL_DEBUG_RATE(priv, "LQ: stay is expired %d %d %d\n:",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002045 lq_sta->total_failed,
2046 lq_sta->total_success,
Zhu Yib481de92007-09-25 17:54:57 -07002047 flush_interval_passed);
Ben Cahill77626352007-11-29 11:09:44 +08002048
2049 /* Allow search for new mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002050 lq_sta->stay_in_tbl = 0; /* only place reset */
2051 lq_sta->total_failed = 0;
2052 lq_sta->total_success = 0;
2053 lq_sta->flush_timer = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002054
2055 /*
2056 * Else if we've used this modulation mode enough repetitions
2057 * (regardless of elapsed time or success/failure), reset
2058 * history bitmaps and rate-specific stats for all rates in
2059 * active table.
2060 */
Mohamed Abbas403ab562007-11-06 22:06:25 -08002061 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002062 lq_sta->table_count++;
2063 if (lq_sta->table_count >=
2064 lq_sta->table_count_limit) {
2065 lq_sta->table_count = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002066
Tomas Winklere1623442009-01-27 14:27:56 -08002067 IWL_DEBUG_RATE(priv, "LQ: stay in table clear win\n");
Zhu Yib481de92007-09-25 17:54:57 -07002068 for (i = 0; i < IWL_RATE_COUNT; i++)
2069 rs_rate_scale_clear_window(
2070 &(tbl->win[i]));
2071 }
2072 }
2073
Ben Cahill77626352007-11-29 11:09:44 +08002074 /* If transitioning to allow "search", reset all history
2075 * bitmaps and stats in active table (this will become the new
2076 * "search" table). */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002077 if (!lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07002078 for (i = 0; i < IWL_RATE_COUNT; i++)
2079 rs_rate_scale_clear_window(&(tbl->win[i]));
2080 }
2081 }
2082}
2083
Ben Cahill77626352007-11-29 11:09:44 +08002084/*
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002085 * setup rate table in uCode
2086 * return rate_n_flags as used in the table
2087 */
2088static u32 rs_update_rate_tbl(struct iwl_priv *priv,
2089 struct iwl_lq_sta *lq_sta,
2090 struct iwl_scale_tbl_info *tbl,
2091 int index, u8 is_green)
2092{
2093 u32 rate;
2094
2095 /* Update uCode's rate table. */
2096 rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
2097 rs_fill_link_cmd(priv, lq_sta, rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002098 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002099
2100 return rate;
2101}
2102
2103/*
Ben Cahill77626352007-11-29 11:09:44 +08002104 * Do rate scaling and search for new modulation mode.
2105 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002106static void rs_rate_scale_perform(struct iwl_priv *priv,
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002107 struct sk_buff *skb,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002108 struct ieee80211_sta *sta,
2109 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002110{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002111 struct ieee80211_hw *hw = priv->hw;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002112 struct ieee80211_conf *conf = &hw->conf;
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002113 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2114 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002115 int low = IWL_RATE_INVALID;
2116 int high = IWL_RATE_INVALID;
2117 int index;
2118 int i;
Tomas Winklere227cea2008-07-18 13:53:05 +08002119 struct iwl_rate_scale_data *window = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002120 int current_tpt = IWL_INVALID_VALUE;
2121 int low_tpt = IWL_INVALID_VALUE;
2122 int high_tpt = IWL_INVALID_VALUE;
2123 u32 fail_count;
2124 s8 scale_action = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002125 u16 rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -07002126 u8 update_lq = 0;
Tomas Winklere227cea2008-07-18 13:53:05 +08002127 struct iwl_scale_tbl_info *tbl, *tbl1;
Zhu Yib481de92007-09-25 17:54:57 -07002128 u16 rate_scale_index_msk = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07002129 u32 rate;
Zhu Yib481de92007-09-25 17:54:57 -07002130 u8 is_green = 0;
2131 u8 active_tbl = 0;
2132 u8 done_search = 0;
2133 u16 high_low;
Guy Cohena5e8b502008-05-29 16:35:11 +08002134 s32 sr;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002135 u8 tid = MAX_TID_COUNT;
Wey-Yi Guy86b47662009-03-10 14:35:09 -07002136 struct iwl_tid_data *tid_data;
Zhu Yib481de92007-09-25 17:54:57 -07002137
Tomas Winklere1623442009-01-27 14:27:56 -08002138 IWL_DEBUG_RATE(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002139
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002140 /* Send management frames and NO_ACK data using lowest rate. */
Tomas Winkler417f1142008-11-12 13:14:06 -08002141 /* TODO: this could probably be improved.. */
2142 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002143 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -07002144 return;
Zhu Yib481de92007-09-25 17:54:57 -07002145
Johannes Berg4b7679a2008-09-18 18:14:18 +02002146 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002147 return;
2148
Johannes Berg4b7679a2008-09-18 18:14:18 +02002149 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
Zhu Yib481de92007-09-25 17:54:57 -07002150
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08002151 tid = rs_tl_add_packet(lq_sta, hdr);
Daniel C Halperine3949d62009-09-17 10:43:50 -07002152 if ((tid != MAX_TID_COUNT) && (lq_sta->tx_agg_tid_en & (1 << tid))) {
2153 tid_data = &priv->stations[lq_sta->lq.sta_id].tid[tid];
2154 if (tid_data->agg.state == IWL_AGG_OFF)
2155 lq_sta->is_agg = 0;
2156 else
2157 lq_sta->is_agg = 1;
2158 } else
2159 lq_sta->is_agg = 0;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08002160
Ben Cahill77626352007-11-29 11:09:44 +08002161 /*
2162 * Select rate-scale / modulation-mode table to work with in
2163 * the rest of this function: "search" if searching for better
2164 * modulation mode, or "active" if doing rate scaling within a mode.
2165 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002166 if (!lq_sta->search_better_tbl)
2167 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002168 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002169 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002170
Tomas Winklerc33104f2008-01-14 17:46:21 -08002171 tbl = &(lq_sta->lq_info[active_tbl]);
Wey-Yi Guy2681b202009-05-21 13:44:22 -07002172 if (is_legacy(tbl->lq_type))
2173 lq_sta->is_green = 0;
2174 else
Daniel C Halperinb2617932009-08-13 13:30:59 -07002175 lq_sta->is_green = rs_use_green(sta, &priv->current_ht_config);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002176 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07002177
Ben Cahill77626352007-11-29 11:09:44 +08002178 /* current tx rate */
Johannes Bergb7e35002008-09-11 02:22:58 +02002179 index = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002180
Tomas Winklere1623442009-01-27 14:27:56 -08002181 IWL_DEBUG_RATE(priv, "Rate scale index %d for type %d\n", index,
Zhu Yib481de92007-09-25 17:54:57 -07002182 tbl->lq_type);
2183
Ben Cahill77626352007-11-29 11:09:44 +08002184 /* rates available for this association, and for modulation mode */
Guy Coheneecd6e52008-04-23 17:14:58 -07002185 rate_mask = rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07002186
Frans Pop91dd6c22010-03-24 14:19:58 -07002187 IWL_DEBUG_RATE(priv, "mask 0x%04X\n", rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07002188
2189 /* mask with station rate restriction */
2190 if (is_legacy(tbl->lq_type)) {
Johannes Berg8318d782008-01-24 19:38:38 +01002191 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Ben Cahill77626352007-11-29 11:09:44 +08002192 /* supp_rates has no CCK bits in A mode */
Zhu Yib481de92007-09-25 17:54:57 -07002193 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002194 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -07002195 else
2196 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002197 lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -07002198
2199 } else
2200 rate_scale_index_msk = rate_mask;
2201
2202 if (!rate_scale_index_msk)
2203 rate_scale_index_msk = rate_mask;
2204
Guy Cohen07bc28e2008-04-23 17:15:03 -07002205 if (!((1 << index) & rate_scale_index_msk)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002206 IWL_ERR(priv, "Current Rate is not valid\n");
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002207 if (lq_sta->search_better_tbl) {
2208 /* revert to active table if search table is not valid*/
2209 tbl->lq_type = LQ_NONE;
2210 lq_sta->search_better_tbl = 0;
2211 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
2212 /* get "active" rate info */
2213 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
2214 rate = rs_update_rate_tbl(priv, lq_sta,
2215 tbl, index, is_green);
2216 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002217 return;
Zhu Yib481de92007-09-25 17:54:57 -07002218 }
2219
Ben Cahill77626352007-11-29 11:09:44 +08002220 /* Get expected throughput table and history window for current rate */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002221 if (!tbl->expected_tpt) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002222 IWL_ERR(priv, "tbl->expected_tpt is NULL\n");
Guy Cohen07bc28e2008-04-23 17:15:03 -07002223 return;
2224 }
Zhu Yib481de92007-09-25 17:54:57 -07002225
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002226 /* force user max rate if set by user */
2227 if ((lq_sta->max_rate_idx != -1) &&
2228 (lq_sta->max_rate_idx < index)) {
2229 index = lq_sta->max_rate_idx;
2230 update_lq = 1;
2231 window = &(tbl->win[index]);
2232 goto lq_update;
2233 }
2234
Zhu Yib481de92007-09-25 17:54:57 -07002235 window = &(tbl->win[index]);
2236
Ben Cahill77626352007-11-29 11:09:44 +08002237 /*
2238 * If there is not enough history to calculate actual average
2239 * throughput, keep analyzing results of more tx frames, without
2240 * changing rate or mode (bypass most of the rest of this function).
2241 * Set up new rate table in uCode only if old rate is not supported
2242 * in current association (use new rate found above).
2243 */
Zhu Yib481de92007-09-25 17:54:57 -07002244 fail_count = window->counter - window->success_counter;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002245 if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
2246 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002247 IWL_DEBUG_RATE(priv, "LQ: still below TH. succ=%d total=%d "
Zhu Yib481de92007-09-25 17:54:57 -07002248 "for index %d\n",
2249 window->success_counter, window->counter, index);
Ben Cahill77626352007-11-29 11:09:44 +08002250
2251 /* Can't calculate this yet; not enough history */
Zhu Yib481de92007-09-25 17:54:57 -07002252 window->average_tpt = IWL_INVALID_VALUE;
Ben Cahill77626352007-11-29 11:09:44 +08002253
2254 /* Should we stay with this modulation mode,
2255 * or search for a new one? */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002256 rs_stay_in_table(lq_sta, false);
Ben Cahill77626352007-11-29 11:09:44 +08002257
Zhu Yib481de92007-09-25 17:54:57 -07002258 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08002259 }
Ben Cahill77626352007-11-29 11:09:44 +08002260 /* Else we have enough samples; calculate estimate of
2261 * actual average throughput */
Reinette Chatre3d79b2a2010-05-03 10:55:07 -07002262 if (window->average_tpt != ((window->success_ratio *
2263 tbl->expected_tpt[index] + 64) / 128)) {
2264 IWL_ERR(priv, "expected_tpt should have been calculated by now\n");
2265 window->average_tpt = ((window->success_ratio *
2266 tbl->expected_tpt[index] + 64) / 128);
2267 }
Zhu Yib481de92007-09-25 17:54:57 -07002268
Ben Cahill77626352007-11-29 11:09:44 +08002269 /* If we are searching for better modulation mode, check success. */
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002270 if (lq_sta->search_better_tbl &&
Johannes Berg3ad3b922009-08-07 15:41:48 -07002271 (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI)) {
Ben Cahill77626352007-11-29 11:09:44 +08002272 /* If good success, continue using the "search" mode;
2273 * no need to send new link quality command, since we're
2274 * continuing to use the setup that we've been trying. */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002275 if (window->average_tpt > lq_sta->last_tpt) {
2276
Tomas Winklere1623442009-01-27 14:27:56 -08002277 IWL_DEBUG_RATE(priv, "LQ: SWITCHING TO NEW TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002278 "suc=%d cur-tpt=%d old-tpt=%d\n",
2279 window->success_ratio,
2280 window->average_tpt,
2281 lq_sta->last_tpt);
2282
2283 if (!is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002284 lq_sta->enable_counter = 1;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002285
Ben Cahill77626352007-11-29 11:09:44 +08002286 /* Swap tables; "search" becomes "active" */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002287 lq_sta->active_tbl = active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002288 current_tpt = window->average_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002289
2290 /* Else poor success; go back to mode in "active" table */
Zhu Yib481de92007-09-25 17:54:57 -07002291 } else {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002292
Tomas Winklere1623442009-01-27 14:27:56 -08002293 IWL_DEBUG_RATE(priv, "LQ: GOING BACK TO THE OLD TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002294 "suc=%d cur-tpt=%d old-tpt=%d\n",
2295 window->success_ratio,
2296 window->average_tpt,
2297 lq_sta->last_tpt);
2298
Ben Cahill77626352007-11-29 11:09:44 +08002299 /* Nullify "search" table */
Zhu Yib481de92007-09-25 17:54:57 -07002300 tbl->lq_type = LQ_NONE;
Ben Cahill77626352007-11-29 11:09:44 +08002301
2302 /* Revert to "active" table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002303 active_tbl = lq_sta->active_tbl;
2304 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002305
Ben Cahill77626352007-11-29 11:09:44 +08002306 /* Revert to "active" rate and throughput info */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002307 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002308 current_tpt = lq_sta->last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002309
2310 /* Need to set up a new rate table in uCode */
2311 update_lq = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002312 }
Ben Cahill77626352007-11-29 11:09:44 +08002313
2314 /* Either way, we've made a decision; modulation mode
2315 * search is done, allow rate adjustment next time. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002316 lq_sta->search_better_tbl = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002317 done_search = 1; /* Don't switch modes below! */
Zhu Yib481de92007-09-25 17:54:57 -07002318 goto lq_update;
2319 }
2320
Ben Cahill77626352007-11-29 11:09:44 +08002321 /* (Else) not in search of better modulation mode, try for better
2322 * starting rate, while staying in this mode. */
Ester Kummerbf403db2008-05-05 10:22:40 +08002323 high_low = rs_get_adjacent_rate(priv, index, rate_scale_index_msk,
Zhu Yib481de92007-09-25 17:54:57 -07002324 tbl->lq_type);
2325 low = high_low & 0xff;
2326 high = (high_low >> 8) & 0xff;
2327
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002328 /* If user set max rate, dont allow higher than user constrain */
2329 if ((lq_sta->max_rate_idx != -1) &&
2330 (lq_sta->max_rate_idx < high))
2331 high = IWL_RATE_INVALID;
2332
Guy Cohena5e8b502008-05-29 16:35:11 +08002333 sr = window->success_ratio;
2334
Ben Cahill77626352007-11-29 11:09:44 +08002335 /* Collect measured throughputs for current and adjacent rates */
Zhu Yib481de92007-09-25 17:54:57 -07002336 current_tpt = window->average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002337 if (low != IWL_RATE_INVALID)
2338 low_tpt = tbl->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002339 if (high != IWL_RATE_INVALID)
2340 high_tpt = tbl->win[high].average_tpt;
2341
Guy Cohena5e8b502008-05-29 16:35:11 +08002342 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002343
Ben Cahill77626352007-11-29 11:09:44 +08002344 /* Too many failures, decrease rate */
Guy Cohena5e8b502008-05-29 16:35:11 +08002345 if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002346 IWL_DEBUG_RATE(priv, "decrease rate because of low success_ratio\n");
Zhu Yib481de92007-09-25 17:54:57 -07002347 scale_action = -1;
Ben Cahill77626352007-11-29 11:09:44 +08002348
2349 /* No throughput measured yet for adjacent rates; try increase. */
Zhu Yib481de92007-09-25 17:54:57 -07002350 } else if ((low_tpt == IWL_INVALID_VALUE) &&
Guy Cohena5e8b502008-05-29 16:35:11 +08002351 (high_tpt == IWL_INVALID_VALUE)) {
2352
2353 if (high != IWL_RATE_INVALID && sr >= IWL_RATE_INCREASE_TH)
2354 scale_action = 1;
2355 else if (low != IWL_RATE_INVALID)
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002356 scale_action = 0;
Guy Cohena5e8b502008-05-29 16:35:11 +08002357 }
Ben Cahill77626352007-11-29 11:09:44 +08002358
2359 /* Both adjacent throughputs are measured, but neither one has better
2360 * throughput; we're using the best rate, don't change it! */
Zhu Yib481de92007-09-25 17:54:57 -07002361 else if ((low_tpt != IWL_INVALID_VALUE) &&
2362 (high_tpt != IWL_INVALID_VALUE) &&
2363 (low_tpt < current_tpt) &&
2364 (high_tpt < current_tpt))
2365 scale_action = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002366
2367 /* At least one adjacent rate's throughput is measured,
2368 * and may have better performance. */
Zhu Yib481de92007-09-25 17:54:57 -07002369 else {
Ben Cahill77626352007-11-29 11:09:44 +08002370 /* Higher adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002371 if (high_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002372 /* Higher rate has better throughput */
Guy Cohena5e8b502008-05-29 16:35:11 +08002373 if (high_tpt > current_tpt &&
2374 sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002375 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002376 } else {
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002377 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002378 }
Ben Cahill77626352007-11-29 11:09:44 +08002379
2380 /* Lower adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002381 } else if (low_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002382 /* Lower rate has better throughput */
Zhu Yib481de92007-09-25 17:54:57 -07002383 if (low_tpt > current_tpt) {
Tomas Winklere1623442009-01-27 14:27:56 -08002384 IWL_DEBUG_RATE(priv,
2385 "decrease rate because of low tpt\n");
Zhu Yib481de92007-09-25 17:54:57 -07002386 scale_action = -1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002387 } else if (sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002388 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002389 }
Zhu Yib481de92007-09-25 17:54:57 -07002390 }
2391 }
2392
Ben Cahill77626352007-11-29 11:09:44 +08002393 /* Sanity check; asked for decrease, but success rate or throughput
2394 * has been good at old rate. Don't change it. */
Guy Cohena5e8b502008-05-29 16:35:11 +08002395 if ((scale_action == -1) && (low != IWL_RATE_INVALID) &&
2396 ((sr > IWL_RATE_HIGH_TH) ||
Zhu Yib481de92007-09-25 17:54:57 -07002397 (current_tpt > (100 * tbl->expected_tpt[low]))))
Zhu Yib481de92007-09-25 17:54:57 -07002398 scale_action = 0;
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002399 if (!iwl_ht_enabled(priv) && !is_legacy(tbl->lq_type))
2400 scale_action = -1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07002401 if (iwl_tx_ant_restriction(priv) != IWL_ANT_OK_MULTI &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002402 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type)))
2403 scale_action = -1;
Johannes Berg290f5992010-08-23 07:56:58 -07002404
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002405 if ((priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH) &&
2406 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type))) {
2407 if (lq_sta->last_bt_traffic > priv->bt_traffic_load) {
2408 /*
2409 * don't set scale_action, don't want to scale up if
2410 * the rate scale doesn't otherwise think that is a
2411 * good idea.
2412 */
2413 } else if (lq_sta->last_bt_traffic <= priv->bt_traffic_load) {
2414 scale_action = -1;
2415 }
2416 }
2417 lq_sta->last_bt_traffic = priv->bt_traffic_load;
2418
2419 if ((priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH) &&
2420 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type))) {
2421 /* search for a new modulation */
2422 rs_stay_in_table(lq_sta, true);
2423 goto lq_update;
Johannes Berg290f5992010-08-23 07:56:58 -07002424 }
2425
Zhu Yib481de92007-09-25 17:54:57 -07002426 switch (scale_action) {
2427 case -1:
Ben Cahill77626352007-11-29 11:09:44 +08002428 /* Decrease starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002429 if (low != IWL_RATE_INVALID) {
2430 update_lq = 1;
2431 index = low;
2432 }
Mohamed Abbas447fee72009-04-20 14:37:02 -07002433
Zhu Yib481de92007-09-25 17:54:57 -07002434 break;
2435 case 1:
Ben Cahill77626352007-11-29 11:09:44 +08002436 /* Increase starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002437 if (high != IWL_RATE_INVALID) {
2438 update_lq = 1;
2439 index = high;
2440 }
2441
2442 break;
2443 case 0:
Ben Cahill77626352007-11-29 11:09:44 +08002444 /* No change */
Zhu Yib481de92007-09-25 17:54:57 -07002445 default:
2446 break;
2447 }
2448
Tomas Winklere1623442009-01-27 14:27:56 -08002449 IWL_DEBUG_RATE(priv, "choose rate scale index %d action %d low %d "
Zhu Yib481de92007-09-25 17:54:57 -07002450 "high %d type %d\n",
2451 index, scale_action, low, high, tbl->lq_type);
2452
Guy Cohena5e8b502008-05-29 16:35:11 +08002453lq_update:
Ben Cahill77626352007-11-29 11:09:44 +08002454 /* Replace uCode's rate table for the destination station. */
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002455 if (update_lq)
2456 rate = rs_update_rate_tbl(priv, lq_sta,
2457 tbl, index, is_green);
Ben Cahill77626352007-11-29 11:09:44 +08002458
Johannes Berg3ad3b922009-08-07 15:41:48 -07002459 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI) {
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002460 /* Should we stay with this modulation mode,
2461 * or search for a new one? */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002462 rs_stay_in_table(lq_sta, false);
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002463 }
Ben Cahill77626352007-11-29 11:09:44 +08002464 /*
2465 * Search for new modulation mode if we're:
2466 * 1) Not changing rates right now
2467 * 2) Not just finishing up a search
2468 * 3) Allowing a new search
2469 */
Guy Cohen47cfd462008-05-27 11:29:34 +08002470 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && window->counter) {
Ben Cahill77626352007-11-29 11:09:44 +08002471 /* Save current throughput to compare with "search" throughput*/
Tomas Winklerc33104f2008-01-14 17:46:21 -08002472 lq_sta->last_tpt = current_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002473
Ben Cahill77626352007-11-29 11:09:44 +08002474 /* Select a new "search" modulation mode to try.
2475 * If one is found, set up the new "search" table. */
Zhu Yib481de92007-09-25 17:54:57 -07002476 if (is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002477 rs_move_legacy_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002478 else if (is_siso(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002479 rs_move_siso_to_other(priv, lq_sta, conf, sta, index);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002480 else if (is_mimo2(tbl->lq_type))
2481 rs_move_mimo2_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002482 else
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002483 rs_move_mimo3_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002484
Ben Cahill77626352007-11-29 11:09:44 +08002485 /* If new "search" mode was selected, set up in uCode table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002486 if (lq_sta->search_better_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002487 /* Access the "search" table, clear its history. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002488 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Zhu Yib481de92007-09-25 17:54:57 -07002489 for (i = 0; i < IWL_RATE_COUNT; i++)
2490 rs_rate_scale_clear_window(&(tbl->win[i]));
2491
Ben Cahill77626352007-11-29 11:09:44 +08002492 /* Use new "search" start rate */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002493 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002494
Tomas Winklere1623442009-01-27 14:27:56 -08002495 IWL_DEBUG_RATE(priv, "Switch current mcs: %X index: %d\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002496 tbl->current_rate, index);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002497 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002498 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Mohamed Abbas447fee72009-04-20 14:37:02 -07002499 } else
2500 done_search = 1;
2501 }
Zhu Yib481de92007-09-25 17:54:57 -07002502
Mohamed Abbas447fee72009-04-20 14:37:02 -07002503 if (done_search && !lq_sta->stay_in_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002504 /* If the "active" (non-search) mode was legacy,
2505 * and we've tried switching antennas,
2506 * but we haven't been able to try HT modes (not available),
2507 * stay with best antenna legacy modulation for a while
2508 * before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002509 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08002510 if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
Mohamed Abbasd6e93392009-05-08 13:44:39 -07002511 lq_sta->action_counter > tbl1->max_search) {
Tomas Winklere1623442009-01-27 14:27:56 -08002512 IWL_DEBUG_RATE(priv, "LQ: STAY in legacy table\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08002513 rs_set_stay_in_table(priv, 1, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002514 }
2515
Ben Cahill77626352007-11-29 11:09:44 +08002516 /* If we're in an HT mode, and all 3 mode switch actions
2517 * have been tried and compared, stay in this best modulation
2518 * mode for a while before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002519 if (lq_sta->enable_counter &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002520 (lq_sta->action_counter >= tbl1->max_search) &&
2521 iwl_ht_enabled(priv)) {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002522 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2523 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2524 (tid != MAX_TID_COUNT)) {
Wey-Yi Guy86b47662009-03-10 14:35:09 -07002525 tid_data =
2526 &priv->stations[lq_sta->lq.sta_id].tid[tid];
2527 if (tid_data->agg.state == IWL_AGG_OFF) {
2528 IWL_DEBUG_RATE(priv,
2529 "try to aggregate tid %d\n",
2530 tid);
2531 rs_tl_turn_on_agg(priv, tid,
2532 lq_sta, sta);
2533 }
Zhu Yib481de92007-09-25 17:54:57 -07002534 }
Ester Kummerbf403db2008-05-05 10:22:40 +08002535 rs_set_stay_in_table(priv, 0, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002536 }
Zhu Yib481de92007-09-25 17:54:57 -07002537 }
2538
2539out:
Tomas Winkler978785a2008-12-19 10:37:31 +08002540 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07002541 i = index;
Johannes Bergb7e35002008-09-11 02:22:58 +02002542 lq_sta->last_txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -07002543}
2544
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002545/**
2546 * rs_initialize_lq - Initialize a station's hardware rate table
2547 *
2548 * The uCode's station table contains a table of fallback rates
2549 * for automatic fallback during transmission.
2550 *
2551 * NOTE: This sets up a default set of values. These will be replaced later
2552 * if the driver's iwl-agn-rs rate scaling algorithm is used, instead of
2553 * rc80211_simple.
2554 *
2555 * NOTE: Run REPLY_ADD_STA command to set up station table entry, before
2556 * calling this function (which runs REPLY_TX_LINK_QUALITY_CMD,
2557 * which requires station table entry to exist).
2558 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002559static void rs_initialize_lq(struct iwl_priv *priv,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002560 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002561 struct ieee80211_sta *sta,
2562 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002563{
Tomas Winklere227cea2008-07-18 13:53:05 +08002564 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002565 int rate_idx;
Guy Cohenaade00c2008-04-23 17:14:59 -07002566 int i;
Guy Cohen39e88502008-04-23 17:14:57 -07002567 u32 rate;
Daniel C Halperinb2617932009-08-13 13:30:59 -07002568 u8 use_green = rs_use_green(sta, &priv->current_ht_config);
Guy Cohenaade00c2008-04-23 17:14:59 -07002569 u8 active_tbl = 0;
2570 u8 valid_tx_ant;
Zhu Yib481de92007-09-25 17:54:57 -07002571
Johannes Berg4b7679a2008-09-18 18:14:18 +02002572 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002573 goto out;
2574
Johannes Bergb7e35002008-09-11 02:22:58 +02002575 i = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002576
Guy Cohenaade00c2008-04-23 17:14:59 -07002577 valid_tx_ant = priv->hw_params.valid_tx_ant;
2578
Tomas Winklerc33104f2008-01-14 17:46:21 -08002579 if (!lq_sta->search_better_tbl)
2580 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002581 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002582 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002583
Tomas Winklerc33104f2008-01-14 17:46:21 -08002584 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002585
2586 if ((i < 0) || (i >= IWL_RATE_COUNT))
2587 i = 0;
2588
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002589 rate = iwl_rates[i].plcp;
Winkler, Tomaseb48dca2008-10-29 14:05:48 -07002590 tbl->ant_type = first_antenna(valid_tx_ant);
2591 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
Zhu Yib481de92007-09-25 17:54:57 -07002592
2593 if (i >= IWL_FIRST_CCK_RATE && i <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -07002594 rate |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002595
Guy Cohen39e88502008-04-23 17:14:57 -07002596 rs_get_tbl_info_from_mcs(rate, priv->band, tbl, &rate_idx);
Guy Cohenaade00c2008-04-23 17:14:59 -07002597 if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2598 rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07002599
Tomas Winkler978785a2008-12-19 10:37:31 +08002600 rate = rate_n_flags_from_tbl(priv, tbl, rate_idx, use_green);
Guy Cohen39e88502008-04-23 17:14:57 -07002601 tbl->current_rate = rate;
Guy Coheneecd6e52008-04-23 17:14:58 -07002602 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002603 rs_fill_link_cmd(NULL, lq_sta, rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002604 priv->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq;
2605 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_SYNC, true);
Zhu Yib481de92007-09-25 17:54:57 -07002606 out:
2607 return;
2608}
2609
Johannes Berge6a98542008-10-21 12:40:02 +02002610static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta,
2611 struct ieee80211_tx_rate_control *txrc)
Zhu Yib481de92007-09-25 17:54:57 -07002612{
2613
Johannes Berge6a98542008-10-21 12:40:02 +02002614 struct sk_buff *skb = txrc->skb;
2615 struct ieee80211_supported_band *sband = txrc->sband;
Reinette Chatref875f512010-04-05 10:43:10 -07002616 struct iwl_priv *priv __maybe_unused = (struct iwl_priv *)priv_r;
Johannes Berge6a98542008-10-21 12:40:02 +02002617 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winkler417f1142008-11-12 13:14:06 -08002618 struct iwl_lq_sta *lq_sta = priv_sta;
2619 int rate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002620
Tomas Winklere1623442009-01-27 14:27:56 -08002621 IWL_DEBUG_RATE_LIMIT(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002622
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002623 /* Get max rate if user set max rate */
2624 if (lq_sta) {
2625 lq_sta->max_rate_idx = txrc->max_rate_idx;
2626 if ((sband->band == IEEE80211_BAND_5GHZ) &&
2627 (lq_sta->max_rate_idx != -1))
2628 lq_sta->max_rate_idx += IWL_FIRST_OFDM_RATE;
2629 if ((lq_sta->max_rate_idx < 0) ||
2630 (lq_sta->max_rate_idx >= IWL_RATE_COUNT))
2631 lq_sta->max_rate_idx = -1;
2632 }
2633
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002634 /* Treat uninitialized rate scaling data same as non-existing. */
2635 if (lq_sta && !lq_sta->drv) {
2636 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
2637 priv_sta = NULL;
2638 }
2639
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002640 /* Send management frames and NO_ACK data using lowest rate. */
Luis R. Rodriguez4c6d4f52009-07-16 10:05:41 -07002641 if (rate_control_send_low(sta, priv_sta, txrc))
Johannes Berg4b7679a2008-09-18 18:14:18 +02002642 return;
Zhu Yib481de92007-09-25 17:54:57 -07002643
Tomas Winkler417f1142008-11-12 13:14:06 -08002644 rate_idx = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002645
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002646 if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
Tomas Winkler417f1142008-11-12 13:14:06 -08002647 rate_idx -= IWL_FIRST_OFDM_RATE;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002648 /* 6M and 9M shared same MCS index */
2649 rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
2650 if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2651 IWL_RATE_MIMO3_6M_PLCP)
2652 rate_idx = rate_idx + (2 * MCS_INDEX_PER_STREAM);
2653 else if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2654 IWL_RATE_MIMO2_6M_PLCP)
2655 rate_idx = rate_idx + MCS_INDEX_PER_STREAM;
2656 info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
2657 if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
2658 info->control.rates[0].flags |= IEEE80211_TX_RC_SHORT_GI;
2659 if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
2660 info->control.rates[0].flags |= IEEE80211_TX_RC_DUP_DATA;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002661 if (lq_sta->last_rate_n_flags & RATE_MCS_HT40_MSK)
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002662 info->control.rates[0].flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2663 if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
2664 info->control.rates[0].flags |= IEEE80211_TX_RC_GREEN_FIELD;
2665 } else {
Daniel C Halperin50273092009-08-28 09:44:45 -07002666 /* Check for invalid rates */
2667 if ((rate_idx < 0) || (rate_idx >= IWL_RATE_COUNT_LEGACY) ||
2668 ((sband->band == IEEE80211_BAND_5GHZ) &&
2669 (rate_idx < IWL_FIRST_OFDM_RATE)))
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002670 rate_idx = rate_lowest_index(sband, sta);
Daniel C Halperin50273092009-08-28 09:44:45 -07002671 /* On valid 5 GHz rate, adjust index */
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002672 else if (sband->band == IEEE80211_BAND_5GHZ)
2673 rate_idx -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin7ebaeff2009-08-21 13:34:20 -07002674 info->control.rates[0].flags = 0;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002675 }
Tomas Winkler417f1142008-11-12 13:14:06 -08002676 info->control.rates[0].idx = rate_idx;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002677
Zhu Yib481de92007-09-25 17:54:57 -07002678}
2679
Johannes Berg4b7679a2008-09-18 18:14:18 +02002680static void *rs_alloc_sta(void *priv_rate, struct ieee80211_sta *sta,
2681 gfp_t gfp)
Zhu Yib481de92007-09-25 17:54:57 -07002682{
Tomas Winklere227cea2008-07-18 13:53:05 +08002683 struct iwl_lq_sta *lq_sta;
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002684 struct iwl_station_priv *sta_priv = (struct iwl_station_priv *) sta->drv_priv;
Ester Kummerbf403db2008-05-05 10:22:40 +08002685 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002686
Ester Kummerbf403db2008-05-05 10:22:40 +08002687 priv = (struct iwl_priv *)priv_rate;
Tomas Winklere1623442009-01-27 14:27:56 -08002688 IWL_DEBUG_RATE(priv, "create station rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -07002689
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002690 lq_sta = &sta_priv->lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002691
Tomas Winklerc33104f2008-01-14 17:46:21 -08002692 return lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002693}
2694
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002695/*
2696 * Called after adding a new station to initialize rate scaling
2697 */
2698void iwl_rs_rate_init(struct iwl_priv *priv, struct ieee80211_sta *sta, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07002699{
2700 int i, j;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002701 struct ieee80211_hw *hw = priv->hw;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002702 struct ieee80211_conf *conf = &priv->hw->conf;
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002703 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002704 struct iwl_station_priv *sta_priv;
2705 struct iwl_lq_sta *lq_sta;
2706 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07002707
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002708 sta_priv = (struct iwl_station_priv *) sta->drv_priv;
2709 lq_sta = &sta_priv->lq_sta;
2710 sband = hw->wiphy->bands[conf->channel->band];
2711
2712
2713 lq_sta->lq.sta_id = sta_id;
Reinette Chatre5ad13f82009-10-30 14:36:14 -07002714
2715 for (j = 0; j < LQ_SIZE; j++)
2716 for (i = 0; i < IWL_RATE_COUNT; i++)
2717 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
2718
Tomas Winklerc33104f2008-01-14 17:46:21 -08002719 lq_sta->flush_timer = 0;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002720 lq_sta->supp_rates = sta->supp_rates[sband->band];
Zhu Yib481de92007-09-25 17:54:57 -07002721 for (j = 0; j < LQ_SIZE; j++)
2722 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002723 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002724
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002725 IWL_DEBUG_RATE(priv, "LQ: *** rate scale station global init for station %d ***\n",
2726 sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002727 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2728 * the lowest or the highest rate.. Could consider using RSSI from
2729 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2730 * after assoc.. */
2731
Tomas Winklerc33104f2008-01-14 17:46:21 -08002732 lq_sta->is_dup = 0;
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002733 lq_sta->max_rate_idx = -1;
Abbas, Mohamed7d049e52009-01-20 21:33:53 -08002734 lq_sta->missed_rate_counter = IWL_MISSED_RATE_MAX;
Daniel C Halperinb2617932009-08-13 13:30:59 -07002735 lq_sta->is_green = rs_use_green(sta, &priv->current_ht_config);
Guy Cohen39e88502008-04-23 17:14:57 -07002736 lq_sta->active_legacy_rate = priv->active_rate & ~(0x1000);
Johannes Berg8318d782008-01-24 19:38:38 +01002737 lq_sta->band = priv->band;
Ben Cahill77626352007-11-29 11:09:44 +08002738 /*
2739 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2740 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2741 */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002742 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2743 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002744 lq_sta->active_siso_rate &= ~((u16)0x2);
2745 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002746
Ben Cahill77626352007-11-29 11:09:44 +08002747 /* Same here */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002748 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2749 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002750 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2751 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2752
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002753 lq_sta->active_mimo3_rate = ht_cap->mcs.rx_mask[2] << 1;
2754 lq_sta->active_mimo3_rate |= ht_cap->mcs.rx_mask[2] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002755 lq_sta->active_mimo3_rate &= ~((u16)0x2);
2756 lq_sta->active_mimo3_rate <<= IWL_FIRST_OFDM_RATE;
2757
Tomas Winklere1623442009-01-27 14:27:56 -08002758 IWL_DEBUG_RATE(priv, "SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002759 lq_sta->active_siso_rate,
Guy Cohenfde0db32008-04-21 15:42:01 -07002760 lq_sta->active_mimo2_rate,
2761 lq_sta->active_mimo3_rate);
2762
Tomas Winklera96a27f2008-10-23 23:48:56 -07002763 /* These values will be overridden later */
Wey-Yi Guy3a23d692010-04-03 16:44:39 -07002764 lq_sta->lq.general_params.single_stream_ant_msk =
2765 first_antenna(priv->hw_params.valid_tx_ant);
2766 lq_sta->lq.general_params.dual_stream_ant_msk =
2767 priv->hw_params.valid_tx_ant &
2768 ~first_antenna(priv->hw_params.valid_tx_ant);
2769 if (!lq_sta->lq.general_params.dual_stream_ant_msk) {
2770 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2771 } else if (num_of_ant(priv->hw_params.valid_tx_ant) == 2) {
2772 lq_sta->lq.general_params.dual_stream_ant_msk =
2773 priv->hw_params.valid_tx_ant;
2774 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002775
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002776 /* as default allow aggregation for all tids */
2777 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002778 lq_sta->drv = priv;
Zhu Yib481de92007-09-25 17:54:57 -07002779
Daniel C Halperin50273092009-08-28 09:44:45 -07002780 /* Set last_txrate_idx to lowest rate */
2781 lq_sta->last_txrate_idx = rate_lowest_index(sband, sta);
2782 if (sband->band == IEEE80211_BAND_5GHZ)
2783 lq_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
Daniel C Halperine3949d62009-09-17 10:43:50 -07002784 lq_sta->is_agg = 0;
Mohamed Abbasd5e49032008-12-12 08:22:15 -08002785
Johannes Berg4b7679a2008-09-18 18:14:18 +02002786 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002787}
2788
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002789static void rs_fill_link_cmd(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08002790 struct iwl_lq_sta *lq_sta, u32 new_rate)
Zhu Yib481de92007-09-25 17:54:57 -07002791{
Tomas Winklere227cea2008-07-18 13:53:05 +08002792 struct iwl_scale_tbl_info tbl_type;
Zhu Yib481de92007-09-25 17:54:57 -07002793 int index = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002794 int rate_idx;
Zhu Yi1b696de2007-09-27 11:27:41 +08002795 int repeat_rate = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07002796 u8 ant_toggle_cnt = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002797 u8 use_ht_possible = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07002798 u8 valid_tx_ant = 0;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002799 struct iwl_link_quality_cmd *lq_cmd = &lq_sta->lq;
Zhu Yib481de92007-09-25 17:54:57 -07002800
Ben Cahill77626352007-11-29 11:09:44 +08002801 /* Override starting rate (index 0) if needed for debug purposes */
Guy Cohen39e88502008-04-23 17:14:57 -07002802 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Zhu Yi98d7e092007-09-27 11:27:42 +08002803
Guy Cohen39e88502008-04-23 17:14:57 -07002804 /* Interpret new_rate (rate_n_flags) */
2805 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
Zhu Yib481de92007-09-25 17:54:57 -07002806 &tbl_type, &rate_idx);
2807
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002808 if (priv && priv->bt_full_concurrent) {
2809 /* 1x1 only */
2810 tbl_type.ant_type =
2811 first_antenna(priv->hw_params.valid_tx_ant);
2812 }
2813
Ben Cahill77626352007-11-29 11:09:44 +08002814 /* How many times should we repeat the initial rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002815 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002816 ant_toggle_cnt = 1;
Zhu Yi1b696de2007-09-27 11:27:41 +08002817 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002818 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002819 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002820 }
Zhu Yib481de92007-09-25 17:54:57 -07002821
2822 lq_cmd->general_params.mimo_delimiter =
2823 is_mimo(tbl_type.lq_type) ? 1 : 0;
Ben Cahill77626352007-11-29 11:09:44 +08002824
2825 /* Fill 1st table entry (index 0) */
Guy Cohen39e88502008-04-23 17:14:57 -07002826 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002827
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002828 if (num_of_ant(tbl_type.ant_type) == 1) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002829 lq_cmd->general_params.single_stream_ant_msk =
2830 tbl_type.ant_type;
2831 } else if (num_of_ant(tbl_type.ant_type) == 2) {
2832 lq_cmd->general_params.dual_stream_ant_msk =
2833 tbl_type.ant_type;
2834 } /* otherwise we don't modify the existing value */
Zhu Yib481de92007-09-25 17:54:57 -07002835
2836 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002837 repeat_rate--;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07002838 if (priv) {
2839 if (priv->bt_full_concurrent)
2840 valid_tx_ant = ANT_A;
2841 else
2842 valid_tx_ant = priv->hw_params.valid_tx_ant;
2843 }
Guy Cohenaade00c2008-04-23 17:14:59 -07002844
Ben Cahill77626352007-11-29 11:09:44 +08002845 /* Fill rest of rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002846 while (index < LINK_QUAL_MAX_RETRY_NUM) {
Ben Cahill77626352007-11-29 11:09:44 +08002847 /* Repeat initial/next rate.
2848 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2849 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
Zhu Yi1b696de2007-09-27 11:27:41 +08002850 while (repeat_rate > 0 && (index < LINK_QUAL_MAX_RETRY_NUM)) {
Zhu Yib481de92007-09-25 17:54:57 -07002851 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002852 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2853 ant_toggle_cnt++;
2854 else if (priv &&
2855 rs_toggle_antenna(valid_tx_ant,
2856 &new_rate, &tbl_type))
2857 ant_toggle_cnt = 1;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002858 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002859
Ben Cahill77626352007-11-29 11:09:44 +08002860 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002861 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002862
2863 /* Fill next table entry */
Zhu Yib481de92007-09-25 17:54:57 -07002864 lq_cmd->rs_table[index].rate_n_flags =
Guy Cohen39e88502008-04-23 17:14:57 -07002865 cpu_to_le32(new_rate);
Zhu Yi1b696de2007-09-27 11:27:41 +08002866 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002867 index++;
2868 }
2869
Guy Cohen39e88502008-04-23 17:14:57 -07002870 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
Zhu Yib481de92007-09-25 17:54:57 -07002871 &rate_idx);
2872
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002873 if (priv && priv->bt_full_concurrent) {
2874 /* 1x1 only */
2875 tbl_type.ant_type =
2876 first_antenna(priv->hw_params.valid_tx_ant);
2877 }
2878
Ben Cahill77626352007-11-29 11:09:44 +08002879 /* Indicate to uCode which entries might be MIMO.
2880 * If initial rate was MIMO, this will finally end up
2881 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Zhu Yib481de92007-09-25 17:54:57 -07002882 if (is_mimo(tbl_type.lq_type))
2883 lq_cmd->general_params.mimo_delimiter = index;
2884
Ben Cahill77626352007-11-29 11:09:44 +08002885 /* Get next rate */
Guy Cohen39e88502008-04-23 17:14:57 -07002886 new_rate = rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2887 use_ht_possible);
Zhu Yib481de92007-09-25 17:54:57 -07002888
Ben Cahill77626352007-11-29 11:09:44 +08002889 /* How many times should we repeat the next rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002890 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002891 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2892 ant_toggle_cnt++;
2893 else if (priv &&
2894 rs_toggle_antenna(valid_tx_ant,
2895 &new_rate, &tbl_type))
2896 ant_toggle_cnt = 1;
2897
Zhu Yi1b696de2007-09-27 11:27:41 +08002898 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002899 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002900 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002901 }
Zhu Yib481de92007-09-25 17:54:57 -07002902
Ben Cahill77626352007-11-29 11:09:44 +08002903 /* Don't allow HT rates after next pass.
2904 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Zhu Yib481de92007-09-25 17:54:57 -07002905 use_ht_possible = 0;
2906
Ben Cahill77626352007-11-29 11:09:44 +08002907 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002908 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002909
2910 /* Fill next table entry */
Guy Cohen39e88502008-04-23 17:14:57 -07002911 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002912
2913 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002914 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002915 }
2916
Wey-Yi Guy4d80d722009-10-02 13:44:01 -07002917 lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07002918 lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
Wey-Yi Guy74697012010-07-28 09:18:54 -07002919
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07002920 lq_cmd->agg_params.agg_time_limit =
2921 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
Wey-Yi Guy74697012010-07-28 09:18:54 -07002922 /*
2923 * overwrite if needed, pass aggregation time limit
2924 * to uCode in uSec
2925 */
2926 if (priv && priv->cfg->agg_time_limit &&
2927 priv->cfg->agg_time_limit >= LINK_QUAL_AGG_TIME_LIMIT_MIN &&
2928 priv->cfg->agg_time_limit <= LINK_QUAL_AGG_TIME_LIMIT_MAX)
2929 lq_cmd->agg_params.agg_time_limit =
2930 cpu_to_le16(priv->cfg->agg_time_limit);
Zhu Yib481de92007-09-25 17:54:57 -07002931}
2932
Johannes Berg4b7679a2008-09-18 18:14:18 +02002933static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Zhu Yib481de92007-09-25 17:54:57 -07002934{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002935 return hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002936}
2937/* rate scale requires free function to be implemented */
2938static void rs_free(void *priv_rate)
2939{
2940 return;
2941}
2942
Johannes Berg4b7679a2008-09-18 18:14:18 +02002943static void rs_free_sta(void *priv_r, struct ieee80211_sta *sta,
2944 void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002945{
Rami Rosen45527c22008-10-07 09:50:01 +02002946 struct iwl_priv *priv __maybe_unused = priv_r;
Zhu Yib481de92007-09-25 17:54:57 -07002947
Tomas Winklere1623442009-01-27 14:27:56 -08002948 IWL_DEBUG_RATE(priv, "enter\n");
Tomas Winklere1623442009-01-27 14:27:56 -08002949 IWL_DEBUG_RATE(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002950}
2951
2952
Zhu Yi93dc6462007-09-27 11:27:37 +08002953#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi5ae212c2007-09-27 11:27:38 +08002954static int open_file_generic(struct inode *inode, struct file *file)
2955{
2956 file->private_data = inode->i_private;
2957 return 0;
2958}
Tomas Winklere227cea2008-07-18 13:53:05 +08002959static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
2960 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +08002961{
Ester Kummerbf403db2008-05-05 10:22:40 +08002962 struct iwl_priv *priv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002963 u8 valid_tx_ant;
2964 u8 ant_sel_tx;
Ester Kummerbf403db2008-05-05 10:22:40 +08002965
2966 priv = lq_sta->drv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002967 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen39e88502008-04-23 17:14:57 -07002968 if (lq_sta->dbg_fixed_rate) {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002969 ant_sel_tx =
2970 ((lq_sta->dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK)
2971 >> RATE_MCS_ANT_POS);
2972 if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
Guy Cohen39e88502008-04-23 17:14:57 -07002973 *rate_n_flags = lq_sta->dbg_fixed_rate;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002974 IWL_DEBUG_RATE(priv, "Fixed rate ON\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002975 } else {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002976 lq_sta->dbg_fixed_rate = 0;
2977 IWL_ERR(priv,
2978 "Invalid antenna selection 0x%X, Valid is 0x%X\n",
2979 ant_sel_tx, valid_tx_ant);
2980 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002981 }
Guy Cohen39e88502008-04-23 17:14:57 -07002982 } else {
Tomas Winklere1623442009-01-27 14:27:56 -08002983 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Zhu Yi98d7e092007-09-27 11:27:42 +08002984 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002985}
2986
2987static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
2988 const char __user *user_buf, size_t count, loff_t *ppos)
2989{
Tomas Winklere227cea2008-07-18 13:53:05 +08002990 struct iwl_lq_sta *lq_sta = file->private_data;
Ester Kummerbf403db2008-05-05 10:22:40 +08002991 struct iwl_priv *priv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002992 char buf[64];
2993 int buf_size;
2994 u32 parsed_rate;
2995
Ester Kummerbf403db2008-05-05 10:22:40 +08002996 priv = lq_sta->drv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002997 memset(buf, 0, sizeof(buf));
2998 buf_size = min(count, sizeof(buf) - 1);
2999 if (copy_from_user(buf, user_buf, buf_size))
3000 return -EFAULT;
3001
3002 if (sscanf(buf, "%x", &parsed_rate) == 1)
Guy Cohen39e88502008-04-23 17:14:57 -07003003 lq_sta->dbg_fixed_rate = parsed_rate;
Zhu Yi98d7e092007-09-27 11:27:42 +08003004 else
Guy Cohen39e88502008-04-23 17:14:57 -07003005 lq_sta->dbg_fixed_rate = 0;
Zhu Yi98d7e092007-09-27 11:27:42 +08003006
Guy Cohen39e88502008-04-23 17:14:57 -07003007 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
3008 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
3009 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
3010 lq_sta->active_mimo3_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Zhu Yi98d7e092007-09-27 11:27:42 +08003011
Tomas Winklere1623442009-01-27 14:27:56 -08003012 IWL_DEBUG_RATE(priv, "sta_id %d rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07003013 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08003014
Guy Cohen39e88502008-04-23 17:14:57 -07003015 if (lq_sta->dbg_fixed_rate) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07003016 rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003017 iwl_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC, false);
Zhu Yi98d7e092007-09-27 11:27:42 +08003018 }
3019
3020 return count;
3021}
Zhu Yi0209dc12007-09-27 11:27:43 +08003022
Zhu Yi5ae212c2007-09-27 11:27:38 +08003023static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
3024 char __user *user_buf, size_t count, loff_t *ppos)
3025{
Frank Seidela412c802009-03-01 20:25:38 +01003026 char *buff;
Zhu Yi5ae212c2007-09-27 11:27:38 +08003027 int desc = 0;
3028 int i = 0;
Wey-Yi Guy12b96812009-04-08 11:39:27 -07003029 int index = 0;
Frank Seidela412c802009-03-01 20:25:38 +01003030 ssize_t ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08003031
Tomas Winklere227cea2008-07-18 13:53:05 +08003032 struct iwl_lq_sta *lq_sta = file->private_data;
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07003033 struct iwl_priv *priv;
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07003034 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003035
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07003036 priv = lq_sta->drv;
Frank Seidela412c802009-03-01 20:25:38 +01003037 buff = kmalloc(1024, GFP_KERNEL);
3038 if (!buff)
3039 return -ENOMEM;
3040
Tomas Winklerc33104f2008-01-14 17:46:21 -08003041 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
Zhu Yi98d7e092007-09-27 11:27:42 +08003042 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003043 lq_sta->total_failed, lq_sta->total_success,
Guy Cohen39e88502008-04-23 17:14:57 -07003044 lq_sta->active_legacy_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08003045 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07003046 lq_sta->dbg_fixed_rate);
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07003047 desc += sprintf(buff+desc, "valid_tx_ant %s%s%s\n",
3048 (priv->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
3049 (priv->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
3050 (priv->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07003051 desc += sprintf(buff+desc, "lq type %s\n",
3052 (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
3053 if (is_Ht(tbl->lq_type)) {
3054 desc += sprintf(buff+desc, " %s",
3055 (is_siso(tbl->lq_type)) ? "SISO" :
3056 ((is_mimo2(tbl->lq_type)) ? "MIMO2" : "MIMO3"));
3057 desc += sprintf(buff+desc, " %s",
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07003058 (tbl->is_ht40) ? "40MHz" : "20MHz");
Daniel C Halperine3949d62009-09-17 10:43:50 -07003059 desc += sprintf(buff+desc, " %s %s %s\n", (tbl->is_SGI) ? "SGI" : "",
3060 (lq_sta->is_green) ? "GF enabled" : "",
3061 (lq_sta->is_agg) ? "AGG on" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07003062 }
Wey-Yi Guy12b96812009-04-08 11:39:27 -07003063 desc += sprintf(buff+desc, "last tx rate=0x%X\n",
3064 lq_sta->last_rate_n_flags);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003065 desc += sprintf(buff+desc, "general:"
3066 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003067 lq_sta->lq.general_params.flags,
3068 lq_sta->lq.general_params.mimo_delimiter,
3069 lq_sta->lq.general_params.single_stream_ant_msk,
3070 lq_sta->lq.general_params.dual_stream_ant_msk);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003071
3072 desc += sprintf(buff+desc, "agg:"
3073 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003074 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
3075 lq_sta->lq.agg_params.agg_dis_start_th,
3076 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003077
3078 desc += sprintf(buff+desc,
3079 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003080 lq_sta->lq.general_params.start_rate_index[0],
3081 lq_sta->lq.general_params.start_rate_index[1],
3082 lq_sta->lq.general_params.start_rate_index[2],
3083 lq_sta->lq.general_params.start_rate_index[3]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003084
Wey-Yi Guy12b96812009-04-08 11:39:27 -07003085 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
3086 index = iwl_hwrate_to_plcp_idx(
3087 le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags));
3088 if (is_legacy(tbl->lq_type)) {
3089 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps\n",
3090 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
3091 iwl_rate_mcs[index].mbps);
3092 } else {
3093 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps (%s)\n",
3094 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
3095 iwl_rate_mcs[index].mbps, iwl_rate_mcs[index].mcs);
3096 }
3097 }
Zhu Yi5ae212c2007-09-27 11:27:38 +08003098
Frank Seidela412c802009-03-01 20:25:38 +01003099 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3100 kfree(buff);
3101 return ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08003102}
3103
3104static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Zhu Yi98d7e092007-09-27 11:27:42 +08003105 .write = rs_sta_dbgfs_scale_table_write,
Zhu Yi5ae212c2007-09-27 11:27:38 +08003106 .read = rs_sta_dbgfs_scale_table_read,
3107 .open = open_file_generic,
3108};
Zhu Yi0209dc12007-09-27 11:27:43 +08003109static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
3110 char __user *user_buf, size_t count, loff_t *ppos)
3111{
Frank Seidela412c802009-03-01 20:25:38 +01003112 char *buff;
Zhu Yi0209dc12007-09-27 11:27:43 +08003113 int desc = 0;
3114 int i, j;
Frank Seidela412c802009-03-01 20:25:38 +01003115 ssize_t ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08003116
Tomas Winklere227cea2008-07-18 13:53:05 +08003117 struct iwl_lq_sta *lq_sta = file->private_data;
Frank Seidela412c802009-03-01 20:25:38 +01003118
3119 buff = kmalloc(1024, GFP_KERNEL);
3120 if (!buff)
3121 return -ENOMEM;
3122
Zhu Yi0209dc12007-09-27 11:27:43 +08003123 for (i = 0; i < LQ_SIZE; i++) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07003124 desc += sprintf(buff+desc,
3125 "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
Zhu Yi0209dc12007-09-27 11:27:43 +08003126 "rate=0x%X\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08003127 lq_sta->active_tbl == i ? "*" : "x",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003128 lq_sta->lq_info[i].lq_type,
3129 lq_sta->lq_info[i].is_SGI,
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07003130 lq_sta->lq_info[i].is_ht40,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003131 lq_sta->lq_info[i].is_dup,
Wey-Yi Guy2681b202009-05-21 13:44:22 -07003132 lq_sta->is_green,
Guy Cohen39e88502008-04-23 17:14:57 -07003133 lq_sta->lq_info[i].current_rate);
Zhu Yi0209dc12007-09-27 11:27:43 +08003134 for (j = 0; j < IWL_RATE_COUNT; j++) {
3135 desc += sprintf(buff+desc,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003136 "counter=%d success=%d %%=%d\n",
3137 lq_sta->lq_info[i].win[j].counter,
3138 lq_sta->lq_info[i].win[j].success_counter,
3139 lq_sta->lq_info[i].win[j].success_ratio);
Zhu Yi0209dc12007-09-27 11:27:43 +08003140 }
3141 }
Frank Seidela412c802009-03-01 20:25:38 +01003142 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3143 kfree(buff);
3144 return ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08003145}
3146
3147static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
3148 .read = rs_sta_dbgfs_stats_table_read,
3149 .open = open_file_generic,
3150};
Zhu Yi5ae212c2007-09-27 11:27:38 +08003151
Wey-Yi Guy38167452009-05-08 13:44:43 -07003152static ssize_t rs_sta_dbgfs_rate_scale_data_read(struct file *file,
3153 char __user *user_buf, size_t count, loff_t *ppos)
3154{
3155 char buff[120];
3156 int desc = 0;
3157 ssize_t ret;
3158
3159 struct iwl_lq_sta *lq_sta = file->private_data;
3160 struct iwl_priv *priv;
3161 struct iwl_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
3162
3163 priv = lq_sta->drv;
3164
3165 if (is_Ht(tbl->lq_type))
3166 desc += sprintf(buff+desc,
3167 "Bit Rate= %d Mb/s\n",
3168 tbl->expected_tpt[lq_sta->last_txrate_idx]);
3169 else
3170 desc += sprintf(buff+desc,
3171 "Bit Rate= %d Mb/s\n",
3172 iwl_rates[lq_sta->last_txrate_idx].ieee >> 1);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003173
3174 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3175 return ret;
3176}
3177
3178static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
3179 .read = rs_sta_dbgfs_rate_scale_data_read,
3180 .open = open_file_generic,
3181};
3182
Zhu Yi93dc6462007-09-27 11:27:37 +08003183static void rs_add_debugfs(void *priv, void *priv_sta,
3184 struct dentry *dir)
3185{
Tomas Winklere227cea2008-07-18 13:53:05 +08003186 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08003187 lq_sta->rs_sta_dbgfs_scale_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003188 debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003189 lq_sta, &rs_sta_dbgfs_scale_table_ops);
3190 lq_sta->rs_sta_dbgfs_stats_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003191 debugfs_create_file("rate_stats_table", S_IRUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003192 lq_sta, &rs_sta_dbgfs_stats_table_ops);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003193 lq_sta->rs_sta_dbgfs_rate_scale_data_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003194 debugfs_create_file("rate_scale_data", S_IRUSR, dir,
Wey-Yi Guy38167452009-05-08 13:44:43 -07003195 lq_sta, &rs_sta_dbgfs_rate_scale_data_ops);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003196 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003197 debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003198 &lq_sta->tx_agg_tid_en);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003199
Zhu Yi93dc6462007-09-27 11:27:37 +08003200}
3201
3202static void rs_remove_debugfs(void *priv, void *priv_sta)
3203{
Tomas Winklere227cea2008-07-18 13:53:05 +08003204 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08003205 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
3206 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003207 debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003208 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
Zhu Yi93dc6462007-09-27 11:27:37 +08003209}
3210#endif
3211
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003212/*
3213 * Initialization of rate scaling information is done by driver after
3214 * the station is added. Since mac80211 calls this function before a
3215 * station is added we ignore it.
3216 */
3217static void rs_rate_init_stub(void *priv_r, struct ieee80211_supported_band *sband,
3218 struct ieee80211_sta *sta, void *priv_sta)
3219{
3220}
Zhu Yib481de92007-09-25 17:54:57 -07003221static struct rate_control_ops rs_ops = {
3222 .module = NULL,
3223 .name = RS_NAME,
3224 .tx_status = rs_tx_status,
3225 .get_rate = rs_get_rate,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003226 .rate_init = rs_rate_init_stub,
Zhu Yib481de92007-09-25 17:54:57 -07003227 .alloc = rs_alloc,
3228 .free = rs_free,
3229 .alloc_sta = rs_alloc_sta,
3230 .free_sta = rs_free_sta,
Zhu Yi93dc6462007-09-27 11:27:37 +08003231#ifdef CONFIG_MAC80211_DEBUGFS
3232 .add_sta_debugfs = rs_add_debugfs,
3233 .remove_sta_debugfs = rs_remove_debugfs,
3234#endif
Zhu Yib481de92007-09-25 17:54:57 -07003235};
3236
Tomas Winklere227cea2008-07-18 13:53:05 +08003237int iwlagn_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -07003238{
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003239 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003240}
3241
Tomas Winklere227cea2008-07-18 13:53:05 +08003242void iwlagn_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -07003243{
3244 ieee80211_rate_control_unregister(&rs_ops);
3245}
3246