blob: a4563389bad0db18eb5f2106903e85c3521f6ad2 [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 Guy80e91582010-08-03 08:23:32 -070085static void rs_stay_in_table(struct iwl_lq_sta *lq_sta);
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;
Andy Lutomirski24110542010-07-25 13:14:29 -0400304 u32 load = rs_tl_get_load(lq_data, tid);
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800305
Andy Lutomirski24110542010-07-25 13:14:29 -0400306 if (load > IWL_AGG_LOAD_THRESHOLD) {
Tomas Winklere1623442009-01-27 14:27:56 -0800307 IWL_DEBUG_HT(priv, "Starting Tx agg: STA: %pM tid: %d\n",
Johannes Berge1749612008-10-27 15:59:26 -0700308 sta->addr, tid);
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800309 ret = ieee80211_start_tx_ba_session(sta, tid);
310 if (ret == -EAGAIN) {
311 /*
312 * driver and mac80211 is out of sync
313 * this might be cause by reloading firmware
314 * stop the tx ba session here
315 */
Andy Lutomirski24110542010-07-25 13:14:29 -0400316 IWL_ERR(priv, "Fail start Tx agg on tid: %d\n",
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800317 tid);
Johannes Berg6a8579d2010-05-27 14:41:07 +0200318 ieee80211_stop_tx_ba_session(sta, tid);
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800319 }
Andy Lutomirski24110542010-07-25 13:14:29 -0400320 } else {
321 IWL_ERR(priv, "Aggregation not enabled for tid %d "
322 "because load = %u\n", tid, load);
323 }
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700324 return ret;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200325}
326
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700327static void rs_tl_turn_on_agg(struct iwl_priv *priv, u8 tid,
Tomas Winklere227cea2008-07-18 13:53:05 +0800328 struct iwl_lq_sta *lq_data,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200329 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200330{
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -0700331 if (tid < TID_MAX_LOAD_COUNT)
332 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
333 else
334 IWL_ERR(priv, "tid exceeds max load count: %d/%d\n",
335 tid, TID_MAX_LOAD_COUNT);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200336}
337
Guy Cohen39e88502008-04-23 17:14:57 -0700338static inline int get_num_of_ant_from_rate(u32 rate_n_flags)
Guy Cohenfde0db32008-04-21 15:42:01 -0700339{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300340 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
341 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
342 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
Guy Cohenfde0db32008-04-21 15:42:01 -0700343}
344
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700345/*
346 * Static function to get the expected throughput from an iwl_scale_tbl_info
347 * that wraps a NULL pointer check
348 */
349static s32 get_expected_tpt(struct iwl_scale_tbl_info *tbl, int rs_index)
350{
351 if (tbl->expected_tpt)
352 return tbl->expected_tpt[rs_index];
353 return 0;
354}
355
Ben Cahill77626352007-11-29 11:09:44 +0800356/**
357 * rs_collect_tx_data - Update the success/failure sliding window
358 *
359 * We keep a sliding window of the last 62 packets transmitted
360 * at this rate. window->data contains the bitmask of successful
361 * packets.
362 */
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700363static int rs_collect_tx_data(struct iwl_scale_tbl_info *tbl,
364 int scale_index, int attempts, int successes)
Zhu Yib481de92007-09-25 17:54:57 -0700365{
Tomas Winklere227cea2008-07-18 13:53:05 +0800366 struct iwl_rate_scale_data *window = NULL;
Guy Cohen39e88502008-04-23 17:14:57 -0700367 static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1));
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700368 s32 fail_count, tpt;
Zhu Yib481de92007-09-25 17:54:57 -0700369
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800370 if (scale_index < 0 || scale_index >= IWL_RATE_COUNT)
371 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700372
Daniel C Halperine3949d62009-09-17 10:43:50 -0700373 /* Select window for current tx bit rate */
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700374 window = &(tbl->win[scale_index]);
375
376 /* Get expected throughput */
377 tpt = get_expected_tpt(tbl, scale_index);
Zhu Yib481de92007-09-25 17:54:57 -0700378
Ben Cahill77626352007-11-29 11:09:44 +0800379 /*
380 * Keep track of only the latest 62 tx frame attempts in this rate's
381 * history window; anything older isn't really relevant any more.
382 * If we have filled up the sliding window, drop the oldest attempt;
383 * if the oldest attempt (highest bit in bitmap) shows "success",
384 * subtract "1" from the success counter (this is the main reason
385 * we keep these bitmaps!).
386 */
Daniel C Halperine3949d62009-09-17 10:43:50 -0700387 while (attempts > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700388 if (window->counter >= IWL_RATE_MAX_WINDOW) {
389
390 /* remove earliest */
391 window->counter = IWL_RATE_MAX_WINDOW - 1;
392
Ron Rindjunsky99556432008-01-28 14:07:25 +0200393 if (window->data & mask) {
394 window->data &= ~mask;
Guy Cohen39e88502008-04-23 17:14:57 -0700395 window->success_counter--;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200396 }
Zhu Yib481de92007-09-25 17:54:57 -0700397 }
Zhu Yib481de92007-09-25 17:54:57 -0700398
Ron Rindjunsky99556432008-01-28 14:07:25 +0200399 /* Increment frames-attempted counter */
400 window->counter++;
Ben Cahill77626352007-11-29 11:09:44 +0800401
Daniel C Halperine3949d62009-09-17 10:43:50 -0700402 /* Shift bitmap by one frame to throw away oldest history */
Guy Cohen90d77952008-09-09 10:54:53 +0800403 window->data <<= 1;
Daniel C Halperine3949d62009-09-17 10:43:50 -0700404
405 /* Mark the most recent #successes attempts as successful */
Ron Rindjunsky99556432008-01-28 14:07:25 +0200406 if (successes > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700407 window->success_counter++;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200408 window->data |= 0x1;
409 successes--;
410 }
411
Daniel C Halperine3949d62009-09-17 10:43:50 -0700412 attempts--;
Zhu Yib481de92007-09-25 17:54:57 -0700413 }
414
Ben Cahill77626352007-11-29 11:09:44 +0800415 /* Calculate current success ratio, avoid divide-by-0! */
Zhu Yib481de92007-09-25 17:54:57 -0700416 if (window->counter > 0)
417 window->success_ratio = 128 * (100 * window->success_counter)
418 / window->counter;
419 else
420 window->success_ratio = IWL_INVALID_VALUE;
421
422 fail_count = window->counter - window->success_counter;
423
Ben Cahill77626352007-11-29 11:09:44 +0800424 /* Calculate average throughput, if we have enough history. */
Zhu Yib481de92007-09-25 17:54:57 -0700425 if ((fail_count >= IWL_RATE_MIN_FAILURE_TH) ||
426 (window->success_counter >= IWL_RATE_MIN_SUCCESS_TH))
427 window->average_tpt = (window->success_ratio * tpt + 64) / 128;
428 else
429 window->average_tpt = IWL_INVALID_VALUE;
430
Ben Cahill77626352007-11-29 11:09:44 +0800431 /* Tag this window as having been updated */
Zhu Yib481de92007-09-25 17:54:57 -0700432 window->stamp = jiffies;
433
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800434 return 0;
Zhu Yib481de92007-09-25 17:54:57 -0700435}
436
Ben Cahill77626352007-11-29 11:09:44 +0800437/*
438 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
439 */
Guy Cohen39e88502008-04-23 17:14:57 -0700440/* FIXME:RS:remove this function and put the flags statically in the table */
Tomas Winkler978785a2008-12-19 10:37:31 +0800441static u32 rate_n_flags_from_tbl(struct iwl_priv *priv,
442 struct iwl_scale_tbl_info *tbl,
443 int index, u8 use_green)
Zhu Yib481de92007-09-25 17:54:57 -0700444{
Guy Cohen39e88502008-04-23 17:14:57 -0700445 u32 rate_n_flags = 0;
446
Zhu Yib481de92007-09-25 17:54:57 -0700447 if (is_legacy(tbl->lq_type)) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800448 rate_n_flags = iwl_rates[index].plcp;
Zhu Yib481de92007-09-25 17:54:57 -0700449 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -0700450 rate_n_flags |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700451
Guy Cohenfde0db32008-04-21 15:42:01 -0700452 } else if (is_Ht(tbl->lq_type)) {
453 if (index > IWL_LAST_OFDM_RATE) {
Tomas Winkler978785a2008-12-19 10:37:31 +0800454 IWL_ERR(priv, "Invalid HT rate index %d\n", index);
Zhu Yib481de92007-09-25 17:54:57 -0700455 index = IWL_LAST_OFDM_RATE;
Guy Cohenfde0db32008-04-21 15:42:01 -0700456 }
Guy Cohen39e88502008-04-23 17:14:57 -0700457 rate_n_flags = RATE_MCS_HT_MSK;
Guy Cohenfde0db32008-04-21 15:42:01 -0700458
459 if (is_siso(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800460 rate_n_flags |= iwl_rates[index].plcp_siso;
Guy Cohenfde0db32008-04-21 15:42:01 -0700461 else if (is_mimo2(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800462 rate_n_flags |= iwl_rates[index].plcp_mimo2;
Guy Cohenfde0db32008-04-21 15:42:01 -0700463 else
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800464 rate_n_flags |= iwl_rates[index].plcp_mimo3;
Zhu Yib481de92007-09-25 17:54:57 -0700465 } else {
Tomas Winkler978785a2008-12-19 10:37:31 +0800466 IWL_ERR(priv, "Invalid tbl->lq_type %d\n", tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700467 }
468
Guy Cohen39e88502008-04-23 17:14:57 -0700469 rate_n_flags |= ((tbl->ant_type << RATE_MCS_ANT_POS) &
Guy Cohenfde0db32008-04-21 15:42:01 -0700470 RATE_MCS_ANT_ABC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700471
Guy Cohen39e88502008-04-23 17:14:57 -0700472 if (is_Ht(tbl->lq_type)) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700473 if (tbl->is_ht40) {
Guy Cohen39e88502008-04-23 17:14:57 -0700474 if (tbl->is_dup)
475 rate_n_flags |= RATE_MCS_DUP_MSK;
476 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700477 rate_n_flags |= RATE_MCS_HT40_MSK;
Guy Cohen39e88502008-04-23 17:14:57 -0700478 }
479 if (tbl->is_SGI)
480 rate_n_flags |= RATE_MCS_SGI_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700481
Guy Cohen39e88502008-04-23 17:14:57 -0700482 if (use_green) {
483 rate_n_flags |= RATE_MCS_GF_MSK;
484 if (is_siso(tbl->lq_type) && tbl->is_SGI) {
485 rate_n_flags &= ~RATE_MCS_SGI_MSK;
Tomas Winkler978785a2008-12-19 10:37:31 +0800486 IWL_ERR(priv, "GF was set with SGI:SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -0700487 }
488 }
Zhu Yib481de92007-09-25 17:54:57 -0700489 }
Guy Cohen39e88502008-04-23 17:14:57 -0700490 return rate_n_flags;
Zhu Yib481de92007-09-25 17:54:57 -0700491}
492
Ben Cahill77626352007-11-29 11:09:44 +0800493/*
494 * Interpret uCode API's rate_n_flags format,
495 * fill "search" or "active" tx mode table.
496 */
Guy Cohen39e88502008-04-23 17:14:57 -0700497static int rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
Johannes Berg8318d782008-01-24 19:38:38 +0100498 enum ieee80211_band band,
Tomas Winklere227cea2008-07-18 13:53:05 +0800499 struct iwl_scale_tbl_info *tbl,
Zhu Yib481de92007-09-25 17:54:57 -0700500 int *rate_idx)
501{
Guy Cohen39e88502008-04-23 17:14:57 -0700502 u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
503 u8 num_of_ant = get_num_of_ant_from_rate(rate_n_flags);
504 u8 mcs;
Zhu Yib481de92007-09-25 17:54:57 -0700505
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700506 memset(tbl, 0, sizeof(struct iwl_scale_tbl_info));
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800507 *rate_idx = iwl_hwrate_to_plcp_idx(rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700508
Guy Cohenfde0db32008-04-21 15:42:01 -0700509 if (*rate_idx == IWL_RATE_INVALID) {
Zhu Yib481de92007-09-25 17:54:57 -0700510 *rate_idx = -1;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800511 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700512 }
Ben Cahill77626352007-11-29 11:09:44 +0800513 tbl->is_SGI = 0; /* default legacy setup */
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700514 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700515 tbl->is_dup = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -0700516 tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
517 tbl->lq_type = LQ_NONE;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700518 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700519
Ben Cahill77626352007-11-29 11:09:44 +0800520 /* legacy rate format */
Guy Cohen39e88502008-04-23 17:14:57 -0700521 if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700522 if (num_of_ant == 1) {
Johannes Berg8318d782008-01-24 19:38:38 +0100523 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700524 tbl->lq_type = LQ_A;
525 else
526 tbl->lq_type = LQ_G;
Zhu Yib481de92007-09-25 17:54:57 -0700527 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700528 /* HT rate format */
Zhu Yib481de92007-09-25 17:54:57 -0700529 } else {
Guy Cohen39e88502008-04-23 17:14:57 -0700530 if (rate_n_flags & RATE_MCS_SGI_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700531 tbl->is_SGI = 1;
532
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700533 if ((rate_n_flags & RATE_MCS_HT40_MSK) ||
Guy Cohen39e88502008-04-23 17:14:57 -0700534 (rate_n_flags & RATE_MCS_DUP_MSK))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700535 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -0700536
Guy Cohen39e88502008-04-23 17:14:57 -0700537 if (rate_n_flags & RATE_MCS_DUP_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700538 tbl->is_dup = 1;
Guy Cohenfde0db32008-04-21 15:42:01 -0700539
Guy Cohen39e88502008-04-23 17:14:57 -0700540 mcs = rs_extract_rate(rate_n_flags);
Guy Cohenfde0db32008-04-21 15:42:01 -0700541
Guy Cohen39e88502008-04-23 17:14:57 -0700542 /* SISO */
543 if (mcs <= IWL_RATE_SISO_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700544 if (num_of_ant == 1)
545 tbl->lq_type = LQ_SISO; /*else NONE*/
546 /* MIMO2 */
Guy Cohen39e88502008-04-23 17:14:57 -0700547 } else if (mcs <= IWL_RATE_MIMO2_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700548 if (num_of_ant == 2)
549 tbl->lq_type = LQ_MIMO2;
550 /* MIMO3 */
551 } else {
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700552 if (num_of_ant == 3) {
553 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Guy Cohenfde0db32008-04-21 15:42:01 -0700554 tbl->lq_type = LQ_MIMO3;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700555 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700556 }
Zhu Yib481de92007-09-25 17:54:57 -0700557 }
558 return 0;
559}
Guy Cohenaade00c2008-04-23 17:14:59 -0700560
561/* switch to another antenna/antennas and return 1 */
562/* if no other valid antenna found, return 0 */
563static int rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
Tomas Winklere227cea2008-07-18 13:53:05 +0800564 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700565{
Guy Cohenaade00c2008-04-23 17:14:59 -0700566 u8 new_ant_type;
567
568 if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
569 return 0;
570
571 if (!rs_is_valid_ant(valid_ant, tbl->ant_type))
572 return 0;
573
574 new_ant_type = ant_toggle_lookup[tbl->ant_type];
575
576 while ((new_ant_type != tbl->ant_type) &&
577 !rs_is_valid_ant(valid_ant, new_ant_type))
578 new_ant_type = ant_toggle_lookup[new_ant_type];
579
580 if (new_ant_type == tbl->ant_type)
581 return 0;
582
583 tbl->ant_type = new_ant_type;
584 *rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
585 *rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
586 return 1;
Zhu Yib481de92007-09-25 17:54:57 -0700587}
588
Daniel C Halperinb2617932009-08-13 13:30:59 -0700589/**
590 * Green-field mode is valid if the station supports it and
591 * there are no non-GF stations present in the BSS.
592 */
593static inline u8 rs_use_green(struct ieee80211_sta *sta,
Johannes Bergfad95bf2009-09-11 10:38:15 -0700594 struct iwl_ht_config *ht_conf)
Zhu Yib481de92007-09-25 17:54:57 -0700595{
Daniel C Halperinb2617932009-08-13 13:30:59 -0700596 return (sta->ht_cap.cap & IEEE80211_HT_CAP_GRN_FLD) &&
597 !(ht_conf->non_GF_STA_present);
Guy Cohenf935a6d2008-04-23 17:15:02 -0700598}
Zhu Yib481de92007-09-25 17:54:57 -0700599
600/**
601 * rs_get_supported_rates - get the available rates
602 *
603 * if management frame or broadcast frame only return
604 * basic available rates.
605 *
606 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800607static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
608 struct ieee80211_hdr *hdr,
609 enum iwl_table_type rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700610{
Guy Coheneecd6e52008-04-23 17:14:58 -0700611 if (is_legacy(rate_type)) {
612 return lq_sta->active_legacy_rate;
613 } else {
614 if (is_siso(rate_type))
615 return lq_sta->active_siso_rate;
616 else if (is_mimo2(rate_type))
617 return lq_sta->active_mimo2_rate;
618 else
619 return lq_sta->active_mimo3_rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800620 }
Zhu Yib481de92007-09-25 17:54:57 -0700621}
622
Ester Kummerbf403db2008-05-05 10:22:40 +0800623static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
624 int rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700625{
626 u8 high = IWL_RATE_INVALID;
627 u8 low = IWL_RATE_INVALID;
628
Ian Schram01ebd062007-10-25 17:15:22 +0800629 /* 802.11A or ht walks to the next literal adjacent rate in
Zhu Yib481de92007-09-25 17:54:57 -0700630 * the rate table */
631 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
632 int i;
633 u32 mask;
634
635 /* Find the previous rate that is in the rate mask */
636 i = index - 1;
637 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
638 if (rate_mask & mask) {
639 low = i;
640 break;
641 }
642 }
643
644 /* Find the next rate that is in the rate mask */
645 i = index + 1;
646 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
647 if (rate_mask & mask) {
648 high = i;
649 break;
650 }
651 }
652
653 return (high << 8) | low;
654 }
655
656 low = index;
657 while (low != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800658 low = iwl_rates[low].prev_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700659 if (low == IWL_RATE_INVALID)
660 break;
661 if (rate_mask & (1 << low))
662 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800663 IWL_DEBUG_RATE(priv, "Skipping masked lower rate: %d\n", low);
Zhu Yib481de92007-09-25 17:54:57 -0700664 }
665
666 high = index;
667 while (high != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800668 high = iwl_rates[high].next_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700669 if (high == IWL_RATE_INVALID)
670 break;
671 if (rate_mask & (1 << high))
672 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800673 IWL_DEBUG_RATE(priv, "Skipping masked higher rate: %d\n", high);
Zhu Yib481de92007-09-25 17:54:57 -0700674 }
675
676 return (high << 8) | low;
677}
678
Tomas Winklere227cea2008-07-18 13:53:05 +0800679static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta,
680 struct iwl_scale_tbl_info *tbl,
681 u8 scale_index, u8 ht_possible)
Zhu Yib481de92007-09-25 17:54:57 -0700682{
Zhu Yib481de92007-09-25 17:54:57 -0700683 s32 low;
684 u16 rate_mask;
685 u16 high_low;
686 u8 switch_to_legacy = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800687 u8 is_green = lq_sta->is_green;
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700688 struct iwl_priv *priv = lq_sta->drv;
Zhu Yib481de92007-09-25 17:54:57 -0700689
690 /* check if we need to switch from HT to legacy rates.
691 * assumption is that mandatory rates (1Mbps or 6Mbps)
692 * are always supported (spec demand) */
693 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_index)) {
694 switch_to_legacy = 1;
695 scale_index = rs_ht_to_legacy[scale_index];
Johannes Berg8318d782008-01-24 19:38:38 +0100696 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700697 tbl->lq_type = LQ_A;
698 else
699 tbl->lq_type = LQ_G;
700
Guy Cohen69fdb302008-04-23 17:15:01 -0700701 if (num_of_ant(tbl->ant_type) > 1)
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700702 tbl->ant_type =
703 first_antenna(priv->hw_params.valid_tx_ant);
Zhu Yib481de92007-09-25 17:54:57 -0700704
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700705 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700706 tbl->is_SGI = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700707 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700708 }
709
Guy Coheneecd6e52008-04-23 17:14:58 -0700710 rate_mask = rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700711
Ben Cahill77626352007-11-29 11:09:44 +0800712 /* Mask with station rate restriction */
Zhu Yib481de92007-09-25 17:54:57 -0700713 if (is_legacy(tbl->lq_type)) {
Ben Cahill77626352007-11-29 11:09:44 +0800714 /* supp_rates has no CCK bits in A mode */
Johannes Berg8318d782008-01-24 19:38:38 +0100715 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700716 rate_mask = (u16)(rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -0800717 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -0700718 else
Tomas Winklerc33104f2008-01-14 17:46:21 -0800719 rate_mask = (u16)(rate_mask & lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -0700720 }
721
Ben Cahill77626352007-11-29 11:09:44 +0800722 /* If we switched from HT to legacy, check current rate */
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800723 if (switch_to_legacy && (rate_mask & (1 << scale_index))) {
Guy Cohen39e88502008-04-23 17:14:57 -0700724 low = scale_index;
725 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700726 }
727
Ester Kummerbf403db2008-05-05 10:22:40 +0800728 high_low = rs_get_adjacent_rate(lq_sta->drv, scale_index, rate_mask,
729 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700730 low = high_low & 0xff;
731
Guy Cohen39e88502008-04-23 17:14:57 -0700732 if (low == IWL_RATE_INVALID)
733 low = scale_index;
734
735out:
Tomas Winkler978785a2008-12-19 10:37:31 +0800736 return rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
Zhu Yib481de92007-09-25 17:54:57 -0700737}
738
Ben Cahill77626352007-11-29 11:09:44 +0800739/*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700740 * Simple function to compare two rate scale table types
741 */
742static bool table_type_matches(struct iwl_scale_tbl_info *a,
743 struct iwl_scale_tbl_info *b)
744{
745 return (a->lq_type == b->lq_type) && (a->ant_type == b->ant_type) &&
746 (a->is_SGI == b->is_SGI);
747}
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700748
749/*
Ben Cahill77626352007-11-29 11:09:44 +0800750 * mac80211 sends us Tx status
751 */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200752static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband,
753 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200754 struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700755{
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700756 int legacy_success;
757 int retries;
758 int rs_index, mac_index, i;
Tomas Winkler417f1142008-11-12 13:14:06 -0800759 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700760 struct iwl_link_quality_cmd *table;
Zhu Yib481de92007-09-25 17:54:57 -0700761 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200762 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
Johannes Berge039fa42008-05-15 12:55:29 +0200763 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Daniel C Halperin50273092009-08-28 09:44:45 -0700764 enum mac80211_rate_control_flags mac_flags;
Guy Cohen39e88502008-04-23 17:14:57 -0700765 u32 tx_rate;
Tomas Winklere227cea2008-07-18 13:53:05 +0800766 struct iwl_scale_tbl_info tbl_type;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700767 struct iwl_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
Zhu Yib481de92007-09-25 17:54:57 -0700768
Tomas Winklere1623442009-01-27 14:27:56 -0800769 IWL_DEBUG_RATE_LIMIT(priv, "get frame ack response, update rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -0700770
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800771 /* Treat uninitialized rate scaling data same as non-existing. */
772 if (!lq_sta) {
773 IWL_DEBUG_RATE(priv, "Station rate scaling not created yet.\n");
774 return;
775 } else if (!lq_sta->drv) {
776 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
777 return;
778 }
779
Tomas Winkler417f1142008-11-12 13:14:06 -0800780 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200781 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -0700782 return;
783
Daniel C Halperine3949d62009-09-17 10:43:50 -0700784 /* This packet was aggregated but doesn't carry status info */
Johannes Berge039fa42008-05-15 12:55:29 +0200785 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
786 !(info->flags & IEEE80211_TX_STAT_AMPDU))
Ron Rindjunsky99556432008-01-28 14:07:25 +0200787 return;
788
Ben Cahill77626352007-11-29 11:09:44 +0800789 /*
790 * Ignore this Tx frame response if its initial rate doesn't match
791 * that of latest Link Quality command. There may be stragglers
792 * from a previous Link Quality command, but we're no longer interested
793 * in those; they're either from the "active" mode while we're trying
794 * to check "search" mode, or a prior "search" mode after we've moved
795 * to a new "search" mode (which might become the new "active" mode).
796 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700797 table = &lq_sta->lq;
Guy Cohen39e88502008-04-23 17:14:57 -0700798 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
799 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800800 if (priv->band == IEEE80211_BAND_5GHZ)
801 rs_index -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin50273092009-08-28 09:44:45 -0700802 mac_flags = info->status.rates[0].flags;
803 mac_index = info->status.rates[0].idx;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700804 /* For HT packets, map MCS to PLCP */
805 if (mac_flags & IEEE80211_TX_RC_MCS) {
806 mac_index &= RATE_MCS_CODE_MSK; /* Remove # of streams */
807 if (mac_index >= (IWL_RATE_9M_INDEX - IWL_FIRST_OFDM_RATE))
808 mac_index++;
Daniel C Halperin392a0ba2009-09-11 10:38:08 -0700809 /*
810 * mac80211 HT index is always zero-indexed; we need to move
811 * HT OFDM rates after CCK rates in 2.4 GHz band
812 */
813 if (priv->band == IEEE80211_BAND_2GHZ)
814 mac_index += IWL_FIRST_OFDM_RATE;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700815 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700816 /* Here we actually compare this rate to the latest LQ command */
Daniel C Halperin50273092009-08-28 09:44:45 -0700817 if ((mac_index < 0) ||
818 (tbl_type.is_SGI != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI)) ||
819 (tbl_type.is_ht40 != !!(mac_flags & IEEE80211_TX_RC_40_MHZ_WIDTH)) ||
820 (tbl_type.is_dup != !!(mac_flags & IEEE80211_TX_RC_DUP_DATA)) ||
Johannes Berge6a98542008-10-21 12:40:02 +0200821 (tbl_type.ant_type != info->antenna_sel_tx) ||
Daniel C Halperin50273092009-08-28 09:44:45 -0700822 (!!(tx_rate & RATE_MCS_HT_MSK) != !!(mac_flags & IEEE80211_TX_RC_MCS)) ||
823 (!!(tx_rate & RATE_MCS_GF_MSK) != !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD)) ||
Daniel C Halperin31513be2009-08-28 09:44:47 -0700824 (rs_index != mac_index)) {
825 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 -0700826 /*
827 * Since rates mis-match, the last LQ command may have failed.
828 * After IWL_MISSED_RATE_MAX mis-matches, resync the uCode with
829 * ... driver.
Mohamed Abbasd5e49032008-12-12 08:22:15 -0800830 */
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800831 lq_sta->missed_rate_counter++;
832 if (lq_sta->missed_rate_counter > IWL_MISSED_RATE_MAX) {
833 lq_sta->missed_rate_counter = 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800834 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800835 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700836 /* Regardless, ignore this status info for outdated rate */
837 return;
838 } else
839 /* Rate did match, so reset the missed_rate_counter */
840 lq_sta->missed_rate_counter = 0;
841
842 /* Figure out if rate scale algorithm is in active or search table */
843 if (table_type_matches(&tbl_type,
844 &(lq_sta->lq_info[lq_sta->active_tbl]))) {
845 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
846 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
847 } else if (table_type_matches(&tbl_type,
848 &lq_sta->lq_info[1 - lq_sta->active_tbl])) {
849 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
850 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
851 } else {
852 IWL_DEBUG_RATE(priv, "Neither active nor search matches tx rate\n");
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700853 tmp_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
854 IWL_DEBUG_RATE(priv, "active- lq:%x, ant:%x, SGI:%d\n",
855 tmp_tbl->lq_type, tmp_tbl->ant_type, tmp_tbl->is_SGI);
856 tmp_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
857 IWL_DEBUG_RATE(priv, "search- lq:%x, ant:%x, SGI:%d\n",
858 tmp_tbl->lq_type, tmp_tbl->ant_type, tmp_tbl->is_SGI);
859 IWL_DEBUG_RATE(priv, "actual- lq:%x, ant:%x, SGI:%d\n",
860 tbl_type.lq_type, tbl_type.ant_type, tbl_type.is_SGI);
861 /*
862 * no matching table found, let's by-pass the data collection
863 * and continue to perform rate scale to find the rate table
864 */
865 rs_stay_in_table(lq_sta);
866 goto done;
Zhu Yib481de92007-09-25 17:54:57 -0700867 }
Zhu Yib481de92007-09-25 17:54:57 -0700868
Ben Cahill77626352007-11-29 11:09:44 +0800869 /*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700870 * Updating the frame history depends on whether packets were
871 * aggregated.
872 *
873 * For aggregation, all packets were transmitted at the same rate, the
874 * first index into rate scale table.
Ben Cahill77626352007-11-29 11:09:44 +0800875 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700876 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
877 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
878 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type,
879 &rs_index);
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700880 rs_collect_tx_data(curr_tbl, rs_index,
Daniel Halperine3a3cd82010-04-18 09:27:58 -0700881 info->status.ampdu_len,
882 info->status.ampdu_ack_len);
Zhu Yib481de92007-09-25 17:54:57 -0700883
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700884 /* Update success/fail counts if not searching for new mode */
885 if (lq_sta->stay_in_tbl) {
Daniel Halperine3a3cd82010-04-18 09:27:58 -0700886 lq_sta->total_success += info->status.ampdu_ack_len;
887 lq_sta->total_failed += (info->status.ampdu_len -
888 info->status.ampdu_ack_len);
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700889 }
890 } else {
891 /*
892 * For legacy, update frame history with for each Tx retry.
893 */
894 retries = info->status.rates[0].count - 1;
895 /* HW doesn't send more than 15 retries */
896 retries = min(retries, 15);
897
898 /* The last transmission may have been successful */
899 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
900 /* Collect data for each rate used during failed TX attempts */
901 for (i = 0; i <= retries; ++i) {
902 tx_rate = le32_to_cpu(table->rs_table[i].rate_n_flags);
903 rs_get_tbl_info_from_mcs(tx_rate, priv->band,
904 &tbl_type, &rs_index);
905 /*
906 * Only collect stats if retried rate is in the same RS
907 * table as active/search.
908 */
909 if (table_type_matches(&tbl_type, curr_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700910 tmp_tbl = curr_tbl;
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700911 else if (table_type_matches(&tbl_type, other_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700912 tmp_tbl = other_tbl;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200913 else
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700914 continue;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700915 rs_collect_tx_data(tmp_tbl, rs_index, 1,
916 i < retries ? 0 : legacy_success);
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700917 }
918
919 /* Update success/fail counts if not searching for new mode */
920 if (lq_sta->stay_in_tbl) {
921 lq_sta->total_success += legacy_success;
922 lq_sta->total_failed += retries + (1 - legacy_success);
Ron Rindjunsky99556432008-01-28 14:07:25 +0200923 }
Zhu Yib481de92007-09-25 17:54:57 -0700924 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700925 /* The last TX rate is cached in lq_sta; it's set in if/else above */
926 lq_sta->last_rate_n_flags = tx_rate;
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700927done:
Ben Cahill77626352007-11-29 11:09:44 +0800928 /* See if there's a better rate or modulation mode to try. */
Abbas, Mohamedc338ba32009-01-21 10:58:02 -0800929 if (sta && sta->supp_rates[sband->band])
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200930 rs_rate_scale_perform(priv, skb, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -0700931}
932
Ben Cahill77626352007-11-29 11:09:44 +0800933/*
934 * Begin a period of staying with a selected modulation mode.
935 * Set "stay_in_tbl" flag to prevent any mode switches.
936 * Set frame tx success limits according to legacy vs. high-throughput,
937 * and reset overall (spanning all rates) tx success history statistics.
938 * These control how long we stay using same modulation mode before
939 * searching for a new mode.
940 */
Ester Kummerbf403db2008-05-05 10:22:40 +0800941static void rs_set_stay_in_table(struct iwl_priv *priv, u8 is_legacy,
Tomas Winklere227cea2008-07-18 13:53:05 +0800942 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700943{
Tomas Winklere1623442009-01-27 14:27:56 -0800944 IWL_DEBUG_RATE(priv, "we are staying in the same table\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -0800945 lq_sta->stay_in_tbl = 1; /* only place this gets set */
Zhu Yib481de92007-09-25 17:54:57 -0700946 if (is_legacy) {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800947 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
948 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
949 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700950 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800951 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
952 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
953 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700954 }
Tomas Winklerc33104f2008-01-14 17:46:21 -0800955 lq_sta->table_count = 0;
956 lq_sta->total_failed = 0;
957 lq_sta->total_success = 0;
Mohamed Abbas447fee72009-04-20 14:37:02 -0700958 lq_sta->flush_timer = jiffies;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700959 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700960}
961
Ben Cahill77626352007-11-29 11:09:44 +0800962/*
963 * Find correct throughput table for given mode of modulation
964 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800965static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
966 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700967{
Daniel C Halperine3949d62009-09-17 10:43:50 -0700968 /* Used to choose among HT tables */
969 s32 (*ht_tbl_pointer)[IWL_RATE_COUNT];
970
971 /* Check for invalid LQ type */
972 if (WARN_ON_ONCE(!is_legacy(tbl->lq_type) && !is_Ht(tbl->lq_type))) {
973 tbl->expected_tpt = expected_tpt_legacy;
974 return;
975 }
976
977 /* Legacy rates have only one table */
Zhu Yib481de92007-09-25 17:54:57 -0700978 if (is_legacy(tbl->lq_type)) {
Daniel C Halperine3949d62009-09-17 10:43:50 -0700979 tbl->expected_tpt = expected_tpt_legacy;
980 return;
981 }
982
983 /* Choose among many HT tables depending on number of streams
984 * (SISO/MIMO2/MIMO3), channel width (20/40), SGI, and aggregation
985 * status */
986 if (is_siso(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
987 ht_tbl_pointer = expected_tpt_siso20MHz;
988 else if (is_siso(tbl->lq_type))
989 ht_tbl_pointer = expected_tpt_siso40MHz;
990 else if (is_mimo2(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
991 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
992 else if (is_mimo2(tbl->lq_type))
993 ht_tbl_pointer = expected_tpt_mimo2_40MHz;
994 else if (is_mimo3(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
995 ht_tbl_pointer = expected_tpt_mimo3_20MHz;
996 else /* if (is_mimo3(tbl->lq_type)) <-- must be true */
997 ht_tbl_pointer = expected_tpt_mimo3_40MHz;
998
999 if (!tbl->is_SGI && !lq_sta->is_agg) /* Normal */
1000 tbl->expected_tpt = ht_tbl_pointer[0];
1001 else if (tbl->is_SGI && !lq_sta->is_agg) /* SGI */
1002 tbl->expected_tpt = ht_tbl_pointer[1];
1003 else if (!tbl->is_SGI && lq_sta->is_agg) /* AGG */
1004 tbl->expected_tpt = ht_tbl_pointer[2];
1005 else /* AGG+SGI */
1006 tbl->expected_tpt = ht_tbl_pointer[3];
Zhu Yib481de92007-09-25 17:54:57 -07001007}
1008
Ben Cahill77626352007-11-29 11:09:44 +08001009/*
1010 * Find starting rate for new "search" high-throughput mode of modulation.
1011 * Goal is to find lowest expected rate (under perfect conditions) that is
1012 * above the current measured throughput of "active" mode, to give new mode
1013 * a fair chance to prove itself without too many challenges.
1014 *
1015 * This gets called when transitioning to more aggressive modulation
1016 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1017 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1018 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1019 * bit rate will typically need to increase, but not if performance was bad.
1020 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001021static s32 rs_get_best_rate(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001022 struct iwl_lq_sta *lq_sta,
1023 struct iwl_scale_tbl_info *tbl, /* "search" */
Guy Cohenf935a6d2008-04-23 17:15:02 -07001024 u16 rate_mask, s8 index)
Zhu Yib481de92007-09-25 17:54:57 -07001025{
Ben Cahill77626352007-11-29 11:09:44 +08001026 /* "active" values */
Tomas Winklere227cea2008-07-18 13:53:05 +08001027 struct iwl_scale_tbl_info *active_tbl =
Tomas Winklerc33104f2008-01-14 17:46:21 -08001028 &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001029 s32 active_sr = active_tbl->win[index].success_ratio;
Zhu Yib481de92007-09-25 17:54:57 -07001030 s32 active_tpt = active_tbl->expected_tpt[index];
Ben Cahill77626352007-11-29 11:09:44 +08001031
1032 /* expected "search" throughput */
1033 s32 *tpt_tbl = tbl->expected_tpt;
1034
1035 s32 new_rate, high, low, start_hi;
Zhu Yib481de92007-09-25 17:54:57 -07001036 u16 high_low;
Guy Cohenf935a6d2008-04-23 17:15:02 -07001037 s8 rate = index;
Zhu Yib481de92007-09-25 17:54:57 -07001038
1039 new_rate = high = low = start_hi = IWL_RATE_INVALID;
1040
1041 for (; ;) {
Ester Kummerbf403db2008-05-05 10:22:40 +08001042 high_low = rs_get_adjacent_rate(priv, rate, rate_mask,
1043 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001044
1045 low = high_low & 0xff;
1046 high = (high_low >> 8) & 0xff;
1047
Ben Cahill77626352007-11-29 11:09:44 +08001048 /*
1049 * Lower the "search" bit rate, to give new "search" mode
1050 * approximately the same throughput as "active" if:
1051 *
1052 * 1) "Active" mode has been working modestly well (but not
1053 * great), and expected "search" throughput (under perfect
1054 * conditions) at candidate rate is above the actual
1055 * measured "active" throughput (but less than expected
1056 * "active" throughput under perfect conditions).
1057 * OR
1058 * 2) "Active" mode has been working perfectly or very well
1059 * and expected "search" throughput (under perfect
1060 * conditions) at candidate rate is above expected
1061 * "active" throughput (under perfect conditions).
1062 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001063 if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
Zhu Yib481de92007-09-25 17:54:57 -07001064 ((active_sr > IWL_RATE_DECREASE_TH) &&
1065 (active_sr <= IWL_RATE_HIGH_TH) &&
1066 (tpt_tbl[rate] <= active_tpt))) ||
1067 ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
1068 (tpt_tbl[rate] > active_tpt))) {
1069
Ben Cahill77626352007-11-29 11:09:44 +08001070 /* (2nd or later pass)
1071 * If we've already tried to raise the rate, and are
1072 * now trying to lower it, use the higher rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001073 if (start_hi != IWL_RATE_INVALID) {
1074 new_rate = start_hi;
1075 break;
1076 }
Ben Cahill77626352007-11-29 11:09:44 +08001077
Zhu Yib481de92007-09-25 17:54:57 -07001078 new_rate = rate;
Ben Cahill77626352007-11-29 11:09:44 +08001079
1080 /* Loop again with lower rate */
Zhu Yib481de92007-09-25 17:54:57 -07001081 if (low != IWL_RATE_INVALID)
1082 rate = low;
Ben Cahill77626352007-11-29 11:09:44 +08001083
1084 /* Lower rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001085 else
1086 break;
Ben Cahill77626352007-11-29 11:09:44 +08001087
1088 /* Else try to raise the "search" rate to match "active" */
Zhu Yib481de92007-09-25 17:54:57 -07001089 } else {
Ben Cahill77626352007-11-29 11:09:44 +08001090 /* (2nd or later pass)
1091 * If we've already tried to lower the rate, and are
1092 * now trying to raise it, use the lower rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001093 if (new_rate != IWL_RATE_INVALID)
1094 break;
Ben Cahill77626352007-11-29 11:09:44 +08001095
1096 /* Loop again with higher rate */
Zhu Yib481de92007-09-25 17:54:57 -07001097 else if (high != IWL_RATE_INVALID) {
1098 start_hi = high;
1099 rate = high;
Ben Cahill77626352007-11-29 11:09:44 +08001100
1101 /* Higher rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001102 } else {
Guy Cohen90d77952008-09-09 10:54:53 +08001103 new_rate = rate;
Zhu Yib481de92007-09-25 17:54:57 -07001104 break;
1105 }
1106 }
1107 }
1108
1109 return new_rate;
1110}
Zhu Yib481de92007-09-25 17:54:57 -07001111
Ben Cahill77626352007-11-29 11:09:44 +08001112/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001113 * Set up search table for MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001114 */
Guy Cohenfde0db32008-04-21 15:42:01 -07001115static int rs_switch_to_mimo2(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001116 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001117 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001118 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001119 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001120{
Zhu Yib481de92007-09-25 17:54:57 -07001121 u16 rate_mask;
1122 s32 rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001123 s8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001124
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001125 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001126 return -1;
1127
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001128 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
Tomas Winkler00c5ae22008-09-03 11:26:42 +08001129 == WLAN_HT_CAP_SM_PS_STATIC)
Zhu Yib481de92007-09-25 17:54:57 -07001130 return -1;
1131
Ben Cahill77626352007-11-29 11:09:44 +08001132 /* Need both Tx chains/antennas to support MIMO */
Guy Cohenaade00c2008-04-23 17:14:59 -07001133 if (priv->hw_params.tx_chains_num < 2)
Zhu Yib481de92007-09-25 17:54:57 -07001134 return -1;
1135
Tomas Winklere1623442009-01-27 14:27:56 -08001136 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO2\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001137
1138 tbl->lq_type = LQ_MIMO2;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001139 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001140 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001141 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001142 rate_mask = lq_sta->active_mimo2_rate;
1143
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001144 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1145 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001146 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001147 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001148
Guy Coheneecd6e52008-04-23 17:14:58 -07001149 rs_set_expected_tpt_table(lq_sta, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07001150
Guy Cohenf935a6d2008-04-23 17:15:02 -07001151 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001152
Tomas Winklere1623442009-01-27 14:27:56 -08001153 IWL_DEBUG_RATE(priv, "LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001154 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
1155 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
1156 rate, rate_mask);
1157 return -1;
1158 }
1159 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Guy Cohen39e88502008-04-23 17:14:57 -07001160
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001161 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
1162 tbl->current_rate, is_green);
1163 return 0;
1164}
1165
1166/*
1167 * Set up search table for MIMO3
1168 */
1169static int rs_switch_to_mimo3(struct iwl_priv *priv,
1170 struct iwl_lq_sta *lq_sta,
1171 struct ieee80211_conf *conf,
1172 struct ieee80211_sta *sta,
1173 struct iwl_scale_tbl_info *tbl, int index)
1174{
1175 u16 rate_mask;
1176 s32 rate;
1177 s8 is_green = lq_sta->is_green;
1178
1179 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1180 return -1;
1181
1182 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
1183 == WLAN_HT_CAP_SM_PS_STATIC)
1184 return -1;
1185
1186 /* Need both Tx chains/antennas to support MIMO */
1187 if (priv->hw_params.tx_chains_num < 3)
1188 return -1;
1189
1190 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO3\n");
1191
1192 tbl->lq_type = LQ_MIMO3;
1193 tbl->is_dup = lq_sta->is_dup;
1194 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001195 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001196 rate_mask = lq_sta->active_mimo3_rate;
1197
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001198 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1199 tbl->is_ht40 = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001200 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001201 tbl->is_ht40 = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001202
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001203 rs_set_expected_tpt_table(lq_sta, tbl);
1204
1205 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
1206
1207 IWL_DEBUG_RATE(priv, "LQ: MIMO3 best rate %d mask %X\n",
1208 rate, rate_mask);
Guy Cohen39e88502008-04-23 17:14:57 -07001209 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001210 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001211 rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001212 return -1;
Guy Cohen39e88502008-04-23 17:14:57 -07001213 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001214 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001215
Tomas Winklere1623442009-01-27 14:27:56 -08001216 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001217 tbl->current_rate, is_green);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001218 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001219}
1220
Ben Cahill77626352007-11-29 11:09:44 +08001221/*
1222 * Set up search table for SISO
1223 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001224static int rs_switch_to_siso(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001225 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001226 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001227 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001228 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001229{
Zhu Yib481de92007-09-25 17:54:57 -07001230 u16 rate_mask;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001231 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001232 s32 rate;
1233
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001234 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001235 return -1;
1236
Tomas Winklere1623442009-01-27 14:27:56 -08001237 IWL_DEBUG_RATE(priv, "LQ: try to switch to SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001238
Tomas Winklerc33104f2008-01-14 17:46:21 -08001239 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001240 tbl->lq_type = LQ_SISO;
1241 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001242 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001243 rate_mask = lq_sta->active_siso_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001244
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001245 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1246 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001247 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001248 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001249
Zhu Yib481de92007-09-25 17:54:57 -07001250 if (is_green)
Guy Cohen39e88502008-04-23 17:14:57 -07001251 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield*/
Zhu Yib481de92007-09-25 17:54:57 -07001252
Guy Coheneecd6e52008-04-23 17:14:58 -07001253 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohenf935a6d2008-04-23 17:15:02 -07001254 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001255
Tomas Winklere1623442009-01-27 14:27:56 -08001256 IWL_DEBUG_RATE(priv, "LQ: get best rate %d mask %X\n", rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001257 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001258 IWL_DEBUG_RATE(priv, "can not switch with index %d rate mask %x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001259 rate, rate_mask);
1260 return -1;
1261 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001262 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Tomas Winklere1623442009-01-27 14:27:56 -08001263 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001264 tbl->current_rate, is_green);
Mohamed Abbas403ab562007-11-06 22:06:25 -08001265 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001266}
1267
Ben Cahill77626352007-11-29 11:09:44 +08001268/*
1269 * Try to switch to new modulation mode from legacy
1270 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001271static int rs_move_legacy_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001272 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001273 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001274 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07001275 int index)
1276{
Tomas Winklere227cea2008-07-18 13:53:05 +08001277 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1278 struct iwl_scale_tbl_info *search_tbl =
1279 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1280 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1281 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1282 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001283 u8 start_action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001284 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001285 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001286 int ret = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001287 u8 update_search_tbl_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001288
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001289 if (!iwl_ht_enabled(priv))
1290 /* stay in Legacy */
1291 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07001292 else if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001293 tbl->action > IWL_LEGACY_SWITCH_SISO)
1294 tbl->action = IWL_LEGACY_SWITCH_SISO;
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001295 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001296 for (; ;) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001297 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001298 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001299 case IWL_LEGACY_SWITCH_ANTENNA1:
1300 case IWL_LEGACY_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001301 IWL_DEBUG_RATE(priv, "LQ: Legacy toggle Antenna\n");
Zhu Yib481de92007-09-25 17:54:57 -07001302
Guy Cohen3110bef2008-09-09 10:54:54 +08001303 if ((tbl->action == IWL_LEGACY_SWITCH_ANTENNA1 &&
1304 tx_chains_num <= 1) ||
1305 (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2 &&
1306 tx_chains_num <= 2))
1307 break;
1308
Ben Cahill77626352007-11-29 11:09:44 +08001309 /* Don't change antenna if success has been great */
Zhu Yib481de92007-09-25 17:54:57 -07001310 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1311 break;
Ben Cahill77626352007-11-29 11:09:44 +08001312
Ben Cahill77626352007-11-29 11:09:44 +08001313 /* Set up search table to try other antenna */
Zhu Yib481de92007-09-25 17:54:57 -07001314 memcpy(search_tbl, tbl, sz);
1315
Guy Cohenaade00c2008-04-23 17:14:59 -07001316 if (rs_toggle_antenna(valid_tx_ant,
1317 &search_tbl->current_rate, search_tbl)) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001318 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001319 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohenaade00c2008-04-23 17:14:59 -07001320 goto out;
1321 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001322 break;
Zhu Yib481de92007-09-25 17:54:57 -07001323 case IWL_LEGACY_SWITCH_SISO:
Tomas Winklere1623442009-01-27 14:27:56 -08001324 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to SISO\n");
Ben Cahill77626352007-11-29 11:09:44 +08001325
1326 /* Set up search table to try SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001327 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001328 search_tbl->is_SGI = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001329 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001330 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001331 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001332 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001333 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001334 }
Zhu Yib481de92007-09-25 17:54:57 -07001335
1336 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001337 case IWL_LEGACY_SWITCH_MIMO2_AB:
1338 case IWL_LEGACY_SWITCH_MIMO2_AC:
1339 case IWL_LEGACY_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001340 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO2\n");
Ben Cahill77626352007-11-29 11:09:44 +08001341
1342 /* Set up search table to try MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001343 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001344 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001345
1346 if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AB)
1347 search_tbl->ant_type = ANT_AB;
1348 else if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AC)
1349 search_tbl->ant_type = ANT_AC;
1350 else
1351 search_tbl->ant_type = ANT_BC;
1352
1353 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1354 break;
1355
Guy Cohenfde0db32008-04-21 15:42:01 -07001356 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001357 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001358 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001359 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001360 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001361 }
Zhu Yib481de92007-09-25 17:54:57 -07001362 break;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001363
1364 case IWL_LEGACY_SWITCH_MIMO3_ABC:
1365 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO3\n");
1366
1367 /* Set up search table to try MIMO3 */
1368 memcpy(search_tbl, tbl, sz);
1369 search_tbl->is_SGI = 0;
1370
1371 search_tbl->ant_type = ANT_ABC;
1372
1373 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1374 break;
1375
1376 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1377 search_tbl, index);
1378 if (!ret) {
1379 lq_sta->action_counter = 0;
1380 goto out;
1381 }
1382 break;
Zhu Yib481de92007-09-25 17:54:57 -07001383 }
1384 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001385 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001386 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001387
1388 if (tbl->action == start_action)
1389 break;
1390
1391 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001392 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001393 return 0;
1394
Guy Cohen3110bef2008-09-09 10:54:54 +08001395out:
1396 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001397 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001398 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001399 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001400 if (update_search_tbl_counter)
1401 search_tbl->action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001402 return 0;
1403
1404}
1405
Ben Cahill77626352007-11-29 11:09:44 +08001406/*
1407 * Try to switch to new modulation mode from SISO
1408 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001409static int rs_move_siso_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001410 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001411 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001412 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001413{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001414 u8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001415 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1416 struct iwl_scale_tbl_info *search_tbl =
1417 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1418 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001419 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001420 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1421 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001422 u8 start_action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001423 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001424 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001425 u8 update_search_tbl_counter = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -07001426 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001427
Johannes Berg3ad3b922009-08-07 15:41:48 -07001428 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001429 tbl->action > IWL_SISO_SWITCH_ANTENNA2) {
1430 /* stay in SISO */
1431 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1432 }
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001433 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001434 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001435 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001436 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001437 case IWL_SISO_SWITCH_ANTENNA1:
1438 case IWL_SISO_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001439 IWL_DEBUG_RATE(priv, "LQ: SISO toggle Antenna\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001440
1441 if ((tbl->action == IWL_SISO_SWITCH_ANTENNA1 &&
1442 tx_chains_num <= 1) ||
1443 (tbl->action == IWL_SISO_SWITCH_ANTENNA2 &&
1444 tx_chains_num <= 2))
1445 break;
1446
Zhu Yib481de92007-09-25 17:54:57 -07001447 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1448 break;
Zhu Yib481de92007-09-25 17:54:57 -07001449
1450 memcpy(search_tbl, tbl, sz);
Guy Cohenaade00c2008-04-23 17:14:59 -07001451 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001452 &search_tbl->current_rate, search_tbl)) {
1453 update_search_tbl_counter = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07001454 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001455 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001456 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001457 case IWL_SISO_SWITCH_MIMO2_AB:
1458 case IWL_SISO_SWITCH_MIMO2_AC:
1459 case IWL_SISO_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001460 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO2\n");
Zhu Yib481de92007-09-25 17:54:57 -07001461 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001462 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001463
1464 if (tbl->action == IWL_SISO_SWITCH_MIMO2_AB)
1465 search_tbl->ant_type = ANT_AB;
1466 else if (tbl->action == IWL_SISO_SWITCH_MIMO2_AC)
1467 search_tbl->ant_type = ANT_AC;
1468 else
1469 search_tbl->ant_type = ANT_BC;
1470
1471 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1472 break;
1473
Guy Cohenfde0db32008-04-21 15:42:01 -07001474 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001475 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001476 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001477 goto out;
1478 break;
1479 case IWL_SISO_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001480 if (!tbl->is_ht40 && !(ht_cap->cap &
1481 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001482 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001483 if (tbl->is_ht40 && !(ht_cap->cap &
1484 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001485 break;
1486
Tomas Winklere1623442009-01-27 14:27:56 -08001487 IWL_DEBUG_RATE(priv, "LQ: SISO toggle SGI/NGI\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001488
Zhu Yib481de92007-09-25 17:54:57 -07001489 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001490 if (is_green) {
1491 if (!tbl->is_SGI)
1492 break;
1493 else
Winkler, Tomas15b16872008-12-19 10:37:33 +08001494 IWL_ERR(priv,
1495 "SGI was set in GF+SISO\n");
Zhu Yib481de92007-09-25 17:54:57 -07001496 }
Guy Cohen39e88502008-04-23 17:14:57 -07001497 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001498 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohen39e88502008-04-23 17:14:57 -07001499 if (tbl->is_SGI) {
1500 s32 tpt = lq_sta->last_tpt / 100;
1501 if (tpt >= search_tbl->expected_tpt[index])
1502 break;
1503 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001504 search_tbl->current_rate =
1505 rate_n_flags_from_tbl(priv, search_tbl,
1506 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001507 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001508 goto out;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001509 case IWL_SISO_SWITCH_MIMO3_ABC:
1510 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO3\n");
1511 memcpy(search_tbl, tbl, sz);
1512 search_tbl->is_SGI = 0;
1513 search_tbl->ant_type = ANT_ABC;
1514
1515 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1516 break;
1517
1518 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1519 search_tbl, index);
1520 if (!ret)
1521 goto out;
1522 break;
Zhu Yib481de92007-09-25 17:54:57 -07001523 }
1524 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001525 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001526 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001527
1528 if (tbl->action == start_action)
1529 break;
1530 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001531 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001532 return 0;
1533
1534 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001535 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001536 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001537 if (tbl->action > IWL_SISO_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001538 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001539 if (update_search_tbl_counter)
1540 search_tbl->action = tbl->action;
1541
Zhu Yib481de92007-09-25 17:54:57 -07001542 return 0;
1543}
1544
Ben Cahill77626352007-11-29 11:09:44 +08001545/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001546 * Try to switch to new modulation mode from MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001547 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001548static int rs_move_mimo2_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001549 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001550 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001551 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001552{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001553 s8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001554 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1555 struct iwl_scale_tbl_info *search_tbl =
1556 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Guy Cohen3110bef2008-09-09 10:54:54 +08001557 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001558 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001559 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1560 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001561 u8 start_action;
Guy Cohen3110bef2008-09-09 10:54:54 +08001562 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1563 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001564 u8 update_search_tbl_counter = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07001565 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001566
Johannes Berg3ad3b922009-08-07 15:41:48 -07001567 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001568 (tbl->action < IWL_MIMO2_SWITCH_SISO_A ||
1569 tbl->action > IWL_MIMO2_SWITCH_SISO_C)) {
1570 /* switch in SISO */
1571 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1572 }
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001573 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001574 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001575 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001576 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001577 case IWL_MIMO2_SWITCH_ANTENNA1:
1578 case IWL_MIMO2_SWITCH_ANTENNA2:
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001579 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle Antennas\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001580
1581 if (tx_chains_num <= 2)
1582 break;
1583
1584 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1585 break;
1586
1587 memcpy(search_tbl, tbl, sz);
1588 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001589 &search_tbl->current_rate, search_tbl)) {
1590 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001591 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001592 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001593 break;
1594 case IWL_MIMO2_SWITCH_SISO_A:
1595 case IWL_MIMO2_SWITCH_SISO_B:
1596 case IWL_MIMO2_SWITCH_SISO_C:
Tomas Winklere1623442009-01-27 14:27:56 -08001597 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to SISO\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001598
Ben Cahill77626352007-11-29 11:09:44 +08001599 /* Set up new search table for SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001600 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001601
Guy Cohen3110bef2008-09-09 10:54:54 +08001602 if (tbl->action == IWL_MIMO2_SWITCH_SISO_A)
Guy Cohenfde0db32008-04-21 15:42:01 -07001603 search_tbl->ant_type = ANT_A;
Guy Cohen3110bef2008-09-09 10:54:54 +08001604 else if (tbl->action == IWL_MIMO2_SWITCH_SISO_B)
Guy Cohenfde0db32008-04-21 15:42:01 -07001605 search_tbl->ant_type = ANT_B;
Guy Cohen3110bef2008-09-09 10:54:54 +08001606 else
1607 search_tbl->ant_type = ANT_C;
1608
1609 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1610 break;
Zhu Yib481de92007-09-25 17:54:57 -07001611
Tomas Winklerc33104f2008-01-14 17:46:21 -08001612 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001613 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001614 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001615 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001616
Zhu Yib481de92007-09-25 17:54:57 -07001617 break;
1618
Guy Cohen3110bef2008-09-09 10:54:54 +08001619 case IWL_MIMO2_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001620 if (!tbl->is_ht40 && !(ht_cap->cap &
1621 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001622 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001623 if (tbl->is_ht40 && !(ht_cap->cap &
1624 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001625 break;
1626
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001627 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle SGI/NGI\n");
1628
1629 /* Set up new search table for MIMO2 */
1630 memcpy(search_tbl, tbl, sz);
1631 search_tbl->is_SGI = !tbl->is_SGI;
1632 rs_set_expected_tpt_table(lq_sta, search_tbl);
1633 /*
1634 * If active table already uses the fastest possible
1635 * modulation (dual stream with short guard interval),
1636 * and it's working well, there's no need to look
1637 * for a better type of modulation!
1638 */
1639 if (tbl->is_SGI) {
1640 s32 tpt = lq_sta->last_tpt / 100;
1641 if (tpt >= search_tbl->expected_tpt[index])
1642 break;
1643 }
1644 search_tbl->current_rate =
1645 rate_n_flags_from_tbl(priv, search_tbl,
1646 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001647 update_search_tbl_counter = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001648 goto out;
1649
1650 case IWL_MIMO2_SWITCH_MIMO3_ABC:
1651 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to MIMO3\n");
1652 memcpy(search_tbl, tbl, sz);
1653 search_tbl->is_SGI = 0;
1654 search_tbl->ant_type = ANT_ABC;
1655
1656 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1657 break;
1658
1659 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1660 search_tbl, index);
1661 if (!ret)
1662 goto out;
1663
1664 break;
1665 }
1666 tbl->action++;
1667 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1668 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
1669
1670 if (tbl->action == start_action)
1671 break;
1672 }
1673 search_tbl->lq_type = LQ_NONE;
1674 return 0;
1675 out:
1676 lq_sta->search_better_tbl = 1;
1677 tbl->action++;
1678 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1679 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001680 if (update_search_tbl_counter)
1681 search_tbl->action = tbl->action;
1682
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001683 return 0;
1684
1685}
1686
1687/*
1688 * Try to switch to new modulation mode from MIMO3
1689 */
1690static int rs_move_mimo3_to_other(struct iwl_priv *priv,
1691 struct iwl_lq_sta *lq_sta,
1692 struct ieee80211_conf *conf,
1693 struct ieee80211_sta *sta, int index)
1694{
1695 s8 is_green = lq_sta->is_green;
1696 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1697 struct iwl_scale_tbl_info *search_tbl =
1698 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1699 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001700 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001701 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1702 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001703 u8 start_action;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001704 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1705 u8 tx_chains_num = priv->hw_params.tx_chains_num;
1706 int ret;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001707 u8 update_search_tbl_counter = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001708
Johannes Berg3ad3b922009-08-07 15:41:48 -07001709 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001710 (tbl->action < IWL_MIMO3_SWITCH_SISO_A ||
1711 tbl->action > IWL_MIMO3_SWITCH_SISO_C)) {
1712 /* switch in SISO */
1713 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
1714 }
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001715 start_action = tbl->action;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001716 for (;;) {
1717 lq_sta->action_counter++;
1718 switch (tbl->action) {
1719 case IWL_MIMO3_SWITCH_ANTENNA1:
1720 case IWL_MIMO3_SWITCH_ANTENNA2:
1721 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle Antennas\n");
1722
1723 if (tx_chains_num <= 3)
1724 break;
1725
1726 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1727 break;
1728
1729 memcpy(search_tbl, tbl, sz);
1730 if (rs_toggle_antenna(valid_tx_ant,
1731 &search_tbl->current_rate, search_tbl))
1732 goto out;
1733 break;
1734 case IWL_MIMO3_SWITCH_SISO_A:
1735 case IWL_MIMO3_SWITCH_SISO_B:
1736 case IWL_MIMO3_SWITCH_SISO_C:
1737 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to SISO\n");
1738
1739 /* Set up new search table for SISO */
1740 memcpy(search_tbl, tbl, sz);
1741
1742 if (tbl->action == IWL_MIMO3_SWITCH_SISO_A)
1743 search_tbl->ant_type = ANT_A;
1744 else if (tbl->action == IWL_MIMO3_SWITCH_SISO_B)
1745 search_tbl->ant_type = ANT_B;
1746 else
1747 search_tbl->ant_type = ANT_C;
1748
1749 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1750 break;
1751
1752 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
1753 search_tbl, index);
1754 if (!ret)
1755 goto out;
1756
1757 break;
1758
1759 case IWL_MIMO3_SWITCH_MIMO2_AB:
1760 case IWL_MIMO3_SWITCH_MIMO2_AC:
1761 case IWL_MIMO3_SWITCH_MIMO2_BC:
1762 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to MIMO2\n");
1763
1764 memcpy(search_tbl, tbl, sz);
1765 search_tbl->is_SGI = 0;
1766 if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AB)
1767 search_tbl->ant_type = ANT_AB;
1768 else if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AC)
1769 search_tbl->ant_type = ANT_AC;
1770 else
1771 search_tbl->ant_type = ANT_BC;
1772
1773 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1774 break;
1775
1776 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
1777 search_tbl, index);
1778 if (!ret)
1779 goto out;
1780
1781 break;
1782
1783 case IWL_MIMO3_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001784 if (!tbl->is_ht40 && !(ht_cap->cap &
1785 IEEE80211_HT_CAP_SGI_20))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001786 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001787 if (tbl->is_ht40 && !(ht_cap->cap &
1788 IEEE80211_HT_CAP_SGI_40))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001789 break;
1790
1791 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle SGI/NGI\n");
Ben Cahill77626352007-11-29 11:09:44 +08001792
1793 /* Set up new search table for MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001794 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001795 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001796 rs_set_expected_tpt_table(lq_sta, search_tbl);
Ben Cahill77626352007-11-29 11:09:44 +08001797 /*
1798 * If active table already uses the fastest possible
1799 * modulation (dual stream with short guard interval),
1800 * and it's working well, there's no need to look
1801 * for a better type of modulation!
1802 */
Guy Cohen39e88502008-04-23 17:14:57 -07001803 if (tbl->is_SGI) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001804 s32 tpt = lq_sta->last_tpt / 100;
Guy Cohen39e88502008-04-23 17:14:57 -07001805 if (tpt >= search_tbl->expected_tpt[index])
1806 break;
Zhu Yib481de92007-09-25 17:54:57 -07001807 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001808 search_tbl->current_rate =
1809 rate_n_flags_from_tbl(priv, search_tbl,
1810 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001811 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001812 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07001813 }
1814 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001815 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1816 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001817
1818 if (tbl->action == start_action)
1819 break;
1820 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001821 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001822 return 0;
1823 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001824 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001825 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001826 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1827 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001828 if (update_search_tbl_counter)
1829 search_tbl->action = tbl->action;
1830
Zhu Yib481de92007-09-25 17:54:57 -07001831 return 0;
1832
1833}
1834
Ben Cahill77626352007-11-29 11:09:44 +08001835/*
1836 * Check whether we should continue using same modulation mode, or
1837 * begin search for a new mode, based on:
1838 * 1) # tx successes or failures while using this mode
1839 * 2) # times calling this function
1840 * 3) elapsed time in this mode (not used, for now)
1841 */
Tomas Winklere227cea2008-07-18 13:53:05 +08001842static void rs_stay_in_table(struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001843{
Tomas Winklere227cea2008-07-18 13:53:05 +08001844 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001845 int i;
1846 int active_tbl;
1847 int flush_interval_passed = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08001848 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07001849
Ester Kummerbf403db2008-05-05 10:22:40 +08001850 priv = lq_sta->drv;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001851 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001852
Tomas Winklerc33104f2008-01-14 17:46:21 -08001853 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001854
Ben Cahill77626352007-11-29 11:09:44 +08001855 /* If we've been disallowing search, see if we should now allow it */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001856 if (lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001857
Ben Cahill77626352007-11-29 11:09:44 +08001858 /* Elapsed time using current modulation mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001859 if (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001860 flush_interval_passed =
Mohamed Abbas447fee72009-04-20 14:37:02 -07001861 time_after(jiffies,
1862 (unsigned long)(lq_sta->flush_timer +
Zhu Yib481de92007-09-25 17:54:57 -07001863 IWL_RATE_SCALE_FLUSH_INTVL));
1864
Ben Cahill77626352007-11-29 11:09:44 +08001865 /*
1866 * Check if we should allow search for new modulation mode.
1867 * If many frames have failed or succeeded, or we've used
1868 * this same modulation for a long time, allow search, and
1869 * reset history stats that keep track of whether we should
1870 * allow a new search. Also (below) reset all bitmaps and
1871 * stats in active history.
1872 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001873 if ((lq_sta->total_failed > lq_sta->max_failure_limit) ||
1874 (lq_sta->total_success > lq_sta->max_success_limit) ||
1875 ((!lq_sta->search_better_tbl) && (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001876 && (flush_interval_passed))) {
Tomas Winklere1623442009-01-27 14:27:56 -08001877 IWL_DEBUG_RATE(priv, "LQ: stay is expired %d %d %d\n:",
Tomas Winklerc33104f2008-01-14 17:46:21 -08001878 lq_sta->total_failed,
1879 lq_sta->total_success,
Zhu Yib481de92007-09-25 17:54:57 -07001880 flush_interval_passed);
Ben Cahill77626352007-11-29 11:09:44 +08001881
1882 /* Allow search for new mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001883 lq_sta->stay_in_tbl = 0; /* only place reset */
1884 lq_sta->total_failed = 0;
1885 lq_sta->total_success = 0;
1886 lq_sta->flush_timer = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001887
1888 /*
1889 * Else if we've used this modulation mode enough repetitions
1890 * (regardless of elapsed time or success/failure), reset
1891 * history bitmaps and rate-specific stats for all rates in
1892 * active table.
1893 */
Mohamed Abbas403ab562007-11-06 22:06:25 -08001894 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001895 lq_sta->table_count++;
1896 if (lq_sta->table_count >=
1897 lq_sta->table_count_limit) {
1898 lq_sta->table_count = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001899
Tomas Winklere1623442009-01-27 14:27:56 -08001900 IWL_DEBUG_RATE(priv, "LQ: stay in table clear win\n");
Zhu Yib481de92007-09-25 17:54:57 -07001901 for (i = 0; i < IWL_RATE_COUNT; i++)
1902 rs_rate_scale_clear_window(
1903 &(tbl->win[i]));
1904 }
1905 }
1906
Ben Cahill77626352007-11-29 11:09:44 +08001907 /* If transitioning to allow "search", reset all history
1908 * bitmaps and stats in active table (this will become the new
1909 * "search" table). */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001910 if (!lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001911 for (i = 0; i < IWL_RATE_COUNT; i++)
1912 rs_rate_scale_clear_window(&(tbl->win[i]));
1913 }
1914 }
1915}
1916
Ben Cahill77626352007-11-29 11:09:44 +08001917/*
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07001918 * setup rate table in uCode
1919 * return rate_n_flags as used in the table
1920 */
1921static u32 rs_update_rate_tbl(struct iwl_priv *priv,
1922 struct iwl_lq_sta *lq_sta,
1923 struct iwl_scale_tbl_info *tbl,
1924 int index, u8 is_green)
1925{
1926 u32 rate;
1927
1928 /* Update uCode's rate table. */
1929 rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
1930 rs_fill_link_cmd(priv, lq_sta, rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08001931 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07001932
1933 return rate;
1934}
1935
1936/*
Ben Cahill77626352007-11-29 11:09:44 +08001937 * Do rate scaling and search for new modulation mode.
1938 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001939static void rs_rate_scale_perform(struct iwl_priv *priv,
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001940 struct sk_buff *skb,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001941 struct ieee80211_sta *sta,
1942 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001943{
Johannes Berg4b7679a2008-09-18 18:14:18 +02001944 struct ieee80211_hw *hw = priv->hw;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001945 struct ieee80211_conf *conf = &hw->conf;
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001946 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1947 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001948 int low = IWL_RATE_INVALID;
1949 int high = IWL_RATE_INVALID;
1950 int index;
1951 int i;
Tomas Winklere227cea2008-07-18 13:53:05 +08001952 struct iwl_rate_scale_data *window = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001953 int current_tpt = IWL_INVALID_VALUE;
1954 int low_tpt = IWL_INVALID_VALUE;
1955 int high_tpt = IWL_INVALID_VALUE;
1956 u32 fail_count;
1957 s8 scale_action = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07001958 u16 rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -07001959 u8 update_lq = 0;
Tomas Winklere227cea2008-07-18 13:53:05 +08001960 struct iwl_scale_tbl_info *tbl, *tbl1;
Zhu Yib481de92007-09-25 17:54:57 -07001961 u16 rate_scale_index_msk = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001962 u32 rate;
Zhu Yib481de92007-09-25 17:54:57 -07001963 u8 is_green = 0;
1964 u8 active_tbl = 0;
1965 u8 done_search = 0;
1966 u16 high_low;
Guy Cohena5e8b502008-05-29 16:35:11 +08001967 s32 sr;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001968 u8 tid = MAX_TID_COUNT;
Wey-Yi Guy86b47662009-03-10 14:35:09 -07001969 struct iwl_tid_data *tid_data;
Zhu Yib481de92007-09-25 17:54:57 -07001970
Tomas Winklere1623442009-01-27 14:27:56 -08001971 IWL_DEBUG_RATE(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07001972
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001973 /* Send management frames and NO_ACK data using lowest rate. */
Tomas Winkler417f1142008-11-12 13:14:06 -08001974 /* TODO: this could probably be improved.. */
1975 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001976 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -07001977 return;
Zhu Yib481de92007-09-25 17:54:57 -07001978
Johannes Berg4b7679a2008-09-18 18:14:18 +02001979 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001980 return;
1981
Johannes Berg4b7679a2008-09-18 18:14:18 +02001982 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
Zhu Yib481de92007-09-25 17:54:57 -07001983
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08001984 tid = rs_tl_add_packet(lq_sta, hdr);
Daniel C Halperine3949d62009-09-17 10:43:50 -07001985 if ((tid != MAX_TID_COUNT) && (lq_sta->tx_agg_tid_en & (1 << tid))) {
1986 tid_data = &priv->stations[lq_sta->lq.sta_id].tid[tid];
1987 if (tid_data->agg.state == IWL_AGG_OFF)
1988 lq_sta->is_agg = 0;
1989 else
1990 lq_sta->is_agg = 1;
1991 } else
1992 lq_sta->is_agg = 0;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08001993
Ben Cahill77626352007-11-29 11:09:44 +08001994 /*
1995 * Select rate-scale / modulation-mode table to work with in
1996 * the rest of this function: "search" if searching for better
1997 * modulation mode, or "active" if doing rate scaling within a mode.
1998 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001999 if (!lq_sta->search_better_tbl)
2000 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002001 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002002 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002003
Tomas Winklerc33104f2008-01-14 17:46:21 -08002004 tbl = &(lq_sta->lq_info[active_tbl]);
Wey-Yi Guy2681b202009-05-21 13:44:22 -07002005 if (is_legacy(tbl->lq_type))
2006 lq_sta->is_green = 0;
2007 else
Daniel C Halperinb2617932009-08-13 13:30:59 -07002008 lq_sta->is_green = rs_use_green(sta, &priv->current_ht_config);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002009 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07002010
Ben Cahill77626352007-11-29 11:09:44 +08002011 /* current tx rate */
Johannes Bergb7e35002008-09-11 02:22:58 +02002012 index = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002013
Tomas Winklere1623442009-01-27 14:27:56 -08002014 IWL_DEBUG_RATE(priv, "Rate scale index %d for type %d\n", index,
Zhu Yib481de92007-09-25 17:54:57 -07002015 tbl->lq_type);
2016
Ben Cahill77626352007-11-29 11:09:44 +08002017 /* rates available for this association, and for modulation mode */
Guy Coheneecd6e52008-04-23 17:14:58 -07002018 rate_mask = rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07002019
Frans Pop91dd6c22010-03-24 14:19:58 -07002020 IWL_DEBUG_RATE(priv, "mask 0x%04X\n", rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07002021
2022 /* mask with station rate restriction */
2023 if (is_legacy(tbl->lq_type)) {
Johannes Berg8318d782008-01-24 19:38:38 +01002024 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Ben Cahill77626352007-11-29 11:09:44 +08002025 /* supp_rates has no CCK bits in A mode */
Zhu Yib481de92007-09-25 17:54:57 -07002026 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002027 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -07002028 else
2029 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002030 lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -07002031
2032 } else
2033 rate_scale_index_msk = rate_mask;
2034
2035 if (!rate_scale_index_msk)
2036 rate_scale_index_msk = rate_mask;
2037
Guy Cohen07bc28e2008-04-23 17:15:03 -07002038 if (!((1 << index) & rate_scale_index_msk)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002039 IWL_ERR(priv, "Current Rate is not valid\n");
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002040 if (lq_sta->search_better_tbl) {
2041 /* revert to active table if search table is not valid*/
2042 tbl->lq_type = LQ_NONE;
2043 lq_sta->search_better_tbl = 0;
2044 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
2045 /* get "active" rate info */
2046 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
2047 rate = rs_update_rate_tbl(priv, lq_sta,
2048 tbl, index, is_green);
2049 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002050 return;
Zhu Yib481de92007-09-25 17:54:57 -07002051 }
2052
Ben Cahill77626352007-11-29 11:09:44 +08002053 /* Get expected throughput table and history window for current rate */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002054 if (!tbl->expected_tpt) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002055 IWL_ERR(priv, "tbl->expected_tpt is NULL\n");
Guy Cohen07bc28e2008-04-23 17:15:03 -07002056 return;
2057 }
Zhu Yib481de92007-09-25 17:54:57 -07002058
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002059 /* force user max rate if set by user */
2060 if ((lq_sta->max_rate_idx != -1) &&
2061 (lq_sta->max_rate_idx < index)) {
2062 index = lq_sta->max_rate_idx;
2063 update_lq = 1;
2064 window = &(tbl->win[index]);
2065 goto lq_update;
2066 }
2067
Zhu Yib481de92007-09-25 17:54:57 -07002068 window = &(tbl->win[index]);
2069
Ben Cahill77626352007-11-29 11:09:44 +08002070 /*
2071 * If there is not enough history to calculate actual average
2072 * throughput, keep analyzing results of more tx frames, without
2073 * changing rate or mode (bypass most of the rest of this function).
2074 * Set up new rate table in uCode only if old rate is not supported
2075 * in current association (use new rate found above).
2076 */
Zhu Yib481de92007-09-25 17:54:57 -07002077 fail_count = window->counter - window->success_counter;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002078 if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
2079 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002080 IWL_DEBUG_RATE(priv, "LQ: still below TH. succ=%d total=%d "
Zhu Yib481de92007-09-25 17:54:57 -07002081 "for index %d\n",
2082 window->success_counter, window->counter, index);
Ben Cahill77626352007-11-29 11:09:44 +08002083
2084 /* Can't calculate this yet; not enough history */
Zhu Yib481de92007-09-25 17:54:57 -07002085 window->average_tpt = IWL_INVALID_VALUE;
Ben Cahill77626352007-11-29 11:09:44 +08002086
2087 /* Should we stay with this modulation mode,
2088 * or search for a new one? */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002089 rs_stay_in_table(lq_sta);
Ben Cahill77626352007-11-29 11:09:44 +08002090
Zhu Yib481de92007-09-25 17:54:57 -07002091 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08002092 }
Ben Cahill77626352007-11-29 11:09:44 +08002093 /* Else we have enough samples; calculate estimate of
2094 * actual average throughput */
Reinette Chatre3d79b2a2010-05-03 10:55:07 -07002095 if (window->average_tpt != ((window->success_ratio *
2096 tbl->expected_tpt[index] + 64) / 128)) {
2097 IWL_ERR(priv, "expected_tpt should have been calculated by now\n");
2098 window->average_tpt = ((window->success_ratio *
2099 tbl->expected_tpt[index] + 64) / 128);
2100 }
Zhu Yib481de92007-09-25 17:54:57 -07002101
Ben Cahill77626352007-11-29 11:09:44 +08002102 /* If we are searching for better modulation mode, check success. */
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002103 if (lq_sta->search_better_tbl &&
Johannes Berg3ad3b922009-08-07 15:41:48 -07002104 (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI)) {
Ben Cahill77626352007-11-29 11:09:44 +08002105 /* If good success, continue using the "search" mode;
2106 * no need to send new link quality command, since we're
2107 * continuing to use the setup that we've been trying. */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002108 if (window->average_tpt > lq_sta->last_tpt) {
2109
Tomas Winklere1623442009-01-27 14:27:56 -08002110 IWL_DEBUG_RATE(priv, "LQ: SWITCHING TO NEW TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002111 "suc=%d cur-tpt=%d old-tpt=%d\n",
2112 window->success_ratio,
2113 window->average_tpt,
2114 lq_sta->last_tpt);
2115
2116 if (!is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002117 lq_sta->enable_counter = 1;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002118
Ben Cahill77626352007-11-29 11:09:44 +08002119 /* Swap tables; "search" becomes "active" */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002120 lq_sta->active_tbl = active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002121 current_tpt = window->average_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002122
2123 /* Else poor success; go back to mode in "active" table */
Zhu Yib481de92007-09-25 17:54:57 -07002124 } else {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002125
Tomas Winklere1623442009-01-27 14:27:56 -08002126 IWL_DEBUG_RATE(priv, "LQ: GOING BACK TO THE OLD TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002127 "suc=%d cur-tpt=%d old-tpt=%d\n",
2128 window->success_ratio,
2129 window->average_tpt,
2130 lq_sta->last_tpt);
2131
Ben Cahill77626352007-11-29 11:09:44 +08002132 /* Nullify "search" table */
Zhu Yib481de92007-09-25 17:54:57 -07002133 tbl->lq_type = LQ_NONE;
Ben Cahill77626352007-11-29 11:09:44 +08002134
2135 /* Revert to "active" table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002136 active_tbl = lq_sta->active_tbl;
2137 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002138
Ben Cahill77626352007-11-29 11:09:44 +08002139 /* Revert to "active" rate and throughput info */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002140 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002141 current_tpt = lq_sta->last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002142
2143 /* Need to set up a new rate table in uCode */
2144 update_lq = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002145 }
Ben Cahill77626352007-11-29 11:09:44 +08002146
2147 /* Either way, we've made a decision; modulation mode
2148 * search is done, allow rate adjustment next time. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002149 lq_sta->search_better_tbl = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002150 done_search = 1; /* Don't switch modes below! */
Zhu Yib481de92007-09-25 17:54:57 -07002151 goto lq_update;
2152 }
2153
Ben Cahill77626352007-11-29 11:09:44 +08002154 /* (Else) not in search of better modulation mode, try for better
2155 * starting rate, while staying in this mode. */
Ester Kummerbf403db2008-05-05 10:22:40 +08002156 high_low = rs_get_adjacent_rate(priv, index, rate_scale_index_msk,
Zhu Yib481de92007-09-25 17:54:57 -07002157 tbl->lq_type);
2158 low = high_low & 0xff;
2159 high = (high_low >> 8) & 0xff;
2160
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002161 /* If user set max rate, dont allow higher than user constrain */
2162 if ((lq_sta->max_rate_idx != -1) &&
2163 (lq_sta->max_rate_idx < high))
2164 high = IWL_RATE_INVALID;
2165
Guy Cohena5e8b502008-05-29 16:35:11 +08002166 sr = window->success_ratio;
2167
Ben Cahill77626352007-11-29 11:09:44 +08002168 /* Collect measured throughputs for current and adjacent rates */
Zhu Yib481de92007-09-25 17:54:57 -07002169 current_tpt = window->average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002170 if (low != IWL_RATE_INVALID)
2171 low_tpt = tbl->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002172 if (high != IWL_RATE_INVALID)
2173 high_tpt = tbl->win[high].average_tpt;
2174
Guy Cohena5e8b502008-05-29 16:35:11 +08002175 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002176
Ben Cahill77626352007-11-29 11:09:44 +08002177 /* Too many failures, decrease rate */
Guy Cohena5e8b502008-05-29 16:35:11 +08002178 if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002179 IWL_DEBUG_RATE(priv, "decrease rate because of low success_ratio\n");
Zhu Yib481de92007-09-25 17:54:57 -07002180 scale_action = -1;
Ben Cahill77626352007-11-29 11:09:44 +08002181
2182 /* No throughput measured yet for adjacent rates; try increase. */
Zhu Yib481de92007-09-25 17:54:57 -07002183 } else if ((low_tpt == IWL_INVALID_VALUE) &&
Guy Cohena5e8b502008-05-29 16:35:11 +08002184 (high_tpt == IWL_INVALID_VALUE)) {
2185
2186 if (high != IWL_RATE_INVALID && sr >= IWL_RATE_INCREASE_TH)
2187 scale_action = 1;
2188 else if (low != IWL_RATE_INVALID)
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002189 scale_action = 0;
Guy Cohena5e8b502008-05-29 16:35:11 +08002190 }
Ben Cahill77626352007-11-29 11:09:44 +08002191
2192 /* Both adjacent throughputs are measured, but neither one has better
2193 * throughput; we're using the best rate, don't change it! */
Zhu Yib481de92007-09-25 17:54:57 -07002194 else if ((low_tpt != IWL_INVALID_VALUE) &&
2195 (high_tpt != IWL_INVALID_VALUE) &&
2196 (low_tpt < current_tpt) &&
2197 (high_tpt < current_tpt))
2198 scale_action = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002199
2200 /* At least one adjacent rate's throughput is measured,
2201 * and may have better performance. */
Zhu Yib481de92007-09-25 17:54:57 -07002202 else {
Ben Cahill77626352007-11-29 11:09:44 +08002203 /* Higher adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002204 if (high_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002205 /* Higher rate has better throughput */
Guy Cohena5e8b502008-05-29 16:35:11 +08002206 if (high_tpt > current_tpt &&
2207 sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002208 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002209 } else {
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002210 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002211 }
Ben Cahill77626352007-11-29 11:09:44 +08002212
2213 /* Lower adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002214 } else if (low_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002215 /* Lower rate has better throughput */
Zhu Yib481de92007-09-25 17:54:57 -07002216 if (low_tpt > current_tpt) {
Tomas Winklere1623442009-01-27 14:27:56 -08002217 IWL_DEBUG_RATE(priv,
2218 "decrease rate because of low tpt\n");
Zhu Yib481de92007-09-25 17:54:57 -07002219 scale_action = -1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002220 } else if (sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002221 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002222 }
Zhu Yib481de92007-09-25 17:54:57 -07002223 }
2224 }
2225
Ben Cahill77626352007-11-29 11:09:44 +08002226 /* Sanity check; asked for decrease, but success rate or throughput
2227 * has been good at old rate. Don't change it. */
Guy Cohena5e8b502008-05-29 16:35:11 +08002228 if ((scale_action == -1) && (low != IWL_RATE_INVALID) &&
2229 ((sr > IWL_RATE_HIGH_TH) ||
Zhu Yib481de92007-09-25 17:54:57 -07002230 (current_tpt > (100 * tbl->expected_tpt[low]))))
Zhu Yib481de92007-09-25 17:54:57 -07002231 scale_action = 0;
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002232 if (!iwl_ht_enabled(priv) && !is_legacy(tbl->lq_type))
2233 scale_action = -1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07002234 if (iwl_tx_ant_restriction(priv) != IWL_ANT_OK_MULTI &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002235 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type)))
2236 scale_action = -1;
Zhu Yib481de92007-09-25 17:54:57 -07002237 switch (scale_action) {
2238 case -1:
Ben Cahill77626352007-11-29 11:09:44 +08002239 /* Decrease starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002240 if (low != IWL_RATE_INVALID) {
2241 update_lq = 1;
2242 index = low;
2243 }
Mohamed Abbas447fee72009-04-20 14:37:02 -07002244
Zhu Yib481de92007-09-25 17:54:57 -07002245 break;
2246 case 1:
Ben Cahill77626352007-11-29 11:09:44 +08002247 /* Increase starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002248 if (high != IWL_RATE_INVALID) {
2249 update_lq = 1;
2250 index = high;
2251 }
2252
2253 break;
2254 case 0:
Ben Cahill77626352007-11-29 11:09:44 +08002255 /* No change */
Zhu Yib481de92007-09-25 17:54:57 -07002256 default:
2257 break;
2258 }
2259
Tomas Winklere1623442009-01-27 14:27:56 -08002260 IWL_DEBUG_RATE(priv, "choose rate scale index %d action %d low %d "
Zhu Yib481de92007-09-25 17:54:57 -07002261 "high %d type %d\n",
2262 index, scale_action, low, high, tbl->lq_type);
2263
Guy Cohena5e8b502008-05-29 16:35:11 +08002264lq_update:
Ben Cahill77626352007-11-29 11:09:44 +08002265 /* Replace uCode's rate table for the destination station. */
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002266 if (update_lq)
2267 rate = rs_update_rate_tbl(priv, lq_sta,
2268 tbl, index, is_green);
Ben Cahill77626352007-11-29 11:09:44 +08002269
Johannes Berg3ad3b922009-08-07 15:41:48 -07002270 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI) {
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002271 /* Should we stay with this modulation mode,
2272 * or search for a new one? */
2273 rs_stay_in_table(lq_sta);
2274 }
Ben Cahill77626352007-11-29 11:09:44 +08002275 /*
2276 * Search for new modulation mode if we're:
2277 * 1) Not changing rates right now
2278 * 2) Not just finishing up a search
2279 * 3) Allowing a new search
2280 */
Guy Cohen47cfd462008-05-27 11:29:34 +08002281 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && window->counter) {
Ben Cahill77626352007-11-29 11:09:44 +08002282 /* Save current throughput to compare with "search" throughput*/
Tomas Winklerc33104f2008-01-14 17:46:21 -08002283 lq_sta->last_tpt = current_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002284
Ben Cahill77626352007-11-29 11:09:44 +08002285 /* Select a new "search" modulation mode to try.
2286 * If one is found, set up the new "search" table. */
Zhu Yib481de92007-09-25 17:54:57 -07002287 if (is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002288 rs_move_legacy_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002289 else if (is_siso(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002290 rs_move_siso_to_other(priv, lq_sta, conf, sta, index);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002291 else if (is_mimo2(tbl->lq_type))
2292 rs_move_mimo2_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002293 else
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002294 rs_move_mimo3_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002295
Ben Cahill77626352007-11-29 11:09:44 +08002296 /* If new "search" mode was selected, set up in uCode table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002297 if (lq_sta->search_better_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002298 /* Access the "search" table, clear its history. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002299 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Zhu Yib481de92007-09-25 17:54:57 -07002300 for (i = 0; i < IWL_RATE_COUNT; i++)
2301 rs_rate_scale_clear_window(&(tbl->win[i]));
2302
Ben Cahill77626352007-11-29 11:09:44 +08002303 /* Use new "search" start rate */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002304 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002305
Tomas Winklere1623442009-01-27 14:27:56 -08002306 IWL_DEBUG_RATE(priv, "Switch current mcs: %X index: %d\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002307 tbl->current_rate, index);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002308 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002309 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Mohamed Abbas447fee72009-04-20 14:37:02 -07002310 } else
2311 done_search = 1;
2312 }
Zhu Yib481de92007-09-25 17:54:57 -07002313
Mohamed Abbas447fee72009-04-20 14:37:02 -07002314 if (done_search && !lq_sta->stay_in_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002315 /* If the "active" (non-search) mode was legacy,
2316 * and we've tried switching antennas,
2317 * but we haven't been able to try HT modes (not available),
2318 * stay with best antenna legacy modulation for a while
2319 * before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002320 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08002321 if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
Mohamed Abbasd6e93392009-05-08 13:44:39 -07002322 lq_sta->action_counter > tbl1->max_search) {
Tomas Winklere1623442009-01-27 14:27:56 -08002323 IWL_DEBUG_RATE(priv, "LQ: STAY in legacy table\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08002324 rs_set_stay_in_table(priv, 1, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002325 }
2326
Ben Cahill77626352007-11-29 11:09:44 +08002327 /* If we're in an HT mode, and all 3 mode switch actions
2328 * have been tried and compared, stay in this best modulation
2329 * mode for a while before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002330 if (lq_sta->enable_counter &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002331 (lq_sta->action_counter >= tbl1->max_search) &&
2332 iwl_ht_enabled(priv)) {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002333 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2334 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2335 (tid != MAX_TID_COUNT)) {
Wey-Yi Guy86b47662009-03-10 14:35:09 -07002336 tid_data =
2337 &priv->stations[lq_sta->lq.sta_id].tid[tid];
2338 if (tid_data->agg.state == IWL_AGG_OFF) {
2339 IWL_DEBUG_RATE(priv,
2340 "try to aggregate tid %d\n",
2341 tid);
2342 rs_tl_turn_on_agg(priv, tid,
2343 lq_sta, sta);
2344 }
Zhu Yib481de92007-09-25 17:54:57 -07002345 }
Ester Kummerbf403db2008-05-05 10:22:40 +08002346 rs_set_stay_in_table(priv, 0, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002347 }
Zhu Yib481de92007-09-25 17:54:57 -07002348 }
2349
2350out:
Tomas Winkler978785a2008-12-19 10:37:31 +08002351 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07002352 i = index;
Johannes Bergb7e35002008-09-11 02:22:58 +02002353 lq_sta->last_txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -07002354}
2355
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002356/**
2357 * rs_initialize_lq - Initialize a station's hardware rate table
2358 *
2359 * The uCode's station table contains a table of fallback rates
2360 * for automatic fallback during transmission.
2361 *
2362 * NOTE: This sets up a default set of values. These will be replaced later
2363 * if the driver's iwl-agn-rs rate scaling algorithm is used, instead of
2364 * rc80211_simple.
2365 *
2366 * NOTE: Run REPLY_ADD_STA command to set up station table entry, before
2367 * calling this function (which runs REPLY_TX_LINK_QUALITY_CMD,
2368 * which requires station table entry to exist).
2369 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002370static void rs_initialize_lq(struct iwl_priv *priv,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002371 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002372 struct ieee80211_sta *sta,
2373 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002374{
Tomas Winklere227cea2008-07-18 13:53:05 +08002375 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002376 int rate_idx;
Guy Cohenaade00c2008-04-23 17:14:59 -07002377 int i;
Guy Cohen39e88502008-04-23 17:14:57 -07002378 u32 rate;
Daniel C Halperinb2617932009-08-13 13:30:59 -07002379 u8 use_green = rs_use_green(sta, &priv->current_ht_config);
Guy Cohenaade00c2008-04-23 17:14:59 -07002380 u8 active_tbl = 0;
2381 u8 valid_tx_ant;
Zhu Yib481de92007-09-25 17:54:57 -07002382
Johannes Berg4b7679a2008-09-18 18:14:18 +02002383 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002384 goto out;
2385
Johannes Bergb7e35002008-09-11 02:22:58 +02002386 i = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002387
Guy Cohenaade00c2008-04-23 17:14:59 -07002388 valid_tx_ant = priv->hw_params.valid_tx_ant;
2389
Tomas Winklerc33104f2008-01-14 17:46:21 -08002390 if (!lq_sta->search_better_tbl)
2391 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002392 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002393 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002394
Tomas Winklerc33104f2008-01-14 17:46:21 -08002395 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002396
2397 if ((i < 0) || (i >= IWL_RATE_COUNT))
2398 i = 0;
2399
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002400 rate = iwl_rates[i].plcp;
Winkler, Tomaseb48dca2008-10-29 14:05:48 -07002401 tbl->ant_type = first_antenna(valid_tx_ant);
2402 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
Zhu Yib481de92007-09-25 17:54:57 -07002403
2404 if (i >= IWL_FIRST_CCK_RATE && i <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -07002405 rate |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002406
Guy Cohen39e88502008-04-23 17:14:57 -07002407 rs_get_tbl_info_from_mcs(rate, priv->band, tbl, &rate_idx);
Guy Cohenaade00c2008-04-23 17:14:59 -07002408 if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2409 rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07002410
Tomas Winkler978785a2008-12-19 10:37:31 +08002411 rate = rate_n_flags_from_tbl(priv, tbl, rate_idx, use_green);
Guy Cohen39e88502008-04-23 17:14:57 -07002412 tbl->current_rate = rate;
Guy Coheneecd6e52008-04-23 17:14:58 -07002413 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002414 rs_fill_link_cmd(NULL, lq_sta, rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002415 priv->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq;
2416 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_SYNC, true);
Zhu Yib481de92007-09-25 17:54:57 -07002417 out:
2418 return;
2419}
2420
Johannes Berge6a98542008-10-21 12:40:02 +02002421static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta,
2422 struct ieee80211_tx_rate_control *txrc)
Zhu Yib481de92007-09-25 17:54:57 -07002423{
2424
Johannes Berge6a98542008-10-21 12:40:02 +02002425 struct sk_buff *skb = txrc->skb;
2426 struct ieee80211_supported_band *sband = txrc->sband;
Reinette Chatref875f512010-04-05 10:43:10 -07002427 struct iwl_priv *priv __maybe_unused = (struct iwl_priv *)priv_r;
Johannes Berge6a98542008-10-21 12:40:02 +02002428 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winkler417f1142008-11-12 13:14:06 -08002429 struct iwl_lq_sta *lq_sta = priv_sta;
2430 int rate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002431
Tomas Winklere1623442009-01-27 14:27:56 -08002432 IWL_DEBUG_RATE_LIMIT(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002433
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002434 /* Get max rate if user set max rate */
2435 if (lq_sta) {
2436 lq_sta->max_rate_idx = txrc->max_rate_idx;
2437 if ((sband->band == IEEE80211_BAND_5GHZ) &&
2438 (lq_sta->max_rate_idx != -1))
2439 lq_sta->max_rate_idx += IWL_FIRST_OFDM_RATE;
2440 if ((lq_sta->max_rate_idx < 0) ||
2441 (lq_sta->max_rate_idx >= IWL_RATE_COUNT))
2442 lq_sta->max_rate_idx = -1;
2443 }
2444
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002445 /* Treat uninitialized rate scaling data same as non-existing. */
2446 if (lq_sta && !lq_sta->drv) {
2447 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
2448 priv_sta = NULL;
2449 }
2450
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002451 /* Send management frames and NO_ACK data using lowest rate. */
Luis R. Rodriguez4c6d4f52009-07-16 10:05:41 -07002452 if (rate_control_send_low(sta, priv_sta, txrc))
Johannes Berg4b7679a2008-09-18 18:14:18 +02002453 return;
Zhu Yib481de92007-09-25 17:54:57 -07002454
Tomas Winkler417f1142008-11-12 13:14:06 -08002455 rate_idx = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002456
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002457 if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
Tomas Winkler417f1142008-11-12 13:14:06 -08002458 rate_idx -= IWL_FIRST_OFDM_RATE;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002459 /* 6M and 9M shared same MCS index */
2460 rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
2461 if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2462 IWL_RATE_MIMO3_6M_PLCP)
2463 rate_idx = rate_idx + (2 * MCS_INDEX_PER_STREAM);
2464 else if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2465 IWL_RATE_MIMO2_6M_PLCP)
2466 rate_idx = rate_idx + MCS_INDEX_PER_STREAM;
2467 info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
2468 if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
2469 info->control.rates[0].flags |= IEEE80211_TX_RC_SHORT_GI;
2470 if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
2471 info->control.rates[0].flags |= IEEE80211_TX_RC_DUP_DATA;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002472 if (lq_sta->last_rate_n_flags & RATE_MCS_HT40_MSK)
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002473 info->control.rates[0].flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2474 if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
2475 info->control.rates[0].flags |= IEEE80211_TX_RC_GREEN_FIELD;
2476 } else {
Daniel C Halperin50273092009-08-28 09:44:45 -07002477 /* Check for invalid rates */
2478 if ((rate_idx < 0) || (rate_idx >= IWL_RATE_COUNT_LEGACY) ||
2479 ((sband->band == IEEE80211_BAND_5GHZ) &&
2480 (rate_idx < IWL_FIRST_OFDM_RATE)))
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002481 rate_idx = rate_lowest_index(sband, sta);
Daniel C Halperin50273092009-08-28 09:44:45 -07002482 /* On valid 5 GHz rate, adjust index */
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002483 else if (sband->band == IEEE80211_BAND_5GHZ)
2484 rate_idx -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin7ebaeff2009-08-21 13:34:20 -07002485 info->control.rates[0].flags = 0;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002486 }
Tomas Winkler417f1142008-11-12 13:14:06 -08002487 info->control.rates[0].idx = rate_idx;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002488
Zhu Yib481de92007-09-25 17:54:57 -07002489}
2490
Johannes Berg4b7679a2008-09-18 18:14:18 +02002491static void *rs_alloc_sta(void *priv_rate, struct ieee80211_sta *sta,
2492 gfp_t gfp)
Zhu Yib481de92007-09-25 17:54:57 -07002493{
Tomas Winklere227cea2008-07-18 13:53:05 +08002494 struct iwl_lq_sta *lq_sta;
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002495 struct iwl_station_priv *sta_priv = (struct iwl_station_priv *) sta->drv_priv;
Ester Kummerbf403db2008-05-05 10:22:40 +08002496 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002497
Ester Kummerbf403db2008-05-05 10:22:40 +08002498 priv = (struct iwl_priv *)priv_rate;
Tomas Winklere1623442009-01-27 14:27:56 -08002499 IWL_DEBUG_RATE(priv, "create station rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -07002500
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002501 lq_sta = &sta_priv->lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002502
Tomas Winklerc33104f2008-01-14 17:46:21 -08002503 return lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002504}
2505
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002506/*
2507 * Called after adding a new station to initialize rate scaling
2508 */
2509void iwl_rs_rate_init(struct iwl_priv *priv, struct ieee80211_sta *sta, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07002510{
2511 int i, j;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002512 struct ieee80211_hw *hw = priv->hw;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002513 struct ieee80211_conf *conf = &priv->hw->conf;
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002514 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002515 struct iwl_station_priv *sta_priv;
2516 struct iwl_lq_sta *lq_sta;
2517 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07002518
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002519 sta_priv = (struct iwl_station_priv *) sta->drv_priv;
2520 lq_sta = &sta_priv->lq_sta;
2521 sband = hw->wiphy->bands[conf->channel->band];
2522
2523
2524 lq_sta->lq.sta_id = sta_id;
Reinette Chatre5ad13f82009-10-30 14:36:14 -07002525
2526 for (j = 0; j < LQ_SIZE; j++)
2527 for (i = 0; i < IWL_RATE_COUNT; i++)
2528 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
2529
Tomas Winklerc33104f2008-01-14 17:46:21 -08002530 lq_sta->flush_timer = 0;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002531 lq_sta->supp_rates = sta->supp_rates[sband->band];
Zhu Yib481de92007-09-25 17:54:57 -07002532 for (j = 0; j < LQ_SIZE; j++)
2533 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002534 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002535
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002536 IWL_DEBUG_RATE(priv, "LQ: *** rate scale station global init for station %d ***\n",
2537 sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002538 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2539 * the lowest or the highest rate.. Could consider using RSSI from
2540 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2541 * after assoc.. */
2542
Tomas Winklerc33104f2008-01-14 17:46:21 -08002543 lq_sta->is_dup = 0;
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002544 lq_sta->max_rate_idx = -1;
Abbas, Mohamed7d049e52009-01-20 21:33:53 -08002545 lq_sta->missed_rate_counter = IWL_MISSED_RATE_MAX;
Daniel C Halperinb2617932009-08-13 13:30:59 -07002546 lq_sta->is_green = rs_use_green(sta, &priv->current_ht_config);
Guy Cohen39e88502008-04-23 17:14:57 -07002547 lq_sta->active_legacy_rate = priv->active_rate & ~(0x1000);
Johannes Berg8318d782008-01-24 19:38:38 +01002548 lq_sta->band = priv->band;
Ben Cahill77626352007-11-29 11:09:44 +08002549 /*
2550 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2551 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2552 */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002553 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2554 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002555 lq_sta->active_siso_rate &= ~((u16)0x2);
2556 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002557
Ben Cahill77626352007-11-29 11:09:44 +08002558 /* Same here */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002559 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2560 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002561 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2562 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2563
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002564 lq_sta->active_mimo3_rate = ht_cap->mcs.rx_mask[2] << 1;
2565 lq_sta->active_mimo3_rate |= ht_cap->mcs.rx_mask[2] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002566 lq_sta->active_mimo3_rate &= ~((u16)0x2);
2567 lq_sta->active_mimo3_rate <<= IWL_FIRST_OFDM_RATE;
2568
Tomas Winklere1623442009-01-27 14:27:56 -08002569 IWL_DEBUG_RATE(priv, "SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002570 lq_sta->active_siso_rate,
Guy Cohenfde0db32008-04-21 15:42:01 -07002571 lq_sta->active_mimo2_rate,
2572 lq_sta->active_mimo3_rate);
2573
Tomas Winklera96a27f2008-10-23 23:48:56 -07002574 /* These values will be overridden later */
Wey-Yi Guy3a23d692010-04-03 16:44:39 -07002575 lq_sta->lq.general_params.single_stream_ant_msk =
2576 first_antenna(priv->hw_params.valid_tx_ant);
2577 lq_sta->lq.general_params.dual_stream_ant_msk =
2578 priv->hw_params.valid_tx_ant &
2579 ~first_antenna(priv->hw_params.valid_tx_ant);
2580 if (!lq_sta->lq.general_params.dual_stream_ant_msk) {
2581 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2582 } else if (num_of_ant(priv->hw_params.valid_tx_ant) == 2) {
2583 lq_sta->lq.general_params.dual_stream_ant_msk =
2584 priv->hw_params.valid_tx_ant;
2585 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002586
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002587 /* as default allow aggregation for all tids */
2588 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002589 lq_sta->drv = priv;
Zhu Yib481de92007-09-25 17:54:57 -07002590
Daniel C Halperin50273092009-08-28 09:44:45 -07002591 /* Set last_txrate_idx to lowest rate */
2592 lq_sta->last_txrate_idx = rate_lowest_index(sband, sta);
2593 if (sband->band == IEEE80211_BAND_5GHZ)
2594 lq_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
Daniel C Halperine3949d62009-09-17 10:43:50 -07002595 lq_sta->is_agg = 0;
Mohamed Abbasd5e49032008-12-12 08:22:15 -08002596
Johannes Berg4b7679a2008-09-18 18:14:18 +02002597 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002598}
2599
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002600static void rs_fill_link_cmd(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08002601 struct iwl_lq_sta *lq_sta, u32 new_rate)
Zhu Yib481de92007-09-25 17:54:57 -07002602{
Tomas Winklere227cea2008-07-18 13:53:05 +08002603 struct iwl_scale_tbl_info tbl_type;
Zhu Yib481de92007-09-25 17:54:57 -07002604 int index = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002605 int rate_idx;
Zhu Yi1b696de2007-09-27 11:27:41 +08002606 int repeat_rate = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07002607 u8 ant_toggle_cnt = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002608 u8 use_ht_possible = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07002609 u8 valid_tx_ant = 0;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002610 struct iwl_link_quality_cmd *lq_cmd = &lq_sta->lq;
Zhu Yib481de92007-09-25 17:54:57 -07002611
Ben Cahill77626352007-11-29 11:09:44 +08002612 /* Override starting rate (index 0) if needed for debug purposes */
Guy Cohen39e88502008-04-23 17:14:57 -07002613 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Zhu Yi98d7e092007-09-27 11:27:42 +08002614
Guy Cohen39e88502008-04-23 17:14:57 -07002615 /* Interpret new_rate (rate_n_flags) */
2616 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
Zhu Yib481de92007-09-25 17:54:57 -07002617 &tbl_type, &rate_idx);
2618
Ben Cahill77626352007-11-29 11:09:44 +08002619 /* How many times should we repeat the initial rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002620 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002621 ant_toggle_cnt = 1;
Zhu Yi1b696de2007-09-27 11:27:41 +08002622 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002623 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002624 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002625 }
Zhu Yib481de92007-09-25 17:54:57 -07002626
2627 lq_cmd->general_params.mimo_delimiter =
2628 is_mimo(tbl_type.lq_type) ? 1 : 0;
Ben Cahill77626352007-11-29 11:09:44 +08002629
2630 /* Fill 1st table entry (index 0) */
Guy Cohen39e88502008-04-23 17:14:57 -07002631 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002632
Guy Cohen07bc28e2008-04-23 17:15:03 -07002633 if (num_of_ant(tbl_type.ant_type) == 1) {
2634 lq_cmd->general_params.single_stream_ant_msk =
2635 tbl_type.ant_type;
2636 } else if (num_of_ant(tbl_type.ant_type) == 2) {
2637 lq_cmd->general_params.dual_stream_ant_msk =
2638 tbl_type.ant_type;
2639 } /* otherwise we don't modify the existing value */
Zhu Yib481de92007-09-25 17:54:57 -07002640
2641 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002642 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002643
Guy Cohenaade00c2008-04-23 17:14:59 -07002644 if (priv)
2645 valid_tx_ant = priv->hw_params.valid_tx_ant;
2646
Ben Cahill77626352007-11-29 11:09:44 +08002647 /* Fill rest of rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002648 while (index < LINK_QUAL_MAX_RETRY_NUM) {
Ben Cahill77626352007-11-29 11:09:44 +08002649 /* Repeat initial/next rate.
2650 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2651 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
Zhu Yi1b696de2007-09-27 11:27:41 +08002652 while (repeat_rate > 0 && (index < LINK_QUAL_MAX_RETRY_NUM)) {
Zhu Yib481de92007-09-25 17:54:57 -07002653 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002654 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2655 ant_toggle_cnt++;
2656 else if (priv &&
2657 rs_toggle_antenna(valid_tx_ant,
2658 &new_rate, &tbl_type))
2659 ant_toggle_cnt = 1;
2660}
Zhu Yi98d7e092007-09-27 11:27:42 +08002661
Ben Cahill77626352007-11-29 11:09:44 +08002662 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002663 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002664
2665 /* Fill next table entry */
Zhu Yib481de92007-09-25 17:54:57 -07002666 lq_cmd->rs_table[index].rate_n_flags =
Guy Cohen39e88502008-04-23 17:14:57 -07002667 cpu_to_le32(new_rate);
Zhu Yi1b696de2007-09-27 11:27:41 +08002668 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002669 index++;
2670 }
2671
Guy Cohen39e88502008-04-23 17:14:57 -07002672 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
Zhu Yib481de92007-09-25 17:54:57 -07002673 &rate_idx);
2674
Ben Cahill77626352007-11-29 11:09:44 +08002675 /* Indicate to uCode which entries might be MIMO.
2676 * If initial rate was MIMO, this will finally end up
2677 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Zhu Yib481de92007-09-25 17:54:57 -07002678 if (is_mimo(tbl_type.lq_type))
2679 lq_cmd->general_params.mimo_delimiter = index;
2680
Ben Cahill77626352007-11-29 11:09:44 +08002681 /* Get next rate */
Guy Cohen39e88502008-04-23 17:14:57 -07002682 new_rate = rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2683 use_ht_possible);
Zhu Yib481de92007-09-25 17:54:57 -07002684
Ben Cahill77626352007-11-29 11:09:44 +08002685 /* How many times should we repeat the next rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002686 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002687 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2688 ant_toggle_cnt++;
2689 else if (priv &&
2690 rs_toggle_antenna(valid_tx_ant,
2691 &new_rate, &tbl_type))
2692 ant_toggle_cnt = 1;
2693
Zhu Yi1b696de2007-09-27 11:27:41 +08002694 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002695 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002696 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002697 }
Zhu Yib481de92007-09-25 17:54:57 -07002698
Ben Cahill77626352007-11-29 11:09:44 +08002699 /* Don't allow HT rates after next pass.
2700 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Zhu Yib481de92007-09-25 17:54:57 -07002701 use_ht_possible = 0;
2702
Ben Cahill77626352007-11-29 11:09:44 +08002703 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002704 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002705
2706 /* Fill next table entry */
Guy Cohen39e88502008-04-23 17:14:57 -07002707 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002708
2709 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002710 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002711 }
2712
Wey-Yi Guy4d80d722009-10-02 13:44:01 -07002713 lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07002714 lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
Wey-Yi Guy74697012010-07-28 09:18:54 -07002715
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07002716 lq_cmd->agg_params.agg_time_limit =
2717 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
Wey-Yi Guy74697012010-07-28 09:18:54 -07002718 /*
2719 * overwrite if needed, pass aggregation time limit
2720 * to uCode in uSec
2721 */
2722 if (priv && priv->cfg->agg_time_limit &&
2723 priv->cfg->agg_time_limit >= LINK_QUAL_AGG_TIME_LIMIT_MIN &&
2724 priv->cfg->agg_time_limit <= LINK_QUAL_AGG_TIME_LIMIT_MAX)
2725 lq_cmd->agg_params.agg_time_limit =
2726 cpu_to_le16(priv->cfg->agg_time_limit);
Zhu Yib481de92007-09-25 17:54:57 -07002727}
2728
Johannes Berg4b7679a2008-09-18 18:14:18 +02002729static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Zhu Yib481de92007-09-25 17:54:57 -07002730{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002731 return hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002732}
2733/* rate scale requires free function to be implemented */
2734static void rs_free(void *priv_rate)
2735{
2736 return;
2737}
2738
Johannes Berg4b7679a2008-09-18 18:14:18 +02002739static void rs_free_sta(void *priv_r, struct ieee80211_sta *sta,
2740 void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002741{
Rami Rosen45527c22008-10-07 09:50:01 +02002742 struct iwl_priv *priv __maybe_unused = priv_r;
Zhu Yib481de92007-09-25 17:54:57 -07002743
Tomas Winklere1623442009-01-27 14:27:56 -08002744 IWL_DEBUG_RATE(priv, "enter\n");
Tomas Winklere1623442009-01-27 14:27:56 -08002745 IWL_DEBUG_RATE(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002746}
2747
2748
Zhu Yi93dc6462007-09-27 11:27:37 +08002749#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi5ae212c2007-09-27 11:27:38 +08002750static int open_file_generic(struct inode *inode, struct file *file)
2751{
2752 file->private_data = inode->i_private;
2753 return 0;
2754}
Tomas Winklere227cea2008-07-18 13:53:05 +08002755static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
2756 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +08002757{
Ester Kummerbf403db2008-05-05 10:22:40 +08002758 struct iwl_priv *priv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002759 u8 valid_tx_ant;
2760 u8 ant_sel_tx;
Ester Kummerbf403db2008-05-05 10:22:40 +08002761
2762 priv = lq_sta->drv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002763 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen39e88502008-04-23 17:14:57 -07002764 if (lq_sta->dbg_fixed_rate) {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002765 ant_sel_tx =
2766 ((lq_sta->dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK)
2767 >> RATE_MCS_ANT_POS);
2768 if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
Guy Cohen39e88502008-04-23 17:14:57 -07002769 *rate_n_flags = lq_sta->dbg_fixed_rate;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002770 IWL_DEBUG_RATE(priv, "Fixed rate ON\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002771 } else {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002772 lq_sta->dbg_fixed_rate = 0;
2773 IWL_ERR(priv,
2774 "Invalid antenna selection 0x%X, Valid is 0x%X\n",
2775 ant_sel_tx, valid_tx_ant);
2776 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002777 }
Guy Cohen39e88502008-04-23 17:14:57 -07002778 } else {
Tomas Winklere1623442009-01-27 14:27:56 -08002779 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Zhu Yi98d7e092007-09-27 11:27:42 +08002780 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002781}
2782
2783static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
2784 const char __user *user_buf, size_t count, loff_t *ppos)
2785{
Tomas Winklere227cea2008-07-18 13:53:05 +08002786 struct iwl_lq_sta *lq_sta = file->private_data;
Ester Kummerbf403db2008-05-05 10:22:40 +08002787 struct iwl_priv *priv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002788 char buf[64];
2789 int buf_size;
2790 u32 parsed_rate;
2791
Ester Kummerbf403db2008-05-05 10:22:40 +08002792 priv = lq_sta->drv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002793 memset(buf, 0, sizeof(buf));
2794 buf_size = min(count, sizeof(buf) - 1);
2795 if (copy_from_user(buf, user_buf, buf_size))
2796 return -EFAULT;
2797
2798 if (sscanf(buf, "%x", &parsed_rate) == 1)
Guy Cohen39e88502008-04-23 17:14:57 -07002799 lq_sta->dbg_fixed_rate = parsed_rate;
Zhu Yi98d7e092007-09-27 11:27:42 +08002800 else
Guy Cohen39e88502008-04-23 17:14:57 -07002801 lq_sta->dbg_fixed_rate = 0;
Zhu Yi98d7e092007-09-27 11:27:42 +08002802
Guy Cohen39e88502008-04-23 17:14:57 -07002803 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
2804 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2805 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2806 lq_sta->active_mimo3_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Zhu Yi98d7e092007-09-27 11:27:42 +08002807
Tomas Winklere1623442009-01-27 14:27:56 -08002808 IWL_DEBUG_RATE(priv, "sta_id %d rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002809 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002810
Guy Cohen39e88502008-04-23 17:14:57 -07002811 if (lq_sta->dbg_fixed_rate) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002812 rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002813 iwl_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC, false);
Zhu Yi98d7e092007-09-27 11:27:42 +08002814 }
2815
2816 return count;
2817}
Zhu Yi0209dc12007-09-27 11:27:43 +08002818
Zhu Yi5ae212c2007-09-27 11:27:38 +08002819static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
2820 char __user *user_buf, size_t count, loff_t *ppos)
2821{
Frank Seidela412c802009-03-01 20:25:38 +01002822 char *buff;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002823 int desc = 0;
2824 int i = 0;
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002825 int index = 0;
Frank Seidela412c802009-03-01 20:25:38 +01002826 ssize_t ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002827
Tomas Winklere227cea2008-07-18 13:53:05 +08002828 struct iwl_lq_sta *lq_sta = file->private_data;
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002829 struct iwl_priv *priv;
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002830 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002831
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002832 priv = lq_sta->drv;
Frank Seidela412c802009-03-01 20:25:38 +01002833 buff = kmalloc(1024, GFP_KERNEL);
2834 if (!buff)
2835 return -ENOMEM;
2836
Tomas Winklerc33104f2008-01-14 17:46:21 -08002837 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
Zhu Yi98d7e092007-09-27 11:27:42 +08002838 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002839 lq_sta->total_failed, lq_sta->total_success,
Guy Cohen39e88502008-04-23 17:14:57 -07002840 lq_sta->active_legacy_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002841 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002842 lq_sta->dbg_fixed_rate);
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002843 desc += sprintf(buff+desc, "valid_tx_ant %s%s%s\n",
2844 (priv->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
2845 (priv->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
2846 (priv->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002847 desc += sprintf(buff+desc, "lq type %s\n",
2848 (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
2849 if (is_Ht(tbl->lq_type)) {
2850 desc += sprintf(buff+desc, " %s",
2851 (is_siso(tbl->lq_type)) ? "SISO" :
2852 ((is_mimo2(tbl->lq_type)) ? "MIMO2" : "MIMO3"));
2853 desc += sprintf(buff+desc, " %s",
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002854 (tbl->is_ht40) ? "40MHz" : "20MHz");
Daniel C Halperine3949d62009-09-17 10:43:50 -07002855 desc += sprintf(buff+desc, " %s %s %s\n", (tbl->is_SGI) ? "SGI" : "",
2856 (lq_sta->is_green) ? "GF enabled" : "",
2857 (lq_sta->is_agg) ? "AGG on" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002858 }
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002859 desc += sprintf(buff+desc, "last tx rate=0x%X\n",
2860 lq_sta->last_rate_n_flags);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002861 desc += sprintf(buff+desc, "general:"
2862 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002863 lq_sta->lq.general_params.flags,
2864 lq_sta->lq.general_params.mimo_delimiter,
2865 lq_sta->lq.general_params.single_stream_ant_msk,
2866 lq_sta->lq.general_params.dual_stream_ant_msk);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002867
2868 desc += sprintf(buff+desc, "agg:"
2869 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002870 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
2871 lq_sta->lq.agg_params.agg_dis_start_th,
2872 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002873
2874 desc += sprintf(buff+desc,
2875 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002876 lq_sta->lq.general_params.start_rate_index[0],
2877 lq_sta->lq.general_params.start_rate_index[1],
2878 lq_sta->lq.general_params.start_rate_index[2],
2879 lq_sta->lq.general_params.start_rate_index[3]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002880
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002881 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
2882 index = iwl_hwrate_to_plcp_idx(
2883 le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags));
2884 if (is_legacy(tbl->lq_type)) {
2885 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps\n",
2886 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
2887 iwl_rate_mcs[index].mbps);
2888 } else {
2889 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps (%s)\n",
2890 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
2891 iwl_rate_mcs[index].mbps, iwl_rate_mcs[index].mcs);
2892 }
2893 }
Zhu Yi5ae212c2007-09-27 11:27:38 +08002894
Frank Seidela412c802009-03-01 20:25:38 +01002895 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2896 kfree(buff);
2897 return ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002898}
2899
2900static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Zhu Yi98d7e092007-09-27 11:27:42 +08002901 .write = rs_sta_dbgfs_scale_table_write,
Zhu Yi5ae212c2007-09-27 11:27:38 +08002902 .read = rs_sta_dbgfs_scale_table_read,
2903 .open = open_file_generic,
2904};
Zhu Yi0209dc12007-09-27 11:27:43 +08002905static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
2906 char __user *user_buf, size_t count, loff_t *ppos)
2907{
Frank Seidela412c802009-03-01 20:25:38 +01002908 char *buff;
Zhu Yi0209dc12007-09-27 11:27:43 +08002909 int desc = 0;
2910 int i, j;
Frank Seidela412c802009-03-01 20:25:38 +01002911 ssize_t ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08002912
Tomas Winklere227cea2008-07-18 13:53:05 +08002913 struct iwl_lq_sta *lq_sta = file->private_data;
Frank Seidela412c802009-03-01 20:25:38 +01002914
2915 buff = kmalloc(1024, GFP_KERNEL);
2916 if (!buff)
2917 return -ENOMEM;
2918
Zhu Yi0209dc12007-09-27 11:27:43 +08002919 for (i = 0; i < LQ_SIZE; i++) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002920 desc += sprintf(buff+desc,
2921 "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
Zhu Yi0209dc12007-09-27 11:27:43 +08002922 "rate=0x%X\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08002923 lq_sta->active_tbl == i ? "*" : "x",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002924 lq_sta->lq_info[i].lq_type,
2925 lq_sta->lq_info[i].is_SGI,
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002926 lq_sta->lq_info[i].is_ht40,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002927 lq_sta->lq_info[i].is_dup,
Wey-Yi Guy2681b202009-05-21 13:44:22 -07002928 lq_sta->is_green,
Guy Cohen39e88502008-04-23 17:14:57 -07002929 lq_sta->lq_info[i].current_rate);
Zhu Yi0209dc12007-09-27 11:27:43 +08002930 for (j = 0; j < IWL_RATE_COUNT; j++) {
2931 desc += sprintf(buff+desc,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002932 "counter=%d success=%d %%=%d\n",
2933 lq_sta->lq_info[i].win[j].counter,
2934 lq_sta->lq_info[i].win[j].success_counter,
2935 lq_sta->lq_info[i].win[j].success_ratio);
Zhu Yi0209dc12007-09-27 11:27:43 +08002936 }
2937 }
Frank Seidela412c802009-03-01 20:25:38 +01002938 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2939 kfree(buff);
2940 return ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08002941}
2942
2943static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
2944 .read = rs_sta_dbgfs_stats_table_read,
2945 .open = open_file_generic,
2946};
Zhu Yi5ae212c2007-09-27 11:27:38 +08002947
Wey-Yi Guy38167452009-05-08 13:44:43 -07002948static ssize_t rs_sta_dbgfs_rate_scale_data_read(struct file *file,
2949 char __user *user_buf, size_t count, loff_t *ppos)
2950{
2951 char buff[120];
2952 int desc = 0;
2953 ssize_t ret;
2954
2955 struct iwl_lq_sta *lq_sta = file->private_data;
2956 struct iwl_priv *priv;
2957 struct iwl_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
2958
2959 priv = lq_sta->drv;
2960
2961 if (is_Ht(tbl->lq_type))
2962 desc += sprintf(buff+desc,
2963 "Bit Rate= %d Mb/s\n",
2964 tbl->expected_tpt[lq_sta->last_txrate_idx]);
2965 else
2966 desc += sprintf(buff+desc,
2967 "Bit Rate= %d Mb/s\n",
2968 iwl_rates[lq_sta->last_txrate_idx].ieee >> 1);
Wey-Yi Guy38167452009-05-08 13:44:43 -07002969
2970 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2971 return ret;
2972}
2973
2974static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
2975 .read = rs_sta_dbgfs_rate_scale_data_read,
2976 .open = open_file_generic,
2977};
2978
Zhu Yi93dc6462007-09-27 11:27:37 +08002979static void rs_add_debugfs(void *priv, void *priv_sta,
2980 struct dentry *dir)
2981{
Tomas Winklere227cea2008-07-18 13:53:05 +08002982 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002983 lq_sta->rs_sta_dbgfs_scale_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002984 debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002985 lq_sta, &rs_sta_dbgfs_scale_table_ops);
2986 lq_sta->rs_sta_dbgfs_stats_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002987 debugfs_create_file("rate_stats_table", S_IRUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002988 lq_sta, &rs_sta_dbgfs_stats_table_ops);
Wey-Yi Guy38167452009-05-08 13:44:43 -07002989 lq_sta->rs_sta_dbgfs_rate_scale_data_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002990 debugfs_create_file("rate_scale_data", S_IRUSR, dir,
Wey-Yi Guy38167452009-05-08 13:44:43 -07002991 lq_sta, &rs_sta_dbgfs_rate_scale_data_ops);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002992 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002993 debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002994 &lq_sta->tx_agg_tid_en);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002995
Zhu Yi93dc6462007-09-27 11:27:37 +08002996}
2997
2998static void rs_remove_debugfs(void *priv, void *priv_sta)
2999{
Tomas Winklere227cea2008-07-18 13:53:05 +08003000 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08003001 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
3002 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003003 debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003004 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
Zhu Yi93dc6462007-09-27 11:27:37 +08003005}
3006#endif
3007
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003008/*
3009 * Initialization of rate scaling information is done by driver after
3010 * the station is added. Since mac80211 calls this function before a
3011 * station is added we ignore it.
3012 */
3013static void rs_rate_init_stub(void *priv_r, struct ieee80211_supported_band *sband,
3014 struct ieee80211_sta *sta, void *priv_sta)
3015{
3016}
Zhu Yib481de92007-09-25 17:54:57 -07003017static struct rate_control_ops rs_ops = {
3018 .module = NULL,
3019 .name = RS_NAME,
3020 .tx_status = rs_tx_status,
3021 .get_rate = rs_get_rate,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003022 .rate_init = rs_rate_init_stub,
Zhu Yib481de92007-09-25 17:54:57 -07003023 .alloc = rs_alloc,
3024 .free = rs_free,
3025 .alloc_sta = rs_alloc_sta,
3026 .free_sta = rs_free_sta,
Zhu Yi93dc6462007-09-27 11:27:37 +08003027#ifdef CONFIG_MAC80211_DEBUGFS
3028 .add_sta_debugfs = rs_add_debugfs,
3029 .remove_sta_debugfs = rs_remove_debugfs,
3030#endif
Zhu Yib481de92007-09-25 17:54:57 -07003031};
3032
Tomas Winklere227cea2008-07-18 13:53:05 +08003033int iwlagn_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -07003034{
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003035 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003036}
3037
Tomas Winklere227cea2008-07-18 13:53:05 +08003038void iwlagn_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -07003039{
3040 ieee80211_rate_control_unregister(&rs_ops);
3041}
3042