blob: f450adc723610c9b5136ce29817c57d2e47c9886 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre1f447802010-01-15 13:43:41 -08003 * Copyright(c) 2005 - 2010 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080022 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070023 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26#include <linux/kernel.h>
27#include <linux/init.h>
28#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/wireless.h>
31#include <net/mac80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070032
33#include <linux/netdevice.h>
34#include <linux/etherdevice.h>
35#include <linux/delay.h>
36
37#include <linux/workqueue.h>
38
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070039#include "iwl-dev.h"
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +080040#include "iwl-sta.h"
Tomas Winkler857485c2008-03-21 13:53:44 -070041#include "iwl-core.h"
Johannes Berga30e3112010-09-22 18:02:01 +020042#include "iwl-agn.h"
Zhu Yib481de92007-09-25 17:54:57 -070043
Tomas Winklere227cea2008-07-18 13:53:05 +080044#define RS_NAME "iwl-agn-rs"
Zhu Yib481de92007-09-25 17:54:57 -070045
Guy Cohenaade00c2008-04-23 17:14:59 -070046#define NUM_TRY_BEFORE_ANT_TOGGLE 1
Zhu Yib481de92007-09-25 17:54:57 -070047#define IWL_NUMBER_TRY 1
48#define IWL_HT_NUMBER_TRY 3
49
Ben Cahill77626352007-11-29 11:09:44 +080050#define IWL_RATE_MAX_WINDOW 62 /* # tx in history window */
51#define IWL_RATE_MIN_FAILURE_TH 6 /* min failures to calc tpt */
52#define IWL_RATE_MIN_SUCCESS_TH 8 /* min successes to calc tpt */
53
Abbas, Mohamed7d049e52009-01-20 21:33:53 -080054/* max allowed rate miss before sync LQ cmd */
55#define IWL_MISSED_RATE_MAX 15
Ben Cahill77626352007-11-29 11:09:44 +080056/* max time to accum history 2 seconds */
Mohamed Abbas447fee72009-04-20 14:37:02 -070057#define IWL_RATE_SCALE_FLUSH_INTVL (3*HZ)
Zhu Yib481de92007-09-25 17:54:57 -070058
59static u8 rs_ht_to_legacy[] = {
60 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
61 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
62 IWL_RATE_6M_INDEX,
63 IWL_RATE_6M_INDEX, IWL_RATE_9M_INDEX,
64 IWL_RATE_12M_INDEX, IWL_RATE_18M_INDEX,
65 IWL_RATE_24M_INDEX, IWL_RATE_36M_INDEX,
66 IWL_RATE_48M_INDEX, IWL_RATE_54M_INDEX
67};
68
Guy Cohenaade00c2008-04-23 17:14:59 -070069static const u8 ant_toggle_lookup[] = {
70 /*ANT_NONE -> */ ANT_NONE,
71 /*ANT_A -> */ ANT_B,
72 /*ANT_B -> */ ANT_C,
73 /*ANT_AB -> */ ANT_BC,
74 /*ANT_C -> */ ANT_A,
75 /*ANT_AC -> */ ANT_AB,
76 /*ANT_BC -> */ ANT_AC,
77 /*ANT_ABC -> */ ANT_ABC,
78};
79
Johannes Berg635b85b2010-09-22 18:02:04 +020080#define IWL_DECLARE_RATE_INFO(r, s, ip, in, rp, rn, pp, np) \
81 [IWL_RATE_##r##M_INDEX] = { IWL_RATE_##r##M_PLCP, \
82 IWL_RATE_SISO_##s##M_PLCP, \
83 IWL_RATE_MIMO2_##s##M_PLCP,\
84 IWL_RATE_MIMO3_##s##M_PLCP,\
85 IWL_RATE_##r##M_IEEE, \
86 IWL_RATE_##ip##M_INDEX, \
87 IWL_RATE_##in##M_INDEX, \
88 IWL_RATE_##rp##M_INDEX, \
89 IWL_RATE_##rn##M_INDEX, \
90 IWL_RATE_##pp##M_INDEX, \
91 IWL_RATE_##np##M_INDEX }
92
93/*
94 * Parameter order:
95 * rate, ht rate, prev rate, next rate, prev tgg rate, next tgg rate
96 *
97 * If there isn't a valid next or previous rate then INV is used which
98 * maps to IWL_RATE_INVALID
99 *
100 */
101const struct iwl_rate_info iwl_rates[IWL_RATE_COUNT] = {
102 IWL_DECLARE_RATE_INFO(1, INV, INV, 2, INV, 2, INV, 2), /* 1mbps */
103 IWL_DECLARE_RATE_INFO(2, INV, 1, 5, 1, 5, 1, 5), /* 2mbps */
104 IWL_DECLARE_RATE_INFO(5, INV, 2, 6, 2, 11, 2, 11), /*5.5mbps */
105 IWL_DECLARE_RATE_INFO(11, INV, 9, 12, 9, 12, 5, 18), /* 11mbps */
106 IWL_DECLARE_RATE_INFO(6, 6, 5, 9, 5, 11, 5, 11), /* 6mbps */
107 IWL_DECLARE_RATE_INFO(9, 6, 6, 11, 6, 11, 5, 11), /* 9mbps */
108 IWL_DECLARE_RATE_INFO(12, 12, 11, 18, 11, 18, 11, 18), /* 12mbps */
109 IWL_DECLARE_RATE_INFO(18, 18, 12, 24, 12, 24, 11, 24), /* 18mbps */
110 IWL_DECLARE_RATE_INFO(24, 24, 18, 36, 18, 36, 18, 36), /* 24mbps */
111 IWL_DECLARE_RATE_INFO(36, 36, 24, 48, 24, 48, 24, 48), /* 36mbps */
112 IWL_DECLARE_RATE_INFO(48, 48, 36, 54, 36, 54, 36, 54), /* 48mbps */
113 IWL_DECLARE_RATE_INFO(54, 54, 48, INV, 48, INV, 48, INV),/* 54mbps */
114 IWL_DECLARE_RATE_INFO(60, 60, 48, INV, 48, INV, 48, INV),/* 60mbps */
115 /* FIXME:RS: ^^ should be INV (legacy) */
116};
117
118static int iwl_hwrate_to_plcp_idx(u32 rate_n_flags)
119{
120 int idx = 0;
121
122 /* HT rate format */
123 if (rate_n_flags & RATE_MCS_HT_MSK) {
124 idx = (rate_n_flags & 0xff);
125
126 if (idx >= IWL_RATE_MIMO3_6M_PLCP)
127 idx = idx - IWL_RATE_MIMO3_6M_PLCP;
128 else if (idx >= IWL_RATE_MIMO2_6M_PLCP)
129 idx = idx - IWL_RATE_MIMO2_6M_PLCP;
130
131 idx += IWL_FIRST_OFDM_RATE;
132 /* skip 9M not supported in ht*/
133 if (idx >= IWL_RATE_9M_INDEX)
134 idx += 1;
135 if ((idx >= IWL_FIRST_OFDM_RATE) && (idx <= IWL_LAST_OFDM_RATE))
136 return idx;
137
138 /* legacy rate format, search for match in table */
139 } else {
140 for (idx = 0; idx < ARRAY_SIZE(iwl_rates); idx++)
141 if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF))
142 return idx;
143 }
144
145 return -1;
146}
147
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700148static void rs_rate_scale_perform(struct iwl_priv *priv,
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200149 struct sk_buff *skb,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200150 struct ieee80211_sta *sta,
151 struct iwl_lq_sta *lq_sta);
Wey-Yi Guy46f93812009-07-24 11:13:03 -0700152static void rs_fill_link_cmd(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +0800153 struct iwl_lq_sta *lq_sta, u32 rate_n_flags);
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -0700154static void rs_stay_in_table(struct iwl_lq_sta *lq_sta, bool force_search);
Zhu Yib481de92007-09-25 17:54:57 -0700155
156
Zhu Yi98d7e092007-09-27 11:27:42 +0800157#ifdef CONFIG_MAC80211_DEBUGFS
Tomas Winklere227cea2008-07-18 13:53:05 +0800158static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
159 u32 *rate_n_flags, int index);
Zhu Yi98d7e092007-09-27 11:27:42 +0800160#else
Tomas Winklere227cea2008-07-18 13:53:05 +0800161static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
162 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +0800163{}
164#endif
Ben Cahill77626352007-11-29 11:09:44 +0800165
Daniel C Halperine3949d62009-09-17 10:43:50 -0700166/**
167 * The following tables contain the expected throughput metrics for all rates
168 *
169 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
170 *
171 * where invalid entries are zeros.
172 *
173 * CCK rates are only valid in legacy table and will only be used in G
174 * (2.4 GHz) band.
Ben Cahill77626352007-11-29 11:09:44 +0800175 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -0700176
Daniel C Halperine3949d62009-09-17 10:43:50 -0700177static s32 expected_tpt_legacy[IWL_RATE_COUNT] = {
178 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0
Zhu Yib481de92007-09-25 17:54:57 -0700179};
180
Daniel C Halperine3949d62009-09-17 10:43:50 -0700181static s32 expected_tpt_siso20MHz[4][IWL_RATE_COUNT] = {
182 {0, 0, 0, 0, 42, 0, 76, 102, 124, 158, 183, 193, 202}, /* Norm */
183 {0, 0, 0, 0, 46, 0, 82, 110, 132, 167, 192, 202, 210}, /* SGI */
184 {0, 0, 0, 0, 48, 0, 93, 135, 176, 251, 319, 351, 381}, /* AGG */
185 {0, 0, 0, 0, 53, 0, 102, 149, 193, 275, 348, 381, 413}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700186};
187
Daniel C Halperine3949d62009-09-17 10:43:50 -0700188static s32 expected_tpt_siso40MHz[4][IWL_RATE_COUNT] = {
189 {0, 0, 0, 0, 77, 0, 127, 160, 184, 220, 242, 250, 257}, /* Norm */
190 {0, 0, 0, 0, 83, 0, 135, 169, 193, 229, 250, 257, 264}, /* SGI */
191 {0, 0, 0, 0, 96, 0, 182, 259, 328, 451, 553, 598, 640}, /* AGG */
192 {0, 0, 0, 0, 106, 0, 199, 282, 357, 487, 593, 640, 683}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700193};
194
Daniel C Halperine3949d62009-09-17 10:43:50 -0700195static s32 expected_tpt_mimo2_20MHz[4][IWL_RATE_COUNT] = {
196 {0, 0, 0, 0, 74, 0, 123, 155, 179, 213, 235, 243, 250}, /* Norm */
197 {0, 0, 0, 0, 81, 0, 131, 164, 187, 221, 242, 250, 256}, /* SGI */
198 {0, 0, 0, 0, 92, 0, 175, 250, 317, 436, 534, 578, 619}, /* AGG */
199 {0, 0, 0, 0, 102, 0, 192, 273, 344, 470, 573, 619, 660}, /* AGG+SGI*/
Zhu Yib481de92007-09-25 17:54:57 -0700200};
201
Daniel C Halperine3949d62009-09-17 10:43:50 -0700202static s32 expected_tpt_mimo2_40MHz[4][IWL_RATE_COUNT] = {
203 {0, 0, 0, 0, 123, 0, 182, 214, 235, 264, 279, 285, 289}, /* Norm */
204 {0, 0, 0, 0, 131, 0, 191, 222, 242, 270, 284, 289, 293}, /* SGI */
205 {0, 0, 0, 0, 180, 0, 327, 446, 545, 708, 828, 878, 922}, /* AGG */
206 {0, 0, 0, 0, 197, 0, 355, 481, 584, 752, 872, 922, 966}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700207};
208
Daniel C Halperine3949d62009-09-17 10:43:50 -0700209static s32 expected_tpt_mimo3_20MHz[4][IWL_RATE_COUNT] = {
210 {0, 0, 0, 0, 99, 0, 153, 186, 208, 239, 256, 263, 268}, /* Norm */
211 {0, 0, 0, 0, 106, 0, 162, 194, 215, 246, 262, 268, 273}, /* SGI */
212 {0, 0, 0, 0, 134, 0, 249, 346, 431, 574, 685, 732, 775}, /* AGG */
213 {0, 0, 0, 0, 148, 0, 272, 376, 465, 614, 727, 775, 818}, /* AGG+SGI */
Zhu Yib481de92007-09-25 17:54:57 -0700214};
215
Daniel C Halperine3949d62009-09-17 10:43:50 -0700216static s32 expected_tpt_mimo3_40MHz[4][IWL_RATE_COUNT] = {
217 {0, 0, 0, 0, 152, 0, 211, 239, 255, 279, 290, 294, 297}, /* Norm */
218 {0, 0, 0, 0, 160, 0, 219, 245, 261, 284, 294, 297, 300}, /* SGI */
219 {0, 0, 0, 0, 254, 0, 443, 584, 695, 868, 984, 1030, 1070}, /* AGG */
220 {0, 0, 0, 0, 277, 0, 478, 624, 737, 911, 1026, 1070, 1109}, /* AGG+SGI */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -0700221};
222
Wey-Yi Guy12b96812009-04-08 11:39:27 -0700223/* mbps, mcs */
Tobias Klauser79496732009-12-23 14:18:11 +0100224static const struct iwl_rate_mcs_info iwl_rate_mcs[IWL_RATE_COUNT] = {
Daniel C Halperine3949d62009-09-17 10:43:50 -0700225 { "1", "BPSK DSSS"},
226 { "2", "QPSK DSSS"},
227 {"5.5", "BPSK CCK"},
228 { "11", "QPSK CCK"},
229 { "6", "BPSK 1/2"},
230 { "9", "BPSK 1/2"},
231 { "12", "QPSK 1/2"},
232 { "18", "QPSK 3/4"},
233 { "24", "16QAM 1/2"},
234 { "36", "16QAM 3/4"},
235 { "48", "64QAM 2/3"},
236 { "54", "64QAM 3/4"},
237 { "60", "64QAM 5/6"},
Wey-Yi Guy12b96812009-04-08 11:39:27 -0700238};
239
Wey-Yi Guya9c146b2009-05-22 11:01:48 -0700240#define MCS_INDEX_PER_STREAM (8)
241
Guy Cohen39e88502008-04-23 17:14:57 -0700242static inline u8 rs_extract_rate(u32 rate_n_flags)
Zhu Yib481de92007-09-25 17:54:57 -0700243{
244 return (u8)(rate_n_flags & 0xFF);
245}
246
Tomas Winklere227cea2008-07-18 13:53:05 +0800247static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window)
Zhu Yib481de92007-09-25 17:54:57 -0700248{
249 window->data = 0;
250 window->success_counter = 0;
251 window->success_ratio = IWL_INVALID_VALUE;
252 window->counter = 0;
253 window->average_tpt = IWL_INVALID_VALUE;
254 window->stamp = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700255}
256
Guy Cohenaade00c2008-04-23 17:14:59 -0700257static inline u8 rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
258{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300259 return (ant_type & valid_antenna) == ant_type;
Guy Cohenaade00c2008-04-23 17:14:59 -0700260}
261
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200262/*
263 * removes the old data from the statistics. All data that is older than
264 * TID_MAX_TIME_DIFF, will be deleted.
265 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800266static void rs_tl_rm_old_stats(struct iwl_traffic_load *tl, u32 curr_time)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200267{
268 /* The oldest age we want to keep */
269 u32 oldest_time = curr_time - TID_MAX_TIME_DIFF;
270
271 while (tl->queue_count &&
272 (tl->time_stamp < oldest_time)) {
273 tl->total -= tl->packet_count[tl->head];
274 tl->packet_count[tl->head] = 0;
275 tl->time_stamp += TID_QUEUE_CELL_SPACING;
276 tl->queue_count--;
277 tl->head++;
278 if (tl->head >= TID_QUEUE_MAX_SIZE)
279 tl->head = 0;
280 }
281}
282
283/*
284 * increment traffic load value for tid and also remove
285 * any old values if passed the certain time period
286 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800287static u8 rs_tl_add_packet(struct iwl_lq_sta *lq_data,
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800288 struct ieee80211_hdr *hdr)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200289{
290 u32 curr_time = jiffies_to_msecs(jiffies);
291 u32 time_diff;
292 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800293 struct iwl_traffic_load *tl = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800294 u8 tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200295
Tomas Winkler417f1142008-11-12 13:14:06 -0800296 if (ieee80211_is_data_qos(hdr->frame_control)) {
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700297 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +0800298 tid = qc[0] & 0xf;
299 } else
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800300 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200301
Reinette Chatree6a6cf42009-08-13 13:30:50 -0700302 if (unlikely(tid >= TID_MAX_LOAD_COUNT))
303 return MAX_TID_COUNT;
304
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200305 tl = &lq_data->load[tid];
306
307 curr_time -= curr_time % TID_ROUND_VALUE;
308
309 /* Happens only for the first packet. Initialize the data */
310 if (!(tl->queue_count)) {
311 tl->total = 1;
312 tl->time_stamp = curr_time;
313 tl->queue_count = 1;
314 tl->head = 0;
315 tl->packet_count[0] = 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800316 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200317 }
318
319 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
320 index = time_diff / TID_QUEUE_CELL_SPACING;
321
322 /* The history is too long: remove data that is older than */
323 /* TID_MAX_TIME_DIFF */
324 if (index >= TID_QUEUE_MAX_SIZE)
325 rs_tl_rm_old_stats(tl, curr_time);
326
327 index = (tl->head + index) % TID_QUEUE_MAX_SIZE;
328 tl->packet_count[index] = tl->packet_count[index] + 1;
329 tl->total = tl->total + 1;
330
331 if ((index + 1) > tl->queue_count)
332 tl->queue_count = index + 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800333
334 return tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200335}
336
337/*
338 get the traffic load value for tid
339*/
Tomas Winklere227cea2008-07-18 13:53:05 +0800340static u32 rs_tl_get_load(struct iwl_lq_sta *lq_data, u8 tid)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200341{
342 u32 curr_time = jiffies_to_msecs(jiffies);
343 u32 time_diff;
344 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800345 struct iwl_traffic_load *tl = NULL;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200346
347 if (tid >= TID_MAX_LOAD_COUNT)
348 return 0;
349
350 tl = &(lq_data->load[tid]);
351
352 curr_time -= curr_time % TID_ROUND_VALUE;
353
354 if (!(tl->queue_count))
355 return 0;
356
357 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
358 index = time_diff / TID_QUEUE_CELL_SPACING;
359
360 /* The history is too long: remove data that is older than */
361 /* TID_MAX_TIME_DIFF */
362 if (index >= TID_QUEUE_MAX_SIZE)
363 rs_tl_rm_old_stats(tl, curr_time);
364
365 return tl->total;
366}
367
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700368static int rs_tl_turn_on_agg_for_tid(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +0800369 struct iwl_lq_sta *lq_data, u8 tid,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200370 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200371{
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700372 int ret = -EAGAIN;
Johannes Berg290f5992010-08-23 07:56:58 -0700373 u32 load;
374
375 /*
376 * Don't create TX aggregation sessions when in high
377 * BT traffic, as they would just be disrupted by BT.
378 */
379 if (priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH) {
380 IWL_ERR(priv, "BT traffic (%d), no aggregation allowed\n",
381 priv->bt_traffic_load);
382 return ret;
383 }
384
385 load = rs_tl_get_load(lq_data, tid);
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800386
Andy Lutomirski24110542010-07-25 13:14:29 -0400387 if (load > IWL_AGG_LOAD_THRESHOLD) {
Tomas Winklere1623442009-01-27 14:27:56 -0800388 IWL_DEBUG_HT(priv, "Starting Tx agg: STA: %pM tid: %d\n",
Johannes Berge1749612008-10-27 15:59:26 -0700389 sta->addr, tid);
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800390 ret = ieee80211_start_tx_ba_session(sta, tid);
391 if (ret == -EAGAIN) {
392 /*
393 * driver and mac80211 is out of sync
394 * this might be cause by reloading firmware
395 * stop the tx ba session here
396 */
Andy Lutomirski24110542010-07-25 13:14:29 -0400397 IWL_ERR(priv, "Fail start Tx agg on tid: %d\n",
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800398 tid);
Johannes Berg6a8579d2010-05-27 14:41:07 +0200399 ieee80211_stop_tx_ba_session(sta, tid);
Wey-Yi Guy45d42702010-02-03 12:24:44 -0800400 }
Andy Lutomirski24110542010-07-25 13:14:29 -0400401 } else {
402 IWL_ERR(priv, "Aggregation not enabled for tid %d "
403 "because load = %u\n", tid, load);
404 }
Wey-Yi Guy82ca9342010-04-12 14:02:36 -0700405 return ret;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200406}
407
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700408static void rs_tl_turn_on_agg(struct iwl_priv *priv, u8 tid,
Tomas Winklere227cea2008-07-18 13:53:05 +0800409 struct iwl_lq_sta *lq_data,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200410 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200411{
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -0700412 if (tid < TID_MAX_LOAD_COUNT)
413 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
414 else
415 IWL_ERR(priv, "tid exceeds max load count: %d/%d\n",
416 tid, TID_MAX_LOAD_COUNT);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200417}
418
Guy Cohen39e88502008-04-23 17:14:57 -0700419static inline int get_num_of_ant_from_rate(u32 rate_n_flags)
Guy Cohenfde0db32008-04-21 15:42:01 -0700420{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300421 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
422 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
423 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
Guy Cohenfde0db32008-04-21 15:42:01 -0700424}
425
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700426/*
427 * Static function to get the expected throughput from an iwl_scale_tbl_info
428 * that wraps a NULL pointer check
429 */
430static s32 get_expected_tpt(struct iwl_scale_tbl_info *tbl, int rs_index)
431{
432 if (tbl->expected_tpt)
433 return tbl->expected_tpt[rs_index];
434 return 0;
435}
436
Ben Cahill77626352007-11-29 11:09:44 +0800437/**
438 * rs_collect_tx_data - Update the success/failure sliding window
439 *
440 * We keep a sliding window of the last 62 packets transmitted
441 * at this rate. window->data contains the bitmask of successful
442 * packets.
443 */
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700444static int rs_collect_tx_data(struct iwl_scale_tbl_info *tbl,
445 int scale_index, int attempts, int successes)
Zhu Yib481de92007-09-25 17:54:57 -0700446{
Tomas Winklere227cea2008-07-18 13:53:05 +0800447 struct iwl_rate_scale_data *window = NULL;
Guy Cohen39e88502008-04-23 17:14:57 -0700448 static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1));
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700449 s32 fail_count, tpt;
Zhu Yib481de92007-09-25 17:54:57 -0700450
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800451 if (scale_index < 0 || scale_index >= IWL_RATE_COUNT)
452 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700453
Daniel C Halperine3949d62009-09-17 10:43:50 -0700454 /* Select window for current tx bit rate */
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700455 window = &(tbl->win[scale_index]);
456
457 /* Get expected throughput */
458 tpt = get_expected_tpt(tbl, scale_index);
Zhu Yib481de92007-09-25 17:54:57 -0700459
Ben Cahill77626352007-11-29 11:09:44 +0800460 /*
461 * Keep track of only the latest 62 tx frame attempts in this rate's
462 * history window; anything older isn't really relevant any more.
463 * If we have filled up the sliding window, drop the oldest attempt;
464 * if the oldest attempt (highest bit in bitmap) shows "success",
465 * subtract "1" from the success counter (this is the main reason
466 * we keep these bitmaps!).
467 */
Daniel C Halperine3949d62009-09-17 10:43:50 -0700468 while (attempts > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700469 if (window->counter >= IWL_RATE_MAX_WINDOW) {
470
471 /* remove earliest */
472 window->counter = IWL_RATE_MAX_WINDOW - 1;
473
Ron Rindjunsky99556432008-01-28 14:07:25 +0200474 if (window->data & mask) {
475 window->data &= ~mask;
Guy Cohen39e88502008-04-23 17:14:57 -0700476 window->success_counter--;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200477 }
Zhu Yib481de92007-09-25 17:54:57 -0700478 }
Zhu Yib481de92007-09-25 17:54:57 -0700479
Ron Rindjunsky99556432008-01-28 14:07:25 +0200480 /* Increment frames-attempted counter */
481 window->counter++;
Ben Cahill77626352007-11-29 11:09:44 +0800482
Daniel C Halperine3949d62009-09-17 10:43:50 -0700483 /* Shift bitmap by one frame to throw away oldest history */
Guy Cohen90d77952008-09-09 10:54:53 +0800484 window->data <<= 1;
Daniel C Halperine3949d62009-09-17 10:43:50 -0700485
486 /* Mark the most recent #successes attempts as successful */
Ron Rindjunsky99556432008-01-28 14:07:25 +0200487 if (successes > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700488 window->success_counter++;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200489 window->data |= 0x1;
490 successes--;
491 }
492
Daniel C Halperine3949d62009-09-17 10:43:50 -0700493 attempts--;
Zhu Yib481de92007-09-25 17:54:57 -0700494 }
495
Ben Cahill77626352007-11-29 11:09:44 +0800496 /* Calculate current success ratio, avoid divide-by-0! */
Zhu Yib481de92007-09-25 17:54:57 -0700497 if (window->counter > 0)
498 window->success_ratio = 128 * (100 * window->success_counter)
499 / window->counter;
500 else
501 window->success_ratio = IWL_INVALID_VALUE;
502
503 fail_count = window->counter - window->success_counter;
504
Ben Cahill77626352007-11-29 11:09:44 +0800505 /* Calculate average throughput, if we have enough history. */
Zhu Yib481de92007-09-25 17:54:57 -0700506 if ((fail_count >= IWL_RATE_MIN_FAILURE_TH) ||
507 (window->success_counter >= IWL_RATE_MIN_SUCCESS_TH))
508 window->average_tpt = (window->success_ratio * tpt + 64) / 128;
509 else
510 window->average_tpt = IWL_INVALID_VALUE;
511
Ben Cahill77626352007-11-29 11:09:44 +0800512 /* Tag this window as having been updated */
Zhu Yib481de92007-09-25 17:54:57 -0700513 window->stamp = jiffies;
514
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800515 return 0;
Zhu Yib481de92007-09-25 17:54:57 -0700516}
517
Ben Cahill77626352007-11-29 11:09:44 +0800518/*
519 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
520 */
Guy Cohen39e88502008-04-23 17:14:57 -0700521/* FIXME:RS:remove this function and put the flags statically in the table */
Tomas Winkler978785a2008-12-19 10:37:31 +0800522static u32 rate_n_flags_from_tbl(struct iwl_priv *priv,
523 struct iwl_scale_tbl_info *tbl,
524 int index, u8 use_green)
Zhu Yib481de92007-09-25 17:54:57 -0700525{
Guy Cohen39e88502008-04-23 17:14:57 -0700526 u32 rate_n_flags = 0;
527
Zhu Yib481de92007-09-25 17:54:57 -0700528 if (is_legacy(tbl->lq_type)) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800529 rate_n_flags = iwl_rates[index].plcp;
Zhu Yib481de92007-09-25 17:54:57 -0700530 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -0700531 rate_n_flags |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700532
Guy Cohenfde0db32008-04-21 15:42:01 -0700533 } else if (is_Ht(tbl->lq_type)) {
534 if (index > IWL_LAST_OFDM_RATE) {
Tomas Winkler978785a2008-12-19 10:37:31 +0800535 IWL_ERR(priv, "Invalid HT rate index %d\n", index);
Zhu Yib481de92007-09-25 17:54:57 -0700536 index = IWL_LAST_OFDM_RATE;
Guy Cohenfde0db32008-04-21 15:42:01 -0700537 }
Guy Cohen39e88502008-04-23 17:14:57 -0700538 rate_n_flags = RATE_MCS_HT_MSK;
Guy Cohenfde0db32008-04-21 15:42:01 -0700539
540 if (is_siso(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800541 rate_n_flags |= iwl_rates[index].plcp_siso;
Guy Cohenfde0db32008-04-21 15:42:01 -0700542 else if (is_mimo2(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800543 rate_n_flags |= iwl_rates[index].plcp_mimo2;
Guy Cohenfde0db32008-04-21 15:42:01 -0700544 else
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800545 rate_n_flags |= iwl_rates[index].plcp_mimo3;
Zhu Yib481de92007-09-25 17:54:57 -0700546 } else {
Tomas Winkler978785a2008-12-19 10:37:31 +0800547 IWL_ERR(priv, "Invalid tbl->lq_type %d\n", tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700548 }
549
Guy Cohen39e88502008-04-23 17:14:57 -0700550 rate_n_flags |= ((tbl->ant_type << RATE_MCS_ANT_POS) &
Guy Cohenfde0db32008-04-21 15:42:01 -0700551 RATE_MCS_ANT_ABC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700552
Guy Cohen39e88502008-04-23 17:14:57 -0700553 if (is_Ht(tbl->lq_type)) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700554 if (tbl->is_ht40) {
Guy Cohen39e88502008-04-23 17:14:57 -0700555 if (tbl->is_dup)
556 rate_n_flags |= RATE_MCS_DUP_MSK;
557 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700558 rate_n_flags |= RATE_MCS_HT40_MSK;
Guy Cohen39e88502008-04-23 17:14:57 -0700559 }
560 if (tbl->is_SGI)
561 rate_n_flags |= RATE_MCS_SGI_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700562
Guy Cohen39e88502008-04-23 17:14:57 -0700563 if (use_green) {
564 rate_n_flags |= RATE_MCS_GF_MSK;
565 if (is_siso(tbl->lq_type) && tbl->is_SGI) {
566 rate_n_flags &= ~RATE_MCS_SGI_MSK;
Tomas Winkler978785a2008-12-19 10:37:31 +0800567 IWL_ERR(priv, "GF was set with SGI:SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -0700568 }
569 }
Zhu Yib481de92007-09-25 17:54:57 -0700570 }
Guy Cohen39e88502008-04-23 17:14:57 -0700571 return rate_n_flags;
Zhu Yib481de92007-09-25 17:54:57 -0700572}
573
Ben Cahill77626352007-11-29 11:09:44 +0800574/*
575 * Interpret uCode API's rate_n_flags format,
576 * fill "search" or "active" tx mode table.
577 */
Guy Cohen39e88502008-04-23 17:14:57 -0700578static int rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
Johannes Berg8318d782008-01-24 19:38:38 +0100579 enum ieee80211_band band,
Tomas Winklere227cea2008-07-18 13:53:05 +0800580 struct iwl_scale_tbl_info *tbl,
Zhu Yib481de92007-09-25 17:54:57 -0700581 int *rate_idx)
582{
Guy Cohen39e88502008-04-23 17:14:57 -0700583 u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
584 u8 num_of_ant = get_num_of_ant_from_rate(rate_n_flags);
585 u8 mcs;
Zhu Yib481de92007-09-25 17:54:57 -0700586
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700587 memset(tbl, 0, sizeof(struct iwl_scale_tbl_info));
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800588 *rate_idx = iwl_hwrate_to_plcp_idx(rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700589
Guy Cohenfde0db32008-04-21 15:42:01 -0700590 if (*rate_idx == IWL_RATE_INVALID) {
Zhu Yib481de92007-09-25 17:54:57 -0700591 *rate_idx = -1;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800592 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700593 }
Ben Cahill77626352007-11-29 11:09:44 +0800594 tbl->is_SGI = 0; /* default legacy setup */
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700595 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700596 tbl->is_dup = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -0700597 tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
598 tbl->lq_type = LQ_NONE;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700599 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700600
Ben Cahill77626352007-11-29 11:09:44 +0800601 /* legacy rate format */
Guy Cohen39e88502008-04-23 17:14:57 -0700602 if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700603 if (num_of_ant == 1) {
Johannes Berg8318d782008-01-24 19:38:38 +0100604 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700605 tbl->lq_type = LQ_A;
606 else
607 tbl->lq_type = LQ_G;
Zhu Yib481de92007-09-25 17:54:57 -0700608 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700609 /* HT rate format */
Zhu Yib481de92007-09-25 17:54:57 -0700610 } else {
Guy Cohen39e88502008-04-23 17:14:57 -0700611 if (rate_n_flags & RATE_MCS_SGI_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700612 tbl->is_SGI = 1;
613
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700614 if ((rate_n_flags & RATE_MCS_HT40_MSK) ||
Guy Cohen39e88502008-04-23 17:14:57 -0700615 (rate_n_flags & RATE_MCS_DUP_MSK))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700616 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -0700617
Guy Cohen39e88502008-04-23 17:14:57 -0700618 if (rate_n_flags & RATE_MCS_DUP_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700619 tbl->is_dup = 1;
Guy Cohenfde0db32008-04-21 15:42:01 -0700620
Guy Cohen39e88502008-04-23 17:14:57 -0700621 mcs = rs_extract_rate(rate_n_flags);
Guy Cohenfde0db32008-04-21 15:42:01 -0700622
Guy Cohen39e88502008-04-23 17:14:57 -0700623 /* SISO */
624 if (mcs <= IWL_RATE_SISO_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700625 if (num_of_ant == 1)
626 tbl->lq_type = LQ_SISO; /*else NONE*/
627 /* MIMO2 */
Guy Cohen39e88502008-04-23 17:14:57 -0700628 } else if (mcs <= IWL_RATE_MIMO2_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700629 if (num_of_ant == 2)
630 tbl->lq_type = LQ_MIMO2;
631 /* MIMO3 */
632 } else {
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700633 if (num_of_ant == 3) {
634 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Guy Cohenfde0db32008-04-21 15:42:01 -0700635 tbl->lq_type = LQ_MIMO3;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700636 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700637 }
Zhu Yib481de92007-09-25 17:54:57 -0700638 }
639 return 0;
640}
Guy Cohenaade00c2008-04-23 17:14:59 -0700641
642/* switch to another antenna/antennas and return 1 */
643/* if no other valid antenna found, return 0 */
644static int rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
Tomas Winklere227cea2008-07-18 13:53:05 +0800645 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700646{
Guy Cohenaade00c2008-04-23 17:14:59 -0700647 u8 new_ant_type;
648
649 if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
650 return 0;
651
652 if (!rs_is_valid_ant(valid_ant, tbl->ant_type))
653 return 0;
654
655 new_ant_type = ant_toggle_lookup[tbl->ant_type];
656
657 while ((new_ant_type != tbl->ant_type) &&
658 !rs_is_valid_ant(valid_ant, new_ant_type))
659 new_ant_type = ant_toggle_lookup[new_ant_type];
660
661 if (new_ant_type == tbl->ant_type)
662 return 0;
663
664 tbl->ant_type = new_ant_type;
665 *rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
666 *rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
667 return 1;
Zhu Yib481de92007-09-25 17:54:57 -0700668}
669
Daniel C Halperinb2617932009-08-13 13:30:59 -0700670/**
671 * Green-field mode is valid if the station supports it and
672 * there are no non-GF stations present in the BSS.
673 */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200674static bool rs_use_green(struct ieee80211_sta *sta)
Zhu Yib481de92007-09-25 17:54:57 -0700675{
Johannes Berg7e6a5882010-08-23 10:46:46 +0200676 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
677 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
678
Daniel C Halperinb2617932009-08-13 13:30:59 -0700679 return (sta->ht_cap.cap & IEEE80211_HT_CAP_GRN_FLD) &&
Johannes Berg7e6a5882010-08-23 10:46:46 +0200680 !(ctx->ht.non_gf_sta_present);
Guy Cohenf935a6d2008-04-23 17:15:02 -0700681}
Zhu Yib481de92007-09-25 17:54:57 -0700682
683/**
684 * rs_get_supported_rates - get the available rates
685 *
686 * if management frame or broadcast frame only return
687 * basic available rates.
688 *
689 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800690static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
691 struct ieee80211_hdr *hdr,
692 enum iwl_table_type rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700693{
Guy Coheneecd6e52008-04-23 17:14:58 -0700694 if (is_legacy(rate_type)) {
695 return lq_sta->active_legacy_rate;
696 } else {
697 if (is_siso(rate_type))
698 return lq_sta->active_siso_rate;
699 else if (is_mimo2(rate_type))
700 return lq_sta->active_mimo2_rate;
701 else
702 return lq_sta->active_mimo3_rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800703 }
Zhu Yib481de92007-09-25 17:54:57 -0700704}
705
Ester Kummerbf403db2008-05-05 10:22:40 +0800706static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
707 int rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700708{
709 u8 high = IWL_RATE_INVALID;
710 u8 low = IWL_RATE_INVALID;
711
Ian Schram01ebd062007-10-25 17:15:22 +0800712 /* 802.11A or ht walks to the next literal adjacent rate in
Zhu Yib481de92007-09-25 17:54:57 -0700713 * the rate table */
714 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
715 int i;
716 u32 mask;
717
718 /* Find the previous rate that is in the rate mask */
719 i = index - 1;
720 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
721 if (rate_mask & mask) {
722 low = i;
723 break;
724 }
725 }
726
727 /* Find the next rate that is in the rate mask */
728 i = index + 1;
729 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
730 if (rate_mask & mask) {
731 high = i;
732 break;
733 }
734 }
735
736 return (high << 8) | low;
737 }
738
739 low = index;
740 while (low != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800741 low = iwl_rates[low].prev_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700742 if (low == IWL_RATE_INVALID)
743 break;
744 if (rate_mask & (1 << low))
745 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800746 IWL_DEBUG_RATE(priv, "Skipping masked lower rate: %d\n", low);
Zhu Yib481de92007-09-25 17:54:57 -0700747 }
748
749 high = index;
750 while (high != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800751 high = iwl_rates[high].next_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700752 if (high == IWL_RATE_INVALID)
753 break;
754 if (rate_mask & (1 << high))
755 break;
Tomas Winklere1623442009-01-27 14:27:56 -0800756 IWL_DEBUG_RATE(priv, "Skipping masked higher rate: %d\n", high);
Zhu Yib481de92007-09-25 17:54:57 -0700757 }
758
759 return (high << 8) | low;
760}
761
Tomas Winklere227cea2008-07-18 13:53:05 +0800762static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta,
763 struct iwl_scale_tbl_info *tbl,
764 u8 scale_index, u8 ht_possible)
Zhu Yib481de92007-09-25 17:54:57 -0700765{
Zhu Yib481de92007-09-25 17:54:57 -0700766 s32 low;
767 u16 rate_mask;
768 u16 high_low;
769 u8 switch_to_legacy = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800770 u8 is_green = lq_sta->is_green;
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700771 struct iwl_priv *priv = lq_sta->drv;
Zhu Yib481de92007-09-25 17:54:57 -0700772
773 /* check if we need to switch from HT to legacy rates.
774 * assumption is that mandatory rates (1Mbps or 6Mbps)
775 * are always supported (spec demand) */
776 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_index)) {
777 switch_to_legacy = 1;
778 scale_index = rs_ht_to_legacy[scale_index];
Johannes Berg8318d782008-01-24 19:38:38 +0100779 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700780 tbl->lq_type = LQ_A;
781 else
782 tbl->lq_type = LQ_G;
783
Guy Cohen69fdb302008-04-23 17:15:01 -0700784 if (num_of_ant(tbl->ant_type) > 1)
Wey-Yi Guy2ff65782009-09-11 10:38:18 -0700785 tbl->ant_type =
786 first_antenna(priv->hw_params.valid_tx_ant);
Zhu Yib481de92007-09-25 17:54:57 -0700787
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700788 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700789 tbl->is_SGI = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -0700790 tbl->max_search = IWL_MAX_SEARCH;
Zhu Yib481de92007-09-25 17:54:57 -0700791 }
792
Guy Coheneecd6e52008-04-23 17:14:58 -0700793 rate_mask = rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700794
Ben Cahill77626352007-11-29 11:09:44 +0800795 /* Mask with station rate restriction */
Zhu Yib481de92007-09-25 17:54:57 -0700796 if (is_legacy(tbl->lq_type)) {
Ben Cahill77626352007-11-29 11:09:44 +0800797 /* supp_rates has no CCK bits in A mode */
Johannes Berg8318d782008-01-24 19:38:38 +0100798 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700799 rate_mask = (u16)(rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -0800800 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -0700801 else
Tomas Winklerc33104f2008-01-14 17:46:21 -0800802 rate_mask = (u16)(rate_mask & lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -0700803 }
804
Ben Cahill77626352007-11-29 11:09:44 +0800805 /* If we switched from HT to legacy, check current rate */
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800806 if (switch_to_legacy && (rate_mask & (1 << scale_index))) {
Guy Cohen39e88502008-04-23 17:14:57 -0700807 low = scale_index;
808 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700809 }
810
Ester Kummerbf403db2008-05-05 10:22:40 +0800811 high_low = rs_get_adjacent_rate(lq_sta->drv, scale_index, rate_mask,
812 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700813 low = high_low & 0xff;
814
Guy Cohen39e88502008-04-23 17:14:57 -0700815 if (low == IWL_RATE_INVALID)
816 low = scale_index;
817
818out:
Tomas Winkler978785a2008-12-19 10:37:31 +0800819 return rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
Zhu Yib481de92007-09-25 17:54:57 -0700820}
821
Ben Cahill77626352007-11-29 11:09:44 +0800822/*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700823 * Simple function to compare two rate scale table types
824 */
825static bool table_type_matches(struct iwl_scale_tbl_info *a,
826 struct iwl_scale_tbl_info *b)
827{
828 return (a->lq_type == b->lq_type) && (a->ant_type == b->ant_type) &&
829 (a->is_SGI == b->is_SGI);
830}
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700831
Johannes Berg7e6a5882010-08-23 10:46:46 +0200832static void rs_bt_update_lq(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
833 struct iwl_lq_sta *lq_sta)
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700834{
835 struct iwl_scale_tbl_info *tbl;
Wey-Yi Guy66e863a52010-11-08 14:54:37 -0800836 bool full_concurrent = priv->bt_full_concurrent;
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700837 unsigned long flags;
838
Wey-Yi Guy66e863a52010-11-08 14:54:37 -0800839 if (priv->bt_ant_couple_ok) {
840 /*
841 * Is there a need to switch between
842 * full concurrency and 3-wire?
843 */
844 spin_lock_irqsave(&priv->lock, flags);
845 if (priv->bt_ci_compliance && priv->bt_ant_couple_ok)
846 full_concurrent = true;
847 else
848 full_concurrent = false;
849 spin_unlock_irqrestore(&priv->lock, flags);
850 }
851 if ((priv->bt_traffic_load != priv->last_bt_traffic_load) ||
852 (priv->bt_full_concurrent != full_concurrent)) {
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700853 priv->bt_full_concurrent = full_concurrent;
854
855 /* Update uCode's rate table. */
856 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
857 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Johannes Berg7e6a5882010-08-23 10:46:46 +0200858 iwl_send_lq_cmd(priv, ctx, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700859
860 queue_work(priv->workqueue, &priv->bt_full_concurrency);
861 }
862}
863
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700864/*
Ben Cahill77626352007-11-29 11:09:44 +0800865 * mac80211 sends us Tx status
866 */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200867static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband,
868 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200869 struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700870{
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700871 int legacy_success;
872 int retries;
873 int rs_index, mac_index, i;
Tomas Winkler417f1142008-11-12 13:14:06 -0800874 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700875 struct iwl_link_quality_cmd *table;
Zhu Yib481de92007-09-25 17:54:57 -0700876 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200877 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
Johannes Berge039fa42008-05-15 12:55:29 +0200878 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Daniel C Halperin50273092009-08-28 09:44:45 -0700879 enum mac80211_rate_control_flags mac_flags;
Guy Cohen39e88502008-04-23 17:14:57 -0700880 u32 tx_rate;
Tomas Winklere227cea2008-07-18 13:53:05 +0800881 struct iwl_scale_tbl_info tbl_type;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700882 struct iwl_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
Johannes Berg7e6a5882010-08-23 10:46:46 +0200883 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
884 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Zhu Yib481de92007-09-25 17:54:57 -0700885
Tomas Winklere1623442009-01-27 14:27:56 -0800886 IWL_DEBUG_RATE_LIMIT(priv, "get frame ack response, update rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -0700887
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800888 /* Treat uninitialized rate scaling data same as non-existing. */
889 if (!lq_sta) {
890 IWL_DEBUG_RATE(priv, "Station rate scaling not created yet.\n");
891 return;
892 } else if (!lq_sta->drv) {
893 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
894 return;
895 }
896
Tomas Winkler417f1142008-11-12 13:14:06 -0800897 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +0200898 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -0700899 return;
900
Daniel C Halperine3949d62009-09-17 10:43:50 -0700901 /* This packet was aggregated but doesn't carry status info */
Johannes Berge039fa42008-05-15 12:55:29 +0200902 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
903 !(info->flags & IEEE80211_TX_STAT_AMPDU))
Ron Rindjunsky99556432008-01-28 14:07:25 +0200904 return;
905
Ben Cahill77626352007-11-29 11:09:44 +0800906 /*
907 * Ignore this Tx frame response if its initial rate doesn't match
908 * that of latest Link Quality command. There may be stragglers
909 * from a previous Link Quality command, but we're no longer interested
910 * in those; they're either from the "active" mode while we're trying
911 * to check "search" mode, or a prior "search" mode after we've moved
912 * to a new "search" mode (which might become the new "active" mode).
913 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700914 table = &lq_sta->lq;
Guy Cohen39e88502008-04-23 17:14:57 -0700915 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
916 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800917 if (priv->band == IEEE80211_BAND_5GHZ)
918 rs_index -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin50273092009-08-28 09:44:45 -0700919 mac_flags = info->status.rates[0].flags;
920 mac_index = info->status.rates[0].idx;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700921 /* For HT packets, map MCS to PLCP */
922 if (mac_flags & IEEE80211_TX_RC_MCS) {
923 mac_index &= RATE_MCS_CODE_MSK; /* Remove # of streams */
924 if (mac_index >= (IWL_RATE_9M_INDEX - IWL_FIRST_OFDM_RATE))
925 mac_index++;
Daniel C Halperin392a0ba2009-09-11 10:38:08 -0700926 /*
927 * mac80211 HT index is always zero-indexed; we need to move
928 * HT OFDM rates after CCK rates in 2.4 GHz band
929 */
930 if (priv->band == IEEE80211_BAND_2GHZ)
931 mac_index += IWL_FIRST_OFDM_RATE;
Daniel C Halperin31513be2009-08-28 09:44:47 -0700932 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700933 /* Here we actually compare this rate to the latest LQ command */
Daniel C Halperin50273092009-08-28 09:44:45 -0700934 if ((mac_index < 0) ||
935 (tbl_type.is_SGI != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI)) ||
936 (tbl_type.is_ht40 != !!(mac_flags & IEEE80211_TX_RC_40_MHZ_WIDTH)) ||
937 (tbl_type.is_dup != !!(mac_flags & IEEE80211_TX_RC_DUP_DATA)) ||
Johannes Berge6a98542008-10-21 12:40:02 +0200938 (tbl_type.ant_type != info->antenna_sel_tx) ||
Daniel C Halperin50273092009-08-28 09:44:45 -0700939 (!!(tx_rate & RATE_MCS_HT_MSK) != !!(mac_flags & IEEE80211_TX_RC_MCS)) ||
940 (!!(tx_rate & RATE_MCS_GF_MSK) != !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD)) ||
Daniel C Halperin31513be2009-08-28 09:44:47 -0700941 (rs_index != mac_index)) {
942 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 -0700943 /*
944 * Since rates mis-match, the last LQ command may have failed.
945 * After IWL_MISSED_RATE_MAX mis-matches, resync the uCode with
946 * ... driver.
Mohamed Abbasd5e49032008-12-12 08:22:15 -0800947 */
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800948 lq_sta->missed_rate_counter++;
949 if (lq_sta->missed_rate_counter > IWL_MISSED_RATE_MAX) {
950 lq_sta->missed_rate_counter = 0;
Johannes Berg7e6a5882010-08-23 10:46:46 +0200951 iwl_send_lq_cmd(priv, ctx, &lq_sta->lq, CMD_ASYNC, false);
Abbas, Mohamed7d049e52009-01-20 21:33:53 -0800952 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700953 /* Regardless, ignore this status info for outdated rate */
954 return;
955 } else
956 /* Rate did match, so reset the missed_rate_counter */
957 lq_sta->missed_rate_counter = 0;
958
959 /* Figure out if rate scale algorithm is in active or search table */
960 if (table_type_matches(&tbl_type,
961 &(lq_sta->lq_info[lq_sta->active_tbl]))) {
962 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
963 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
964 } else if (table_type_matches(&tbl_type,
965 &lq_sta->lq_info[1 - lq_sta->active_tbl])) {
966 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
967 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
968 } else {
969 IWL_DEBUG_RATE(priv, "Neither active nor search matches tx rate\n");
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700970 tmp_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
971 IWL_DEBUG_RATE(priv, "active- lq:%x, ant:%x, SGI:%d\n",
972 tmp_tbl->lq_type, tmp_tbl->ant_type, tmp_tbl->is_SGI);
973 tmp_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
974 IWL_DEBUG_RATE(priv, "search- lq:%x, ant:%x, SGI:%d\n",
975 tmp_tbl->lq_type, tmp_tbl->ant_type, tmp_tbl->is_SGI);
976 IWL_DEBUG_RATE(priv, "actual- lq:%x, ant:%x, SGI:%d\n",
977 tbl_type.lq_type, tbl_type.ant_type, tbl_type.is_SGI);
978 /*
979 * no matching table found, let's by-pass the data collection
980 * and continue to perform rate scale to find the rate table
981 */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -0700982 rs_stay_in_table(lq_sta, true);
Wey-Yi Guy80e91582010-08-03 08:23:32 -0700983 goto done;
Zhu Yib481de92007-09-25 17:54:57 -0700984 }
Zhu Yib481de92007-09-25 17:54:57 -0700985
Ben Cahill77626352007-11-29 11:09:44 +0800986 /*
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700987 * Updating the frame history depends on whether packets were
988 * aggregated.
989 *
990 * For aggregation, all packets were transmitted at the same rate, the
991 * first index into rate scale table.
Ben Cahill77626352007-11-29 11:09:44 +0800992 */
Daniel C Halperin95407aa2009-09-17 10:43:48 -0700993 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
994 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
995 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type,
996 &rs_index);
Shanyu Zhao04f2dec2010-03-19 13:34:45 -0700997 rs_collect_tx_data(curr_tbl, rs_index,
Daniel Halperine3a3cd82010-04-18 09:27:58 -0700998 info->status.ampdu_len,
999 info->status.ampdu_ack_len);
Zhu Yib481de92007-09-25 17:54:57 -07001000
Daniel C Halperin95407aa2009-09-17 10:43:48 -07001001 /* Update success/fail counts if not searching for new mode */
1002 if (lq_sta->stay_in_tbl) {
Daniel Halperine3a3cd82010-04-18 09:27:58 -07001003 lq_sta->total_success += info->status.ampdu_ack_len;
1004 lq_sta->total_failed += (info->status.ampdu_len -
1005 info->status.ampdu_ack_len);
Daniel C Halperin95407aa2009-09-17 10:43:48 -07001006 }
1007 } else {
1008 /*
1009 * For legacy, update frame history with for each Tx retry.
1010 */
1011 retries = info->status.rates[0].count - 1;
1012 /* HW doesn't send more than 15 retries */
1013 retries = min(retries, 15);
1014
1015 /* The last transmission may have been successful */
1016 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
1017 /* Collect data for each rate used during failed TX attempts */
1018 for (i = 0; i <= retries; ++i) {
1019 tx_rate = le32_to_cpu(table->rs_table[i].rate_n_flags);
1020 rs_get_tbl_info_from_mcs(tx_rate, priv->band,
1021 &tbl_type, &rs_index);
1022 /*
1023 * Only collect stats if retried rate is in the same RS
1024 * table as active/search.
1025 */
1026 if (table_type_matches(&tbl_type, curr_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -07001027 tmp_tbl = curr_tbl;
Daniel C Halperin95407aa2009-09-17 10:43:48 -07001028 else if (table_type_matches(&tbl_type, other_tbl))
Shanyu Zhao04f2dec2010-03-19 13:34:45 -07001029 tmp_tbl = other_tbl;
Ron Rindjunsky99556432008-01-28 14:07:25 +02001030 else
Daniel C Halperin95407aa2009-09-17 10:43:48 -07001031 continue;
Shanyu Zhao04f2dec2010-03-19 13:34:45 -07001032 rs_collect_tx_data(tmp_tbl, rs_index, 1,
1033 i < retries ? 0 : legacy_success);
Daniel C Halperin95407aa2009-09-17 10:43:48 -07001034 }
1035
1036 /* Update success/fail counts if not searching for new mode */
1037 if (lq_sta->stay_in_tbl) {
1038 lq_sta->total_success += legacy_success;
1039 lq_sta->total_failed += retries + (1 - legacy_success);
Ron Rindjunsky99556432008-01-28 14:07:25 +02001040 }
Zhu Yib481de92007-09-25 17:54:57 -07001041 }
Daniel C Halperin95407aa2009-09-17 10:43:48 -07001042 /* The last TX rate is cached in lq_sta; it's set in if/else above */
1043 lq_sta->last_rate_n_flags = tx_rate;
Wey-Yi Guy80e91582010-08-03 08:23:32 -07001044done:
Ben Cahill77626352007-11-29 11:09:44 +08001045 /* See if there's a better rate or modulation mode to try. */
Abbas, Mohamedc338ba32009-01-21 10:58:02 -08001046 if (sta && sta->supp_rates[sband->band])
Gábor Stefanik514d65c2009-04-23 19:36:08 +02001047 rs_rate_scale_perform(priv, skb, sta, lq_sta);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001048
Wey-Yi Guy66e863a52010-11-08 14:54:37 -08001049 if (priv->cfg->bt_params && priv->cfg->bt_params->advanced_bt_coexist)
Johannes Berg7e6a5882010-08-23 10:46:46 +02001050 rs_bt_update_lq(priv, ctx, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07001051}
1052
Ben Cahill77626352007-11-29 11:09:44 +08001053/*
1054 * Begin a period of staying with a selected modulation mode.
1055 * Set "stay_in_tbl" flag to prevent any mode switches.
1056 * Set frame tx success limits according to legacy vs. high-throughput,
1057 * and reset overall (spanning all rates) tx success history statistics.
1058 * These control how long we stay using same modulation mode before
1059 * searching for a new mode.
1060 */
Ester Kummerbf403db2008-05-05 10:22:40 +08001061static void rs_set_stay_in_table(struct iwl_priv *priv, u8 is_legacy,
Tomas Winklere227cea2008-07-18 13:53:05 +08001062 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001063{
Tomas Winklere1623442009-01-27 14:27:56 -08001064 IWL_DEBUG_RATE(priv, "we are staying in the same table\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -08001065 lq_sta->stay_in_tbl = 1; /* only place this gets set */
Zhu Yib481de92007-09-25 17:54:57 -07001066 if (is_legacy) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001067 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
1068 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
1069 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -07001070 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001071 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
1072 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
1073 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -07001074 }
Tomas Winklerc33104f2008-01-14 17:46:21 -08001075 lq_sta->table_count = 0;
1076 lq_sta->total_failed = 0;
1077 lq_sta->total_success = 0;
Mohamed Abbas447fee72009-04-20 14:37:02 -07001078 lq_sta->flush_timer = jiffies;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001079 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001080}
1081
Ben Cahill77626352007-11-29 11:09:44 +08001082/*
1083 * Find correct throughput table for given mode of modulation
1084 */
Tomas Winklere227cea2008-07-18 13:53:05 +08001085static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
1086 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -07001087{
Daniel C Halperine3949d62009-09-17 10:43:50 -07001088 /* Used to choose among HT tables */
1089 s32 (*ht_tbl_pointer)[IWL_RATE_COUNT];
1090
1091 /* Check for invalid LQ type */
1092 if (WARN_ON_ONCE(!is_legacy(tbl->lq_type) && !is_Ht(tbl->lq_type))) {
1093 tbl->expected_tpt = expected_tpt_legacy;
1094 return;
1095 }
1096
1097 /* Legacy rates have only one table */
Zhu Yib481de92007-09-25 17:54:57 -07001098 if (is_legacy(tbl->lq_type)) {
Daniel C Halperine3949d62009-09-17 10:43:50 -07001099 tbl->expected_tpt = expected_tpt_legacy;
1100 return;
1101 }
1102
1103 /* Choose among many HT tables depending on number of streams
1104 * (SISO/MIMO2/MIMO3), channel width (20/40), SGI, and aggregation
1105 * status */
1106 if (is_siso(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1107 ht_tbl_pointer = expected_tpt_siso20MHz;
1108 else if (is_siso(tbl->lq_type))
1109 ht_tbl_pointer = expected_tpt_siso40MHz;
1110 else if (is_mimo2(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1111 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
1112 else if (is_mimo2(tbl->lq_type))
1113 ht_tbl_pointer = expected_tpt_mimo2_40MHz;
1114 else if (is_mimo3(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1115 ht_tbl_pointer = expected_tpt_mimo3_20MHz;
1116 else /* if (is_mimo3(tbl->lq_type)) <-- must be true */
1117 ht_tbl_pointer = expected_tpt_mimo3_40MHz;
1118
1119 if (!tbl->is_SGI && !lq_sta->is_agg) /* Normal */
1120 tbl->expected_tpt = ht_tbl_pointer[0];
1121 else if (tbl->is_SGI && !lq_sta->is_agg) /* SGI */
1122 tbl->expected_tpt = ht_tbl_pointer[1];
1123 else if (!tbl->is_SGI && lq_sta->is_agg) /* AGG */
1124 tbl->expected_tpt = ht_tbl_pointer[2];
1125 else /* AGG+SGI */
1126 tbl->expected_tpt = ht_tbl_pointer[3];
Zhu Yib481de92007-09-25 17:54:57 -07001127}
1128
Ben Cahill77626352007-11-29 11:09:44 +08001129/*
1130 * Find starting rate for new "search" high-throughput mode of modulation.
1131 * Goal is to find lowest expected rate (under perfect conditions) that is
1132 * above the current measured throughput of "active" mode, to give new mode
1133 * a fair chance to prove itself without too many challenges.
1134 *
1135 * This gets called when transitioning to more aggressive modulation
1136 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1137 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1138 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1139 * bit rate will typically need to increase, but not if performance was bad.
1140 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001141static s32 rs_get_best_rate(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001142 struct iwl_lq_sta *lq_sta,
1143 struct iwl_scale_tbl_info *tbl, /* "search" */
Guy Cohenf935a6d2008-04-23 17:15:02 -07001144 u16 rate_mask, s8 index)
Zhu Yib481de92007-09-25 17:54:57 -07001145{
Ben Cahill77626352007-11-29 11:09:44 +08001146 /* "active" values */
Tomas Winklere227cea2008-07-18 13:53:05 +08001147 struct iwl_scale_tbl_info *active_tbl =
Tomas Winklerc33104f2008-01-14 17:46:21 -08001148 &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001149 s32 active_sr = active_tbl->win[index].success_ratio;
Zhu Yib481de92007-09-25 17:54:57 -07001150 s32 active_tpt = active_tbl->expected_tpt[index];
Ben Cahill77626352007-11-29 11:09:44 +08001151
1152 /* expected "search" throughput */
1153 s32 *tpt_tbl = tbl->expected_tpt;
1154
1155 s32 new_rate, high, low, start_hi;
Zhu Yib481de92007-09-25 17:54:57 -07001156 u16 high_low;
Guy Cohenf935a6d2008-04-23 17:15:02 -07001157 s8 rate = index;
Zhu Yib481de92007-09-25 17:54:57 -07001158
1159 new_rate = high = low = start_hi = IWL_RATE_INVALID;
1160
1161 for (; ;) {
Ester Kummerbf403db2008-05-05 10:22:40 +08001162 high_low = rs_get_adjacent_rate(priv, rate, rate_mask,
1163 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001164
1165 low = high_low & 0xff;
1166 high = (high_low >> 8) & 0xff;
1167
Ben Cahill77626352007-11-29 11:09:44 +08001168 /*
1169 * Lower the "search" bit rate, to give new "search" mode
1170 * approximately the same throughput as "active" if:
1171 *
1172 * 1) "Active" mode has been working modestly well (but not
1173 * great), and expected "search" throughput (under perfect
1174 * conditions) at candidate rate is above the actual
1175 * measured "active" throughput (but less than expected
1176 * "active" throughput under perfect conditions).
1177 * OR
1178 * 2) "Active" mode has been working perfectly or very well
1179 * and expected "search" throughput (under perfect
1180 * conditions) at candidate rate is above expected
1181 * "active" throughput (under perfect conditions).
1182 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001183 if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
Zhu Yib481de92007-09-25 17:54:57 -07001184 ((active_sr > IWL_RATE_DECREASE_TH) &&
1185 (active_sr <= IWL_RATE_HIGH_TH) &&
1186 (tpt_tbl[rate] <= active_tpt))) ||
1187 ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
1188 (tpt_tbl[rate] > active_tpt))) {
1189
Ben Cahill77626352007-11-29 11:09:44 +08001190 /* (2nd or later pass)
1191 * If we've already tried to raise the rate, and are
1192 * now trying to lower it, use the higher rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001193 if (start_hi != IWL_RATE_INVALID) {
1194 new_rate = start_hi;
1195 break;
1196 }
Ben Cahill77626352007-11-29 11:09:44 +08001197
Zhu Yib481de92007-09-25 17:54:57 -07001198 new_rate = rate;
Ben Cahill77626352007-11-29 11:09:44 +08001199
1200 /* Loop again with lower rate */
Zhu Yib481de92007-09-25 17:54:57 -07001201 if (low != IWL_RATE_INVALID)
1202 rate = low;
Ben Cahill77626352007-11-29 11:09:44 +08001203
1204 /* Lower rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001205 else
1206 break;
Ben Cahill77626352007-11-29 11:09:44 +08001207
1208 /* Else try to raise the "search" rate to match "active" */
Zhu Yib481de92007-09-25 17:54:57 -07001209 } else {
Ben Cahill77626352007-11-29 11:09:44 +08001210 /* (2nd or later pass)
1211 * If we've already tried to lower the rate, and are
1212 * now trying to raise it, use the lower rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001213 if (new_rate != IWL_RATE_INVALID)
1214 break;
Ben Cahill77626352007-11-29 11:09:44 +08001215
1216 /* Loop again with higher rate */
Zhu Yib481de92007-09-25 17:54:57 -07001217 else if (high != IWL_RATE_INVALID) {
1218 start_hi = high;
1219 rate = high;
Ben Cahill77626352007-11-29 11:09:44 +08001220
1221 /* Higher rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001222 } else {
Guy Cohen90d77952008-09-09 10:54:53 +08001223 new_rate = rate;
Zhu Yib481de92007-09-25 17:54:57 -07001224 break;
1225 }
1226 }
1227 }
1228
1229 return new_rate;
1230}
Zhu Yib481de92007-09-25 17:54:57 -07001231
Ben Cahill77626352007-11-29 11:09:44 +08001232/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001233 * Set up search table for MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001234 */
Guy Cohenfde0db32008-04-21 15:42:01 -07001235static int rs_switch_to_mimo2(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001236 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001237 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001238 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001239 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001240{
Zhu Yib481de92007-09-25 17:54:57 -07001241 u16 rate_mask;
1242 s32 rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001243 s8 is_green = lq_sta->is_green;
Johannes Berg7e6a5882010-08-23 10:46:46 +02001244 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1245 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Zhu Yib481de92007-09-25 17:54:57 -07001246
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001247 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001248 return -1;
1249
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001250 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
Tomas Winkler00c5ae22008-09-03 11:26:42 +08001251 == WLAN_HT_CAP_SM_PS_STATIC)
Zhu Yib481de92007-09-25 17:54:57 -07001252 return -1;
1253
Ben Cahill77626352007-11-29 11:09:44 +08001254 /* Need both Tx chains/antennas to support MIMO */
Guy Cohenaade00c2008-04-23 17:14:59 -07001255 if (priv->hw_params.tx_chains_num < 2)
Zhu Yib481de92007-09-25 17:54:57 -07001256 return -1;
1257
Tomas Winklere1623442009-01-27 14:27:56 -08001258 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO2\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001259
1260 tbl->lq_type = LQ_MIMO2;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001261 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001262 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001263 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001264 rate_mask = lq_sta->active_mimo2_rate;
1265
Johannes Berg7e6a5882010-08-23 10:46:46 +02001266 if (iwl_is_ht40_tx_allowed(priv, ctx, &sta->ht_cap))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001267 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001268 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001269 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001270
Guy Coheneecd6e52008-04-23 17:14:58 -07001271 rs_set_expected_tpt_table(lq_sta, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07001272
Guy Cohenf935a6d2008-04-23 17:15:02 -07001273 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001274
Tomas Winklere1623442009-01-27 14:27:56 -08001275 IWL_DEBUG_RATE(priv, "LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001276 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
1277 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
1278 rate, rate_mask);
1279 return -1;
1280 }
1281 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Guy Cohen39e88502008-04-23 17:14:57 -07001282
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001283 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
1284 tbl->current_rate, is_green);
1285 return 0;
1286}
1287
1288/*
1289 * Set up search table for MIMO3
1290 */
1291static int rs_switch_to_mimo3(struct iwl_priv *priv,
1292 struct iwl_lq_sta *lq_sta,
1293 struct ieee80211_conf *conf,
1294 struct ieee80211_sta *sta,
1295 struct iwl_scale_tbl_info *tbl, int index)
1296{
1297 u16 rate_mask;
1298 s32 rate;
1299 s8 is_green = lq_sta->is_green;
Johannes Berg7e6a5882010-08-23 10:46:46 +02001300 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1301 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001302
1303 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1304 return -1;
1305
1306 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
1307 == WLAN_HT_CAP_SM_PS_STATIC)
1308 return -1;
1309
1310 /* Need both Tx chains/antennas to support MIMO */
1311 if (priv->hw_params.tx_chains_num < 3)
1312 return -1;
1313
1314 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO3\n");
1315
1316 tbl->lq_type = LQ_MIMO3;
1317 tbl->is_dup = lq_sta->is_dup;
1318 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001319 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001320 rate_mask = lq_sta->active_mimo3_rate;
1321
Johannes Berg7e6a5882010-08-23 10:46:46 +02001322 if (iwl_is_ht40_tx_allowed(priv, ctx, &sta->ht_cap))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001323 tbl->is_ht40 = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001324 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001325 tbl->is_ht40 = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001326
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001327 rs_set_expected_tpt_table(lq_sta, tbl);
1328
1329 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
1330
1331 IWL_DEBUG_RATE(priv, "LQ: MIMO3 best rate %d mask %X\n",
1332 rate, rate_mask);
Guy Cohen39e88502008-04-23 17:14:57 -07001333 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001334 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001335 rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001336 return -1;
Guy Cohen39e88502008-04-23 17:14:57 -07001337 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001338 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001339
Tomas Winklere1623442009-01-27 14:27:56 -08001340 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001341 tbl->current_rate, is_green);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001342 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001343}
1344
Ben Cahill77626352007-11-29 11:09:44 +08001345/*
1346 * Set up search table for SISO
1347 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001348static int rs_switch_to_siso(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001349 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001350 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001351 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001352 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001353{
Zhu Yib481de92007-09-25 17:54:57 -07001354 u16 rate_mask;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001355 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001356 s32 rate;
Johannes Berg7e6a5882010-08-23 10:46:46 +02001357 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1358 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Zhu Yib481de92007-09-25 17:54:57 -07001359
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08001360 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001361 return -1;
1362
Tomas Winklere1623442009-01-27 14:27:56 -08001363 IWL_DEBUG_RATE(priv, "LQ: try to switch to SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001364
Tomas Winklerc33104f2008-01-14 17:46:21 -08001365 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001366 tbl->lq_type = LQ_SISO;
1367 tbl->action = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001368 tbl->max_search = IWL_MAX_SEARCH;
Guy Cohen39e88502008-04-23 17:14:57 -07001369 rate_mask = lq_sta->active_siso_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001370
Johannes Berg7e6a5882010-08-23 10:46:46 +02001371 if (iwl_is_ht40_tx_allowed(priv, ctx, &sta->ht_cap))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001372 tbl->is_ht40 = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001373 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001374 tbl->is_ht40 = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001375
Zhu Yib481de92007-09-25 17:54:57 -07001376 if (is_green)
Guy Cohen39e88502008-04-23 17:14:57 -07001377 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield*/
Zhu Yib481de92007-09-25 17:54:57 -07001378
Guy Coheneecd6e52008-04-23 17:14:58 -07001379 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohenf935a6d2008-04-23 17:15:02 -07001380 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001381
Tomas Winklere1623442009-01-27 14:27:56 -08001382 IWL_DEBUG_RATE(priv, "LQ: get best rate %d mask %X\n", rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001383 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001384 IWL_DEBUG_RATE(priv, "can not switch with index %d rate mask %x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001385 rate, rate_mask);
1386 return -1;
1387 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001388 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
Tomas Winklere1623442009-01-27 14:27:56 -08001389 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001390 tbl->current_rate, is_green);
Mohamed Abbas403ab562007-11-06 22:06:25 -08001391 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001392}
1393
Ben Cahill77626352007-11-29 11:09:44 +08001394/*
1395 * Try to switch to new modulation mode from legacy
1396 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001397static int rs_move_legacy_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,
Zhu Yib481de92007-09-25 17:54:57 -07001401 int index)
1402{
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]);
1407 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1408 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001409 u8 start_action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001410 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001411 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001412 int ret = 0;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001413 u8 update_search_tbl_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001414
Johannes Berg290f5992010-08-23 07:56:58 -07001415 switch (priv->bt_traffic_load) {
1416 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1417 /* nothing */
1418 break;
1419 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1420 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001421 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Johannes Berg290f5992010-08-23 07:56:58 -07001422 if (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2)
1423 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
1424 break;
1425 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1426 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1427 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001428 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Johannes Berg290f5992010-08-23 07:56:58 -07001429 if (tbl->action >= IWL_LEGACY_SWITCH_ANTENNA2 &&
1430 tbl->action != IWL_LEGACY_SWITCH_SISO)
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001431 tbl->action = IWL_LEGACY_SWITCH_SISO;
Johannes Berg290f5992010-08-23 07:56:58 -07001432 break;
1433 default:
1434 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1435 break;
1436 }
1437
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001438 if (!iwl_ht_enabled(priv))
1439 /* stay in Legacy */
1440 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07001441 else if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001442 tbl->action > IWL_LEGACY_SWITCH_SISO)
1443 tbl->action = IWL_LEGACY_SWITCH_SISO;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001444
1445 /* configure as 1x1 if bt full concurrency */
1446 if (priv->bt_full_concurrent) {
1447 if (!iwl_ht_enabled(priv))
1448 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
1449 else if (tbl->action >= IWL_LEGACY_SWITCH_ANTENNA2)
1450 tbl->action = IWL_LEGACY_SWITCH_SISO;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001451 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001452 }
1453
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001454 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001455 for (; ;) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001456 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001457 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001458 case IWL_LEGACY_SWITCH_ANTENNA1:
1459 case IWL_LEGACY_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001460 IWL_DEBUG_RATE(priv, "LQ: Legacy toggle Antenna\n");
Zhu Yib481de92007-09-25 17:54:57 -07001461
Guy Cohen3110bef2008-09-09 10:54:54 +08001462 if ((tbl->action == IWL_LEGACY_SWITCH_ANTENNA1 &&
1463 tx_chains_num <= 1) ||
1464 (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2 &&
1465 tx_chains_num <= 2))
1466 break;
1467
Ben Cahill77626352007-11-29 11:09:44 +08001468 /* Don't change antenna if success has been great */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001469 if (window->success_ratio >= IWL_RS_GOOD_RATIO &&
1470 !priv->bt_full_concurrent &&
1471 priv->bt_traffic_load ==
1472 IWL_BT_COEX_TRAFFIC_LOAD_NONE)
Zhu Yib481de92007-09-25 17:54:57 -07001473 break;
Ben Cahill77626352007-11-29 11:09:44 +08001474
Ben Cahill77626352007-11-29 11:09:44 +08001475 /* Set up search table to try other antenna */
Zhu Yib481de92007-09-25 17:54:57 -07001476 memcpy(search_tbl, tbl, sz);
1477
Guy Cohenaade00c2008-04-23 17:14:59 -07001478 if (rs_toggle_antenna(valid_tx_ant,
1479 &search_tbl->current_rate, search_tbl)) {
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001480 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001481 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohenaade00c2008-04-23 17:14:59 -07001482 goto out;
1483 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001484 break;
Zhu Yib481de92007-09-25 17:54:57 -07001485 case IWL_LEGACY_SWITCH_SISO:
Tomas Winklere1623442009-01-27 14:27:56 -08001486 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to SISO\n");
Ben Cahill77626352007-11-29 11:09:44 +08001487
1488 /* Set up search table to try SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001489 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001490 search_tbl->is_SGI = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001491 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001492 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001493 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001494 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001495 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001496 }
Zhu Yib481de92007-09-25 17:54:57 -07001497
1498 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001499 case IWL_LEGACY_SWITCH_MIMO2_AB:
1500 case IWL_LEGACY_SWITCH_MIMO2_AC:
1501 case IWL_LEGACY_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001502 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO2\n");
Ben Cahill77626352007-11-29 11:09:44 +08001503
1504 /* Set up search table to try MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001505 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001506 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001507
1508 if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AB)
1509 search_tbl->ant_type = ANT_AB;
1510 else if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AC)
1511 search_tbl->ant_type = ANT_AC;
1512 else
1513 search_tbl->ant_type = ANT_BC;
1514
1515 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1516 break;
1517
Guy Cohenfde0db32008-04-21 15:42:01 -07001518 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001519 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001520 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001521 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001522 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001523 }
Zhu Yib481de92007-09-25 17:54:57 -07001524 break;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001525
1526 case IWL_LEGACY_SWITCH_MIMO3_ABC:
1527 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO3\n");
1528
1529 /* Set up search table to try MIMO3 */
1530 memcpy(search_tbl, tbl, sz);
1531 search_tbl->is_SGI = 0;
1532
1533 search_tbl->ant_type = ANT_ABC;
1534
1535 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1536 break;
1537
1538 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1539 search_tbl, index);
1540 if (!ret) {
1541 lq_sta->action_counter = 0;
1542 goto out;
1543 }
1544 break;
Zhu Yib481de92007-09-25 17:54:57 -07001545 }
1546 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001547 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001548 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001549
1550 if (tbl->action == start_action)
1551 break;
1552
1553 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001554 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001555 return 0;
1556
Guy Cohen3110bef2008-09-09 10:54:54 +08001557out:
1558 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001559 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001560 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001561 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001562 if (update_search_tbl_counter)
1563 search_tbl->action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001564 return 0;
1565
1566}
1567
Ben Cahill77626352007-11-29 11:09:44 +08001568/*
1569 * Try to switch to new modulation mode from SISO
1570 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001571static int rs_move_siso_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001572 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001573 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001574 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001575{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001576 u8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001577 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1578 struct iwl_scale_tbl_info *search_tbl =
1579 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1580 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001581 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001582 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1583 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001584 u8 start_action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001585 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001586 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001587 u8 update_search_tbl_counter = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -07001588 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001589
Johannes Berg290f5992010-08-23 07:56:58 -07001590 switch (priv->bt_traffic_load) {
1591 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1592 /* nothing */
1593 break;
1594 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1595 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001596 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
Johannes Berg290f5992010-08-23 07:56:58 -07001597 if (tbl->action == IWL_SISO_SWITCH_ANTENNA2)
1598 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1599 break;
1600 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1601 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1602 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001603 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
1604 if (tbl->action != IWL_SISO_SWITCH_ANTENNA1)
Johannes Berg290f5992010-08-23 07:56:58 -07001605 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1606 break;
1607 default:
1608 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1609 break;
1610 }
1611
Johannes Berg3ad3b922009-08-07 15:41:48 -07001612 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001613 tbl->action > IWL_SISO_SWITCH_ANTENNA2) {
1614 /* stay in SISO */
1615 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1616 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001617
1618 /* configure as 1x1 if bt full concurrency */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001619 if (priv->bt_full_concurrent) {
1620 valid_tx_ant = first_antenna(priv->hw_params.valid_tx_ant);
1621 if (tbl->action >= IWL_LEGACY_SWITCH_ANTENNA2)
1622 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1623 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001624
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001625 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001626 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001627 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001628 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001629 case IWL_SISO_SWITCH_ANTENNA1:
1630 case IWL_SISO_SWITCH_ANTENNA2:
Tomas Winklere1623442009-01-27 14:27:56 -08001631 IWL_DEBUG_RATE(priv, "LQ: SISO toggle Antenna\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001632 if ((tbl->action == IWL_SISO_SWITCH_ANTENNA1 &&
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001633 tx_chains_num <= 1) ||
Guy Cohen3110bef2008-09-09 10:54:54 +08001634 (tbl->action == IWL_SISO_SWITCH_ANTENNA2 &&
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001635 tx_chains_num <= 2))
Guy Cohen3110bef2008-09-09 10:54:54 +08001636 break;
1637
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001638 if (window->success_ratio >= IWL_RS_GOOD_RATIO &&
1639 !priv->bt_full_concurrent &&
1640 priv->bt_traffic_load ==
1641 IWL_BT_COEX_TRAFFIC_LOAD_NONE)
Zhu Yib481de92007-09-25 17:54:57 -07001642 break;
Zhu Yib481de92007-09-25 17:54:57 -07001643
1644 memcpy(search_tbl, tbl, sz);
Guy Cohenaade00c2008-04-23 17:14:59 -07001645 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001646 &search_tbl->current_rate, search_tbl)) {
1647 update_search_tbl_counter = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07001648 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001649 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001650 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001651 case IWL_SISO_SWITCH_MIMO2_AB:
1652 case IWL_SISO_SWITCH_MIMO2_AC:
1653 case IWL_SISO_SWITCH_MIMO2_BC:
Tomas Winklere1623442009-01-27 14:27:56 -08001654 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO2\n");
Zhu Yib481de92007-09-25 17:54:57 -07001655 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001656 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001657
1658 if (tbl->action == IWL_SISO_SWITCH_MIMO2_AB)
1659 search_tbl->ant_type = ANT_AB;
1660 else if (tbl->action == IWL_SISO_SWITCH_MIMO2_AC)
1661 search_tbl->ant_type = ANT_AC;
1662 else
1663 search_tbl->ant_type = ANT_BC;
1664
1665 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1666 break;
1667
Guy Cohenfde0db32008-04-21 15:42:01 -07001668 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001669 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001670 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001671 goto out;
1672 break;
1673 case IWL_SISO_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001674 if (!tbl->is_ht40 && !(ht_cap->cap &
1675 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001676 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001677 if (tbl->is_ht40 && !(ht_cap->cap &
1678 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001679 break;
1680
Tomas Winklere1623442009-01-27 14:27:56 -08001681 IWL_DEBUG_RATE(priv, "LQ: SISO toggle SGI/NGI\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001682
Zhu Yib481de92007-09-25 17:54:57 -07001683 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001684 if (is_green) {
1685 if (!tbl->is_SGI)
1686 break;
1687 else
Winkler, Tomas15b16872008-12-19 10:37:33 +08001688 IWL_ERR(priv,
1689 "SGI was set in GF+SISO\n");
Zhu Yib481de92007-09-25 17:54:57 -07001690 }
Guy Cohen39e88502008-04-23 17:14:57 -07001691 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001692 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohen39e88502008-04-23 17:14:57 -07001693 if (tbl->is_SGI) {
1694 s32 tpt = lq_sta->last_tpt / 100;
1695 if (tpt >= search_tbl->expected_tpt[index])
1696 break;
1697 }
Tomas Winkler978785a2008-12-19 10:37:31 +08001698 search_tbl->current_rate =
1699 rate_n_flags_from_tbl(priv, search_tbl,
1700 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001701 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001702 goto out;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001703 case IWL_SISO_SWITCH_MIMO3_ABC:
1704 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO3\n");
1705 memcpy(search_tbl, tbl, sz);
1706 search_tbl->is_SGI = 0;
1707 search_tbl->ant_type = ANT_ABC;
1708
1709 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1710 break;
1711
1712 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1713 search_tbl, index);
1714 if (!ret)
1715 goto out;
1716 break;
Zhu Yib481de92007-09-25 17:54:57 -07001717 }
1718 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001719 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001720 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001721
1722 if (tbl->action == start_action)
1723 break;
1724 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001725 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001726 return 0;
1727
1728 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001729 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001730 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001731 if (tbl->action > IWL_SISO_SWITCH_MIMO3_ABC)
Guy Cohen3110bef2008-09-09 10:54:54 +08001732 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001733 if (update_search_tbl_counter)
1734 search_tbl->action = tbl->action;
1735
Zhu Yib481de92007-09-25 17:54:57 -07001736 return 0;
1737}
1738
Ben Cahill77626352007-11-29 11:09:44 +08001739/*
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001740 * Try to switch to new modulation mode from MIMO2
Ben Cahill77626352007-11-29 11:09:44 +08001741 */
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001742static int rs_move_mimo2_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001743 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001744 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001745 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001746{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001747 s8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001748 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1749 struct iwl_scale_tbl_info *search_tbl =
1750 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Guy Cohen3110bef2008-09-09 10:54:54 +08001751 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001752 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Tomas Winklere227cea2008-07-18 13:53:05 +08001753 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1754 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001755 u8 start_action;
Guy Cohen3110bef2008-09-09 10:54:54 +08001756 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1757 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001758 u8 update_search_tbl_counter = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07001759 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001760
Johannes Berg290f5992010-08-23 07:56:58 -07001761 switch (priv->bt_traffic_load) {
1762 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1763 /* nothing */
1764 break;
1765 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1766 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1767 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001768 if (tbl->action != IWL_MIMO2_SWITCH_SISO_A)
1769 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1770 break;
Johannes Berg290f5992010-08-23 07:56:58 -07001771 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1772 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001773 if (tbl->action == IWL_MIMO2_SWITCH_SISO_B ||
1774 tbl->action == IWL_MIMO2_SWITCH_SISO_C)
Johannes Berg290f5992010-08-23 07:56:58 -07001775 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1776 break;
1777 default:
1778 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1779 break;
1780 }
1781
Johannes Berg3ad3b922009-08-07 15:41:48 -07001782 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001783 (tbl->action < IWL_MIMO2_SWITCH_SISO_A ||
1784 tbl->action > IWL_MIMO2_SWITCH_SISO_C)) {
1785 /* switch in SISO */
1786 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1787 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001788
1789 /* configure as 1x1 if bt full concurrency */
1790 if (priv->bt_full_concurrent &&
1791 (tbl->action < IWL_MIMO2_SWITCH_SISO_A ||
1792 tbl->action > IWL_MIMO2_SWITCH_SISO_C))
1793 tbl->action = IWL_MIMO2_SWITCH_SISO_A;
1794
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001795 start_action = tbl->action;
Zhu Yib481de92007-09-25 17:54:57 -07001796 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001797 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001798 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001799 case IWL_MIMO2_SWITCH_ANTENNA1:
1800 case IWL_MIMO2_SWITCH_ANTENNA2:
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001801 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle Antennas\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001802
1803 if (tx_chains_num <= 2)
1804 break;
1805
1806 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1807 break;
1808
1809 memcpy(search_tbl, tbl, sz);
1810 if (rs_toggle_antenna(valid_tx_ant,
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001811 &search_tbl->current_rate, search_tbl)) {
1812 update_search_tbl_counter = 1;
Guy Cohen3110bef2008-09-09 10:54:54 +08001813 goto out;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001814 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001815 break;
1816 case IWL_MIMO2_SWITCH_SISO_A:
1817 case IWL_MIMO2_SWITCH_SISO_B:
1818 case IWL_MIMO2_SWITCH_SISO_C:
Tomas Winklere1623442009-01-27 14:27:56 -08001819 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to SISO\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001820
Ben Cahill77626352007-11-29 11:09:44 +08001821 /* Set up new search table for SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001822 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001823
Guy Cohen3110bef2008-09-09 10:54:54 +08001824 if (tbl->action == IWL_MIMO2_SWITCH_SISO_A)
Guy Cohenfde0db32008-04-21 15:42:01 -07001825 search_tbl->ant_type = ANT_A;
Guy Cohen3110bef2008-09-09 10:54:54 +08001826 else if (tbl->action == IWL_MIMO2_SWITCH_SISO_B)
Guy Cohenfde0db32008-04-21 15:42:01 -07001827 search_tbl->ant_type = ANT_B;
Guy Cohen3110bef2008-09-09 10:54:54 +08001828 else
1829 search_tbl->ant_type = ANT_C;
1830
1831 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1832 break;
Zhu Yib481de92007-09-25 17:54:57 -07001833
Tomas Winklerc33104f2008-01-14 17:46:21 -08001834 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001835 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001836 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001837 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001838
Zhu Yib481de92007-09-25 17:54:57 -07001839 break;
1840
Guy Cohen3110bef2008-09-09 10:54:54 +08001841 case IWL_MIMO2_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001842 if (!tbl->is_ht40 && !(ht_cap->cap &
1843 IEEE80211_HT_CAP_SGI_20))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001844 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001845 if (tbl->is_ht40 && !(ht_cap->cap &
1846 IEEE80211_HT_CAP_SGI_40))
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001847 break;
1848
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001849 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle SGI/NGI\n");
1850
1851 /* Set up new search table for MIMO2 */
1852 memcpy(search_tbl, tbl, sz);
1853 search_tbl->is_SGI = !tbl->is_SGI;
1854 rs_set_expected_tpt_table(lq_sta, search_tbl);
1855 /*
1856 * If active table already uses the fastest possible
1857 * modulation (dual stream with short guard interval),
1858 * and it's working well, there's no need to look
1859 * for a better type of modulation!
1860 */
1861 if (tbl->is_SGI) {
1862 s32 tpt = lq_sta->last_tpt / 100;
1863 if (tpt >= search_tbl->expected_tpt[index])
1864 break;
1865 }
1866 search_tbl->current_rate =
1867 rate_n_flags_from_tbl(priv, search_tbl,
1868 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001869 update_search_tbl_counter = 1;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001870 goto out;
1871
1872 case IWL_MIMO2_SWITCH_MIMO3_ABC:
1873 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to MIMO3\n");
1874 memcpy(search_tbl, tbl, sz);
1875 search_tbl->is_SGI = 0;
1876 search_tbl->ant_type = ANT_ABC;
1877
1878 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1879 break;
1880
1881 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1882 search_tbl, index);
1883 if (!ret)
1884 goto out;
1885
1886 break;
1887 }
1888 tbl->action++;
1889 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1890 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
1891
1892 if (tbl->action == start_action)
1893 break;
1894 }
1895 search_tbl->lq_type = LQ_NONE;
1896 return 0;
1897 out:
1898 lq_sta->search_better_tbl = 1;
1899 tbl->action++;
1900 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1901 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001902 if (update_search_tbl_counter)
1903 search_tbl->action = tbl->action;
1904
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001905 return 0;
1906
1907}
1908
1909/*
1910 * Try to switch to new modulation mode from MIMO3
1911 */
1912static int rs_move_mimo3_to_other(struct iwl_priv *priv,
1913 struct iwl_lq_sta *lq_sta,
1914 struct ieee80211_conf *conf,
1915 struct ieee80211_sta *sta, int index)
1916{
1917 s8 is_green = lq_sta->is_green;
1918 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1919 struct iwl_scale_tbl_info *search_tbl =
1920 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1921 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Daniel C Halperin28e6f482009-08-13 13:30:58 -07001922 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001923 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1924 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001925 u8 start_action;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001926 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1927 u8 tx_chains_num = priv->hw_params.tx_chains_num;
1928 int ret;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07001929 u8 update_search_tbl_counter = 0;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001930
Johannes Berg290f5992010-08-23 07:56:58 -07001931 switch (priv->bt_traffic_load) {
1932 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
1933 /* nothing */
1934 break;
1935 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
1936 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
1937 /* avoid antenna B and MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001938 if (tbl->action != IWL_MIMO3_SWITCH_SISO_A)
Johannes Berg290f5992010-08-23 07:56:58 -07001939 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001940 break;
Johannes Berg290f5992010-08-23 07:56:58 -07001941 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
1942 /* avoid antenna B unless MIMO */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07001943 if (tbl->action == IWL_MIMO3_SWITCH_SISO_B ||
1944 tbl->action == IWL_MIMO3_SWITCH_SISO_C)
Johannes Berg290f5992010-08-23 07:56:58 -07001945 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
Johannes Berg290f5992010-08-23 07:56:58 -07001946 break;
1947 default:
1948 IWL_ERR(priv, "Invalid BT load %d", priv->bt_traffic_load);
1949 break;
1950 }
1951
Johannes Berg3ad3b922009-08-07 15:41:48 -07001952 if ((iwl_tx_ant_restriction(priv) == IWL_ANT_OK_SINGLE) &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07001953 (tbl->action < IWL_MIMO3_SWITCH_SISO_A ||
1954 tbl->action > IWL_MIMO3_SWITCH_SISO_C)) {
1955 /* switch in SISO */
1956 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
1957 }
Wey-Yi Guybee008b2010-08-23 07:57:04 -07001958
1959 /* configure as 1x1 if bt full concurrency */
1960 if (priv->bt_full_concurrent &&
1961 (tbl->action < IWL_MIMO3_SWITCH_SISO_A ||
1962 tbl->action > IWL_MIMO3_SWITCH_SISO_C))
1963 tbl->action = IWL_MIMO3_SWITCH_SISO_A;
1964
Wey-Yi Guyb1a78852010-07-31 08:52:03 -07001965 start_action = tbl->action;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07001966 for (;;) {
1967 lq_sta->action_counter++;
1968 switch (tbl->action) {
1969 case IWL_MIMO3_SWITCH_ANTENNA1:
1970 case IWL_MIMO3_SWITCH_ANTENNA2:
1971 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle Antennas\n");
1972
1973 if (tx_chains_num <= 3)
1974 break;
1975
1976 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1977 break;
1978
1979 memcpy(search_tbl, tbl, sz);
1980 if (rs_toggle_antenna(valid_tx_ant,
1981 &search_tbl->current_rate, search_tbl))
1982 goto out;
1983 break;
1984 case IWL_MIMO3_SWITCH_SISO_A:
1985 case IWL_MIMO3_SWITCH_SISO_B:
1986 case IWL_MIMO3_SWITCH_SISO_C:
1987 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to SISO\n");
1988
1989 /* Set up new search table for SISO */
1990 memcpy(search_tbl, tbl, sz);
1991
1992 if (tbl->action == IWL_MIMO3_SWITCH_SISO_A)
1993 search_tbl->ant_type = ANT_A;
1994 else if (tbl->action == IWL_MIMO3_SWITCH_SISO_B)
1995 search_tbl->ant_type = ANT_B;
1996 else
1997 search_tbl->ant_type = ANT_C;
1998
1999 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
2000 break;
2001
2002 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
2003 search_tbl, index);
2004 if (!ret)
2005 goto out;
2006
2007 break;
2008
2009 case IWL_MIMO3_SWITCH_MIMO2_AB:
2010 case IWL_MIMO3_SWITCH_MIMO2_AC:
2011 case IWL_MIMO3_SWITCH_MIMO2_BC:
2012 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to MIMO2\n");
2013
2014 memcpy(search_tbl, tbl, sz);
2015 search_tbl->is_SGI = 0;
2016 if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AB)
2017 search_tbl->ant_type = ANT_AB;
2018 else if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AC)
2019 search_tbl->ant_type = ANT_AC;
2020 else
2021 search_tbl->ant_type = ANT_BC;
2022
2023 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
2024 break;
2025
2026 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
2027 search_tbl, index);
2028 if (!ret)
2029 goto out;
2030
2031 break;
2032
2033 case IWL_MIMO3_SWITCH_GI:
Daniel C Halperin28e6f482009-08-13 13:30:58 -07002034 if (!tbl->is_ht40 && !(ht_cap->cap &
2035 IEEE80211_HT_CAP_SGI_20))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002036 break;
Daniel C Halperin28e6f482009-08-13 13:30:58 -07002037 if (tbl->is_ht40 && !(ht_cap->cap &
2038 IEEE80211_HT_CAP_SGI_40))
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002039 break;
2040
2041 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle SGI/NGI\n");
Ben Cahill77626352007-11-29 11:09:44 +08002042
2043 /* Set up new search table for MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07002044 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07002045 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07002046 rs_set_expected_tpt_table(lq_sta, search_tbl);
Ben Cahill77626352007-11-29 11:09:44 +08002047 /*
2048 * If active table already uses the fastest possible
2049 * modulation (dual stream with short guard interval),
2050 * and it's working well, there's no need to look
2051 * for a better type of modulation!
2052 */
Guy Cohen39e88502008-04-23 17:14:57 -07002053 if (tbl->is_SGI) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002054 s32 tpt = lq_sta->last_tpt / 100;
Guy Cohen39e88502008-04-23 17:14:57 -07002055 if (tpt >= search_tbl->expected_tpt[index])
2056 break;
Zhu Yib481de92007-09-25 17:54:57 -07002057 }
Tomas Winkler978785a2008-12-19 10:37:31 +08002058 search_tbl->current_rate =
2059 rate_n_flags_from_tbl(priv, search_tbl,
2060 index, is_green);
Mohamed Abbasd6e93392009-05-08 13:44:39 -07002061 update_search_tbl_counter = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002062 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002063 }
2064 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002065 if (tbl->action > IWL_MIMO3_SWITCH_GI)
2066 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07002067
2068 if (tbl->action == start_action)
2069 break;
2070 }
Guy Cohen3110bef2008-09-09 10:54:54 +08002071 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07002072 return 0;
2073 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08002074 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002075 tbl->action++;
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002076 if (tbl->action > IWL_MIMO3_SWITCH_GI)
2077 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
Mohamed Abbasd6e93392009-05-08 13:44:39 -07002078 if (update_search_tbl_counter)
2079 search_tbl->action = tbl->action;
2080
Zhu Yib481de92007-09-25 17:54:57 -07002081 return 0;
2082
2083}
2084
Ben Cahill77626352007-11-29 11:09:44 +08002085/*
2086 * Check whether we should continue using same modulation mode, or
2087 * begin search for a new mode, based on:
2088 * 1) # tx successes or failures while using this mode
2089 * 2) # times calling this function
2090 * 3) elapsed time in this mode (not used, for now)
2091 */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002092static void rs_stay_in_table(struct iwl_lq_sta *lq_sta, bool force_search)
Zhu Yib481de92007-09-25 17:54:57 -07002093{
Tomas Winklere227cea2008-07-18 13:53:05 +08002094 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002095 int i;
2096 int active_tbl;
2097 int flush_interval_passed = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08002098 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002099
Ester Kummerbf403db2008-05-05 10:22:40 +08002100 priv = lq_sta->drv;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002101 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002102
Tomas Winklerc33104f2008-01-14 17:46:21 -08002103 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002104
Ben Cahill77626352007-11-29 11:09:44 +08002105 /* If we've been disallowing search, see if we should now allow it */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002106 if (lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07002107
Ben Cahill77626352007-11-29 11:09:44 +08002108 /* Elapsed time using current modulation mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002109 if (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07002110 flush_interval_passed =
Mohamed Abbas447fee72009-04-20 14:37:02 -07002111 time_after(jiffies,
2112 (unsigned long)(lq_sta->flush_timer +
Zhu Yib481de92007-09-25 17:54:57 -07002113 IWL_RATE_SCALE_FLUSH_INTVL));
2114
Ben Cahill77626352007-11-29 11:09:44 +08002115 /*
2116 * Check if we should allow search for new modulation mode.
2117 * If many frames have failed or succeeded, or we've used
2118 * this same modulation for a long time, allow search, and
2119 * reset history stats that keep track of whether we should
2120 * allow a new search. Also (below) reset all bitmaps and
2121 * stats in active history.
2122 */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002123 if (force_search ||
2124 (lq_sta->total_failed > lq_sta->max_failure_limit) ||
Tomas Winklerc33104f2008-01-14 17:46:21 -08002125 (lq_sta->total_success > lq_sta->max_success_limit) ||
2126 ((!lq_sta->search_better_tbl) && (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07002127 && (flush_interval_passed))) {
Tomas Winklere1623442009-01-27 14:27:56 -08002128 IWL_DEBUG_RATE(priv, "LQ: stay is expired %d %d %d\n:",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002129 lq_sta->total_failed,
2130 lq_sta->total_success,
Zhu Yib481de92007-09-25 17:54:57 -07002131 flush_interval_passed);
Ben Cahill77626352007-11-29 11:09:44 +08002132
2133 /* Allow search for new mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002134 lq_sta->stay_in_tbl = 0; /* only place reset */
2135 lq_sta->total_failed = 0;
2136 lq_sta->total_success = 0;
2137 lq_sta->flush_timer = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002138
2139 /*
2140 * Else if we've used this modulation mode enough repetitions
2141 * (regardless of elapsed time or success/failure), reset
2142 * history bitmaps and rate-specific stats for all rates in
2143 * active table.
2144 */
Mohamed Abbas403ab562007-11-06 22:06:25 -08002145 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002146 lq_sta->table_count++;
2147 if (lq_sta->table_count >=
2148 lq_sta->table_count_limit) {
2149 lq_sta->table_count = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002150
Tomas Winklere1623442009-01-27 14:27:56 -08002151 IWL_DEBUG_RATE(priv, "LQ: stay in table clear win\n");
Zhu Yib481de92007-09-25 17:54:57 -07002152 for (i = 0; i < IWL_RATE_COUNT; i++)
2153 rs_rate_scale_clear_window(
2154 &(tbl->win[i]));
2155 }
2156 }
2157
Ben Cahill77626352007-11-29 11:09:44 +08002158 /* If transitioning to allow "search", reset all history
2159 * bitmaps and stats in active table (this will become the new
2160 * "search" table). */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002161 if (!lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07002162 for (i = 0; i < IWL_RATE_COUNT; i++)
2163 rs_rate_scale_clear_window(&(tbl->win[i]));
2164 }
2165 }
2166}
2167
Ben Cahill77626352007-11-29 11:09:44 +08002168/*
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002169 * setup rate table in uCode
2170 * return rate_n_flags as used in the table
2171 */
2172static u32 rs_update_rate_tbl(struct iwl_priv *priv,
Johannes Berg7e6a5882010-08-23 10:46:46 +02002173 struct iwl_rxon_context *ctx,
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002174 struct iwl_lq_sta *lq_sta,
2175 struct iwl_scale_tbl_info *tbl,
2176 int index, u8 is_green)
2177{
2178 u32 rate;
2179
2180 /* Update uCode's rate table. */
2181 rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
2182 rs_fill_link_cmd(priv, lq_sta, rate);
Johannes Berg7e6a5882010-08-23 10:46:46 +02002183 iwl_send_lq_cmd(priv, ctx, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002184
2185 return rate;
2186}
2187
2188/*
Ben Cahill77626352007-11-29 11:09:44 +08002189 * Do rate scaling and search for new modulation mode.
2190 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002191static void rs_rate_scale_perform(struct iwl_priv *priv,
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002192 struct sk_buff *skb,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002193 struct ieee80211_sta *sta,
2194 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002195{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002196 struct ieee80211_hw *hw = priv->hw;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002197 struct ieee80211_conf *conf = &hw->conf;
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002198 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2199 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002200 int low = IWL_RATE_INVALID;
2201 int high = IWL_RATE_INVALID;
2202 int index;
2203 int i;
Tomas Winklere227cea2008-07-18 13:53:05 +08002204 struct iwl_rate_scale_data *window = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002205 int current_tpt = IWL_INVALID_VALUE;
2206 int low_tpt = IWL_INVALID_VALUE;
2207 int high_tpt = IWL_INVALID_VALUE;
2208 u32 fail_count;
2209 s8 scale_action = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002210 u16 rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -07002211 u8 update_lq = 0;
Tomas Winklere227cea2008-07-18 13:53:05 +08002212 struct iwl_scale_tbl_info *tbl, *tbl1;
Zhu Yib481de92007-09-25 17:54:57 -07002213 u16 rate_scale_index_msk = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07002214 u32 rate;
Zhu Yib481de92007-09-25 17:54:57 -07002215 u8 is_green = 0;
2216 u8 active_tbl = 0;
2217 u8 done_search = 0;
2218 u16 high_low;
Guy Cohena5e8b502008-05-29 16:35:11 +08002219 s32 sr;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002220 u8 tid = MAX_TID_COUNT;
Wey-Yi Guy86b47662009-03-10 14:35:09 -07002221 struct iwl_tid_data *tid_data;
Johannes Berg7e6a5882010-08-23 10:46:46 +02002222 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
2223 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Zhu Yib481de92007-09-25 17:54:57 -07002224
Tomas Winklere1623442009-01-27 14:27:56 -08002225 IWL_DEBUG_RATE(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002226
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002227 /* Send management frames and NO_ACK data using lowest rate. */
Tomas Winkler417f1142008-11-12 13:14:06 -08002228 /* TODO: this could probably be improved.. */
2229 if (!ieee80211_is_data(hdr->frame_control) ||
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002230 info->flags & IEEE80211_TX_CTL_NO_ACK)
Zhu Yib481de92007-09-25 17:54:57 -07002231 return;
Zhu Yib481de92007-09-25 17:54:57 -07002232
Johannes Berg4b7679a2008-09-18 18:14:18 +02002233 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002234 return;
2235
Johannes Berg4b7679a2008-09-18 18:14:18 +02002236 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
Zhu Yib481de92007-09-25 17:54:57 -07002237
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08002238 tid = rs_tl_add_packet(lq_sta, hdr);
Daniel C Halperine3949d62009-09-17 10:43:50 -07002239 if ((tid != MAX_TID_COUNT) && (lq_sta->tx_agg_tid_en & (1 << tid))) {
2240 tid_data = &priv->stations[lq_sta->lq.sta_id].tid[tid];
2241 if (tid_data->agg.state == IWL_AGG_OFF)
2242 lq_sta->is_agg = 0;
2243 else
2244 lq_sta->is_agg = 1;
2245 } else
2246 lq_sta->is_agg = 0;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08002247
Ben Cahill77626352007-11-29 11:09:44 +08002248 /*
2249 * Select rate-scale / modulation-mode table to work with in
2250 * the rest of this function: "search" if searching for better
2251 * modulation mode, or "active" if doing rate scaling within a mode.
2252 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002253 if (!lq_sta->search_better_tbl)
2254 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002255 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002256 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002257
Tomas Winklerc33104f2008-01-14 17:46:21 -08002258 tbl = &(lq_sta->lq_info[active_tbl]);
Wey-Yi Guy2681b202009-05-21 13:44:22 -07002259 if (is_legacy(tbl->lq_type))
2260 lq_sta->is_green = 0;
2261 else
Johannes Berg7e6a5882010-08-23 10:46:46 +02002262 lq_sta->is_green = rs_use_green(sta);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002263 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07002264
Ben Cahill77626352007-11-29 11:09:44 +08002265 /* current tx rate */
Johannes Bergb7e35002008-09-11 02:22:58 +02002266 index = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002267
Tomas Winklere1623442009-01-27 14:27:56 -08002268 IWL_DEBUG_RATE(priv, "Rate scale index %d for type %d\n", index,
Zhu Yib481de92007-09-25 17:54:57 -07002269 tbl->lq_type);
2270
Ben Cahill77626352007-11-29 11:09:44 +08002271 /* rates available for this association, and for modulation mode */
Guy Coheneecd6e52008-04-23 17:14:58 -07002272 rate_mask = rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07002273
Frans Pop91dd6c22010-03-24 14:19:58 -07002274 IWL_DEBUG_RATE(priv, "mask 0x%04X\n", rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07002275
2276 /* mask with station rate restriction */
2277 if (is_legacy(tbl->lq_type)) {
Johannes Berg8318d782008-01-24 19:38:38 +01002278 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Ben Cahill77626352007-11-29 11:09:44 +08002279 /* supp_rates has no CCK bits in A mode */
Zhu Yib481de92007-09-25 17:54:57 -07002280 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002281 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -07002282 else
2283 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08002284 lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -07002285
2286 } else
2287 rate_scale_index_msk = rate_mask;
2288
2289 if (!rate_scale_index_msk)
2290 rate_scale_index_msk = rate_mask;
2291
Guy Cohen07bc28e2008-04-23 17:15:03 -07002292 if (!((1 << index) & rate_scale_index_msk)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002293 IWL_ERR(priv, "Current Rate is not valid\n");
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002294 if (lq_sta->search_better_tbl) {
2295 /* revert to active table if search table is not valid*/
2296 tbl->lq_type = LQ_NONE;
2297 lq_sta->search_better_tbl = 0;
2298 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
2299 /* get "active" rate info */
2300 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Johannes Berg7e6a5882010-08-23 10:46:46 +02002301 rate = rs_update_rate_tbl(priv, ctx, lq_sta,
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002302 tbl, index, is_green);
2303 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002304 return;
Zhu Yib481de92007-09-25 17:54:57 -07002305 }
2306
Ben Cahill77626352007-11-29 11:09:44 +08002307 /* Get expected throughput table and history window for current rate */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002308 if (!tbl->expected_tpt) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002309 IWL_ERR(priv, "tbl->expected_tpt is NULL\n");
Guy Cohen07bc28e2008-04-23 17:15:03 -07002310 return;
2311 }
Zhu Yib481de92007-09-25 17:54:57 -07002312
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002313 /* force user max rate if set by user */
2314 if ((lq_sta->max_rate_idx != -1) &&
2315 (lq_sta->max_rate_idx < index)) {
2316 index = lq_sta->max_rate_idx;
2317 update_lq = 1;
2318 window = &(tbl->win[index]);
2319 goto lq_update;
2320 }
2321
Zhu Yib481de92007-09-25 17:54:57 -07002322 window = &(tbl->win[index]);
2323
Ben Cahill77626352007-11-29 11:09:44 +08002324 /*
2325 * If there is not enough history to calculate actual average
2326 * throughput, keep analyzing results of more tx frames, without
2327 * changing rate or mode (bypass most of the rest of this function).
2328 * Set up new rate table in uCode only if old rate is not supported
2329 * in current association (use new rate found above).
2330 */
Zhu Yib481de92007-09-25 17:54:57 -07002331 fail_count = window->counter - window->success_counter;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002332 if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
2333 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002334 IWL_DEBUG_RATE(priv, "LQ: still below TH. succ=%d total=%d "
Zhu Yib481de92007-09-25 17:54:57 -07002335 "for index %d\n",
2336 window->success_counter, window->counter, index);
Ben Cahill77626352007-11-29 11:09:44 +08002337
2338 /* Can't calculate this yet; not enough history */
Zhu Yib481de92007-09-25 17:54:57 -07002339 window->average_tpt = IWL_INVALID_VALUE;
Ben Cahill77626352007-11-29 11:09:44 +08002340
2341 /* Should we stay with this modulation mode,
2342 * or search for a new one? */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002343 rs_stay_in_table(lq_sta, false);
Ben Cahill77626352007-11-29 11:09:44 +08002344
Zhu Yib481de92007-09-25 17:54:57 -07002345 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08002346 }
Ben Cahill77626352007-11-29 11:09:44 +08002347 /* Else we have enough samples; calculate estimate of
2348 * actual average throughput */
Reinette Chatre3d79b2a2010-05-03 10:55:07 -07002349 if (window->average_tpt != ((window->success_ratio *
2350 tbl->expected_tpt[index] + 64) / 128)) {
2351 IWL_ERR(priv, "expected_tpt should have been calculated by now\n");
2352 window->average_tpt = ((window->success_ratio *
2353 tbl->expected_tpt[index] + 64) / 128);
2354 }
Zhu Yib481de92007-09-25 17:54:57 -07002355
Ben Cahill77626352007-11-29 11:09:44 +08002356 /* If we are searching for better modulation mode, check success. */
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002357 if (lq_sta->search_better_tbl &&
Johannes Berg3ad3b922009-08-07 15:41:48 -07002358 (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI)) {
Ben Cahill77626352007-11-29 11:09:44 +08002359 /* If good success, continue using the "search" mode;
2360 * no need to send new link quality command, since we're
2361 * continuing to use the setup that we've been trying. */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002362 if (window->average_tpt > lq_sta->last_tpt) {
2363
Tomas Winklere1623442009-01-27 14:27:56 -08002364 IWL_DEBUG_RATE(priv, "LQ: SWITCHING TO NEW TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002365 "suc=%d cur-tpt=%d old-tpt=%d\n",
2366 window->success_ratio,
2367 window->average_tpt,
2368 lq_sta->last_tpt);
2369
2370 if (!is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002371 lq_sta->enable_counter = 1;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002372
Ben Cahill77626352007-11-29 11:09:44 +08002373 /* Swap tables; "search" becomes "active" */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002374 lq_sta->active_tbl = active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002375 current_tpt = window->average_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002376
2377 /* Else poor success; go back to mode in "active" table */
Zhu Yib481de92007-09-25 17:54:57 -07002378 } else {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002379
Tomas Winklere1623442009-01-27 14:27:56 -08002380 IWL_DEBUG_RATE(priv, "LQ: GOING BACK TO THE OLD TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07002381 "suc=%d cur-tpt=%d old-tpt=%d\n",
2382 window->success_ratio,
2383 window->average_tpt,
2384 lq_sta->last_tpt);
2385
Ben Cahill77626352007-11-29 11:09:44 +08002386 /* Nullify "search" table */
Zhu Yib481de92007-09-25 17:54:57 -07002387 tbl->lq_type = LQ_NONE;
Ben Cahill77626352007-11-29 11:09:44 +08002388
2389 /* Revert to "active" table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002390 active_tbl = lq_sta->active_tbl;
2391 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002392
Ben Cahill77626352007-11-29 11:09:44 +08002393 /* Revert to "active" rate and throughput info */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002394 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002395 current_tpt = lq_sta->last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08002396
2397 /* Need to set up a new rate table in uCode */
2398 update_lq = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002399 }
Ben Cahill77626352007-11-29 11:09:44 +08002400
2401 /* Either way, we've made a decision; modulation mode
2402 * search is done, allow rate adjustment next time. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002403 lq_sta->search_better_tbl = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002404 done_search = 1; /* Don't switch modes below! */
Zhu Yib481de92007-09-25 17:54:57 -07002405 goto lq_update;
2406 }
2407
Ben Cahill77626352007-11-29 11:09:44 +08002408 /* (Else) not in search of better modulation mode, try for better
2409 * starting rate, while staying in this mode. */
Ester Kummerbf403db2008-05-05 10:22:40 +08002410 high_low = rs_get_adjacent_rate(priv, index, rate_scale_index_msk,
Zhu Yib481de92007-09-25 17:54:57 -07002411 tbl->lq_type);
2412 low = high_low & 0xff;
2413 high = (high_low >> 8) & 0xff;
2414
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002415 /* If user set max rate, dont allow higher than user constrain */
2416 if ((lq_sta->max_rate_idx != -1) &&
2417 (lq_sta->max_rate_idx < high))
2418 high = IWL_RATE_INVALID;
2419
Guy Cohena5e8b502008-05-29 16:35:11 +08002420 sr = window->success_ratio;
2421
Ben Cahill77626352007-11-29 11:09:44 +08002422 /* Collect measured throughputs for current and adjacent rates */
Zhu Yib481de92007-09-25 17:54:57 -07002423 current_tpt = window->average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002424 if (low != IWL_RATE_INVALID)
2425 low_tpt = tbl->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002426 if (high != IWL_RATE_INVALID)
2427 high_tpt = tbl->win[high].average_tpt;
2428
Guy Cohena5e8b502008-05-29 16:35:11 +08002429 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002430
Ben Cahill77626352007-11-29 11:09:44 +08002431 /* Too many failures, decrease rate */
Guy Cohena5e8b502008-05-29 16:35:11 +08002432 if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002433 IWL_DEBUG_RATE(priv, "decrease rate because of low success_ratio\n");
Zhu Yib481de92007-09-25 17:54:57 -07002434 scale_action = -1;
Ben Cahill77626352007-11-29 11:09:44 +08002435
2436 /* No throughput measured yet for adjacent rates; try increase. */
Zhu Yib481de92007-09-25 17:54:57 -07002437 } else if ((low_tpt == IWL_INVALID_VALUE) &&
Guy Cohena5e8b502008-05-29 16:35:11 +08002438 (high_tpt == IWL_INVALID_VALUE)) {
2439
2440 if (high != IWL_RATE_INVALID && sr >= IWL_RATE_INCREASE_TH)
2441 scale_action = 1;
2442 else if (low != IWL_RATE_INVALID)
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002443 scale_action = 0;
Guy Cohena5e8b502008-05-29 16:35:11 +08002444 }
Ben Cahill77626352007-11-29 11:09:44 +08002445
2446 /* Both adjacent throughputs are measured, but neither one has better
2447 * throughput; we're using the best rate, don't change it! */
Zhu Yib481de92007-09-25 17:54:57 -07002448 else if ((low_tpt != IWL_INVALID_VALUE) &&
2449 (high_tpt != IWL_INVALID_VALUE) &&
2450 (low_tpt < current_tpt) &&
2451 (high_tpt < current_tpt))
2452 scale_action = 0;
Ben Cahill77626352007-11-29 11:09:44 +08002453
2454 /* At least one adjacent rate's throughput is measured,
2455 * and may have better performance. */
Zhu Yib481de92007-09-25 17:54:57 -07002456 else {
Ben Cahill77626352007-11-29 11:09:44 +08002457 /* Higher adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002458 if (high_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002459 /* Higher rate has better throughput */
Guy Cohena5e8b502008-05-29 16:35:11 +08002460 if (high_tpt > current_tpt &&
2461 sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002462 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002463 } else {
Wey-Yi Guy8fe72312009-03-10 14:35:10 -07002464 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002465 }
Ben Cahill77626352007-11-29 11:09:44 +08002466
2467 /* Lower adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07002468 } else if (low_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08002469 /* Lower rate has better throughput */
Zhu Yib481de92007-09-25 17:54:57 -07002470 if (low_tpt > current_tpt) {
Tomas Winklere1623442009-01-27 14:27:56 -08002471 IWL_DEBUG_RATE(priv,
2472 "decrease rate because of low tpt\n");
Zhu Yib481de92007-09-25 17:54:57 -07002473 scale_action = -1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002474 } else if (sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07002475 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08002476 }
Zhu Yib481de92007-09-25 17:54:57 -07002477 }
2478 }
2479
Ben Cahill77626352007-11-29 11:09:44 +08002480 /* Sanity check; asked for decrease, but success rate or throughput
2481 * has been good at old rate. Don't change it. */
Guy Cohena5e8b502008-05-29 16:35:11 +08002482 if ((scale_action == -1) && (low != IWL_RATE_INVALID) &&
2483 ((sr > IWL_RATE_HIGH_TH) ||
Zhu Yib481de92007-09-25 17:54:57 -07002484 (current_tpt > (100 * tbl->expected_tpt[low]))))
Zhu Yib481de92007-09-25 17:54:57 -07002485 scale_action = 0;
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002486 if (!iwl_ht_enabled(priv) && !is_legacy(tbl->lq_type))
2487 scale_action = -1;
Johannes Berg3ad3b922009-08-07 15:41:48 -07002488 if (iwl_tx_ant_restriction(priv) != IWL_ANT_OK_MULTI &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002489 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type)))
2490 scale_action = -1;
Johannes Berg290f5992010-08-23 07:56:58 -07002491
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002492 if ((priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH) &&
2493 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type))) {
2494 if (lq_sta->last_bt_traffic > priv->bt_traffic_load) {
2495 /*
2496 * don't set scale_action, don't want to scale up if
2497 * the rate scale doesn't otherwise think that is a
2498 * good idea.
2499 */
2500 } else if (lq_sta->last_bt_traffic <= priv->bt_traffic_load) {
2501 scale_action = -1;
2502 }
2503 }
2504 lq_sta->last_bt_traffic = priv->bt_traffic_load;
2505
2506 if ((priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH) &&
2507 (is_mimo2(tbl->lq_type) || is_mimo3(tbl->lq_type))) {
2508 /* search for a new modulation */
2509 rs_stay_in_table(lq_sta, true);
2510 goto lq_update;
Johannes Berg290f5992010-08-23 07:56:58 -07002511 }
2512
Zhu Yib481de92007-09-25 17:54:57 -07002513 switch (scale_action) {
2514 case -1:
Ben Cahill77626352007-11-29 11:09:44 +08002515 /* Decrease starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002516 if (low != IWL_RATE_INVALID) {
2517 update_lq = 1;
2518 index = low;
2519 }
Mohamed Abbas447fee72009-04-20 14:37:02 -07002520
Zhu Yib481de92007-09-25 17:54:57 -07002521 break;
2522 case 1:
Ben Cahill77626352007-11-29 11:09:44 +08002523 /* Increase starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002524 if (high != IWL_RATE_INVALID) {
2525 update_lq = 1;
2526 index = high;
2527 }
2528
2529 break;
2530 case 0:
Ben Cahill77626352007-11-29 11:09:44 +08002531 /* No change */
Zhu Yib481de92007-09-25 17:54:57 -07002532 default:
2533 break;
2534 }
2535
Tomas Winklere1623442009-01-27 14:27:56 -08002536 IWL_DEBUG_RATE(priv, "choose rate scale index %d action %d low %d "
Zhu Yib481de92007-09-25 17:54:57 -07002537 "high %d type %d\n",
2538 index, scale_action, low, high, tbl->lq_type);
2539
Guy Cohena5e8b502008-05-29 16:35:11 +08002540lq_update:
Ben Cahill77626352007-11-29 11:09:44 +08002541 /* Replace uCode's rate table for the destination station. */
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002542 if (update_lq)
Johannes Berg7e6a5882010-08-23 10:46:46 +02002543 rate = rs_update_rate_tbl(priv, ctx, lq_sta,
Wey-Yi Guye3139fe2009-07-24 11:13:00 -07002544 tbl, index, is_green);
Ben Cahill77626352007-11-29 11:09:44 +08002545
Johannes Berg3ad3b922009-08-07 15:41:48 -07002546 if (iwl_tx_ant_restriction(priv) == IWL_ANT_OK_MULTI) {
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002547 /* Should we stay with this modulation mode,
2548 * or search for a new one? */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002549 rs_stay_in_table(lq_sta, false);
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002550 }
Ben Cahill77626352007-11-29 11:09:44 +08002551 /*
2552 * Search for new modulation mode if we're:
2553 * 1) Not changing rates right now
2554 * 2) Not just finishing up a search
2555 * 3) Allowing a new search
2556 */
Guy Cohen47cfd462008-05-27 11:29:34 +08002557 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && window->counter) {
Ben Cahill77626352007-11-29 11:09:44 +08002558 /* Save current throughput to compare with "search" throughput*/
Tomas Winklerc33104f2008-01-14 17:46:21 -08002559 lq_sta->last_tpt = current_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07002560
Ben Cahill77626352007-11-29 11:09:44 +08002561 /* Select a new "search" modulation mode to try.
2562 * If one is found, set up the new "search" table. */
Zhu Yib481de92007-09-25 17:54:57 -07002563 if (is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002564 rs_move_legacy_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002565 else if (is_siso(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08002566 rs_move_siso_to_other(priv, lq_sta, conf, sta, index);
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002567 else if (is_mimo2(tbl->lq_type))
2568 rs_move_mimo2_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002569 else
Wey-Yi Guy584a0f02009-04-01 14:33:24 -07002570 rs_move_mimo3_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07002571
Ben Cahill77626352007-11-29 11:09:44 +08002572 /* If new "search" mode was selected, set up in uCode table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002573 if (lq_sta->search_better_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002574 /* Access the "search" table, clear its history. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002575 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Zhu Yib481de92007-09-25 17:54:57 -07002576 for (i = 0; i < IWL_RATE_COUNT; i++)
2577 rs_rate_scale_clear_window(&(tbl->win[i]));
2578
Ben Cahill77626352007-11-29 11:09:44 +08002579 /* Use new "search" start rate */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08002580 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002581
Tomas Winklere1623442009-01-27 14:27:56 -08002582 IWL_DEBUG_RATE(priv, "Switch current mcs: %X index: %d\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002583 tbl->current_rate, index);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002584 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Johannes Berg7e6a5882010-08-23 10:46:46 +02002585 iwl_send_lq_cmd(priv, ctx, &lq_sta->lq, CMD_ASYNC, false);
Mohamed Abbas447fee72009-04-20 14:37:02 -07002586 } else
2587 done_search = 1;
2588 }
Zhu Yib481de92007-09-25 17:54:57 -07002589
Mohamed Abbas447fee72009-04-20 14:37:02 -07002590 if (done_search && !lq_sta->stay_in_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08002591 /* If the "active" (non-search) mode was legacy,
2592 * and we've tried switching antennas,
2593 * but we haven't been able to try HT modes (not available),
2594 * stay with best antenna legacy modulation for a while
2595 * before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002596 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08002597 if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
Mohamed Abbasd6e93392009-05-08 13:44:39 -07002598 lq_sta->action_counter > tbl1->max_search) {
Tomas Winklere1623442009-01-27 14:27:56 -08002599 IWL_DEBUG_RATE(priv, "LQ: STAY in legacy table\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08002600 rs_set_stay_in_table(priv, 1, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002601 }
2602
Ben Cahill77626352007-11-29 11:09:44 +08002603 /* If we're in an HT mode, and all 3 mode switch actions
2604 * have been tried and compared, stay in this best modulation
2605 * mode for a while before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002606 if (lq_sta->enable_counter &&
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002607 (lq_sta->action_counter >= tbl1->max_search) &&
2608 iwl_ht_enabled(priv)) {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002609 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2610 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2611 (tid != MAX_TID_COUNT)) {
Wey-Yi Guy86b47662009-03-10 14:35:09 -07002612 tid_data =
2613 &priv->stations[lq_sta->lq.sta_id].tid[tid];
2614 if (tid_data->agg.state == IWL_AGG_OFF) {
2615 IWL_DEBUG_RATE(priv,
2616 "try to aggregate tid %d\n",
2617 tid);
2618 rs_tl_turn_on_agg(priv, tid,
2619 lq_sta, sta);
2620 }
Zhu Yib481de92007-09-25 17:54:57 -07002621 }
Ester Kummerbf403db2008-05-05 10:22:40 +08002622 rs_set_stay_in_table(priv, 0, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002623 }
Zhu Yib481de92007-09-25 17:54:57 -07002624 }
2625
2626out:
Tomas Winkler978785a2008-12-19 10:37:31 +08002627 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07002628 i = index;
Johannes Bergb7e35002008-09-11 02:22:58 +02002629 lq_sta->last_txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -07002630}
2631
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002632/**
2633 * rs_initialize_lq - Initialize a station's hardware rate table
2634 *
2635 * The uCode's station table contains a table of fallback rates
2636 * for automatic fallback during transmission.
2637 *
2638 * NOTE: This sets up a default set of values. These will be replaced later
2639 * if the driver's iwl-agn-rs rate scaling algorithm is used, instead of
2640 * rc80211_simple.
2641 *
2642 * NOTE: Run REPLY_ADD_STA command to set up station table entry, before
2643 * calling this function (which runs REPLY_TX_LINK_QUALITY_CMD,
2644 * which requires station table entry to exist).
2645 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002646static void rs_initialize_lq(struct iwl_priv *priv,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002647 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002648 struct ieee80211_sta *sta,
2649 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002650{
Tomas Winklere227cea2008-07-18 13:53:05 +08002651 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002652 int rate_idx;
Guy Cohenaade00c2008-04-23 17:14:59 -07002653 int i;
Guy Cohen39e88502008-04-23 17:14:57 -07002654 u32 rate;
Johannes Berg7e6a5882010-08-23 10:46:46 +02002655 u8 use_green = rs_use_green(sta);
Guy Cohenaade00c2008-04-23 17:14:59 -07002656 u8 active_tbl = 0;
2657 u8 valid_tx_ant;
Johannes Berg7e6a5882010-08-23 10:46:46 +02002658 struct iwl_station_priv *sta_priv;
2659 struct iwl_rxon_context *ctx;
Zhu Yib481de92007-09-25 17:54:57 -07002660
Johannes Berg4b7679a2008-09-18 18:14:18 +02002661 if (!sta || !lq_sta)
Johannes Berg7e6a5882010-08-23 10:46:46 +02002662 return;
2663
2664 sta_priv = (void *)sta->drv_priv;
2665 ctx = sta_priv->common.ctx;
Zhu Yib481de92007-09-25 17:54:57 -07002666
Johannes Bergb7e35002008-09-11 02:22:58 +02002667 i = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002668
Guy Cohenaade00c2008-04-23 17:14:59 -07002669 valid_tx_ant = priv->hw_params.valid_tx_ant;
2670
Tomas Winklerc33104f2008-01-14 17:46:21 -08002671 if (!lq_sta->search_better_tbl)
2672 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002673 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002674 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002675
Tomas Winklerc33104f2008-01-14 17:46:21 -08002676 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002677
2678 if ((i < 0) || (i >= IWL_RATE_COUNT))
2679 i = 0;
2680
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002681 rate = iwl_rates[i].plcp;
Winkler, Tomaseb48dca2008-10-29 14:05:48 -07002682 tbl->ant_type = first_antenna(valid_tx_ant);
2683 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
Zhu Yib481de92007-09-25 17:54:57 -07002684
2685 if (i >= IWL_FIRST_CCK_RATE && i <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -07002686 rate |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002687
Guy Cohen39e88502008-04-23 17:14:57 -07002688 rs_get_tbl_info_from_mcs(rate, priv->band, tbl, &rate_idx);
Guy Cohenaade00c2008-04-23 17:14:59 -07002689 if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2690 rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07002691
Tomas Winkler978785a2008-12-19 10:37:31 +08002692 rate = rate_n_flags_from_tbl(priv, tbl, rate_idx, use_green);
Guy Cohen39e88502008-04-23 17:14:57 -07002693 tbl->current_rate = rate;
Guy Coheneecd6e52008-04-23 17:14:58 -07002694 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002695 rs_fill_link_cmd(NULL, lq_sta, rate);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002696 priv->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq;
Johannes Berg7e6a5882010-08-23 10:46:46 +02002697 iwl_send_lq_cmd(priv, ctx, &lq_sta->lq, CMD_SYNC, true);
Zhu Yib481de92007-09-25 17:54:57 -07002698}
2699
Johannes Berge6a98542008-10-21 12:40:02 +02002700static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta,
2701 struct ieee80211_tx_rate_control *txrc)
Zhu Yib481de92007-09-25 17:54:57 -07002702{
2703
Johannes Berge6a98542008-10-21 12:40:02 +02002704 struct sk_buff *skb = txrc->skb;
2705 struct ieee80211_supported_band *sband = txrc->sband;
Reinette Chatref875f512010-04-05 10:43:10 -07002706 struct iwl_priv *priv __maybe_unused = (struct iwl_priv *)priv_r;
Johannes Berge6a98542008-10-21 12:40:02 +02002707 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winkler417f1142008-11-12 13:14:06 -08002708 struct iwl_lq_sta *lq_sta = priv_sta;
2709 int rate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002710
Tomas Winklere1623442009-01-27 14:27:56 -08002711 IWL_DEBUG_RATE_LIMIT(priv, "rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002712
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002713 /* Get max rate if user set max rate */
2714 if (lq_sta) {
2715 lq_sta->max_rate_idx = txrc->max_rate_idx;
2716 if ((sband->band == IEEE80211_BAND_5GHZ) &&
2717 (lq_sta->max_rate_idx != -1))
2718 lq_sta->max_rate_idx += IWL_FIRST_OFDM_RATE;
2719 if ((lq_sta->max_rate_idx < 0) ||
2720 (lq_sta->max_rate_idx >= IWL_RATE_COUNT))
2721 lq_sta->max_rate_idx = -1;
2722 }
2723
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002724 /* Treat uninitialized rate scaling data same as non-existing. */
2725 if (lq_sta && !lq_sta->drv) {
2726 IWL_DEBUG_RATE(priv, "Rate scaling not initialized yet.\n");
2727 priv_sta = NULL;
2728 }
2729
Gábor Stefanik514d65c2009-04-23 19:36:08 +02002730 /* Send management frames and NO_ACK data using lowest rate. */
Luis R. Rodriguez4c6d4f52009-07-16 10:05:41 -07002731 if (rate_control_send_low(sta, priv_sta, txrc))
Johannes Berg4b7679a2008-09-18 18:14:18 +02002732 return;
Zhu Yib481de92007-09-25 17:54:57 -07002733
Tomas Winkler417f1142008-11-12 13:14:06 -08002734 rate_idx = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002735
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002736 if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
Tomas Winkler417f1142008-11-12 13:14:06 -08002737 rate_idx -= IWL_FIRST_OFDM_RATE;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002738 /* 6M and 9M shared same MCS index */
2739 rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
2740 if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2741 IWL_RATE_MIMO3_6M_PLCP)
2742 rate_idx = rate_idx + (2 * MCS_INDEX_PER_STREAM);
2743 else if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2744 IWL_RATE_MIMO2_6M_PLCP)
2745 rate_idx = rate_idx + MCS_INDEX_PER_STREAM;
2746 info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
2747 if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
2748 info->control.rates[0].flags |= IEEE80211_TX_RC_SHORT_GI;
2749 if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
2750 info->control.rates[0].flags |= IEEE80211_TX_RC_DUP_DATA;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07002751 if (lq_sta->last_rate_n_flags & RATE_MCS_HT40_MSK)
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002752 info->control.rates[0].flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2753 if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
2754 info->control.rates[0].flags |= IEEE80211_TX_RC_GREEN_FIELD;
2755 } else {
Daniel C Halperin50273092009-08-28 09:44:45 -07002756 /* Check for invalid rates */
2757 if ((rate_idx < 0) || (rate_idx >= IWL_RATE_COUNT_LEGACY) ||
2758 ((sband->band == IEEE80211_BAND_5GHZ) &&
2759 (rate_idx < IWL_FIRST_OFDM_RATE)))
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002760 rate_idx = rate_lowest_index(sband, sta);
Daniel C Halperin50273092009-08-28 09:44:45 -07002761 /* On valid 5 GHz rate, adjust index */
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002762 else if (sband->band == IEEE80211_BAND_5GHZ)
2763 rate_idx -= IWL_FIRST_OFDM_RATE;
Daniel C Halperin7ebaeff2009-08-21 13:34:20 -07002764 info->control.rates[0].flags = 0;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002765 }
Tomas Winkler417f1142008-11-12 13:14:06 -08002766 info->control.rates[0].idx = rate_idx;
Wey-Yi Guya9c146b2009-05-22 11:01:48 -07002767
Zhu Yib481de92007-09-25 17:54:57 -07002768}
2769
Johannes Berg4b7679a2008-09-18 18:14:18 +02002770static void *rs_alloc_sta(void *priv_rate, struct ieee80211_sta *sta,
2771 gfp_t gfp)
Zhu Yib481de92007-09-25 17:54:57 -07002772{
Tomas Winklere227cea2008-07-18 13:53:05 +08002773 struct iwl_lq_sta *lq_sta;
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002774 struct iwl_station_priv *sta_priv = (struct iwl_station_priv *) sta->drv_priv;
Ester Kummerbf403db2008-05-05 10:22:40 +08002775 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002776
Ester Kummerbf403db2008-05-05 10:22:40 +08002777 priv = (struct iwl_priv *)priv_rate;
Tomas Winklere1623442009-01-27 14:27:56 -08002778 IWL_DEBUG_RATE(priv, "create station rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -07002779
Reinette Chatre8d9698b2009-10-16 14:25:55 -07002780 lq_sta = &sta_priv->lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002781
Tomas Winklerc33104f2008-01-14 17:46:21 -08002782 return lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002783}
2784
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002785/*
2786 * Called after adding a new station to initialize rate scaling
2787 */
2788void iwl_rs_rate_init(struct iwl_priv *priv, struct ieee80211_sta *sta, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07002789{
2790 int i, j;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002791 struct ieee80211_hw *hw = priv->hw;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002792 struct ieee80211_conf *conf = &priv->hw->conf;
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002793 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002794 struct iwl_station_priv *sta_priv;
2795 struct iwl_lq_sta *lq_sta;
2796 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07002797
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002798 sta_priv = (struct iwl_station_priv *) sta->drv_priv;
2799 lq_sta = &sta_priv->lq_sta;
2800 sband = hw->wiphy->bands[conf->channel->band];
2801
2802
2803 lq_sta->lq.sta_id = sta_id;
Reinette Chatre5ad13f82009-10-30 14:36:14 -07002804
2805 for (j = 0; j < LQ_SIZE; j++)
2806 for (i = 0; i < IWL_RATE_COUNT; i++)
2807 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
2808
Tomas Winklerc33104f2008-01-14 17:46:21 -08002809 lq_sta->flush_timer = 0;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002810 lq_sta->supp_rates = sta->supp_rates[sband->band];
Zhu Yib481de92007-09-25 17:54:57 -07002811 for (j = 0; j < LQ_SIZE; j++)
2812 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002813 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002814
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08002815 IWL_DEBUG_RATE(priv, "LQ: *** rate scale station global init for station %d ***\n",
2816 sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002817 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2818 * the lowest or the highest rate.. Could consider using RSSI from
2819 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2820 * after assoc.. */
2821
Tomas Winklerc33104f2008-01-14 17:46:21 -08002822 lq_sta->is_dup = 0;
Abbas, Mohamedc6ec7a92009-01-20 21:33:52 -08002823 lq_sta->max_rate_idx = -1;
Abbas, Mohamed7d049e52009-01-20 21:33:53 -08002824 lq_sta->missed_rate_counter = IWL_MISSED_RATE_MAX;
Johannes Berg7e6a5882010-08-23 10:46:46 +02002825 lq_sta->is_green = rs_use_green(sta);
Guy Cohen39e88502008-04-23 17:14:57 -07002826 lq_sta->active_legacy_rate = priv->active_rate & ~(0x1000);
Johannes Berg8318d782008-01-24 19:38:38 +01002827 lq_sta->band = priv->band;
Ben Cahill77626352007-11-29 11:09:44 +08002828 /*
2829 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2830 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2831 */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002832 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2833 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002834 lq_sta->active_siso_rate &= ~((u16)0x2);
2835 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002836
Ben Cahill77626352007-11-29 11:09:44 +08002837 /* Same here */
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002838 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2839 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002840 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2841 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2842
Daniel C Halperin7869b0e2009-08-13 13:30:52 -07002843 lq_sta->active_mimo3_rate = ht_cap->mcs.rx_mask[2] << 1;
2844 lq_sta->active_mimo3_rate |= ht_cap->mcs.rx_mask[2] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002845 lq_sta->active_mimo3_rate &= ~((u16)0x2);
2846 lq_sta->active_mimo3_rate <<= IWL_FIRST_OFDM_RATE;
2847
Tomas Winklere1623442009-01-27 14:27:56 -08002848 IWL_DEBUG_RATE(priv, "SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002849 lq_sta->active_siso_rate,
Guy Cohenfde0db32008-04-21 15:42:01 -07002850 lq_sta->active_mimo2_rate,
2851 lq_sta->active_mimo3_rate);
2852
Tomas Winklera96a27f2008-10-23 23:48:56 -07002853 /* These values will be overridden later */
Wey-Yi Guy3a23d692010-04-03 16:44:39 -07002854 lq_sta->lq.general_params.single_stream_ant_msk =
2855 first_antenna(priv->hw_params.valid_tx_ant);
2856 lq_sta->lq.general_params.dual_stream_ant_msk =
2857 priv->hw_params.valid_tx_ant &
2858 ~first_antenna(priv->hw_params.valid_tx_ant);
2859 if (!lq_sta->lq.general_params.dual_stream_ant_msk) {
2860 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2861 } else if (num_of_ant(priv->hw_params.valid_tx_ant) == 2) {
2862 lq_sta->lq.general_params.dual_stream_ant_msk =
2863 priv->hw_params.valid_tx_ant;
2864 }
Guy Cohen07bc28e2008-04-23 17:15:03 -07002865
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002866 /* as default allow aggregation for all tids */
2867 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002868 lq_sta->drv = priv;
Zhu Yib481de92007-09-25 17:54:57 -07002869
Daniel C Halperin50273092009-08-28 09:44:45 -07002870 /* Set last_txrate_idx to lowest rate */
2871 lq_sta->last_txrate_idx = rate_lowest_index(sband, sta);
2872 if (sband->band == IEEE80211_BAND_5GHZ)
2873 lq_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
Daniel C Halperine3949d62009-09-17 10:43:50 -07002874 lq_sta->is_agg = 0;
Mohamed Abbasd5e49032008-12-12 08:22:15 -08002875
Johannes Berg4b7679a2008-09-18 18:14:18 +02002876 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002877}
2878
Wey-Yi Guy46f93812009-07-24 11:13:03 -07002879static void rs_fill_link_cmd(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08002880 struct iwl_lq_sta *lq_sta, u32 new_rate)
Zhu Yib481de92007-09-25 17:54:57 -07002881{
Tomas Winklere227cea2008-07-18 13:53:05 +08002882 struct iwl_scale_tbl_info tbl_type;
Zhu Yib481de92007-09-25 17:54:57 -07002883 int index = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002884 int rate_idx;
Zhu Yi1b696de2007-09-27 11:27:41 +08002885 int repeat_rate = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07002886 u8 ant_toggle_cnt = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002887 u8 use_ht_possible = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07002888 u8 valid_tx_ant = 0;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002889 struct iwl_link_quality_cmd *lq_cmd = &lq_sta->lq;
Zhu Yib481de92007-09-25 17:54:57 -07002890
Ben Cahill77626352007-11-29 11:09:44 +08002891 /* Override starting rate (index 0) if needed for debug purposes */
Guy Cohen39e88502008-04-23 17:14:57 -07002892 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Zhu Yi98d7e092007-09-27 11:27:42 +08002893
Guy Cohen39e88502008-04-23 17:14:57 -07002894 /* Interpret new_rate (rate_n_flags) */
2895 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
Zhu Yib481de92007-09-25 17:54:57 -07002896 &tbl_type, &rate_idx);
2897
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002898 if (priv && priv->bt_full_concurrent) {
2899 /* 1x1 only */
2900 tbl_type.ant_type =
2901 first_antenna(priv->hw_params.valid_tx_ant);
2902 }
2903
Ben Cahill77626352007-11-29 11:09:44 +08002904 /* How many times should we repeat the initial rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002905 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002906 ant_toggle_cnt = 1;
Zhu Yi1b696de2007-09-27 11:27:41 +08002907 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002908 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002909 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002910 }
Zhu Yib481de92007-09-25 17:54:57 -07002911
2912 lq_cmd->general_params.mimo_delimiter =
2913 is_mimo(tbl_type.lq_type) ? 1 : 0;
Ben Cahill77626352007-11-29 11:09:44 +08002914
2915 /* Fill 1st table entry (index 0) */
Guy Cohen39e88502008-04-23 17:14:57 -07002916 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002917
Guy Cohen07bc28e2008-04-23 17:15:03 -07002918 if (num_of_ant(tbl_type.ant_type) == 1) {
2919 lq_cmd->general_params.single_stream_ant_msk =
2920 tbl_type.ant_type;
2921 } else if (num_of_ant(tbl_type.ant_type) == 2) {
2922 lq_cmd->general_params.dual_stream_ant_msk =
2923 tbl_type.ant_type;
2924 } /* otherwise we don't modify the existing value */
Zhu Yib481de92007-09-25 17:54:57 -07002925
2926 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002927 repeat_rate--;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07002928 if (priv) {
2929 if (priv->bt_full_concurrent)
2930 valid_tx_ant = ANT_A;
2931 else
2932 valid_tx_ant = priv->hw_params.valid_tx_ant;
2933 }
Guy Cohenaade00c2008-04-23 17:14:59 -07002934
Ben Cahill77626352007-11-29 11:09:44 +08002935 /* Fill rest of rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002936 while (index < LINK_QUAL_MAX_RETRY_NUM) {
Ben Cahill77626352007-11-29 11:09:44 +08002937 /* Repeat initial/next rate.
2938 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2939 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
Zhu Yi1b696de2007-09-27 11:27:41 +08002940 while (repeat_rate > 0 && (index < LINK_QUAL_MAX_RETRY_NUM)) {
Zhu Yib481de92007-09-25 17:54:57 -07002941 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002942 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2943 ant_toggle_cnt++;
2944 else if (priv &&
2945 rs_toggle_antenna(valid_tx_ant,
2946 &new_rate, &tbl_type))
2947 ant_toggle_cnt = 1;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002948 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002949
Ben Cahill77626352007-11-29 11:09:44 +08002950 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002951 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002952
2953 /* Fill next table entry */
Zhu Yib481de92007-09-25 17:54:57 -07002954 lq_cmd->rs_table[index].rate_n_flags =
Guy Cohen39e88502008-04-23 17:14:57 -07002955 cpu_to_le32(new_rate);
Zhu Yi1b696de2007-09-27 11:27:41 +08002956 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002957 index++;
2958 }
2959
Guy Cohen39e88502008-04-23 17:14:57 -07002960 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
Zhu Yib481de92007-09-25 17:54:57 -07002961 &rate_idx);
2962
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002963 if (priv && priv->bt_full_concurrent) {
2964 /* 1x1 only */
2965 tbl_type.ant_type =
2966 first_antenna(priv->hw_params.valid_tx_ant);
2967 }
2968
Ben Cahill77626352007-11-29 11:09:44 +08002969 /* Indicate to uCode which entries might be MIMO.
2970 * If initial rate was MIMO, this will finally end up
2971 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Zhu Yib481de92007-09-25 17:54:57 -07002972 if (is_mimo(tbl_type.lq_type))
2973 lq_cmd->general_params.mimo_delimiter = index;
2974
Ben Cahill77626352007-11-29 11:09:44 +08002975 /* Get next rate */
Guy Cohen39e88502008-04-23 17:14:57 -07002976 new_rate = rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2977 use_ht_possible);
Zhu Yib481de92007-09-25 17:54:57 -07002978
Ben Cahill77626352007-11-29 11:09:44 +08002979 /* How many times should we repeat the next rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002980 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002981 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2982 ant_toggle_cnt++;
2983 else if (priv &&
2984 rs_toggle_antenna(valid_tx_ant,
2985 &new_rate, &tbl_type))
2986 ant_toggle_cnt = 1;
2987
Zhu Yi1b696de2007-09-27 11:27:41 +08002988 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002989 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002990 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002991 }
Zhu Yib481de92007-09-25 17:54:57 -07002992
Ben Cahill77626352007-11-29 11:09:44 +08002993 /* Don't allow HT rates after next pass.
2994 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Zhu Yib481de92007-09-25 17:54:57 -07002995 use_ht_possible = 0;
2996
Ben Cahill77626352007-11-29 11:09:44 +08002997 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002998 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002999
3000 /* Fill next table entry */
Guy Cohen39e88502008-04-23 17:14:57 -07003001 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07003002
3003 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08003004 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07003005 }
3006
Wey-Yi Guy4d80d722009-10-02 13:44:01 -07003007 lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07003008 lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
Wey-Yi Guy74697012010-07-28 09:18:54 -07003009
Wey-Yi Guy13c33a02009-06-03 11:44:11 -07003010 lq_cmd->agg_params.agg_time_limit =
3011 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
Wey-Yi Guy74697012010-07-28 09:18:54 -07003012 /*
3013 * overwrite if needed, pass aggregation time limit
3014 * to uCode in uSec
3015 */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003016 if (priv && priv->cfg->bt_params &&
3017 priv->cfg->bt_params->agg_time_limit &&
Wey-Yi Guy66e863a52010-11-08 14:54:37 -08003018 priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)
Wey-Yi Guy74697012010-07-28 09:18:54 -07003019 lq_cmd->agg_params.agg_time_limit =
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003020 cpu_to_le16(priv->cfg->bt_params->agg_time_limit);
Zhu Yib481de92007-09-25 17:54:57 -07003021}
3022
Johannes Berg4b7679a2008-09-18 18:14:18 +02003023static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Zhu Yib481de92007-09-25 17:54:57 -07003024{
Johannes Berg4b7679a2008-09-18 18:14:18 +02003025 return hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003026}
3027/* rate scale requires free function to be implemented */
3028static void rs_free(void *priv_rate)
3029{
3030 return;
3031}
3032
Johannes Berg4b7679a2008-09-18 18:14:18 +02003033static void rs_free_sta(void *priv_r, struct ieee80211_sta *sta,
3034 void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07003035{
Rami Rosen45527c22008-10-07 09:50:01 +02003036 struct iwl_priv *priv __maybe_unused = priv_r;
Zhu Yib481de92007-09-25 17:54:57 -07003037
Tomas Winklere1623442009-01-27 14:27:56 -08003038 IWL_DEBUG_RATE(priv, "enter\n");
Tomas Winklere1623442009-01-27 14:27:56 -08003039 IWL_DEBUG_RATE(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003040}
3041
3042
Zhu Yi93dc6462007-09-27 11:27:37 +08003043#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi5ae212c2007-09-27 11:27:38 +08003044static int open_file_generic(struct inode *inode, struct file *file)
3045{
3046 file->private_data = inode->i_private;
3047 return 0;
3048}
Tomas Winklere227cea2008-07-18 13:53:05 +08003049static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
3050 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +08003051{
Ester Kummerbf403db2008-05-05 10:22:40 +08003052 struct iwl_priv *priv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07003053 u8 valid_tx_ant;
3054 u8 ant_sel_tx;
Ester Kummerbf403db2008-05-05 10:22:40 +08003055
3056 priv = lq_sta->drv;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07003057 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen39e88502008-04-23 17:14:57 -07003058 if (lq_sta->dbg_fixed_rate) {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07003059 ant_sel_tx =
3060 ((lq_sta->dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK)
3061 >> RATE_MCS_ANT_POS);
3062 if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
Guy Cohen39e88502008-04-23 17:14:57 -07003063 *rate_n_flags = lq_sta->dbg_fixed_rate;
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07003064 IWL_DEBUG_RATE(priv, "Fixed rate ON\n");
Guy Cohen39e88502008-04-23 17:14:57 -07003065 } else {
Wey-Yi Guy3c4955f2009-03-10 14:35:12 -07003066 lq_sta->dbg_fixed_rate = 0;
3067 IWL_ERR(priv,
3068 "Invalid antenna selection 0x%X, Valid is 0x%X\n",
3069 ant_sel_tx, valid_tx_ant);
3070 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Guy Cohen39e88502008-04-23 17:14:57 -07003071 }
Guy Cohen39e88502008-04-23 17:14:57 -07003072 } else {
Tomas Winklere1623442009-01-27 14:27:56 -08003073 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
Zhu Yi98d7e092007-09-27 11:27:42 +08003074 }
Zhu Yi98d7e092007-09-27 11:27:42 +08003075}
3076
3077static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
3078 const char __user *user_buf, size_t count, loff_t *ppos)
3079{
Tomas Winklere227cea2008-07-18 13:53:05 +08003080 struct iwl_lq_sta *lq_sta = file->private_data;
Ester Kummerbf403db2008-05-05 10:22:40 +08003081 struct iwl_priv *priv;
Zhu Yi98d7e092007-09-27 11:27:42 +08003082 char buf[64];
3083 int buf_size;
3084 u32 parsed_rate;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003085 struct iwl_station_priv *sta_priv =
3086 container_of(lq_sta, struct iwl_station_priv, lq_sta);
3087 struct iwl_rxon_context *ctx = sta_priv->common.ctx;
Zhu Yi98d7e092007-09-27 11:27:42 +08003088
Ester Kummerbf403db2008-05-05 10:22:40 +08003089 priv = lq_sta->drv;
Zhu Yi98d7e092007-09-27 11:27:42 +08003090 memset(buf, 0, sizeof(buf));
3091 buf_size = min(count, sizeof(buf) - 1);
3092 if (copy_from_user(buf, user_buf, buf_size))
3093 return -EFAULT;
3094
3095 if (sscanf(buf, "%x", &parsed_rate) == 1)
Guy Cohen39e88502008-04-23 17:14:57 -07003096 lq_sta->dbg_fixed_rate = parsed_rate;
Zhu Yi98d7e092007-09-27 11:27:42 +08003097 else
Guy Cohen39e88502008-04-23 17:14:57 -07003098 lq_sta->dbg_fixed_rate = 0;
Zhu Yi98d7e092007-09-27 11:27:42 +08003099
Guy Cohen39e88502008-04-23 17:14:57 -07003100 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
3101 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
3102 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
3103 lq_sta->active_mimo3_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Zhu Yi98d7e092007-09-27 11:27:42 +08003104
Tomas Winklere1623442009-01-27 14:27:56 -08003105 IWL_DEBUG_RATE(priv, "sta_id %d rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07003106 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08003107
Guy Cohen39e88502008-04-23 17:14:57 -07003108 if (lq_sta->dbg_fixed_rate) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07003109 rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Johannes Berg7e6a5882010-08-23 10:46:46 +02003110 iwl_send_lq_cmd(lq_sta->drv, ctx, &lq_sta->lq, CMD_ASYNC,
3111 false);
Zhu Yi98d7e092007-09-27 11:27:42 +08003112 }
3113
3114 return count;
3115}
Zhu Yi0209dc12007-09-27 11:27:43 +08003116
Zhu Yi5ae212c2007-09-27 11:27:38 +08003117static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
3118 char __user *user_buf, size_t count, loff_t *ppos)
3119{
Frank Seidela412c802009-03-01 20:25:38 +01003120 char *buff;
Zhu Yi5ae212c2007-09-27 11:27:38 +08003121 int desc = 0;
3122 int i = 0;
Wey-Yi Guy12b96812009-04-08 11:39:27 -07003123 int index = 0;
Frank Seidela412c802009-03-01 20:25:38 +01003124 ssize_t ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08003125
Tomas Winklere227cea2008-07-18 13:53:05 +08003126 struct iwl_lq_sta *lq_sta = file->private_data;
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07003127 struct iwl_priv *priv;
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07003128 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003129
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07003130 priv = lq_sta->drv;
Frank Seidela412c802009-03-01 20:25:38 +01003131 buff = kmalloc(1024, GFP_KERNEL);
3132 if (!buff)
3133 return -ENOMEM;
3134
Tomas Winklerc33104f2008-01-14 17:46:21 -08003135 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
Zhu Yi98d7e092007-09-27 11:27:42 +08003136 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003137 lq_sta->total_failed, lq_sta->total_success,
Guy Cohen39e88502008-04-23 17:14:57 -07003138 lq_sta->active_legacy_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08003139 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07003140 lq_sta->dbg_fixed_rate);
Wey-Yi Guyd8ae4f52009-03-10 14:35:07 -07003141 desc += sprintf(buff+desc, "valid_tx_ant %s%s%s\n",
3142 (priv->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
3143 (priv->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
3144 (priv->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07003145 desc += sprintf(buff+desc, "lq type %s\n",
3146 (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
3147 if (is_Ht(tbl->lq_type)) {
3148 desc += sprintf(buff+desc, " %s",
3149 (is_siso(tbl->lq_type)) ? "SISO" :
3150 ((is_mimo2(tbl->lq_type)) ? "MIMO2" : "MIMO3"));
3151 desc += sprintf(buff+desc, " %s",
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07003152 (tbl->is_ht40) ? "40MHz" : "20MHz");
Daniel C Halperine3949d62009-09-17 10:43:50 -07003153 desc += sprintf(buff+desc, " %s %s %s\n", (tbl->is_SGI) ? "SGI" : "",
3154 (lq_sta->is_green) ? "GF enabled" : "",
3155 (lq_sta->is_agg) ? "AGG on" : "");
Wey-Yi Guyadb7b5e2009-03-10 14:35:08 -07003156 }
Wey-Yi Guy12b96812009-04-08 11:39:27 -07003157 desc += sprintf(buff+desc, "last tx rate=0x%X\n",
3158 lq_sta->last_rate_n_flags);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003159 desc += sprintf(buff+desc, "general:"
3160 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003161 lq_sta->lq.general_params.flags,
3162 lq_sta->lq.general_params.mimo_delimiter,
3163 lq_sta->lq.general_params.single_stream_ant_msk,
3164 lq_sta->lq.general_params.dual_stream_ant_msk);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003165
3166 desc += sprintf(buff+desc, "agg:"
3167 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003168 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
3169 lq_sta->lq.agg_params.agg_dis_start_th,
3170 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003171
3172 desc += sprintf(buff+desc,
3173 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003174 lq_sta->lq.general_params.start_rate_index[0],
3175 lq_sta->lq.general_params.start_rate_index[1],
3176 lq_sta->lq.general_params.start_rate_index[2],
3177 lq_sta->lq.general_params.start_rate_index[3]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08003178
Wey-Yi Guy12b96812009-04-08 11:39:27 -07003179 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
3180 index = iwl_hwrate_to_plcp_idx(
3181 le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags));
3182 if (is_legacy(tbl->lq_type)) {
3183 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps\n",
3184 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
3185 iwl_rate_mcs[index].mbps);
3186 } else {
3187 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps (%s)\n",
3188 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
3189 iwl_rate_mcs[index].mbps, iwl_rate_mcs[index].mcs);
3190 }
3191 }
Zhu Yi5ae212c2007-09-27 11:27:38 +08003192
Frank Seidela412c802009-03-01 20:25:38 +01003193 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3194 kfree(buff);
3195 return ret;
Zhu Yi5ae212c2007-09-27 11:27:38 +08003196}
3197
3198static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Zhu Yi98d7e092007-09-27 11:27:42 +08003199 .write = rs_sta_dbgfs_scale_table_write,
Zhu Yi5ae212c2007-09-27 11:27:38 +08003200 .read = rs_sta_dbgfs_scale_table_read,
3201 .open = open_file_generic,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003202 .llseek = default_llseek,
Zhu Yi5ae212c2007-09-27 11:27:38 +08003203};
Zhu Yi0209dc12007-09-27 11:27:43 +08003204static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
3205 char __user *user_buf, size_t count, loff_t *ppos)
3206{
Frank Seidela412c802009-03-01 20:25:38 +01003207 char *buff;
Zhu Yi0209dc12007-09-27 11:27:43 +08003208 int desc = 0;
3209 int i, j;
Frank Seidela412c802009-03-01 20:25:38 +01003210 ssize_t ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08003211
Tomas Winklere227cea2008-07-18 13:53:05 +08003212 struct iwl_lq_sta *lq_sta = file->private_data;
Frank Seidela412c802009-03-01 20:25:38 +01003213
3214 buff = kmalloc(1024, GFP_KERNEL);
3215 if (!buff)
3216 return -ENOMEM;
3217
Zhu Yi0209dc12007-09-27 11:27:43 +08003218 for (i = 0; i < LQ_SIZE; i++) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07003219 desc += sprintf(buff+desc,
3220 "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
Zhu Yi0209dc12007-09-27 11:27:43 +08003221 "rate=0x%X\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08003222 lq_sta->active_tbl == i ? "*" : "x",
Tomas Winklerc33104f2008-01-14 17:46:21 -08003223 lq_sta->lq_info[i].lq_type,
3224 lq_sta->lq_info[i].is_SGI,
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07003225 lq_sta->lq_info[i].is_ht40,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003226 lq_sta->lq_info[i].is_dup,
Wey-Yi Guy2681b202009-05-21 13:44:22 -07003227 lq_sta->is_green,
Guy Cohen39e88502008-04-23 17:14:57 -07003228 lq_sta->lq_info[i].current_rate);
Zhu Yi0209dc12007-09-27 11:27:43 +08003229 for (j = 0; j < IWL_RATE_COUNT; j++) {
3230 desc += sprintf(buff+desc,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003231 "counter=%d success=%d %%=%d\n",
3232 lq_sta->lq_info[i].win[j].counter,
3233 lq_sta->lq_info[i].win[j].success_counter,
3234 lq_sta->lq_info[i].win[j].success_ratio);
Zhu Yi0209dc12007-09-27 11:27:43 +08003235 }
3236 }
Frank Seidela412c802009-03-01 20:25:38 +01003237 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3238 kfree(buff);
3239 return ret;
Zhu Yi0209dc12007-09-27 11:27:43 +08003240}
3241
3242static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
3243 .read = rs_sta_dbgfs_stats_table_read,
3244 .open = open_file_generic,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003245 .llseek = default_llseek,
Zhu Yi0209dc12007-09-27 11:27:43 +08003246};
Zhu Yi5ae212c2007-09-27 11:27:38 +08003247
Wey-Yi Guy38167452009-05-08 13:44:43 -07003248static ssize_t rs_sta_dbgfs_rate_scale_data_read(struct file *file,
3249 char __user *user_buf, size_t count, loff_t *ppos)
3250{
3251 char buff[120];
3252 int desc = 0;
3253 ssize_t ret;
3254
3255 struct iwl_lq_sta *lq_sta = file->private_data;
3256 struct iwl_priv *priv;
3257 struct iwl_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
3258
3259 priv = lq_sta->drv;
3260
3261 if (is_Ht(tbl->lq_type))
3262 desc += sprintf(buff+desc,
3263 "Bit Rate= %d Mb/s\n",
3264 tbl->expected_tpt[lq_sta->last_txrate_idx]);
3265 else
3266 desc += sprintf(buff+desc,
3267 "Bit Rate= %d Mb/s\n",
3268 iwl_rates[lq_sta->last_txrate_idx].ieee >> 1);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003269
3270 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3271 return ret;
3272}
3273
3274static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
3275 .read = rs_sta_dbgfs_rate_scale_data_read,
3276 .open = open_file_generic,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003277 .llseek = default_llseek,
Wey-Yi Guy38167452009-05-08 13:44:43 -07003278};
3279
Zhu Yi93dc6462007-09-27 11:27:37 +08003280static void rs_add_debugfs(void *priv, void *priv_sta,
3281 struct dentry *dir)
3282{
Tomas Winklere227cea2008-07-18 13:53:05 +08003283 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08003284 lq_sta->rs_sta_dbgfs_scale_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003285 debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003286 lq_sta, &rs_sta_dbgfs_scale_table_ops);
3287 lq_sta->rs_sta_dbgfs_stats_table_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003288 debugfs_create_file("rate_stats_table", S_IRUSR, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08003289 lq_sta, &rs_sta_dbgfs_stats_table_ops);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003290 lq_sta->rs_sta_dbgfs_rate_scale_data_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003291 debugfs_create_file("rate_scale_data", S_IRUSR, dir,
Wey-Yi Guy38167452009-05-08 13:44:43 -07003292 lq_sta, &rs_sta_dbgfs_rate_scale_data_ops);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003293 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
Wey-Yi Guy43e85112009-11-20 12:04:58 -08003294 debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003295 &lq_sta->tx_agg_tid_en);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003296
Zhu Yi93dc6462007-09-27 11:27:37 +08003297}
3298
3299static void rs_remove_debugfs(void *priv, void *priv_sta)
3300{
Tomas Winklere227cea2008-07-18 13:53:05 +08003301 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08003302 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
3303 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
Wey-Yi Guy38167452009-05-08 13:44:43 -07003304 debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02003305 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
Zhu Yi93dc6462007-09-27 11:27:37 +08003306}
3307#endif
3308
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003309/*
3310 * Initialization of rate scaling information is done by driver after
3311 * the station is added. Since mac80211 calls this function before a
3312 * station is added we ignore it.
3313 */
3314static void rs_rate_init_stub(void *priv_r, struct ieee80211_supported_band *sband,
3315 struct ieee80211_sta *sta, void *priv_sta)
3316{
3317}
Zhu Yib481de92007-09-25 17:54:57 -07003318static struct rate_control_ops rs_ops = {
3319 .module = NULL,
3320 .name = RS_NAME,
3321 .tx_status = rs_tx_status,
3322 .get_rate = rs_get_rate,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003323 .rate_init = rs_rate_init_stub,
Zhu Yib481de92007-09-25 17:54:57 -07003324 .alloc = rs_alloc,
3325 .free = rs_free,
3326 .alloc_sta = rs_alloc_sta,
3327 .free_sta = rs_free_sta,
Zhu Yi93dc6462007-09-27 11:27:37 +08003328#ifdef CONFIG_MAC80211_DEBUGFS
3329 .add_sta_debugfs = rs_add_debugfs,
3330 .remove_sta_debugfs = rs_remove_debugfs,
3331#endif
Zhu Yib481de92007-09-25 17:54:57 -07003332};
3333
Tomas Winklere227cea2008-07-18 13:53:05 +08003334int iwlagn_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -07003335{
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003336 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -07003337}
3338
Tomas Winklere227cea2008-07-18 13:53:05 +08003339void iwlagn_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -07003340{
3341 ieee80211_rate_control_unregister(&rs_ops);
3342}
3343