blob: 57629fba3a7ddbb17fd013ac7623b283a6d0d57a [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 */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200605static bool rs_use_green(struct ieee80211_sta *sta)
Zhu Yib481de92007-09-25 17:54:57 -0700606{
Johannes Berg7e6a5882010-08-23 10:46:46 +0200607 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
608 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
609
Daniel C Halperinb2617932009-08-13 13:30:59 -0700610 return (sta->ht_cap.cap & IEEE80211_HT_CAP_GRN_FLD) &&
Johannes Berg7e6a5882010-08-23 10:46:46 +0200611 !(ctx->ht.non_gf_sta_present);
Guy Cohenf935a6d2008-04-23 17:15:02 -0700612}
Zhu Yib481de92007-09-25 17:54:57 -0700613
614/**
615 * rs_get_supported_rates - get the available rates
616 *
617 * if management frame or broadcast frame only return
618 * basic available rates.
619 *
620 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800621static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
622 struct ieee80211_hdr *hdr,
623 enum iwl_table_type rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700624{
Guy Coheneecd6e52008-04-23 17:14:58 -0700625 if (is_legacy(rate_type)) {
626 return lq_sta->active_legacy_rate;
627 } else {
628 if (is_siso(rate_type))
629 return lq_sta->active_siso_rate;
630 else if (is_mimo2(rate_type))
631 return lq_sta->active_mimo2_rate;
632 else
633 return lq_sta->active_mimo3_rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800634 }
Zhu Yib481de92007-09-25 17:54:57 -0700635}
636
Ester Kummerbf403db2008-05-05 10:22:40 +0800637static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
638 int rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700639{
640 u8 high = IWL_RATE_INVALID;
641 u8 low = IWL_RATE_INVALID;
642
Ian Schram01ebd062007-10-25 17:15:22 +0800643 /* 802.11A or ht walks to the next literal adjacent rate in
Zhu Yib481de92007-09-25 17:54:57 -0700644 * the rate table */
645 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
646 int i;
647 u32 mask;
648
649 /* Find the previous rate that is in the rate mask */
650 i = index - 1;
651 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
652 if (rate_mask & mask) {
653 low = i;
654 break;
655 }
656 }
657
658 /* Find the next rate that is in the rate mask */
659 i = index + 1;
660 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
661 if (rate_mask & mask) {
662 high = i;
663 break;
664 }
665 }
666
667 return (high << 8) | low;
668 }
669
670 low = index;
671 while (low != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800672 low = iwl_rates[low].prev_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700673 if (low == IWL_RATE_INVALID)
674 break;
675 if (rate_mask & (1 << low))
676 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800677 IWL_DEBUG_RATE(priv, "Skipping masked lower rate: %d\n", low);
Zhu Yib481de92007-09-25 17:54:57 -0700678 }
679
680 high = index;
681 while (high != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800682 high = iwl_rates[high].next_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700683 if (high == IWL_RATE_INVALID)
684 break;
685 if (rate_mask & (1 << high))
686 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800687 IWL_DEBUG_RATE(priv, "Skipping masked higher rate: %d\n", high);
Zhu Yib481de92007-09-25 17:54:57 -0700688 }
689
690 return (high << 8) | low;
691}
692
Tomas Winklere227cea2008-07-18 13:53:05 +0800693static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta,
694 struct iwl_scale_tbl_info *tbl,
695 u8 scale_index, u8 ht_possible)
Zhu Yib481de92007-09-25 17:54:57 -0700696{
Zhu Yib481de92007-09-25 17:54:57 -0700697 s32 low;
698 u16 rate_mask;
699 u16 high_low;
700 u8 switch_to_legacy = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800701 u8 is_green = lq_sta->is_green;
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700702 struct iwl_priv *priv = lq_sta->drv;
Zhu Yib481de92007-09-25 17:54:57 -0700703
704 /* check if we need to switch from HT to legacy rates.
705 * assumption is that mandatory rates (1Mbps or 6Mbps)
706 * are always supported (spec demand) */
707 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_index)) {
708 switch_to_legacy = 1;
709 scale_index = rs_ht_to_legacy[scale_index];
Johannes Berg8318d782008-01-24 19:38:38 +0100710 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700711 tbl->lq_type = LQ_A;
712 else
713 tbl->lq_type = LQ_G;
714
Guy Cohen69fdb302008-04-23 17:15:01 -0700715 if (num_of_ant(tbl->ant_type) > 1)
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700716 tbl->ant_type =
717 first_antenna(priv->hw_params.valid_tx_ant);
Zhu Yib481de92007-09-25 17:54:57 -0700718
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700719 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700720 tbl->is_SGI = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700721 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700722 }
723
Guy Coheneecd6e52008-04-23 17:14:58 -0700724 rate_mask = rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700725
Ben Cahill77626352007-11-29 11:09:44 +0800726 /* Mask with station rate restriction */
Zhu Yib481de92007-09-25 17:54:57 -0700727 if (is_legacy(tbl->lq_type)) {
Ben Cahill77626352007-11-29 11:09:44 +0800728 /* supp_rates has no CCK bits in A mode */
Johannes Berg8318d782008-01-24 19:38:38 +0100729 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700730 rate_mask = (u16)(rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -0800731 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -0700732 else
Tomas Winklerc33104f2008-01-14 17:46:21 -0800733 rate_mask = (u16)(rate_mask & lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -0700734 }
735
Ben Cahill77626352007-11-29 11:09:44 +0800736 /* If we switched from HT to legacy, check current rate */
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800737 if (switch_to_legacy && (rate_mask & (1 << scale_index))) {
Guy Cohen39e88502008-04-23 17:14:57 -0700738 low = scale_index;
739 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700740 }
741
Ester Kummerbf403db2008-05-05 10:22:40 +0800742 high_low = rs_get_adjacent_rate(lq_sta->drv, scale_index, rate_mask,
743 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700744 low = high_low & 0xff;
745
Guy Cohen39e88502008-04-23 17:14:57 -0700746 if (low == IWL_RATE_INVALID)
747 low = scale_index;
748
749out:
Tomas Winkler978785a2008-12-19 10:37:31 +0800750 return rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
Zhu Yib481de92007-09-25 17:54:57 -0700751}
752
Ben Cahill77626352007-11-29 11:09:44 +0800753/*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700754 * Simple function to compare two rate scale table types
755 */
756static bool table_type_matches(struct iwl_scale_tbl_info *a,
757 struct iwl_scale_tbl_info *b)
758{
759 return (a->lq_type == b->lq_type) && (a->ant_type == b->ant_type) &&
760 (a->is_SGI == b->is_SGI);
761}
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700762
Johannes Berg7e6a5882010-08-23 10:46:46 +0200763static void rs_bt_update_lq(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
764 struct iwl_lq_sta *lq_sta)
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700765{
766 struct iwl_scale_tbl_info *tbl;
767 bool full_concurrent;
768 unsigned long flags;
769
770 spin_lock_irqsave(&priv->lock, flags);
771 if (priv->bt_ci_compliance && priv->bt_ant_couple_ok)
772 full_concurrent = true;
773 else
774 full_concurrent = false;
775 spin_unlock_irqrestore(&priv->lock, flags);
776
777 if (priv->bt_full_concurrent != full_concurrent) {
778 priv->bt_full_concurrent = full_concurrent;
779
780 /* Update uCode's rate table. */
781 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
782 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Johannes Berg7e6a5882010-08-23 10:46:46 +0200783 iwl_send_lq_cmd(priv, ctx, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700784
785 queue_work(priv->workqueue, &priv->bt_full_concurrency);
786 }
787}
788
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700789/*
Ben Cahill77626352007-11-29 11:09:44 +0800790 * mac80211 sends us Tx status
791 */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200792static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband,
793 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200794 struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700795{
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700796 int legacy_success;
797 int retries;
798 int rs_index, mac_index, i;
Tomas Winkler417f1142008-11-12 13:14:06 -0800799 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700800 struct iwl_link_quality_cmd *table;
Zhu Yib481de92007-09-25 17:54:57 -0700801 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200802 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
Johannes Berge039fa42008-05-15 12:55:29 +0200803 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Daniel C Halperin50273092009-08-28 09:44:45 -0700804 enum mac80211_rate_control_flags mac_flags;
Guy Cohen39e88502008-04-23 17:14:57 -0700805 u32 tx_rate;
Tomas Winklere227cea2008-07-18 13:53:05 +0800806 struct iwl_scale_tbl_info tbl_type;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700807 struct iwl_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
Johannes Berg7e6a5882010-08-23 10:46:46 +0200808 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
809 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Zhu Yib481de92007-09-25 17:54:57 -0700810
Tomas Winklere1623442009-01-27 14:27:56 -0800811 IWL_DEBUG_RATE_LIMIT(priv, "get frame ack response, update rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -0700812
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800813 /* Treat uninitialized rate scaling data same as non-existing. */
814 if (!lq_sta) {
815 IWL_DEBUG_RATE(priv, "Station rate scaling not created yet.\n");
816 return;
817 } else if (!lq_sta->drv) {
818 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
819 return;
820 }
821
Tomas Winkler417f1142008-11-12 13:14:06 -0800822 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200823 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -0700824 return;
825
Daniel C Halperine3949d62009-09-17 10:43:50 -0700826 /* This packet was aggregated but doesn't carry status info */
Johannes Berge039fa42008-05-15 12:55:29 +0200827 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
828 !(info->flags & IEEE80211_TX_STAT_AMPDU))
Ron Rindjunsky99556432008-01-28 14:07:25 +0200829 return;
830
Ben Cahill77626352007-11-29 11:09:44 +0800831 /*
832 * Ignore this Tx frame response if its initial rate doesn't match
833 * that of latest Link Quality command. There may be stragglers
834 * from a previous Link Quality command, but we're no longer interested
835 * in those; they're either from the "active" mode while we're trying
836 * to check "search" mode, or a prior "search" mode after we've moved
837 * to a new "search" mode (which might become the new "active" mode).
838 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700839 table = &lq_sta->lq;
Guy Cohen39e88502008-04-23 17:14:57 -0700840 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
841 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800842 if (priv->band == IEEE80211_BAND_5GHZ)
843 rs_index -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin50273092009-08-28 09:44:45 -0700844 mac_flags = info->status.rates[0].flags;
845 mac_index = info->status.rates[0].idx;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700846 /* For HT packets, map MCS to PLCP */
847 if (mac_flags & IEEE80211_TX_RC_MCS) {
848 mac_index &= RATE_MCS_CODE_MSK; /* Remove # of streams */
849 if (mac_index >= (IWL_RATE_9M_INDEX - IWL_FIRST_OFDM_RATE))
850 mac_index++;
Daniel C Halperin392a0ba2009-09-11 10:38:08 -0700851 /*
852 * mac80211 HT index is always zero-indexed; we need to move
853 * HT OFDM rates after CCK rates in 2.4 GHz band
854 */
855 if (priv->band == IEEE80211_BAND_2GHZ)
856 mac_index += IWL_FIRST_OFDM_RATE;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700857 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700858 /* Here we actually compare this rate to the latest LQ command */
Daniel C Halperin50273092009-08-28 09:44:45 -0700859 if ((mac_index < 0) ||
860 (tbl_type.is_SGI != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI)) ||
861 (tbl_type.is_ht40 != !!(mac_flags & IEEE80211_TX_RC_40_MHZ_WIDTH)) ||
862 (tbl_type.is_dup != !!(mac_flags & IEEE80211_TX_RC_DUP_DATA)) ||
Johannes Berge6a98542008-10-21 12:40:02 +0200863 (tbl_type.ant_type != info->antenna_sel_tx) ||
Daniel C Halperin50273092009-08-28 09:44:45 -0700864 (!!(tx_rate & RATE_MCS_HT_MSK) != !!(mac_flags & IEEE80211_TX_RC_MCS)) ||
865 (!!(tx_rate & RATE_MCS_GF_MSK) != !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD)) ||
Daniel C Halperin31513be2009-08-28 09:44:47 -0700866 (rs_index != mac_index)) {
867 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 -0700868 /*
869 * Since rates mis-match, the last LQ command may have failed.
870 * After IWL_MISSED_RATE_MAX mis-matches, resync the uCode with
871 * ... driver.
Mohamed Abbasd5e49032008-12-12 08:22:15 -0800872 */
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800873 lq_sta->missed_rate_counter++;
874 if (lq_sta->missed_rate_counter > IWL_MISSED_RATE_MAX) {
875 lq_sta->missed_rate_counter = 0;
Johannes Berg7e6a5882010-08-23 10:46:46 +0200876 iwl_send_lq_cmd(priv, ctx, &lq_sta->lq, CMD_ASYNC, false);
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800877 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700878 /* Regardless, ignore this status info for outdated rate */
879 return;
880 } else
881 /* Rate did match, so reset the missed_rate_counter */
882 lq_sta->missed_rate_counter = 0;
883
884 /* Figure out if rate scale algorithm is in active or search table */
885 if (table_type_matches(&tbl_type,
886 &(lq_sta->lq_info[lq_sta->active_tbl]))) {
887 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
888 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
889 } else if (table_type_matches(&tbl_type,
890 &lq_sta->lq_info[1 - lq_sta->active_tbl])) {
891 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
892 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
893 } else {
894 IWL_DEBUG_RATE(priv, "Neither active nor search matches tx rate\n");
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700895 tmp_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
896 IWL_DEBUG_RATE(priv, "active- lq:%x, ant:%x, SGI:%d\n",
897 tmp_tbl->lq_type, tmp_tbl->ant_type, tmp_tbl->is_SGI);
898 tmp_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
899 IWL_DEBUG_RATE(priv, "search- lq:%x, ant:%x, SGI:%d\n",
900 tmp_tbl->lq_type, tmp_tbl->ant_type, tmp_tbl->is_SGI);
901 IWL_DEBUG_RATE(priv, "actual- lq:%x, ant:%x, SGI:%d\n",
902 tbl_type.lq_type, tbl_type.ant_type, tbl_type.is_SGI);
903 /*
904 * no matching table found, let's by-pass the data collection
905 * and continue to perform rate scale to find the rate table
906 */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -0700907 rs_stay_in_table(lq_sta, true);
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700908 goto done;
Zhu Yib481de92007-09-25 17:54:57 -0700909 }
Zhu Yib481de92007-09-25 17:54:57 -0700910
Ben Cahill77626352007-11-29 11:09:44 +0800911 /*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700912 * Updating the frame history depends on whether packets were
913 * aggregated.
914 *
915 * For aggregation, all packets were transmitted at the same rate, the
916 * first index into rate scale table.
Ben Cahill77626352007-11-29 11:09:44 +0800917 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700918 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
919 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
920 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type,
921 &rs_index);
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700922 rs_collect_tx_data(curr_tbl, rs_index,
Daniel Halperine3a3cd82010-04-18 09:27:58 -0700923 info->status.ampdu_len,
924 info->status.ampdu_ack_len);
Zhu Yib481de92007-09-25 17:54:57 -0700925
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700926 /* Update success/fail counts if not searching for new mode */
927 if (lq_sta->stay_in_tbl) {
Daniel Halperine3a3cd82010-04-18 09:27:58 -0700928 lq_sta->total_success += info->status.ampdu_ack_len;
929 lq_sta->total_failed += (info->status.ampdu_len -
930 info->status.ampdu_ack_len);
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700931 }
932 } else {
933 /*
934 * For legacy, update frame history with for each Tx retry.
935 */
936 retries = info->status.rates[0].count - 1;
937 /* HW doesn't send more than 15 retries */
938 retries = min(retries, 15);
939
940 /* The last transmission may have been successful */
941 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
942 /* Collect data for each rate used during failed TX attempts */
943 for (i = 0; i <= retries; ++i) {
944 tx_rate = le32_to_cpu(table->rs_table[i].rate_n_flags);
945 rs_get_tbl_info_from_mcs(tx_rate, priv->band,
946 &tbl_type, &rs_index);
947 /*
948 * Only collect stats if retried rate is in the same RS
949 * table as active/search.
950 */
951 if (table_type_matches(&tbl_type, curr_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700952 tmp_tbl = curr_tbl;
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700953 else if (table_type_matches(&tbl_type, other_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700954 tmp_tbl = other_tbl;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200955 else
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700956 continue;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700957 rs_collect_tx_data(tmp_tbl, rs_index, 1,
958 i < retries ? 0 : legacy_success);
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700959 }
960
961 /* Update success/fail counts if not searching for new mode */
962 if (lq_sta->stay_in_tbl) {
963 lq_sta->total_success += legacy_success;
964 lq_sta->total_failed += retries + (1 - legacy_success);
Ron Rindjunsky99556432008-01-28 14:07:25 +0200965 }
Zhu Yib481de92007-09-25 17:54:57 -0700966 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700967 /* The last TX rate is cached in lq_sta; it's set in if/else above */
968 lq_sta->last_rate_n_flags = tx_rate;
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700969done:
Ben Cahill77626352007-11-29 11:09:44 +0800970 /* See if there's a better rate or modulation mode to try. */
Abbas, Mohamedc338ba32009-01-21 10:58:02 -0800971 if (sta && sta->supp_rates[sband->band])
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200972 rs_rate_scale_perform(priv, skb, sta, lq_sta);
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700973
974 /* Is there a need to switch between full concurrency and 3-wire? */
975 if (priv->bt_ant_couple_ok)
Johannes Berg7e6a5882010-08-23 10:46:46 +0200976 rs_bt_update_lq(priv, ctx, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -0700977}
978
Ben Cahill77626352007-11-29 11:09:44 +0800979/*
980 * Begin a period of staying with a selected modulation mode.
981 * Set "stay_in_tbl" flag to prevent any mode switches.
982 * Set frame tx success limits according to legacy vs. high-throughput,
983 * and reset overall (spanning all rates) tx success history statistics.
984 * These control how long we stay using same modulation mode before
985 * searching for a new mode.
986 */
Ester Kummerbf403db2008-05-05 10:22:40 +0800987static void rs_set_stay_in_table(struct iwl_priv *priv, u8 is_legacy,
Tomas Winklere227cea2008-07-18 13:53:05 +0800988 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700989{
Tomas Winklere1623442009-01-27 14:27:56 -0800990 IWL_DEBUG_RATE(priv, "we are staying in the same table\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -0800991 lq_sta->stay_in_tbl = 1; /* only place this gets set */
Zhu Yib481de92007-09-25 17:54:57 -0700992 if (is_legacy) {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800993 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
994 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
995 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700996 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800997 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
998 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
999 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -07001000 }
Tomas Winklerc33104f2008-01-14 17:46:21 -08001001 lq_sta->table_count = 0;
1002 lq_sta->total_failed = 0;
1003 lq_sta->total_success = 0;
Mohamed Abbas447fee72009-04-20 14:37:02 -07001004 lq_sta->flush_timer = jiffies;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001005 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001006}
1007
Ben Cahill77626352007-11-29 11:09:44 +08001008/*
1009 * Find correct throughput table for given mode of modulation
1010 */
Tomas Winklere227cea2008-07-18 13:53:05 +08001011static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
1012 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -07001013{
Daniel C Halperine3949d62009-09-17 10:43:50 -07001014 /* Used to choose among HT tables */
1015 s32 (*ht_tbl_pointer)[IWL_RATE_COUNT];
1016
1017 /* Check for invalid LQ type */
1018 if (WARN_ON_ONCE(!is_legacy(tbl->lq_type) && !is_Ht(tbl->lq_type))) {
1019 tbl->expected_tpt = expected_tpt_legacy;
1020 return;
1021 }
1022
1023 /* Legacy rates have only one table */
Zhu Yib481de92007-09-25 17:54:57 -07001024 if (is_legacy(tbl->lq_type)) {
Daniel C Halperine3949d62009-09-17 10:43:50 -07001025 tbl->expected_tpt = expected_tpt_legacy;
1026 return;
1027 }
1028
1029 /* Choose among many HT tables depending on number of streams
1030 * (SISO/MIMO2/MIMO3), channel width (20/40), SGI, and aggregation
1031 * status */
1032 if (is_siso(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1033 ht_tbl_pointer = expected_tpt_siso20MHz;
1034 else if (is_siso(tbl->lq_type))
1035 ht_tbl_pointer = expected_tpt_siso40MHz;
1036 else if (is_mimo2(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1037 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
1038 else if (is_mimo2(tbl->lq_type))
1039 ht_tbl_pointer = expected_tpt_mimo2_40MHz;
1040 else if (is_mimo3(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1041 ht_tbl_pointer = expected_tpt_mimo3_20MHz;
1042 else /* if (is_mimo3(tbl->lq_type)) <-- must be true */
1043 ht_tbl_pointer = expected_tpt_mimo3_40MHz;
1044
1045 if (!tbl->is_SGI && !lq_sta->is_agg) /* Normal */
1046 tbl->expected_tpt = ht_tbl_pointer[0];
1047 else if (tbl->is_SGI && !lq_sta->is_agg) /* SGI */
1048 tbl->expected_tpt = ht_tbl_pointer[1];
1049 else if (!tbl->is_SGI && lq_sta->is_agg) /* AGG */
1050 tbl->expected_tpt = ht_tbl_pointer[2];
1051 else /* AGG+SGI */
1052 tbl->expected_tpt = ht_tbl_pointer[3];
Zhu Yib481de92007-09-25 17:54:57 -07001053}
1054
Ben Cahill77626352007-11-29 11:09:44 +08001055/*
1056 * Find starting rate for new "search" high-throughput mode of modulation.
1057 * Goal is to find lowest expected rate (under perfect conditions) that is
1058 * above the current measured throughput of "active" mode, to give new mode
1059 * a fair chance to prove itself without too many challenges.
1060 *
1061 * This gets called when transitioning to more aggressive modulation
1062 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1063 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1064 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1065 * bit rate will typically need to increase, but not if performance was bad.
1066 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001067static s32 rs_get_best_rate(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001068 struct iwl_lq_sta *lq_sta,
1069 struct iwl_scale_tbl_info *tbl, /* "search" */
Guy Cohenf935a6d2008-04-23 17:15:02 -07001070 u16 rate_mask, s8 index)
Zhu Yib481de92007-09-25 17:54:57 -07001071{
Ben Cahill77626352007-11-29 11:09:44 +08001072 /* "active" values */
Tomas Winklere227cea2008-07-18 13:53:05 +08001073 struct iwl_scale_tbl_info *active_tbl =
Tomas Winklerc33104f2008-01-14 17:46:21 -08001074 &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001075 s32 active_sr = active_tbl->win[index].success_ratio;
Zhu Yib481de92007-09-25 17:54:57 -07001076 s32 active_tpt = active_tbl->expected_tpt[index];
Ben Cahill77626352007-11-29 11:09:44 +08001077
1078 /* expected "search" throughput */
1079 s32 *tpt_tbl = tbl->expected_tpt;
1080
1081 s32 new_rate, high, low, start_hi;
Zhu Yib481de92007-09-25 17:54:57 -07001082 u16 high_low;
Guy Cohenf935a6d2008-04-23 17:15:02 -07001083 s8 rate = index;
Zhu Yib481de92007-09-25 17:54:57 -07001084
1085 new_rate = high = low = start_hi = IWL_RATE_INVALID;
1086
1087 for (; ;) {
Ester Kummerbf403db2008-05-05 10:22:40 +08001088 high_low = rs_get_adjacent_rate(priv, rate, rate_mask,
1089 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001090
1091 low = high_low & 0xff;
1092 high = (high_low >> 8) & 0xff;
1093
Ben Cahill77626352007-11-29 11:09:44 +08001094 /*
1095 * Lower the "search" bit rate, to give new "search" mode
1096 * approximately the same throughput as "active" if:
1097 *
1098 * 1) "Active" mode has been working modestly well (but not
1099 * great), and expected "search" throughput (under perfect
1100 * conditions) at candidate rate is above the actual
1101 * measured "active" throughput (but less than expected
1102 * "active" throughput under perfect conditions).
1103 * OR
1104 * 2) "Active" mode has been working perfectly or very well
1105 * and expected "search" throughput (under perfect
1106 * conditions) at candidate rate is above expected
1107 * "active" throughput (under perfect conditions).
1108 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001109 if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
Zhu Yib481de92007-09-25 17:54:57 -07001110 ((active_sr > IWL_RATE_DECREASE_TH) &&
1111 (active_sr <= IWL_RATE_HIGH_TH) &&
1112 (tpt_tbl[rate] <= active_tpt))) ||
1113 ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
1114 (tpt_tbl[rate] > active_tpt))) {
1115
Ben Cahill77626352007-11-29 11:09:44 +08001116 /* (2nd or later pass)
1117 * If we've already tried to raise the rate, and are
1118 * now trying to lower it, use the higher rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001119 if (start_hi != IWL_RATE_INVALID) {
1120 new_rate = start_hi;
1121 break;
1122 }
Ben Cahill77626352007-11-29 11:09:44 +08001123
Zhu Yib481de92007-09-25 17:54:57 -07001124 new_rate = rate;
Ben Cahill77626352007-11-29 11:09:44 +08001125
1126 /* Loop again with lower rate */
Zhu Yib481de92007-09-25 17:54:57 -07001127 if (low != IWL_RATE_INVALID)
1128 rate = low;
Ben Cahill77626352007-11-29 11:09:44 +08001129
1130 /* Lower rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001131 else
1132 break;
Ben Cahill77626352007-11-29 11:09:44 +08001133
1134 /* Else try to raise the "search" rate to match "active" */
Zhu Yib481de92007-09-25 17:54:57 -07001135 } else {
Ben Cahill77626352007-11-29 11:09:44 +08001136 /* (2nd or later pass)
1137 * If we've already tried to lower the rate, and are
1138 * now trying to raise it, use the lower rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001139 if (new_rate != IWL_RATE_INVALID)
1140 break;
Ben Cahill77626352007-11-29 11:09:44 +08001141
1142 /* Loop again with higher rate */
Zhu Yib481de92007-09-25 17:54:57 -07001143 else if (high != IWL_RATE_INVALID) {
1144 start_hi = high;
1145 rate = high;
Ben Cahill77626352007-11-29 11:09:44 +08001146
1147 /* Higher rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001148 } else {
Guy Cohen90d77952008-09-09 10:54:53 +08001149 new_rate = rate;
Zhu Yib481de92007-09-25 17:54:57 -07001150 break;
1151 }
1152 }
1153 }
1154
1155 return new_rate;
1156}
Zhu Yib481de92007-09-25 17:54:57 -07001157
Ben Cahill77626352007-11-29 11:09:44 +08001158/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001159 * Set up search table for MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001160 */
Guy Cohenfde0db32008-04-21 15:42:01 -07001161static int rs_switch_to_mimo2(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001162 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001163 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001164 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001165 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001166{
Zhu Yib481de92007-09-25 17:54:57 -07001167 u16 rate_mask;
1168 s32 rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001169 s8 is_green = lq_sta->is_green;
Johannes Berg7e6a5882010-08-23 10:46:46 +02001170 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1171 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Zhu Yib481de92007-09-25 17:54:57 -07001172
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001173 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001174 return -1;
1175
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001176 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
Tomas Winkler00c5ae22008-09-03 11:26:42 +08001177 == WLAN_HT_CAP_SM_PS_STATIC)
Zhu Yib481de92007-09-25 17:54:57 -07001178 return -1;
1179
Ben Cahill77626352007-11-29 11:09:44 +08001180 /* Need both Tx chains/antennas to support MIMO */
Guy Cohenaade00c2008-04-23 17:14:59 -07001181 if (priv->hw_params.tx_chains_num < 2)
Zhu Yib481de92007-09-25 17:54:57 -07001182 return -1;
1183
Tomas Winklere1623442009-01-27 14:27:56 -08001184 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO2\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001185
1186 tbl->lq_type = LQ_MIMO2;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001187 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001188 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001189 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001190 rate_mask = lq_sta->active_mimo2_rate;
1191
Johannes Berg7e6a5882010-08-23 10:46:46 +02001192 if (iwl_is_ht40_tx_allowed(priv, ctx, &sta->ht_cap))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001193 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001194 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001195 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001196
Guy Coheneecd6e52008-04-23 17:14:58 -07001197 rs_set_expected_tpt_table(lq_sta, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07001198
Guy Cohenf935a6d2008-04-23 17:15:02 -07001199 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001200
Tomas Winklere1623442009-01-27 14:27:56 -08001201 IWL_DEBUG_RATE(priv, "LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001202 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
1203 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
1204 rate, rate_mask);
1205 return -1;
1206 }
1207 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Guy Cohen39e88502008-04-23 17:14:57 -07001208
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001209 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
1210 tbl->current_rate, is_green);
1211 return 0;
1212}
1213
1214/*
1215 * Set up search table for MIMO3
1216 */
1217static int rs_switch_to_mimo3(struct iwl_priv *priv,
1218 struct iwl_lq_sta *lq_sta,
1219 struct ieee80211_conf *conf,
1220 struct ieee80211_sta *sta,
1221 struct iwl_scale_tbl_info *tbl, int index)
1222{
1223 u16 rate_mask;
1224 s32 rate;
1225 s8 is_green = lq_sta->is_green;
Johannes Berg7e6a5882010-08-23 10:46:46 +02001226 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1227 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001228
1229 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1230 return -1;
1231
1232 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
1233 == WLAN_HT_CAP_SM_PS_STATIC)
1234 return -1;
1235
1236 /* Need both Tx chains/antennas to support MIMO */
1237 if (priv->hw_params.tx_chains_num < 3)
1238 return -1;
1239
1240 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO3\n");
1241
1242 tbl->lq_type = LQ_MIMO3;
1243 tbl->is_dup = lq_sta->is_dup;
1244 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001245 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001246 rate_mask = lq_sta->active_mimo3_rate;
1247
Johannes Berg7e6a5882010-08-23 10:46:46 +02001248 if (iwl_is_ht40_tx_allowed(priv, ctx, &sta->ht_cap))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001249 tbl->is_ht40 = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001250 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001251 tbl->is_ht40 = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001252
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001253 rs_set_expected_tpt_table(lq_sta, tbl);
1254
1255 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
1256
1257 IWL_DEBUG_RATE(priv, "LQ: MIMO3 best rate %d mask %X\n",
1258 rate, rate_mask);
Guy Cohen39e88502008-04-23 17:14:57 -07001259 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001260 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001261 rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001262 return -1;
Guy Cohen39e88502008-04-23 17:14:57 -07001263 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001264 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001265
Tomas Winklere1623442009-01-27 14:27:56 -08001266 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001267 tbl->current_rate, is_green);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001268 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001269}
1270
Ben Cahill77626352007-11-29 11:09:44 +08001271/*
1272 * Set up search table for SISO
1273 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001274static int rs_switch_to_siso(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001275 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001276 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001277 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001278 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001279{
Zhu Yib481de92007-09-25 17:54:57 -07001280 u16 rate_mask;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001281 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001282 s32 rate;
Johannes Berg7e6a5882010-08-23 10:46:46 +02001283 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1284 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Zhu Yib481de92007-09-25 17:54:57 -07001285
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001286 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001287 return -1;
1288
Tomas Winklere1623442009-01-27 14:27:56 -08001289 IWL_DEBUG_RATE(priv, "LQ: try to switch to SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001290
Tomas Winklerc33104f2008-01-14 17:46:21 -08001291 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001292 tbl->lq_type = LQ_SISO;
1293 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001294 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001295 rate_mask = lq_sta->active_siso_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001296
Johannes Berg7e6a5882010-08-23 10:46:46 +02001297 if (iwl_is_ht40_tx_allowed(priv, ctx, &sta->ht_cap))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001298 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001299 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001300 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001301
Zhu Yib481de92007-09-25 17:54:57 -07001302 if (is_green)
Guy Cohen39e88502008-04-23 17:14:57 -07001303 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield*/
Zhu Yib481de92007-09-25 17:54:57 -07001304
Guy Coheneecd6e52008-04-23 17:14:58 -07001305 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohenf935a6d2008-04-23 17:15:02 -07001306 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001307
Tomas Winklere1623442009-01-27 14:27:56 -08001308 IWL_DEBUG_RATE(priv, "LQ: get best rate %d mask %X\n", rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001309 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001310 IWL_DEBUG_RATE(priv, "can not switch with index %d rate mask %x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001311 rate, rate_mask);
1312 return -1;
1313 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001314 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Tomas Winklere1623442009-01-27 14:27:56 -08001315 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001316 tbl->current_rate, is_green);
Mohamed Abbas403ab562007-11-06 22:06:25 -08001317 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001318}
1319
Ben Cahill77626352007-11-29 11:09:44 +08001320/*
1321 * Try to switch to new modulation mode from legacy
1322 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001323static int rs_move_legacy_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001324 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001325 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001326 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07001327 int index)
1328{
Tomas Winklere227cea2008-07-18 13:53:05 +08001329 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1330 struct iwl_scale_tbl_info *search_tbl =
1331 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1332 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1333 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1334 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001335 u8 start_action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001336 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001337 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001338 int ret = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001339 u8 update_search_tbl_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001340
Johannes Berg290f5992010-08-23 07:56:58 -07001341 switch (priv->bt_traffic_load) {
1342 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1343 /* nothing */
1344 break;
1345 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1346 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001347 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Johannes Berg290f5992010-08-23 07:56:58 -07001348 if (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2)
1349 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
1350 break;
1351 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1352 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1353 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001354 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Johannes Berg290f5992010-08-23 07:56:58 -07001355 if (tbl->action >= IWL_LEGACY_SWITCH_ANTENNA2 &&
1356 tbl->action != IWL_LEGACY_SWITCH_SISO)
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001357 tbl->action = IWL_LEGACY_SWITCH_SISO;
Johannes Berg290f5992010-08-23 07:56:58 -07001358 break;
1359 default:
1360 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1361 break;
1362 }
1363
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001364 if (!iwl_ht_enabled(priv))
1365 /* stay in Legacy */
1366 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07001367 else if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001368 tbl->action > IWL_LEGACY_SWITCH_SISO)
1369 tbl->action = IWL_LEGACY_SWITCH_SISO;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001370
1371 /* configure as 1x1 if bt full concurrency */
1372 if (priv->bt_full_concurrent) {
1373 if (!iwl_ht_enabled(priv))
1374 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
1375 else if (tbl->action >= IWL_LEGACY_SWITCH_ANTENNA2)
1376 tbl->action = IWL_LEGACY_SWITCH_SISO;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001377 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001378 }
1379
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001380 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001381 for (; ;) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001382 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001383 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001384 case IWL_LEGACY_SWITCH_ANTENNA1:
1385 case IWL_LEGACY_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001386 IWL_DEBUG_RATE(priv, "LQ: Legacy toggle Antenna\n");
Zhu Yib481de92007-09-25 17:54:57 -07001387
Guy Cohen3110bef2008-09-09 10:54:54 +08001388 if ((tbl->action == IWL_LEGACY_SWITCH_ANTENNA1 &&
1389 tx_chains_num <= 1) ||
1390 (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2 &&
1391 tx_chains_num <= 2))
1392 break;
1393
Ben Cahill77626352007-11-29 11:09:44 +08001394 /* Don't change antenna if success has been great */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001395 if (window->success_ratio >= IWL_RS_GOOD_RATIO &&
1396 !priv->bt_full_concurrent &&
1397 priv->bt_traffic_load ==
1398 IWL_BT_COEX_TRAFFIC_LOAD_NONE)
Zhu Yib481de92007-09-25 17:54:57 -07001399 break;
Ben Cahill77626352007-11-29 11:09:44 +08001400
Ben Cahill77626352007-11-29 11:09:44 +08001401 /* Set up search table to try other antenna */
Zhu Yib481de92007-09-25 17:54:57 -07001402 memcpy(search_tbl, tbl, sz);
1403
Guy Cohenaade00c2008-04-23 17:14:59 -07001404 if (rs_toggle_antenna(valid_tx_ant,
1405 &search_tbl->current_rate, search_tbl)) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001406 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001407 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohenaade00c2008-04-23 17:14:59 -07001408 goto out;
1409 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001410 break;
Zhu Yib481de92007-09-25 17:54:57 -07001411 case IWL_LEGACY_SWITCH_SISO:
Tomas Winklere1623442009-01-27 14:27:56 -08001412 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to SISO\n");
Ben Cahill77626352007-11-29 11:09:44 +08001413
1414 /* Set up search table to try SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001415 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001416 search_tbl->is_SGI = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001417 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001418 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001419 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001420 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001421 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001422 }
Zhu Yib481de92007-09-25 17:54:57 -07001423
1424 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001425 case IWL_LEGACY_SWITCH_MIMO2_AB:
1426 case IWL_LEGACY_SWITCH_MIMO2_AC:
1427 case IWL_LEGACY_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001428 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO2\n");
Ben Cahill77626352007-11-29 11:09:44 +08001429
1430 /* Set up search table to try MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001431 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001432 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001433
1434 if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AB)
1435 search_tbl->ant_type = ANT_AB;
1436 else if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AC)
1437 search_tbl->ant_type = ANT_AC;
1438 else
1439 search_tbl->ant_type = ANT_BC;
1440
1441 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1442 break;
1443
Guy Cohenfde0db32008-04-21 15:42:01 -07001444 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001445 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001446 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001447 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001448 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001449 }
Zhu Yib481de92007-09-25 17:54:57 -07001450 break;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001451
1452 case IWL_LEGACY_SWITCH_MIMO3_ABC:
1453 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO3\n");
1454
1455 /* Set up search table to try MIMO3 */
1456 memcpy(search_tbl, tbl, sz);
1457 search_tbl->is_SGI = 0;
1458
1459 search_tbl->ant_type = ANT_ABC;
1460
1461 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1462 break;
1463
1464 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1465 search_tbl, index);
1466 if (!ret) {
1467 lq_sta->action_counter = 0;
1468 goto out;
1469 }
1470 break;
Zhu Yib481de92007-09-25 17:54:57 -07001471 }
1472 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001473 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001474 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001475
1476 if (tbl->action == start_action)
1477 break;
1478
1479 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001480 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001481 return 0;
1482
Guy Cohen3110bef2008-09-09 10:54:54 +08001483out:
1484 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001485 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001486 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001487 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001488 if (update_search_tbl_counter)
1489 search_tbl->action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001490 return 0;
1491
1492}
1493
Ben Cahill77626352007-11-29 11:09:44 +08001494/*
1495 * Try to switch to new modulation mode from SISO
1496 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001497static int rs_move_siso_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001498 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001499 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001500 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001501{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001502 u8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001503 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1504 struct iwl_scale_tbl_info *search_tbl =
1505 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1506 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001507 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001508 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1509 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001510 u8 start_action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001511 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001512 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001513 u8 update_search_tbl_counter = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -07001514 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001515
Johannes Berg290f5992010-08-23 07:56:58 -07001516 switch (priv->bt_traffic_load) {
1517 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1518 /* nothing */
1519 break;
1520 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1521 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001522 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Johannes Berg290f5992010-08-23 07:56:58 -07001523 if (tbl->action == IWL_SISO_SWITCH_ANTENNA2)
1524 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1525 break;
1526 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1527 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1528 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001529 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
1530 if (tbl->action != IWL_SISO_SWITCH_ANTENNA1)
Johannes Berg290f5992010-08-23 07:56:58 -07001531 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1532 break;
1533 default:
1534 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1535 break;
1536 }
1537
Johannes Berg3ad3b922009-08-07 15:41:48 -07001538 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001539 tbl->action > IWL_SISO_SWITCH_ANTENNA2) {
1540 /* stay in SISO */
1541 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1542 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001543
1544 /* configure as 1x1 if bt full concurrency */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001545 if (priv->bt_full_concurrent) {
1546 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
1547 if (tbl->action >= IWL_LEGACY_SWITCH_ANTENNA2)
1548 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1549 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001550
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001551 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001552 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001553 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001554 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001555 case IWL_SISO_SWITCH_ANTENNA1:
1556 case IWL_SISO_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001557 IWL_DEBUG_RATE(priv, "LQ: SISO toggle Antenna\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001558 if ((tbl->action == IWL_SISO_SWITCH_ANTENNA1 &&
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001559 tx_chains_num <= 1) ||
Guy Cohen3110bef2008-09-09 10:54:54 +08001560 (tbl->action == IWL_SISO_SWITCH_ANTENNA2 &&
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001561 tx_chains_num <= 2))
Guy Cohen3110bef2008-09-09 10:54:54 +08001562 break;
1563
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001564 if (window->success_ratio >= IWL_RS_GOOD_RATIO &&
1565 !priv->bt_full_concurrent &&
1566 priv->bt_traffic_load ==
1567 IWL_BT_COEX_TRAFFIC_LOAD_NONE)
Zhu Yib481de92007-09-25 17:54:57 -07001568 break;
Zhu Yib481de92007-09-25 17:54:57 -07001569
1570 memcpy(search_tbl, tbl, sz);
Guy Cohenaade00c2008-04-23 17:14:59 -07001571 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001572 &search_tbl->current_rate, search_tbl)) {
1573 update_search_tbl_counter = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07001574 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001575 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001576 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001577 case IWL_SISO_SWITCH_MIMO2_AB:
1578 case IWL_SISO_SWITCH_MIMO2_AC:
1579 case IWL_SISO_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001580 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO2\n");
Zhu Yib481de92007-09-25 17:54:57 -07001581 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001582 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001583
1584 if (tbl->action == IWL_SISO_SWITCH_MIMO2_AB)
1585 search_tbl->ant_type = ANT_AB;
1586 else if (tbl->action == IWL_SISO_SWITCH_MIMO2_AC)
1587 search_tbl->ant_type = ANT_AC;
1588 else
1589 search_tbl->ant_type = ANT_BC;
1590
1591 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1592 break;
1593
Guy Cohenfde0db32008-04-21 15:42:01 -07001594 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001595 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001596 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001597 goto out;
1598 break;
1599 case IWL_SISO_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001600 if (!tbl->is_ht40 && !(ht_cap->cap &
1601 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001602 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001603 if (tbl->is_ht40 && !(ht_cap->cap &
1604 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001605 break;
1606
Tomas Winklere1623442009-01-27 14:27:56 -08001607 IWL_DEBUG_RATE(priv, "LQ: SISO toggle SGI/NGI\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001608
Zhu Yib481de92007-09-25 17:54:57 -07001609 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001610 if (is_green) {
1611 if (!tbl->is_SGI)
1612 break;
1613 else
Winkler, Tomas15b16872008-12-19 10:37:33 +08001614 IWL_ERR(priv,
1615 "SGI was set in GF+SISO\n");
Zhu Yib481de92007-09-25 17:54:57 -07001616 }
Guy Cohen39e88502008-04-23 17:14:57 -07001617 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001618 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohen39e88502008-04-23 17:14:57 -07001619 if (tbl->is_SGI) {
1620 s32 tpt = lq_sta->last_tpt / 100;
1621 if (tpt >= search_tbl->expected_tpt[index])
1622 break;
1623 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001624 search_tbl->current_rate =
1625 rate_n_flags_from_tbl(priv, search_tbl,
1626 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001627 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001628 goto out;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001629 case IWL_SISO_SWITCH_MIMO3_ABC:
1630 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO3\n");
1631 memcpy(search_tbl, tbl, sz);
1632 search_tbl->is_SGI = 0;
1633 search_tbl->ant_type = ANT_ABC;
1634
1635 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1636 break;
1637
1638 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1639 search_tbl, index);
1640 if (!ret)
1641 goto out;
1642 break;
Zhu Yib481de92007-09-25 17:54:57 -07001643 }
1644 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001645 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001646 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001647
1648 if (tbl->action == start_action)
1649 break;
1650 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001651 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001652 return 0;
1653
1654 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001655 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001656 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001657 if (tbl->action > IWL_SISO_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001658 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001659 if (update_search_tbl_counter)
1660 search_tbl->action = tbl->action;
1661
Zhu Yib481de92007-09-25 17:54:57 -07001662 return 0;
1663}
1664
Ben Cahill77626352007-11-29 11:09:44 +08001665/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001666 * Try to switch to new modulation mode from MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001667 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001668static int rs_move_mimo2_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001669 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001670 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001671 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001672{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001673 s8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001674 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1675 struct iwl_scale_tbl_info *search_tbl =
1676 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Guy Cohen3110bef2008-09-09 10:54:54 +08001677 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001678 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001679 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1680 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001681 u8 start_action;
Guy Cohen3110bef2008-09-09 10:54:54 +08001682 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1683 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001684 u8 update_search_tbl_counter = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07001685 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001686
Johannes Berg290f5992010-08-23 07:56:58 -07001687 switch (priv->bt_traffic_load) {
1688 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1689 /* nothing */
1690 break;
1691 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1692 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1693 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001694 if (tbl->action != IWL_MIMO2_SWITCH_SISO_A)
1695 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1696 break;
Johannes Berg290f5992010-08-23 07:56:58 -07001697 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1698 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001699 if (tbl->action == IWL_MIMO2_SWITCH_SISO_B ||
1700 tbl->action == IWL_MIMO2_SWITCH_SISO_C)
Johannes Berg290f5992010-08-23 07:56:58 -07001701 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1702 break;
1703 default:
1704 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1705 break;
1706 }
1707
Johannes Berg3ad3b922009-08-07 15:41:48 -07001708 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001709 (tbl->action < IWL_MIMO2_SWITCH_SISO_A ||
1710 tbl->action > IWL_MIMO2_SWITCH_SISO_C)) {
1711 /* switch in SISO */
1712 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1713 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001714
1715 /* configure as 1x1 if bt full concurrency */
1716 if (priv->bt_full_concurrent &&
1717 (tbl->action < IWL_MIMO2_SWITCH_SISO_A ||
1718 tbl->action > IWL_MIMO2_SWITCH_SISO_C))
1719 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1720
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001721 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001722 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001723 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001724 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001725 case IWL_MIMO2_SWITCH_ANTENNA1:
1726 case IWL_MIMO2_SWITCH_ANTENNA2:
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001727 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle Antennas\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001728
1729 if (tx_chains_num <= 2)
1730 break;
1731
1732 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1733 break;
1734
1735 memcpy(search_tbl, tbl, sz);
1736 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001737 &search_tbl->current_rate, search_tbl)) {
1738 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001739 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001740 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001741 break;
1742 case IWL_MIMO2_SWITCH_SISO_A:
1743 case IWL_MIMO2_SWITCH_SISO_B:
1744 case IWL_MIMO2_SWITCH_SISO_C:
Tomas Winklere1623442009-01-27 14:27:56 -08001745 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to SISO\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001746
Ben Cahill77626352007-11-29 11:09:44 +08001747 /* Set up new search table for SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001748 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001749
Guy Cohen3110bef2008-09-09 10:54:54 +08001750 if (tbl->action == IWL_MIMO2_SWITCH_SISO_A)
Guy Cohenfde0db32008-04-21 15:42:01 -07001751 search_tbl->ant_type = ANT_A;
Guy Cohen3110bef2008-09-09 10:54:54 +08001752 else if (tbl->action == IWL_MIMO2_SWITCH_SISO_B)
Guy Cohenfde0db32008-04-21 15:42:01 -07001753 search_tbl->ant_type = ANT_B;
Guy Cohen3110bef2008-09-09 10:54:54 +08001754 else
1755 search_tbl->ant_type = ANT_C;
1756
1757 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1758 break;
Zhu Yib481de92007-09-25 17:54:57 -07001759
Tomas Winklerc33104f2008-01-14 17:46:21 -08001760 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001761 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001762 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001763 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001764
Zhu Yib481de92007-09-25 17:54:57 -07001765 break;
1766
Guy Cohen3110bef2008-09-09 10:54:54 +08001767 case IWL_MIMO2_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001768 if (!tbl->is_ht40 && !(ht_cap->cap &
1769 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001770 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001771 if (tbl->is_ht40 && !(ht_cap->cap &
1772 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001773 break;
1774
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001775 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle SGI/NGI\n");
1776
1777 /* Set up new search table for MIMO2 */
1778 memcpy(search_tbl, tbl, sz);
1779 search_tbl->is_SGI = !tbl->is_SGI;
1780 rs_set_expected_tpt_table(lq_sta, search_tbl);
1781 /*
1782 * If active table already uses the fastest possible
1783 * modulation (dual stream with short guard interval),
1784 * and it's working well, there's no need to look
1785 * for a better type of modulation!
1786 */
1787 if (tbl->is_SGI) {
1788 s32 tpt = lq_sta->last_tpt / 100;
1789 if (tpt >= search_tbl->expected_tpt[index])
1790 break;
1791 }
1792 search_tbl->current_rate =
1793 rate_n_flags_from_tbl(priv, search_tbl,
1794 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001795 update_search_tbl_counter = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001796 goto out;
1797
1798 case IWL_MIMO2_SWITCH_MIMO3_ABC:
1799 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to MIMO3\n");
1800 memcpy(search_tbl, tbl, sz);
1801 search_tbl->is_SGI = 0;
1802 search_tbl->ant_type = ANT_ABC;
1803
1804 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1805 break;
1806
1807 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1808 search_tbl, index);
1809 if (!ret)
1810 goto out;
1811
1812 break;
1813 }
1814 tbl->action++;
1815 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1816 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
1817
1818 if (tbl->action == start_action)
1819 break;
1820 }
1821 search_tbl->lq_type = LQ_NONE;
1822 return 0;
1823 out:
1824 lq_sta->search_better_tbl = 1;
1825 tbl->action++;
1826 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1827 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001828 if (update_search_tbl_counter)
1829 search_tbl->action = tbl->action;
1830
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001831 return 0;
1832
1833}
1834
1835/*
1836 * Try to switch to new modulation mode from MIMO3
1837 */
1838static int rs_move_mimo3_to_other(struct iwl_priv *priv,
1839 struct iwl_lq_sta *lq_sta,
1840 struct ieee80211_conf *conf,
1841 struct ieee80211_sta *sta, int index)
1842{
1843 s8 is_green = lq_sta->is_green;
1844 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1845 struct iwl_scale_tbl_info *search_tbl =
1846 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1847 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001848 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001849 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1850 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001851 u8 start_action;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001852 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1853 u8 tx_chains_num = priv->hw_params.tx_chains_num;
1854 int ret;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001855 u8 update_search_tbl_counter = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001856
Johannes Berg290f5992010-08-23 07:56:58 -07001857 switch (priv->bt_traffic_load) {
1858 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1859 /* nothing */
1860 break;
1861 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1862 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1863 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001864 if (tbl->action != IWL_MIMO3_SWITCH_SISO_A)
Johannes Berg290f5992010-08-23 07:56:58 -07001865 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001866 break;
Johannes Berg290f5992010-08-23 07:56:58 -07001867 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1868 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001869 if (tbl->action == IWL_MIMO3_SWITCH_SISO_B ||
1870 tbl->action == IWL_MIMO3_SWITCH_SISO_C)
Johannes Berg290f5992010-08-23 07:56:58 -07001871 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
Johannes Berg290f5992010-08-23 07:56:58 -07001872 break;
1873 default:
1874 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1875 break;
1876 }
1877
Johannes Berg3ad3b922009-08-07 15:41:48 -07001878 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001879 (tbl->action < IWL_MIMO3_SWITCH_SISO_A ||
1880 tbl->action > IWL_MIMO3_SWITCH_SISO_C)) {
1881 /* switch in SISO */
1882 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
1883 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001884
1885 /* configure as 1x1 if bt full concurrency */
1886 if (priv->bt_full_concurrent &&
1887 (tbl->action < IWL_MIMO3_SWITCH_SISO_A ||
1888 tbl->action > IWL_MIMO3_SWITCH_SISO_C))
1889 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
1890
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001891 start_action = tbl->action;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001892 for (;;) {
1893 lq_sta->action_counter++;
1894 switch (tbl->action) {
1895 case IWL_MIMO3_SWITCH_ANTENNA1:
1896 case IWL_MIMO3_SWITCH_ANTENNA2:
1897 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle Antennas\n");
1898
1899 if (tx_chains_num <= 3)
1900 break;
1901
1902 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1903 break;
1904
1905 memcpy(search_tbl, tbl, sz);
1906 if (rs_toggle_antenna(valid_tx_ant,
1907 &search_tbl->current_rate, search_tbl))
1908 goto out;
1909 break;
1910 case IWL_MIMO3_SWITCH_SISO_A:
1911 case IWL_MIMO3_SWITCH_SISO_B:
1912 case IWL_MIMO3_SWITCH_SISO_C:
1913 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to SISO\n");
1914
1915 /* Set up new search table for SISO */
1916 memcpy(search_tbl, tbl, sz);
1917
1918 if (tbl->action == IWL_MIMO3_SWITCH_SISO_A)
1919 search_tbl->ant_type = ANT_A;
1920 else if (tbl->action == IWL_MIMO3_SWITCH_SISO_B)
1921 search_tbl->ant_type = ANT_B;
1922 else
1923 search_tbl->ant_type = ANT_C;
1924
1925 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1926 break;
1927
1928 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
1929 search_tbl, index);
1930 if (!ret)
1931 goto out;
1932
1933 break;
1934
1935 case IWL_MIMO3_SWITCH_MIMO2_AB:
1936 case IWL_MIMO3_SWITCH_MIMO2_AC:
1937 case IWL_MIMO3_SWITCH_MIMO2_BC:
1938 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to MIMO2\n");
1939
1940 memcpy(search_tbl, tbl, sz);
1941 search_tbl->is_SGI = 0;
1942 if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AB)
1943 search_tbl->ant_type = ANT_AB;
1944 else if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AC)
1945 search_tbl->ant_type = ANT_AC;
1946 else
1947 search_tbl->ant_type = ANT_BC;
1948
1949 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1950 break;
1951
1952 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
1953 search_tbl, index);
1954 if (!ret)
1955 goto out;
1956
1957 break;
1958
1959 case IWL_MIMO3_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001960 if (!tbl->is_ht40 && !(ht_cap->cap &
1961 IEEE80211_HT_CAP_SGI_20))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001962 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001963 if (tbl->is_ht40 && !(ht_cap->cap &
1964 IEEE80211_HT_CAP_SGI_40))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001965 break;
1966
1967 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle SGI/NGI\n");
Ben Cahill77626352007-11-29 11:09:44 +08001968
1969 /* Set up new search table for MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001970 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001971 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001972 rs_set_expected_tpt_table(lq_sta, search_tbl);
Ben Cahill77626352007-11-29 11:09:44 +08001973 /*
1974 * If active table already uses the fastest possible
1975 * modulation (dual stream with short guard interval),
1976 * and it's working well, there's no need to look
1977 * for a better type of modulation!
1978 */
Guy Cohen39e88502008-04-23 17:14:57 -07001979 if (tbl->is_SGI) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001980 s32 tpt = lq_sta->last_tpt / 100;
Guy Cohen39e88502008-04-23 17:14:57 -07001981 if (tpt >= search_tbl->expected_tpt[index])
1982 break;
Zhu Yib481de92007-09-25 17:54:57 -07001983 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001984 search_tbl->current_rate =
1985 rate_n_flags_from_tbl(priv, search_tbl,
1986 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001987 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001988 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07001989 }
1990 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001991 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1992 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001993
1994 if (tbl->action == start_action)
1995 break;
1996 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001997 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001998 return 0;
1999 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08002000 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002001 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002002 if (tbl->action > IWL_MIMO3_SWITCH_GI)
2003 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07002004 if (update_search_tbl_counter)
2005 search_tbl->action = tbl->action;
2006
Zhu Yib481de92007-09-25 17:54:57 -07002007 return 0;
2008
2009}
2010
Ben Cahill77626352007-11-29 11:09:44 +08002011/*
2012 * Check whether we should continue using same modulation mode, or
2013 * begin search for a new mode, based on:
2014 * 1) # tx successes or failures while using this mode
2015 * 2) # times calling this function
2016 * 3) elapsed time in this mode (not used, for now)
2017 */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002018static void rs_stay_in_table(struct iwl_lq_sta *lq_sta, bool force_search)
Zhu Yib481de92007-09-25 17:54:57 -07002019{
Tomas Winklere227cea2008-07-18 13:53:05 +08002020 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002021 int i;
2022 int active_tbl;
2023 int flush_interval_passed = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08002024 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002025
Ester Kummerbf403db2008-05-05 10:22:40 +08002026 priv = lq_sta->drv;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002027 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002028
Tomas Winklerc33104f2008-01-14 17:46:21 -08002029 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002030
Ben Cahill77626352007-11-29 11:09:44 +08002031 /* If we've been disallowing search, see if we should now allow it */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002032 if (lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07002033
Ben Cahill77626352007-11-29 11:09:44 +08002034 /* Elapsed time using current modulation mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002035 if (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07002036 flush_interval_passed =
Mohamed Abbas447fee72009-04-20 14:37:02 -07002037 time_after(jiffies,
2038 (unsigned long)(lq_sta->flush_timer +
Zhu Yib481de92007-09-25 17:54:57 -07002039 IWL_RATE_SCALE_FLUSH_INTVL));
2040
Ben Cahill77626352007-11-29 11:09:44 +08002041 /*
2042 * Check if we should allow search for new modulation mode.
2043 * If many frames have failed or succeeded, or we've used
2044 * this same modulation for a long time, allow search, and
2045 * reset history stats that keep track of whether we should
2046 * allow a new search. Also (below) reset all bitmaps and
2047 * stats in active history.
2048 */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002049 if (force_search ||
2050 (lq_sta->total_failed > lq_sta->max_failure_limit) ||
Tomas Winklerc33104f2008-01-14 17:46:21 -08002051 (lq_sta->total_success > lq_sta->max_success_limit) ||
2052 ((!lq_sta->search_better_tbl) && (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07002053 && (flush_interval_passed))) {
Tomas Winklere1623442009-01-27 14:27:56 -08002054 IWL_DEBUG_RATE(priv, "LQ: stay is expired %d %d %d\n:",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002055 lq_sta->total_failed,
2056 lq_sta->total_success,
Zhu Yib481de92007-09-25 17:54:57 -07002057 flush_interval_passed);
Ben Cahill77626352007-11-29 11:09:44 +08002058
2059 /* Allow search for new mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002060 lq_sta->stay_in_tbl = 0; /* only place reset */
2061 lq_sta->total_failed = 0;
2062 lq_sta->total_success = 0;
2063 lq_sta->flush_timer = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002064
2065 /*
2066 * Else if we've used this modulation mode enough repetitions
2067 * (regardless of elapsed time or success/failure), reset
2068 * history bitmaps and rate-specific stats for all rates in
2069 * active table.
2070 */
Mohamed Abbas403ab562007-11-06 22:06:25 -08002071 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002072 lq_sta->table_count++;
2073 if (lq_sta->table_count >=
2074 lq_sta->table_count_limit) {
2075 lq_sta->table_count = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002076
Tomas Winklere1623442009-01-27 14:27:56 -08002077 IWL_DEBUG_RATE(priv, "LQ: stay in table clear win\n");
Zhu Yib481de92007-09-25 17:54:57 -07002078 for (i = 0; i < IWL_RATE_COUNT; i++)
2079 rs_rate_scale_clear_window(
2080 &(tbl->win[i]));
2081 }
2082 }
2083
Ben Cahill77626352007-11-29 11:09:44 +08002084 /* If transitioning to allow "search", reset all history
2085 * bitmaps and stats in active table (this will become the new
2086 * "search" table). */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002087 if (!lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07002088 for (i = 0; i < IWL_RATE_COUNT; i++)
2089 rs_rate_scale_clear_window(&(tbl->win[i]));
2090 }
2091 }
2092}
2093
Ben Cahill77626352007-11-29 11:09:44 +08002094/*
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002095 * setup rate table in uCode
2096 * return rate_n_flags as used in the table
2097 */
2098static u32 rs_update_rate_tbl(struct iwl_priv *priv,
Johannes Berg7e6a5882010-08-23 10:46:46 +02002099 struct iwl_rxon_context *ctx,
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002100 struct iwl_lq_sta *lq_sta,
2101 struct iwl_scale_tbl_info *tbl,
2102 int index, u8 is_green)
2103{
2104 u32 rate;
2105
2106 /* Update uCode's rate table. */
2107 rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
2108 rs_fill_link_cmd(priv, lq_sta, rate);
Johannes Berg7e6a5882010-08-23 10:46:46 +02002109 iwl_send_lq_cmd(priv, ctx, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002110
2111 return rate;
2112}
2113
2114/*
Ben Cahill77626352007-11-29 11:09:44 +08002115 * Do rate scaling and search for new modulation mode.
2116 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002117static void rs_rate_scale_perform(struct iwl_priv *priv,
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002118 struct sk_buff *skb,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002119 struct ieee80211_sta *sta,
2120 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002121{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002122 struct ieee80211_hw *hw = priv->hw;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002123 struct ieee80211_conf *conf = &hw->conf;
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002124 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2125 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002126 int low = IWL_RATE_INVALID;
2127 int high = IWL_RATE_INVALID;
2128 int index;
2129 int i;
Tomas Winklere227cea2008-07-18 13:53:05 +08002130 struct iwl_rate_scale_data *window = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002131 int current_tpt = IWL_INVALID_VALUE;
2132 int low_tpt = IWL_INVALID_VALUE;
2133 int high_tpt = IWL_INVALID_VALUE;
2134 u32 fail_count;
2135 s8 scale_action = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002136 u16 rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -07002137 u8 update_lq = 0;
Tomas Winklere227cea2008-07-18 13:53:05 +08002138 struct iwl_scale_tbl_info *tbl, *tbl1;
Zhu Yib481de92007-09-25 17:54:57 -07002139 u16 rate_scale_index_msk = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07002140 u32 rate;
Zhu Yib481de92007-09-25 17:54:57 -07002141 u8 is_green = 0;
2142 u8 active_tbl = 0;
2143 u8 done_search = 0;
2144 u16 high_low;
Guy Cohena5e8b502008-05-29 16:35:11 +08002145 s32 sr;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002146 u8 tid = MAX_TID_COUNT;
Wey-Yi Guy86b47662009-03-10 14:35:09 -07002147 struct iwl_tid_data *tid_data;
Johannes Berg7e6a5882010-08-23 10:46:46 +02002148 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
2149 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Zhu Yib481de92007-09-25 17:54:57 -07002150
Tomas Winklere1623442009-01-27 14:27:56 -08002151 IWL_DEBUG_RATE(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002152
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002153 /* Send management frames and NO_ACK data using lowest rate. */
Tomas Winkler417f1142008-11-12 13:14:06 -08002154 /* TODO: this could probably be improved.. */
2155 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002156 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -07002157 return;
Zhu Yib481de92007-09-25 17:54:57 -07002158
Johannes Berg4b7679a2008-09-18 18:14:18 +02002159 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002160 return;
2161
Johannes Berg4b7679a2008-09-18 18:14:18 +02002162 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
Zhu Yib481de92007-09-25 17:54:57 -07002163
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08002164 tid = rs_tl_add_packet(lq_sta, hdr);
Daniel C Halperine3949d62009-09-17 10:43:50 -07002165 if ((tid != MAX_TID_COUNT) && (lq_sta->tx_agg_tid_en & (1 << tid))) {
2166 tid_data = &priv->stations[lq_sta->lq.sta_id].tid[tid];
2167 if (tid_data->agg.state == IWL_AGG_OFF)
2168 lq_sta->is_agg = 0;
2169 else
2170 lq_sta->is_agg = 1;
2171 } else
2172 lq_sta->is_agg = 0;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08002173
Ben Cahill77626352007-11-29 11:09:44 +08002174 /*
2175 * Select rate-scale / modulation-mode table to work with in
2176 * the rest of this function: "search" if searching for better
2177 * modulation mode, or "active" if doing rate scaling within a mode.
2178 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002179 if (!lq_sta->search_better_tbl)
2180 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002181 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002182 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002183
Tomas Winklerc33104f2008-01-14 17:46:21 -08002184 tbl = &(lq_sta->lq_info[active_tbl]);
Wey-Yi Guy2681b202009-05-21 13:44:22 -07002185 if (is_legacy(tbl->lq_type))
2186 lq_sta->is_green = 0;
2187 else
Johannes Berg7e6a5882010-08-23 10:46:46 +02002188 lq_sta->is_green = rs_use_green(sta);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002189 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07002190
Ben Cahill77626352007-11-29 11:09:44 +08002191 /* current tx rate */
Johannes Bergb7e35002008-09-11 02:22:58 +02002192 index = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002193
Tomas Winklere1623442009-01-27 14:27:56 -08002194 IWL_DEBUG_RATE(priv, "Rate scale index %d for type %d\n", index,
Zhu Yib481de92007-09-25 17:54:57 -07002195 tbl->lq_type);
2196
Ben Cahill77626352007-11-29 11:09:44 +08002197 /* rates available for this association, and for modulation mode */
Guy Coheneecd6e52008-04-23 17:14:58 -07002198 rate_mask = rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07002199
Frans Pop91dd6c22010-03-24 14:19:58 -07002200 IWL_DEBUG_RATE(priv, "mask 0x%04X\n", rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07002201
2202 /* mask with station rate restriction */
2203 if (is_legacy(tbl->lq_type)) {
Johannes Berg8318d782008-01-24 19:38:38 +01002204 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Ben Cahill77626352007-11-29 11:09:44 +08002205 /* supp_rates has no CCK bits in A mode */
Zhu Yib481de92007-09-25 17:54:57 -07002206 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002207 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -07002208 else
2209 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002210 lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -07002211
2212 } else
2213 rate_scale_index_msk = rate_mask;
2214
2215 if (!rate_scale_index_msk)
2216 rate_scale_index_msk = rate_mask;
2217
Guy Cohen07bc28e2008-04-23 17:15:03 -07002218 if (!((1 << index) & rate_scale_index_msk)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002219 IWL_ERR(priv, "Current Rate is not valid\n");
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002220 if (lq_sta->search_better_tbl) {
2221 /* revert to active table if search table is not valid*/
2222 tbl->lq_type = LQ_NONE;
2223 lq_sta->search_better_tbl = 0;
2224 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
2225 /* get "active" rate info */
2226 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Johannes Berg7e6a5882010-08-23 10:46:46 +02002227 rate = rs_update_rate_tbl(priv, ctx, lq_sta,
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002228 tbl, index, is_green);
2229 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002230 return;
Zhu Yib481de92007-09-25 17:54:57 -07002231 }
2232
Ben Cahill77626352007-11-29 11:09:44 +08002233 /* Get expected throughput table and history window for current rate */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002234 if (!tbl->expected_tpt) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002235 IWL_ERR(priv, "tbl->expected_tpt is NULL\n");
Guy Cohen07bc28e2008-04-23 17:15:03 -07002236 return;
2237 }
Zhu Yib481de92007-09-25 17:54:57 -07002238
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002239 /* force user max rate if set by user */
2240 if ((lq_sta->max_rate_idx != -1) &&
2241 (lq_sta->max_rate_idx < index)) {
2242 index = lq_sta->max_rate_idx;
2243 update_lq = 1;
2244 window = &(tbl->win[index]);
2245 goto lq_update;
2246 }
2247
Zhu Yib481de92007-09-25 17:54:57 -07002248 window = &(tbl->win[index]);
2249
Ben Cahill77626352007-11-29 11:09:44 +08002250 /*
2251 * If there is not enough history to calculate actual average
2252 * throughput, keep analyzing results of more tx frames, without
2253 * changing rate or mode (bypass most of the rest of this function).
2254 * Set up new rate table in uCode only if old rate is not supported
2255 * in current association (use new rate found above).
2256 */
Zhu Yib481de92007-09-25 17:54:57 -07002257 fail_count = window->counter - window->success_counter;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002258 if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
2259 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002260 IWL_DEBUG_RATE(priv, "LQ: still below TH. succ=%d total=%d "
Zhu Yib481de92007-09-25 17:54:57 -07002261 "for index %d\n",
2262 window->success_counter, window->counter, index);
Ben Cahill77626352007-11-29 11:09:44 +08002263
2264 /* Can't calculate this yet; not enough history */
Zhu Yib481de92007-09-25 17:54:57 -07002265 window->average_tpt = IWL_INVALID_VALUE;
Ben Cahill77626352007-11-29 11:09:44 +08002266
2267 /* Should we stay with this modulation mode,
2268 * or search for a new one? */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002269 rs_stay_in_table(lq_sta, false);
Ben Cahill77626352007-11-29 11:09:44 +08002270
Zhu Yib481de92007-09-25 17:54:57 -07002271 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08002272 }
Ben Cahill77626352007-11-29 11:09:44 +08002273 /* Else we have enough samples; calculate estimate of
2274 * actual average throughput */
Reinette Chatre3d79b2a2010-05-03 10:55:07 -07002275 if (window->average_tpt != ((window->success_ratio *
2276 tbl->expected_tpt[index] + 64) / 128)) {
2277 IWL_ERR(priv, "expected_tpt should have been calculated by now\n");
2278 window->average_tpt = ((window->success_ratio *
2279 tbl->expected_tpt[index] + 64) / 128);
2280 }
Zhu Yib481de92007-09-25 17:54:57 -07002281
Ben Cahill77626352007-11-29 11:09:44 +08002282 /* If we are searching for better modulation mode, check success. */
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002283 if (lq_sta->search_better_tbl &&
Johannes Berg3ad3b922009-08-07 15:41:48 -07002284 (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI)) {
Ben Cahill77626352007-11-29 11:09:44 +08002285 /* If good success, continue using the "search" mode;
2286 * no need to send new link quality command, since we're
2287 * continuing to use the setup that we've been trying. */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002288 if (window->average_tpt > lq_sta->last_tpt) {
2289
Tomas Winklere1623442009-01-27 14:27:56 -08002290 IWL_DEBUG_RATE(priv, "LQ: SWITCHING TO NEW TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002291 "suc=%d cur-tpt=%d old-tpt=%d\n",
2292 window->success_ratio,
2293 window->average_tpt,
2294 lq_sta->last_tpt);
2295
2296 if (!is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002297 lq_sta->enable_counter = 1;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002298
Ben Cahill77626352007-11-29 11:09:44 +08002299 /* Swap tables; "search" becomes "active" */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002300 lq_sta->active_tbl = active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002301 current_tpt = window->average_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002302
2303 /* Else poor success; go back to mode in "active" table */
Zhu Yib481de92007-09-25 17:54:57 -07002304 } else {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002305
Tomas Winklere1623442009-01-27 14:27:56 -08002306 IWL_DEBUG_RATE(priv, "LQ: GOING BACK TO THE OLD TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002307 "suc=%d cur-tpt=%d old-tpt=%d\n",
2308 window->success_ratio,
2309 window->average_tpt,
2310 lq_sta->last_tpt);
2311
Ben Cahill77626352007-11-29 11:09:44 +08002312 /* Nullify "search" table */
Zhu Yib481de92007-09-25 17:54:57 -07002313 tbl->lq_type = LQ_NONE;
Ben Cahill77626352007-11-29 11:09:44 +08002314
2315 /* Revert to "active" table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002316 active_tbl = lq_sta->active_tbl;
2317 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002318
Ben Cahill77626352007-11-29 11:09:44 +08002319 /* Revert to "active" rate and throughput info */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002320 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002321 current_tpt = lq_sta->last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002322
2323 /* Need to set up a new rate table in uCode */
2324 update_lq = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002325 }
Ben Cahill77626352007-11-29 11:09:44 +08002326
2327 /* Either way, we've made a decision; modulation mode
2328 * search is done, allow rate adjustment next time. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002329 lq_sta->search_better_tbl = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002330 done_search = 1; /* Don't switch modes below! */
Zhu Yib481de92007-09-25 17:54:57 -07002331 goto lq_update;
2332 }
2333
Ben Cahill77626352007-11-29 11:09:44 +08002334 /* (Else) not in search of better modulation mode, try for better
2335 * starting rate, while staying in this mode. */
Ester Kummerbf403db2008-05-05 10:22:40 +08002336 high_low = rs_get_adjacent_rate(priv, index, rate_scale_index_msk,
Zhu Yib481de92007-09-25 17:54:57 -07002337 tbl->lq_type);
2338 low = high_low & 0xff;
2339 high = (high_low >> 8) & 0xff;
2340
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002341 /* If user set max rate, dont allow higher than user constrain */
2342 if ((lq_sta->max_rate_idx != -1) &&
2343 (lq_sta->max_rate_idx < high))
2344 high = IWL_RATE_INVALID;
2345
Guy Cohena5e8b502008-05-29 16:35:11 +08002346 sr = window->success_ratio;
2347
Ben Cahill77626352007-11-29 11:09:44 +08002348 /* Collect measured throughputs for current and adjacent rates */
Zhu Yib481de92007-09-25 17:54:57 -07002349 current_tpt = window->average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002350 if (low != IWL_RATE_INVALID)
2351 low_tpt = tbl->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002352 if (high != IWL_RATE_INVALID)
2353 high_tpt = tbl->win[high].average_tpt;
2354
Guy Cohena5e8b502008-05-29 16:35:11 +08002355 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002356
Ben Cahill77626352007-11-29 11:09:44 +08002357 /* Too many failures, decrease rate */
Guy Cohena5e8b502008-05-29 16:35:11 +08002358 if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002359 IWL_DEBUG_RATE(priv, "decrease rate because of low success_ratio\n");
Zhu Yib481de92007-09-25 17:54:57 -07002360 scale_action = -1;
Ben Cahill77626352007-11-29 11:09:44 +08002361
2362 /* No throughput measured yet for adjacent rates; try increase. */
Zhu Yib481de92007-09-25 17:54:57 -07002363 } else if ((low_tpt == IWL_INVALID_VALUE) &&
Guy Cohena5e8b502008-05-29 16:35:11 +08002364 (high_tpt == IWL_INVALID_VALUE)) {
2365
2366 if (high != IWL_RATE_INVALID && sr >= IWL_RATE_INCREASE_TH)
2367 scale_action = 1;
2368 else if (low != IWL_RATE_INVALID)
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002369 scale_action = 0;
Guy Cohena5e8b502008-05-29 16:35:11 +08002370 }
Ben Cahill77626352007-11-29 11:09:44 +08002371
2372 /* Both adjacent throughputs are measured, but neither one has better
2373 * throughput; we're using the best rate, don't change it! */
Zhu Yib481de92007-09-25 17:54:57 -07002374 else if ((low_tpt != IWL_INVALID_VALUE) &&
2375 (high_tpt != IWL_INVALID_VALUE) &&
2376 (low_tpt < current_tpt) &&
2377 (high_tpt < current_tpt))
2378 scale_action = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002379
2380 /* At least one adjacent rate's throughput is measured,
2381 * and may have better performance. */
Zhu Yib481de92007-09-25 17:54:57 -07002382 else {
Ben Cahill77626352007-11-29 11:09:44 +08002383 /* Higher adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002384 if (high_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002385 /* Higher rate has better throughput */
Guy Cohena5e8b502008-05-29 16:35:11 +08002386 if (high_tpt > current_tpt &&
2387 sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002388 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002389 } else {
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002390 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002391 }
Ben Cahill77626352007-11-29 11:09:44 +08002392
2393 /* Lower adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002394 } else if (low_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002395 /* Lower rate has better throughput */
Zhu Yib481de92007-09-25 17:54:57 -07002396 if (low_tpt > current_tpt) {
Tomas Winklere1623442009-01-27 14:27:56 -08002397 IWL_DEBUG_RATE(priv,
2398 "decrease rate because of low tpt\n");
Zhu Yib481de92007-09-25 17:54:57 -07002399 scale_action = -1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002400 } else if (sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002401 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002402 }
Zhu Yib481de92007-09-25 17:54:57 -07002403 }
2404 }
2405
Ben Cahill77626352007-11-29 11:09:44 +08002406 /* Sanity check; asked for decrease, but success rate or throughput
2407 * has been good at old rate. Don't change it. */
Guy Cohena5e8b502008-05-29 16:35:11 +08002408 if ((scale_action == -1) && (low != IWL_RATE_INVALID) &&
2409 ((sr > IWL_RATE_HIGH_TH) ||
Zhu Yib481de92007-09-25 17:54:57 -07002410 (current_tpt > (100 * tbl->expected_tpt[low]))))
Zhu Yib481de92007-09-25 17:54:57 -07002411 scale_action = 0;
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002412 if (!iwl_ht_enabled(priv) && !is_legacy(tbl->lq_type))
2413 scale_action = -1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07002414 if (iwl_tx_ant_restriction(priv) != IWL_ANT_OK_MULTI &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002415 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type)))
2416 scale_action = -1;
Johannes Berg290f5992010-08-23 07:56:58 -07002417
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002418 if ((priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH) &&
2419 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type))) {
2420 if (lq_sta->last_bt_traffic > priv->bt_traffic_load) {
2421 /*
2422 * don't set scale_action, don't want to scale up if
2423 * the rate scale doesn't otherwise think that is a
2424 * good idea.
2425 */
2426 } else if (lq_sta->last_bt_traffic <= priv->bt_traffic_load) {
2427 scale_action = -1;
2428 }
2429 }
2430 lq_sta->last_bt_traffic = priv->bt_traffic_load;
2431
2432 if ((priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH) &&
2433 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type))) {
2434 /* search for a new modulation */
2435 rs_stay_in_table(lq_sta, true);
2436 goto lq_update;
Johannes Berg290f5992010-08-23 07:56:58 -07002437 }
2438
Zhu Yib481de92007-09-25 17:54:57 -07002439 switch (scale_action) {
2440 case -1:
Ben Cahill77626352007-11-29 11:09:44 +08002441 /* Decrease starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002442 if (low != IWL_RATE_INVALID) {
2443 update_lq = 1;
2444 index = low;
2445 }
Mohamed Abbas447fee72009-04-20 14:37:02 -07002446
Zhu Yib481de92007-09-25 17:54:57 -07002447 break;
2448 case 1:
Ben Cahill77626352007-11-29 11:09:44 +08002449 /* Increase starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002450 if (high != IWL_RATE_INVALID) {
2451 update_lq = 1;
2452 index = high;
2453 }
2454
2455 break;
2456 case 0:
Ben Cahill77626352007-11-29 11:09:44 +08002457 /* No change */
Zhu Yib481de92007-09-25 17:54:57 -07002458 default:
2459 break;
2460 }
2461
Tomas Winklere1623442009-01-27 14:27:56 -08002462 IWL_DEBUG_RATE(priv, "choose rate scale index %d action %d low %d "
Zhu Yib481de92007-09-25 17:54:57 -07002463 "high %d type %d\n",
2464 index, scale_action, low, high, tbl->lq_type);
2465
Guy Cohena5e8b502008-05-29 16:35:11 +08002466lq_update:
Ben Cahill77626352007-11-29 11:09:44 +08002467 /* Replace uCode's rate table for the destination station. */
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002468 if (update_lq)
Johannes Berg7e6a5882010-08-23 10:46:46 +02002469 rate = rs_update_rate_tbl(priv, ctx, lq_sta,
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002470 tbl, index, is_green);
Ben Cahill77626352007-11-29 11:09:44 +08002471
Johannes Berg3ad3b922009-08-07 15:41:48 -07002472 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI) {
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002473 /* Should we stay with this modulation mode,
2474 * or search for a new one? */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002475 rs_stay_in_table(lq_sta, false);
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002476 }
Ben Cahill77626352007-11-29 11:09:44 +08002477 /*
2478 * Search for new modulation mode if we're:
2479 * 1) Not changing rates right now
2480 * 2) Not just finishing up a search
2481 * 3) Allowing a new search
2482 */
Guy Cohen47cfd462008-05-27 11:29:34 +08002483 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && window->counter) {
Ben Cahill77626352007-11-29 11:09:44 +08002484 /* Save current throughput to compare with "search" throughput*/
Tomas Winklerc33104f2008-01-14 17:46:21 -08002485 lq_sta->last_tpt = current_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002486
Ben Cahill77626352007-11-29 11:09:44 +08002487 /* Select a new "search" modulation mode to try.
2488 * If one is found, set up the new "search" table. */
Zhu Yib481de92007-09-25 17:54:57 -07002489 if (is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002490 rs_move_legacy_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002491 else if (is_siso(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002492 rs_move_siso_to_other(priv, lq_sta, conf, sta, index);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002493 else if (is_mimo2(tbl->lq_type))
2494 rs_move_mimo2_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002495 else
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002496 rs_move_mimo3_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002497
Ben Cahill77626352007-11-29 11:09:44 +08002498 /* If new "search" mode was selected, set up in uCode table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002499 if (lq_sta->search_better_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002500 /* Access the "search" table, clear its history. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002501 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Zhu Yib481de92007-09-25 17:54:57 -07002502 for (i = 0; i < IWL_RATE_COUNT; i++)
2503 rs_rate_scale_clear_window(&(tbl->win[i]));
2504
Ben Cahill77626352007-11-29 11:09:44 +08002505 /* Use new "search" start rate */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002506 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002507
Tomas Winklere1623442009-01-27 14:27:56 -08002508 IWL_DEBUG_RATE(priv, "Switch current mcs: %X index: %d\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002509 tbl->current_rate, index);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002510 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Johannes Berg7e6a5882010-08-23 10:46:46 +02002511 iwl_send_lq_cmd(priv, ctx, &lq_sta->lq, CMD_ASYNC, false);
Mohamed Abbas447fee72009-04-20 14:37:02 -07002512 } else
2513 done_search = 1;
2514 }
Zhu Yib481de92007-09-25 17:54:57 -07002515
Mohamed Abbas447fee72009-04-20 14:37:02 -07002516 if (done_search && !lq_sta->stay_in_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002517 /* If the "active" (non-search) mode was legacy,
2518 * and we've tried switching antennas,
2519 * but we haven't been able to try HT modes (not available),
2520 * stay with best antenna legacy modulation for a while
2521 * before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002522 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08002523 if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
Mohamed Abbasd6e93392009-05-08 13:44:39 -07002524 lq_sta->action_counter > tbl1->max_search) {
Tomas Winklere1623442009-01-27 14:27:56 -08002525 IWL_DEBUG_RATE(priv, "LQ: STAY in legacy table\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08002526 rs_set_stay_in_table(priv, 1, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002527 }
2528
Ben Cahill77626352007-11-29 11:09:44 +08002529 /* If we're in an HT mode, and all 3 mode switch actions
2530 * have been tried and compared, stay in this best modulation
2531 * mode for a while before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002532 if (lq_sta->enable_counter &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002533 (lq_sta->action_counter >= tbl1->max_search) &&
2534 iwl_ht_enabled(priv)) {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002535 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2536 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2537 (tid != MAX_TID_COUNT)) {
Wey-Yi Guy86b47662009-03-10 14:35:09 -07002538 tid_data =
2539 &priv->stations[lq_sta->lq.sta_id].tid[tid];
2540 if (tid_data->agg.state == IWL_AGG_OFF) {
2541 IWL_DEBUG_RATE(priv,
2542 "try to aggregate tid %d\n",
2543 tid);
2544 rs_tl_turn_on_agg(priv, tid,
2545 lq_sta, sta);
2546 }
Zhu Yib481de92007-09-25 17:54:57 -07002547 }
Ester Kummerbf403db2008-05-05 10:22:40 +08002548 rs_set_stay_in_table(priv, 0, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002549 }
Zhu Yib481de92007-09-25 17:54:57 -07002550 }
2551
2552out:
Tomas Winkler978785a2008-12-19 10:37:31 +08002553 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07002554 i = index;
Johannes Bergb7e35002008-09-11 02:22:58 +02002555 lq_sta->last_txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -07002556}
2557
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002558/**
2559 * rs_initialize_lq - Initialize a station's hardware rate table
2560 *
2561 * The uCode's station table contains a table of fallback rates
2562 * for automatic fallback during transmission.
2563 *
2564 * NOTE: This sets up a default set of values. These will be replaced later
2565 * if the driver's iwl-agn-rs rate scaling algorithm is used, instead of
2566 * rc80211_simple.
2567 *
2568 * NOTE: Run REPLY_ADD_STA command to set up station table entry, before
2569 * calling this function (which runs REPLY_TX_LINK_QUALITY_CMD,
2570 * which requires station table entry to exist).
2571 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002572static void rs_initialize_lq(struct iwl_priv *priv,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002573 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002574 struct ieee80211_sta *sta,
2575 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002576{
Tomas Winklere227cea2008-07-18 13:53:05 +08002577 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002578 int rate_idx;
Guy Cohenaade00c2008-04-23 17:14:59 -07002579 int i;
Guy Cohen39e88502008-04-23 17:14:57 -07002580 u32 rate;
Johannes Berg7e6a5882010-08-23 10:46:46 +02002581 u8 use_green = rs_use_green(sta);
Guy Cohenaade00c2008-04-23 17:14:59 -07002582 u8 active_tbl = 0;
2583 u8 valid_tx_ant;
Johannes Berg7e6a5882010-08-23 10:46:46 +02002584 struct iwl_station_priv *sta_priv;
2585 struct iwl_rxon_context *ctx;
Zhu Yib481de92007-09-25 17:54:57 -07002586
Johannes Berg4b7679a2008-09-18 18:14:18 +02002587 if (!sta || !lq_sta)
Johannes Berg7e6a5882010-08-23 10:46:46 +02002588 return;
2589
2590 sta_priv = (void *)sta->drv_priv;
2591 ctx = sta_priv->common.ctx;
Zhu Yib481de92007-09-25 17:54:57 -07002592
Johannes Bergb7e35002008-09-11 02:22:58 +02002593 i = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002594
Guy Cohenaade00c2008-04-23 17:14:59 -07002595 valid_tx_ant = priv->hw_params.valid_tx_ant;
2596
Tomas Winklerc33104f2008-01-14 17:46:21 -08002597 if (!lq_sta->search_better_tbl)
2598 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002599 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002600 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002601
Tomas Winklerc33104f2008-01-14 17:46:21 -08002602 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002603
2604 if ((i < 0) || (i >= IWL_RATE_COUNT))
2605 i = 0;
2606
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002607 rate = iwl_rates[i].plcp;
Winkler, Tomaseb48dca2008-10-29 14:05:48 -07002608 tbl->ant_type = first_antenna(valid_tx_ant);
2609 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
Zhu Yib481de92007-09-25 17:54:57 -07002610
2611 if (i >= IWL_FIRST_CCK_RATE && i <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -07002612 rate |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002613
Guy Cohen39e88502008-04-23 17:14:57 -07002614 rs_get_tbl_info_from_mcs(rate, priv->band, tbl, &rate_idx);
Guy Cohenaade00c2008-04-23 17:14:59 -07002615 if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2616 rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07002617
Tomas Winkler978785a2008-12-19 10:37:31 +08002618 rate = rate_n_flags_from_tbl(priv, tbl, rate_idx, use_green);
Guy Cohen39e88502008-04-23 17:14:57 -07002619 tbl->current_rate = rate;
Guy Coheneecd6e52008-04-23 17:14:58 -07002620 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002621 rs_fill_link_cmd(NULL, lq_sta, rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002622 priv->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq;
Johannes Berg7e6a5882010-08-23 10:46:46 +02002623 iwl_send_lq_cmd(priv, ctx, &lq_sta->lq, CMD_SYNC, true);
Zhu Yib481de92007-09-25 17:54:57 -07002624}
2625
Johannes Berge6a98542008-10-21 12:40:02 +02002626static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta,
2627 struct ieee80211_tx_rate_control *txrc)
Zhu Yib481de92007-09-25 17:54:57 -07002628{
2629
Johannes Berge6a98542008-10-21 12:40:02 +02002630 struct sk_buff *skb = txrc->skb;
2631 struct ieee80211_supported_band *sband = txrc->sband;
Reinette Chatref875f512010-04-05 10:43:10 -07002632 struct iwl_priv *priv __maybe_unused = (struct iwl_priv *)priv_r;
Johannes Berge6a98542008-10-21 12:40:02 +02002633 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winkler417f1142008-11-12 13:14:06 -08002634 struct iwl_lq_sta *lq_sta = priv_sta;
2635 int rate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002636
Tomas Winklere1623442009-01-27 14:27:56 -08002637 IWL_DEBUG_RATE_LIMIT(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002638
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002639 /* Get max rate if user set max rate */
2640 if (lq_sta) {
2641 lq_sta->max_rate_idx = txrc->max_rate_idx;
2642 if ((sband->band == IEEE80211_BAND_5GHZ) &&
2643 (lq_sta->max_rate_idx != -1))
2644 lq_sta->max_rate_idx += IWL_FIRST_OFDM_RATE;
2645 if ((lq_sta->max_rate_idx < 0) ||
2646 (lq_sta->max_rate_idx >= IWL_RATE_COUNT))
2647 lq_sta->max_rate_idx = -1;
2648 }
2649
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002650 /* Treat uninitialized rate scaling data same as non-existing. */
2651 if (lq_sta && !lq_sta->drv) {
2652 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
2653 priv_sta = NULL;
2654 }
2655
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002656 /* Send management frames and NO_ACK data using lowest rate. */
Luis R. Rodriguez4c6d4f52009-07-16 10:05:41 -07002657 if (rate_control_send_low(sta, priv_sta, txrc))
Johannes Berg4b7679a2008-09-18 18:14:18 +02002658 return;
Zhu Yib481de92007-09-25 17:54:57 -07002659
Tomas Winkler417f1142008-11-12 13:14:06 -08002660 rate_idx = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002661
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002662 if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
Tomas Winkler417f1142008-11-12 13:14:06 -08002663 rate_idx -= IWL_FIRST_OFDM_RATE;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002664 /* 6M and 9M shared same MCS index */
2665 rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
2666 if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2667 IWL_RATE_MIMO3_6M_PLCP)
2668 rate_idx = rate_idx + (2 * MCS_INDEX_PER_STREAM);
2669 else if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2670 IWL_RATE_MIMO2_6M_PLCP)
2671 rate_idx = rate_idx + MCS_INDEX_PER_STREAM;
2672 info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
2673 if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
2674 info->control.rates[0].flags |= IEEE80211_TX_RC_SHORT_GI;
2675 if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
2676 info->control.rates[0].flags |= IEEE80211_TX_RC_DUP_DATA;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002677 if (lq_sta->last_rate_n_flags & RATE_MCS_HT40_MSK)
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002678 info->control.rates[0].flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2679 if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
2680 info->control.rates[0].flags |= IEEE80211_TX_RC_GREEN_FIELD;
2681 } else {
Daniel C Halperin50273092009-08-28 09:44:45 -07002682 /* Check for invalid rates */
2683 if ((rate_idx < 0) || (rate_idx >= IWL_RATE_COUNT_LEGACY) ||
2684 ((sband->band == IEEE80211_BAND_5GHZ) &&
2685 (rate_idx < IWL_FIRST_OFDM_RATE)))
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002686 rate_idx = rate_lowest_index(sband, sta);
Daniel C Halperin50273092009-08-28 09:44:45 -07002687 /* On valid 5 GHz rate, adjust index */
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002688 else if (sband->band == IEEE80211_BAND_5GHZ)
2689 rate_idx -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin7ebaeff2009-08-21 13:34:20 -07002690 info->control.rates[0].flags = 0;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002691 }
Tomas Winkler417f1142008-11-12 13:14:06 -08002692 info->control.rates[0].idx = rate_idx;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002693
Zhu Yib481de92007-09-25 17:54:57 -07002694}
2695
Johannes Berg4b7679a2008-09-18 18:14:18 +02002696static void *rs_alloc_sta(void *priv_rate, struct ieee80211_sta *sta,
2697 gfp_t gfp)
Zhu Yib481de92007-09-25 17:54:57 -07002698{
Tomas Winklere227cea2008-07-18 13:53:05 +08002699 struct iwl_lq_sta *lq_sta;
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002700 struct iwl_station_priv *sta_priv = (struct iwl_station_priv *) sta->drv_priv;
Ester Kummerbf403db2008-05-05 10:22:40 +08002701 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002702
Ester Kummerbf403db2008-05-05 10:22:40 +08002703 priv = (struct iwl_priv *)priv_rate;
Tomas Winklere1623442009-01-27 14:27:56 -08002704 IWL_DEBUG_RATE(priv, "create station rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -07002705
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002706 lq_sta = &sta_priv->lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002707
Tomas Winklerc33104f2008-01-14 17:46:21 -08002708 return lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002709}
2710
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002711/*
2712 * Called after adding a new station to initialize rate scaling
2713 */
2714void iwl_rs_rate_init(struct iwl_priv *priv, struct ieee80211_sta *sta, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07002715{
2716 int i, j;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002717 struct ieee80211_hw *hw = priv->hw;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002718 struct ieee80211_conf *conf = &priv->hw->conf;
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002719 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002720 struct iwl_station_priv *sta_priv;
2721 struct iwl_lq_sta *lq_sta;
2722 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07002723
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002724 sta_priv = (struct iwl_station_priv *) sta->drv_priv;
2725 lq_sta = &sta_priv->lq_sta;
2726 sband = hw->wiphy->bands[conf->channel->band];
2727
2728
2729 lq_sta->lq.sta_id = sta_id;
Reinette Chatre5ad13f82009-10-30 14:36:14 -07002730
2731 for (j = 0; j < LQ_SIZE; j++)
2732 for (i = 0; i < IWL_RATE_COUNT; i++)
2733 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
2734
Tomas Winklerc33104f2008-01-14 17:46:21 -08002735 lq_sta->flush_timer = 0;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002736 lq_sta->supp_rates = sta->supp_rates[sband->band];
Zhu Yib481de92007-09-25 17:54:57 -07002737 for (j = 0; j < LQ_SIZE; j++)
2738 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002739 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002740
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002741 IWL_DEBUG_RATE(priv, "LQ: *** rate scale station global init for station %d ***\n",
2742 sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002743 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2744 * the lowest or the highest rate.. Could consider using RSSI from
2745 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2746 * after assoc.. */
2747
Tomas Winklerc33104f2008-01-14 17:46:21 -08002748 lq_sta->is_dup = 0;
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002749 lq_sta->max_rate_idx = -1;
Abbas, Mohamed7d049e52009-01-20 21:33:53 -08002750 lq_sta->missed_rate_counter = IWL_MISSED_RATE_MAX;
Johannes Berg7e6a5882010-08-23 10:46:46 +02002751 lq_sta->is_green = rs_use_green(sta);
Guy Cohen39e88502008-04-23 17:14:57 -07002752 lq_sta->active_legacy_rate = priv->active_rate & ~(0x1000);
Johannes Berg8318d782008-01-24 19:38:38 +01002753 lq_sta->band = priv->band;
Ben Cahill77626352007-11-29 11:09:44 +08002754 /*
2755 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2756 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2757 */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002758 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2759 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002760 lq_sta->active_siso_rate &= ~((u16)0x2);
2761 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002762
Ben Cahill77626352007-11-29 11:09:44 +08002763 /* Same here */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002764 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2765 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002766 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2767 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2768
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002769 lq_sta->active_mimo3_rate = ht_cap->mcs.rx_mask[2] << 1;
2770 lq_sta->active_mimo3_rate |= ht_cap->mcs.rx_mask[2] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002771 lq_sta->active_mimo3_rate &= ~((u16)0x2);
2772 lq_sta->active_mimo3_rate <<= IWL_FIRST_OFDM_RATE;
2773
Tomas Winklere1623442009-01-27 14:27:56 -08002774 IWL_DEBUG_RATE(priv, "SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002775 lq_sta->active_siso_rate,
Guy Cohenfde0db32008-04-21 15:42:01 -07002776 lq_sta->active_mimo2_rate,
2777 lq_sta->active_mimo3_rate);
2778
Tomas Winklera96a27f2008-10-23 23:48:56 -07002779 /* These values will be overridden later */
Wey-Yi Guy3a23d692010-04-03 16:44:39 -07002780 lq_sta->lq.general_params.single_stream_ant_msk =
2781 first_antenna(priv->hw_params.valid_tx_ant);
2782 lq_sta->lq.general_params.dual_stream_ant_msk =
2783 priv->hw_params.valid_tx_ant &
2784 ~first_antenna(priv->hw_params.valid_tx_ant);
2785 if (!lq_sta->lq.general_params.dual_stream_ant_msk) {
2786 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2787 } else if (num_of_ant(priv->hw_params.valid_tx_ant) == 2) {
2788 lq_sta->lq.general_params.dual_stream_ant_msk =
2789 priv->hw_params.valid_tx_ant;
2790 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002791
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002792 /* as default allow aggregation for all tids */
2793 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002794 lq_sta->drv = priv;
Zhu Yib481de92007-09-25 17:54:57 -07002795
Daniel C Halperin50273092009-08-28 09:44:45 -07002796 /* Set last_txrate_idx to lowest rate */
2797 lq_sta->last_txrate_idx = rate_lowest_index(sband, sta);
2798 if (sband->band == IEEE80211_BAND_5GHZ)
2799 lq_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
Daniel C Halperine3949d62009-09-17 10:43:50 -07002800 lq_sta->is_agg = 0;
Mohamed Abbasd5e49032008-12-12 08:22:15 -08002801
Johannes Berg4b7679a2008-09-18 18:14:18 +02002802 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002803}
2804
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002805static void rs_fill_link_cmd(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08002806 struct iwl_lq_sta *lq_sta, u32 new_rate)
Zhu Yib481de92007-09-25 17:54:57 -07002807{
Tomas Winklere227cea2008-07-18 13:53:05 +08002808 struct iwl_scale_tbl_info tbl_type;
Zhu Yib481de92007-09-25 17:54:57 -07002809 int index = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002810 int rate_idx;
Zhu Yi1b696de2007-09-27 11:27:41 +08002811 int repeat_rate = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07002812 u8 ant_toggle_cnt = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002813 u8 use_ht_possible = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07002814 u8 valid_tx_ant = 0;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002815 struct iwl_link_quality_cmd *lq_cmd = &lq_sta->lq;
Zhu Yib481de92007-09-25 17:54:57 -07002816
Ben Cahill77626352007-11-29 11:09:44 +08002817 /* Override starting rate (index 0) if needed for debug purposes */
Guy Cohen39e88502008-04-23 17:14:57 -07002818 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Zhu Yi98d7e092007-09-27 11:27:42 +08002819
Guy Cohen39e88502008-04-23 17:14:57 -07002820 /* Interpret new_rate (rate_n_flags) */
2821 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
Zhu Yib481de92007-09-25 17:54:57 -07002822 &tbl_type, &rate_idx);
2823
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002824 if (priv && priv->bt_full_concurrent) {
2825 /* 1x1 only */
2826 tbl_type.ant_type =
2827 first_antenna(priv->hw_params.valid_tx_ant);
2828 }
2829
Ben Cahill77626352007-11-29 11:09:44 +08002830 /* How many times should we repeat the initial rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002831 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002832 ant_toggle_cnt = 1;
Zhu Yi1b696de2007-09-27 11:27:41 +08002833 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002834 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002835 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002836 }
Zhu Yib481de92007-09-25 17:54:57 -07002837
2838 lq_cmd->general_params.mimo_delimiter =
2839 is_mimo(tbl_type.lq_type) ? 1 : 0;
Ben Cahill77626352007-11-29 11:09:44 +08002840
2841 /* Fill 1st table entry (index 0) */
Guy Cohen39e88502008-04-23 17:14:57 -07002842 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002843
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002844 if (num_of_ant(tbl_type.ant_type) == 1) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002845 lq_cmd->general_params.single_stream_ant_msk =
2846 tbl_type.ant_type;
2847 } else if (num_of_ant(tbl_type.ant_type) == 2) {
2848 lq_cmd->general_params.dual_stream_ant_msk =
2849 tbl_type.ant_type;
2850 } /* otherwise we don't modify the existing value */
Zhu Yib481de92007-09-25 17:54:57 -07002851
2852 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002853 repeat_rate--;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07002854 if (priv) {
2855 if (priv->bt_full_concurrent)
2856 valid_tx_ant = ANT_A;
2857 else
2858 valid_tx_ant = priv->hw_params.valid_tx_ant;
2859 }
Guy Cohenaade00c2008-04-23 17:14:59 -07002860
Ben Cahill77626352007-11-29 11:09:44 +08002861 /* Fill rest of rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002862 while (index < LINK_QUAL_MAX_RETRY_NUM) {
Ben Cahill77626352007-11-29 11:09:44 +08002863 /* Repeat initial/next rate.
2864 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2865 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
Zhu Yi1b696de2007-09-27 11:27:41 +08002866 while (repeat_rate > 0 && (index < LINK_QUAL_MAX_RETRY_NUM)) {
Zhu Yib481de92007-09-25 17:54:57 -07002867 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002868 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2869 ant_toggle_cnt++;
2870 else if (priv &&
2871 rs_toggle_antenna(valid_tx_ant,
2872 &new_rate, &tbl_type))
2873 ant_toggle_cnt = 1;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002874 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002875
Ben Cahill77626352007-11-29 11:09:44 +08002876 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002877 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002878
2879 /* Fill next table entry */
Zhu Yib481de92007-09-25 17:54:57 -07002880 lq_cmd->rs_table[index].rate_n_flags =
Guy Cohen39e88502008-04-23 17:14:57 -07002881 cpu_to_le32(new_rate);
Zhu Yi1b696de2007-09-27 11:27:41 +08002882 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002883 index++;
2884 }
2885
Guy Cohen39e88502008-04-23 17:14:57 -07002886 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
Zhu Yib481de92007-09-25 17:54:57 -07002887 &rate_idx);
2888
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002889 if (priv && priv->bt_full_concurrent) {
2890 /* 1x1 only */
2891 tbl_type.ant_type =
2892 first_antenna(priv->hw_params.valid_tx_ant);
2893 }
2894
Ben Cahill77626352007-11-29 11:09:44 +08002895 /* Indicate to uCode which entries might be MIMO.
2896 * If initial rate was MIMO, this will finally end up
2897 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Zhu Yib481de92007-09-25 17:54:57 -07002898 if (is_mimo(tbl_type.lq_type))
2899 lq_cmd->general_params.mimo_delimiter = index;
2900
Ben Cahill77626352007-11-29 11:09:44 +08002901 /* Get next rate */
Guy Cohen39e88502008-04-23 17:14:57 -07002902 new_rate = rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2903 use_ht_possible);
Zhu Yib481de92007-09-25 17:54:57 -07002904
Ben Cahill77626352007-11-29 11:09:44 +08002905 /* How many times should we repeat the next rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002906 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002907 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2908 ant_toggle_cnt++;
2909 else if (priv &&
2910 rs_toggle_antenna(valid_tx_ant,
2911 &new_rate, &tbl_type))
2912 ant_toggle_cnt = 1;
2913
Zhu Yi1b696de2007-09-27 11:27:41 +08002914 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002915 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002916 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002917 }
Zhu Yib481de92007-09-25 17:54:57 -07002918
Ben Cahill77626352007-11-29 11:09:44 +08002919 /* Don't allow HT rates after next pass.
2920 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Zhu Yib481de92007-09-25 17:54:57 -07002921 use_ht_possible = 0;
2922
Ben Cahill77626352007-11-29 11:09:44 +08002923 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002924 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002925
2926 /* Fill next table entry */
Guy Cohen39e88502008-04-23 17:14:57 -07002927 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002928
2929 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002930 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002931 }
2932
Wey-Yi Guy4d80d722009-10-02 13:44:01 -07002933 lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07002934 lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
Wey-Yi Guy74697012010-07-28 09:18:54 -07002935
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07002936 lq_cmd->agg_params.agg_time_limit =
2937 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
Wey-Yi Guy74697012010-07-28 09:18:54 -07002938 /*
2939 * overwrite if needed, pass aggregation time limit
2940 * to uCode in uSec
2941 */
2942 if (priv && priv->cfg->agg_time_limit &&
2943 priv->cfg->agg_time_limit >= LINK_QUAL_AGG_TIME_LIMIT_MIN &&
2944 priv->cfg->agg_time_limit <= LINK_QUAL_AGG_TIME_LIMIT_MAX)
2945 lq_cmd->agg_params.agg_time_limit =
2946 cpu_to_le16(priv->cfg->agg_time_limit);
Zhu Yib481de92007-09-25 17:54:57 -07002947}
2948
Johannes Berg4b7679a2008-09-18 18:14:18 +02002949static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Zhu Yib481de92007-09-25 17:54:57 -07002950{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002951 return hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002952}
2953/* rate scale requires free function to be implemented */
2954static void rs_free(void *priv_rate)
2955{
2956 return;
2957}
2958
Johannes Berg4b7679a2008-09-18 18:14:18 +02002959static void rs_free_sta(void *priv_r, struct ieee80211_sta *sta,
2960 void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002961{
Rami Rosen45527c22008-10-07 09:50:01 +02002962 struct iwl_priv *priv __maybe_unused = priv_r;
Zhu Yib481de92007-09-25 17:54:57 -07002963
Tomas Winklere1623442009-01-27 14:27:56 -08002964 IWL_DEBUG_RATE(priv, "enter\n");
Tomas Winklere1623442009-01-27 14:27:56 -08002965 IWL_DEBUG_RATE(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002966}
2967
2968
Zhu Yi93dc6462007-09-27 11:27:37 +08002969#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi5ae212c2007-09-27 11:27:38 +08002970static int open_file_generic(struct inode *inode, struct file *file)
2971{
2972 file->private_data = inode->i_private;
2973 return 0;
2974}
Tomas Winklere227cea2008-07-18 13:53:05 +08002975static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
2976 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +08002977{
Ester Kummerbf403db2008-05-05 10:22:40 +08002978 struct iwl_priv *priv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002979 u8 valid_tx_ant;
2980 u8 ant_sel_tx;
Ester Kummerbf403db2008-05-05 10:22:40 +08002981
2982 priv = lq_sta->drv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002983 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen39e88502008-04-23 17:14:57 -07002984 if (lq_sta->dbg_fixed_rate) {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002985 ant_sel_tx =
2986 ((lq_sta->dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK)
2987 >> RATE_MCS_ANT_POS);
2988 if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
Guy Cohen39e88502008-04-23 17:14:57 -07002989 *rate_n_flags = lq_sta->dbg_fixed_rate;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002990 IWL_DEBUG_RATE(priv, "Fixed rate ON\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002991 } else {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002992 lq_sta->dbg_fixed_rate = 0;
2993 IWL_ERR(priv,
2994 "Invalid antenna selection 0x%X, Valid is 0x%X\n",
2995 ant_sel_tx, valid_tx_ant);
2996 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002997 }
Guy Cohen39e88502008-04-23 17:14:57 -07002998 } else {
Tomas Winklere1623442009-01-27 14:27:56 -08002999 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Zhu Yi98d7e092007-09-27 11:27:42 +08003000 }
Zhu Yi98d7e092007-09-27 11:27:42 +08003001}
3002
3003static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
3004 const char __user *user_buf, size_t count, loff_t *ppos)
3005{
Tomas Winklere227cea2008-07-18 13:53:05 +08003006 struct iwl_lq_sta *lq_sta = file->private_data;
Ester Kummerbf403db2008-05-05 10:22:40 +08003007 struct iwl_priv *priv;
Zhu Yi98d7e092007-09-27 11:27:42 +08003008 char buf[64];
3009 int buf_size;
3010 u32 parsed_rate;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003011 struct iwl_station_priv *sta_priv =
3012 container_of(lq_sta, struct iwl_station_priv, lq_sta);
3013 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Zhu Yi98d7e092007-09-27 11:27:42 +08003014
Ester Kummerbf403db2008-05-05 10:22:40 +08003015 priv = lq_sta->drv;
Zhu Yi98d7e092007-09-27 11:27:42 +08003016 memset(buf, 0, sizeof(buf));
3017 buf_size = min(count, sizeof(buf) - 1);
3018 if (copy_from_user(buf, user_buf, buf_size))
3019 return -EFAULT;
3020
3021 if (sscanf(buf, "%x", &parsed_rate) == 1)
Guy Cohen39e88502008-04-23 17:14:57 -07003022 lq_sta->dbg_fixed_rate = parsed_rate;
Zhu Yi98d7e092007-09-27 11:27:42 +08003023 else
Guy Cohen39e88502008-04-23 17:14:57 -07003024 lq_sta->dbg_fixed_rate = 0;
Zhu Yi98d7e092007-09-27 11:27:42 +08003025
Guy Cohen39e88502008-04-23 17:14:57 -07003026 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
3027 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
3028 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
3029 lq_sta->active_mimo3_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Zhu Yi98d7e092007-09-27 11:27:42 +08003030
Tomas Winklere1623442009-01-27 14:27:56 -08003031 IWL_DEBUG_RATE(priv, "sta_id %d rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07003032 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08003033
Guy Cohen39e88502008-04-23 17:14:57 -07003034 if (lq_sta->dbg_fixed_rate) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07003035 rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Johannes Berg7e6a5882010-08-23 10:46:46 +02003036 iwl_send_lq_cmd(lq_sta->drv, ctx, &lq_sta->lq, CMD_ASYNC,
3037 false);
Zhu Yi98d7e092007-09-27 11:27:42 +08003038 }
3039
3040 return count;
3041}
Zhu Yi0209dc12007-09-27 11:27:43 +08003042
Zhu Yi5ae212c2007-09-27 11:27:38 +08003043static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
3044 char __user *user_buf, size_t count, loff_t *ppos)
3045{
Frank Seidela412c802009-03-01 20:25:38 +01003046 char *buff;
Zhu Yi5ae212c2007-09-27 11:27:38 +08003047 int desc = 0;
3048 int i = 0;
Wey-Yi Guy12b96812009-04-08 11:39:27 -07003049 int index = 0;
Frank Seidela412c802009-03-01 20:25:38 +01003050 ssize_t ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08003051
Tomas Winklere227cea2008-07-18 13:53:05 +08003052 struct iwl_lq_sta *lq_sta = file->private_data;
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07003053 struct iwl_priv *priv;
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07003054 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003055
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07003056 priv = lq_sta->drv;
Frank Seidela412c802009-03-01 20:25:38 +01003057 buff = kmalloc(1024, GFP_KERNEL);
3058 if (!buff)
3059 return -ENOMEM;
3060
Tomas Winklerc33104f2008-01-14 17:46:21 -08003061 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
Zhu Yi98d7e092007-09-27 11:27:42 +08003062 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003063 lq_sta->total_failed, lq_sta->total_success,
Guy Cohen39e88502008-04-23 17:14:57 -07003064 lq_sta->active_legacy_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08003065 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07003066 lq_sta->dbg_fixed_rate);
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07003067 desc += sprintf(buff+desc, "valid_tx_ant %s%s%s\n",
3068 (priv->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
3069 (priv->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
3070 (priv->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07003071 desc += sprintf(buff+desc, "lq type %s\n",
3072 (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
3073 if (is_Ht(tbl->lq_type)) {
3074 desc += sprintf(buff+desc, " %s",
3075 (is_siso(tbl->lq_type)) ? "SISO" :
3076 ((is_mimo2(tbl->lq_type)) ? "MIMO2" : "MIMO3"));
3077 desc += sprintf(buff+desc, " %s",
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07003078 (tbl->is_ht40) ? "40MHz" : "20MHz");
Daniel C Halperine3949d62009-09-17 10:43:50 -07003079 desc += sprintf(buff+desc, " %s %s %s\n", (tbl->is_SGI) ? "SGI" : "",
3080 (lq_sta->is_green) ? "GF enabled" : "",
3081 (lq_sta->is_agg) ? "AGG on" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07003082 }
Wey-Yi Guy12b96812009-04-08 11:39:27 -07003083 desc += sprintf(buff+desc, "last tx rate=0x%X\n",
3084 lq_sta->last_rate_n_flags);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003085 desc += sprintf(buff+desc, "general:"
3086 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003087 lq_sta->lq.general_params.flags,
3088 lq_sta->lq.general_params.mimo_delimiter,
3089 lq_sta->lq.general_params.single_stream_ant_msk,
3090 lq_sta->lq.general_params.dual_stream_ant_msk);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003091
3092 desc += sprintf(buff+desc, "agg:"
3093 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003094 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
3095 lq_sta->lq.agg_params.agg_dis_start_th,
3096 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003097
3098 desc += sprintf(buff+desc,
3099 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003100 lq_sta->lq.general_params.start_rate_index[0],
3101 lq_sta->lq.general_params.start_rate_index[1],
3102 lq_sta->lq.general_params.start_rate_index[2],
3103 lq_sta->lq.general_params.start_rate_index[3]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003104
Wey-Yi Guy12b96812009-04-08 11:39:27 -07003105 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
3106 index = iwl_hwrate_to_plcp_idx(
3107 le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags));
3108 if (is_legacy(tbl->lq_type)) {
3109 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps\n",
3110 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
3111 iwl_rate_mcs[index].mbps);
3112 } else {
3113 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps (%s)\n",
3114 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
3115 iwl_rate_mcs[index].mbps, iwl_rate_mcs[index].mcs);
3116 }
3117 }
Zhu Yi5ae212c2007-09-27 11:27:38 +08003118
Frank Seidela412c802009-03-01 20:25:38 +01003119 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3120 kfree(buff);
3121 return ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08003122}
3123
3124static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Zhu Yi98d7e092007-09-27 11:27:42 +08003125 .write = rs_sta_dbgfs_scale_table_write,
Zhu Yi5ae212c2007-09-27 11:27:38 +08003126 .read = rs_sta_dbgfs_scale_table_read,
3127 .open = open_file_generic,
3128};
Zhu Yi0209dc12007-09-27 11:27:43 +08003129static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
3130 char __user *user_buf, size_t count, loff_t *ppos)
3131{
Frank Seidela412c802009-03-01 20:25:38 +01003132 char *buff;
Zhu Yi0209dc12007-09-27 11:27:43 +08003133 int desc = 0;
3134 int i, j;
Frank Seidela412c802009-03-01 20:25:38 +01003135 ssize_t ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08003136
Tomas Winklere227cea2008-07-18 13:53:05 +08003137 struct iwl_lq_sta *lq_sta = file->private_data;
Frank Seidela412c802009-03-01 20:25:38 +01003138
3139 buff = kmalloc(1024, GFP_KERNEL);
3140 if (!buff)
3141 return -ENOMEM;
3142
Zhu Yi0209dc12007-09-27 11:27:43 +08003143 for (i = 0; i < LQ_SIZE; i++) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07003144 desc += sprintf(buff+desc,
3145 "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
Zhu Yi0209dc12007-09-27 11:27:43 +08003146 "rate=0x%X\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08003147 lq_sta->active_tbl == i ? "*" : "x",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003148 lq_sta->lq_info[i].lq_type,
3149 lq_sta->lq_info[i].is_SGI,
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07003150 lq_sta->lq_info[i].is_ht40,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003151 lq_sta->lq_info[i].is_dup,
Wey-Yi Guy2681b202009-05-21 13:44:22 -07003152 lq_sta->is_green,
Guy Cohen39e88502008-04-23 17:14:57 -07003153 lq_sta->lq_info[i].current_rate);
Zhu Yi0209dc12007-09-27 11:27:43 +08003154 for (j = 0; j < IWL_RATE_COUNT; j++) {
3155 desc += sprintf(buff+desc,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003156 "counter=%d success=%d %%=%d\n",
3157 lq_sta->lq_info[i].win[j].counter,
3158 lq_sta->lq_info[i].win[j].success_counter,
3159 lq_sta->lq_info[i].win[j].success_ratio);
Zhu Yi0209dc12007-09-27 11:27:43 +08003160 }
3161 }
Frank Seidela412c802009-03-01 20:25:38 +01003162 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3163 kfree(buff);
3164 return ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08003165}
3166
3167static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
3168 .read = rs_sta_dbgfs_stats_table_read,
3169 .open = open_file_generic,
3170};
Zhu Yi5ae212c2007-09-27 11:27:38 +08003171
Wey-Yi Guy38167452009-05-08 13:44:43 -07003172static ssize_t rs_sta_dbgfs_rate_scale_data_read(struct file *file,
3173 char __user *user_buf, size_t count, loff_t *ppos)
3174{
3175 char buff[120];
3176 int desc = 0;
3177 ssize_t ret;
3178
3179 struct iwl_lq_sta *lq_sta = file->private_data;
3180 struct iwl_priv *priv;
3181 struct iwl_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
3182
3183 priv = lq_sta->drv;
3184
3185 if (is_Ht(tbl->lq_type))
3186 desc += sprintf(buff+desc,
3187 "Bit Rate= %d Mb/s\n",
3188 tbl->expected_tpt[lq_sta->last_txrate_idx]);
3189 else
3190 desc += sprintf(buff+desc,
3191 "Bit Rate= %d Mb/s\n",
3192 iwl_rates[lq_sta->last_txrate_idx].ieee >> 1);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003193
3194 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3195 return ret;
3196}
3197
3198static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
3199 .read = rs_sta_dbgfs_rate_scale_data_read,
3200 .open = open_file_generic,
3201};
3202
Zhu Yi93dc6462007-09-27 11:27:37 +08003203static void rs_add_debugfs(void *priv, void *priv_sta,
3204 struct dentry *dir)
3205{
Tomas Winklere227cea2008-07-18 13:53:05 +08003206 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08003207 lq_sta->rs_sta_dbgfs_scale_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003208 debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003209 lq_sta, &rs_sta_dbgfs_scale_table_ops);
3210 lq_sta->rs_sta_dbgfs_stats_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003211 debugfs_create_file("rate_stats_table", S_IRUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003212 lq_sta, &rs_sta_dbgfs_stats_table_ops);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003213 lq_sta->rs_sta_dbgfs_rate_scale_data_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003214 debugfs_create_file("rate_scale_data", S_IRUSR, dir,
Wey-Yi Guy38167452009-05-08 13:44:43 -07003215 lq_sta, &rs_sta_dbgfs_rate_scale_data_ops);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003216 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003217 debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003218 &lq_sta->tx_agg_tid_en);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003219
Zhu Yi93dc6462007-09-27 11:27:37 +08003220}
3221
3222static void rs_remove_debugfs(void *priv, void *priv_sta)
3223{
Tomas Winklere227cea2008-07-18 13:53:05 +08003224 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08003225 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
3226 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003227 debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003228 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
Zhu Yi93dc6462007-09-27 11:27:37 +08003229}
3230#endif
3231
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003232/*
3233 * Initialization of rate scaling information is done by driver after
3234 * the station is added. Since mac80211 calls this function before a
3235 * station is added we ignore it.
3236 */
3237static void rs_rate_init_stub(void *priv_r, struct ieee80211_supported_band *sband,
3238 struct ieee80211_sta *sta, void *priv_sta)
3239{
3240}
Zhu Yib481de92007-09-25 17:54:57 -07003241static struct rate_control_ops rs_ops = {
3242 .module = NULL,
3243 .name = RS_NAME,
3244 .tx_status = rs_tx_status,
3245 .get_rate = rs_get_rate,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003246 .rate_init = rs_rate_init_stub,
Zhu Yib481de92007-09-25 17:54:57 -07003247 .alloc = rs_alloc,
3248 .free = rs_free,
3249 .alloc_sta = rs_alloc_sta,
3250 .free_sta = rs_free_sta,
Zhu Yi93dc6462007-09-27 11:27:37 +08003251#ifdef CONFIG_MAC80211_DEBUGFS
3252 .add_sta_debugfs = rs_add_debugfs,
3253 .remove_sta_debugfs = rs_remove_debugfs,
3254#endif
Zhu Yib481de92007-09-25 17:54:57 -07003255};
3256
Tomas Winklere227cea2008-07-18 13:53:05 +08003257int iwlagn_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -07003258{
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003259 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003260}
3261
Tomas Winklere227cea2008-07-18 13:53:05 +08003262void iwlagn_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -07003263{
3264 ieee80211_rate_control_unregister(&rs_ops);
3265}
3266