blob: 5bc406c5c7935c1bbb18d98b667cecc35859742c [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>
29#include <linux/wireless.h>
30#include <net/mac80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070031
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/delay.h>
35
36#include <linux/workqueue.h>
37
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070038#include "iwl-dev.h"
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +080039#include "iwl-sta.h"
Tomas Winkler857485c2008-03-21 13:53:44 -070040#include "iwl-core.h"
Zhu Yib481de92007-09-25 17:54:57 -070041
Tomas Winklere227cea2008-07-18 13:53:05 +080042#define RS_NAME "iwl-agn-rs"
Zhu Yib481de92007-09-25 17:54:57 -070043
Guy Cohenaade00c2008-04-23 17:14:59 -070044#define NUM_TRY_BEFORE_ANT_TOGGLE 1
Zhu Yib481de92007-09-25 17:54:57 -070045#define IWL_NUMBER_TRY 1
46#define IWL_HT_NUMBER_TRY 3
47
Ben Cahill77626352007-11-29 11:09:44 +080048#define IWL_RATE_MAX_WINDOW 62 /* # tx in history window */
49#define IWL_RATE_MIN_FAILURE_TH 6 /* min failures to calc tpt */
50#define IWL_RATE_MIN_SUCCESS_TH 8 /* min successes to calc tpt */
51
Abbas, Mohamed7d049e52009-01-20 21:33:53 -080052/* max allowed rate miss before sync LQ cmd */
53#define IWL_MISSED_RATE_MAX 15
Ben Cahill77626352007-11-29 11:09:44 +080054/* max time to accum history 2 seconds */
Mohamed Abbas447fee72009-04-20 14:37:02 -070055#define IWL_RATE_SCALE_FLUSH_INTVL (3*HZ)
Zhu Yib481de92007-09-25 17:54:57 -070056
57static u8 rs_ht_to_legacy[] = {
58 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
59 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
60 IWL_RATE_6M_INDEX,
61 IWL_RATE_6M_INDEX, IWL_RATE_9M_INDEX,
62 IWL_RATE_12M_INDEX, IWL_RATE_18M_INDEX,
63 IWL_RATE_24M_INDEX, IWL_RATE_36M_INDEX,
64 IWL_RATE_48M_INDEX, IWL_RATE_54M_INDEX
65};
66
Guy Cohenaade00c2008-04-23 17:14:59 -070067static const u8 ant_toggle_lookup[] = {
68 /*ANT_NONE -> */ ANT_NONE,
69 /*ANT_A -> */ ANT_B,
70 /*ANT_B -> */ ANT_C,
71 /*ANT_AB -> */ ANT_BC,
72 /*ANT_C -> */ ANT_A,
73 /*ANT_AC -> */ ANT_AB,
74 /*ANT_BC -> */ ANT_AC,
75 /*ANT_ABC -> */ ANT_ABC,
76};
77
Tomas Winklerc79dd5b2008-03-12 16:58:50 -070078static void rs_rate_scale_perform(struct iwl_priv *priv,
Gábor Stefanik514d65c2009-04-23 19:36:08 +020079 struct sk_buff *skb,
Johannes Berg4b7679a2008-09-18 18:14:18 +020080 struct ieee80211_sta *sta,
81 struct iwl_lq_sta *lq_sta);
Wey-Yi Guy46f93812009-07-24 11:13:03 -070082static void rs_fill_link_cmd(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +080083 struct iwl_lq_sta *lq_sta, u32 rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -070084
85
Zhu Yi98d7e092007-09-27 11:27:42 +080086#ifdef CONFIG_MAC80211_DEBUGFS
Tomas Winklere227cea2008-07-18 13:53:05 +080087static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
88 u32 *rate_n_flags, int index);
Zhu Yi98d7e092007-09-27 11:27:42 +080089#else
Tomas Winklere227cea2008-07-18 13:53:05 +080090static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
91 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +080092{}
93#endif
Ben Cahill77626352007-11-29 11:09:44 +080094
Daniel C Halperine3949d62009-09-17 10:43:50 -070095/**
96 * The following tables contain the expected throughput metrics for all rates
97 *
98 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
99 *
100 * where invalid entries are zeros.
101 *
102 * CCK rates are only valid in legacy table and will only be used in G
103 * (2.4 GHz) band.
Ben Cahill77626352007-11-29 11:09:44 +0800104 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -0700105
Daniel C Halperine3949d62009-09-17 10:43:50 -0700106static s32 expected_tpt_legacy[IWL_RATE_COUNT] = {
107 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0
Zhu Yib481de92007-09-25 17:54:57 -0700108};
109
Daniel C Halperine3949d62009-09-17 10:43:50 -0700110static s32 expected_tpt_siso20MHz[4][IWL_RATE_COUNT] = {
111 {0, 0, 0, 0, 42, 0, 76, 102, 124, 158, 183, 193, 202}, /* Norm */
112 {0, 0, 0, 0, 46, 0, 82, 110, 132, 167, 192, 202, 210}, /* SGI */
113 {0, 0, 0, 0, 48, 0, 93, 135, 176, 251, 319, 351, 381}, /* AGG */
114 {0, 0, 0, 0, 53, 0, 102, 149, 193, 275, 348, 381, 413}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700115};
116
Daniel C Halperine3949d62009-09-17 10:43:50 -0700117static s32 expected_tpt_siso40MHz[4][IWL_RATE_COUNT] = {
118 {0, 0, 0, 0, 77, 0, 127, 160, 184, 220, 242, 250, 257}, /* Norm */
119 {0, 0, 0, 0, 83, 0, 135, 169, 193, 229, 250, 257, 264}, /* SGI */
120 {0, 0, 0, 0, 96, 0, 182, 259, 328, 451, 553, 598, 640}, /* AGG */
121 {0, 0, 0, 0, 106, 0, 199, 282, 357, 487, 593, 640, 683}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700122};
123
Daniel C Halperine3949d62009-09-17 10:43:50 -0700124static s32 expected_tpt_mimo2_20MHz[4][IWL_RATE_COUNT] = {
125 {0, 0, 0, 0, 74, 0, 123, 155, 179, 213, 235, 243, 250}, /* Norm */
126 {0, 0, 0, 0, 81, 0, 131, 164, 187, 221, 242, 250, 256}, /* SGI */
127 {0, 0, 0, 0, 92, 0, 175, 250, 317, 436, 534, 578, 619}, /* AGG */
128 {0, 0, 0, 0, 102, 0, 192, 273, 344, 470, 573, 619, 660}, /* AGG+SGI*/
Zhu Yib481de92007-09-25 17:54:57 -0700129};
130
Daniel C Halperine3949d62009-09-17 10:43:50 -0700131static s32 expected_tpt_mimo2_40MHz[4][IWL_RATE_COUNT] = {
132 {0, 0, 0, 0, 123, 0, 182, 214, 235, 264, 279, 285, 289}, /* Norm */
133 {0, 0, 0, 0, 131, 0, 191, 222, 242, 270, 284, 289, 293}, /* SGI */
134 {0, 0, 0, 0, 180, 0, 327, 446, 545, 708, 828, 878, 922}, /* AGG */
135 {0, 0, 0, 0, 197, 0, 355, 481, 584, 752, 872, 922, 966}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700136};
137
Daniel C Halperine3949d62009-09-17 10:43:50 -0700138static s32 expected_tpt_mimo3_20MHz[4][IWL_RATE_COUNT] = {
139 {0, 0, 0, 0, 99, 0, 153, 186, 208, 239, 256, 263, 268}, /* Norm */
140 {0, 0, 0, 0, 106, 0, 162, 194, 215, 246, 262, 268, 273}, /* SGI */
141 {0, 0, 0, 0, 134, 0, 249, 346, 431, 574, 685, 732, 775}, /* AGG */
142 {0, 0, 0, 0, 148, 0, 272, 376, 465, 614, 727, 775, 818}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700143};
144
Daniel C Halperine3949d62009-09-17 10:43:50 -0700145static s32 expected_tpt_mimo3_40MHz[4][IWL_RATE_COUNT] = {
146 {0, 0, 0, 0, 152, 0, 211, 239, 255, 279, 290, 294, 297}, /* Norm */
147 {0, 0, 0, 0, 160, 0, 219, 245, 261, 284, 294, 297, 300}, /* SGI */
148 {0, 0, 0, 0, 254, 0, 443, 584, 695, 868, 984, 1030, 1070}, /* AGG */
149 {0, 0, 0, 0, 277, 0, 478, 624, 737, 911, 1026, 1070, 1109}, /* AGG+SGI */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -0700150};
151
Wey-Yi Guy12b96812009-04-08 11:39:27 -0700152/* mbps, mcs */
Tobias Klauser79496732009-12-23 14:18:11 +0100153static const struct iwl_rate_mcs_info iwl_rate_mcs[IWL_RATE_COUNT] = {
Daniel C Halperine3949d62009-09-17 10:43:50 -0700154 { "1", "BPSK DSSS"},
155 { "2", "QPSK DSSS"},
156 {"5.5", "BPSK CCK"},
157 { "11", "QPSK CCK"},
158 { "6", "BPSK 1/2"},
159 { "9", "BPSK 1/2"},
160 { "12", "QPSK 1/2"},
161 { "18", "QPSK 3/4"},
162 { "24", "16QAM 1/2"},
163 { "36", "16QAM 3/4"},
164 { "48", "64QAM 2/3"},
165 { "54", "64QAM 3/4"},
166 { "60", "64QAM 5/6"},
Wey-Yi Guy12b96812009-04-08 11:39:27 -0700167};
168
Wey-Yi Guya9c146b2009-05-22 11:01:48 -0700169#define MCS_INDEX_PER_STREAM (8)
170
Guy Cohen39e88502008-04-23 17:14:57 -0700171static inline u8 rs_extract_rate(u32 rate_n_flags)
Zhu Yib481de92007-09-25 17:54:57 -0700172{
173 return (u8)(rate_n_flags & 0xFF);
174}
175
Tomas Winklere227cea2008-07-18 13:53:05 +0800176static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window)
Zhu Yib481de92007-09-25 17:54:57 -0700177{
178 window->data = 0;
179 window->success_counter = 0;
180 window->success_ratio = IWL_INVALID_VALUE;
181 window->counter = 0;
182 window->average_tpt = IWL_INVALID_VALUE;
183 window->stamp = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700184}
185
Guy Cohenaade00c2008-04-23 17:14:59 -0700186static inline u8 rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
187{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300188 return (ant_type & valid_antenna) == ant_type;
Guy Cohenaade00c2008-04-23 17:14:59 -0700189}
190
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200191/*
192 * removes the old data from the statistics. All data that is older than
193 * TID_MAX_TIME_DIFF, will be deleted.
194 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800195static void rs_tl_rm_old_stats(struct iwl_traffic_load *tl, u32 curr_time)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200196{
197 /* The oldest age we want to keep */
198 u32 oldest_time = curr_time - TID_MAX_TIME_DIFF;
199
200 while (tl->queue_count &&
201 (tl->time_stamp < oldest_time)) {
202 tl->total -= tl->packet_count[tl->head];
203 tl->packet_count[tl->head] = 0;
204 tl->time_stamp += TID_QUEUE_CELL_SPACING;
205 tl->queue_count--;
206 tl->head++;
207 if (tl->head >= TID_QUEUE_MAX_SIZE)
208 tl->head = 0;
209 }
210}
211
212/*
213 * increment traffic load value for tid and also remove
214 * any old values if passed the certain time period
215 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800216static u8 rs_tl_add_packet(struct iwl_lq_sta *lq_data,
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800217 struct ieee80211_hdr *hdr)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200218{
219 u32 curr_time = jiffies_to_msecs(jiffies);
220 u32 time_diff;
221 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800222 struct iwl_traffic_load *tl = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800223 u8 tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200224
Tomas Winkler417f1142008-11-12 13:14:06 -0800225 if (ieee80211_is_data_qos(hdr->frame_control)) {
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700226 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +0800227 tid = qc[0] & 0xf;
228 } else
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800229 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200230
Reinette Chatree6a6cf42009-08-13 13:30:50 -0700231 if (unlikely(tid >= TID_MAX_LOAD_COUNT))
232 return MAX_TID_COUNT;
233
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200234 tl = &lq_data->load[tid];
235
236 curr_time -= curr_time % TID_ROUND_VALUE;
237
238 /* Happens only for the first packet. Initialize the data */
239 if (!(tl->queue_count)) {
240 tl->total = 1;
241 tl->time_stamp = curr_time;
242 tl->queue_count = 1;
243 tl->head = 0;
244 tl->packet_count[0] = 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800245 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200246 }
247
248 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
249 index = time_diff / TID_QUEUE_CELL_SPACING;
250
251 /* The history is too long: remove data that is older than */
252 /* TID_MAX_TIME_DIFF */
253 if (index >= TID_QUEUE_MAX_SIZE)
254 rs_tl_rm_old_stats(tl, curr_time);
255
256 index = (tl->head + index) % TID_QUEUE_MAX_SIZE;
257 tl->packet_count[index] = tl->packet_count[index] + 1;
258 tl->total = tl->total + 1;
259
260 if ((index + 1) > tl->queue_count)
261 tl->queue_count = index + 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800262
263 return tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200264}
265
266/*
267 get the traffic load value for tid
268*/
Tomas Winklere227cea2008-07-18 13:53:05 +0800269static u32 rs_tl_get_load(struct iwl_lq_sta *lq_data, u8 tid)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200270{
271 u32 curr_time = jiffies_to_msecs(jiffies);
272 u32 time_diff;
273 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800274 struct iwl_traffic_load *tl = NULL;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200275
276 if (tid >= TID_MAX_LOAD_COUNT)
277 return 0;
278
279 tl = &(lq_data->load[tid]);
280
281 curr_time -= curr_time % TID_ROUND_VALUE;
282
283 if (!(tl->queue_count))
284 return 0;
285
286 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
287 index = time_diff / TID_QUEUE_CELL_SPACING;
288
289 /* The history is too long: remove data that is older than */
290 /* TID_MAX_TIME_DIFF */
291 if (index >= TID_QUEUE_MAX_SIZE)
292 rs_tl_rm_old_stats(tl, curr_time);
293
294 return tl->total;
295}
296
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700297static void rs_tl_turn_on_agg_for_tid(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +0800298 struct iwl_lq_sta *lq_data, u8 tid,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200299 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200300{
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800301 int ret;
302
Johannes Bergff550cb2008-09-11 03:17:05 +0200303 if (rs_tl_get_load(lq_data, tid) > IWL_AGG_LOAD_THRESHOLD) {
Tomas Winklere1623442009-01-27 14:27:56 -0800304 IWL_DEBUG_HT(priv, "Starting Tx agg: STA: %pM tid: %d\n",
Johannes Berge1749612008-10-27 15:59:26 -0700305 sta->addr, tid);
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800306 ret = ieee80211_start_tx_ba_session(sta, tid);
307 if (ret == -EAGAIN) {
308 /*
309 * driver and mac80211 is out of sync
310 * this might be cause by reloading firmware
311 * stop the tx ba session here
312 */
313 IWL_DEBUG_HT(priv, "Fail start Tx agg on tid: %d\n",
314 tid);
315 ret = ieee80211_stop_tx_ba_session(sta, tid,
316 WLAN_BACK_INITIATOR);
317 }
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200318 }
319}
320
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700321static void rs_tl_turn_on_agg(struct iwl_priv *priv, u8 tid,
Tomas Winklere227cea2008-07-18 13:53:05 +0800322 struct iwl_lq_sta *lq_data,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200323 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200324{
325 if ((tid < TID_MAX_LOAD_COUNT))
326 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
327 else if (tid == IWL_AGG_ALL_TID)
328 for (tid = 0; tid < TID_MAX_LOAD_COUNT; tid++)
329 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700330 if (priv->cfg->use_rts_for_ht) {
331 /*
332 * switch to RTS/CTS if it is the prefer protection method
333 * for HT traffic
334 */
335 IWL_DEBUG_HT(priv, "use RTS/CTS protection for HT\n");
336 priv->staging_rxon.flags &= ~RXON_FLG_SELF_CTS_EN;
337 iwlcore_commit_rxon(priv);
338 }
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200339}
340
Guy Cohen39e88502008-04-23 17:14:57 -0700341static inline int get_num_of_ant_from_rate(u32 rate_n_flags)
Guy Cohenfde0db32008-04-21 15:42:01 -0700342{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300343 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
344 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
345 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
Guy Cohenfde0db32008-04-21 15:42:01 -0700346}
347
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700348/*
349 * Static function to get the expected throughput from an iwl_scale_tbl_info
350 * that wraps a NULL pointer check
351 */
352static s32 get_expected_tpt(struct iwl_scale_tbl_info *tbl, int rs_index)
353{
354 if (tbl->expected_tpt)
355 return tbl->expected_tpt[rs_index];
356 return 0;
357}
358
Ben Cahill77626352007-11-29 11:09:44 +0800359/**
360 * rs_collect_tx_data - Update the success/failure sliding window
361 *
362 * We keep a sliding window of the last 62 packets transmitted
363 * at this rate. window->data contains the bitmask of successful
364 * packets.
365 */
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700366static int rs_collect_tx_data(struct iwl_scale_tbl_info *tbl,
367 int scale_index, int attempts, int successes)
Zhu Yib481de92007-09-25 17:54:57 -0700368{
Tomas Winklere227cea2008-07-18 13:53:05 +0800369 struct iwl_rate_scale_data *window = NULL;
Guy Cohen39e88502008-04-23 17:14:57 -0700370 static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1));
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700371 s32 fail_count, tpt;
Zhu Yib481de92007-09-25 17:54:57 -0700372
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800373 if (scale_index < 0 || scale_index >= IWL_RATE_COUNT)
374 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700375
Daniel C Halperine3949d62009-09-17 10:43:50 -0700376 /* Select window for current tx bit rate */
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700377 window = &(tbl->win[scale_index]);
378
379 /* Get expected throughput */
380 tpt = get_expected_tpt(tbl, scale_index);
Zhu Yib481de92007-09-25 17:54:57 -0700381
Ben Cahill77626352007-11-29 11:09:44 +0800382 /*
383 * Keep track of only the latest 62 tx frame attempts in this rate's
384 * history window; anything older isn't really relevant any more.
385 * If we have filled up the sliding window, drop the oldest attempt;
386 * if the oldest attempt (highest bit in bitmap) shows "success",
387 * subtract "1" from the success counter (this is the main reason
388 * we keep these bitmaps!).
389 */
Daniel C Halperine3949d62009-09-17 10:43:50 -0700390 while (attempts > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700391 if (window->counter >= IWL_RATE_MAX_WINDOW) {
392
393 /* remove earliest */
394 window->counter = IWL_RATE_MAX_WINDOW - 1;
395
Ron Rindjunsky99556432008-01-28 14:07:25 +0200396 if (window->data & mask) {
397 window->data &= ~mask;
Guy Cohen39e88502008-04-23 17:14:57 -0700398 window->success_counter--;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200399 }
Zhu Yib481de92007-09-25 17:54:57 -0700400 }
Zhu Yib481de92007-09-25 17:54:57 -0700401
Ron Rindjunsky99556432008-01-28 14:07:25 +0200402 /* Increment frames-attempted counter */
403 window->counter++;
Ben Cahill77626352007-11-29 11:09:44 +0800404
Daniel C Halperine3949d62009-09-17 10:43:50 -0700405 /* Shift bitmap by one frame to throw away oldest history */
Guy Cohen90d77952008-09-09 10:54:53 +0800406 window->data <<= 1;
Daniel C Halperine3949d62009-09-17 10:43:50 -0700407
408 /* Mark the most recent #successes attempts as successful */
Ron Rindjunsky99556432008-01-28 14:07:25 +0200409 if (successes > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700410 window->success_counter++;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200411 window->data |= 0x1;
412 successes--;
413 }
414
Daniel C Halperine3949d62009-09-17 10:43:50 -0700415 attempts--;
Zhu Yib481de92007-09-25 17:54:57 -0700416 }
417
Ben Cahill77626352007-11-29 11:09:44 +0800418 /* Calculate current success ratio, avoid divide-by-0! */
Zhu Yib481de92007-09-25 17:54:57 -0700419 if (window->counter > 0)
420 window->success_ratio = 128 * (100 * window->success_counter)
421 / window->counter;
422 else
423 window->success_ratio = IWL_INVALID_VALUE;
424
425 fail_count = window->counter - window->success_counter;
426
Ben Cahill77626352007-11-29 11:09:44 +0800427 /* Calculate average throughput, if we have enough history. */
Zhu Yib481de92007-09-25 17:54:57 -0700428 if ((fail_count >= IWL_RATE_MIN_FAILURE_TH) ||
429 (window->success_counter >= IWL_RATE_MIN_SUCCESS_TH))
430 window->average_tpt = (window->success_ratio * tpt + 64) / 128;
431 else
432 window->average_tpt = IWL_INVALID_VALUE;
433
Ben Cahill77626352007-11-29 11:09:44 +0800434 /* Tag this window as having been updated */
Zhu Yib481de92007-09-25 17:54:57 -0700435 window->stamp = jiffies;
436
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800437 return 0;
Zhu Yib481de92007-09-25 17:54:57 -0700438}
439
Ben Cahill77626352007-11-29 11:09:44 +0800440/*
441 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
442 */
Guy Cohen39e88502008-04-23 17:14:57 -0700443/* FIXME:RS:remove this function and put the flags statically in the table */
Tomas Winkler978785a2008-12-19 10:37:31 +0800444static u32 rate_n_flags_from_tbl(struct iwl_priv *priv,
445 struct iwl_scale_tbl_info *tbl,
446 int index, u8 use_green)
Zhu Yib481de92007-09-25 17:54:57 -0700447{
Guy Cohen39e88502008-04-23 17:14:57 -0700448 u32 rate_n_flags = 0;
449
Zhu Yib481de92007-09-25 17:54:57 -0700450 if (is_legacy(tbl->lq_type)) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800451 rate_n_flags = iwl_rates[index].plcp;
Zhu Yib481de92007-09-25 17:54:57 -0700452 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -0700453 rate_n_flags |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700454
Guy Cohenfde0db32008-04-21 15:42:01 -0700455 } else if (is_Ht(tbl->lq_type)) {
456 if (index > IWL_LAST_OFDM_RATE) {
Tomas Winkler978785a2008-12-19 10:37:31 +0800457 IWL_ERR(priv, "Invalid HT rate index %d\n", index);
Zhu Yib481de92007-09-25 17:54:57 -0700458 index = IWL_LAST_OFDM_RATE;
Guy Cohenfde0db32008-04-21 15:42:01 -0700459 }
Guy Cohen39e88502008-04-23 17:14:57 -0700460 rate_n_flags = RATE_MCS_HT_MSK;
Guy Cohenfde0db32008-04-21 15:42:01 -0700461
462 if (is_siso(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800463 rate_n_flags |= iwl_rates[index].plcp_siso;
Guy Cohenfde0db32008-04-21 15:42:01 -0700464 else if (is_mimo2(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800465 rate_n_flags |= iwl_rates[index].plcp_mimo2;
Guy Cohenfde0db32008-04-21 15:42:01 -0700466 else
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800467 rate_n_flags |= iwl_rates[index].plcp_mimo3;
Zhu Yib481de92007-09-25 17:54:57 -0700468 } else {
Tomas Winkler978785a2008-12-19 10:37:31 +0800469 IWL_ERR(priv, "Invalid tbl->lq_type %d\n", tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700470 }
471
Guy Cohen39e88502008-04-23 17:14:57 -0700472 rate_n_flags |= ((tbl->ant_type << RATE_MCS_ANT_POS) &
Guy Cohenfde0db32008-04-21 15:42:01 -0700473 RATE_MCS_ANT_ABC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700474
Guy Cohen39e88502008-04-23 17:14:57 -0700475 if (is_Ht(tbl->lq_type)) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700476 if (tbl->is_ht40) {
Guy Cohen39e88502008-04-23 17:14:57 -0700477 if (tbl->is_dup)
478 rate_n_flags |= RATE_MCS_DUP_MSK;
479 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700480 rate_n_flags |= RATE_MCS_HT40_MSK;
Guy Cohen39e88502008-04-23 17:14:57 -0700481 }
482 if (tbl->is_SGI)
483 rate_n_flags |= RATE_MCS_SGI_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700484
Guy Cohen39e88502008-04-23 17:14:57 -0700485 if (use_green) {
486 rate_n_flags |= RATE_MCS_GF_MSK;
487 if (is_siso(tbl->lq_type) && tbl->is_SGI) {
488 rate_n_flags &= ~RATE_MCS_SGI_MSK;
Tomas Winkler978785a2008-12-19 10:37:31 +0800489 IWL_ERR(priv, "GF was set with SGI:SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -0700490 }
491 }
Zhu Yib481de92007-09-25 17:54:57 -0700492 }
Guy Cohen39e88502008-04-23 17:14:57 -0700493 return rate_n_flags;
Zhu Yib481de92007-09-25 17:54:57 -0700494}
495
Ben Cahill77626352007-11-29 11:09:44 +0800496/*
497 * Interpret uCode API's rate_n_flags format,
498 * fill "search" or "active" tx mode table.
499 */
Guy Cohen39e88502008-04-23 17:14:57 -0700500static int rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
Johannes Berg8318d782008-01-24 19:38:38 +0100501 enum ieee80211_band band,
Tomas Winklere227cea2008-07-18 13:53:05 +0800502 struct iwl_scale_tbl_info *tbl,
Zhu Yib481de92007-09-25 17:54:57 -0700503 int *rate_idx)
504{
Guy Cohen39e88502008-04-23 17:14:57 -0700505 u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
506 u8 num_of_ant = get_num_of_ant_from_rate(rate_n_flags);
507 u8 mcs;
Zhu Yib481de92007-09-25 17:54:57 -0700508
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800509 *rate_idx = iwl_hwrate_to_plcp_idx(rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700510
Guy Cohenfde0db32008-04-21 15:42:01 -0700511 if (*rate_idx == IWL_RATE_INVALID) {
Zhu Yib481de92007-09-25 17:54:57 -0700512 *rate_idx = -1;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800513 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700514 }
Ben Cahill77626352007-11-29 11:09:44 +0800515 tbl->is_SGI = 0; /* default legacy setup */
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700516 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700517 tbl->is_dup = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -0700518 tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
519 tbl->lq_type = LQ_NONE;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700520 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700521
Ben Cahill77626352007-11-29 11:09:44 +0800522 /* legacy rate format */
Guy Cohen39e88502008-04-23 17:14:57 -0700523 if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700524 if (num_of_ant == 1) {
Johannes Berg8318d782008-01-24 19:38:38 +0100525 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700526 tbl->lq_type = LQ_A;
527 else
528 tbl->lq_type = LQ_G;
Zhu Yib481de92007-09-25 17:54:57 -0700529 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700530 /* HT rate format */
Zhu Yib481de92007-09-25 17:54:57 -0700531 } else {
Guy Cohen39e88502008-04-23 17:14:57 -0700532 if (rate_n_flags & RATE_MCS_SGI_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700533 tbl->is_SGI = 1;
534
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700535 if ((rate_n_flags & RATE_MCS_HT40_MSK) ||
Guy Cohen39e88502008-04-23 17:14:57 -0700536 (rate_n_flags & RATE_MCS_DUP_MSK))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700537 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -0700538
Guy Cohen39e88502008-04-23 17:14:57 -0700539 if (rate_n_flags & RATE_MCS_DUP_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700540 tbl->is_dup = 1;
Guy Cohenfde0db32008-04-21 15:42:01 -0700541
Guy Cohen39e88502008-04-23 17:14:57 -0700542 mcs = rs_extract_rate(rate_n_flags);
Guy Cohenfde0db32008-04-21 15:42:01 -0700543
Guy Cohen39e88502008-04-23 17:14:57 -0700544 /* SISO */
545 if (mcs <= IWL_RATE_SISO_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700546 if (num_of_ant == 1)
547 tbl->lq_type = LQ_SISO; /*else NONE*/
548 /* MIMO2 */
Guy Cohen39e88502008-04-23 17:14:57 -0700549 } else if (mcs <= IWL_RATE_MIMO2_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700550 if (num_of_ant == 2)
551 tbl->lq_type = LQ_MIMO2;
552 /* MIMO3 */
553 } else {
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700554 if (num_of_ant == 3) {
555 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Guy Cohenfde0db32008-04-21 15:42:01 -0700556 tbl->lq_type = LQ_MIMO3;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700557 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700558 }
Zhu Yib481de92007-09-25 17:54:57 -0700559 }
560 return 0;
561}
Guy Cohenaade00c2008-04-23 17:14:59 -0700562
563/* switch to another antenna/antennas and return 1 */
564/* if no other valid antenna found, return 0 */
565static int rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
Tomas Winklere227cea2008-07-18 13:53:05 +0800566 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700567{
Guy Cohenaade00c2008-04-23 17:14:59 -0700568 u8 new_ant_type;
569
570 if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
571 return 0;
572
573 if (!rs_is_valid_ant(valid_ant, tbl->ant_type))
574 return 0;
575
576 new_ant_type = ant_toggle_lookup[tbl->ant_type];
577
578 while ((new_ant_type != tbl->ant_type) &&
579 !rs_is_valid_ant(valid_ant, new_ant_type))
580 new_ant_type = ant_toggle_lookup[new_ant_type];
581
582 if (new_ant_type == tbl->ant_type)
583 return 0;
584
585 tbl->ant_type = new_ant_type;
586 *rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
587 *rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
588 return 1;
Zhu Yib481de92007-09-25 17:54:57 -0700589}
590
Daniel C Halperinb2617932009-08-13 13:30:59 -0700591/**
592 * Green-field mode is valid if the station supports it and
593 * there are no non-GF stations present in the BSS.
594 */
595static inline u8 rs_use_green(struct ieee80211_sta *sta,
Johannes Bergfad95bf2009-09-11 10:38:15 -0700596 struct iwl_ht_config *ht_conf)
Zhu Yib481de92007-09-25 17:54:57 -0700597{
Daniel C Halperinb2617932009-08-13 13:30:59 -0700598 return (sta->ht_cap.cap & IEEE80211_HT_CAP_GRN_FLD) &&
599 !(ht_conf->non_GF_STA_present);
Guy Cohenf935a6d2008-04-23 17:15:02 -0700600}
Zhu Yib481de92007-09-25 17:54:57 -0700601
602/**
603 * rs_get_supported_rates - get the available rates
604 *
605 * if management frame or broadcast frame only return
606 * basic available rates.
607 *
608 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800609static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
610 struct ieee80211_hdr *hdr,
611 enum iwl_table_type rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700612{
Guy Coheneecd6e52008-04-23 17:14:58 -0700613 if (is_legacy(rate_type)) {
614 return lq_sta->active_legacy_rate;
615 } else {
616 if (is_siso(rate_type))
617 return lq_sta->active_siso_rate;
618 else if (is_mimo2(rate_type))
619 return lq_sta->active_mimo2_rate;
620 else
621 return lq_sta->active_mimo3_rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800622 }
Zhu Yib481de92007-09-25 17:54:57 -0700623}
624
Ester Kummerbf403db2008-05-05 10:22:40 +0800625static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
626 int rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700627{
628 u8 high = IWL_RATE_INVALID;
629 u8 low = IWL_RATE_INVALID;
630
Ian Schram01ebd062007-10-25 17:15:22 +0800631 /* 802.11A or ht walks to the next literal adjacent rate in
Zhu Yib481de92007-09-25 17:54:57 -0700632 * the rate table */
633 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
634 int i;
635 u32 mask;
636
637 /* Find the previous rate that is in the rate mask */
638 i = index - 1;
639 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
640 if (rate_mask & mask) {
641 low = i;
642 break;
643 }
644 }
645
646 /* Find the next rate that is in the rate mask */
647 i = index + 1;
648 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
649 if (rate_mask & mask) {
650 high = i;
651 break;
652 }
653 }
654
655 return (high << 8) | low;
656 }
657
658 low = index;
659 while (low != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800660 low = iwl_rates[low].prev_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700661 if (low == IWL_RATE_INVALID)
662 break;
663 if (rate_mask & (1 << low))
664 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800665 IWL_DEBUG_RATE(priv, "Skipping masked lower rate: %d\n", low);
Zhu Yib481de92007-09-25 17:54:57 -0700666 }
667
668 high = index;
669 while (high != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800670 high = iwl_rates[high].next_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700671 if (high == IWL_RATE_INVALID)
672 break;
673 if (rate_mask & (1 << high))
674 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800675 IWL_DEBUG_RATE(priv, "Skipping masked higher rate: %d\n", high);
Zhu Yib481de92007-09-25 17:54:57 -0700676 }
677
678 return (high << 8) | low;
679}
680
Tomas Winklere227cea2008-07-18 13:53:05 +0800681static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta,
682 struct iwl_scale_tbl_info *tbl,
683 u8 scale_index, u8 ht_possible)
Zhu Yib481de92007-09-25 17:54:57 -0700684{
Zhu Yib481de92007-09-25 17:54:57 -0700685 s32 low;
686 u16 rate_mask;
687 u16 high_low;
688 u8 switch_to_legacy = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800689 u8 is_green = lq_sta->is_green;
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700690 struct iwl_priv *priv = lq_sta->drv;
Zhu Yib481de92007-09-25 17:54:57 -0700691
692 /* check if we need to switch from HT to legacy rates.
693 * assumption is that mandatory rates (1Mbps or 6Mbps)
694 * are always supported (spec demand) */
695 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_index)) {
696 switch_to_legacy = 1;
697 scale_index = rs_ht_to_legacy[scale_index];
Johannes Berg8318d782008-01-24 19:38:38 +0100698 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700699 tbl->lq_type = LQ_A;
700 else
701 tbl->lq_type = LQ_G;
702
Guy Cohen69fdb302008-04-23 17:15:01 -0700703 if (num_of_ant(tbl->ant_type) > 1)
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700704 tbl->ant_type =
705 first_antenna(priv->hw_params.valid_tx_ant);
Zhu Yib481de92007-09-25 17:54:57 -0700706
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700707 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700708 tbl->is_SGI = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700709 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700710 }
711
Guy Coheneecd6e52008-04-23 17:14:58 -0700712 rate_mask = rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700713
Ben Cahill77626352007-11-29 11:09:44 +0800714 /* Mask with station rate restriction */
Zhu Yib481de92007-09-25 17:54:57 -0700715 if (is_legacy(tbl->lq_type)) {
Ben Cahill77626352007-11-29 11:09:44 +0800716 /* supp_rates has no CCK bits in A mode */
Johannes Berg8318d782008-01-24 19:38:38 +0100717 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700718 rate_mask = (u16)(rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -0800719 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -0700720 else
Tomas Winklerc33104f2008-01-14 17:46:21 -0800721 rate_mask = (u16)(rate_mask & lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -0700722 }
723
Ben Cahill77626352007-11-29 11:09:44 +0800724 /* If we switched from HT to legacy, check current rate */
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800725 if (switch_to_legacy && (rate_mask & (1 << scale_index))) {
Guy Cohen39e88502008-04-23 17:14:57 -0700726 low = scale_index;
727 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700728 }
729
Ester Kummerbf403db2008-05-05 10:22:40 +0800730 high_low = rs_get_adjacent_rate(lq_sta->drv, scale_index, rate_mask,
731 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700732 low = high_low & 0xff;
733
Guy Cohen39e88502008-04-23 17:14:57 -0700734 if (low == IWL_RATE_INVALID)
735 low = scale_index;
736
737out:
Tomas Winkler978785a2008-12-19 10:37:31 +0800738 return rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
Zhu Yib481de92007-09-25 17:54:57 -0700739}
740
Ben Cahill77626352007-11-29 11:09:44 +0800741/*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700742 * Simple function to compare two rate scale table types
743 */
744static bool table_type_matches(struct iwl_scale_tbl_info *a,
745 struct iwl_scale_tbl_info *b)
746{
747 return (a->lq_type == b->lq_type) && (a->ant_type == b->ant_type) &&
748 (a->is_SGI == b->is_SGI);
749}
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700750
751/*
Ben Cahill77626352007-11-29 11:09:44 +0800752 * mac80211 sends us Tx status
753 */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200754static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband,
755 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200756 struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700757{
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700758 int legacy_success;
759 int retries;
760 int rs_index, mac_index, i;
Tomas Winkler417f1142008-11-12 13:14:06 -0800761 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700762 struct iwl_link_quality_cmd *table;
Zhu Yib481de92007-09-25 17:54:57 -0700763 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200764 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
Johannes Berge039fa42008-05-15 12:55:29 +0200765 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Daniel C Halperin50273092009-08-28 09:44:45 -0700766 enum mac80211_rate_control_flags mac_flags;
Guy Cohen39e88502008-04-23 17:14:57 -0700767 u32 tx_rate;
Tomas Winklere227cea2008-07-18 13:53:05 +0800768 struct iwl_scale_tbl_info tbl_type;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700769 struct iwl_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
Zhu Yib481de92007-09-25 17:54:57 -0700770
Tomas Winklere1623442009-01-27 14:27:56 -0800771 IWL_DEBUG_RATE_LIMIT(priv, "get frame ack response, update rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -0700772
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800773 /* Treat uninitialized rate scaling data same as non-existing. */
774 if (!lq_sta) {
775 IWL_DEBUG_RATE(priv, "Station rate scaling not created yet.\n");
776 return;
777 } else if (!lq_sta->drv) {
778 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
779 return;
780 }
781
Tomas Winkler417f1142008-11-12 13:14:06 -0800782 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200783 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -0700784 return;
785
Daniel C Halperine3949d62009-09-17 10:43:50 -0700786 /* This packet was aggregated but doesn't carry status info */
Johannes Berge039fa42008-05-15 12:55:29 +0200787 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
788 !(info->flags & IEEE80211_TX_STAT_AMPDU))
Ron Rindjunsky99556432008-01-28 14:07:25 +0200789 return;
790
Ben Cahill77626352007-11-29 11:09:44 +0800791 /*
792 * Ignore this Tx frame response if its initial rate doesn't match
793 * that of latest Link Quality command. There may be stragglers
794 * from a previous Link Quality command, but we're no longer interested
795 * in those; they're either from the "active" mode while we're trying
796 * to check "search" mode, or a prior "search" mode after we've moved
797 * to a new "search" mode (which might become the new "active" mode).
798 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700799 table = &lq_sta->lq;
Guy Cohen39e88502008-04-23 17:14:57 -0700800 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
801 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800802 if (priv->band == IEEE80211_BAND_5GHZ)
803 rs_index -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin50273092009-08-28 09:44:45 -0700804 mac_flags = info->status.rates[0].flags;
805 mac_index = info->status.rates[0].idx;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700806 /* For HT packets, map MCS to PLCP */
807 if (mac_flags & IEEE80211_TX_RC_MCS) {
808 mac_index &= RATE_MCS_CODE_MSK; /* Remove # of streams */
809 if (mac_index >= (IWL_RATE_9M_INDEX - IWL_FIRST_OFDM_RATE))
810 mac_index++;
Daniel C Halperin392a0ba2009-09-11 10:38:08 -0700811 /*
812 * mac80211 HT index is always zero-indexed; we need to move
813 * HT OFDM rates after CCK rates in 2.4 GHz band
814 */
815 if (priv->band == IEEE80211_BAND_2GHZ)
816 mac_index += IWL_FIRST_OFDM_RATE;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700817 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700818 /* Here we actually compare this rate to the latest LQ command */
Daniel C Halperin50273092009-08-28 09:44:45 -0700819 if ((mac_index < 0) ||
820 (tbl_type.is_SGI != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI)) ||
821 (tbl_type.is_ht40 != !!(mac_flags & IEEE80211_TX_RC_40_MHZ_WIDTH)) ||
822 (tbl_type.is_dup != !!(mac_flags & IEEE80211_TX_RC_DUP_DATA)) ||
Johannes Berge6a98542008-10-21 12:40:02 +0200823 (tbl_type.ant_type != info->antenna_sel_tx) ||
Daniel C Halperin50273092009-08-28 09:44:45 -0700824 (!!(tx_rate & RATE_MCS_HT_MSK) != !!(mac_flags & IEEE80211_TX_RC_MCS)) ||
825 (!!(tx_rate & RATE_MCS_GF_MSK) != !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD)) ||
Daniel C Halperin31513be2009-08-28 09:44:47 -0700826 (rs_index != mac_index)) {
827 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 -0700828 /*
829 * Since rates mis-match, the last LQ command may have failed.
830 * After IWL_MISSED_RATE_MAX mis-matches, resync the uCode with
831 * ... driver.
Mohamed Abbasd5e49032008-12-12 08:22:15 -0800832 */
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800833 lq_sta->missed_rate_counter++;
834 if (lq_sta->missed_rate_counter > IWL_MISSED_RATE_MAX) {
835 lq_sta->missed_rate_counter = 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800836 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800837 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700838 /* Regardless, ignore this status info for outdated rate */
839 return;
840 } else
841 /* Rate did match, so reset the missed_rate_counter */
842 lq_sta->missed_rate_counter = 0;
843
844 /* Figure out if rate scale algorithm is in active or search table */
845 if (table_type_matches(&tbl_type,
846 &(lq_sta->lq_info[lq_sta->active_tbl]))) {
847 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
848 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
849 } else if (table_type_matches(&tbl_type,
850 &lq_sta->lq_info[1 - lq_sta->active_tbl])) {
851 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
852 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
853 } else {
854 IWL_DEBUG_RATE(priv, "Neither active nor search matches tx rate\n");
855 return;
Zhu Yib481de92007-09-25 17:54:57 -0700856 }
Zhu Yib481de92007-09-25 17:54:57 -0700857
Ben Cahill77626352007-11-29 11:09:44 +0800858 /*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700859 * Updating the frame history depends on whether packets were
860 * aggregated.
861 *
862 * For aggregation, all packets were transmitted at the same rate, the
863 * first index into rate scale table.
Ben Cahill77626352007-11-29 11:09:44 +0800864 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700865 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
866 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
867 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type,
868 &rs_index);
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700869 rs_collect_tx_data(curr_tbl, rs_index,
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700870 info->status.ampdu_ack_len,
871 info->status.ampdu_ack_map);
Zhu Yib481de92007-09-25 17:54:57 -0700872
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700873 /* Update success/fail counts if not searching for new mode */
874 if (lq_sta->stay_in_tbl) {
Johannes Berge039fa42008-05-15 12:55:29 +0200875 lq_sta->total_success += info->status.ampdu_ack_map;
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700876 lq_sta->total_failed += (info->status.ampdu_ack_len -
877 info->status.ampdu_ack_map);
878 }
879 } else {
880 /*
881 * For legacy, update frame history with for each Tx retry.
882 */
883 retries = info->status.rates[0].count - 1;
884 /* HW doesn't send more than 15 retries */
885 retries = min(retries, 15);
886
887 /* The last transmission may have been successful */
888 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
889 /* Collect data for each rate used during failed TX attempts */
890 for (i = 0; i <= retries; ++i) {
891 tx_rate = le32_to_cpu(table->rs_table[i].rate_n_flags);
892 rs_get_tbl_info_from_mcs(tx_rate, priv->band,
893 &tbl_type, &rs_index);
894 /*
895 * Only collect stats if retried rate is in the same RS
896 * table as active/search.
897 */
898 if (table_type_matches(&tbl_type, curr_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700899 tmp_tbl = curr_tbl;
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700900 else if (table_type_matches(&tbl_type, other_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700901 tmp_tbl = other_tbl;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200902 else
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700903 continue;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700904 rs_collect_tx_data(tmp_tbl, rs_index, 1,
905 i < retries ? 0 : legacy_success);
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700906 }
907
908 /* Update success/fail counts if not searching for new mode */
909 if (lq_sta->stay_in_tbl) {
910 lq_sta->total_success += legacy_success;
911 lq_sta->total_failed += retries + (1 - legacy_success);
Ron Rindjunsky99556432008-01-28 14:07:25 +0200912 }
Zhu Yib481de92007-09-25 17:54:57 -0700913 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700914 /* The last TX rate is cached in lq_sta; it's set in if/else above */
915 lq_sta->last_rate_n_flags = tx_rate;
Zhu Yib481de92007-09-25 17:54:57 -0700916
Ben Cahill77626352007-11-29 11:09:44 +0800917 /* See if there's a better rate or modulation mode to try. */
Abbas, Mohamedc338ba32009-01-21 10:58:02 -0800918 if (sta && sta->supp_rates[sband->band])
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200919 rs_rate_scale_perform(priv, skb, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -0700920}
921
Ben Cahill77626352007-11-29 11:09:44 +0800922/*
923 * Begin a period of staying with a selected modulation mode.
924 * Set "stay_in_tbl" flag to prevent any mode switches.
925 * Set frame tx success limits according to legacy vs. high-throughput,
926 * and reset overall (spanning all rates) tx success history statistics.
927 * These control how long we stay using same modulation mode before
928 * searching for a new mode.
929 */
Ester Kummerbf403db2008-05-05 10:22:40 +0800930static void rs_set_stay_in_table(struct iwl_priv *priv, u8 is_legacy,
Tomas Winklere227cea2008-07-18 13:53:05 +0800931 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700932{
Tomas Winklere1623442009-01-27 14:27:56 -0800933 IWL_DEBUG_RATE(priv, "we are staying in the same table\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -0800934 lq_sta->stay_in_tbl = 1; /* only place this gets set */
Zhu Yib481de92007-09-25 17:54:57 -0700935 if (is_legacy) {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800936 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
937 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
938 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700939 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800940 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
941 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
942 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700943 }
Tomas Winklerc33104f2008-01-14 17:46:21 -0800944 lq_sta->table_count = 0;
945 lq_sta->total_failed = 0;
946 lq_sta->total_success = 0;
Mohamed Abbas447fee72009-04-20 14:37:02 -0700947 lq_sta->flush_timer = jiffies;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700948 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700949}
950
Ben Cahill77626352007-11-29 11:09:44 +0800951/*
952 * Find correct throughput table for given mode of modulation
953 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800954static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
955 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700956{
Daniel C Halperine3949d62009-09-17 10:43:50 -0700957 /* Used to choose among HT tables */
958 s32 (*ht_tbl_pointer)[IWL_RATE_COUNT];
959
960 /* Check for invalid LQ type */
961 if (WARN_ON_ONCE(!is_legacy(tbl->lq_type) && !is_Ht(tbl->lq_type))) {
962 tbl->expected_tpt = expected_tpt_legacy;
963 return;
964 }
965
966 /* Legacy rates have only one table */
Zhu Yib481de92007-09-25 17:54:57 -0700967 if (is_legacy(tbl->lq_type)) {
Daniel C Halperine3949d62009-09-17 10:43:50 -0700968 tbl->expected_tpt = expected_tpt_legacy;
969 return;
970 }
971
972 /* Choose among many HT tables depending on number of streams
973 * (SISO/MIMO2/MIMO3), channel width (20/40), SGI, and aggregation
974 * status */
975 if (is_siso(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
976 ht_tbl_pointer = expected_tpt_siso20MHz;
977 else if (is_siso(tbl->lq_type))
978 ht_tbl_pointer = expected_tpt_siso40MHz;
979 else if (is_mimo2(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
980 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
981 else if (is_mimo2(tbl->lq_type))
982 ht_tbl_pointer = expected_tpt_mimo2_40MHz;
983 else if (is_mimo3(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
984 ht_tbl_pointer = expected_tpt_mimo3_20MHz;
985 else /* if (is_mimo3(tbl->lq_type)) <-- must be true */
986 ht_tbl_pointer = expected_tpt_mimo3_40MHz;
987
988 if (!tbl->is_SGI && !lq_sta->is_agg) /* Normal */
989 tbl->expected_tpt = ht_tbl_pointer[0];
990 else if (tbl->is_SGI && !lq_sta->is_agg) /* SGI */
991 tbl->expected_tpt = ht_tbl_pointer[1];
992 else if (!tbl->is_SGI && lq_sta->is_agg) /* AGG */
993 tbl->expected_tpt = ht_tbl_pointer[2];
994 else /* AGG+SGI */
995 tbl->expected_tpt = ht_tbl_pointer[3];
Zhu Yib481de92007-09-25 17:54:57 -0700996}
997
Ben Cahill77626352007-11-29 11:09:44 +0800998/*
999 * Find starting rate for new "search" high-throughput mode of modulation.
1000 * Goal is to find lowest expected rate (under perfect conditions) that is
1001 * above the current measured throughput of "active" mode, to give new mode
1002 * a fair chance to prove itself without too many challenges.
1003 *
1004 * This gets called when transitioning to more aggressive modulation
1005 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1006 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1007 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1008 * bit rate will typically need to increase, but not if performance was bad.
1009 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001010static s32 rs_get_best_rate(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001011 struct iwl_lq_sta *lq_sta,
1012 struct iwl_scale_tbl_info *tbl, /* "search" */
Guy Cohenf935a6d2008-04-23 17:15:02 -07001013 u16 rate_mask, s8 index)
Zhu Yib481de92007-09-25 17:54:57 -07001014{
Ben Cahill77626352007-11-29 11:09:44 +08001015 /* "active" values */
Tomas Winklere227cea2008-07-18 13:53:05 +08001016 struct iwl_scale_tbl_info *active_tbl =
Tomas Winklerc33104f2008-01-14 17:46:21 -08001017 &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001018 s32 active_sr = active_tbl->win[index].success_ratio;
Zhu Yib481de92007-09-25 17:54:57 -07001019 s32 active_tpt = active_tbl->expected_tpt[index];
Ben Cahill77626352007-11-29 11:09:44 +08001020
1021 /* expected "search" throughput */
1022 s32 *tpt_tbl = tbl->expected_tpt;
1023
1024 s32 new_rate, high, low, start_hi;
Zhu Yib481de92007-09-25 17:54:57 -07001025 u16 high_low;
Guy Cohenf935a6d2008-04-23 17:15:02 -07001026 s8 rate = index;
Zhu Yib481de92007-09-25 17:54:57 -07001027
1028 new_rate = high = low = start_hi = IWL_RATE_INVALID;
1029
1030 for (; ;) {
Ester Kummerbf403db2008-05-05 10:22:40 +08001031 high_low = rs_get_adjacent_rate(priv, rate, rate_mask,
1032 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001033
1034 low = high_low & 0xff;
1035 high = (high_low >> 8) & 0xff;
1036
Ben Cahill77626352007-11-29 11:09:44 +08001037 /*
1038 * Lower the "search" bit rate, to give new "search" mode
1039 * approximately the same throughput as "active" if:
1040 *
1041 * 1) "Active" mode has been working modestly well (but not
1042 * great), and expected "search" throughput (under perfect
1043 * conditions) at candidate rate is above the actual
1044 * measured "active" throughput (but less than expected
1045 * "active" throughput under perfect conditions).
1046 * OR
1047 * 2) "Active" mode has been working perfectly or very well
1048 * and expected "search" throughput (under perfect
1049 * conditions) at candidate rate is above expected
1050 * "active" throughput (under perfect conditions).
1051 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001052 if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
Zhu Yib481de92007-09-25 17:54:57 -07001053 ((active_sr > IWL_RATE_DECREASE_TH) &&
1054 (active_sr <= IWL_RATE_HIGH_TH) &&
1055 (tpt_tbl[rate] <= active_tpt))) ||
1056 ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
1057 (tpt_tbl[rate] > active_tpt))) {
1058
Ben Cahill77626352007-11-29 11:09:44 +08001059 /* (2nd or later pass)
1060 * If we've already tried to raise the rate, and are
1061 * now trying to lower it, use the higher rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001062 if (start_hi != IWL_RATE_INVALID) {
1063 new_rate = start_hi;
1064 break;
1065 }
Ben Cahill77626352007-11-29 11:09:44 +08001066
Zhu Yib481de92007-09-25 17:54:57 -07001067 new_rate = rate;
Ben Cahill77626352007-11-29 11:09:44 +08001068
1069 /* Loop again with lower rate */
Zhu Yib481de92007-09-25 17:54:57 -07001070 if (low != IWL_RATE_INVALID)
1071 rate = low;
Ben Cahill77626352007-11-29 11:09:44 +08001072
1073 /* Lower rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001074 else
1075 break;
Ben Cahill77626352007-11-29 11:09:44 +08001076
1077 /* Else try to raise the "search" rate to match "active" */
Zhu Yib481de92007-09-25 17:54:57 -07001078 } else {
Ben Cahill77626352007-11-29 11:09:44 +08001079 /* (2nd or later pass)
1080 * If we've already tried to lower the rate, and are
1081 * now trying to raise it, use the lower rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001082 if (new_rate != IWL_RATE_INVALID)
1083 break;
Ben Cahill77626352007-11-29 11:09:44 +08001084
1085 /* Loop again with higher rate */
Zhu Yib481de92007-09-25 17:54:57 -07001086 else if (high != IWL_RATE_INVALID) {
1087 start_hi = high;
1088 rate = high;
Ben Cahill77626352007-11-29 11:09:44 +08001089
1090 /* Higher rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001091 } else {
Guy Cohen90d77952008-09-09 10:54:53 +08001092 new_rate = rate;
Zhu Yib481de92007-09-25 17:54:57 -07001093 break;
1094 }
1095 }
1096 }
1097
1098 return new_rate;
1099}
Zhu Yib481de92007-09-25 17:54:57 -07001100
Ben Cahill77626352007-11-29 11:09:44 +08001101/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001102 * Set up search table for MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001103 */
Guy Cohenfde0db32008-04-21 15:42:01 -07001104static int rs_switch_to_mimo2(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001105 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001106 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001107 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001108 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001109{
Zhu Yib481de92007-09-25 17:54:57 -07001110 u16 rate_mask;
1111 s32 rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001112 s8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001113
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001114 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001115 return -1;
1116
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001117 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
Tomas Winkler00c5ae22008-09-03 11:26:42 +08001118 == WLAN_HT_CAP_SM_PS_STATIC)
Zhu Yib481de92007-09-25 17:54:57 -07001119 return -1;
1120
Ben Cahill77626352007-11-29 11:09:44 +08001121 /* Need both Tx chains/antennas to support MIMO */
Guy Cohenaade00c2008-04-23 17:14:59 -07001122 if (priv->hw_params.tx_chains_num < 2)
Zhu Yib481de92007-09-25 17:54:57 -07001123 return -1;
1124
Tomas Winklere1623442009-01-27 14:27:56 -08001125 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO2\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001126
1127 tbl->lq_type = LQ_MIMO2;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001128 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001129 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001130 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001131 rate_mask = lq_sta->active_mimo2_rate;
1132
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001133 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1134 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001135 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001136 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001137
Guy Coheneecd6e52008-04-23 17:14:58 -07001138 rs_set_expected_tpt_table(lq_sta, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07001139
Guy Cohenf935a6d2008-04-23 17:15:02 -07001140 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001141
Tomas Winklere1623442009-01-27 14:27:56 -08001142 IWL_DEBUG_RATE(priv, "LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001143 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
1144 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
1145 rate, rate_mask);
1146 return -1;
1147 }
1148 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Guy Cohen39e88502008-04-23 17:14:57 -07001149
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001150 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
1151 tbl->current_rate, is_green);
1152 return 0;
1153}
1154
1155/*
1156 * Set up search table for MIMO3
1157 */
1158static int rs_switch_to_mimo3(struct iwl_priv *priv,
1159 struct iwl_lq_sta *lq_sta,
1160 struct ieee80211_conf *conf,
1161 struct ieee80211_sta *sta,
1162 struct iwl_scale_tbl_info *tbl, int index)
1163{
1164 u16 rate_mask;
1165 s32 rate;
1166 s8 is_green = lq_sta->is_green;
1167
1168 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1169 return -1;
1170
1171 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
1172 == WLAN_HT_CAP_SM_PS_STATIC)
1173 return -1;
1174
1175 /* Need both Tx chains/antennas to support MIMO */
1176 if (priv->hw_params.tx_chains_num < 3)
1177 return -1;
1178
1179 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO3\n");
1180
1181 tbl->lq_type = LQ_MIMO3;
1182 tbl->is_dup = lq_sta->is_dup;
1183 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001184 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001185 rate_mask = lq_sta->active_mimo3_rate;
1186
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001187 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1188 tbl->is_ht40 = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001189 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001190 tbl->is_ht40 = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001191
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001192 rs_set_expected_tpt_table(lq_sta, tbl);
1193
1194 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
1195
1196 IWL_DEBUG_RATE(priv, "LQ: MIMO3 best rate %d mask %X\n",
1197 rate, rate_mask);
Guy Cohen39e88502008-04-23 17:14:57 -07001198 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001199 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001200 rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001201 return -1;
Guy Cohen39e88502008-04-23 17:14:57 -07001202 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001203 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001204
Tomas Winklere1623442009-01-27 14:27:56 -08001205 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001206 tbl->current_rate, is_green);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001207 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001208}
1209
Ben Cahill77626352007-11-29 11:09:44 +08001210/*
1211 * Set up search table for SISO
1212 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001213static int rs_switch_to_siso(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001214 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001215 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001216 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001217 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001218{
Zhu Yib481de92007-09-25 17:54:57 -07001219 u16 rate_mask;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001220 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001221 s32 rate;
1222
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001223 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001224 return -1;
1225
Tomas Winklere1623442009-01-27 14:27:56 -08001226 IWL_DEBUG_RATE(priv, "LQ: try to switch to SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001227
Tomas Winklerc33104f2008-01-14 17:46:21 -08001228 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001229 tbl->lq_type = LQ_SISO;
1230 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001231 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001232 rate_mask = lq_sta->active_siso_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001233
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001234 if (iwl_is_ht40_tx_allowed(priv, &sta->ht_cap))
1235 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001236 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001237 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001238
Zhu Yib481de92007-09-25 17:54:57 -07001239 if (is_green)
Guy Cohen39e88502008-04-23 17:14:57 -07001240 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield*/
Zhu Yib481de92007-09-25 17:54:57 -07001241
Guy Coheneecd6e52008-04-23 17:14:58 -07001242 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohenf935a6d2008-04-23 17:15:02 -07001243 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001244
Tomas Winklere1623442009-01-27 14:27:56 -08001245 IWL_DEBUG_RATE(priv, "LQ: get best rate %d mask %X\n", rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001246 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001247 IWL_DEBUG_RATE(priv, "can not switch with index %d rate mask %x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001248 rate, rate_mask);
1249 return -1;
1250 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001251 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Tomas Winklere1623442009-01-27 14:27:56 -08001252 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001253 tbl->current_rate, is_green);
Mohamed Abbas403ab562007-11-06 22:06:25 -08001254 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001255}
1256
Ben Cahill77626352007-11-29 11:09:44 +08001257/*
1258 * Try to switch to new modulation mode from legacy
1259 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001260static int rs_move_legacy_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001261 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001262 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001263 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07001264 int index)
1265{
Tomas Winklere227cea2008-07-18 13:53:05 +08001266 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1267 struct iwl_scale_tbl_info *search_tbl =
1268 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1269 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1270 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1271 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001272 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001273 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001274 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001275 int ret = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001276 u8 update_search_tbl_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001277
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001278 if (!iwl_ht_enabled(priv))
1279 /* stay in Legacy */
1280 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07001281 else if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001282 tbl->action > IWL_LEGACY_SWITCH_SISO)
1283 tbl->action = IWL_LEGACY_SWITCH_SISO;
Zhu Yib481de92007-09-25 17:54:57 -07001284 for (; ;) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001285 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001286 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001287 case IWL_LEGACY_SWITCH_ANTENNA1:
1288 case IWL_LEGACY_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001289 IWL_DEBUG_RATE(priv, "LQ: Legacy toggle Antenna\n");
Zhu Yib481de92007-09-25 17:54:57 -07001290
Guy Cohen3110bef2008-09-09 10:54:54 +08001291 if ((tbl->action == IWL_LEGACY_SWITCH_ANTENNA1 &&
1292 tx_chains_num <= 1) ||
1293 (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2 &&
1294 tx_chains_num <= 2))
1295 break;
1296
Ben Cahill77626352007-11-29 11:09:44 +08001297 /* Don't change antenna if success has been great */
Zhu Yib481de92007-09-25 17:54:57 -07001298 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1299 break;
Ben Cahill77626352007-11-29 11:09:44 +08001300
Ben Cahill77626352007-11-29 11:09:44 +08001301 /* Set up search table to try other antenna */
Zhu Yib481de92007-09-25 17:54:57 -07001302 memcpy(search_tbl, tbl, sz);
1303
Guy Cohenaade00c2008-04-23 17:14:59 -07001304 if (rs_toggle_antenna(valid_tx_ant,
1305 &search_tbl->current_rate, search_tbl)) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001306 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001307 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohenaade00c2008-04-23 17:14:59 -07001308 goto out;
1309 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001310 break;
Zhu Yib481de92007-09-25 17:54:57 -07001311 case IWL_LEGACY_SWITCH_SISO:
Tomas Winklere1623442009-01-27 14:27:56 -08001312 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to SISO\n");
Ben Cahill77626352007-11-29 11:09:44 +08001313
1314 /* Set up search table to try SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001315 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001316 search_tbl->is_SGI = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001317 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001318 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001319 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001320 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001321 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001322 }
Zhu Yib481de92007-09-25 17:54:57 -07001323
1324 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001325 case IWL_LEGACY_SWITCH_MIMO2_AB:
1326 case IWL_LEGACY_SWITCH_MIMO2_AC:
1327 case IWL_LEGACY_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001328 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO2\n");
Ben Cahill77626352007-11-29 11:09:44 +08001329
1330 /* Set up search table to try MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001331 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001332 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001333
1334 if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AB)
1335 search_tbl->ant_type = ANT_AB;
1336 else if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AC)
1337 search_tbl->ant_type = ANT_AC;
1338 else
1339 search_tbl->ant_type = ANT_BC;
1340
1341 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1342 break;
1343
Guy Cohenfde0db32008-04-21 15:42:01 -07001344 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001345 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001346 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001347 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001348 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001349 }
Zhu Yib481de92007-09-25 17:54:57 -07001350 break;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001351
1352 case IWL_LEGACY_SWITCH_MIMO3_ABC:
1353 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO3\n");
1354
1355 /* Set up search table to try MIMO3 */
1356 memcpy(search_tbl, tbl, sz);
1357 search_tbl->is_SGI = 0;
1358
1359 search_tbl->ant_type = ANT_ABC;
1360
1361 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1362 break;
1363
1364 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1365 search_tbl, index);
1366 if (!ret) {
1367 lq_sta->action_counter = 0;
1368 goto out;
1369 }
1370 break;
Zhu Yib481de92007-09-25 17:54:57 -07001371 }
1372 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001373 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001374 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001375
1376 if (tbl->action == start_action)
1377 break;
1378
1379 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001380 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001381 return 0;
1382
Guy Cohen3110bef2008-09-09 10:54:54 +08001383out:
1384 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001385 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001386 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001387 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001388 if (update_search_tbl_counter)
1389 search_tbl->action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001390 return 0;
1391
1392}
1393
Ben Cahill77626352007-11-29 11:09:44 +08001394/*
1395 * Try to switch to new modulation mode from SISO
1396 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001397static int rs_move_siso_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001398 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001399 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001400 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001401{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001402 u8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001403 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1404 struct iwl_scale_tbl_info *search_tbl =
1405 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1406 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001407 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001408 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1409 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001410 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001411 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001412 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001413 u8 update_search_tbl_counter = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -07001414 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001415
Johannes Berg3ad3b922009-08-07 15:41:48 -07001416 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001417 tbl->action > IWL_SISO_SWITCH_ANTENNA2) {
1418 /* stay in SISO */
1419 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1420 }
Zhu Yib481de92007-09-25 17:54:57 -07001421 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001422 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001423 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001424 case IWL_SISO_SWITCH_ANTENNA1:
1425 case IWL_SISO_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001426 IWL_DEBUG_RATE(priv, "LQ: SISO toggle Antenna\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001427
1428 if ((tbl->action == IWL_SISO_SWITCH_ANTENNA1 &&
1429 tx_chains_num <= 1) ||
1430 (tbl->action == IWL_SISO_SWITCH_ANTENNA2 &&
1431 tx_chains_num <= 2))
1432 break;
1433
Zhu Yib481de92007-09-25 17:54:57 -07001434 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1435 break;
Zhu Yib481de92007-09-25 17:54:57 -07001436
1437 memcpy(search_tbl, tbl, sz);
Guy Cohenaade00c2008-04-23 17:14:59 -07001438 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001439 &search_tbl->current_rate, search_tbl)) {
1440 update_search_tbl_counter = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07001441 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001442 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001443 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001444 case IWL_SISO_SWITCH_MIMO2_AB:
1445 case IWL_SISO_SWITCH_MIMO2_AC:
1446 case IWL_SISO_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001447 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO2\n");
Zhu Yib481de92007-09-25 17:54:57 -07001448 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001449 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001450
1451 if (tbl->action == IWL_SISO_SWITCH_MIMO2_AB)
1452 search_tbl->ant_type = ANT_AB;
1453 else if (tbl->action == IWL_SISO_SWITCH_MIMO2_AC)
1454 search_tbl->ant_type = ANT_AC;
1455 else
1456 search_tbl->ant_type = ANT_BC;
1457
1458 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1459 break;
1460
Guy Cohenfde0db32008-04-21 15:42:01 -07001461 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001462 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001463 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001464 goto out;
1465 break;
1466 case IWL_SISO_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001467 if (!tbl->is_ht40 && !(ht_cap->cap &
1468 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001469 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001470 if (tbl->is_ht40 && !(ht_cap->cap &
1471 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001472 break;
1473
Tomas Winklere1623442009-01-27 14:27:56 -08001474 IWL_DEBUG_RATE(priv, "LQ: SISO toggle SGI/NGI\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001475
Zhu Yib481de92007-09-25 17:54:57 -07001476 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001477 if (is_green) {
1478 if (!tbl->is_SGI)
1479 break;
1480 else
Winkler, Tomas15b16872008-12-19 10:37:33 +08001481 IWL_ERR(priv,
1482 "SGI was set in GF+SISO\n");
Zhu Yib481de92007-09-25 17:54:57 -07001483 }
Guy Cohen39e88502008-04-23 17:14:57 -07001484 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001485 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohen39e88502008-04-23 17:14:57 -07001486 if (tbl->is_SGI) {
1487 s32 tpt = lq_sta->last_tpt / 100;
1488 if (tpt >= search_tbl->expected_tpt[index])
1489 break;
1490 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001491 search_tbl->current_rate =
1492 rate_n_flags_from_tbl(priv, search_tbl,
1493 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001494 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001495 goto out;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001496 case IWL_SISO_SWITCH_MIMO3_ABC:
1497 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO3\n");
1498 memcpy(search_tbl, tbl, sz);
1499 search_tbl->is_SGI = 0;
1500 search_tbl->ant_type = ANT_ABC;
1501
1502 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1503 break;
1504
1505 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1506 search_tbl, index);
1507 if (!ret)
1508 goto out;
1509 break;
Zhu Yib481de92007-09-25 17:54:57 -07001510 }
1511 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001512 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001513 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001514
1515 if (tbl->action == start_action)
1516 break;
1517 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001518 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001519 return 0;
1520
1521 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001522 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001523 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001524 if (tbl->action > IWL_SISO_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001525 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001526 if (update_search_tbl_counter)
1527 search_tbl->action = tbl->action;
1528
Zhu Yib481de92007-09-25 17:54:57 -07001529 return 0;
1530}
1531
Ben Cahill77626352007-11-29 11:09:44 +08001532/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001533 * Try to switch to new modulation mode from MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001534 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001535static int rs_move_mimo2_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001536 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001537 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001538 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001539{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001540 s8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001541 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1542 struct iwl_scale_tbl_info *search_tbl =
1543 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Guy Cohen3110bef2008-09-09 10:54:54 +08001544 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001545 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001546 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1547 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001548 u8 start_action = tbl->action;
Guy Cohen3110bef2008-09-09 10:54:54 +08001549 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1550 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001551 u8 update_search_tbl_counter = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07001552 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001553
Johannes Berg3ad3b922009-08-07 15:41:48 -07001554 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001555 (tbl->action < IWL_MIMO2_SWITCH_SISO_A ||
1556 tbl->action > IWL_MIMO2_SWITCH_SISO_C)) {
1557 /* switch in SISO */
1558 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1559 }
Zhu Yib481de92007-09-25 17:54:57 -07001560 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001561 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001562 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001563 case IWL_MIMO2_SWITCH_ANTENNA1:
1564 case IWL_MIMO2_SWITCH_ANTENNA2:
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001565 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle Antennas\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001566
1567 if (tx_chains_num <= 2)
1568 break;
1569
1570 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1571 break;
1572
1573 memcpy(search_tbl, tbl, sz);
1574 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001575 &search_tbl->current_rate, search_tbl)) {
1576 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001577 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001578 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001579 break;
1580 case IWL_MIMO2_SWITCH_SISO_A:
1581 case IWL_MIMO2_SWITCH_SISO_B:
1582 case IWL_MIMO2_SWITCH_SISO_C:
Tomas Winklere1623442009-01-27 14:27:56 -08001583 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to SISO\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001584
Ben Cahill77626352007-11-29 11:09:44 +08001585 /* Set up new search table for SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001586 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001587
Guy Cohen3110bef2008-09-09 10:54:54 +08001588 if (tbl->action == IWL_MIMO2_SWITCH_SISO_A)
Guy Cohenfde0db32008-04-21 15:42:01 -07001589 search_tbl->ant_type = ANT_A;
Guy Cohen3110bef2008-09-09 10:54:54 +08001590 else if (tbl->action == IWL_MIMO2_SWITCH_SISO_B)
Guy Cohenfde0db32008-04-21 15:42:01 -07001591 search_tbl->ant_type = ANT_B;
Guy Cohen3110bef2008-09-09 10:54:54 +08001592 else
1593 search_tbl->ant_type = ANT_C;
1594
1595 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1596 break;
Zhu Yib481de92007-09-25 17:54:57 -07001597
Tomas Winklerc33104f2008-01-14 17:46:21 -08001598 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001599 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001600 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001601 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001602
Zhu Yib481de92007-09-25 17:54:57 -07001603 break;
1604
Guy Cohen3110bef2008-09-09 10:54:54 +08001605 case IWL_MIMO2_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001606 if (!tbl->is_ht40 && !(ht_cap->cap &
1607 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001608 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001609 if (tbl->is_ht40 && !(ht_cap->cap &
1610 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001611 break;
1612
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001613 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle SGI/NGI\n");
1614
1615 /* Set up new search table for MIMO2 */
1616 memcpy(search_tbl, tbl, sz);
1617 search_tbl->is_SGI = !tbl->is_SGI;
1618 rs_set_expected_tpt_table(lq_sta, search_tbl);
1619 /*
1620 * If active table already uses the fastest possible
1621 * modulation (dual stream with short guard interval),
1622 * and it's working well, there's no need to look
1623 * for a better type of modulation!
1624 */
1625 if (tbl->is_SGI) {
1626 s32 tpt = lq_sta->last_tpt / 100;
1627 if (tpt >= search_tbl->expected_tpt[index])
1628 break;
1629 }
1630 search_tbl->current_rate =
1631 rate_n_flags_from_tbl(priv, search_tbl,
1632 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001633 update_search_tbl_counter = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001634 goto out;
1635
1636 case IWL_MIMO2_SWITCH_MIMO3_ABC:
1637 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to MIMO3\n");
1638 memcpy(search_tbl, tbl, sz);
1639 search_tbl->is_SGI = 0;
1640 search_tbl->ant_type = ANT_ABC;
1641
1642 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1643 break;
1644
1645 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1646 search_tbl, index);
1647 if (!ret)
1648 goto out;
1649
1650 break;
1651 }
1652 tbl->action++;
1653 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1654 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
1655
1656 if (tbl->action == start_action)
1657 break;
1658 }
1659 search_tbl->lq_type = LQ_NONE;
1660 return 0;
1661 out:
1662 lq_sta->search_better_tbl = 1;
1663 tbl->action++;
1664 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1665 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001666 if (update_search_tbl_counter)
1667 search_tbl->action = tbl->action;
1668
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001669 return 0;
1670
1671}
1672
1673/*
1674 * Try to switch to new modulation mode from MIMO3
1675 */
1676static int rs_move_mimo3_to_other(struct iwl_priv *priv,
1677 struct iwl_lq_sta *lq_sta,
1678 struct ieee80211_conf *conf,
1679 struct ieee80211_sta *sta, int index)
1680{
1681 s8 is_green = lq_sta->is_green;
1682 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1683 struct iwl_scale_tbl_info *search_tbl =
1684 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1685 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001686 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001687 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1688 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
1689 u8 start_action = tbl->action;
1690 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1691 u8 tx_chains_num = priv->hw_params.tx_chains_num;
1692 int ret;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001693 u8 update_search_tbl_counter = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001694
Johannes Berg3ad3b922009-08-07 15:41:48 -07001695 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001696 (tbl->action < IWL_MIMO3_SWITCH_SISO_A ||
1697 tbl->action > IWL_MIMO3_SWITCH_SISO_C)) {
1698 /* switch in SISO */
1699 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
1700 }
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001701 for (;;) {
1702 lq_sta->action_counter++;
1703 switch (tbl->action) {
1704 case IWL_MIMO3_SWITCH_ANTENNA1:
1705 case IWL_MIMO3_SWITCH_ANTENNA2:
1706 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle Antennas\n");
1707
1708 if (tx_chains_num <= 3)
1709 break;
1710
1711 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1712 break;
1713
1714 memcpy(search_tbl, tbl, sz);
1715 if (rs_toggle_antenna(valid_tx_ant,
1716 &search_tbl->current_rate, search_tbl))
1717 goto out;
1718 break;
1719 case IWL_MIMO3_SWITCH_SISO_A:
1720 case IWL_MIMO3_SWITCH_SISO_B:
1721 case IWL_MIMO3_SWITCH_SISO_C:
1722 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to SISO\n");
1723
1724 /* Set up new search table for SISO */
1725 memcpy(search_tbl, tbl, sz);
1726
1727 if (tbl->action == IWL_MIMO3_SWITCH_SISO_A)
1728 search_tbl->ant_type = ANT_A;
1729 else if (tbl->action == IWL_MIMO3_SWITCH_SISO_B)
1730 search_tbl->ant_type = ANT_B;
1731 else
1732 search_tbl->ant_type = ANT_C;
1733
1734 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1735 break;
1736
1737 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
1738 search_tbl, index);
1739 if (!ret)
1740 goto out;
1741
1742 break;
1743
1744 case IWL_MIMO3_SWITCH_MIMO2_AB:
1745 case IWL_MIMO3_SWITCH_MIMO2_AC:
1746 case IWL_MIMO3_SWITCH_MIMO2_BC:
1747 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to MIMO2\n");
1748
1749 memcpy(search_tbl, tbl, sz);
1750 search_tbl->is_SGI = 0;
1751 if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AB)
1752 search_tbl->ant_type = ANT_AB;
1753 else if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AC)
1754 search_tbl->ant_type = ANT_AC;
1755 else
1756 search_tbl->ant_type = ANT_BC;
1757
1758 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1759 break;
1760
1761 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
1762 search_tbl, index);
1763 if (!ret)
1764 goto out;
1765
1766 break;
1767
1768 case IWL_MIMO3_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001769 if (!tbl->is_ht40 && !(ht_cap->cap &
1770 IEEE80211_HT_CAP_SGI_20))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001771 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001772 if (tbl->is_ht40 && !(ht_cap->cap &
1773 IEEE80211_HT_CAP_SGI_40))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001774 break;
1775
1776 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle SGI/NGI\n");
Ben Cahill77626352007-11-29 11:09:44 +08001777
1778 /* Set up new search table for MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001779 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001780 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001781 rs_set_expected_tpt_table(lq_sta, search_tbl);
Ben Cahill77626352007-11-29 11:09:44 +08001782 /*
1783 * If active table already uses the fastest possible
1784 * modulation (dual stream with short guard interval),
1785 * and it's working well, there's no need to look
1786 * for a better type of modulation!
1787 */
Guy Cohen39e88502008-04-23 17:14:57 -07001788 if (tbl->is_SGI) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001789 s32 tpt = lq_sta->last_tpt / 100;
Guy Cohen39e88502008-04-23 17:14:57 -07001790 if (tpt >= search_tbl->expected_tpt[index])
1791 break;
Zhu Yib481de92007-09-25 17:54:57 -07001792 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001793 search_tbl->current_rate =
1794 rate_n_flags_from_tbl(priv, search_tbl,
1795 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001796 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001797 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07001798 }
1799 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001800 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1801 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001802
1803 if (tbl->action == start_action)
1804 break;
1805 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001806 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001807 return 0;
1808 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001809 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001810 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001811 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1812 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001813 if (update_search_tbl_counter)
1814 search_tbl->action = tbl->action;
1815
Zhu Yib481de92007-09-25 17:54:57 -07001816 return 0;
1817
1818}
1819
Ben Cahill77626352007-11-29 11:09:44 +08001820/*
1821 * Check whether we should continue using same modulation mode, or
1822 * begin search for a new mode, based on:
1823 * 1) # tx successes or failures while using this mode
1824 * 2) # times calling this function
1825 * 3) elapsed time in this mode (not used, for now)
1826 */
Tomas Winklere227cea2008-07-18 13:53:05 +08001827static void rs_stay_in_table(struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001828{
Tomas Winklere227cea2008-07-18 13:53:05 +08001829 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001830 int i;
1831 int active_tbl;
1832 int flush_interval_passed = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08001833 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07001834
Ester Kummerbf403db2008-05-05 10:22:40 +08001835 priv = lq_sta->drv;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001836 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001837
Tomas Winklerc33104f2008-01-14 17:46:21 -08001838 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001839
Ben Cahill77626352007-11-29 11:09:44 +08001840 /* If we've been disallowing search, see if we should now allow it */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001841 if (lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001842
Ben Cahill77626352007-11-29 11:09:44 +08001843 /* Elapsed time using current modulation mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001844 if (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001845 flush_interval_passed =
Mohamed Abbas447fee72009-04-20 14:37:02 -07001846 time_after(jiffies,
1847 (unsigned long)(lq_sta->flush_timer +
Zhu Yib481de92007-09-25 17:54:57 -07001848 IWL_RATE_SCALE_FLUSH_INTVL));
1849
Ben Cahill77626352007-11-29 11:09:44 +08001850 /*
1851 * Check if we should allow search for new modulation mode.
1852 * If many frames have failed or succeeded, or we've used
1853 * this same modulation for a long time, allow search, and
1854 * reset history stats that keep track of whether we should
1855 * allow a new search. Also (below) reset all bitmaps and
1856 * stats in active history.
1857 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001858 if ((lq_sta->total_failed > lq_sta->max_failure_limit) ||
1859 (lq_sta->total_success > lq_sta->max_success_limit) ||
1860 ((!lq_sta->search_better_tbl) && (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001861 && (flush_interval_passed))) {
Tomas Winklere1623442009-01-27 14:27:56 -08001862 IWL_DEBUG_RATE(priv, "LQ: stay is expired %d %d %d\n:",
Tomas Winklerc33104f2008-01-14 17:46:21 -08001863 lq_sta->total_failed,
1864 lq_sta->total_success,
Zhu Yib481de92007-09-25 17:54:57 -07001865 flush_interval_passed);
Ben Cahill77626352007-11-29 11:09:44 +08001866
1867 /* Allow search for new mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001868 lq_sta->stay_in_tbl = 0; /* only place reset */
1869 lq_sta->total_failed = 0;
1870 lq_sta->total_success = 0;
1871 lq_sta->flush_timer = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001872
1873 /*
1874 * Else if we've used this modulation mode enough repetitions
1875 * (regardless of elapsed time or success/failure), reset
1876 * history bitmaps and rate-specific stats for all rates in
1877 * active table.
1878 */
Mohamed Abbas403ab562007-11-06 22:06:25 -08001879 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001880 lq_sta->table_count++;
1881 if (lq_sta->table_count >=
1882 lq_sta->table_count_limit) {
1883 lq_sta->table_count = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001884
Tomas Winklere1623442009-01-27 14:27:56 -08001885 IWL_DEBUG_RATE(priv, "LQ: stay in table clear win\n");
Zhu Yib481de92007-09-25 17:54:57 -07001886 for (i = 0; i < IWL_RATE_COUNT; i++)
1887 rs_rate_scale_clear_window(
1888 &(tbl->win[i]));
1889 }
1890 }
1891
Ben Cahill77626352007-11-29 11:09:44 +08001892 /* If transitioning to allow "search", reset all history
1893 * bitmaps and stats in active table (this will become the new
1894 * "search" table). */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001895 if (!lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001896 for (i = 0; i < IWL_RATE_COUNT; i++)
1897 rs_rate_scale_clear_window(&(tbl->win[i]));
1898 }
1899 }
1900}
1901
Ben Cahill77626352007-11-29 11:09:44 +08001902/*
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07001903 * setup rate table in uCode
1904 * return rate_n_flags as used in the table
1905 */
1906static u32 rs_update_rate_tbl(struct iwl_priv *priv,
1907 struct iwl_lq_sta *lq_sta,
1908 struct iwl_scale_tbl_info *tbl,
1909 int index, u8 is_green)
1910{
1911 u32 rate;
1912
1913 /* Update uCode's rate table. */
1914 rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
1915 rs_fill_link_cmd(priv, lq_sta, rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08001916 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07001917
1918 return rate;
1919}
1920
1921/*
Ben Cahill77626352007-11-29 11:09:44 +08001922 * Do rate scaling and search for new modulation mode.
1923 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001924static void rs_rate_scale_perform(struct iwl_priv *priv,
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001925 struct sk_buff *skb,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001926 struct ieee80211_sta *sta,
1927 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001928{
Johannes Berg4b7679a2008-09-18 18:14:18 +02001929 struct ieee80211_hw *hw = priv->hw;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001930 struct ieee80211_conf *conf = &hw->conf;
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001931 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1932 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001933 int low = IWL_RATE_INVALID;
1934 int high = IWL_RATE_INVALID;
1935 int index;
1936 int i;
Tomas Winklere227cea2008-07-18 13:53:05 +08001937 struct iwl_rate_scale_data *window = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001938 int current_tpt = IWL_INVALID_VALUE;
1939 int low_tpt = IWL_INVALID_VALUE;
1940 int high_tpt = IWL_INVALID_VALUE;
1941 u32 fail_count;
1942 s8 scale_action = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07001943 u16 rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -07001944 u8 update_lq = 0;
Tomas Winklere227cea2008-07-18 13:53:05 +08001945 struct iwl_scale_tbl_info *tbl, *tbl1;
Zhu Yib481de92007-09-25 17:54:57 -07001946 u16 rate_scale_index_msk = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001947 u32 rate;
Zhu Yib481de92007-09-25 17:54:57 -07001948 u8 is_green = 0;
1949 u8 active_tbl = 0;
1950 u8 done_search = 0;
1951 u16 high_low;
Guy Cohena5e8b502008-05-29 16:35:11 +08001952 s32 sr;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001953 u8 tid = MAX_TID_COUNT;
Wey-Yi Guy86b47662009-03-10 14:35:09 -07001954 struct iwl_tid_data *tid_data;
Zhu Yib481de92007-09-25 17:54:57 -07001955
Tomas Winklere1623442009-01-27 14:27:56 -08001956 IWL_DEBUG_RATE(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07001957
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001958 /* Send management frames and NO_ACK data using lowest rate. */
Tomas Winkler417f1142008-11-12 13:14:06 -08001959 /* TODO: this could probably be improved.. */
1960 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001961 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -07001962 return;
Zhu Yib481de92007-09-25 17:54:57 -07001963
Johannes Berg4b7679a2008-09-18 18:14:18 +02001964 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001965 return;
1966
Johannes Berg4b7679a2008-09-18 18:14:18 +02001967 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
Zhu Yib481de92007-09-25 17:54:57 -07001968
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08001969 tid = rs_tl_add_packet(lq_sta, hdr);
Daniel C Halperine3949d62009-09-17 10:43:50 -07001970 if ((tid != MAX_TID_COUNT) && (lq_sta->tx_agg_tid_en & (1 << tid))) {
1971 tid_data = &priv->stations[lq_sta->lq.sta_id].tid[tid];
1972 if (tid_data->agg.state == IWL_AGG_OFF)
1973 lq_sta->is_agg = 0;
1974 else
1975 lq_sta->is_agg = 1;
1976 } else
1977 lq_sta->is_agg = 0;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08001978
Ben Cahill77626352007-11-29 11:09:44 +08001979 /*
1980 * Select rate-scale / modulation-mode table to work with in
1981 * the rest of this function: "search" if searching for better
1982 * modulation mode, or "active" if doing rate scaling within a mode.
1983 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001984 if (!lq_sta->search_better_tbl)
1985 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001986 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08001987 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001988
Tomas Winklerc33104f2008-01-14 17:46:21 -08001989 tbl = &(lq_sta->lq_info[active_tbl]);
Wey-Yi Guy2681b202009-05-21 13:44:22 -07001990 if (is_legacy(tbl->lq_type))
1991 lq_sta->is_green = 0;
1992 else
Daniel C Halperinb2617932009-08-13 13:30:59 -07001993 lq_sta->is_green = rs_use_green(sta, &priv->current_ht_config);
Tomas Winklerc33104f2008-01-14 17:46:21 -08001994 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001995
Ben Cahill77626352007-11-29 11:09:44 +08001996 /* current tx rate */
Johannes Bergb7e35002008-09-11 02:22:58 +02001997 index = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07001998
Tomas Winklere1623442009-01-27 14:27:56 -08001999 IWL_DEBUG_RATE(priv, "Rate scale index %d for type %d\n", index,
Zhu Yib481de92007-09-25 17:54:57 -07002000 tbl->lq_type);
2001
Ben Cahill77626352007-11-29 11:09:44 +08002002 /* rates available for this association, and for modulation mode */
Guy Coheneecd6e52008-04-23 17:14:58 -07002003 rate_mask = rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07002004
Frans Pop91dd6c22010-03-24 14:19:58 -07002005 IWL_DEBUG_RATE(priv, "mask 0x%04X\n", rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07002006
2007 /* mask with station rate restriction */
2008 if (is_legacy(tbl->lq_type)) {
Johannes Berg8318d782008-01-24 19:38:38 +01002009 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Ben Cahill77626352007-11-29 11:09:44 +08002010 /* supp_rates has no CCK bits in A mode */
Zhu Yib481de92007-09-25 17:54:57 -07002011 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002012 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -07002013 else
2014 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002015 lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -07002016
2017 } else
2018 rate_scale_index_msk = rate_mask;
2019
2020 if (!rate_scale_index_msk)
2021 rate_scale_index_msk = rate_mask;
2022
Guy Cohen07bc28e2008-04-23 17:15:03 -07002023 if (!((1 << index) & rate_scale_index_msk)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002024 IWL_ERR(priv, "Current Rate is not valid\n");
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002025 if (lq_sta->search_better_tbl) {
2026 /* revert to active table if search table is not valid*/
2027 tbl->lq_type = LQ_NONE;
2028 lq_sta->search_better_tbl = 0;
2029 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
2030 /* get "active" rate info */
2031 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
2032 rate = rs_update_rate_tbl(priv, lq_sta,
2033 tbl, index, is_green);
2034 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002035 return;
Zhu Yib481de92007-09-25 17:54:57 -07002036 }
2037
Ben Cahill77626352007-11-29 11:09:44 +08002038 /* Get expected throughput table and history window for current rate */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002039 if (!tbl->expected_tpt) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002040 IWL_ERR(priv, "tbl->expected_tpt is NULL\n");
Guy Cohen07bc28e2008-04-23 17:15:03 -07002041 return;
2042 }
Zhu Yib481de92007-09-25 17:54:57 -07002043
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002044 /* force user max rate if set by user */
2045 if ((lq_sta->max_rate_idx != -1) &&
2046 (lq_sta->max_rate_idx < index)) {
2047 index = lq_sta->max_rate_idx;
2048 update_lq = 1;
2049 window = &(tbl->win[index]);
2050 goto lq_update;
2051 }
2052
Zhu Yib481de92007-09-25 17:54:57 -07002053 window = &(tbl->win[index]);
2054
Ben Cahill77626352007-11-29 11:09:44 +08002055 /*
2056 * If there is not enough history to calculate actual average
2057 * throughput, keep analyzing results of more tx frames, without
2058 * changing rate or mode (bypass most of the rest of this function).
2059 * Set up new rate table in uCode only if old rate is not supported
2060 * in current association (use new rate found above).
2061 */
Zhu Yib481de92007-09-25 17:54:57 -07002062 fail_count = window->counter - window->success_counter;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002063 if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
2064 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002065 IWL_DEBUG_RATE(priv, "LQ: still below TH. succ=%d total=%d "
Zhu Yib481de92007-09-25 17:54:57 -07002066 "for index %d\n",
2067 window->success_counter, window->counter, index);
Ben Cahill77626352007-11-29 11:09:44 +08002068
2069 /* Can't calculate this yet; not enough history */
Zhu Yib481de92007-09-25 17:54:57 -07002070 window->average_tpt = IWL_INVALID_VALUE;
Ben Cahill77626352007-11-29 11:09:44 +08002071
2072 /* Should we stay with this modulation mode,
2073 * or search for a new one? */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002074 rs_stay_in_table(lq_sta);
Ben Cahill77626352007-11-29 11:09:44 +08002075
Zhu Yib481de92007-09-25 17:54:57 -07002076 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08002077 }
Ben Cahill77626352007-11-29 11:09:44 +08002078 /* Else we have enough samples; calculate estimate of
2079 * actual average throughput */
Guy Cohen3110bef2008-09-09 10:54:54 +08002080
Daniel C Halperine3949d62009-09-17 10:43:50 -07002081 /* Sanity-check TPT calculations */
Guy Cohen3110bef2008-09-09 10:54:54 +08002082 BUG_ON(window->average_tpt != ((window->success_ratio *
2083 tbl->expected_tpt[index] + 64) / 128));
Zhu Yib481de92007-09-25 17:54:57 -07002084
Ben Cahill77626352007-11-29 11:09:44 +08002085 /* If we are searching for better modulation mode, check success. */
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002086 if (lq_sta->search_better_tbl &&
Johannes Berg3ad3b922009-08-07 15:41:48 -07002087 (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI)) {
Ben Cahill77626352007-11-29 11:09:44 +08002088 /* If good success, continue using the "search" mode;
2089 * no need to send new link quality command, since we're
2090 * continuing to use the setup that we've been trying. */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002091 if (window->average_tpt > lq_sta->last_tpt) {
2092
Tomas Winklere1623442009-01-27 14:27:56 -08002093 IWL_DEBUG_RATE(priv, "LQ: SWITCHING TO NEW TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002094 "suc=%d cur-tpt=%d old-tpt=%d\n",
2095 window->success_ratio,
2096 window->average_tpt,
2097 lq_sta->last_tpt);
2098
2099 if (!is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002100 lq_sta->enable_counter = 1;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002101
Ben Cahill77626352007-11-29 11:09:44 +08002102 /* Swap tables; "search" becomes "active" */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002103 lq_sta->active_tbl = active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002104 current_tpt = window->average_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002105
2106 /* Else poor success; go back to mode in "active" table */
Zhu Yib481de92007-09-25 17:54:57 -07002107 } else {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002108
Tomas Winklere1623442009-01-27 14:27:56 -08002109 IWL_DEBUG_RATE(priv, "LQ: GOING BACK TO THE OLD TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002110 "suc=%d cur-tpt=%d old-tpt=%d\n",
2111 window->success_ratio,
2112 window->average_tpt,
2113 lq_sta->last_tpt);
2114
Ben Cahill77626352007-11-29 11:09:44 +08002115 /* Nullify "search" table */
Zhu Yib481de92007-09-25 17:54:57 -07002116 tbl->lq_type = LQ_NONE;
Ben Cahill77626352007-11-29 11:09:44 +08002117
2118 /* Revert to "active" table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002119 active_tbl = lq_sta->active_tbl;
2120 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002121
Ben Cahill77626352007-11-29 11:09:44 +08002122 /* Revert to "active" rate and throughput info */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002123 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002124 current_tpt = lq_sta->last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002125
2126 /* Need to set up a new rate table in uCode */
2127 update_lq = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002128 }
Ben Cahill77626352007-11-29 11:09:44 +08002129
2130 /* Either way, we've made a decision; modulation mode
2131 * search is done, allow rate adjustment next time. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002132 lq_sta->search_better_tbl = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002133 done_search = 1; /* Don't switch modes below! */
Zhu Yib481de92007-09-25 17:54:57 -07002134 goto lq_update;
2135 }
2136
Ben Cahill77626352007-11-29 11:09:44 +08002137 /* (Else) not in search of better modulation mode, try for better
2138 * starting rate, while staying in this mode. */
Ester Kummerbf403db2008-05-05 10:22:40 +08002139 high_low = rs_get_adjacent_rate(priv, index, rate_scale_index_msk,
Zhu Yib481de92007-09-25 17:54:57 -07002140 tbl->lq_type);
2141 low = high_low & 0xff;
2142 high = (high_low >> 8) & 0xff;
2143
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002144 /* If user set max rate, dont allow higher than user constrain */
2145 if ((lq_sta->max_rate_idx != -1) &&
2146 (lq_sta->max_rate_idx < high))
2147 high = IWL_RATE_INVALID;
2148
Guy Cohena5e8b502008-05-29 16:35:11 +08002149 sr = window->success_ratio;
2150
Ben Cahill77626352007-11-29 11:09:44 +08002151 /* Collect measured throughputs for current and adjacent rates */
Zhu Yib481de92007-09-25 17:54:57 -07002152 current_tpt = window->average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002153 if (low != IWL_RATE_INVALID)
2154 low_tpt = tbl->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002155 if (high != IWL_RATE_INVALID)
2156 high_tpt = tbl->win[high].average_tpt;
2157
Guy Cohena5e8b502008-05-29 16:35:11 +08002158 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002159
Ben Cahill77626352007-11-29 11:09:44 +08002160 /* Too many failures, decrease rate */
Guy Cohena5e8b502008-05-29 16:35:11 +08002161 if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002162 IWL_DEBUG_RATE(priv, "decrease rate because of low success_ratio\n");
Zhu Yib481de92007-09-25 17:54:57 -07002163 scale_action = -1;
Ben Cahill77626352007-11-29 11:09:44 +08002164
2165 /* No throughput measured yet for adjacent rates; try increase. */
Zhu Yib481de92007-09-25 17:54:57 -07002166 } else if ((low_tpt == IWL_INVALID_VALUE) &&
Guy Cohena5e8b502008-05-29 16:35:11 +08002167 (high_tpt == IWL_INVALID_VALUE)) {
2168
2169 if (high != IWL_RATE_INVALID && sr >= IWL_RATE_INCREASE_TH)
2170 scale_action = 1;
2171 else if (low != IWL_RATE_INVALID)
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002172 scale_action = 0;
Guy Cohena5e8b502008-05-29 16:35:11 +08002173 }
Ben Cahill77626352007-11-29 11:09:44 +08002174
2175 /* Both adjacent throughputs are measured, but neither one has better
2176 * throughput; we're using the best rate, don't change it! */
Zhu Yib481de92007-09-25 17:54:57 -07002177 else if ((low_tpt != IWL_INVALID_VALUE) &&
2178 (high_tpt != IWL_INVALID_VALUE) &&
2179 (low_tpt < current_tpt) &&
2180 (high_tpt < current_tpt))
2181 scale_action = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002182
2183 /* At least one adjacent rate's throughput is measured,
2184 * and may have better performance. */
Zhu Yib481de92007-09-25 17:54:57 -07002185 else {
Ben Cahill77626352007-11-29 11:09:44 +08002186 /* Higher adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002187 if (high_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002188 /* Higher rate has better throughput */
Guy Cohena5e8b502008-05-29 16:35:11 +08002189 if (high_tpt > current_tpt &&
2190 sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002191 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002192 } else {
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002193 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002194 }
Ben Cahill77626352007-11-29 11:09:44 +08002195
2196 /* Lower adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002197 } else if (low_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002198 /* Lower rate has better throughput */
Zhu Yib481de92007-09-25 17:54:57 -07002199 if (low_tpt > current_tpt) {
Tomas Winklere1623442009-01-27 14:27:56 -08002200 IWL_DEBUG_RATE(priv,
2201 "decrease rate because of low tpt\n");
Zhu Yib481de92007-09-25 17:54:57 -07002202 scale_action = -1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002203 } else if (sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002204 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002205 }
Zhu Yib481de92007-09-25 17:54:57 -07002206 }
2207 }
2208
Ben Cahill77626352007-11-29 11:09:44 +08002209 /* Sanity check; asked for decrease, but success rate or throughput
2210 * has been good at old rate. Don't change it. */
Guy Cohena5e8b502008-05-29 16:35:11 +08002211 if ((scale_action == -1) && (low != IWL_RATE_INVALID) &&
2212 ((sr > IWL_RATE_HIGH_TH) ||
Zhu Yib481de92007-09-25 17:54:57 -07002213 (current_tpt > (100 * tbl->expected_tpt[low]))))
Zhu Yib481de92007-09-25 17:54:57 -07002214 scale_action = 0;
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002215 if (!iwl_ht_enabled(priv) && !is_legacy(tbl->lq_type))
2216 scale_action = -1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07002217 if (iwl_tx_ant_restriction(priv) != IWL_ANT_OK_MULTI &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002218 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type)))
2219 scale_action = -1;
Zhu Yib481de92007-09-25 17:54:57 -07002220 switch (scale_action) {
2221 case -1:
Ben Cahill77626352007-11-29 11:09:44 +08002222 /* Decrease starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002223 if (low != IWL_RATE_INVALID) {
2224 update_lq = 1;
2225 index = low;
2226 }
Mohamed Abbas447fee72009-04-20 14:37:02 -07002227
Zhu Yib481de92007-09-25 17:54:57 -07002228 break;
2229 case 1:
Ben Cahill77626352007-11-29 11:09:44 +08002230 /* Increase starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002231 if (high != IWL_RATE_INVALID) {
2232 update_lq = 1;
2233 index = high;
2234 }
2235
2236 break;
2237 case 0:
Ben Cahill77626352007-11-29 11:09:44 +08002238 /* No change */
Zhu Yib481de92007-09-25 17:54:57 -07002239 default:
2240 break;
2241 }
2242
Tomas Winklere1623442009-01-27 14:27:56 -08002243 IWL_DEBUG_RATE(priv, "choose rate scale index %d action %d low %d "
Zhu Yib481de92007-09-25 17:54:57 -07002244 "high %d type %d\n",
2245 index, scale_action, low, high, tbl->lq_type);
2246
Guy Cohena5e8b502008-05-29 16:35:11 +08002247lq_update:
Ben Cahill77626352007-11-29 11:09:44 +08002248 /* Replace uCode's rate table for the destination station. */
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002249 if (update_lq)
2250 rate = rs_update_rate_tbl(priv, lq_sta,
2251 tbl, index, is_green);
Ben Cahill77626352007-11-29 11:09:44 +08002252
Johannes Berg3ad3b922009-08-07 15:41:48 -07002253 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI) {
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002254 /* Should we stay with this modulation mode,
2255 * or search for a new one? */
2256 rs_stay_in_table(lq_sta);
2257 }
Ben Cahill77626352007-11-29 11:09:44 +08002258 /*
2259 * Search for new modulation mode if we're:
2260 * 1) Not changing rates right now
2261 * 2) Not just finishing up a search
2262 * 3) Allowing a new search
2263 */
Guy Cohen47cfd462008-05-27 11:29:34 +08002264 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && window->counter) {
Ben Cahill77626352007-11-29 11:09:44 +08002265 /* Save current throughput to compare with "search" throughput*/
Tomas Winklerc33104f2008-01-14 17:46:21 -08002266 lq_sta->last_tpt = current_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002267
Ben Cahill77626352007-11-29 11:09:44 +08002268 /* Select a new "search" modulation mode to try.
2269 * If one is found, set up the new "search" table. */
Zhu Yib481de92007-09-25 17:54:57 -07002270 if (is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002271 rs_move_legacy_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002272 else if (is_siso(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002273 rs_move_siso_to_other(priv, lq_sta, conf, sta, index);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002274 else if (is_mimo2(tbl->lq_type))
2275 rs_move_mimo2_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002276 else
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002277 rs_move_mimo3_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002278
Ben Cahill77626352007-11-29 11:09:44 +08002279 /* If new "search" mode was selected, set up in uCode table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002280 if (lq_sta->search_better_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002281 /* Access the "search" table, clear its history. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002282 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Zhu Yib481de92007-09-25 17:54:57 -07002283 for (i = 0; i < IWL_RATE_COUNT; i++)
2284 rs_rate_scale_clear_window(&(tbl->win[i]));
2285
Ben Cahill77626352007-11-29 11:09:44 +08002286 /* Use new "search" start rate */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002287 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002288
Tomas Winklere1623442009-01-27 14:27:56 -08002289 IWL_DEBUG_RATE(priv, "Switch current mcs: %X index: %d\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002290 tbl->current_rate, index);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002291 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002292 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC, false);
Mohamed Abbas447fee72009-04-20 14:37:02 -07002293 } else
2294 done_search = 1;
2295 }
Zhu Yib481de92007-09-25 17:54:57 -07002296
Mohamed Abbas447fee72009-04-20 14:37:02 -07002297 if (done_search && !lq_sta->stay_in_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002298 /* If the "active" (non-search) mode was legacy,
2299 * and we've tried switching antennas,
2300 * but we haven't been able to try HT modes (not available),
2301 * stay with best antenna legacy modulation for a while
2302 * before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002303 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08002304 if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
Mohamed Abbasd6e93392009-05-08 13:44:39 -07002305 lq_sta->action_counter > tbl1->max_search) {
Tomas Winklere1623442009-01-27 14:27:56 -08002306 IWL_DEBUG_RATE(priv, "LQ: STAY in legacy table\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08002307 rs_set_stay_in_table(priv, 1, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002308 }
2309
Ben Cahill77626352007-11-29 11:09:44 +08002310 /* If we're in an HT mode, and all 3 mode switch actions
2311 * have been tried and compared, stay in this best modulation
2312 * mode for a while before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002313 if (lq_sta->enable_counter &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002314 (lq_sta->action_counter >= tbl1->max_search) &&
2315 iwl_ht_enabled(priv)) {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002316 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2317 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2318 (tid != MAX_TID_COUNT)) {
Wey-Yi Guy86b47662009-03-10 14:35:09 -07002319 tid_data =
2320 &priv->stations[lq_sta->lq.sta_id].tid[tid];
2321 if (tid_data->agg.state == IWL_AGG_OFF) {
2322 IWL_DEBUG_RATE(priv,
2323 "try to aggregate tid %d\n",
2324 tid);
2325 rs_tl_turn_on_agg(priv, tid,
2326 lq_sta, sta);
2327 }
Zhu Yib481de92007-09-25 17:54:57 -07002328 }
Ester Kummerbf403db2008-05-05 10:22:40 +08002329 rs_set_stay_in_table(priv, 0, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002330 }
Zhu Yib481de92007-09-25 17:54:57 -07002331 }
2332
2333out:
Tomas Winkler978785a2008-12-19 10:37:31 +08002334 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07002335 i = index;
Johannes Bergb7e35002008-09-11 02:22:58 +02002336 lq_sta->last_txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -07002337
Zhu Yib481de92007-09-25 17:54:57 -07002338 return;
2339}
2340
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002341/**
2342 * rs_initialize_lq - Initialize a station's hardware rate table
2343 *
2344 * The uCode's station table contains a table of fallback rates
2345 * for automatic fallback during transmission.
2346 *
2347 * NOTE: This sets up a default set of values. These will be replaced later
2348 * if the driver's iwl-agn-rs rate scaling algorithm is used, instead of
2349 * rc80211_simple.
2350 *
2351 * NOTE: Run REPLY_ADD_STA command to set up station table entry, before
2352 * calling this function (which runs REPLY_TX_LINK_QUALITY_CMD,
2353 * which requires station table entry to exist).
2354 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002355static void rs_initialize_lq(struct iwl_priv *priv,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002356 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002357 struct ieee80211_sta *sta,
2358 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002359{
Tomas Winklere227cea2008-07-18 13:53:05 +08002360 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002361 int rate_idx;
Guy Cohenaade00c2008-04-23 17:14:59 -07002362 int i;
Guy Cohen39e88502008-04-23 17:14:57 -07002363 u32 rate;
Daniel C Halperinb2617932009-08-13 13:30:59 -07002364 u8 use_green = rs_use_green(sta, &priv->current_ht_config);
Guy Cohenaade00c2008-04-23 17:14:59 -07002365 u8 active_tbl = 0;
2366 u8 valid_tx_ant;
Zhu Yib481de92007-09-25 17:54:57 -07002367
Johannes Berg4b7679a2008-09-18 18:14:18 +02002368 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002369 goto out;
2370
Johannes Bergb7e35002008-09-11 02:22:58 +02002371 i = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002372
Guy Cohenaade00c2008-04-23 17:14:59 -07002373 valid_tx_ant = priv->hw_params.valid_tx_ant;
2374
Tomas Winklerc33104f2008-01-14 17:46:21 -08002375 if (!lq_sta->search_better_tbl)
2376 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002377 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002378 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002379
Tomas Winklerc33104f2008-01-14 17:46:21 -08002380 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002381
2382 if ((i < 0) || (i >= IWL_RATE_COUNT))
2383 i = 0;
2384
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002385 rate = iwl_rates[i].plcp;
Winkler, Tomaseb48dca2008-10-29 14:05:48 -07002386 tbl->ant_type = first_antenna(valid_tx_ant);
2387 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
Zhu Yib481de92007-09-25 17:54:57 -07002388
2389 if (i >= IWL_FIRST_CCK_RATE && i <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -07002390 rate |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002391
Guy Cohen39e88502008-04-23 17:14:57 -07002392 rs_get_tbl_info_from_mcs(rate, priv->band, tbl, &rate_idx);
Guy Cohenaade00c2008-04-23 17:14:59 -07002393 if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2394 rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07002395
Tomas Winkler978785a2008-12-19 10:37:31 +08002396 rate = rate_n_flags_from_tbl(priv, tbl, rate_idx, use_green);
Guy Cohen39e88502008-04-23 17:14:57 -07002397 tbl->current_rate = rate;
Guy Coheneecd6e52008-04-23 17:14:58 -07002398 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002399 rs_fill_link_cmd(NULL, lq_sta, rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002400 priv->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq;
2401 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_SYNC, true);
Zhu Yib481de92007-09-25 17:54:57 -07002402 out:
2403 return;
2404}
2405
Johannes Berge6a98542008-10-21 12:40:02 +02002406static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta,
2407 struct ieee80211_tx_rate_control *txrc)
Zhu Yib481de92007-09-25 17:54:57 -07002408{
2409
Johannes Berge6a98542008-10-21 12:40:02 +02002410 struct sk_buff *skb = txrc->skb;
2411 struct ieee80211_supported_band *sband = txrc->sband;
Reinette Chatref875f512010-04-05 10:43:10 -07002412 struct iwl_priv *priv __maybe_unused = (struct iwl_priv *)priv_r;
Johannes Berge6a98542008-10-21 12:40:02 +02002413 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winkler417f1142008-11-12 13:14:06 -08002414 struct iwl_lq_sta *lq_sta = priv_sta;
2415 int rate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002416
Tomas Winklere1623442009-01-27 14:27:56 -08002417 IWL_DEBUG_RATE_LIMIT(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002418
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002419 /* Get max rate if user set max rate */
2420 if (lq_sta) {
2421 lq_sta->max_rate_idx = txrc->max_rate_idx;
2422 if ((sband->band == IEEE80211_BAND_5GHZ) &&
2423 (lq_sta->max_rate_idx != -1))
2424 lq_sta->max_rate_idx += IWL_FIRST_OFDM_RATE;
2425 if ((lq_sta->max_rate_idx < 0) ||
2426 (lq_sta->max_rate_idx >= IWL_RATE_COUNT))
2427 lq_sta->max_rate_idx = -1;
2428 }
2429
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002430 /* Treat uninitialized rate scaling data same as non-existing. */
2431 if (lq_sta && !lq_sta->drv) {
2432 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
2433 priv_sta = NULL;
2434 }
2435
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002436 /* Send management frames and NO_ACK data using lowest rate. */
Luis R. Rodriguez4c6d4f52009-07-16 10:05:41 -07002437 if (rate_control_send_low(sta, priv_sta, txrc))
Johannes Berg4b7679a2008-09-18 18:14:18 +02002438 return;
Zhu Yib481de92007-09-25 17:54:57 -07002439
Tomas Winkler417f1142008-11-12 13:14:06 -08002440 rate_idx = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002441
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002442 if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
Tomas Winkler417f1142008-11-12 13:14:06 -08002443 rate_idx -= IWL_FIRST_OFDM_RATE;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002444 /* 6M and 9M shared same MCS index */
2445 rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
2446 if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2447 IWL_RATE_MIMO3_6M_PLCP)
2448 rate_idx = rate_idx + (2 * MCS_INDEX_PER_STREAM);
2449 else if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2450 IWL_RATE_MIMO2_6M_PLCP)
2451 rate_idx = rate_idx + MCS_INDEX_PER_STREAM;
2452 info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
2453 if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
2454 info->control.rates[0].flags |= IEEE80211_TX_RC_SHORT_GI;
2455 if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
2456 info->control.rates[0].flags |= IEEE80211_TX_RC_DUP_DATA;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002457 if (lq_sta->last_rate_n_flags & RATE_MCS_HT40_MSK)
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002458 info->control.rates[0].flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2459 if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
2460 info->control.rates[0].flags |= IEEE80211_TX_RC_GREEN_FIELD;
2461 } else {
Daniel C Halperin50273092009-08-28 09:44:45 -07002462 /* Check for invalid rates */
2463 if ((rate_idx < 0) || (rate_idx >= IWL_RATE_COUNT_LEGACY) ||
2464 ((sband->band == IEEE80211_BAND_5GHZ) &&
2465 (rate_idx < IWL_FIRST_OFDM_RATE)))
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002466 rate_idx = rate_lowest_index(sband, sta);
Daniel C Halperin50273092009-08-28 09:44:45 -07002467 /* On valid 5 GHz rate, adjust index */
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002468 else if (sband->band == IEEE80211_BAND_5GHZ)
2469 rate_idx -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin7ebaeff2009-08-21 13:34:20 -07002470 info->control.rates[0].flags = 0;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002471 }
Tomas Winkler417f1142008-11-12 13:14:06 -08002472 info->control.rates[0].idx = rate_idx;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002473
Zhu Yib481de92007-09-25 17:54:57 -07002474}
2475
Johannes Berg4b7679a2008-09-18 18:14:18 +02002476static void *rs_alloc_sta(void *priv_rate, struct ieee80211_sta *sta,
2477 gfp_t gfp)
Zhu Yib481de92007-09-25 17:54:57 -07002478{
Tomas Winklere227cea2008-07-18 13:53:05 +08002479 struct iwl_lq_sta *lq_sta;
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002480 struct iwl_station_priv *sta_priv = (struct iwl_station_priv *) sta->drv_priv;
Ester Kummerbf403db2008-05-05 10:22:40 +08002481 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002482
Ester Kummerbf403db2008-05-05 10:22:40 +08002483 priv = (struct iwl_priv *)priv_rate;
Tomas Winklere1623442009-01-27 14:27:56 -08002484 IWL_DEBUG_RATE(priv, "create station rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -07002485
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002486 lq_sta = &sta_priv->lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002487
Tomas Winklerc33104f2008-01-14 17:46:21 -08002488 return lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002489}
2490
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002491/*
2492 * Called after adding a new station to initialize rate scaling
2493 */
2494void iwl_rs_rate_init(struct iwl_priv *priv, struct ieee80211_sta *sta, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07002495{
2496 int i, j;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002497 struct ieee80211_hw *hw = priv->hw;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002498 struct ieee80211_conf *conf = &priv->hw->conf;
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002499 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002500 struct iwl_station_priv *sta_priv;
2501 struct iwl_lq_sta *lq_sta;
2502 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07002503
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002504 sta_priv = (struct iwl_station_priv *) sta->drv_priv;
2505 lq_sta = &sta_priv->lq_sta;
2506 sband = hw->wiphy->bands[conf->channel->band];
2507
2508
2509 lq_sta->lq.sta_id = sta_id;
Reinette Chatre5ad13f82009-10-30 14:36:14 -07002510
2511 for (j = 0; j < LQ_SIZE; j++)
2512 for (i = 0; i < IWL_RATE_COUNT; i++)
2513 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
2514
Tomas Winklerc33104f2008-01-14 17:46:21 -08002515 lq_sta->flush_timer = 0;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002516 lq_sta->supp_rates = sta->supp_rates[sband->band];
Zhu Yib481de92007-09-25 17:54:57 -07002517 for (j = 0; j < LQ_SIZE; j++)
2518 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002519 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002520
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002521 IWL_DEBUG_RATE(priv, "LQ: *** rate scale station global init for station %d ***\n",
2522 sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002523 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2524 * the lowest or the highest rate.. Could consider using RSSI from
2525 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2526 * after assoc.. */
2527
Tomas Winklerc33104f2008-01-14 17:46:21 -08002528 lq_sta->is_dup = 0;
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002529 lq_sta->max_rate_idx = -1;
Abbas, Mohamed7d049e52009-01-20 21:33:53 -08002530 lq_sta->missed_rate_counter = IWL_MISSED_RATE_MAX;
Daniel C Halperinb2617932009-08-13 13:30:59 -07002531 lq_sta->is_green = rs_use_green(sta, &priv->current_ht_config);
Guy Cohen39e88502008-04-23 17:14:57 -07002532 lq_sta->active_legacy_rate = priv->active_rate & ~(0x1000);
Johannes Berg8318d782008-01-24 19:38:38 +01002533 lq_sta->band = priv->band;
Ben Cahill77626352007-11-29 11:09:44 +08002534 /*
2535 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2536 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2537 */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002538 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2539 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002540 lq_sta->active_siso_rate &= ~((u16)0x2);
2541 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002542
Ben Cahill77626352007-11-29 11:09:44 +08002543 /* Same here */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002544 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2545 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002546 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2547 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2548
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002549 lq_sta->active_mimo3_rate = ht_cap->mcs.rx_mask[2] << 1;
2550 lq_sta->active_mimo3_rate |= ht_cap->mcs.rx_mask[2] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002551 lq_sta->active_mimo3_rate &= ~((u16)0x2);
2552 lq_sta->active_mimo3_rate <<= IWL_FIRST_OFDM_RATE;
2553
Tomas Winklere1623442009-01-27 14:27:56 -08002554 IWL_DEBUG_RATE(priv, "SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002555 lq_sta->active_siso_rate,
Guy Cohenfde0db32008-04-21 15:42:01 -07002556 lq_sta->active_mimo2_rate,
2557 lq_sta->active_mimo3_rate);
2558
Tomas Winklera96a27f2008-10-23 23:48:56 -07002559 /* These values will be overridden later */
Wey-Yi Guy3a23d692010-04-03 16:44:39 -07002560 lq_sta->lq.general_params.single_stream_ant_msk =
2561 first_antenna(priv->hw_params.valid_tx_ant);
2562 lq_sta->lq.general_params.dual_stream_ant_msk =
2563 priv->hw_params.valid_tx_ant &
2564 ~first_antenna(priv->hw_params.valid_tx_ant);
2565 if (!lq_sta->lq.general_params.dual_stream_ant_msk) {
2566 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2567 } else if (num_of_ant(priv->hw_params.valid_tx_ant) == 2) {
2568 lq_sta->lq.general_params.dual_stream_ant_msk =
2569 priv->hw_params.valid_tx_ant;
2570 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002571
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002572 /* as default allow aggregation for all tids */
2573 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002574 lq_sta->drv = priv;
Zhu Yib481de92007-09-25 17:54:57 -07002575
Daniel C Halperin50273092009-08-28 09:44:45 -07002576 /* Set last_txrate_idx to lowest rate */
2577 lq_sta->last_txrate_idx = rate_lowest_index(sband, sta);
2578 if (sband->band == IEEE80211_BAND_5GHZ)
2579 lq_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
Daniel C Halperine3949d62009-09-17 10:43:50 -07002580 lq_sta->is_agg = 0;
Mohamed Abbasd5e49032008-12-12 08:22:15 -08002581
Johannes Berg4b7679a2008-09-18 18:14:18 +02002582 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002583}
2584
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002585static void rs_fill_link_cmd(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08002586 struct iwl_lq_sta *lq_sta, u32 new_rate)
Zhu Yib481de92007-09-25 17:54:57 -07002587{
Tomas Winklere227cea2008-07-18 13:53:05 +08002588 struct iwl_scale_tbl_info tbl_type;
Zhu Yib481de92007-09-25 17:54:57 -07002589 int index = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002590 int rate_idx;
Zhu Yi1b696de2007-09-27 11:27:41 +08002591 int repeat_rate = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07002592 u8 ant_toggle_cnt = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002593 u8 use_ht_possible = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07002594 u8 valid_tx_ant = 0;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002595 struct iwl_link_quality_cmd *lq_cmd = &lq_sta->lq;
Zhu Yib481de92007-09-25 17:54:57 -07002596
Ben Cahill77626352007-11-29 11:09:44 +08002597 /* Override starting rate (index 0) if needed for debug purposes */
Guy Cohen39e88502008-04-23 17:14:57 -07002598 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Zhu Yi98d7e092007-09-27 11:27:42 +08002599
Guy Cohen39e88502008-04-23 17:14:57 -07002600 /* Interpret new_rate (rate_n_flags) */
Guy Cohenaade00c2008-04-23 17:14:59 -07002601 memset(&tbl_type, 0, sizeof(tbl_type));
Guy Cohen39e88502008-04-23 17:14:57 -07002602 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
Zhu Yib481de92007-09-25 17:54:57 -07002603 &tbl_type, &rate_idx);
2604
Ben Cahill77626352007-11-29 11:09:44 +08002605 /* How many times should we repeat the initial rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002606 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002607 ant_toggle_cnt = 1;
Zhu Yi1b696de2007-09-27 11:27:41 +08002608 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002609 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002610 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002611 }
Zhu Yib481de92007-09-25 17:54:57 -07002612
2613 lq_cmd->general_params.mimo_delimiter =
2614 is_mimo(tbl_type.lq_type) ? 1 : 0;
Ben Cahill77626352007-11-29 11:09:44 +08002615
2616 /* Fill 1st table entry (index 0) */
Guy Cohen39e88502008-04-23 17:14:57 -07002617 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002618
Guy Cohen07bc28e2008-04-23 17:15:03 -07002619 if (num_of_ant(tbl_type.ant_type) == 1) {
2620 lq_cmd->general_params.single_stream_ant_msk =
2621 tbl_type.ant_type;
2622 } else if (num_of_ant(tbl_type.ant_type) == 2) {
2623 lq_cmd->general_params.dual_stream_ant_msk =
2624 tbl_type.ant_type;
2625 } /* otherwise we don't modify the existing value */
Zhu Yib481de92007-09-25 17:54:57 -07002626
2627 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002628 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002629
Guy Cohenaade00c2008-04-23 17:14:59 -07002630 if (priv)
2631 valid_tx_ant = priv->hw_params.valid_tx_ant;
2632
Ben Cahill77626352007-11-29 11:09:44 +08002633 /* Fill rest of rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002634 while (index < LINK_QUAL_MAX_RETRY_NUM) {
Ben Cahill77626352007-11-29 11:09:44 +08002635 /* Repeat initial/next rate.
2636 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2637 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
Zhu Yi1b696de2007-09-27 11:27:41 +08002638 while (repeat_rate > 0 && (index < LINK_QUAL_MAX_RETRY_NUM)) {
Zhu Yib481de92007-09-25 17:54:57 -07002639 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002640 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2641 ant_toggle_cnt++;
2642 else if (priv &&
2643 rs_toggle_antenna(valid_tx_ant,
2644 &new_rate, &tbl_type))
2645 ant_toggle_cnt = 1;
2646}
Zhu Yi98d7e092007-09-27 11:27:42 +08002647
Ben Cahill77626352007-11-29 11:09:44 +08002648 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002649 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002650
2651 /* Fill next table entry */
Zhu Yib481de92007-09-25 17:54:57 -07002652 lq_cmd->rs_table[index].rate_n_flags =
Guy Cohen39e88502008-04-23 17:14:57 -07002653 cpu_to_le32(new_rate);
Zhu Yi1b696de2007-09-27 11:27:41 +08002654 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002655 index++;
2656 }
2657
Guy Cohen39e88502008-04-23 17:14:57 -07002658 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
Zhu Yib481de92007-09-25 17:54:57 -07002659 &rate_idx);
2660
Ben Cahill77626352007-11-29 11:09:44 +08002661 /* Indicate to uCode which entries might be MIMO.
2662 * If initial rate was MIMO, this will finally end up
2663 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Zhu Yib481de92007-09-25 17:54:57 -07002664 if (is_mimo(tbl_type.lq_type))
2665 lq_cmd->general_params.mimo_delimiter = index;
2666
Ben Cahill77626352007-11-29 11:09:44 +08002667 /* Get next rate */
Guy Cohen39e88502008-04-23 17:14:57 -07002668 new_rate = rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2669 use_ht_possible);
Zhu Yib481de92007-09-25 17:54:57 -07002670
Ben Cahill77626352007-11-29 11:09:44 +08002671 /* How many times should we repeat the next rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002672 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002673 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2674 ant_toggle_cnt++;
2675 else if (priv &&
2676 rs_toggle_antenna(valid_tx_ant,
2677 &new_rate, &tbl_type))
2678 ant_toggle_cnt = 1;
2679
Zhu Yi1b696de2007-09-27 11:27:41 +08002680 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002681 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002682 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002683 }
Zhu Yib481de92007-09-25 17:54:57 -07002684
Ben Cahill77626352007-11-29 11:09:44 +08002685 /* Don't allow HT rates after next pass.
2686 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Zhu Yib481de92007-09-25 17:54:57 -07002687 use_ht_possible = 0;
2688
Ben Cahill77626352007-11-29 11:09:44 +08002689 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002690 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002691
2692 /* Fill next table entry */
Guy Cohen39e88502008-04-23 17:14:57 -07002693 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002694
2695 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002696 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002697 }
2698
Wey-Yi Guy4d80d722009-10-02 13:44:01 -07002699 lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07002700 lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2701 lq_cmd->agg_params.agg_time_limit =
2702 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
Zhu Yib481de92007-09-25 17:54:57 -07002703}
2704
Johannes Berg4b7679a2008-09-18 18:14:18 +02002705static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Zhu Yib481de92007-09-25 17:54:57 -07002706{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002707 return hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002708}
2709/* rate scale requires free function to be implemented */
2710static void rs_free(void *priv_rate)
2711{
2712 return;
2713}
2714
Johannes Berg4b7679a2008-09-18 18:14:18 +02002715static void rs_free_sta(void *priv_r, struct ieee80211_sta *sta,
2716 void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002717{
Rami Rosen45527c22008-10-07 09:50:01 +02002718 struct iwl_priv *priv __maybe_unused = priv_r;
Zhu Yib481de92007-09-25 17:54:57 -07002719
Tomas Winklere1623442009-01-27 14:27:56 -08002720 IWL_DEBUG_RATE(priv, "enter\n");
Tomas Winklere1623442009-01-27 14:27:56 -08002721 IWL_DEBUG_RATE(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002722}
2723
2724
Zhu Yi93dc6462007-09-27 11:27:37 +08002725#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi5ae212c2007-09-27 11:27:38 +08002726static int open_file_generic(struct inode *inode, struct file *file)
2727{
2728 file->private_data = inode->i_private;
2729 return 0;
2730}
Tomas Winklere227cea2008-07-18 13:53:05 +08002731static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
2732 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +08002733{
Ester Kummerbf403db2008-05-05 10:22:40 +08002734 struct iwl_priv *priv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002735 u8 valid_tx_ant;
2736 u8 ant_sel_tx;
Ester Kummerbf403db2008-05-05 10:22:40 +08002737
2738 priv = lq_sta->drv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002739 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen39e88502008-04-23 17:14:57 -07002740 if (lq_sta->dbg_fixed_rate) {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002741 ant_sel_tx =
2742 ((lq_sta->dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK)
2743 >> RATE_MCS_ANT_POS);
2744 if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
Guy Cohen39e88502008-04-23 17:14:57 -07002745 *rate_n_flags = lq_sta->dbg_fixed_rate;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002746 IWL_DEBUG_RATE(priv, "Fixed rate ON\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002747 } else {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07002748 lq_sta->dbg_fixed_rate = 0;
2749 IWL_ERR(priv,
2750 "Invalid antenna selection 0x%X, Valid is 0x%X\n",
2751 ant_sel_tx, valid_tx_ant);
2752 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002753 }
Guy Cohen39e88502008-04-23 17:14:57 -07002754 } else {
Tomas Winklere1623442009-01-27 14:27:56 -08002755 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Zhu Yi98d7e092007-09-27 11:27:42 +08002756 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002757}
2758
2759static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
2760 const char __user *user_buf, size_t count, loff_t *ppos)
2761{
Tomas Winklere227cea2008-07-18 13:53:05 +08002762 struct iwl_lq_sta *lq_sta = file->private_data;
Ester Kummerbf403db2008-05-05 10:22:40 +08002763 struct iwl_priv *priv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002764 char buf[64];
2765 int buf_size;
2766 u32 parsed_rate;
2767
Ester Kummerbf403db2008-05-05 10:22:40 +08002768 priv = lq_sta->drv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002769 memset(buf, 0, sizeof(buf));
2770 buf_size = min(count, sizeof(buf) - 1);
2771 if (copy_from_user(buf, user_buf, buf_size))
2772 return -EFAULT;
2773
2774 if (sscanf(buf, "%x", &parsed_rate) == 1)
Guy Cohen39e88502008-04-23 17:14:57 -07002775 lq_sta->dbg_fixed_rate = parsed_rate;
Zhu Yi98d7e092007-09-27 11:27:42 +08002776 else
Guy Cohen39e88502008-04-23 17:14:57 -07002777 lq_sta->dbg_fixed_rate = 0;
Zhu Yi98d7e092007-09-27 11:27:42 +08002778
Guy Cohen39e88502008-04-23 17:14:57 -07002779 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
2780 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2781 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2782 lq_sta->active_mimo3_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Zhu Yi98d7e092007-09-27 11:27:42 +08002783
Tomas Winklere1623442009-01-27 14:27:56 -08002784 IWL_DEBUG_RATE(priv, "sta_id %d rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002785 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002786
Guy Cohen39e88502008-04-23 17:14:57 -07002787 if (lq_sta->dbg_fixed_rate) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002788 rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002789 iwl_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC, false);
Zhu Yi98d7e092007-09-27 11:27:42 +08002790 }
2791
2792 return count;
2793}
Zhu Yi0209dc12007-09-27 11:27:43 +08002794
Zhu Yi5ae212c2007-09-27 11:27:38 +08002795static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
2796 char __user *user_buf, size_t count, loff_t *ppos)
2797{
Frank Seidela412c802009-03-01 20:25:38 +01002798 char *buff;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002799 int desc = 0;
2800 int i = 0;
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002801 int index = 0;
Frank Seidela412c802009-03-01 20:25:38 +01002802 ssize_t ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002803
Tomas Winklere227cea2008-07-18 13:53:05 +08002804 struct iwl_lq_sta *lq_sta = file->private_data;
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002805 struct iwl_priv *priv;
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002806 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002807
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002808 priv = lq_sta->drv;
Frank Seidela412c802009-03-01 20:25:38 +01002809 buff = kmalloc(1024, GFP_KERNEL);
2810 if (!buff)
2811 return -ENOMEM;
2812
Tomas Winklerc33104f2008-01-14 17:46:21 -08002813 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
Zhu Yi98d7e092007-09-27 11:27:42 +08002814 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002815 lq_sta->total_failed, lq_sta->total_success,
Guy Cohen39e88502008-04-23 17:14:57 -07002816 lq_sta->active_legacy_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002817 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002818 lq_sta->dbg_fixed_rate);
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07002819 desc += sprintf(buff+desc, "valid_tx_ant %s%s%s\n",
2820 (priv->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
2821 (priv->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
2822 (priv->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002823 desc += sprintf(buff+desc, "lq type %s\n",
2824 (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
2825 if (is_Ht(tbl->lq_type)) {
2826 desc += sprintf(buff+desc, " %s",
2827 (is_siso(tbl->lq_type)) ? "SISO" :
2828 ((is_mimo2(tbl->lq_type)) ? "MIMO2" : "MIMO3"));
2829 desc += sprintf(buff+desc, " %s",
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002830 (tbl->is_ht40) ? "40MHz" : "20MHz");
Daniel C Halperine3949d62009-09-17 10:43:50 -07002831 desc += sprintf(buff+desc, " %s %s %s\n", (tbl->is_SGI) ? "SGI" : "",
2832 (lq_sta->is_green) ? "GF enabled" : "",
2833 (lq_sta->is_agg) ? "AGG on" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07002834 }
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002835 desc += sprintf(buff+desc, "last tx rate=0x%X\n",
2836 lq_sta->last_rate_n_flags);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002837 desc += sprintf(buff+desc, "general:"
2838 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002839 lq_sta->lq.general_params.flags,
2840 lq_sta->lq.general_params.mimo_delimiter,
2841 lq_sta->lq.general_params.single_stream_ant_msk,
2842 lq_sta->lq.general_params.dual_stream_ant_msk);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002843
2844 desc += sprintf(buff+desc, "agg:"
2845 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002846 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
2847 lq_sta->lq.agg_params.agg_dis_start_th,
2848 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002849
2850 desc += sprintf(buff+desc,
2851 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002852 lq_sta->lq.general_params.start_rate_index[0],
2853 lq_sta->lq.general_params.start_rate_index[1],
2854 lq_sta->lq.general_params.start_rate_index[2],
2855 lq_sta->lq.general_params.start_rate_index[3]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002856
Wey-Yi Guy12b96812009-04-08 11:39:27 -07002857 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
2858 index = iwl_hwrate_to_plcp_idx(
2859 le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags));
2860 if (is_legacy(tbl->lq_type)) {
2861 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps\n",
2862 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
2863 iwl_rate_mcs[index].mbps);
2864 } else {
2865 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps (%s)\n",
2866 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
2867 iwl_rate_mcs[index].mbps, iwl_rate_mcs[index].mcs);
2868 }
2869 }
Zhu Yi5ae212c2007-09-27 11:27:38 +08002870
Frank Seidela412c802009-03-01 20:25:38 +01002871 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2872 kfree(buff);
2873 return ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002874}
2875
2876static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Zhu Yi98d7e092007-09-27 11:27:42 +08002877 .write = rs_sta_dbgfs_scale_table_write,
Zhu Yi5ae212c2007-09-27 11:27:38 +08002878 .read = rs_sta_dbgfs_scale_table_read,
2879 .open = open_file_generic,
2880};
Zhu Yi0209dc12007-09-27 11:27:43 +08002881static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
2882 char __user *user_buf, size_t count, loff_t *ppos)
2883{
Frank Seidela412c802009-03-01 20:25:38 +01002884 char *buff;
Zhu Yi0209dc12007-09-27 11:27:43 +08002885 int desc = 0;
2886 int i, j;
Frank Seidela412c802009-03-01 20:25:38 +01002887 ssize_t ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08002888
Tomas Winklere227cea2008-07-18 13:53:05 +08002889 struct iwl_lq_sta *lq_sta = file->private_data;
Frank Seidela412c802009-03-01 20:25:38 +01002890
2891 buff = kmalloc(1024, GFP_KERNEL);
2892 if (!buff)
2893 return -ENOMEM;
2894
Zhu Yi0209dc12007-09-27 11:27:43 +08002895 for (i = 0; i < LQ_SIZE; i++) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002896 desc += sprintf(buff+desc,
2897 "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
Zhu Yi0209dc12007-09-27 11:27:43 +08002898 "rate=0x%X\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08002899 lq_sta->active_tbl == i ? "*" : "x",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002900 lq_sta->lq_info[i].lq_type,
2901 lq_sta->lq_info[i].is_SGI,
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002902 lq_sta->lq_info[i].is_ht40,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002903 lq_sta->lq_info[i].is_dup,
Wey-Yi Guy2681b202009-05-21 13:44:22 -07002904 lq_sta->is_green,
Guy Cohen39e88502008-04-23 17:14:57 -07002905 lq_sta->lq_info[i].current_rate);
Zhu Yi0209dc12007-09-27 11:27:43 +08002906 for (j = 0; j < IWL_RATE_COUNT; j++) {
2907 desc += sprintf(buff+desc,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002908 "counter=%d success=%d %%=%d\n",
2909 lq_sta->lq_info[i].win[j].counter,
2910 lq_sta->lq_info[i].win[j].success_counter,
2911 lq_sta->lq_info[i].win[j].success_ratio);
Zhu Yi0209dc12007-09-27 11:27:43 +08002912 }
2913 }
Frank Seidela412c802009-03-01 20:25:38 +01002914 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2915 kfree(buff);
2916 return ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08002917}
2918
2919static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
2920 .read = rs_sta_dbgfs_stats_table_read,
2921 .open = open_file_generic,
2922};
Zhu Yi5ae212c2007-09-27 11:27:38 +08002923
Wey-Yi Guy38167452009-05-08 13:44:43 -07002924static ssize_t rs_sta_dbgfs_rate_scale_data_read(struct file *file,
2925 char __user *user_buf, size_t count, loff_t *ppos)
2926{
2927 char buff[120];
2928 int desc = 0;
2929 ssize_t ret;
2930
2931 struct iwl_lq_sta *lq_sta = file->private_data;
2932 struct iwl_priv *priv;
2933 struct iwl_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
2934
2935 priv = lq_sta->drv;
2936
2937 if (is_Ht(tbl->lq_type))
2938 desc += sprintf(buff+desc,
2939 "Bit Rate= %d Mb/s\n",
2940 tbl->expected_tpt[lq_sta->last_txrate_idx]);
2941 else
2942 desc += sprintf(buff+desc,
2943 "Bit Rate= %d Mb/s\n",
2944 iwl_rates[lq_sta->last_txrate_idx].ieee >> 1);
Wey-Yi Guy38167452009-05-08 13:44:43 -07002945
2946 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2947 return ret;
2948}
2949
2950static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
2951 .read = rs_sta_dbgfs_rate_scale_data_read,
2952 .open = open_file_generic,
2953};
2954
Zhu Yi93dc6462007-09-27 11:27:37 +08002955static void rs_add_debugfs(void *priv, void *priv_sta,
2956 struct dentry *dir)
2957{
Tomas Winklere227cea2008-07-18 13:53:05 +08002958 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002959 lq_sta->rs_sta_dbgfs_scale_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002960 debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002961 lq_sta, &rs_sta_dbgfs_scale_table_ops);
2962 lq_sta->rs_sta_dbgfs_stats_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002963 debugfs_create_file("rate_stats_table", S_IRUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002964 lq_sta, &rs_sta_dbgfs_stats_table_ops);
Wey-Yi Guy38167452009-05-08 13:44:43 -07002965 lq_sta->rs_sta_dbgfs_rate_scale_data_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002966 debugfs_create_file("rate_scale_data", S_IRUSR, dir,
Wey-Yi Guy38167452009-05-08 13:44:43 -07002967 lq_sta, &rs_sta_dbgfs_rate_scale_data_ops);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002968 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08002969 debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002970 &lq_sta->tx_agg_tid_en);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002971
Zhu Yi93dc6462007-09-27 11:27:37 +08002972}
2973
2974static void rs_remove_debugfs(void *priv, void *priv_sta)
2975{
Tomas Winklere227cea2008-07-18 13:53:05 +08002976 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002977 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
2978 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
Wey-Yi Guy38167452009-05-08 13:44:43 -07002979 debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002980 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
Zhu Yi93dc6462007-09-27 11:27:37 +08002981}
2982#endif
2983
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002984/*
2985 * Initialization of rate scaling information is done by driver after
2986 * the station is added. Since mac80211 calls this function before a
2987 * station is added we ignore it.
2988 */
2989static void rs_rate_init_stub(void *priv_r, struct ieee80211_supported_band *sband,
2990 struct ieee80211_sta *sta, void *priv_sta)
2991{
2992}
Zhu Yib481de92007-09-25 17:54:57 -07002993static struct rate_control_ops rs_ops = {
2994 .module = NULL,
2995 .name = RS_NAME,
2996 .tx_status = rs_tx_status,
2997 .get_rate = rs_get_rate,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002998 .rate_init = rs_rate_init_stub,
Zhu Yib481de92007-09-25 17:54:57 -07002999 .alloc = rs_alloc,
3000 .free = rs_free,
3001 .alloc_sta = rs_alloc_sta,
3002 .free_sta = rs_free_sta,
Zhu Yi93dc6462007-09-27 11:27:37 +08003003#ifdef CONFIG_MAC80211_DEBUGFS
3004 .add_sta_debugfs = rs_add_debugfs,
3005 .remove_sta_debugfs = rs_remove_debugfs,
3006#endif
Zhu Yib481de92007-09-25 17:54:57 -07003007};
3008
Tomas Winklere227cea2008-07-18 13:53:05 +08003009int iwlagn_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -07003010{
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003011 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003012}
3013
Tomas Winklere227cea2008-07-18 13:53:05 +08003014void iwlagn_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -07003015{
3016 ieee80211_rate_control_unregister(&rs_ops);
3017}
3018