blob: aa785cf3cf68399eb724b33d24d9168602f791a1 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02003 * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
Eyal Shapirafcc5e852015-04-12 23:45:27 +03004 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02005 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +01006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
19 *
20 * The full GNU General Public License is included in this distribution in the
21 * file called LICENSE.
22 *
23 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020024 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010025 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26 *
27 *****************************************************************************/
28#include <linux/kernel.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010029#include <linux/skbuff.h>
30#include <linux/slab.h>
31#include <net/mac80211.h>
32
33#include <linux/netdevice.h>
34#include <linux/etherdevice.h>
35#include <linux/delay.h>
36
37#include <linux/workqueue.h>
38#include "rs.h"
39#include "fw-api.h"
40#include "sta.h"
41#include "iwl-op-mode.h"
42#include "mvm.h"
Eyal Shapira1e9c62f2015-01-28 14:44:06 +020043#include "debugfs.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010044
45#define RS_NAME "iwl-mvm-rs"
46
Johannes Berg8ca151b2013-01-24 14:25:36 +010047#define IWL_RATE_MAX_WINDOW 62 /* # tx in history window */
Johannes Berg8ca151b2013-01-24 14:25:36 +010048
Eyal Shapira834437d2014-12-17 15:38:58 +020049/* Calculations of success ratio are done in fixed point where 12800 is 100%.
50 * Use this macro when dealing with thresholds consts set as a percentage
51 */
52#define RS_PERCENT(x) (128 * x)
Johannes Berg8ca151b2013-01-24 14:25:36 +010053
54static u8 rs_ht_to_legacy[] = {
Eyal Shapirada87d7d2013-11-28 12:27:03 +020055 [IWL_RATE_MCS_0_INDEX] = IWL_RATE_6M_INDEX,
56 [IWL_RATE_MCS_1_INDEX] = IWL_RATE_9M_INDEX,
57 [IWL_RATE_MCS_2_INDEX] = IWL_RATE_12M_INDEX,
58 [IWL_RATE_MCS_3_INDEX] = IWL_RATE_18M_INDEX,
59 [IWL_RATE_MCS_4_INDEX] = IWL_RATE_24M_INDEX,
60 [IWL_RATE_MCS_5_INDEX] = IWL_RATE_36M_INDEX,
61 [IWL_RATE_MCS_6_INDEX] = IWL_RATE_48M_INDEX,
62 [IWL_RATE_MCS_7_INDEX] = IWL_RATE_54M_INDEX,
63 [IWL_RATE_MCS_8_INDEX] = IWL_RATE_54M_INDEX,
64 [IWL_RATE_MCS_9_INDEX] = IWL_RATE_54M_INDEX,
Johannes Berg8ca151b2013-01-24 14:25:36 +010065};
66
67static const u8 ant_toggle_lookup[] = {
Eliad Pelleref4394b2013-07-16 18:07:20 +030068 [ANT_NONE] = ANT_NONE,
69 [ANT_A] = ANT_B,
70 [ANT_B] = ANT_C,
71 [ANT_AB] = ANT_BC,
72 [ANT_C] = ANT_A,
73 [ANT_AC] = ANT_AB,
74 [ANT_BC] = ANT_AC,
75 [ANT_ABC] = ANT_ABC,
Johannes Berg8ca151b2013-01-24 14:25:36 +010076};
77
Eyal Shapirad310e402013-08-11 18:43:47 +030078#define IWL_DECLARE_RATE_INFO(r, s, rp, rn) \
79 [IWL_RATE_##r##M_INDEX] = { IWL_RATE_##r##M_PLCP, \
80 IWL_RATE_HT_SISO_MCS_##s##_PLCP, \
81 IWL_RATE_HT_MIMO2_MCS_##s##_PLCP, \
82 IWL_RATE_VHT_SISO_MCS_##s##_PLCP, \
83 IWL_RATE_VHT_MIMO2_MCS_##s##_PLCP,\
84 IWL_RATE_##rp##M_INDEX, \
Eyal Shapiraab055ce2013-08-04 13:10:31 +030085 IWL_RATE_##rn##M_INDEX }
Johannes Berg8ca151b2013-01-24 14:25:36 +010086
Eyal Shapirad310e402013-08-11 18:43:47 +030087#define IWL_DECLARE_MCS_RATE(s) \
88 [IWL_RATE_MCS_##s##_INDEX] = { IWL_RATE_INVM_PLCP, \
89 IWL_RATE_HT_SISO_MCS_##s##_PLCP, \
90 IWL_RATE_HT_MIMO2_MCS_##s##_PLCP, \
91 IWL_RATE_VHT_SISO_MCS_##s##_PLCP, \
92 IWL_RATE_VHT_MIMO2_MCS_##s##_PLCP, \
93 IWL_RATE_INVM_INDEX, \
94 IWL_RATE_INVM_INDEX }
95
Johannes Berg8ca151b2013-01-24 14:25:36 +010096/*
97 * Parameter order:
Eyal Shapiraab055ce2013-08-04 13:10:31 +030098 * rate, ht rate, prev rate, next rate
Johannes Berg8ca151b2013-01-24 14:25:36 +010099 *
100 * If there isn't a valid next or previous rate then INV is used which
101 * maps to IWL_RATE_INVALID
102 *
103 */
104static const struct iwl_rs_rate_info iwl_rates[IWL_RATE_COUNT] = {
Eyal Shapiraab055ce2013-08-04 13:10:31 +0300105 IWL_DECLARE_RATE_INFO(1, INV, INV, 2), /* 1mbps */
106 IWL_DECLARE_RATE_INFO(2, INV, 1, 5), /* 2mbps */
107 IWL_DECLARE_RATE_INFO(5, INV, 2, 11), /*5.5mbps */
108 IWL_DECLARE_RATE_INFO(11, INV, 9, 12), /* 11mbps */
Eyal Shapirad310e402013-08-11 18:43:47 +0300109 IWL_DECLARE_RATE_INFO(6, 0, 5, 11), /* 6mbps ; MCS 0 */
110 IWL_DECLARE_RATE_INFO(9, INV, 6, 11), /* 9mbps */
111 IWL_DECLARE_RATE_INFO(12, 1, 11, 18), /* 12mbps ; MCS 1 */
112 IWL_DECLARE_RATE_INFO(18, 2, 12, 24), /* 18mbps ; MCS 2 */
113 IWL_DECLARE_RATE_INFO(24, 3, 18, 36), /* 24mbps ; MCS 3 */
114 IWL_DECLARE_RATE_INFO(36, 4, 24, 48), /* 36mbps ; MCS 4 */
115 IWL_DECLARE_RATE_INFO(48, 5, 36, 54), /* 48mbps ; MCS 5 */
116 IWL_DECLARE_RATE_INFO(54, 6, 48, INV), /* 54mbps ; MCS 6 */
117 IWL_DECLARE_MCS_RATE(7), /* MCS 7 */
118 IWL_DECLARE_MCS_RATE(8), /* MCS 8 */
119 IWL_DECLARE_MCS_RATE(9), /* MCS 9 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100120};
121
Eyal Shapira4e4b8152013-12-11 00:55:36 +0200122enum rs_action {
123 RS_ACTION_STAY = 0,
124 RS_ACTION_DOWNSCALE = -1,
125 RS_ACTION_UPSCALE = 1,
126};
127
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200128enum rs_column_mode {
129 RS_INVALID = 0,
130 RS_LEGACY,
131 RS_SISO,
132 RS_MIMO2,
133};
134
Eyal Shapirafd7dbee2014-04-06 04:39:23 +0300135#define MAX_NEXT_COLUMNS 7
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200136#define MAX_COLUMN_CHECKS 3
137
Eyal Shapira0b8d17f2015-02-02 15:21:27 +0200138struct rs_tx_column;
139
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200140typedef bool (*allow_column_func_t) (struct iwl_mvm *mvm,
141 struct ieee80211_sta *sta,
Eyal Shapirabb8f44c2015-05-27 22:00:03 +0300142 struct rs_rate *rate,
Eyal Shapira0b8d17f2015-02-02 15:21:27 +0200143 const struct rs_tx_column *next_col);
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200144
145struct rs_tx_column {
146 enum rs_column_mode mode;
147 u8 ant;
148 bool sgi;
149 enum rs_column next_columns[MAX_NEXT_COLUMNS];
150 allow_column_func_t checks[MAX_COLUMN_CHECKS];
151};
152
Emmanuel Grumbach219fb662014-10-30 11:59:40 +0200153static bool rs_ant_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Eyal Shapirabb8f44c2015-05-27 22:00:03 +0300154 struct rs_rate *rate,
Eyal Shapira0b8d17f2015-02-02 15:21:27 +0200155 const struct rs_tx_column *next_col)
Emmanuel Grumbach219fb662014-10-30 11:59:40 +0200156{
Eyal Shapira0b8d17f2015-02-02 15:21:27 +0200157 return iwl_mvm_bt_coex_is_ant_avail(mvm, next_col->ant);
Emmanuel Grumbach219fb662014-10-30 11:59:40 +0200158}
159
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200160static bool rs_mimo_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Eyal Shapirabb8f44c2015-05-27 22:00:03 +0300161 struct rs_rate *rate,
Eyal Shapira0b8d17f2015-02-02 15:21:27 +0200162 const struct rs_tx_column *next_col)
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200163{
164 if (!sta->ht_cap.ht_supported)
165 return false;
166
167 if (sta->smps_mode == IEEE80211_SMPS_STATIC)
168 return false;
169
Moshe Harela0544272014-12-08 21:13:14 +0200170 if (num_of_ant(iwl_mvm_get_valid_tx_ant(mvm)) < 2)
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200171 return false;
172
173 if (!iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta))
174 return false;
175
Emmanuel Grumbach5f0d98f2014-10-30 10:19:38 +0200176 if (mvm->nvm_data->sku_cap_mimo_disabled)
177 return false;
178
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200179 return true;
180}
181
182static bool rs_siso_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Eyal Shapirabb8f44c2015-05-27 22:00:03 +0300183 struct rs_rate *rate,
Eyal Shapira0b8d17f2015-02-02 15:21:27 +0200184 const struct rs_tx_column *next_col)
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200185{
186 if (!sta->ht_cap.ht_supported)
187 return false;
188
189 return true;
190}
191
192static bool rs_sgi_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Eyal Shapirabb8f44c2015-05-27 22:00:03 +0300193 struct rs_rate *rate,
Eyal Shapira0b8d17f2015-02-02 15:21:27 +0200194 const struct rs_tx_column *next_col)
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200195{
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200196 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
197 struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap;
198
199 if (is_ht20(rate) && (ht_cap->cap &
200 IEEE80211_HT_CAP_SGI_20))
201 return true;
202 if (is_ht40(rate) && (ht_cap->cap &
203 IEEE80211_HT_CAP_SGI_40))
204 return true;
205 if (is_ht80(rate) && (vht_cap->cap &
206 IEEE80211_VHT_CAP_SHORT_GI_80))
207 return true;
Gregory Greenman855f4922016-05-25 18:31:39 +0300208 if (is_ht160(rate) && (vht_cap->cap &
209 IEEE80211_VHT_CAP_SHORT_GI_160))
210 return true;
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200211
212 return false;
213}
214
215static const struct rs_tx_column rs_tx_columns[] = {
216 [RS_COLUMN_LEGACY_ANT_A] = {
217 .mode = RS_LEGACY,
218 .ant = ANT_A,
219 .next_columns = {
220 RS_COLUMN_LEGACY_ANT_B,
221 RS_COLUMN_SISO_ANT_A,
Eyal Shapira31b20452014-04-08 17:52:27 +0300222 RS_COLUMN_MIMO2,
Eyal Shapirad8fff912014-04-06 05:27:36 +0300223 RS_COLUMN_INVALID,
224 RS_COLUMN_INVALID,
Eyal Shapirafd7dbee2014-04-06 04:39:23 +0300225 RS_COLUMN_INVALID,
226 RS_COLUMN_INVALID,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200227 },
Emmanuel Grumbach219fb662014-10-30 11:59:40 +0200228 .checks = {
229 rs_ant_allow,
230 },
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200231 },
232 [RS_COLUMN_LEGACY_ANT_B] = {
233 .mode = RS_LEGACY,
234 .ant = ANT_B,
235 .next_columns = {
236 RS_COLUMN_LEGACY_ANT_A,
237 RS_COLUMN_SISO_ANT_B,
Eyal Shapira31b20452014-04-08 17:52:27 +0300238 RS_COLUMN_MIMO2,
Eyal Shapirad8fff912014-04-06 05:27:36 +0300239 RS_COLUMN_INVALID,
240 RS_COLUMN_INVALID,
Eyal Shapirafd7dbee2014-04-06 04:39:23 +0300241 RS_COLUMN_INVALID,
242 RS_COLUMN_INVALID,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200243 },
Emmanuel Grumbach219fb662014-10-30 11:59:40 +0200244 .checks = {
245 rs_ant_allow,
246 },
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200247 },
248 [RS_COLUMN_SISO_ANT_A] = {
249 .mode = RS_SISO,
250 .ant = ANT_A,
251 .next_columns = {
252 RS_COLUMN_SISO_ANT_B,
253 RS_COLUMN_MIMO2,
254 RS_COLUMN_SISO_ANT_A_SGI,
Eyal Shapirafd7dbee2014-04-06 04:39:23 +0300255 RS_COLUMN_LEGACY_ANT_A,
256 RS_COLUMN_LEGACY_ANT_B,
Eyal Shapirad8fff912014-04-06 05:27:36 +0300257 RS_COLUMN_INVALID,
Eyal Shapira31b20452014-04-08 17:52:27 +0300258 RS_COLUMN_INVALID,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200259 },
260 .checks = {
261 rs_siso_allow,
Emmanuel Grumbach219fb662014-10-30 11:59:40 +0200262 rs_ant_allow,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200263 },
264 },
265 [RS_COLUMN_SISO_ANT_B] = {
266 .mode = RS_SISO,
267 .ant = ANT_B,
268 .next_columns = {
269 RS_COLUMN_SISO_ANT_A,
270 RS_COLUMN_MIMO2,
271 RS_COLUMN_SISO_ANT_B_SGI,
Eyal Shapirafd7dbee2014-04-06 04:39:23 +0300272 RS_COLUMN_LEGACY_ANT_A,
273 RS_COLUMN_LEGACY_ANT_B,
Eyal Shapirad8fff912014-04-06 05:27:36 +0300274 RS_COLUMN_INVALID,
Eyal Shapira31b20452014-04-08 17:52:27 +0300275 RS_COLUMN_INVALID,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200276 },
277 .checks = {
278 rs_siso_allow,
Emmanuel Grumbach219fb662014-10-30 11:59:40 +0200279 rs_ant_allow,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200280 },
281 },
282 [RS_COLUMN_SISO_ANT_A_SGI] = {
283 .mode = RS_SISO,
284 .ant = ANT_A,
285 .sgi = true,
286 .next_columns = {
287 RS_COLUMN_SISO_ANT_B_SGI,
288 RS_COLUMN_MIMO2_SGI,
289 RS_COLUMN_SISO_ANT_A,
Eyal Shapirafd7dbee2014-04-06 04:39:23 +0300290 RS_COLUMN_LEGACY_ANT_A,
291 RS_COLUMN_LEGACY_ANT_B,
Eyal Shapira31b20452014-04-08 17:52:27 +0300292 RS_COLUMN_INVALID,
293 RS_COLUMN_INVALID,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200294 },
295 .checks = {
296 rs_siso_allow,
Emmanuel Grumbach219fb662014-10-30 11:59:40 +0200297 rs_ant_allow,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200298 rs_sgi_allow,
299 },
300 },
301 [RS_COLUMN_SISO_ANT_B_SGI] = {
302 .mode = RS_SISO,
303 .ant = ANT_B,
304 .sgi = true,
305 .next_columns = {
306 RS_COLUMN_SISO_ANT_A_SGI,
307 RS_COLUMN_MIMO2_SGI,
308 RS_COLUMN_SISO_ANT_B,
Eyal Shapirafd7dbee2014-04-06 04:39:23 +0300309 RS_COLUMN_LEGACY_ANT_A,
310 RS_COLUMN_LEGACY_ANT_B,
Eyal Shapira31b20452014-04-08 17:52:27 +0300311 RS_COLUMN_INVALID,
312 RS_COLUMN_INVALID,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200313 },
314 .checks = {
315 rs_siso_allow,
Emmanuel Grumbach219fb662014-10-30 11:59:40 +0200316 rs_ant_allow,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200317 rs_sgi_allow,
318 },
319 },
320 [RS_COLUMN_MIMO2] = {
321 .mode = RS_MIMO2,
322 .ant = ANT_AB,
323 .next_columns = {
324 RS_COLUMN_SISO_ANT_A,
325 RS_COLUMN_MIMO2_SGI,
Eyal Shapirafd7dbee2014-04-06 04:39:23 +0300326 RS_COLUMN_LEGACY_ANT_A,
327 RS_COLUMN_LEGACY_ANT_B,
Eyal Shapira31b20452014-04-08 17:52:27 +0300328 RS_COLUMN_INVALID,
329 RS_COLUMN_INVALID,
330 RS_COLUMN_INVALID,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200331 },
332 .checks = {
333 rs_mimo_allow,
334 },
335 },
336 [RS_COLUMN_MIMO2_SGI] = {
337 .mode = RS_MIMO2,
338 .ant = ANT_AB,
339 .sgi = true,
340 .next_columns = {
341 RS_COLUMN_SISO_ANT_A_SGI,
342 RS_COLUMN_MIMO2,
Eyal Shapirafd7dbee2014-04-06 04:39:23 +0300343 RS_COLUMN_LEGACY_ANT_A,
344 RS_COLUMN_LEGACY_ANT_B,
Eyal Shapira31b20452014-04-08 17:52:27 +0300345 RS_COLUMN_INVALID,
346 RS_COLUMN_INVALID,
347 RS_COLUMN_INVALID,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200348 },
349 .checks = {
350 rs_mimo_allow,
351 rs_sgi_allow,
352 },
353 },
354};
355
Johannes Berg8ca151b2013-01-24 14:25:36 +0100356static inline u8 rs_extract_rate(u32 rate_n_flags)
357{
358 /* also works for HT because bits 7:6 are zero there */
359 return (u8)(rate_n_flags & RATE_LEGACY_RATE_MSK);
360}
361
362static int iwl_hwrate_to_plcp_idx(u32 rate_n_flags)
363{
364 int idx = 0;
365
Johannes Berg8ca151b2013-01-24 14:25:36 +0100366 if (rate_n_flags & RATE_MCS_HT_MSK) {
Eyal Shapirad310e402013-08-11 18:43:47 +0300367 idx = rate_n_flags & RATE_HT_MCS_RATE_CODE_MSK;
368 idx += IWL_RATE_MCS_0_INDEX;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100369
Eyal Shapirad310e402013-08-11 18:43:47 +0300370 /* skip 9M not supported in HT*/
Johannes Berg8ca151b2013-01-24 14:25:36 +0100371 if (idx >= IWL_RATE_9M_INDEX)
372 idx += 1;
Eyal Shapira4e82dd32013-08-04 23:58:37 +0300373 if ((idx >= IWL_FIRST_HT_RATE) && (idx <= IWL_LAST_HT_RATE))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100374 return idx;
Eyal Shapirad310e402013-08-11 18:43:47 +0300375 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
376 idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
377 idx += IWL_RATE_MCS_0_INDEX;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100378
Eyal Shapirad310e402013-08-11 18:43:47 +0300379 /* skip 9M not supported in VHT*/
380 if (idx >= IWL_RATE_9M_INDEX)
381 idx++;
382 if ((idx >= IWL_FIRST_VHT_RATE) && (idx <= IWL_LAST_VHT_RATE))
383 return idx;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100384 } else {
Eyal Shapirad310e402013-08-11 18:43:47 +0300385 /* legacy rate format, search for match in table */
386
387 u8 legacy_rate = rs_extract_rate(rate_n_flags);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100388 for (idx = 0; idx < ARRAY_SIZE(iwl_rates); idx++)
Eyal Shapirad310e402013-08-11 18:43:47 +0300389 if (iwl_rates[idx].plcp == legacy_rate)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100390 return idx;
391 }
392
Eyal Shapira560843f2014-01-05 21:04:19 +0200393 return IWL_RATE_INVALID;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100394}
395
396static void rs_rate_scale_perform(struct iwl_mvm *mvm,
Eyal Shapira1ebc8f22014-09-14 15:23:23 +0300397 struct ieee80211_sta *sta,
398 struct iwl_lq_sta *lq_sta,
Matti Gottliebff7a68d2016-05-17 10:50:08 +0300399 int tid, bool ndp);
Eyal Shapira8fc7c582013-12-04 02:15:46 +0200400static void rs_fill_lq_cmd(struct iwl_mvm *mvm,
401 struct ieee80211_sta *sta,
402 struct iwl_lq_sta *lq_sta,
403 const struct rs_rate *initial_rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100404static void rs_stay_in_table(struct iwl_lq_sta *lq_sta, bool force_search);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100405
Johannes Berg8ca151b2013-01-24 14:25:36 +0100406/**
407 * The following tables contain the expected throughput metrics for all rates
408 *
409 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
410 *
411 * where invalid entries are zeros.
412 *
413 * CCK rates are only valid in legacy table and will only be used in G
414 * (2.4 GHz) band.
415 */
416
Johannes Berga34529e2014-01-20 22:57:21 +0100417static const u16 expected_tpt_legacy[IWL_RATE_COUNT] = {
Eyal Shapira4e82dd32013-08-04 23:58:37 +0300418 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0, 0, 0
Johannes Berg8ca151b2013-01-24 14:25:36 +0100419};
420
Eyal Shapira4e82dd32013-08-04 23:58:37 +0300421/* Expected TpT tables. 4 indexes:
422 * 0 - NGI, 1 - SGI, 2 - AGG+NGI, 3 - AGG+SGI
423 */
Johannes Berga34529e2014-01-20 22:57:21 +0100424static const u16 expected_tpt_siso_20MHz[4][IWL_RATE_COUNT] = {
Eyal Shapira4e82dd32013-08-04 23:58:37 +0300425 {0, 0, 0, 0, 42, 0, 76, 102, 124, 159, 183, 193, 202, 216, 0},
426 {0, 0, 0, 0, 46, 0, 82, 110, 132, 168, 192, 202, 210, 225, 0},
427 {0, 0, 0, 0, 49, 0, 97, 145, 192, 285, 375, 420, 464, 551, 0},
428 {0, 0, 0, 0, 54, 0, 108, 160, 213, 315, 415, 465, 513, 608, 0},
Johannes Berg8ca151b2013-01-24 14:25:36 +0100429};
430
Johannes Berga34529e2014-01-20 22:57:21 +0100431static const u16 expected_tpt_siso_40MHz[4][IWL_RATE_COUNT] = {
Eyal Shapira4e82dd32013-08-04 23:58:37 +0300432 {0, 0, 0, 0, 77, 0, 127, 160, 184, 220, 242, 250, 257, 269, 275},
433 {0, 0, 0, 0, 83, 0, 135, 169, 193, 229, 250, 257, 264, 275, 280},
434 {0, 0, 0, 0, 101, 0, 199, 295, 389, 570, 744, 828, 911, 1070, 1173},
435 {0, 0, 0, 0, 112, 0, 220, 326, 429, 629, 819, 912, 1000, 1173, 1284},
Johannes Berg8ca151b2013-01-24 14:25:36 +0100436};
437
Johannes Berga34529e2014-01-20 22:57:21 +0100438static const u16 expected_tpt_siso_80MHz[4][IWL_RATE_COUNT] = {
Eyal Shapirad310e402013-08-11 18:43:47 +0300439 {0, 0, 0, 0, 130, 0, 191, 223, 244, 273, 288, 294, 298, 305, 308},
440 {0, 0, 0, 0, 138, 0, 200, 231, 251, 279, 293, 298, 302, 308, 312},
441 {0, 0, 0, 0, 217, 0, 429, 634, 834, 1220, 1585, 1760, 1931, 2258, 2466},
442 {0, 0, 0, 0, 241, 0, 475, 701, 921, 1343, 1741, 1931, 2117, 2468, 2691},
443};
444
Gregory Greenman855f4922016-05-25 18:31:39 +0300445static const u16 expected_tpt_siso_160MHz[4][IWL_RATE_COUNT] = {
446 {0, 0, 0, 0, 191, 0, 244, 288, 298, 308, 313, 318, 323, 328, 330},
447 {0, 0, 0, 0, 200, 0, 251, 293, 302, 312, 317, 322, 327, 332, 334},
448 {0, 0, 0, 0, 439, 0, 875, 1307, 1736, 2584, 3419, 3831, 4240, 5049, 5581},
449 {0, 0, 0, 0, 488, 0, 972, 1451, 1925, 2864, 3785, 4240, 4691, 5581, 6165},
450};
451
Johannes Berga34529e2014-01-20 22:57:21 +0100452static const u16 expected_tpt_mimo2_20MHz[4][IWL_RATE_COUNT] = {
Eyal Shapira4e82dd32013-08-04 23:58:37 +0300453 {0, 0, 0, 0, 74, 0, 123, 155, 179, 213, 235, 243, 250, 261, 0},
454 {0, 0, 0, 0, 81, 0, 131, 164, 187, 221, 242, 250, 256, 267, 0},
455 {0, 0, 0, 0, 98, 0, 193, 286, 375, 550, 718, 799, 878, 1032, 0},
456 {0, 0, 0, 0, 109, 0, 214, 316, 414, 607, 790, 879, 965, 1132, 0},
Johannes Berg8ca151b2013-01-24 14:25:36 +0100457};
458
Johannes Berga34529e2014-01-20 22:57:21 +0100459static const u16 expected_tpt_mimo2_40MHz[4][IWL_RATE_COUNT] = {
Eyal Shapira4e82dd32013-08-04 23:58:37 +0300460 {0, 0, 0, 0, 123, 0, 182, 214, 235, 264, 279, 285, 289, 296, 300},
461 {0, 0, 0, 0, 131, 0, 191, 222, 242, 270, 284, 289, 293, 300, 303},
462 {0, 0, 0, 0, 200, 0, 390, 571, 741, 1067, 1365, 1505, 1640, 1894, 2053},
463 {0, 0, 0, 0, 221, 0, 430, 630, 816, 1169, 1490, 1641, 1784, 2053, 2221},
Johannes Berg8ca151b2013-01-24 14:25:36 +0100464};
465
Johannes Berga34529e2014-01-20 22:57:21 +0100466static const u16 expected_tpt_mimo2_80MHz[4][IWL_RATE_COUNT] = {
Eyal Shapirad310e402013-08-11 18:43:47 +0300467 {0, 0, 0, 0, 182, 0, 240, 264, 278, 299, 308, 311, 313, 317, 319},
468 {0, 0, 0, 0, 190, 0, 247, 269, 282, 302, 310, 313, 315, 319, 320},
469 {0, 0, 0, 0, 428, 0, 833, 1215, 1577, 2254, 2863, 3147, 3418, 3913, 4219},
470 {0, 0, 0, 0, 474, 0, 920, 1338, 1732, 2464, 3116, 3418, 3705, 4225, 4545},
471};
472
Gregory Greenman855f4922016-05-25 18:31:39 +0300473static const u16 expected_tpt_mimo2_160MHz[4][IWL_RATE_COUNT] = {
474 {0, 0, 0, 0, 240, 0, 278, 308, 313, 319, 322, 324, 328, 330, 334},
475 {0, 0, 0, 0, 247, 0, 282, 310, 315, 320, 323, 325, 329, 332, 338},
476 {0, 0, 0, 0, 875, 0, 1735, 2582, 3414, 5043, 6619, 7389, 8147, 9629, 10592},
477 {0, 0, 0, 0, 971, 0, 1925, 2861, 3779, 5574, 7304, 8147, 8976, 10592, 11640},
478};
479
Johannes Berg8ca151b2013-01-24 14:25:36 +0100480/* mbps, mcs */
481static const struct iwl_rate_mcs_info iwl_rate_mcs[IWL_RATE_COUNT] = {
482 { "1", "BPSK DSSS"},
483 { "2", "QPSK DSSS"},
484 {"5.5", "BPSK CCK"},
485 { "11", "QPSK CCK"},
486 { "6", "BPSK 1/2"},
487 { "9", "BPSK 1/2"},
488 { "12", "QPSK 1/2"},
489 { "18", "QPSK 3/4"},
490 { "24", "16QAM 1/2"},
491 { "36", "16QAM 3/4"},
492 { "48", "64QAM 2/3"},
493 { "54", "64QAM 3/4"},
494 { "60", "64QAM 5/6"},
495};
496
497#define MCS_INDEX_PER_STREAM (8)
498
Emmanuel Grumbach9d108492013-12-03 11:50:30 +0200499static const char *rs_pretty_ant(u8 ant)
500{
501 static const char * const ant_name[] = {
502 [ANT_NONE] = "None",
503 [ANT_A] = "A",
504 [ANT_B] = "B",
505 [ANT_AB] = "AB",
506 [ANT_C] = "C",
507 [ANT_AC] = "AC",
508 [ANT_BC] = "BC",
509 [ANT_ABC] = "ABC",
510 };
511
512 if (ant > ANT_ABC)
513 return "UNKNOWN";
514
515 return ant_name[ant];
516}
517
518static const char *rs_pretty_lq_type(enum iwl_table_type type)
519{
520 static const char * const lq_types[] = {
521 [LQ_NONE] = "NONE",
522 [LQ_LEGACY_A] = "LEGACY_A",
523 [LQ_LEGACY_G] = "LEGACY_G",
524 [LQ_HT_SISO] = "HT SISO",
525 [LQ_HT_MIMO2] = "HT MIMO",
526 [LQ_VHT_SISO] = "VHT SISO",
527 [LQ_VHT_MIMO2] = "VHT MIMO",
528 };
529
530 if (type < LQ_NONE || type >= LQ_MAX)
531 return "UNKNOWN";
532
533 return lq_types[type];
534}
535
Eyal Shapiracc60c6e2015-09-19 23:37:45 +0300536static char *rs_pretty_rate(const struct rs_rate *rate)
537{
538 static char buf[40];
539 static const char * const legacy_rates[] = {
540 [IWL_RATE_1M_INDEX] = "1M",
541 [IWL_RATE_2M_INDEX] = "2M",
542 [IWL_RATE_5M_INDEX] = "5.5M",
543 [IWL_RATE_11M_INDEX] = "11M",
544 [IWL_RATE_6M_INDEX] = "6M",
545 [IWL_RATE_9M_INDEX] = "9M",
546 [IWL_RATE_12M_INDEX] = "12M",
547 [IWL_RATE_18M_INDEX] = "18M",
548 [IWL_RATE_24M_INDEX] = "24M",
549 [IWL_RATE_36M_INDEX] = "36M",
550 [IWL_RATE_48M_INDEX] = "48M",
551 [IWL_RATE_54M_INDEX] = "54M",
552 };
553 static const char *const ht_vht_rates[] = {
554 [IWL_RATE_MCS_0_INDEX] = "MCS0",
555 [IWL_RATE_MCS_1_INDEX] = "MCS1",
556 [IWL_RATE_MCS_2_INDEX] = "MCS2",
557 [IWL_RATE_MCS_3_INDEX] = "MCS3",
558 [IWL_RATE_MCS_4_INDEX] = "MCS4",
559 [IWL_RATE_MCS_5_INDEX] = "MCS5",
560 [IWL_RATE_MCS_6_INDEX] = "MCS6",
561 [IWL_RATE_MCS_7_INDEX] = "MCS7",
562 [IWL_RATE_MCS_8_INDEX] = "MCS8",
563 [IWL_RATE_MCS_9_INDEX] = "MCS9",
564 };
565 const char *rate_str;
566
Eyal Shapirae8b3f7b2015-11-19 18:37:31 +0200567 if (is_type_legacy(rate->type) && (rate->index <= IWL_RATE_54M_INDEX))
Eyal Shapiracc60c6e2015-09-19 23:37:45 +0300568 rate_str = legacy_rates[rate->index];
Eyal Shapirae8b3f7b2015-11-19 18:37:31 +0200569 else if ((is_type_ht(rate->type) || is_type_vht(rate->type)) &&
Eyal Shapira44945412016-02-01 09:07:05 +0200570 (rate->index >= IWL_RATE_MCS_0_INDEX) &&
Eyal Shapirae8b3f7b2015-11-19 18:37:31 +0200571 (rate->index <= IWL_RATE_MCS_9_INDEX))
Eyal Shapiracc60c6e2015-09-19 23:37:45 +0300572 rate_str = ht_vht_rates[rate->index];
573 else
574 rate_str = "BAD_RATE";
575
576 sprintf(buf, "(%s|%s|%s)", rs_pretty_lq_type(rate->type),
577 rs_pretty_ant(rate->ant), rate_str);
578 return buf;
579}
580
Eyal Shapira5aa33552013-11-23 01:06:36 +0200581static inline void rs_dump_rate(struct iwl_mvm *mvm, const struct rs_rate *rate,
582 const char *prefix)
583{
Eyal Shapirad8bafea2014-10-23 13:58:38 +0300584 IWL_DEBUG_RATE(mvm,
Eyal Shapiracc60c6e2015-09-19 23:37:45 +0300585 "%s: %s BW: %d SGI: %d LDPC: %d STBC: %d\n",
586 prefix, rs_pretty_rate(rate), rate->bw,
587 rate->sgi, rate->ldpc, rate->stbc);
Eyal Shapira5aa33552013-11-23 01:06:36 +0200588}
589
Johannes Berg8ca151b2013-01-24 14:25:36 +0100590static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window)
591{
592 window->data = 0;
593 window->success_counter = 0;
594 window->success_ratio = IWL_INVALID_VALUE;
595 window->counter = 0;
596 window->average_tpt = IWL_INVALID_VALUE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100597}
598
Eyal Shapirab804eeb2014-04-06 04:27:06 +0300599static void rs_rate_scale_clear_tbl_windows(struct iwl_mvm *mvm,
600 struct iwl_scale_tbl_info *tbl)
Eliad Peller3ca71f62014-03-10 16:33:43 +0200601{
602 int i;
603
Eyal Shapirab804eeb2014-04-06 04:27:06 +0300604 IWL_DEBUG_RATE(mvm, "Clearing up window stats\n");
Eliad Peller3ca71f62014-03-10 16:33:43 +0200605 for (i = 0; i < IWL_RATE_COUNT; i++)
606 rs_rate_scale_clear_window(&tbl->win[i]);
Eliad Peller2fd647f2014-03-13 17:21:36 +0200607
608 for (i = 0; i < ARRAY_SIZE(tbl->tpc_win); i++)
609 rs_rate_scale_clear_window(&tbl->tpc_win[i]);
Eliad Peller3ca71f62014-03-10 16:33:43 +0200610}
611
Johannes Berg8ca151b2013-01-24 14:25:36 +0100612static inline u8 rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
613{
614 return (ant_type & valid_antenna) == ant_type;
615}
616
Johannes Berg8ca151b2013-01-24 14:25:36 +0100617static int rs_tl_turn_on_agg_for_tid(struct iwl_mvm *mvm,
Eyal Shapira40ce5ed2015-09-19 23:54:38 +0300618 struct iwl_lq_sta *lq_data, u8 tid,
619 struct ieee80211_sta *sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100620{
621 int ret = -EAGAIN;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100622
Emmanuel Grumbach44cc4292013-06-18 06:33:49 +0300623 IWL_DEBUG_HT(mvm, "Starting Tx agg: STA: %pM tid: %d\n",
624 sta->addr, tid);
625 ret = ieee80211_start_tx_ba_session(sta, tid, 5000);
626 if (ret == -EAGAIN) {
627 /*
628 * driver and mac80211 is out of sync
629 * this might be cause by reloading firmware
630 * stop the tx ba session here
631 */
632 IWL_ERR(mvm, "Fail start Tx agg on tid: %d\n",
633 tid);
634 ieee80211_stop_tx_ba_session(sta, tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100635 }
636 return ret;
637}
638
639static void rs_tl_turn_on_agg(struct iwl_mvm *mvm, u8 tid,
640 struct iwl_lq_sta *lq_data,
641 struct ieee80211_sta *sta)
642{
643 if (tid < IWL_MAX_TID_COUNT)
644 rs_tl_turn_on_agg_for_tid(mvm, lq_data, tid, sta);
645 else
646 IWL_ERR(mvm, "tid exceeds max TID count: %d/%d\n",
647 tid, IWL_MAX_TID_COUNT);
648}
649
650static inline int get_num_of_ant_from_rate(u32 rate_n_flags)
651{
652 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
653 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
654 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
655}
656
657/*
658 * Static function to get the expected throughput from an iwl_scale_tbl_info
659 * that wraps a NULL pointer check
660 */
661static s32 get_expected_tpt(struct iwl_scale_tbl_info *tbl, int rs_index)
662{
663 if (tbl->expected_tpt)
664 return tbl->expected_tpt[rs_index];
665 return 0;
666}
667
668/**
669 * rs_collect_tx_data - Update the success/failure sliding window
670 *
671 * We keep a sliding window of the last 62 packets transmitted
672 * at this rate. window->data contains the bitmask of successful
673 * packets.
674 */
Eyal Shapira834437d2014-12-17 15:38:58 +0200675static int _rs_collect_tx_data(struct iwl_mvm *mvm,
676 struct iwl_scale_tbl_info *tbl,
Eliad Peller0bd3c5a2014-03-10 16:07:04 +0200677 int scale_index, int attempts, int successes,
678 struct iwl_rate_scale_data *window)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100679{
Johannes Berg8ca151b2013-01-24 14:25:36 +0100680 static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1));
681 s32 fail_count, tpt;
682
Johannes Berg8ca151b2013-01-24 14:25:36 +0100683 /* Get expected throughput */
684 tpt = get_expected_tpt(tbl, scale_index);
685
686 /*
687 * Keep track of only the latest 62 tx frame attempts in this rate's
688 * history window; anything older isn't really relevant any more.
689 * If we have filled up the sliding window, drop the oldest attempt;
690 * if the oldest attempt (highest bit in bitmap) shows "success",
691 * subtract "1" from the success counter (this is the main reason
692 * we keep these bitmaps!).
693 */
694 while (attempts > 0) {
695 if (window->counter >= IWL_RATE_MAX_WINDOW) {
696 /* remove earliest */
697 window->counter = IWL_RATE_MAX_WINDOW - 1;
698
699 if (window->data & mask) {
700 window->data &= ~mask;
701 window->success_counter--;
702 }
703 }
704
705 /* Increment frames-attempted counter */
706 window->counter++;
707
708 /* Shift bitmap by one frame to throw away oldest history */
709 window->data <<= 1;
710
711 /* Mark the most recent #successes attempts as successful */
712 if (successes > 0) {
713 window->success_counter++;
714 window->data |= 0x1;
715 successes--;
716 }
717
718 attempts--;
719 }
720
721 /* Calculate current success ratio, avoid divide-by-0! */
722 if (window->counter > 0)
723 window->success_ratio = 128 * (100 * window->success_counter)
724 / window->counter;
725 else
726 window->success_ratio = IWL_INVALID_VALUE;
727
728 fail_count = window->counter - window->success_counter;
729
730 /* Calculate average throughput, if we have enough history. */
Eyal Shapira834437d2014-12-17 15:38:58 +0200731 if ((fail_count >= IWL_MVM_RS_RATE_MIN_FAILURE_TH) ||
732 (window->success_counter >= IWL_MVM_RS_RATE_MIN_SUCCESS_TH))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100733 window->average_tpt = (window->success_ratio * tpt + 64) / 128;
734 else
735 window->average_tpt = IWL_INVALID_VALUE;
736
Johannes Berg8ca151b2013-01-24 14:25:36 +0100737 return 0;
738}
739
Gregory Greenman69c7fda2015-12-29 11:26:35 +0200740static int rs_collect_tpc_data(struct iwl_mvm *mvm,
741 struct iwl_lq_sta *lq_sta,
742 struct iwl_scale_tbl_info *tbl,
743 int scale_index, int attempts, int successes,
744 u8 reduced_txp)
Eliad Peller0bd3c5a2014-03-10 16:07:04 +0200745{
746 struct iwl_rate_scale_data *window = NULL;
Gregory Greenman69c7fda2015-12-29 11:26:35 +0200747
748 if (WARN_ON_ONCE(reduced_txp > TPC_MAX_REDUCTION))
749 return -EINVAL;
750
751 window = &tbl->tpc_win[reduced_txp];
752 return _rs_collect_tx_data(mvm, tbl, scale_index, attempts, successes,
753 window);
754}
755
756static int rs_collect_tlc_data(struct iwl_mvm *mvm,
757 struct iwl_lq_sta *lq_sta,
758 struct iwl_scale_tbl_info *tbl,
759 int scale_index, int attempts, int successes)
760{
761 struct iwl_rate_scale_data *window = NULL;
Eliad Peller0bd3c5a2014-03-10 16:07:04 +0200762
763 if (scale_index < 0 || scale_index >= IWL_RATE_COUNT)
764 return -EINVAL;
765
Eyal Shapira757cf23b2014-03-24 02:12:00 +0200766 if (tbl->column != RS_COLUMN_INVALID) {
Eyal Shapiraf58220f2014-08-16 01:30:30 +0300767 struct lq_sta_pers *pers = &lq_sta->pers;
768
769 pers->tx_stats[tbl->column][scale_index].total += attempts;
770 pers->tx_stats[tbl->column][scale_index].success += successes;
Eyal Shapira757cf23b2014-03-24 02:12:00 +0200771 }
772
Eliad Peller0bd3c5a2014-03-10 16:07:04 +0200773 /* Select window for current tx bit rate */
774 window = &(tbl->win[scale_index]);
Eyal Shapira834437d2014-12-17 15:38:58 +0200775 return _rs_collect_tx_data(mvm, tbl, scale_index, attempts, successes,
Eliad Peller0bd3c5a2014-03-10 16:07:04 +0200776 window);
777}
778
Eyal Shapira5aa33552013-11-23 01:06:36 +0200779/* Convert rs_rate object into ucode rate bitmask */
780static u32 ucode_rate_from_rs_rate(struct iwl_mvm *mvm,
Eyal Shapira8fc7c582013-12-04 02:15:46 +0200781 struct rs_rate *rate)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100782{
Eyal Shapira5aa33552013-11-23 01:06:36 +0200783 u32 ucode_rate = 0;
784 int index = rate->index;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100785
Eyal Shapira5aa33552013-11-23 01:06:36 +0200786 ucode_rate |= ((rate->ant << RATE_MCS_ANT_POS) &
Eyal Shapirad310e402013-08-11 18:43:47 +0300787 RATE_MCS_ANT_ABC_MSK);
788
Eyal Shapira5aa33552013-11-23 01:06:36 +0200789 if (is_legacy(rate)) {
790 ucode_rate |= iwl_rates[index].plcp;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100791 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
Eyal Shapira5aa33552013-11-23 01:06:36 +0200792 ucode_rate |= RATE_MCS_CCK_MSK;
793 return ucode_rate;
Eyal Shapirad310e402013-08-11 18:43:47 +0300794 }
795
Eyal Shapira5aa33552013-11-23 01:06:36 +0200796 if (is_ht(rate)) {
Eyal Shapirad310e402013-08-11 18:43:47 +0300797 if (index < IWL_FIRST_HT_RATE || index > IWL_LAST_HT_RATE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100798 IWL_ERR(mvm, "Invalid HT rate index %d\n", index);
Eyal Shapira4e82dd32013-08-04 23:58:37 +0300799 index = IWL_LAST_HT_RATE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100800 }
Eyal Shapira5aa33552013-11-23 01:06:36 +0200801 ucode_rate |= RATE_MCS_HT_MSK;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100802
Eyal Shapira5aa33552013-11-23 01:06:36 +0200803 if (is_ht_siso(rate))
804 ucode_rate |= iwl_rates[index].plcp_ht_siso;
805 else if (is_ht_mimo2(rate))
806 ucode_rate |= iwl_rates[index].plcp_ht_mimo2;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100807 else
Eyal Shapirad972ab32013-07-28 23:02:45 +0000808 WARN_ON_ONCE(1);
Eyal Shapira5aa33552013-11-23 01:06:36 +0200809 } else if (is_vht(rate)) {
Eyal Shapirad310e402013-08-11 18:43:47 +0300810 if (index < IWL_FIRST_VHT_RATE || index > IWL_LAST_VHT_RATE) {
811 IWL_ERR(mvm, "Invalid VHT rate index %d\n", index);
812 index = IWL_LAST_VHT_RATE;
813 }
Eyal Shapira5aa33552013-11-23 01:06:36 +0200814 ucode_rate |= RATE_MCS_VHT_MSK;
815 if (is_vht_siso(rate))
816 ucode_rate |= iwl_rates[index].plcp_vht_siso;
817 else if (is_vht_mimo2(rate))
818 ucode_rate |= iwl_rates[index].plcp_vht_mimo2;
Eyal Shapirad310e402013-08-11 18:43:47 +0300819 else
820 WARN_ON_ONCE(1);
821
Johannes Berg8ca151b2013-01-24 14:25:36 +0100822 } else {
Eyal Shapira5aa33552013-11-23 01:06:36 +0200823 IWL_ERR(mvm, "Invalid rate->type %d\n", rate->type);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100824 }
825
Eyal Shapirad8bafea2014-10-23 13:58:38 +0300826 if (is_siso(rate) && rate->stbc) {
827 /* To enable STBC we need to set both a flag and ANT_AB */
828 ucode_rate |= RATE_MCS_ANT_AB_MSK;
Sara Sharon77e40942017-01-11 11:58:38 +0200829 ucode_rate |= RATE_MCS_STBC_MSK;
Eyal Shapirad8bafea2014-10-23 13:58:38 +0300830 }
831
Eyal Shapira5aa33552013-11-23 01:06:36 +0200832 ucode_rate |= rate->bw;
833 if (rate->sgi)
834 ucode_rate |= RATE_MCS_SGI_MSK;
Eyal Shapiraa3576ff2014-08-09 10:57:59 +0300835 if (rate->ldpc)
836 ucode_rate |= RATE_MCS_LDPC_MSK;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100837
Eyal Shapira5aa33552013-11-23 01:06:36 +0200838 return ucode_rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100839}
840
Eyal Shapira5aa33552013-11-23 01:06:36 +0200841/* Convert a ucode rate into an rs_rate object */
842static int rs_rate_from_ucode_rate(const u32 ucode_rate,
Johannes Berg57fbcce2016-04-12 15:56:15 +0200843 enum nl80211_band band,
Eyal Shapira5aa33552013-11-23 01:06:36 +0200844 struct rs_rate *rate)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100845{
Eyal Shapira5aa33552013-11-23 01:06:36 +0200846 u32 ant_msk = ucode_rate & RATE_MCS_ANT_ABC_MSK;
847 u8 num_of_ant = get_num_of_ant_from_rate(ucode_rate);
Eyal Shapirad310e402013-08-11 18:43:47 +0300848 u8 nss;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100849
Emmanuel Grumbach9e898f12013-12-22 10:55:47 +0200850 memset(rate, 0, sizeof(*rate));
Eyal Shapira5aa33552013-11-23 01:06:36 +0200851 rate->index = iwl_hwrate_to_plcp_idx(ucode_rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100852
Eyal Shapira560843f2014-01-05 21:04:19 +0200853 if (rate->index == IWL_RATE_INVALID)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100854 return -EINVAL;
Eyal Shapira5aa33552013-11-23 01:06:36 +0200855
856 rate->ant = (ant_msk >> RATE_MCS_ANT_POS);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100857
Eyal Shapirad310e402013-08-11 18:43:47 +0300858 /* Legacy */
Eyal Shapira5aa33552013-11-23 01:06:36 +0200859 if (!(ucode_rate & RATE_MCS_HT_MSK) &&
860 !(ucode_rate & RATE_MCS_VHT_MSK)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100861 if (num_of_ant == 1) {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200862 if (band == NL80211_BAND_5GHZ)
Eyal Shapira5aa33552013-11-23 01:06:36 +0200863 rate->type = LQ_LEGACY_A;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100864 else
Eyal Shapira5aa33552013-11-23 01:06:36 +0200865 rate->type = LQ_LEGACY_G;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100866 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100867
Eyal Shapirad310e402013-08-11 18:43:47 +0300868 return 0;
869 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100870
Eyal Shapirad310e402013-08-11 18:43:47 +0300871 /* HT or VHT */
Eyal Shapira5aa33552013-11-23 01:06:36 +0200872 if (ucode_rate & RATE_MCS_SGI_MSK)
873 rate->sgi = true;
Eyal Shapiraa3576ff2014-08-09 10:57:59 +0300874 if (ucode_rate & RATE_MCS_LDPC_MSK)
875 rate->ldpc = true;
Sara Sharon77e40942017-01-11 11:58:38 +0200876 if (ucode_rate & RATE_MCS_STBC_MSK)
Eyal Shapirad8bafea2014-10-23 13:58:38 +0300877 rate->stbc = true;
Eyal Shapiraba69d0e2015-01-30 01:38:29 +0200878 if (ucode_rate & RATE_MCS_BF_MSK)
879 rate->bfer = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100880
Eyal Shapira5aa33552013-11-23 01:06:36 +0200881 rate->bw = ucode_rate & RATE_MCS_CHAN_WIDTH_MSK;
Eyal Shapirad310e402013-08-11 18:43:47 +0300882
Eyal Shapira5aa33552013-11-23 01:06:36 +0200883 if (ucode_rate & RATE_MCS_HT_MSK) {
884 nss = ((ucode_rate & RATE_HT_MCS_NSS_MSK) >>
Eyal Shapirad310e402013-08-11 18:43:47 +0300885 RATE_HT_MCS_NSS_POS) + 1;
886
887 if (nss == 1) {
Eyal Shapira5aa33552013-11-23 01:06:36 +0200888 rate->type = LQ_HT_SISO;
Eyal Shapiraba69d0e2015-01-30 01:38:29 +0200889 WARN_ONCE(!rate->stbc && !rate->bfer && num_of_ant != 1,
890 "stbc %d bfer %d",
891 rate->stbc, rate->bfer);
Eyal Shapirad310e402013-08-11 18:43:47 +0300892 } else if (nss == 2) {
Eyal Shapira5aa33552013-11-23 01:06:36 +0200893 rate->type = LQ_HT_MIMO2;
Eyal Shapirad310e402013-08-11 18:43:47 +0300894 WARN_ON_ONCE(num_of_ant != 2);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100895 } else {
Eyal Shapirad310e402013-08-11 18:43:47 +0300896 WARN_ON_ONCE(1);
897 }
Eyal Shapira5aa33552013-11-23 01:06:36 +0200898 } else if (ucode_rate & RATE_MCS_VHT_MSK) {
899 nss = ((ucode_rate & RATE_VHT_MCS_NSS_MSK) >>
Eyal Shapirad310e402013-08-11 18:43:47 +0300900 RATE_VHT_MCS_NSS_POS) + 1;
901
902 if (nss == 1) {
Eyal Shapira5aa33552013-11-23 01:06:36 +0200903 rate->type = LQ_VHT_SISO;
Eyal Shapiraba69d0e2015-01-30 01:38:29 +0200904 WARN_ONCE(!rate->stbc && !rate->bfer && num_of_ant != 1,
905 "stbc %d bfer %d",
906 rate->stbc, rate->bfer);
Eyal Shapirad310e402013-08-11 18:43:47 +0300907 } else if (nss == 2) {
Eyal Shapira5aa33552013-11-23 01:06:36 +0200908 rate->type = LQ_VHT_MIMO2;
Eyal Shapirad310e402013-08-11 18:43:47 +0300909 WARN_ON_ONCE(num_of_ant != 2);
910 } else {
911 WARN_ON_ONCE(1);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100912 }
913 }
Eyal Shapirad310e402013-08-11 18:43:47 +0300914
Eyal Shapira5aa33552013-11-23 01:06:36 +0200915 WARN_ON_ONCE(rate->bw == RATE_MCS_CHAN_WIDTH_80 &&
916 !is_vht(rate));
Eyal Shapirad310e402013-08-11 18:43:47 +0300917
Johannes Berg8ca151b2013-01-24 14:25:36 +0100918 return 0;
919}
920
921/* switch to another antenna/antennas and return 1 */
922/* if no other valid antenna found, return 0 */
Eyal Shapira8fc7c582013-12-04 02:15:46 +0200923static int rs_toggle_antenna(u32 valid_ant, struct rs_rate *rate)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100924{
925 u8 new_ant_type;
926
Eyal Shapira5aa33552013-11-23 01:06:36 +0200927 if (!rate->ant || rate->ant > ANT_ABC)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100928 return 0;
929
Eyal Shapira5aa33552013-11-23 01:06:36 +0200930 if (!rs_is_valid_ant(valid_ant, rate->ant))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100931 return 0;
932
Eyal Shapira5aa33552013-11-23 01:06:36 +0200933 new_ant_type = ant_toggle_lookup[rate->ant];
Johannes Berg8ca151b2013-01-24 14:25:36 +0100934
Eyal Shapira5aa33552013-11-23 01:06:36 +0200935 while ((new_ant_type != rate->ant) &&
Johannes Berg8ca151b2013-01-24 14:25:36 +0100936 !rs_is_valid_ant(valid_ant, new_ant_type))
937 new_ant_type = ant_toggle_lookup[new_ant_type];
938
Eyal Shapira5aa33552013-11-23 01:06:36 +0200939 if (new_ant_type == rate->ant)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100940 return 0;
941
Eyal Shapira5aa33552013-11-23 01:06:36 +0200942 rate->ant = new_ant_type;
943
Johannes Berg8ca151b2013-01-24 14:25:36 +0100944 return 1;
945}
946
Johannes Berg8ca151b2013-01-24 14:25:36 +0100947static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
Eyal Shapira5aa33552013-11-23 01:06:36 +0200948 struct rs_rate *rate)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100949{
Eyal Shapira5aa33552013-11-23 01:06:36 +0200950 if (is_legacy(rate))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100951 return lq_sta->active_legacy_rate;
Eyal Shapira5aa33552013-11-23 01:06:36 +0200952 else if (is_siso(rate))
Eyal Shapirad310e402013-08-11 18:43:47 +0300953 return lq_sta->active_siso_rate;
Eyal Shapira5aa33552013-11-23 01:06:36 +0200954 else if (is_mimo2(rate))
Eyal Shapirad310e402013-08-11 18:43:47 +0300955 return lq_sta->active_mimo2_rate;
956
957 WARN_ON_ONCE(1);
958 return 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100959}
960
961static u16 rs_get_adjacent_rate(struct iwl_mvm *mvm, u8 index, u16 rate_mask,
962 int rate_type)
963{
964 u8 high = IWL_RATE_INVALID;
965 u8 low = IWL_RATE_INVALID;
966
967 /* 802.11A or ht walks to the next literal adjacent rate in
968 * the rate table */
Eyal Shapira5aa33552013-11-23 01:06:36 +0200969 if (is_type_a_band(rate_type) || !is_type_legacy(rate_type)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100970 int i;
971 u32 mask;
972
973 /* Find the previous rate that is in the rate mask */
974 i = index - 1;
Emmanuel Grumbach43d59a42017-01-07 19:57:46 +0200975 if (i >= 0)
976 mask = BIT(i);
977 for (; i >= 0; i--, mask >>= 1) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100978 if (rate_mask & mask) {
979 low = i;
980 break;
981 }
982 }
983
984 /* Find the next rate that is in the rate mask */
985 i = index + 1;
986 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
987 if (rate_mask & mask) {
988 high = i;
989 break;
990 }
991 }
992
993 return (high << 8) | low;
994 }
995
996 low = index;
997 while (low != IWL_RATE_INVALID) {
998 low = iwl_rates[low].prev_rs;
999 if (low == IWL_RATE_INVALID)
1000 break;
1001 if (rate_mask & (1 << low))
1002 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001003 }
1004
1005 high = index;
1006 while (high != IWL_RATE_INVALID) {
1007 high = iwl_rates[high].next_rs;
1008 if (high == IWL_RATE_INVALID)
1009 break;
1010 if (rate_mask & (1 << high))
1011 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001012 }
1013
1014 return (high << 8) | low;
1015}
1016
Eyal Shapirae07be6d2013-12-09 13:02:56 +02001017static inline bool rs_rate_supported(struct iwl_lq_sta *lq_sta,
1018 struct rs_rate *rate)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001019{
Eyal Shapirae07be6d2013-12-09 13:02:56 +02001020 return BIT(rate->index) & rs_get_supported_rates(lq_sta, rate);
1021}
1022
1023/* Get the next supported lower rate in the current column.
1024 * Return true if bottom rate in the current column was reached
1025 */
1026static bool rs_get_lower_rate_in_column(struct iwl_lq_sta *lq_sta,
1027 struct rs_rate *rate)
1028{
1029 u8 low;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001030 u16 high_low;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02001031 u16 rate_mask;
Eliad Pellerae969af2014-06-11 15:51:33 +03001032 struct iwl_mvm *mvm = lq_sta->pers.drv;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001033
Eyal Shapirae07be6d2013-12-09 13:02:56 +02001034 rate_mask = rs_get_supported_rates(lq_sta, rate);
1035 high_low = rs_get_adjacent_rate(mvm, rate->index, rate_mask,
1036 rate->type);
1037 low = high_low & 0xff;
1038
1039 /* Bottom rate of column reached */
1040 if (low == IWL_RATE_INVALID)
1041 return true;
1042
1043 rate->index = low;
1044 return false;
1045}
1046
1047/* Get the next rate to use following a column downgrade */
1048static void rs_get_lower_rate_down_column(struct iwl_lq_sta *lq_sta,
1049 struct rs_rate *rate)
1050{
Eliad Pellerae969af2014-06-11 15:51:33 +03001051 struct iwl_mvm *mvm = lq_sta->pers.drv;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02001052
1053 if (is_legacy(rate)) {
1054 /* No column to downgrade from Legacy */
1055 return;
1056 } else if (is_siso(rate)) {
1057 /* Downgrade to Legacy if we were in SISO */
Johannes Berg57fbcce2016-04-12 15:56:15 +02001058 if (lq_sta->band == NL80211_BAND_5GHZ)
Eyal Shapira5aa33552013-11-23 01:06:36 +02001059 rate->type = LQ_LEGACY_A;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001060 else
Eyal Shapira5aa33552013-11-23 01:06:36 +02001061 rate->type = LQ_LEGACY_G;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001062
Eyal Shapiraa56db7d2013-11-28 12:35:42 +02001063 rate->bw = RATE_MCS_CHAN_WIDTH_20;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02001064
Emmanuel Grumbachb8000402014-02-03 22:17:19 +02001065 WARN_ON_ONCE(rate->index < IWL_RATE_MCS_0_INDEX ||
Eyal Shapirae07be6d2013-12-09 13:02:56 +02001066 rate->index > IWL_RATE_MCS_9_INDEX);
1067
1068 rate->index = rs_ht_to_legacy[rate->index];
Eyal Shapiraa3576ff2014-08-09 10:57:59 +03001069 rate->ldpc = false;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02001070 } else {
1071 /* Downgrade to SISO with same MCS if in MIMO */
1072 rate->type = is_vht_mimo2(rate) ?
1073 LQ_VHT_SISO : LQ_HT_SISO;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001074 }
1075
Eyal Shapirae07be6d2013-12-09 13:02:56 +02001076 if (num_of_ant(rate->ant) > 1)
Moshe Harela0544272014-12-08 21:13:14 +02001077 rate->ant = first_antenna(iwl_mvm_get_valid_tx_ant(mvm));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001078
Eyal Shapirae07be6d2013-12-09 13:02:56 +02001079 /* Relevant in both switching to SISO or Legacy */
1080 rate->sgi = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001081
Eyal Shapirae07be6d2013-12-09 13:02:56 +02001082 if (!rs_rate_supported(lq_sta, rate))
1083 rs_get_lower_rate_in_column(lq_sta, rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001084}
1085
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001086/* Check if both rates share the same column */
1087static inline bool rs_rate_column_match(struct rs_rate *a,
1088 struct rs_rate *b)
1089{
Eyal Shapirad8bafea2014-10-23 13:58:38 +03001090 bool ant_match;
1091
Eyal Shapiraba69d0e2015-01-30 01:38:29 +02001092 if (a->stbc || a->bfer)
Eyal Shapirad8bafea2014-10-23 13:58:38 +03001093 ant_match = (b->ant == ANT_A || b->ant == ANT_B);
1094 else
1095 ant_match = (a->ant == b->ant);
1096
1097 return (a->type == b->type) && (a->bw == b->bw) && (a->sgi == b->sgi)
1098 && ant_match;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001099}
1100
Eyal Shapiraad82d8a2015-03-08 19:43:41 +02001101static inline enum rs_column rs_get_column_from_rate(struct rs_rate *rate)
1102{
1103 if (is_legacy(rate)) {
1104 if (rate->ant == ANT_A)
1105 return RS_COLUMN_LEGACY_ANT_A;
1106
1107 if (rate->ant == ANT_B)
1108 return RS_COLUMN_LEGACY_ANT_B;
1109
1110 goto err;
1111 }
1112
1113 if (is_siso(rate)) {
1114 if (rate->ant == ANT_A || rate->stbc || rate->bfer)
1115 return rate->sgi ? RS_COLUMN_SISO_ANT_A_SGI :
1116 RS_COLUMN_SISO_ANT_A;
1117
1118 if (rate->ant == ANT_B)
1119 return rate->sgi ? RS_COLUMN_SISO_ANT_B_SGI :
1120 RS_COLUMN_SISO_ANT_B;
1121
1122 goto err;
1123 }
1124
1125 if (is_mimo(rate))
1126 return rate->sgi ? RS_COLUMN_MIMO2_SGI : RS_COLUMN_MIMO2;
1127
1128err:
1129 return RS_COLUMN_INVALID;
1130}
1131
Eyal Shapira1ebc8f22014-09-14 15:23:23 +03001132static u8 rs_get_tid(struct ieee80211_hdr *hdr)
1133{
1134 u8 tid = IWL_MAX_TID_COUNT;
1135
1136 if (ieee80211_is_data_qos(hdr->frame_control)) {
1137 u8 *qc = ieee80211_get_qos_ctl(hdr);
1138 tid = qc[0] & 0xf;
1139 }
1140
1141 if (unlikely(tid > IWL_MAX_TID_COUNT))
1142 tid = IWL_MAX_TID_COUNT;
1143
1144 return tid;
1145}
1146
1147void iwl_mvm_rs_tx_status(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Matti Gottliebff7a68d2016-05-17 10:50:08 +03001148 int tid, struct ieee80211_tx_info *info, bool ndp)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001149{
1150 int legacy_success;
1151 int retries;
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001152 int i;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001153 struct iwl_lq_cmd *table;
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001154 u32 lq_hwrate;
1155 struct rs_rate lq_rate, tx_resp_rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001156 struct iwl_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001157 u32 tlc_info = (uintptr_t)info->status.status_driver_data[0];
1158 u8 reduced_txp = tlc_info & RS_DRV_DATA_TXP_MSK;
1159 u8 lq_color = RS_DRV_DATA_LQ_COLOR_GET(tlc_info);
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001160 u32 tx_resp_hwrate = (uintptr_t)info->status.status_driver_data[1];
Eyal Shapira1ebc8f22014-09-14 15:23:23 +03001161 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
1162 struct iwl_lq_sta *lq_sta = &mvmsta->lq_sta;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001163
Johannes Berg8ca151b2013-01-24 14:25:36 +01001164 /* Treat uninitialized rate scaling data same as non-existing. */
1165 if (!lq_sta) {
1166 IWL_DEBUG_RATE(mvm, "Station rate scaling not created yet.\n");
1167 return;
Eliad Pellerae969af2014-06-11 15:51:33 +03001168 } else if (!lq_sta->pers.drv) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001169 IWL_DEBUG_RATE(mvm, "Rate scaling not initialized yet.\n");
1170 return;
1171 }
1172
Johannes Berg8ca151b2013-01-24 14:25:36 +01001173 /* This packet was aggregated but doesn't carry status info */
1174 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
1175 !(info->flags & IEEE80211_TX_STAT_AMPDU))
1176 return;
1177
Eyal Shapiraad82d8a2015-03-08 19:43:41 +02001178 rs_rate_from_ucode_rate(tx_resp_hwrate, info->band, &tx_resp_rate);
1179
1180#ifdef CONFIG_MAC80211_DEBUGFS
1181 /* Disable last tx check if we are debugging with fixed rate but
1182 * update tx stats */
1183 if (lq_sta->pers.dbg_fixed_rate) {
1184 int index = tx_resp_rate.index;
1185 enum rs_column column;
1186 int attempts, success;
1187
1188 column = rs_get_column_from_rate(&tx_resp_rate);
1189 if (WARN_ONCE(column == RS_COLUMN_INVALID,
1190 "Can't map rate 0x%x to column",
1191 tx_resp_hwrate))
1192 return;
1193
1194 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
1195 attempts = info->status.ampdu_len;
1196 success = info->status.ampdu_ack_len;
1197 } else {
1198 attempts = info->status.rates[0].count;
1199 success = !!(info->flags & IEEE80211_TX_STAT_ACK);
1200 }
1201
1202 lq_sta->pers.tx_stats[column][index].total += attempts;
1203 lq_sta->pers.tx_stats[column][index].success += success;
1204
1205 IWL_DEBUG_RATE(mvm, "Fixed rate 0x%x success %d attempts %d\n",
1206 tx_resp_hwrate, success, attempts);
1207 return;
1208 }
1209#endif
1210
Eyal Shapira87d5e412014-04-06 18:13:22 +03001211 if (time_after(jiffies,
Eyal Shapira834437d2014-12-17 15:38:58 +02001212 (unsigned long)(lq_sta->last_tx +
1213 (IWL_MVM_RS_IDLE_TIMEOUT * HZ)))) {
Johannes Bergefad21d22014-11-03 15:51:47 +01001214 int t;
1215
Eyal Shapira87d5e412014-04-06 18:13:22 +03001216 IWL_DEBUG_RATE(mvm, "Tx idle for too long. reinit rs\n");
Johannes Bergefad21d22014-11-03 15:51:47 +01001217 for (t = 0; t < IWL_MAX_TID_COUNT; t++)
1218 ieee80211_stop_tx_ba_session(sta, t);
Eyal Shapira87d5e412014-04-06 18:13:22 +03001219
Eyal Shapira1ebc8f22014-09-14 15:23:23 +03001220 iwl_mvm_rs_rate_init(mvm, sta, info->band, false);
Eyal Shapira87d5e412014-04-06 18:13:22 +03001221 return;
1222 }
1223 lq_sta->last_tx = jiffies;
1224
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001225 /* Ignore this Tx frame response if its initial rate doesn't match
1226 * that of latest Link Quality command. There may be stragglers
1227 * from a previous Link Quality command, but we're no longer interested
1228 * in those; they're either from the "active" mode while we're trying
1229 * to check "search" mode, or a prior "search" mode after we've moved
1230 * to a new "search" mode (which might become the new "active" mode).
1231 */
1232 table = &lq_sta->lq;
1233 lq_hwrate = le32_to_cpu(table->rs_table[0]);
1234 rs_rate_from_ucode_rate(lq_hwrate, info->band, &lq_rate);
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001235
Johannes Berg8ca151b2013-01-24 14:25:36 +01001236 /* Here we actually compare this rate to the latest LQ command */
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001237 if (lq_color != LQ_FLAG_COLOR_GET(table->flags)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001238 IWL_DEBUG_RATE(mvm,
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001239 "tx resp color 0x%x does not match 0x%x\n",
1240 lq_color, LQ_FLAG_COLOR_GET(table->flags));
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001241
Johannes Berg8ca151b2013-01-24 14:25:36 +01001242 /*
1243 * Since rates mis-match, the last LQ command may have failed.
1244 * After IWL_MISSED_RATE_MAX mis-matches, resync the uCode with
1245 * ... driver.
1246 */
1247 lq_sta->missed_rate_counter++;
Eyal Shapira834437d2014-12-17 15:38:58 +02001248 if (lq_sta->missed_rate_counter > IWL_MVM_RS_MISSED_RATE_MAX) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001249 lq_sta->missed_rate_counter = 0;
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001250 IWL_DEBUG_RATE(mvm,
1251 "Too many rates mismatch. Send sync LQ. rs_state %d\n",
1252 lq_sta->rs_state);
Eyal Shapira9e680942013-11-09 00:16:16 +02001253 iwl_mvm_send_lq_cmd(mvm, &lq_sta->lq, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001254 }
1255 /* Regardless, ignore this status info for outdated rate */
1256 return;
1257 } else
1258 /* Rate did match, so reset the missed_rate_counter */
1259 lq_sta->missed_rate_counter = 0;
1260
Eyal Shapira26a2cc02014-11-05 12:03:59 +02001261 if (!lq_sta->search_better_tbl) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001262 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1263 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
Eyal Shapira26a2cc02014-11-05 12:03:59 +02001264 } else {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001265 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
1266 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Eyal Shapira26a2cc02014-11-05 12:03:59 +02001267 }
1268
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001269 if (WARN_ON_ONCE(!rs_rate_column_match(&lq_rate, &curr_tbl->rate))) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001270 IWL_DEBUG_RATE(mvm,
1271 "Neither active nor search matches tx rate\n");
1272 tmp_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Eyal Shapira5aa33552013-11-23 01:06:36 +02001273 rs_dump_rate(mvm, &tmp_tbl->rate, "ACTIVE");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001274 tmp_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
Eyal Shapira5aa33552013-11-23 01:06:36 +02001275 rs_dump_rate(mvm, &tmp_tbl->rate, "SEARCH");
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001276 rs_dump_rate(mvm, &lq_rate, "ACTUAL");
Eyal Shapira5aa33552013-11-23 01:06:36 +02001277
Johannes Berg8ca151b2013-01-24 14:25:36 +01001278 /*
1279 * no matching table found, let's by-pass the data collection
1280 * and continue to perform rate scale to find the rate table
1281 */
1282 rs_stay_in_table(lq_sta, true);
1283 goto done;
1284 }
1285
1286 /*
1287 * Updating the frame history depends on whether packets were
1288 * aggregated.
1289 *
1290 * For aggregation, all packets were transmitted at the same rate, the
1291 * first index into rate scale table.
1292 */
1293 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
Gregory Greenman69c7fda2015-12-29 11:26:35 +02001294 rs_collect_tpc_data(mvm, lq_sta, curr_tbl, lq_rate.index,
1295 info->status.ampdu_len,
1296 info->status.ampdu_ack_len,
1297 reduced_txp);
1298
1299 /* ampdu_ack_len = 0 marks no BA was received. For TLC, treat
1300 * it as a single frame loss as we don't want the success ratio
1301 * to dip too quickly because a BA wasn't received.
1302 * For TPC, there's no need for this optimisation since we want
1303 * to recover very quickly from a bad power reduction and,
1304 * therefore we'd like the success ratio to get an immediate hit
1305 * when failing to get a BA, so we'd switch back to a lower or
1306 * zero power reduction. When FW transmits agg with a rate
1307 * different from the initial rate, it will not use reduced txp
1308 * and will send BA notification twice (one empty with reduced
1309 * txp equal to the value from LQ and one with reduced txp 0).
1310 * We need to update counters for each txp level accordingly.
Eyal Shapirad6bda662014-11-12 13:30:20 +02001311 */
1312 if (info->status.ampdu_ack_len == 0)
1313 info->status.ampdu_len = 1;
1314
Gregory Greenman69c7fda2015-12-29 11:26:35 +02001315 rs_collect_tlc_data(mvm, lq_sta, curr_tbl, lq_rate.index,
1316 info->status.ampdu_len,
1317 info->status.ampdu_ack_len);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001318
1319 /* Update success/fail counts if not searching for new mode */
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001320 if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001321 lq_sta->total_success += info->status.ampdu_ack_len;
1322 lq_sta->total_failed += (info->status.ampdu_len -
1323 info->status.ampdu_ack_len);
1324 }
1325 } else {
Liad Kaufman90cb1232015-03-29 11:39:34 +03001326 /* For legacy, update frame history with for each Tx retry. */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001327 retries = info->status.rates[0].count - 1;
1328 /* HW doesn't send more than 15 retries */
1329 retries = min(retries, 15);
1330
1331 /* The last transmission may have been successful */
1332 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
1333 /* Collect data for each rate used during failed TX attempts */
1334 for (i = 0; i <= retries; ++i) {
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001335 lq_hwrate = le32_to_cpu(table->rs_table[i]);
1336 rs_rate_from_ucode_rate(lq_hwrate, info->band,
1337 &lq_rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001338 /*
1339 * Only collect stats if retried rate is in the same RS
1340 * table as active/search.
1341 */
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001342 if (rs_rate_column_match(&lq_rate, &curr_tbl->rate))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001343 tmp_tbl = curr_tbl;
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001344 else if (rs_rate_column_match(&lq_rate,
1345 &other_tbl->rate))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001346 tmp_tbl = other_tbl;
Eyal Shapira4107dbd2013-12-10 12:20:37 +02001347 else
Johannes Berg8ca151b2013-01-24 14:25:36 +01001348 continue;
Eyal Shapira4107dbd2013-12-10 12:20:37 +02001349
Gregory Greenman69c7fda2015-12-29 11:26:35 +02001350 rs_collect_tpc_data(mvm, lq_sta, tmp_tbl,
1351 lq_rate.index, 1,
1352 i < retries ? 0 : legacy_success,
1353 reduced_txp);
1354 rs_collect_tlc_data(mvm, lq_sta, tmp_tbl,
1355 lq_rate.index, 1,
1356 i < retries ? 0 : legacy_success);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001357 }
1358
1359 /* Update success/fail counts if not searching for new mode */
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001360 if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001361 lq_sta->total_success += legacy_success;
1362 lq_sta->total_failed += retries + (1 - legacy_success);
1363 }
1364 }
1365 /* The last TX rate is cached in lq_sta; it's set in if/else above */
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001366 lq_sta->last_rate_n_flags = lq_hwrate;
Eliad Peller2fd647f2014-03-13 17:21:36 +02001367 IWL_DEBUG_RATE(mvm, "reduced txpower: %d\n", reduced_txp);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001368done:
1369 /* See if there's a better rate or modulation mode to try. */
Emmanuel Grumbach8dfc2752014-09-21 13:29:48 +03001370 if (sta->supp_rates[info->band])
Matti Gottliebff7a68d2016-05-17 10:50:08 +03001371 rs_rate_scale_perform(mvm, sta, lq_sta, tid, ndp);
Eyal Shapira1ebc8f22014-09-14 15:23:23 +03001372}
1373
1374/*
1375 * mac80211 sends us Tx status
1376 */
1377static void rs_mac80211_tx_status(void *mvm_r,
1378 struct ieee80211_supported_band *sband,
1379 struct ieee80211_sta *sta, void *priv_sta,
1380 struct sk_buff *skb)
1381{
1382 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1383 struct iwl_op_mode *op_mode = (struct iwl_op_mode *)mvm_r;
1384 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
1385 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1386
Johannes Bergdcbc17a2015-03-10 21:24:34 +01001387 if (!iwl_mvm_sta_from_mac80211(sta)->vif)
1388 return;
1389
Eyal Shapira1ebc8f22014-09-14 15:23:23 +03001390 if (!ieee80211_is_data(hdr->frame_control) ||
1391 info->flags & IEEE80211_TX_CTL_NO_ACK)
1392 return;
1393
Matti Gottliebff7a68d2016-05-17 10:50:08 +03001394 iwl_mvm_rs_tx_status(mvm, sta, rs_get_tid(hdr), info,
1395 ieee80211_is_qos_nullfunc(hdr->frame_control));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001396}
1397
1398/*
1399 * Begin a period of staying with a selected modulation mode.
1400 * Set "stay_in_tbl" flag to prevent any mode switches.
1401 * Set frame tx success limits according to legacy vs. high-throughput,
1402 * and reset overall (spanning all rates) tx success history statistics.
1403 * These control how long we stay using same modulation mode before
1404 * searching for a new mode.
1405 */
1406static void rs_set_stay_in_table(struct iwl_mvm *mvm, u8 is_legacy,
1407 struct iwl_lq_sta *lq_sta)
1408{
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001409 IWL_DEBUG_RATE(mvm, "Moving to RS_STATE_STAY_IN_COLUMN\n");
1410 lq_sta->rs_state = RS_STATE_STAY_IN_COLUMN;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001411 if (is_legacy) {
Eyal Shapira834437d2014-12-17 15:38:58 +02001412 lq_sta->table_count_limit = IWL_MVM_RS_LEGACY_TABLE_COUNT;
1413 lq_sta->max_failure_limit = IWL_MVM_RS_LEGACY_FAILURE_LIMIT;
1414 lq_sta->max_success_limit = IWL_MVM_RS_LEGACY_SUCCESS_LIMIT;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001415 } else {
Eyal Shapira834437d2014-12-17 15:38:58 +02001416 lq_sta->table_count_limit = IWL_MVM_RS_NON_LEGACY_TABLE_COUNT;
1417 lq_sta->max_failure_limit = IWL_MVM_RS_NON_LEGACY_FAILURE_LIMIT;
1418 lq_sta->max_success_limit = IWL_MVM_RS_NON_LEGACY_SUCCESS_LIMIT;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001419 }
1420 lq_sta->table_count = 0;
1421 lq_sta->total_failed = 0;
1422 lq_sta->total_success = 0;
1423 lq_sta->flush_timer = jiffies;
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001424 lq_sta->visited_columns = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001425}
1426
Eyal Shapira6a028d92014-12-07 18:18:27 +02001427static inline int rs_get_max_rate_from_mask(unsigned long rate_mask)
1428{
1429 if (rate_mask)
1430 return find_last_bit(&rate_mask, BITS_PER_LONG);
1431 return IWL_RATE_INVALID;
1432}
1433
Eyal Shapira198266a2014-03-31 22:37:39 +03001434static int rs_get_max_allowed_rate(struct iwl_lq_sta *lq_sta,
1435 const struct rs_tx_column *column)
1436{
1437 switch (column->mode) {
1438 case RS_LEGACY:
1439 return lq_sta->max_legacy_rate_idx;
1440 case RS_SISO:
1441 return lq_sta->max_siso_rate_idx;
1442 case RS_MIMO2:
1443 return lq_sta->max_mimo2_rate_idx;
1444 default:
1445 WARN_ON_ONCE(1);
1446 }
1447
1448 return lq_sta->max_legacy_rate_idx;
1449}
1450
Johannes Berga34529e2014-01-20 22:57:21 +01001451static const u16 *rs_get_expected_tpt_table(struct iwl_lq_sta *lq_sta,
Eyal Shapira198266a2014-03-31 22:37:39 +03001452 const struct rs_tx_column *column,
1453 u32 bw)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001454{
1455 /* Used to choose among HT tables */
Johannes Berga34529e2014-01-20 22:57:21 +01001456 const u16 (*ht_tbl_pointer)[IWL_RATE_COUNT];
Johannes Berg8ca151b2013-01-24 14:25:36 +01001457
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001458 if (WARN_ON_ONCE(column->mode != RS_LEGACY &&
1459 column->mode != RS_SISO &&
1460 column->mode != RS_MIMO2))
1461 return expected_tpt_legacy;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001462
1463 /* Legacy rates have only one table */
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001464 if (column->mode == RS_LEGACY)
1465 return expected_tpt_legacy;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001466
Eyal Shapirad310e402013-08-11 18:43:47 +03001467 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001468 /* Choose among many HT tables depending on number of streams
Eyal Shapirad310e402013-08-11 18:43:47 +03001469 * (SISO/MIMO2), channel width (20/40/80), SGI, and aggregation
Johannes Berg8ca151b2013-01-24 14:25:36 +01001470 * status */
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001471 if (column->mode == RS_SISO) {
1472 switch (bw) {
Eyal Shapirad310e402013-08-11 18:43:47 +03001473 case RATE_MCS_CHAN_WIDTH_20:
1474 ht_tbl_pointer = expected_tpt_siso_20MHz;
1475 break;
1476 case RATE_MCS_CHAN_WIDTH_40:
1477 ht_tbl_pointer = expected_tpt_siso_40MHz;
1478 break;
1479 case RATE_MCS_CHAN_WIDTH_80:
1480 ht_tbl_pointer = expected_tpt_siso_80MHz;
1481 break;
Gregory Greenman855f4922016-05-25 18:31:39 +03001482 case RATE_MCS_CHAN_WIDTH_160:
1483 ht_tbl_pointer = expected_tpt_siso_160MHz;
1484 break;
Eyal Shapirad310e402013-08-11 18:43:47 +03001485 default:
1486 WARN_ON_ONCE(1);
1487 }
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001488 } else if (column->mode == RS_MIMO2) {
1489 switch (bw) {
Eyal Shapirad310e402013-08-11 18:43:47 +03001490 case RATE_MCS_CHAN_WIDTH_20:
1491 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
1492 break;
1493 case RATE_MCS_CHAN_WIDTH_40:
1494 ht_tbl_pointer = expected_tpt_mimo2_40MHz;
1495 break;
1496 case RATE_MCS_CHAN_WIDTH_80:
1497 ht_tbl_pointer = expected_tpt_mimo2_80MHz;
1498 break;
Gregory Greenman855f4922016-05-25 18:31:39 +03001499 case RATE_MCS_CHAN_WIDTH_160:
1500 ht_tbl_pointer = expected_tpt_mimo2_160MHz;
1501 break;
Eyal Shapirad310e402013-08-11 18:43:47 +03001502 default:
1503 WARN_ON_ONCE(1);
1504 }
1505 } else {
1506 WARN_ON_ONCE(1);
Eyal Shapirad972ab32013-07-28 23:02:45 +00001507 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001508
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001509 if (!column->sgi && !lq_sta->is_agg) /* Normal */
1510 return ht_tbl_pointer[0];
1511 else if (column->sgi && !lq_sta->is_agg) /* SGI */
1512 return ht_tbl_pointer[1];
1513 else if (!column->sgi && lq_sta->is_agg) /* AGG */
1514 return ht_tbl_pointer[2];
Johannes Berg8ca151b2013-01-24 14:25:36 +01001515 else /* AGG+SGI */
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001516 return ht_tbl_pointer[3];
1517}
1518
1519static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
1520 struct iwl_scale_tbl_info *tbl)
1521{
1522 struct rs_rate *rate = &tbl->rate;
1523 const struct rs_tx_column *column = &rs_tx_columns[tbl->column];
1524
1525 tbl->expected_tpt = rs_get_expected_tpt_table(lq_sta, column, rate->bw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001526}
1527
Johannes Berg8ca151b2013-01-24 14:25:36 +01001528static s32 rs_get_best_rate(struct iwl_mvm *mvm,
1529 struct iwl_lq_sta *lq_sta,
1530 struct iwl_scale_tbl_info *tbl, /* "search" */
Eyal Shapira80763512014-04-09 04:31:44 +03001531 unsigned long rate_mask, s8 index)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001532{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001533 struct iwl_scale_tbl_info *active_tbl =
1534 &(lq_sta->lq_info[lq_sta->active_tbl]);
Eyal Shapira80763512014-04-09 04:31:44 +03001535 s32 success_ratio = active_tbl->win[index].success_ratio;
1536 u16 expected_current_tpt = active_tbl->expected_tpt[index];
Johannes Berga34529e2014-01-20 22:57:21 +01001537 const u16 *tpt_tbl = tbl->expected_tpt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001538 u16 high_low;
Eyal Shapira80763512014-04-09 04:31:44 +03001539 u32 target_tpt;
1540 int rate_idx;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001541
Eyal Shapiraed21a382015-09-21 20:03:22 +03001542 if (success_ratio >= RS_PERCENT(IWL_MVM_RS_SR_NO_DECREASE)) {
Eyal Shapira80763512014-04-09 04:31:44 +03001543 target_tpt = 100 * expected_current_tpt;
1544 IWL_DEBUG_RATE(mvm,
1545 "SR %d high. Find rate exceeding EXPECTED_CURRENT %d\n",
1546 success_ratio, target_tpt);
1547 } else {
1548 target_tpt = lq_sta->last_tpt;
1549 IWL_DEBUG_RATE(mvm,
Eyal Shapiraed21a382015-09-21 20:03:22 +03001550 "SR %d not that good. Find rate exceeding ACTUAL_TPT %d\n",
Eyal Shapira80763512014-04-09 04:31:44 +03001551 success_ratio, target_tpt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001552 }
1553
Eyal Shapira80763512014-04-09 04:31:44 +03001554 rate_idx = find_first_bit(&rate_mask, BITS_PER_LONG);
1555
1556 while (rate_idx != IWL_RATE_INVALID) {
1557 if (target_tpt < (100 * tpt_tbl[rate_idx]))
1558 break;
1559
1560 high_low = rs_get_adjacent_rate(mvm, rate_idx, rate_mask,
1561 tbl->rate.type);
1562
1563 rate_idx = (high_low >> 8) & 0xff;
1564 }
1565
1566 IWL_DEBUG_RATE(mvm, "Best rate found %d target_tp %d expected_new %d\n",
1567 rate_idx, target_tpt,
1568 rate_idx != IWL_RATE_INVALID ?
1569 100 * tpt_tbl[rate_idx] : IWL_INVALID_VALUE);
1570
1571 return rate_idx;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001572}
1573
Eyal Shapira5aa33552013-11-23 01:06:36 +02001574static u32 rs_bw_from_sta_bw(struct ieee80211_sta *sta)
Eyal Shapirad310e402013-08-11 18:43:47 +03001575{
Gregory Greenman855f4922016-05-25 18:31:39 +03001576 switch (sta->bandwidth) {
1577 case IEEE80211_STA_RX_BW_160:
1578 return RATE_MCS_CHAN_WIDTH_160;
1579 case IEEE80211_STA_RX_BW_80:
Eyal Shapira5aa33552013-11-23 01:06:36 +02001580 return RATE_MCS_CHAN_WIDTH_80;
Gregory Greenman855f4922016-05-25 18:31:39 +03001581 case IEEE80211_STA_RX_BW_40:
Eyal Shapira5aa33552013-11-23 01:06:36 +02001582 return RATE_MCS_CHAN_WIDTH_40;
Gregory Greenman855f4922016-05-25 18:31:39 +03001583 case IEEE80211_STA_RX_BW_20:
1584 default:
1585 return RATE_MCS_CHAN_WIDTH_20;
1586 }
Eyal Shapirad310e402013-08-11 18:43:47 +03001587}
1588
Johannes Berg8ca151b2013-01-24 14:25:36 +01001589/*
Johannes Berg8ca151b2013-01-24 14:25:36 +01001590 * Check whether we should continue using same modulation mode, or
1591 * begin search for a new mode, based on:
1592 * 1) # tx successes or failures while using this mode
1593 * 2) # times calling this function
1594 * 3) elapsed time in this mode (not used, for now)
1595 */
1596static void rs_stay_in_table(struct iwl_lq_sta *lq_sta, bool force_search)
1597{
1598 struct iwl_scale_tbl_info *tbl;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001599 int active_tbl;
1600 int flush_interval_passed = 0;
1601 struct iwl_mvm *mvm;
1602
Eliad Pellerae969af2014-06-11 15:51:33 +03001603 mvm = lq_sta->pers.drv;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001604 active_tbl = lq_sta->active_tbl;
1605
1606 tbl = &(lq_sta->lq_info[active_tbl]);
1607
1608 /* If we've been disallowing search, see if we should now allow it */
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001609 if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001610 /* Elapsed time using current modulation mode */
1611 if (lq_sta->flush_timer)
1612 flush_interval_passed =
1613 time_after(jiffies,
1614 (unsigned long)(lq_sta->flush_timer +
Eyal Shapira834437d2014-12-17 15:38:58 +02001615 (IWL_MVM_RS_STAY_IN_COLUMN_TIMEOUT * HZ)));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001616
1617 /*
1618 * Check if we should allow search for new modulation mode.
1619 * If many frames have failed or succeeded, or we've used
1620 * this same modulation for a long time, allow search, and
1621 * reset history stats that keep track of whether we should
1622 * allow a new search. Also (below) reset all bitmaps and
1623 * stats in active history.
1624 */
1625 if (force_search ||
1626 (lq_sta->total_failed > lq_sta->max_failure_limit) ||
1627 (lq_sta->total_success > lq_sta->max_success_limit) ||
1628 ((!lq_sta->search_better_tbl) &&
1629 (lq_sta->flush_timer) && (flush_interval_passed))) {
1630 IWL_DEBUG_RATE(mvm,
1631 "LQ: stay is expired %d %d %d\n",
1632 lq_sta->total_failed,
1633 lq_sta->total_success,
1634 flush_interval_passed);
1635
1636 /* Allow search for new mode */
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001637 lq_sta->rs_state = RS_STATE_SEARCH_CYCLE_STARTED;
1638 IWL_DEBUG_RATE(mvm,
1639 "Moving to RS_STATE_SEARCH_CYCLE_STARTED\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001640 lq_sta->total_failed = 0;
1641 lq_sta->total_success = 0;
1642 lq_sta->flush_timer = 0;
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001643 /* mark the current column as visited */
1644 lq_sta->visited_columns = BIT(tbl->column);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001645 /*
1646 * Else if we've used this modulation mode enough repetitions
1647 * (regardless of elapsed time or success/failure), reset
1648 * history bitmaps and rate-specific stats for all rates in
1649 * active table.
1650 */
1651 } else {
1652 lq_sta->table_count++;
1653 if (lq_sta->table_count >=
1654 lq_sta->table_count_limit) {
1655 lq_sta->table_count = 0;
1656
1657 IWL_DEBUG_RATE(mvm,
1658 "LQ: stay in table clear win\n");
Eyal Shapirab804eeb2014-04-06 04:27:06 +03001659 rs_rate_scale_clear_tbl_windows(mvm, tbl);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001660 }
1661 }
1662
1663 /* If transitioning to allow "search", reset all history
1664 * bitmaps and stats in active table (this will become the new
1665 * "search" table). */
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001666 if (lq_sta->rs_state == RS_STATE_SEARCH_CYCLE_STARTED) {
Eyal Shapirab804eeb2014-04-06 04:27:06 +03001667 rs_rate_scale_clear_tbl_windows(mvm, tbl);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001668 }
1669 }
1670}
1671
Emmanuel Grumbach04e3a5d2015-10-28 09:47:41 +02001672static void rs_set_amsdu_len(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
1673 struct iwl_scale_tbl_info *tbl,
1674 enum rs_action scale_action)
1675{
1676 struct iwl_mvm_sta *sta_priv = iwl_mvm_sta_from_mac80211(sta);
1677
1678 if ((!is_vht(&tbl->rate) && !is_ht(&tbl->rate)) ||
1679 tbl->rate.index < IWL_RATE_MCS_5_INDEX ||
1680 scale_action == RS_ACTION_DOWNSCALE)
1681 sta_priv->tlc_amsdu = false;
1682 else
1683 sta_priv->tlc_amsdu = true;
1684}
1685
Johannes Berg8ca151b2013-01-24 14:25:36 +01001686/*
1687 * setup rate table in uCode
1688 */
1689static void rs_update_rate_tbl(struct iwl_mvm *mvm,
Emmanuel Grumbach9145d152013-07-18 08:45:41 +03001690 struct ieee80211_sta *sta,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001691 struct iwl_lq_sta *lq_sta,
Eyal Shapira7b9d74e2015-03-29 18:38:07 +03001692 struct iwl_scale_tbl_info *tbl)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001693{
Eyal Shapira7b9d74e2015-03-29 18:38:07 +03001694 rs_fill_lq_cmd(mvm, sta, lq_sta, &tbl->rate);
Eyal Shapira9e680942013-11-09 00:16:16 +02001695 iwl_mvm_send_lq_cmd(mvm, &lq_sta->lq, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001696}
1697
Eyal Shapira1191f642015-09-19 23:48:45 +03001698static bool rs_tweak_rate_tbl(struct iwl_mvm *mvm,
1699 struct ieee80211_sta *sta,
1700 struct iwl_lq_sta *lq_sta,
1701 struct iwl_scale_tbl_info *tbl,
1702 enum rs_action scale_action)
1703{
1704 if (sta->bandwidth != IEEE80211_STA_RX_BW_80)
1705 return false;
1706
1707 if (!is_vht_siso(&tbl->rate))
1708 return false;
1709
1710 if ((tbl->rate.bw == RATE_MCS_CHAN_WIDTH_80) &&
1711 (tbl->rate.index == IWL_RATE_MCS_0_INDEX) &&
1712 (scale_action == RS_ACTION_DOWNSCALE)) {
1713 tbl->rate.bw = RATE_MCS_CHAN_WIDTH_20;
1714 tbl->rate.index = IWL_RATE_MCS_4_INDEX;
1715 IWL_DEBUG_RATE(mvm, "Switch 80Mhz SISO MCS0 -> 20Mhz MCS4\n");
1716 goto tweaked;
1717 }
1718
1719 /* Go back to 80Mhz MCS1 only if we've established that 20Mhz MCS5 is
1720 * sustainable, i.e. we're past the test window. We can't go back
1721 * if MCS5 is just tested as this will happen always after switching
1722 * to 20Mhz MCS4 because the rate stats are cleared.
1723 */
1724 if ((tbl->rate.bw == RATE_MCS_CHAN_WIDTH_20) &&
1725 (((tbl->rate.index == IWL_RATE_MCS_5_INDEX) &&
1726 (scale_action == RS_ACTION_STAY)) ||
1727 ((tbl->rate.index > IWL_RATE_MCS_5_INDEX) &&
1728 (scale_action == RS_ACTION_UPSCALE)))) {
1729 tbl->rate.bw = RATE_MCS_CHAN_WIDTH_80;
1730 tbl->rate.index = IWL_RATE_MCS_1_INDEX;
1731 IWL_DEBUG_RATE(mvm, "Switch 20Mhz SISO MCS5 -> 80Mhz MCS1\n");
1732 goto tweaked;
1733 }
1734
1735 return false;
1736
1737tweaked:
1738 rs_set_expected_tpt_table(lq_sta, tbl);
1739 rs_rate_scale_clear_tbl_windows(mvm, tbl);
1740 return true;
1741}
1742
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001743static enum rs_column rs_get_next_column(struct iwl_mvm *mvm,
1744 struct iwl_lq_sta *lq_sta,
1745 struct ieee80211_sta *sta,
1746 struct iwl_scale_tbl_info *tbl)
1747{
Eyal Shapira198266a2014-03-31 22:37:39 +03001748 int i, j, max_rate;
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001749 enum rs_column next_col_id;
1750 const struct rs_tx_column *curr_col = &rs_tx_columns[tbl->column];
1751 const struct rs_tx_column *next_col;
1752 allow_column_func_t allow_func;
Moshe Harela0544272014-12-08 21:13:14 +02001753 u8 valid_ants = iwl_mvm_get_valid_tx_ant(mvm);
Johannes Berga34529e2014-01-20 22:57:21 +01001754 const u16 *expected_tpt_tbl;
Eyal Shapira198266a2014-03-31 22:37:39 +03001755 u16 tpt, max_expected_tpt;
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001756
1757 for (i = 0; i < MAX_NEXT_COLUMNS; i++) {
1758 next_col_id = curr_col->next_columns[i];
1759
1760 if (next_col_id == RS_COLUMN_INVALID)
1761 continue;
1762
1763 if (lq_sta->visited_columns & BIT(next_col_id)) {
1764 IWL_DEBUG_RATE(mvm, "Skip already visited column %d\n",
1765 next_col_id);
1766 continue;
1767 }
1768
1769 next_col = &rs_tx_columns[next_col_id];
1770
1771 if (!rs_is_valid_ant(valid_ants, next_col->ant)) {
1772 IWL_DEBUG_RATE(mvm,
1773 "Skip column %d as ANT config isn't supported by chip. valid_ants 0x%x column ant 0x%x\n",
1774 next_col_id, valid_ants, next_col->ant);
1775 continue;
1776 }
1777
1778 for (j = 0; j < MAX_COLUMN_CHECKS; j++) {
1779 allow_func = next_col->checks[j];
Eyal Shapirabb8f44c2015-05-27 22:00:03 +03001780 if (allow_func && !allow_func(mvm, sta, &tbl->rate,
1781 next_col))
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001782 break;
1783 }
1784
1785 if (j != MAX_COLUMN_CHECKS) {
1786 IWL_DEBUG_RATE(mvm,
1787 "Skip column %d: not allowed (check %d failed)\n",
1788 next_col_id, j);
1789
1790 continue;
1791 }
1792
1793 tpt = lq_sta->last_tpt / 100;
1794 expected_tpt_tbl = rs_get_expected_tpt_table(lq_sta, next_col,
Eyal Shapira049e0c32014-05-01 01:28:48 +03001795 rs_bw_from_sta_bw(sta));
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001796 if (WARN_ON_ONCE(!expected_tpt_tbl))
1797 continue;
1798
Eyal Shapira198266a2014-03-31 22:37:39 +03001799 max_rate = rs_get_max_allowed_rate(lq_sta, next_col);
Eyal Shapira6a028d92014-12-07 18:18:27 +02001800 if (max_rate == IWL_RATE_INVALID) {
1801 IWL_DEBUG_RATE(mvm,
1802 "Skip column %d: no rate is allowed in this column\n",
1803 next_col_id);
Eyal Shapira198266a2014-03-31 22:37:39 +03001804 continue;
Eyal Shapira6a028d92014-12-07 18:18:27 +02001805 }
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001806
Eyal Shapira198266a2014-03-31 22:37:39 +03001807 max_expected_tpt = expected_tpt_tbl[max_rate];
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001808 if (tpt >= max_expected_tpt) {
1809 IWL_DEBUG_RATE(mvm,
1810 "Skip column %d: can't beat current TPT. Max expected %d current %d\n",
1811 next_col_id, max_expected_tpt, tpt);
1812 continue;
1813 }
1814
Eyal Shapira198266a2014-03-31 22:37:39 +03001815 IWL_DEBUG_RATE(mvm,
1816 "Found potential column %d. Max expected %d current %d\n",
1817 next_col_id, max_expected_tpt, tpt);
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001818 break;
1819 }
1820
1821 if (i == MAX_NEXT_COLUMNS)
1822 return RS_COLUMN_INVALID;
1823
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001824 return next_col_id;
1825}
1826
1827static int rs_switch_to_column(struct iwl_mvm *mvm,
1828 struct iwl_lq_sta *lq_sta,
1829 struct ieee80211_sta *sta,
1830 enum rs_column col_id)
1831{
1832 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1833 struct iwl_scale_tbl_info *search_tbl =
1834 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1835 struct rs_rate *rate = &search_tbl->rate;
1836 const struct rs_tx_column *column = &rs_tx_columns[col_id];
1837 const struct rs_tx_column *curr_column = &rs_tx_columns[tbl->column];
1838 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1839 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Eyal Shapira80763512014-04-09 04:31:44 +03001840 unsigned long rate_mask = 0;
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001841 u32 rate_idx = 0;
1842
1843 memcpy(search_tbl, tbl, sz);
1844
1845 rate->sgi = column->sgi;
1846 rate->ant = column->ant;
1847
1848 if (column->mode == RS_LEGACY) {
Johannes Berg57fbcce2016-04-12 15:56:15 +02001849 if (lq_sta->band == NL80211_BAND_5GHZ)
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001850 rate->type = LQ_LEGACY_A;
1851 else
1852 rate->type = LQ_LEGACY_G;
1853
Eyal Shapirad8bafea2014-10-23 13:58:38 +03001854 rate->bw = RATE_MCS_CHAN_WIDTH_20;
1855 rate->ldpc = false;
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001856 rate_mask = lq_sta->active_legacy_rate;
1857 } else if (column->mode == RS_SISO) {
1858 rate->type = lq_sta->is_vht ? LQ_VHT_SISO : LQ_HT_SISO;
1859 rate_mask = lq_sta->active_siso_rate;
1860 } else if (column->mode == RS_MIMO2) {
1861 rate->type = lq_sta->is_vht ? LQ_VHT_MIMO2 : LQ_HT_MIMO2;
1862 rate_mask = lq_sta->active_mimo2_rate;
1863 } else {
Dan Carpenter7281b162015-11-21 13:33:38 +03001864 WARN_ONCE(1, "Bad column mode");
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001865 }
1866
Eyal Shapirad8bafea2014-10-23 13:58:38 +03001867 if (column->mode != RS_LEGACY) {
1868 rate->bw = rs_bw_from_sta_bw(sta);
1869 rate->ldpc = lq_sta->ldpc;
1870 }
1871
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001872 search_tbl->column = col_id;
1873 rs_set_expected_tpt_table(lq_sta, search_tbl);
1874
Eyal Shapira75d3e2d2014-01-07 18:19:35 +02001875 lq_sta->visited_columns |= BIT(col_id);
1876
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001877 /* Get the best matching rate if we're changing modes. e.g.
1878 * SISO->MIMO, LEGACY->SISO, MIMO->SISO
1879 */
1880 if (curr_column->mode != column->mode) {
1881 rate_idx = rs_get_best_rate(mvm, lq_sta, search_tbl,
1882 rate_mask, rate->index);
1883
1884 if ((rate_idx == IWL_RATE_INVALID) ||
1885 !(BIT(rate_idx) & rate_mask)) {
1886 IWL_DEBUG_RATE(mvm,
1887 "can not switch with index %d"
Eyal Shapira80763512014-04-09 04:31:44 +03001888 " rate mask %lx\n",
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001889 rate_idx, rate_mask);
1890
1891 goto err;
1892 }
1893
1894 rate->index = rate_idx;
1895 }
1896
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001897 IWL_DEBUG_RATE(mvm, "Switched to column %d: Index %d\n",
1898 col_id, rate->index);
1899
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001900 return 0;
1901
1902err:
1903 rate->type = LQ_NONE;
1904 return -1;
1905}
1906
Eyal Shapira4e4b8152013-12-11 00:55:36 +02001907static enum rs_action rs_get_rate_action(struct iwl_mvm *mvm,
1908 struct iwl_scale_tbl_info *tbl,
1909 s32 sr, int low, int high,
1910 int current_tpt,
1911 int low_tpt, int high_tpt)
1912{
1913 enum rs_action action = RS_ACTION_STAY;
1914
Eyal Shapira834437d2014-12-17 15:38:58 +02001915 if ((sr <= RS_PERCENT(IWL_MVM_RS_SR_FORCE_DECREASE)) ||
1916 (current_tpt == 0)) {
Eyal Shapira4e4b8152013-12-11 00:55:36 +02001917 IWL_DEBUG_RATE(mvm,
Eyal Shapirae53839eb2014-04-06 02:42:18 +03001918 "Decrease rate because of low SR\n");
1919 return RS_ACTION_DOWNSCALE;
1920 }
1921
1922 if ((low_tpt == IWL_INVALID_VALUE) &&
1923 (high_tpt == IWL_INVALID_VALUE) &&
1924 (high != IWL_RATE_INVALID)) {
1925 IWL_DEBUG_RATE(mvm,
1926 "No data about high/low rates. Increase rate\n");
1927 return RS_ACTION_UPSCALE;
1928 }
1929
1930 if ((high_tpt == IWL_INVALID_VALUE) &&
1931 (high != IWL_RATE_INVALID) &&
1932 (low_tpt != IWL_INVALID_VALUE) &&
1933 (low_tpt < current_tpt)) {
1934 IWL_DEBUG_RATE(mvm,
1935 "No data about high rate and low rate is worse. Increase rate\n");
1936 return RS_ACTION_UPSCALE;
1937 }
1938
1939 if ((high_tpt != IWL_INVALID_VALUE) &&
1940 (high_tpt > current_tpt)) {
1941 IWL_DEBUG_RATE(mvm,
1942 "Higher rate is better. Increate rate\n");
1943 return RS_ACTION_UPSCALE;
1944 }
1945
1946 if ((low_tpt != IWL_INVALID_VALUE) &&
1947 (high_tpt != IWL_INVALID_VALUE) &&
1948 (low_tpt < current_tpt) &&
1949 (high_tpt < current_tpt)) {
1950 IWL_DEBUG_RATE(mvm,
1951 "Both high and low are worse. Maintain rate\n");
1952 return RS_ACTION_STAY;
1953 }
1954
1955 if ((low_tpt != IWL_INVALID_VALUE) &&
1956 (low_tpt > current_tpt)) {
1957 IWL_DEBUG_RATE(mvm,
1958 "Lower rate is better\n");
Eyal Shapira4e4b8152013-12-11 00:55:36 +02001959 action = RS_ACTION_DOWNSCALE;
Eyal Shapirae53839eb2014-04-06 02:42:18 +03001960 goto out;
1961 }
1962
1963 if ((low_tpt == IWL_INVALID_VALUE) &&
1964 (low != IWL_RATE_INVALID)) {
1965 IWL_DEBUG_RATE(mvm,
1966 "No data about lower rate\n");
1967 action = RS_ACTION_DOWNSCALE;
1968 goto out;
1969 }
1970
1971 IWL_DEBUG_RATE(mvm, "Maintain rate\n");
1972
1973out:
1974 if ((action == RS_ACTION_DOWNSCALE) && (low != IWL_RATE_INVALID)) {
Eyal Shapira834437d2014-12-17 15:38:58 +02001975 if (sr >= RS_PERCENT(IWL_MVM_RS_SR_NO_DECREASE)) {
Eyal Shapira4e4b8152013-12-11 00:55:36 +02001976 IWL_DEBUG_RATE(mvm,
Eyal Shapirae53839eb2014-04-06 02:42:18 +03001977 "SR is above NO DECREASE. Avoid downscale\n");
Eyal Shapira4e4b8152013-12-11 00:55:36 +02001978 action = RS_ACTION_STAY;
Eyal Shapirae53839eb2014-04-06 02:42:18 +03001979 } else if (current_tpt > (100 * tbl->expected_tpt[low])) {
1980 IWL_DEBUG_RATE(mvm,
1981 "Current TPT is higher than max expected in low rate. Avoid downscale\n");
1982 action = RS_ACTION_STAY;
1983 } else {
1984 IWL_DEBUG_RATE(mvm, "Decrease rate\n");
Eyal Shapira4e4b8152013-12-11 00:55:36 +02001985 }
1986 }
1987
Eyal Shapira4e4b8152013-12-11 00:55:36 +02001988 return action;
1989}
Eyal Shapirab3b06a32013-11-24 21:30:13 +02001990
Eyal Shapirad8bafea2014-10-23 13:58:38 +03001991static bool rs_stbc_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
1992 struct iwl_lq_sta *lq_sta)
1993{
Eyal Shapirad8bafea2014-10-23 13:58:38 +03001994 /* Our chip supports Tx STBC and the peer is an HT/VHT STA which
1995 * supports STBC of at least 1*SS
1996 */
Eyal Shapira3d44eeb2015-01-16 22:37:04 +02001997 if (!lq_sta->stbc_capable)
Eyal Shapirad8bafea2014-10-23 13:58:38 +03001998 return false;
1999
Eyal Shapirad8bafea2014-10-23 13:58:38 +03002000 if (!iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta))
2001 return false;
2002
2003 return true;
2004}
2005
Eliad Peller2fd647f2014-03-13 17:21:36 +02002006static void rs_get_adjacent_txp(struct iwl_mvm *mvm, int index,
2007 int *weaker, int *stronger)
2008{
Eyal Shapira834437d2014-12-17 15:38:58 +02002009 *weaker = index + IWL_MVM_RS_TPC_TX_POWER_STEP;
Eliad Peller2fd647f2014-03-13 17:21:36 +02002010 if (*weaker > TPC_MAX_REDUCTION)
2011 *weaker = TPC_INVALID;
2012
Eyal Shapira834437d2014-12-17 15:38:58 +02002013 *stronger = index - IWL_MVM_RS_TPC_TX_POWER_STEP;
Eliad Peller2fd647f2014-03-13 17:21:36 +02002014 if (*stronger < 0)
2015 *stronger = TPC_INVALID;
2016}
2017
Eyal Shapira1e9551d2014-04-21 21:33:17 +03002018static bool rs_tpc_allowed(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Johannes Berg57fbcce2016-04-12 15:56:15 +02002019 struct rs_rate *rate, enum nl80211_band band)
Eliad Peller2fd647f2014-03-13 17:21:36 +02002020{
2021 int index = rate->index;
Eyal Shapira1e9551d2014-04-21 21:33:17 +03002022 bool cam = (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_CAM);
2023 bool sta_ps_disabled = (vif->type == NL80211_IFTYPE_STATION &&
2024 !vif->bss_conf.ps);
Eliad Peller2fd647f2014-03-13 17:21:36 +02002025
Eyal Shapira1e9551d2014-04-21 21:33:17 +03002026 IWL_DEBUG_RATE(mvm, "cam: %d sta_ps_disabled %d\n",
2027 cam, sta_ps_disabled);
Eliad Peller2fd647f2014-03-13 17:21:36 +02002028 /*
2029 * allow tpc only if power management is enabled, or bt coex
2030 * activity grade allows it and we are on 2.4Ghz.
2031 */
Eyal Shapira1e9551d2014-04-21 21:33:17 +03002032 if ((cam || sta_ps_disabled) &&
Eliad Peller2fd647f2014-03-13 17:21:36 +02002033 !iwl_mvm_bt_coex_is_tpc_allowed(mvm, band))
2034 return false;
2035
2036 IWL_DEBUG_RATE(mvm, "check rate, table type: %d\n", rate->type);
2037 if (is_legacy(rate))
2038 return index == IWL_RATE_54M_INDEX;
2039 if (is_ht(rate))
2040 return index == IWL_RATE_MCS_7_INDEX;
2041 if (is_vht(rate))
2042 return index == IWL_RATE_MCS_7_INDEX ||
2043 index == IWL_RATE_MCS_8_INDEX ||
2044 index == IWL_RATE_MCS_9_INDEX;
2045
2046 WARN_ON_ONCE(1);
2047 return false;
2048}
2049
2050enum tpc_action {
2051 TPC_ACTION_STAY,
2052 TPC_ACTION_DECREASE,
2053 TPC_ACTION_INCREASE,
2054 TPC_ACTION_NO_RESTIRCTION,
2055};
2056
2057static enum tpc_action rs_get_tpc_action(struct iwl_mvm *mvm,
2058 s32 sr, int weak, int strong,
2059 int current_tpt,
2060 int weak_tpt, int strong_tpt)
2061{
2062 /* stay until we have valid tpt */
2063 if (current_tpt == IWL_INVALID_VALUE) {
2064 IWL_DEBUG_RATE(mvm, "no current tpt. stay.\n");
2065 return TPC_ACTION_STAY;
2066 }
2067
2068 /* Too many failures, increase txp */
Eyal Shapira834437d2014-12-17 15:38:58 +02002069 if (sr <= RS_PERCENT(IWL_MVM_RS_TPC_SR_FORCE_INCREASE) ||
2070 current_tpt == 0) {
Eliad Peller2fd647f2014-03-13 17:21:36 +02002071 IWL_DEBUG_RATE(mvm, "increase txp because of weak SR\n");
2072 return TPC_ACTION_NO_RESTIRCTION;
2073 }
2074
2075 /* try decreasing first if applicable */
Gregory Greenman6ad6c012016-01-27 00:10:15 +02002076 if (sr >= RS_PERCENT(IWL_MVM_RS_TPC_SR_NO_INCREASE) &&
2077 weak != TPC_INVALID) {
Eliad Peller2fd647f2014-03-13 17:21:36 +02002078 if (weak_tpt == IWL_INVALID_VALUE &&
2079 (strong_tpt == IWL_INVALID_VALUE ||
2080 current_tpt >= strong_tpt)) {
2081 IWL_DEBUG_RATE(mvm,
2082 "no weak txp measurement. decrease txp\n");
2083 return TPC_ACTION_DECREASE;
2084 }
2085
2086 if (weak_tpt > current_tpt) {
2087 IWL_DEBUG_RATE(mvm,
2088 "lower txp has better tpt. decrease txp\n");
2089 return TPC_ACTION_DECREASE;
2090 }
2091 }
2092
2093 /* next, increase if needed */
Eyal Shapira834437d2014-12-17 15:38:58 +02002094 if (sr < RS_PERCENT(IWL_MVM_RS_TPC_SR_NO_INCREASE) &&
2095 strong != TPC_INVALID) {
Eliad Peller2fd647f2014-03-13 17:21:36 +02002096 if (weak_tpt == IWL_INVALID_VALUE &&
2097 strong_tpt != IWL_INVALID_VALUE &&
2098 current_tpt < strong_tpt) {
2099 IWL_DEBUG_RATE(mvm,
2100 "higher txp has better tpt. increase txp\n");
2101 return TPC_ACTION_INCREASE;
2102 }
2103
2104 if (weak_tpt < current_tpt &&
2105 (strong_tpt == IWL_INVALID_VALUE ||
2106 strong_tpt > current_tpt)) {
2107 IWL_DEBUG_RATE(mvm,
2108 "lower txp has worse tpt. increase txp\n");
2109 return TPC_ACTION_INCREASE;
2110 }
2111 }
2112
2113 IWL_DEBUG_RATE(mvm, "no need to increase or decrease txp - stay\n");
2114 return TPC_ACTION_STAY;
2115}
2116
2117static bool rs_tpc_perform(struct iwl_mvm *mvm,
2118 struct ieee80211_sta *sta,
2119 struct iwl_lq_sta *lq_sta,
2120 struct iwl_scale_tbl_info *tbl)
2121{
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01002122 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Eliad Peller2fd647f2014-03-13 17:21:36 +02002123 struct ieee80211_vif *vif = mvm_sta->vif;
2124 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg57fbcce2016-04-12 15:56:15 +02002125 enum nl80211_band band;
Eliad Peller2fd647f2014-03-13 17:21:36 +02002126 struct iwl_rate_scale_data *window;
2127 struct rs_rate *rate = &tbl->rate;
2128 enum tpc_action action;
2129 s32 sr;
2130 u8 cur = lq_sta->lq.reduced_tpc;
2131 int current_tpt;
2132 int weak, strong;
2133 int weak_tpt = IWL_INVALID_VALUE, strong_tpt = IWL_INVALID_VALUE;
2134
Eliad Peller9a75b3d2014-03-13 17:15:04 +02002135#ifdef CONFIG_MAC80211_DEBUGFS
Eliad Pellerae969af2014-06-11 15:51:33 +03002136 if (lq_sta->pers.dbg_fixed_txp_reduction <= TPC_MAX_REDUCTION) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02002137 IWL_DEBUG_RATE(mvm, "fixed tpc: %d\n",
Eliad Pellerae969af2014-06-11 15:51:33 +03002138 lq_sta->pers.dbg_fixed_txp_reduction);
2139 lq_sta->lq.reduced_tpc = lq_sta->pers.dbg_fixed_txp_reduction;
2140 return cur != lq_sta->pers.dbg_fixed_txp_reduction;
Eliad Peller9a75b3d2014-03-13 17:15:04 +02002141 }
2142#endif
2143
Eliad Peller2fd647f2014-03-13 17:21:36 +02002144 rcu_read_lock();
2145 chanctx_conf = rcu_dereference(vif->chanctx_conf);
2146 if (WARN_ON(!chanctx_conf))
Johannes Berg57fbcce2016-04-12 15:56:15 +02002147 band = NUM_NL80211_BANDS;
Eliad Peller2fd647f2014-03-13 17:21:36 +02002148 else
2149 band = chanctx_conf->def.chan->band;
2150 rcu_read_unlock();
2151
Eyal Shapira1e9551d2014-04-21 21:33:17 +03002152 if (!rs_tpc_allowed(mvm, vif, rate, band)) {
Eliad Peller2fd647f2014-03-13 17:21:36 +02002153 IWL_DEBUG_RATE(mvm,
Johannes Berg3c6acb62014-05-07 11:47:53 +02002154 "tpc is not allowed. remove txp restrictions\n");
Eliad Peller2fd647f2014-03-13 17:21:36 +02002155 lq_sta->lq.reduced_tpc = TPC_NO_REDUCTION;
2156 return cur != TPC_NO_REDUCTION;
2157 }
2158
2159 rs_get_adjacent_txp(mvm, cur, &weak, &strong);
2160
2161 /* Collect measured throughputs for current and adjacent rates */
2162 window = tbl->tpc_win;
2163 sr = window[cur].success_ratio;
2164 current_tpt = window[cur].average_tpt;
2165 if (weak != TPC_INVALID)
2166 weak_tpt = window[weak].average_tpt;
2167 if (strong != TPC_INVALID)
2168 strong_tpt = window[strong].average_tpt;
2169
2170 IWL_DEBUG_RATE(mvm,
2171 "(TPC: %d): cur_tpt %d SR %d weak %d strong %d weak_tpt %d strong_tpt %d\n",
2172 cur, current_tpt, sr, weak, strong,
2173 weak_tpt, strong_tpt);
2174
2175 action = rs_get_tpc_action(mvm, sr, weak, strong,
2176 current_tpt, weak_tpt, strong_tpt);
2177
2178 /* override actions if we are on the edge */
2179 if (weak == TPC_INVALID && action == TPC_ACTION_DECREASE) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02002180 IWL_DEBUG_RATE(mvm, "already in lowest txp, stay\n");
Eliad Peller2fd647f2014-03-13 17:21:36 +02002181 action = TPC_ACTION_STAY;
2182 } else if (strong == TPC_INVALID &&
2183 (action == TPC_ACTION_INCREASE ||
2184 action == TPC_ACTION_NO_RESTIRCTION)) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02002185 IWL_DEBUG_RATE(mvm, "already in highest txp, stay\n");
Eliad Peller2fd647f2014-03-13 17:21:36 +02002186 action = TPC_ACTION_STAY;
2187 }
2188
2189 switch (action) {
2190 case TPC_ACTION_DECREASE:
2191 lq_sta->lq.reduced_tpc = weak;
2192 return true;
2193 case TPC_ACTION_INCREASE:
2194 lq_sta->lq.reduced_tpc = strong;
2195 return true;
2196 case TPC_ACTION_NO_RESTIRCTION:
2197 lq_sta->lq.reduced_tpc = TPC_NO_REDUCTION;
2198 return true;
2199 case TPC_ACTION_STAY:
2200 /* do nothing */
2201 break;
2202 }
2203 return false;
2204}
2205
Johannes Berg8ca151b2013-01-24 14:25:36 +01002206/*
2207 * Do rate scaling and search for new modulation mode.
2208 */
2209static void rs_rate_scale_perform(struct iwl_mvm *mvm,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002210 struct ieee80211_sta *sta,
Eyal Shapira1ebc8f22014-09-14 15:23:23 +03002211 struct iwl_lq_sta *lq_sta,
Matti Gottliebff7a68d2016-05-17 10:50:08 +03002212 int tid, bool ndp)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002213{
Johannes Berg8ca151b2013-01-24 14:25:36 +01002214 int low = IWL_RATE_INVALID;
2215 int high = IWL_RATE_INVALID;
2216 int index;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002217 struct iwl_rate_scale_data *window = NULL;
2218 int current_tpt = IWL_INVALID_VALUE;
2219 int low_tpt = IWL_INVALID_VALUE;
2220 int high_tpt = IWL_INVALID_VALUE;
2221 u32 fail_count;
Eyal Shapira4e4b8152013-12-11 00:55:36 +02002222 enum rs_action scale_action = RS_ACTION_STAY;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002223 u16 rate_mask;
2224 u8 update_lq = 0;
2225 struct iwl_scale_tbl_info *tbl, *tbl1;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002226 u8 active_tbl = 0;
2227 u8 done_search = 0;
2228 u16 high_low;
2229 s32 sr;
Eyal Shapira9d015a02013-11-21 01:12:11 +02002230 u8 prev_agg = lq_sta->is_agg;
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01002231 struct iwl_mvm_sta *sta_priv = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002232 struct iwl_mvm_tid_data *tid_data;
Eyal Shapira5aa33552013-11-23 01:06:36 +02002233 struct rs_rate *rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002234
Eyal Shapiraefed6642014-09-14 15:58:53 +03002235 lq_sta->is_agg = !!sta_priv->agg_tids;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002236
2237 /*
2238 * Select rate-scale / modulation-mode table to work with in
2239 * the rest of this function: "search" if searching for better
2240 * modulation mode, or "active" if doing rate scaling within a mode.
2241 */
2242 if (!lq_sta->search_better_tbl)
2243 active_tbl = lq_sta->active_tbl;
2244 else
2245 active_tbl = 1 - lq_sta->active_tbl;
2246
2247 tbl = &(lq_sta->lq_info[active_tbl]);
Eyal Shapira5aa33552013-11-23 01:06:36 +02002248 rate = &tbl->rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002249
Eyal Shapira9d015a02013-11-21 01:12:11 +02002250 if (prev_agg != lq_sta->is_agg) {
2251 IWL_DEBUG_RATE(mvm,
2252 "Aggregation changed: prev %d current %d. Update expected TPT table\n",
2253 prev_agg, lq_sta->is_agg);
2254 rs_set_expected_tpt_table(lq_sta, tbl);
Eyal Shapirab804eeb2014-04-06 04:27:06 +03002255 rs_rate_scale_clear_tbl_windows(mvm, tbl);
Eyal Shapira9d015a02013-11-21 01:12:11 +02002256 }
2257
Johannes Berg8ca151b2013-01-24 14:25:36 +01002258 /* current tx rate */
Eyal Shapirafcc5e852015-04-12 23:45:27 +03002259 index = rate->index;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002260
Johannes Berg8ca151b2013-01-24 14:25:36 +01002261 /* rates available for this association, and for modulation mode */
Eyal Shapiraa8ff14f2013-11-23 01:30:44 +02002262 rate_mask = rs_get_supported_rates(lq_sta, rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002263
Eyal Shapiraca6f38f2013-12-09 11:14:11 +02002264 if (!(BIT(index) & rate_mask)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002265 IWL_ERR(mvm, "Current Rate is not valid\n");
2266 if (lq_sta->search_better_tbl) {
2267 /* revert to active table if search table is not valid*/
Eyal Shapira5aa33552013-11-23 01:06:36 +02002268 rate->type = LQ_NONE;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002269 lq_sta->search_better_tbl = 0;
2270 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Eyal Shapira7b9d74e2015-03-29 18:38:07 +03002271 rs_update_rate_tbl(mvm, sta, lq_sta, tbl);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002272 }
2273 return;
2274 }
2275
2276 /* Get expected throughput table and history window for current rate */
2277 if (!tbl->expected_tpt) {
2278 IWL_ERR(mvm, "tbl->expected_tpt is NULL\n");
2279 return;
2280 }
2281
Eyal Shapira2536e7c2014-08-31 02:33:33 +03002282 /* TODO: handle rate_idx_mask and rate_idx_mcs_mask */
Johannes Berg8ca151b2013-01-24 14:25:36 +01002283 window = &(tbl->win[index]);
2284
2285 /*
2286 * If there is not enough history to calculate actual average
2287 * throughput, keep analyzing results of more tx frames, without
2288 * changing rate or mode (bypass most of the rest of this function).
2289 * Set up new rate table in uCode only if old rate is not supported
2290 * in current association (use new rate found above).
2291 */
2292 fail_count = window->counter - window->success_counter;
Eyal Shapira834437d2014-12-17 15:38:58 +02002293 if ((fail_count < IWL_MVM_RS_RATE_MIN_FAILURE_TH) &&
2294 (window->success_counter < IWL_MVM_RS_RATE_MIN_SUCCESS_TH)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002295 IWL_DEBUG_RATE(mvm,
Eyal Shapiracc60c6e2015-09-19 23:37:45 +03002296 "%s: Test Window: succ %d total %d\n",
2297 rs_pretty_rate(rate),
2298 window->success_counter, window->counter);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002299
2300 /* Can't calculate this yet; not enough history */
2301 window->average_tpt = IWL_INVALID_VALUE;
2302
2303 /* Should we stay with this modulation mode,
2304 * or search for a new one? */
2305 rs_stay_in_table(lq_sta, false);
2306
Eyal Shapirafcc5e852015-04-12 23:45:27 +03002307 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002308 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002309
2310 /* If we are searching for better modulation mode, check success. */
2311 if (lq_sta->search_better_tbl) {
2312 /* If good success, continue using the "search" mode;
2313 * no need to send new link quality command, since we're
2314 * continuing to use the setup that we've been trying. */
2315 if (window->average_tpt > lq_sta->last_tpt) {
2316 IWL_DEBUG_RATE(mvm,
Eyal Shapira4d30ee82013-11-20 01:45:38 +02002317 "SWITCHING TO NEW TABLE SR: %d "
2318 "cur-tpt %d old-tpt %d\n",
Johannes Berg8ca151b2013-01-24 14:25:36 +01002319 window->success_ratio,
2320 window->average_tpt,
2321 lq_sta->last_tpt);
2322
Johannes Berg8ca151b2013-01-24 14:25:36 +01002323 /* Swap tables; "search" becomes "active" */
2324 lq_sta->active_tbl = active_tbl;
2325 current_tpt = window->average_tpt;
2326 /* Else poor success; go back to mode in "active" table */
2327 } else {
2328 IWL_DEBUG_RATE(mvm,
Eyal Shapira4d30ee82013-11-20 01:45:38 +02002329 "GOING BACK TO THE OLD TABLE: SR %d "
2330 "cur-tpt %d old-tpt %d\n",
Johannes Berg8ca151b2013-01-24 14:25:36 +01002331 window->success_ratio,
2332 window->average_tpt,
2333 lq_sta->last_tpt);
2334
2335 /* Nullify "search" table */
Eyal Shapira5aa33552013-11-23 01:06:36 +02002336 rate->type = LQ_NONE;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002337
2338 /* Revert to "active" table */
2339 active_tbl = lq_sta->active_tbl;
2340 tbl = &(lq_sta->lq_info[active_tbl]);
2341
2342 /* Revert to "active" rate and throughput info */
Eyal Shapira8fc7c582013-12-04 02:15:46 +02002343 index = tbl->rate.index;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002344 current_tpt = lq_sta->last_tpt;
2345
2346 /* Need to set up a new rate table in uCode */
2347 update_lq = 1;
2348 }
2349
2350 /* Either way, we've made a decision; modulation mode
2351 * search is done, allow rate adjustment next time. */
2352 lq_sta->search_better_tbl = 0;
2353 done_search = 1; /* Don't switch modes below! */
2354 goto lq_update;
2355 }
2356
2357 /* (Else) not in search of better modulation mode, try for better
2358 * starting rate, while staying in this mode. */
Eyal Shapiraca6f38f2013-12-09 11:14:11 +02002359 high_low = rs_get_adjacent_rate(mvm, index, rate_mask, rate->type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002360 low = high_low & 0xff;
2361 high = (high_low >> 8) & 0xff;
2362
Eyal Shapira2536e7c2014-08-31 02:33:33 +03002363 /* TODO: handle rate_idx_mask and rate_idx_mcs_mask */
Johannes Berg8ca151b2013-01-24 14:25:36 +01002364
2365 sr = window->success_ratio;
2366
2367 /* Collect measured throughputs for current and adjacent rates */
2368 current_tpt = window->average_tpt;
2369 if (low != IWL_RATE_INVALID)
2370 low_tpt = tbl->win[low].average_tpt;
2371 if (high != IWL_RATE_INVALID)
2372 high_tpt = tbl->win[high].average_tpt;
2373
Eyal Shapira4d30ee82013-11-20 01:45:38 +02002374 IWL_DEBUG_RATE(mvm,
Eyal Shapiracc60c6e2015-09-19 23:37:45 +03002375 "%s: cur_tpt %d SR %d low %d high %d low_tpt %d high_tpt %d\n",
2376 rs_pretty_rate(rate), current_tpt, sr,
Eyal Shapira5aa33552013-11-23 01:06:36 +02002377 low, high, low_tpt, high_tpt);
Eyal Shapira4d30ee82013-11-20 01:45:38 +02002378
Eyal Shapira4e4b8152013-12-11 00:55:36 +02002379 scale_action = rs_get_rate_action(mvm, tbl, sr, low, high,
2380 current_tpt, low_tpt, high_tpt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002381
Eyal Shapira393b9e52013-11-13 16:46:19 +02002382 /* Force a search in case BT doesn't like us being in MIMO */
Eyal Shapira5aa33552013-11-23 01:06:36 +02002383 if (is_mimo(rate) &&
Eyal Shapira393b9e52013-11-13 16:46:19 +02002384 !iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta)) {
Eyal Shapira4d30ee82013-11-20 01:45:38 +02002385 IWL_DEBUG_RATE(mvm,
2386 "BT Coex forbids MIMO. Search for new config\n");
Emmanuel Grumbach36946ce2013-05-28 23:12:47 +03002387 rs_stay_in_table(lq_sta, true);
2388 goto lq_update;
2389 }
2390
Johannes Berg8ca151b2013-01-24 14:25:36 +01002391 switch (scale_action) {
Eyal Shapira4e4b8152013-12-11 00:55:36 +02002392 case RS_ACTION_DOWNSCALE:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002393 /* Decrease starting rate, update uCode's rate table */
2394 if (low != IWL_RATE_INVALID) {
2395 update_lq = 1;
2396 index = low;
Eyal Shapira4d30ee82013-11-20 01:45:38 +02002397 } else {
2398 IWL_DEBUG_RATE(mvm,
2399 "At the bottom rate. Can't decrease\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01002400 }
2401
2402 break;
Eyal Shapira4e4b8152013-12-11 00:55:36 +02002403 case RS_ACTION_UPSCALE:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002404 /* Increase starting rate, update uCode's rate table */
2405 if (high != IWL_RATE_INVALID) {
2406 update_lq = 1;
2407 index = high;
Eyal Shapira4d30ee82013-11-20 01:45:38 +02002408 } else {
2409 IWL_DEBUG_RATE(mvm,
2410 "At the top rate. Can't increase\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01002411 }
2412
2413 break;
Eyal Shapira4e4b8152013-12-11 00:55:36 +02002414 case RS_ACTION_STAY:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002415 /* No change */
Eyal Shapirae6c8d602014-04-21 21:49:08 +03002416 if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN)
2417 update_lq = rs_tpc_perform(mvm, sta, lq_sta, tbl);
Eliad Peller2fd647f2014-03-13 17:21:36 +02002418 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002419 default:
2420 break;
2421 }
2422
Johannes Berg8ca151b2013-01-24 14:25:36 +01002423lq_update:
2424 /* Replace uCode's rate table for the destination station. */
Eyal Shapira5aa33552013-11-23 01:06:36 +02002425 if (update_lq) {
2426 tbl->rate.index = index;
Eyal Shapira1191f642015-09-19 23:48:45 +03002427 if (IWL_MVM_RS_80_20_FAR_RANGE_TWEAK)
2428 rs_tweak_rate_tbl(mvm, sta, lq_sta, tbl, scale_action);
Emmanuel Grumbach04e3a5d2015-10-28 09:47:41 +02002429 rs_set_amsdu_len(mvm, sta, tbl, scale_action);
Eyal Shapira7b9d74e2015-03-29 18:38:07 +03002430 rs_update_rate_tbl(mvm, sta, lq_sta, tbl);
Eyal Shapira5aa33552013-11-23 01:06:36 +02002431 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002432
2433 rs_stay_in_table(lq_sta, false);
2434
2435 /*
2436 * Search for new modulation mode if we're:
2437 * 1) Not changing rates right now
2438 * 2) Not just finishing up a search
2439 * 3) Allowing a new search
2440 */
2441 if (!update_lq && !done_search &&
Eyal Shapirab3b06a32013-11-24 21:30:13 +02002442 lq_sta->rs_state == RS_STATE_SEARCH_CYCLE_STARTED
2443 && window->counter) {
2444 enum rs_column next_column;
2445
Johannes Berg8ca151b2013-01-24 14:25:36 +01002446 /* Save current throughput to compare with "search" throughput*/
2447 lq_sta->last_tpt = current_tpt;
2448
Eyal Shapira4d30ee82013-11-20 01:45:38 +02002449 IWL_DEBUG_RATE(mvm,
Eyal Shapirab3b06a32013-11-24 21:30:13 +02002450 "Start Search: update_lq %d done_search %d rs_state %d win->counter %d\n",
2451 update_lq, done_search, lq_sta->rs_state,
Eyal Shapira4d30ee82013-11-20 01:45:38 +02002452 window->counter);
Eyal Shapirab3b06a32013-11-24 21:30:13 +02002453
2454 next_column = rs_get_next_column(mvm, lq_sta, sta, tbl);
2455 if (next_column != RS_COLUMN_INVALID) {
2456 int ret = rs_switch_to_column(mvm, lq_sta, sta,
2457 next_column);
2458 if (!ret)
2459 lq_sta->search_better_tbl = 1;
2460 } else {
2461 IWL_DEBUG_RATE(mvm,
2462 "No more columns to explore in search cycle. Go to RS_STATE_SEARCH_CYCLE_ENDED\n");
2463 lq_sta->rs_state = RS_STATE_SEARCH_CYCLE_ENDED;
2464 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002465
2466 /* If new "search" mode was selected, set up in uCode table */
2467 if (lq_sta->search_better_tbl) {
2468 /* Access the "search" table, clear its history. */
2469 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Eyal Shapirab804eeb2014-04-06 04:27:06 +03002470 rs_rate_scale_clear_tbl_windows(mvm, tbl);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002471
2472 /* Use new "search" start rate */
Eyal Shapira8fc7c582013-12-04 02:15:46 +02002473 index = tbl->rate.index;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002474
Eyal Shapirab3b06a32013-11-24 21:30:13 +02002475 rs_dump_rate(mvm, &tbl->rate,
2476 "Switch to SEARCH TABLE:");
Eyal Shapira7b9d74e2015-03-29 18:38:07 +03002477 rs_update_rate_tbl(mvm, sta, lq_sta, tbl);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002478 } else {
2479 done_search = 1;
2480 }
2481 }
2482
Eyal Shapirab3b06a32013-11-24 21:30:13 +02002483 if (done_search && lq_sta->rs_state == RS_STATE_SEARCH_CYCLE_ENDED) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002484 /* If the "active" (non-search) mode was legacy,
2485 * and we've tried switching antennas,
2486 * but we haven't been able to try HT modes (not available),
2487 * stay with best antenna legacy modulation for a while
2488 * before next round of mode comparisons. */
2489 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
Eyal Shapirafd7dbee2014-04-06 04:39:23 +03002490 if (is_legacy(&tbl1->rate)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002491 IWL_DEBUG_RATE(mvm, "LQ: STAY in legacy table\n");
Eyal Shapirafd7dbee2014-04-06 04:39:23 +03002492
2493 if (tid != IWL_MAX_TID_COUNT) {
2494 tid_data = &sta_priv->tid_data[tid];
2495 if (tid_data->state != IWL_AGG_OFF) {
2496 IWL_DEBUG_RATE(mvm,
2497 "Stop aggregation on tid %d\n",
2498 tid);
2499 ieee80211_stop_tx_ba_session(sta, tid);
2500 }
2501 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002502 rs_set_stay_in_table(mvm, 1, lq_sta);
Eyal Shapirab3b06a32013-11-24 21:30:13 +02002503 } else {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002504 /* If we're in an HT mode, and all 3 mode switch actions
2505 * have been tried and compared, stay in this best modulation
2506 * mode for a while before next round of mode comparisons. */
Johannes Berg8ca151b2013-01-24 14:25:36 +01002507 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2508 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2509 (tid != IWL_MAX_TID_COUNT)) {
2510 tid_data = &sta_priv->tid_data[tid];
Matti Gottliebff7a68d2016-05-17 10:50:08 +03002511 if (tid_data->state == IWL_AGG_OFF && !ndp) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002512 IWL_DEBUG_RATE(mvm,
2513 "try to aggregate tid %d\n",
2514 tid);
2515 rs_tl_turn_on_agg(mvm, tid,
2516 lq_sta, sta);
2517 }
2518 }
2519 rs_set_stay_in_table(mvm, 0, lq_sta);
2520 }
2521 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002522}
2523
Eyal Shapira361dbec2014-08-13 00:31:13 +03002524struct rs_init_rate_info {
2525 s8 rssi;
2526 u8 rate_idx;
2527};
2528
Eyal Shapirab503ed62015-05-27 22:20:46 +03002529static const struct rs_init_rate_info rs_optimal_rates_24ghz_legacy[] = {
Eyal Shapira361dbec2014-08-13 00:31:13 +03002530 { -60, IWL_RATE_54M_INDEX },
2531 { -64, IWL_RATE_48M_INDEX },
2532 { -68, IWL_RATE_36M_INDEX },
2533 { -80, IWL_RATE_24M_INDEX },
2534 { -84, IWL_RATE_18M_INDEX },
2535 { -85, IWL_RATE_12M_INDEX },
2536 { -86, IWL_RATE_11M_INDEX },
2537 { -88, IWL_RATE_5M_INDEX },
2538 { -90, IWL_RATE_2M_INDEX },
2539 { S8_MIN, IWL_RATE_1M_INDEX },
2540};
2541
Eyal Shapirab503ed62015-05-27 22:20:46 +03002542static const struct rs_init_rate_info rs_optimal_rates_5ghz_legacy[] = {
Eyal Shapira361dbec2014-08-13 00:31:13 +03002543 { -60, IWL_RATE_54M_INDEX },
2544 { -64, IWL_RATE_48M_INDEX },
2545 { -72, IWL_RATE_36M_INDEX },
2546 { -80, IWL_RATE_24M_INDEX },
2547 { -84, IWL_RATE_18M_INDEX },
2548 { -85, IWL_RATE_12M_INDEX },
2549 { -87, IWL_RATE_9M_INDEX },
2550 { S8_MIN, IWL_RATE_6M_INDEX },
2551};
2552
Eyal Shapirab503ed62015-05-27 22:20:46 +03002553static const struct rs_init_rate_info rs_optimal_rates_ht[] = {
2554 { -60, IWL_RATE_MCS_7_INDEX },
2555 { -64, IWL_RATE_MCS_6_INDEX },
2556 { -68, IWL_RATE_MCS_5_INDEX },
2557 { -72, IWL_RATE_MCS_4_INDEX },
2558 { -80, IWL_RATE_MCS_3_INDEX },
2559 { -84, IWL_RATE_MCS_2_INDEX },
2560 { -85, IWL_RATE_MCS_1_INDEX },
2561 { S8_MIN, IWL_RATE_MCS_0_INDEX},
2562};
2563
Gregory Greenman855f4922016-05-25 18:31:39 +03002564/* MCS index 9 is not valid for 20MHz VHT channel width,
2565 * but is ok for 40, 80 and 160MHz channels.
2566 */
Eyal Shapirab503ed62015-05-27 22:20:46 +03002567static const struct rs_init_rate_info rs_optimal_rates_vht_20mhz[] = {
2568 { -60, IWL_RATE_MCS_8_INDEX },
2569 { -64, IWL_RATE_MCS_7_INDEX },
2570 { -68, IWL_RATE_MCS_6_INDEX },
2571 { -72, IWL_RATE_MCS_5_INDEX },
2572 { -80, IWL_RATE_MCS_4_INDEX },
2573 { -84, IWL_RATE_MCS_3_INDEX },
2574 { -85, IWL_RATE_MCS_2_INDEX },
2575 { -87, IWL_RATE_MCS_1_INDEX },
2576 { S8_MIN, IWL_RATE_MCS_0_INDEX},
2577};
2578
Gregory Greenman855f4922016-05-25 18:31:39 +03002579static const struct rs_init_rate_info rs_optimal_rates_vht[] = {
Eyal Shapirab503ed62015-05-27 22:20:46 +03002580 { -60, IWL_RATE_MCS_9_INDEX },
2581 { -64, IWL_RATE_MCS_8_INDEX },
2582 { -68, IWL_RATE_MCS_7_INDEX },
2583 { -72, IWL_RATE_MCS_6_INDEX },
2584 { -80, IWL_RATE_MCS_5_INDEX },
2585 { -84, IWL_RATE_MCS_4_INDEX },
2586 { -85, IWL_RATE_MCS_3_INDEX },
2587 { -87, IWL_RATE_MCS_2_INDEX },
2588 { -88, IWL_RATE_MCS_1_INDEX },
2589 { S8_MIN, IWL_RATE_MCS_0_INDEX },
2590};
2591
Gregory Greenman99319b82015-11-24 19:13:27 +02002592#define IWL_RS_LOW_RSSI_THRESHOLD (-76) /* dBm */
2593
Eyal Shapirab503ed62015-05-27 22:20:46 +03002594/* Init the optimal rate based on STA caps
2595 * This combined with rssi is used to report the last tx rate
2596 * to userspace when we haven't transmitted enough frames.
2597 */
2598static void rs_init_optimal_rate(struct iwl_mvm *mvm,
2599 struct ieee80211_sta *sta,
2600 struct iwl_lq_sta *lq_sta)
2601{
2602 struct rs_rate *rate = &lq_sta->optimal_rate;
2603
2604 if (lq_sta->max_mimo2_rate_idx != IWL_RATE_INVALID)
2605 rate->type = lq_sta->is_vht ? LQ_VHT_MIMO2 : LQ_HT_MIMO2;
2606 else if (lq_sta->max_siso_rate_idx != IWL_RATE_INVALID)
2607 rate->type = lq_sta->is_vht ? LQ_VHT_SISO : LQ_HT_SISO;
Johannes Berg57fbcce2016-04-12 15:56:15 +02002608 else if (lq_sta->band == NL80211_BAND_5GHZ)
Eyal Shapirab503ed62015-05-27 22:20:46 +03002609 rate->type = LQ_LEGACY_A;
2610 else
2611 rate->type = LQ_LEGACY_G;
2612
2613 rate->bw = rs_bw_from_sta_bw(sta);
2614 rate->sgi = rs_sgi_allow(mvm, sta, rate, NULL);
2615
2616 /* ANT/LDPC/STBC aren't relevant for the rate reported to userspace */
2617
2618 if (is_mimo(rate)) {
2619 lq_sta->optimal_rate_mask = lq_sta->active_mimo2_rate;
2620 } else if (is_siso(rate)) {
2621 lq_sta->optimal_rate_mask = lq_sta->active_siso_rate;
2622 } else {
2623 lq_sta->optimal_rate_mask = lq_sta->active_legacy_rate;
2624
Johannes Berg57fbcce2016-04-12 15:56:15 +02002625 if (lq_sta->band == NL80211_BAND_5GHZ) {
Eyal Shapirab503ed62015-05-27 22:20:46 +03002626 lq_sta->optimal_rates = rs_optimal_rates_5ghz_legacy;
2627 lq_sta->optimal_nentries =
2628 ARRAY_SIZE(rs_optimal_rates_5ghz_legacy);
2629 } else {
2630 lq_sta->optimal_rates = rs_optimal_rates_24ghz_legacy;
2631 lq_sta->optimal_nentries =
2632 ARRAY_SIZE(rs_optimal_rates_24ghz_legacy);
2633 }
2634 }
2635
2636 if (is_vht(rate)) {
2637 if (rate->bw == RATE_MCS_CHAN_WIDTH_20) {
2638 lq_sta->optimal_rates = rs_optimal_rates_vht_20mhz;
2639 lq_sta->optimal_nentries =
2640 ARRAY_SIZE(rs_optimal_rates_vht_20mhz);
2641 } else {
Gregory Greenman855f4922016-05-25 18:31:39 +03002642 lq_sta->optimal_rates = rs_optimal_rates_vht;
Eyal Shapirab503ed62015-05-27 22:20:46 +03002643 lq_sta->optimal_nentries =
Gregory Greenman855f4922016-05-25 18:31:39 +03002644 ARRAY_SIZE(rs_optimal_rates_vht);
Eyal Shapirab503ed62015-05-27 22:20:46 +03002645 }
2646 } else if (is_ht(rate)) {
2647 lq_sta->optimal_rates = rs_optimal_rates_ht;
2648 lq_sta->optimal_nentries = ARRAY_SIZE(rs_optimal_rates_ht);
2649 }
2650}
2651
2652/* Compute the optimal rate index based on RSSI */
2653static struct rs_rate *rs_get_optimal_rate(struct iwl_mvm *mvm,
2654 struct iwl_lq_sta *lq_sta)
2655{
2656 struct rs_rate *rate = &lq_sta->optimal_rate;
2657 int i;
2658
2659 rate->index = find_first_bit(&lq_sta->optimal_rate_mask,
2660 BITS_PER_LONG);
2661
2662 for (i = 0; i < lq_sta->optimal_nentries; i++) {
2663 int rate_idx = lq_sta->optimal_rates[i].rate_idx;
2664
2665 if ((lq_sta->pers.last_rssi >= lq_sta->optimal_rates[i].rssi) &&
2666 (BIT(rate_idx) & lq_sta->optimal_rate_mask)) {
2667 rate->index = rate_idx;
2668 break;
2669 }
2670 }
2671
Eyal Shapirab503ed62015-05-27 22:20:46 +03002672 return rate;
2673}
2674
Eyal Shapira361dbec2014-08-13 00:31:13 +03002675/* Choose an initial legacy rate and antenna to use based on the RSSI
2676 * of last Rx
2677 */
2678static void rs_get_initial_rate(struct iwl_mvm *mvm,
Gregory Greenman99319b82015-11-24 19:13:27 +02002679 struct ieee80211_sta *sta,
Eyal Shapira361dbec2014-08-13 00:31:13 +03002680 struct iwl_lq_sta *lq_sta,
Johannes Berg57fbcce2016-04-12 15:56:15 +02002681 enum nl80211_band band,
Eyal Shapira361dbec2014-08-13 00:31:13 +03002682 struct rs_rate *rate)
2683{
2684 int i, nentries;
Gregory Greenman99319b82015-11-24 19:13:27 +02002685 unsigned long active_rate;
Eyal Shapira361dbec2014-08-13 00:31:13 +03002686 s8 best_rssi = S8_MIN;
2687 u8 best_ant = ANT_NONE;
Moshe Harela0544272014-12-08 21:13:14 +02002688 u8 valid_tx_ant = iwl_mvm_get_valid_tx_ant(mvm);
Eyal Shapira361dbec2014-08-13 00:31:13 +03002689 const struct rs_init_rate_info *initial_rates;
2690
2691 for (i = 0; i < ARRAY_SIZE(lq_sta->pers.chain_signal); i++) {
2692 if (!(lq_sta->pers.chains & BIT(i)))
2693 continue;
2694
2695 if (lq_sta->pers.chain_signal[i] > best_rssi) {
2696 best_rssi = lq_sta->pers.chain_signal[i];
2697 best_ant = BIT(i);
2698 }
2699 }
2700
2701 IWL_DEBUG_RATE(mvm, "Best ANT: %s Best RSSI: %d\n",
2702 rs_pretty_ant(best_ant), best_rssi);
2703
2704 if (best_ant != ANT_A && best_ant != ANT_B)
2705 rate->ant = first_antenna(valid_tx_ant);
2706 else
2707 rate->ant = best_ant;
2708
2709 rate->sgi = false;
2710 rate->ldpc = false;
2711 rate->bw = RATE_MCS_CHAN_WIDTH_20;
2712
2713 rate->index = find_first_bit(&lq_sta->active_legacy_rate,
2714 BITS_PER_LONG);
2715
Johannes Berg57fbcce2016-04-12 15:56:15 +02002716 if (band == NL80211_BAND_5GHZ) {
Eyal Shapira361dbec2014-08-13 00:31:13 +03002717 rate->type = LQ_LEGACY_A;
Eyal Shapirab503ed62015-05-27 22:20:46 +03002718 initial_rates = rs_optimal_rates_5ghz_legacy;
2719 nentries = ARRAY_SIZE(rs_optimal_rates_5ghz_legacy);
Eyal Shapira361dbec2014-08-13 00:31:13 +03002720 } else {
2721 rate->type = LQ_LEGACY_G;
Eyal Shapirab503ed62015-05-27 22:20:46 +03002722 initial_rates = rs_optimal_rates_24ghz_legacy;
2723 nentries = ARRAY_SIZE(rs_optimal_rates_24ghz_legacy);
Eyal Shapira361dbec2014-08-13 00:31:13 +03002724 }
2725
Gregory Greenman99319b82015-11-24 19:13:27 +02002726 if (!IWL_MVM_RS_RSSI_BASED_INIT_RATE)
2727 goto out;
2728
2729 /* Start from a higher rate if the corresponding debug capability
2730 * is enabled. The rate is chosen according to AP capabilities.
2731 * In case of VHT/HT when the rssi is low fallback to the case of
2732 * legacy rates.
2733 */
2734 if (sta->vht_cap.vht_supported &&
2735 best_rssi > IWL_RS_LOW_RSSI_THRESHOLD) {
Gregory Greenman855f4922016-05-25 18:31:39 +03002736 switch (sta->bandwidth) {
2737 case IEEE80211_STA_RX_BW_160:
2738 case IEEE80211_STA_RX_BW_80:
2739 case IEEE80211_STA_RX_BW_40:
2740 initial_rates = rs_optimal_rates_vht;
2741 nentries = ARRAY_SIZE(rs_optimal_rates_vht);
2742 break;
2743 case IEEE80211_STA_RX_BW_20:
Gregory Greenman99319b82015-11-24 19:13:27 +02002744 initial_rates = rs_optimal_rates_vht_20mhz;
2745 nentries = ARRAY_SIZE(rs_optimal_rates_vht_20mhz);
Gregory Greenman855f4922016-05-25 18:31:39 +03002746 break;
2747 default:
Gregory Greenman99319b82015-11-24 19:13:27 +02002748 IWL_ERR(mvm, "Invalid BW %d\n", sta->bandwidth);
2749 goto out;
2750 }
Gregory Greenman855f4922016-05-25 18:31:39 +03002751
Gregory Greenman99319b82015-11-24 19:13:27 +02002752 active_rate = lq_sta->active_siso_rate;
2753 rate->type = LQ_VHT_SISO;
Gregory Greenman855f4922016-05-25 18:31:39 +03002754 rate->bw = rs_bw_from_sta_bw(sta);
Gregory Greenman99319b82015-11-24 19:13:27 +02002755 } else if (sta->ht_cap.ht_supported &&
2756 best_rssi > IWL_RS_LOW_RSSI_THRESHOLD) {
2757 initial_rates = rs_optimal_rates_ht;
2758 nentries = ARRAY_SIZE(rs_optimal_rates_ht);
2759 active_rate = lq_sta->active_siso_rate;
2760 rate->type = LQ_HT_SISO;
2761 } else {
2762 active_rate = lq_sta->active_legacy_rate;
2763 }
2764
2765 for (i = 0; i < nentries; i++) {
2766 int rate_idx = initial_rates[i].rate_idx;
2767
2768 if ((best_rssi >= initial_rates[i].rssi) &&
2769 (BIT(rate_idx) & active_rate)) {
2770 rate->index = rate_idx;
2771 break;
Eyal Shapira361dbec2014-08-13 00:31:13 +03002772 }
2773 }
2774
Gregory Greenman99319b82015-11-24 19:13:27 +02002775out:
2776 rs_dump_rate(mvm, rate, "INITIAL");
Eyal Shapira361dbec2014-08-13 00:31:13 +03002777}
2778
2779/* Save info about RSSI of last Rx */
2780void rs_update_last_rssi(struct iwl_mvm *mvm,
2781 struct iwl_lq_sta *lq_sta,
2782 struct ieee80211_rx_status *rx_status)
2783{
Eyal Shapirab503ed62015-05-27 22:20:46 +03002784 int i;
2785
Eyal Shapira361dbec2014-08-13 00:31:13 +03002786 lq_sta->pers.chains = rx_status->chains;
2787 lq_sta->pers.chain_signal[0] = rx_status->chain_signal[0];
2788 lq_sta->pers.chain_signal[1] = rx_status->chain_signal[1];
2789 lq_sta->pers.chain_signal[2] = rx_status->chain_signal[2];
Eyal Shapirab503ed62015-05-27 22:20:46 +03002790 lq_sta->pers.last_rssi = S8_MIN;
2791
2792 for (i = 0; i < ARRAY_SIZE(lq_sta->pers.chain_signal); i++) {
2793 if (!(lq_sta->pers.chains & BIT(i)))
2794 continue;
2795
2796 if (lq_sta->pers.chain_signal[i] > lq_sta->pers.last_rssi)
2797 lq_sta->pers.last_rssi = lq_sta->pers.chain_signal[i];
2798 }
Eyal Shapira361dbec2014-08-13 00:31:13 +03002799}
2800
Johannes Berg8ca151b2013-01-24 14:25:36 +01002801/**
2802 * rs_initialize_lq - Initialize a station's hardware rate table
2803 *
2804 * The uCode's station table contains a table of fallback rates
2805 * for automatic fallback during transmission.
2806 *
2807 * NOTE: This sets up a default set of values. These will be replaced later
2808 * if the driver's iwl-agn-rs rate scaling algorithm is used, instead of
2809 * rc80211_simple.
2810 *
2811 * NOTE: Run REPLY_ADD_STA command to set up station table entry, before
2812 * calling this function (which runs REPLY_TX_LINK_QUALITY_CMD,
2813 * which requires station table entry to exist).
2814 */
2815static void rs_initialize_lq(struct iwl_mvm *mvm,
2816 struct ieee80211_sta *sta,
2817 struct iwl_lq_sta *lq_sta,
Johannes Berg57fbcce2016-04-12 15:56:15 +02002818 enum nl80211_band band,
Eyal Shapirab87c2172013-11-09 23:37:55 +02002819 bool init)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002820{
2821 struct iwl_scale_tbl_info *tbl;
Eyal Shapira5aa33552013-11-23 01:06:36 +02002822 struct rs_rate *rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002823 u8 active_tbl = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002824
2825 if (!sta || !lq_sta)
2826 return;
2827
Johannes Berg8ca151b2013-01-24 14:25:36 +01002828 if (!lq_sta->search_better_tbl)
2829 active_tbl = lq_sta->active_tbl;
2830 else
2831 active_tbl = 1 - lq_sta->active_tbl;
2832
2833 tbl = &(lq_sta->lq_info[active_tbl]);
Eyal Shapira5aa33552013-11-23 01:06:36 +02002834 rate = &tbl->rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002835
Gregory Greenman99319b82015-11-24 19:13:27 +02002836 rs_get_initial_rate(mvm, sta, lq_sta, band, rate);
Eyal Shapirab503ed62015-05-27 22:20:46 +03002837 rs_init_optimal_rate(mvm, sta, lq_sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002838
Eyal Shapirab3b06a32013-11-24 21:30:13 +02002839 WARN_ON_ONCE(rate->ant != ANT_A && rate->ant != ANT_B);
Gregory Greenman99319b82015-11-24 19:13:27 +02002840 tbl->column = rs_get_column_from_rate(rate);
Eyal Shapirab3b06a32013-11-24 21:30:13 +02002841
Johannes Berg8ca151b2013-01-24 14:25:36 +01002842 rs_set_expected_tpt_table(lq_sta, tbl);
Eyal Shapira80e9e5c2013-12-23 16:26:41 +02002843 rs_fill_lq_cmd(mvm, sta, lq_sta, rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002844 /* TODO restore station should remember the lq cmd */
Eyal Shapirab87c2172013-11-09 23:37:55 +02002845 iwl_mvm_send_lq_cmd(mvm, &lq_sta->lq, init);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002846}
2847
2848static void rs_get_rate(void *mvm_r, struct ieee80211_sta *sta, void *mvm_sta,
2849 struct ieee80211_tx_rate_control *txrc)
2850{
2851 struct sk_buff *skb = txrc->skb;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002852 struct iwl_op_mode *op_mode __maybe_unused =
2853 (struct iwl_op_mode *)mvm_r;
2854 struct iwl_mvm *mvm __maybe_unused = IWL_OP_MODE_GET_MVM(op_mode);
2855 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2856 struct iwl_lq_sta *lq_sta = mvm_sta;
Eyal Shapirab503ed62015-05-27 22:20:46 +03002857 struct rs_rate *optimal_rate;
2858 u32 last_ucode_rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002859
Johannes Bergdcbc17a2015-03-10 21:24:34 +01002860 if (sta && !iwl_mvm_sta_from_mac80211(sta)->vif) {
2861 /* if vif isn't initialized mvm doesn't know about
2862 * this station, so don't do anything with the it
2863 */
2864 sta = NULL;
2865 mvm_sta = NULL;
2866 }
2867
Eyal Shapira2536e7c2014-08-31 02:33:33 +03002868 /* TODO: handle rate_idx_mask and rate_idx_mcs_mask */
Johannes Berg8ca151b2013-01-24 14:25:36 +01002869
2870 /* Treat uninitialized rate scaling data same as non-existing. */
Eliad Pellerae969af2014-06-11 15:51:33 +03002871 if (lq_sta && !lq_sta->pers.drv) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002872 IWL_DEBUG_RATE(mvm, "Rate scaling not initialized yet.\n");
2873 mvm_sta = NULL;
2874 }
2875
2876 /* Send management frames and NO_ACK data using lowest rate. */
2877 if (rate_control_send_low(sta, mvm_sta, txrc))
2878 return;
2879
Eyal Shapirad310e402013-08-11 18:43:47 +03002880 iwl_mvm_hwrate_to_tx_rate(lq_sta->last_rate_n_flags,
2881 info->band, &info->control.rates[0]);
Moshe Benji622ebe92013-06-03 19:27:16 +03002882 info->control.rates[0].count = 1;
Eyal Shapirab503ed62015-05-27 22:20:46 +03002883
2884 /* Report the optimal rate based on rssi and STA caps if we haven't
2885 * converged yet (too little traffic) or exploring other modulations
2886 */
2887 if (lq_sta->rs_state != RS_STATE_STAY_IN_COLUMN) {
2888 optimal_rate = rs_get_optimal_rate(mvm, lq_sta);
2889 last_ucode_rate = ucode_rate_from_rs_rate(mvm,
2890 optimal_rate);
2891 iwl_mvm_hwrate_to_tx_rate(last_ucode_rate, info->band,
2892 &txrc->reported_rate);
2893 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002894}
2895
2896static void *rs_alloc_sta(void *mvm_rate, struct ieee80211_sta *sta,
2897 gfp_t gfp)
2898{
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01002899 struct iwl_mvm_sta *sta_priv = iwl_mvm_sta_from_mac80211(sta);
Eliad Pellerae969af2014-06-11 15:51:33 +03002900 struct iwl_op_mode *op_mode = (struct iwl_op_mode *)mvm_rate;
2901 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
2902 struct iwl_lq_sta *lq_sta = &sta_priv->lq_sta;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002903
2904 IWL_DEBUG_RATE(mvm, "create station rate scale window\n");
2905
Eliad Pellerae969af2014-06-11 15:51:33 +03002906 lq_sta->pers.drv = mvm;
2907#ifdef CONFIG_MAC80211_DEBUGFS
2908 lq_sta->pers.dbg_fixed_rate = 0;
2909 lq_sta->pers.dbg_fixed_txp_reduction = TPC_INVALID;
Eyal Shapira878985ce2015-02-02 12:14:54 +02002910 lq_sta->pers.ss_force = RS_SS_FORCE_NONE;
Eliad Pellerae969af2014-06-11 15:51:33 +03002911#endif
Eyal Shapira361dbec2014-08-13 00:31:13 +03002912 lq_sta->pers.chains = 0;
2913 memset(lq_sta->pers.chain_signal, 0, sizeof(lq_sta->pers.chain_signal));
Eyal Shapirab503ed62015-05-27 22:20:46 +03002914 lq_sta->pers.last_rssi = S8_MIN;
Eliad Pellerae969af2014-06-11 15:51:33 +03002915
Johannes Berg8ca151b2013-01-24 14:25:36 +01002916 return &sta_priv->lq_sta;
2917}
2918
Eyal Shapirad310e402013-08-11 18:43:47 +03002919static int rs_vht_highest_rx_mcs_index(struct ieee80211_sta_vht_cap *vht_cap,
2920 int nss)
2921{
2922 u16 rx_mcs = le16_to_cpu(vht_cap->vht_mcs.rx_mcs_map) &
2923 (0x3 << (2 * (nss - 1)));
2924 rx_mcs >>= (2 * (nss - 1));
2925
2926 if (rx_mcs == IEEE80211_VHT_MCS_SUPPORT_0_7)
2927 return IWL_RATE_MCS_7_INDEX;
2928 else if (rx_mcs == IEEE80211_VHT_MCS_SUPPORT_0_8)
2929 return IWL_RATE_MCS_8_INDEX;
2930 else if (rx_mcs == IEEE80211_VHT_MCS_SUPPORT_0_9)
2931 return IWL_RATE_MCS_9_INDEX;
2932
2933 WARN_ON_ONCE(rx_mcs != IEEE80211_VHT_MCS_NOT_SUPPORTED);
2934 return -1;
2935}
2936
Eyal Shapira750a1b42013-11-09 22:48:56 +02002937static void rs_vht_set_enabled_rates(struct ieee80211_sta *sta,
2938 struct ieee80211_sta_vht_cap *vht_cap,
2939 struct iwl_lq_sta *lq_sta)
2940{
2941 int i;
2942 int highest_mcs = rs_vht_highest_rx_mcs_index(vht_cap, 1);
2943
2944 if (highest_mcs >= IWL_RATE_MCS_0_INDEX) {
2945 for (i = IWL_RATE_MCS_0_INDEX; i <= highest_mcs; i++) {
2946 if (i == IWL_RATE_9M_INDEX)
2947 continue;
2948
Eyal Shapira271518a2013-11-09 23:25:06 +02002949 /* VHT MCS9 isn't valid for 20Mhz for NSS=1,2 */
2950 if (i == IWL_RATE_MCS_9_INDEX &&
2951 sta->bandwidth == IEEE80211_STA_RX_BW_20)
2952 continue;
2953
Eyal Shapira750a1b42013-11-09 22:48:56 +02002954 lq_sta->active_siso_rate |= BIT(i);
2955 }
2956 }
2957
Eyal Shapiraecc90e72013-11-09 23:31:38 +02002958 if (sta->rx_nss < 2)
2959 return;
2960
Eyal Shapira750a1b42013-11-09 22:48:56 +02002961 highest_mcs = rs_vht_highest_rx_mcs_index(vht_cap, 2);
2962 if (highest_mcs >= IWL_RATE_MCS_0_INDEX) {
2963 for (i = IWL_RATE_MCS_0_INDEX; i <= highest_mcs; i++) {
2964 if (i == IWL_RATE_9M_INDEX)
2965 continue;
2966
Eyal Shapira271518a2013-11-09 23:25:06 +02002967 /* VHT MCS9 isn't valid for 20Mhz for NSS=1,2 */
2968 if (i == IWL_RATE_MCS_9_INDEX &&
2969 sta->bandwidth == IEEE80211_STA_RX_BW_20)
2970 continue;
2971
Eyal Shapira750a1b42013-11-09 22:48:56 +02002972 lq_sta->active_mimo2_rate |= BIT(i);
2973 }
2974 }
2975}
2976
Johannes Berg2f15a822015-01-21 18:05:04 +01002977static void rs_ht_init(struct iwl_mvm *mvm,
2978 struct ieee80211_sta *sta,
2979 struct iwl_lq_sta *lq_sta,
2980 struct ieee80211_sta_ht_cap *ht_cap)
2981{
2982 /* active_siso_rate mask includes 9 MBits (bit 5),
2983 * and CCK (bits 0-3), supp_rates[] does not;
2984 * shift to convert format, force 9 MBits off.
2985 */
2986 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2987 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
2988 lq_sta->active_siso_rate &= ~((u16)0x2);
2989 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
2990
2991 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2992 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
2993 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2994 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2995
2996 if (mvm->cfg->ht_params->ldpc &&
2997 (ht_cap->cap & IEEE80211_HT_CAP_LDPC_CODING))
2998 lq_sta->ldpc = true;
2999
3000 if (mvm->cfg->ht_params->stbc &&
3001 (num_of_ant(iwl_mvm_get_valid_tx_ant(mvm)) > 1) &&
3002 (ht_cap->cap & IEEE80211_HT_CAP_RX_STBC))
Eyal Shapira3d44eeb2015-01-16 22:37:04 +02003003 lq_sta->stbc_capable = true;
Johannes Berg2f15a822015-01-21 18:05:04 +01003004
3005 lq_sta->is_vht = false;
3006}
3007
3008static void rs_vht_init(struct iwl_mvm *mvm,
3009 struct ieee80211_sta *sta,
3010 struct iwl_lq_sta *lq_sta,
3011 struct ieee80211_sta_vht_cap *vht_cap)
3012{
3013 rs_vht_set_enabled_rates(sta, vht_cap, lq_sta);
3014
3015 if (mvm->cfg->ht_params->ldpc &&
3016 (vht_cap->cap & IEEE80211_VHT_CAP_RXLDPC))
3017 lq_sta->ldpc = true;
3018
3019 if (mvm->cfg->ht_params->stbc &&
3020 (num_of_ant(iwl_mvm_get_valid_tx_ant(mvm)) > 1) &&
3021 (vht_cap->cap & IEEE80211_VHT_CAP_RXSTBC_MASK))
Eyal Shapira3d44eeb2015-01-16 22:37:04 +02003022 lq_sta->stbc_capable = true;
3023
Johannes Berg859d9142015-06-01 17:11:11 +02003024 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_BEAMFORMER) &&
Eyal Shapira3d44eeb2015-01-16 22:37:04 +02003025 (num_of_ant(iwl_mvm_get_valid_tx_ant(mvm)) > 1) &&
3026 (vht_cap->cap & IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE))
3027 lq_sta->bfer_capable = true;
Johannes Berg2f15a822015-01-21 18:05:04 +01003028
3029 lq_sta->is_vht = true;
3030}
3031
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003032#ifdef CONFIG_IWLWIFI_DEBUGFS
Johannes Berg2f15a822015-01-21 18:05:04 +01003033static void iwl_mvm_reset_frame_stats(struct iwl_mvm *mvm)
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003034{
3035 spin_lock_bh(&mvm->drv_stats_lock);
Johannes Berg2f15a822015-01-21 18:05:04 +01003036 memset(&mvm->drv_rx_stats, 0, sizeof(mvm->drv_rx_stats));
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003037 spin_unlock_bh(&mvm->drv_stats_lock);
3038}
3039
Johannes Berg2f15a822015-01-21 18:05:04 +01003040void iwl_mvm_update_frame_stats(struct iwl_mvm *mvm, u32 rate, bool agg)
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003041{
Kirtika Ruchandani9d504432016-11-08 21:50:33 -08003042 u8 nss = 0;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003043
3044 spin_lock(&mvm->drv_stats_lock);
3045
3046 if (agg)
Johannes Berg2f15a822015-01-21 18:05:04 +01003047 mvm->drv_rx_stats.agg_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003048
Johannes Berg2f15a822015-01-21 18:05:04 +01003049 mvm->drv_rx_stats.success_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003050
3051 switch (rate & RATE_MCS_CHAN_WIDTH_MSK) {
3052 case RATE_MCS_CHAN_WIDTH_20:
Johannes Berg2f15a822015-01-21 18:05:04 +01003053 mvm->drv_rx_stats.bw_20_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003054 break;
3055 case RATE_MCS_CHAN_WIDTH_40:
Johannes Berg2f15a822015-01-21 18:05:04 +01003056 mvm->drv_rx_stats.bw_40_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003057 break;
3058 case RATE_MCS_CHAN_WIDTH_80:
Johannes Berg2f15a822015-01-21 18:05:04 +01003059 mvm->drv_rx_stats.bw_80_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003060 break;
Gregory Greenman855f4922016-05-25 18:31:39 +03003061 case RATE_MCS_CHAN_WIDTH_160:
3062 mvm->drv_rx_stats.bw_160_frames++;
3063 break;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003064 default:
3065 WARN_ONCE(1, "bad BW. rate 0x%x", rate);
3066 }
3067
3068 if (rate & RATE_MCS_HT_MSK) {
Johannes Berg2f15a822015-01-21 18:05:04 +01003069 mvm->drv_rx_stats.ht_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003070 nss = ((rate & RATE_HT_MCS_NSS_MSK) >> RATE_HT_MCS_NSS_POS) + 1;
3071 } else if (rate & RATE_MCS_VHT_MSK) {
Johannes Berg2f15a822015-01-21 18:05:04 +01003072 mvm->drv_rx_stats.vht_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003073 nss = ((rate & RATE_VHT_MCS_NSS_MSK) >>
3074 RATE_VHT_MCS_NSS_POS) + 1;
3075 } else {
Johannes Berg2f15a822015-01-21 18:05:04 +01003076 mvm->drv_rx_stats.legacy_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003077 }
3078
3079 if (nss == 1)
Johannes Berg2f15a822015-01-21 18:05:04 +01003080 mvm->drv_rx_stats.siso_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003081 else if (nss == 2)
Johannes Berg2f15a822015-01-21 18:05:04 +01003082 mvm->drv_rx_stats.mimo2_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003083
3084 if (rate & RATE_MCS_SGI_MSK)
Johannes Berg2f15a822015-01-21 18:05:04 +01003085 mvm->drv_rx_stats.sgi_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003086 else
Johannes Berg2f15a822015-01-21 18:05:04 +01003087 mvm->drv_rx_stats.ngi_frames++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003088
Johannes Berg2f15a822015-01-21 18:05:04 +01003089 mvm->drv_rx_stats.last_rates[mvm->drv_rx_stats.last_frame_idx] = rate;
3090 mvm->drv_rx_stats.last_frame_idx =
3091 (mvm->drv_rx_stats.last_frame_idx + 1) %
3092 ARRAY_SIZE(mvm->drv_rx_stats.last_rates);
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003093
3094 spin_unlock(&mvm->drv_stats_lock);
3095}
3096#endif
3097
Johannes Berg8ca151b2013-01-24 14:25:36 +01003098/*
3099 * Called after adding a new station to initialize rate scaling
3100 */
3101void iwl_mvm_rs_rate_init(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Johannes Berg57fbcce2016-04-12 15:56:15 +02003102 enum nl80211_band band, bool init)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003103{
3104 int i, j;
3105 struct ieee80211_hw *hw = mvm->hw;
3106 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Eyal Shapirad310e402013-08-11 18:43:47 +03003107 struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap;
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01003108 struct iwl_mvm_sta *sta_priv = iwl_mvm_sta_from_mac80211(sta);
3109 struct iwl_lq_sta *lq_sta = &sta_priv->lq_sta;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003110 struct ieee80211_supported_band *sband;
3111 unsigned long supp; /* must be unsigned long for for_each_set_bit */
3112
Eliad Pellerae969af2014-06-11 15:51:33 +03003113 /* clear all non-persistent lq data */
3114 memset(lq_sta, 0, offsetof(typeof(*lq_sta), pers));
Eyal Shapirab87c2172013-11-09 23:37:55 +02003115
Johannes Berg8ca151b2013-01-24 14:25:36 +01003116 sband = hw->wiphy->bands[band];
3117
3118 lq_sta->lq.sta_id = sta_priv->sta_id;
Emmanuel Grumbach04e3a5d2015-10-28 09:47:41 +02003119 sta_priv->tlc_amsdu = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003120
3121 for (j = 0; j < LQ_SIZE; j++)
Eyal Shapirab804eeb2014-04-06 04:27:06 +03003122 rs_rate_scale_clear_tbl_windows(mvm, &lq_sta->lq_info[j]);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003123
3124 lq_sta->flush_timer = 0;
Eyal Shapira87d5e412014-04-06 18:13:22 +03003125 lq_sta->last_tx = jiffies;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003126
3127 IWL_DEBUG_RATE(mvm,
3128 "LQ: *** rate scale station global init for station %d ***\n",
3129 sta_priv->sta_id);
3130 /* TODO: what is a good starting rate for STA? About middle? Maybe not
3131 * the lowest or the highest rate.. Could consider using RSSI from
3132 * previous packets? Need to have IEEE 802.1X auth succeed immediately
3133 * after assoc.. */
3134
Eyal Shapira834437d2014-12-17 15:38:58 +02003135 lq_sta->missed_rate_counter = IWL_MVM_RS_MISSED_RATE_MAX;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003136 lq_sta->band = sband->band;
3137 /*
3138 * active legacy rates as per supported rates bitmap
3139 */
3140 supp = sta->supp_rates[sband->band];
3141 lq_sta->active_legacy_rate = 0;
3142 for_each_set_bit(i, &supp, BITS_PER_LONG)
3143 lq_sta->active_legacy_rate |= BIT(sband->bitrates[i].hw_value);
3144
Eyal Shapirad310e402013-08-11 18:43:47 +03003145 /* TODO: should probably account for rx_highest for both HT/VHT */
Eyal Shapira2c59d802015-01-16 11:01:51 +02003146 if (!vht_cap || !vht_cap->vht_supported)
3147 rs_ht_init(mvm, sta, lq_sta, ht_cap);
3148 else
3149 rs_vht_init(mvm, sta, lq_sta, vht_cap);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003150
Eyal Shapira6a028d92014-12-07 18:18:27 +02003151 lq_sta->max_legacy_rate_idx =
3152 rs_get_max_rate_from_mask(lq_sta->active_legacy_rate);
3153 lq_sta->max_siso_rate_idx =
3154 rs_get_max_rate_from_mask(lq_sta->active_siso_rate);
3155 lq_sta->max_mimo2_rate_idx =
3156 rs_get_max_rate_from_mask(lq_sta->active_mimo2_rate);
Eyal Shapira198266a2014-03-31 22:37:39 +03003157
Eyal Shapiraa3576ff2014-08-09 10:57:59 +03003158 IWL_DEBUG_RATE(mvm,
Eyal Shapira3d44eeb2015-01-16 22:37:04 +02003159 "LEGACY=%lX SISO=%lX MIMO2=%lX VHT=%d LDPC=%d STBC=%d BFER=%d\n",
Eyal Shapira198266a2014-03-31 22:37:39 +03003160 lq_sta->active_legacy_rate,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003161 lq_sta->active_siso_rate,
Eyal Shapirad310e402013-08-11 18:43:47 +03003162 lq_sta->active_mimo2_rate,
Eyal Shapira3d44eeb2015-01-16 22:37:04 +02003163 lq_sta->is_vht, lq_sta->ldpc, lq_sta->stbc_capable,
3164 lq_sta->bfer_capable);
Eyal Shapira198266a2014-03-31 22:37:39 +03003165 IWL_DEBUG_RATE(mvm, "MAX RATE: LEGACY=%d SISO=%d MIMO2=%d\n",
3166 lq_sta->max_legacy_rate_idx,
3167 lq_sta->max_siso_rate_idx,
3168 lq_sta->max_mimo2_rate_idx);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003169
3170 /* These values will be overridden later */
3171 lq_sta->lq.single_stream_ant_msk =
Moshe Harela0544272014-12-08 21:13:14 +02003172 first_antenna(iwl_mvm_get_valid_tx_ant(mvm));
Eyal Shapira809bccf2013-11-28 02:25:24 +02003173 lq_sta->lq.dual_stream_ant_msk = ANT_AB;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003174
3175 /* as default allow aggregation for all tids */
3176 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003177 lq_sta->is_agg = 0;
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003178#ifdef CONFIG_IWLWIFI_DEBUGFS
Johannes Berg2f15a822015-01-21 18:05:04 +01003179 iwl_mvm_reset_frame_stats(mvm);
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003180#endif
Eyal Shapirab87c2172013-11-09 23:37:55 +02003181 rs_initialize_lq(mvm, sta, lq_sta, band, init);
3182}
3183
3184static void rs_rate_update(void *mvm_r,
3185 struct ieee80211_supported_band *sband,
3186 struct cfg80211_chan_def *chandef,
3187 struct ieee80211_sta *sta, void *priv_sta,
3188 u32 changed)
3189{
3190 u8 tid;
3191 struct iwl_op_mode *op_mode =
3192 (struct iwl_op_mode *)mvm_r;
3193 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
3194
Johannes Bergdcbc17a2015-03-10 21:24:34 +01003195 if (!iwl_mvm_sta_from_mac80211(sta)->vif)
3196 return;
3197
Eyal Shapirab87c2172013-11-09 23:37:55 +02003198 /* Stop any ongoing aggregations as rs starts off assuming no agg */
3199 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++)
3200 ieee80211_stop_tx_ba_session(sta, tid);
3201
3202 iwl_mvm_rs_rate_init(mvm, sta, sband->band, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003203}
3204
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003205#ifdef CONFIG_MAC80211_DEBUGFS
3206static void rs_build_rates_table_from_fixed(struct iwl_mvm *mvm,
3207 struct iwl_lq_cmd *lq_cmd,
Johannes Berg57fbcce2016-04-12 15:56:15 +02003208 enum nl80211_band band,
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003209 u32 ucode_rate)
3210{
3211 struct rs_rate rate;
3212 int i;
3213 int num_rates = ARRAY_SIZE(lq_cmd->rs_table);
3214 __le32 ucode_rate_le32 = cpu_to_le32(ucode_rate);
Emmanuel Grumbach7ceb98a2014-07-28 12:59:45 +03003215 u8 ant = (ucode_rate & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS;
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003216
3217 for (i = 0; i < num_rates; i++)
3218 lq_cmd->rs_table[i] = ucode_rate_le32;
3219
3220 rs_rate_from_ucode_rate(ucode_rate, band, &rate);
3221
3222 if (is_mimo(&rate))
3223 lq_cmd->mimo_delim = num_rates - 1;
3224 else
3225 lq_cmd->mimo_delim = 0;
Emmanuel Grumbach7ceb98a2014-07-28 12:59:45 +03003226
3227 lq_cmd->reduced_tpc = 0;
3228
3229 if (num_of_ant(ant) == 1)
3230 lq_cmd->single_stream_ant_msk = ant;
3231
3232 lq_cmd->agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003233}
3234#endif /* CONFIG_MAC80211_DEBUGFS */
3235
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003236static void rs_fill_rates_for_column(struct iwl_mvm *mvm,
3237 struct iwl_lq_sta *lq_sta,
3238 struct rs_rate *rate,
3239 __le32 *rs_table, int *rs_table_index,
3240 int num_rates, int num_retries,
3241 u8 valid_tx_ant, bool toggle_ant)
3242{
3243 int i, j;
3244 __le32 ucode_rate;
3245 bool bottom_reached = false;
3246 int prev_rate_idx = rate->index;
3247 int end = LINK_QUAL_MAX_RETRY_NUM;
3248 int index = *rs_table_index;
3249
3250 for (i = 0; i < num_rates && index < end; i++) {
Eyal Shapirabd999312014-12-28 22:12:38 +02003251 for (j = 0; j < num_retries && index < end; j++, index++) {
3252 ucode_rate = cpu_to_le32(ucode_rate_from_rs_rate(mvm,
3253 rate));
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003254 rs_table[index] = ucode_rate;
Eyal Shapirabd999312014-12-28 22:12:38 +02003255 if (toggle_ant)
3256 rs_toggle_antenna(valid_tx_ant, rate);
3257 }
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003258
3259 prev_rate_idx = rate->index;
3260 bottom_reached = rs_get_lower_rate_in_column(lq_sta, rate);
3261 if (bottom_reached && !is_legacy(rate))
3262 break;
3263 }
3264
Eyal Shapirabd999312014-12-28 22:12:38 +02003265 if (!bottom_reached && !is_legacy(rate))
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003266 rate->index = prev_rate_idx;
3267
3268 *rs_table_index = index;
3269}
3270
3271/* Building the rate table is non trivial. When we're in MIMO2/VHT/80Mhz/SGI
3272 * column the rate table should look like this:
3273 *
3274 * rate[0] 0x400D019 VHT | ANT: AB BW: 80Mhz MCS: 9 NSS: 2 SGI
3275 * rate[1] 0x400D019 VHT | ANT: AB BW: 80Mhz MCS: 9 NSS: 2 SGI
3276 * rate[2] 0x400D018 VHT | ANT: AB BW: 80Mhz MCS: 8 NSS: 2 SGI
3277 * rate[3] 0x400D018 VHT | ANT: AB BW: 80Mhz MCS: 8 NSS: 2 SGI
3278 * rate[4] 0x400D017 VHT | ANT: AB BW: 80Mhz MCS: 7 NSS: 2 SGI
3279 * rate[5] 0x400D017 VHT | ANT: AB BW: 80Mhz MCS: 7 NSS: 2 SGI
3280 * rate[6] 0x4005007 VHT | ANT: A BW: 80Mhz MCS: 7 NSS: 1 NGI
3281 * rate[7] 0x4009006 VHT | ANT: B BW: 80Mhz MCS: 6 NSS: 1 NGI
3282 * rate[8] 0x4005005 VHT | ANT: A BW: 80Mhz MCS: 5 NSS: 1 NGI
3283 * rate[9] 0x800B Legacy | ANT: B Rate: 36 Mbps
3284 * rate[10] 0x4009 Legacy | ANT: A Rate: 24 Mbps
3285 * rate[11] 0x8007 Legacy | ANT: B Rate: 18 Mbps
3286 * rate[12] 0x4005 Legacy | ANT: A Rate: 12 Mbps
3287 * rate[13] 0x800F Legacy | ANT: B Rate: 9 Mbps
3288 * rate[14] 0x400D Legacy | ANT: A Rate: 6 Mbps
3289 * rate[15] 0x800D Legacy | ANT: B Rate: 6 Mbps
3290 */
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003291static void rs_build_rates_table(struct iwl_mvm *mvm,
Eyal Shapirad8bafea2014-10-23 13:58:38 +03003292 struct ieee80211_sta *sta,
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003293 struct iwl_lq_sta *lq_sta,
3294 const struct rs_rate *initial_rate)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003295{
Eyal Shapira5aa33552013-11-23 01:06:36 +02003296 struct rs_rate rate;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003297 int num_rates, num_retries, index = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003298 u8 valid_tx_ant = 0;
3299 struct iwl_lq_cmd *lq_cmd = &lq_sta->lq;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003300 bool toggle_ant = false;
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02003301 u32 color;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003302
Emmanuel Grumbach9e898f12013-12-22 10:55:47 +02003303 memcpy(&rate, initial_rate, sizeof(rate));
Johannes Berg8ca151b2013-01-24 14:25:36 +01003304
Moshe Harela0544272014-12-08 21:13:14 +02003305 valid_tx_ant = iwl_mvm_get_valid_tx_ant(mvm);
Eyal Shapirac5d679a2015-01-15 20:22:34 +02003306
Eyal Shapira3d44eeb2015-01-16 22:37:04 +02003307 /* TODO: remove old API when min FW API hits 14 */
Johannes Berg859d9142015-06-01 17:11:11 +02003308 if (!fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_LQ_SS_PARAMS) &&
Eyal Shapira3d44eeb2015-01-16 22:37:04 +02003309 rs_stbc_allow(mvm, sta, lq_sta))
3310 rate.stbc = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003311
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003312 if (is_siso(&rate)) {
Eyal Shapira834437d2014-12-17 15:38:58 +02003313 num_rates = IWL_MVM_RS_INITIAL_SISO_NUM_RATES;
3314 num_retries = IWL_MVM_RS_HT_VHT_RETRIES_PER_RATE;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003315 } else if (is_mimo(&rate)) {
Eyal Shapira834437d2014-12-17 15:38:58 +02003316 num_rates = IWL_MVM_RS_INITIAL_MIMO_NUM_RATES;
3317 num_retries = IWL_MVM_RS_HT_VHT_RETRIES_PER_RATE;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003318 } else {
Eyal Shapira834437d2014-12-17 15:38:58 +02003319 num_rates = IWL_MVM_RS_INITIAL_LEGACY_NUM_RATES;
Eyal Shapirabd999312014-12-28 22:12:38 +02003320 num_retries = IWL_MVM_RS_INITIAL_LEGACY_RETRIES;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003321 toggle_ant = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003322 }
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003323
3324 rs_fill_rates_for_column(mvm, lq_sta, &rate, lq_cmd->rs_table, &index,
3325 num_rates, num_retries, valid_tx_ant,
3326 toggle_ant);
3327
3328 rs_get_lower_rate_down_column(lq_sta, &rate);
3329
3330 if (is_siso(&rate)) {
Eyal Shapira834437d2014-12-17 15:38:58 +02003331 num_rates = IWL_MVM_RS_SECONDARY_SISO_NUM_RATES;
3332 num_retries = IWL_MVM_RS_SECONDARY_SISO_RETRIES;
Eyal Shapirad9088f62014-03-25 10:25:44 +02003333 lq_cmd->mimo_delim = index;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003334 } else if (is_legacy(&rate)) {
Eyal Shapira834437d2014-12-17 15:38:58 +02003335 num_rates = IWL_MVM_RS_SECONDARY_LEGACY_NUM_RATES;
Eyal Shapirabd999312014-12-28 22:12:38 +02003336 num_retries = IWL_MVM_RS_SECONDARY_LEGACY_RETRIES;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003337 } else {
3338 WARN_ON_ONCE(1);
3339 }
3340
3341 toggle_ant = true;
3342
3343 rs_fill_rates_for_column(mvm, lq_sta, &rate, lq_cmd->rs_table, &index,
3344 num_rates, num_retries, valid_tx_ant,
3345 toggle_ant);
3346
3347 rs_get_lower_rate_down_column(lq_sta, &rate);
3348
Eyal Shapira834437d2014-12-17 15:38:58 +02003349 num_rates = IWL_MVM_RS_SECONDARY_LEGACY_NUM_RATES;
Eyal Shapirabd999312014-12-28 22:12:38 +02003350 num_retries = IWL_MVM_RS_SECONDARY_LEGACY_RETRIES;
Eyal Shapirae07be6d2013-12-09 13:02:56 +02003351
3352 rs_fill_rates_for_column(mvm, lq_sta, &rate, lq_cmd->rs_table, &index,
3353 num_rates, num_retries, valid_tx_ant,
3354 toggle_ant);
3355
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02003356 /* update the color of the LQ command (as a counter at bits 1-3) */
3357 color = LQ_FLAGS_COLOR_INC(LQ_FLAG_COLOR_GET(lq_cmd->flags));
3358 lq_cmd->flags = LQ_FLAG_COLOR_SET(lq_cmd->flags, color);
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003359}
3360
Eyal Shapira3d44eeb2015-01-16 22:37:04 +02003361struct rs_bfer_active_iter_data {
3362 struct ieee80211_sta *exclude_sta;
3363 struct iwl_mvm_sta *bfer_mvmsta;
3364};
3365
3366static void rs_bfer_active_iter(void *_data,
3367 struct ieee80211_sta *sta)
3368{
3369 struct rs_bfer_active_iter_data *data = _data;
3370 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
3371 struct iwl_lq_cmd *lq_cmd = &mvmsta->lq_sta.lq;
3372 u32 ss_params = le32_to_cpu(lq_cmd->ss_params);
3373
3374 if (sta == data->exclude_sta)
3375 return;
3376
3377 /* The current sta has BFER allowed */
3378 if (ss_params & LQ_SS_BFER_ALLOWED) {
3379 WARN_ON_ONCE(data->bfer_mvmsta != NULL);
3380
3381 data->bfer_mvmsta = mvmsta;
3382 }
3383}
3384
3385static int rs_bfer_priority(struct iwl_mvm_sta *sta)
3386{
3387 int prio = -1;
3388 enum nl80211_iftype viftype = ieee80211_vif_type_p2p(sta->vif);
3389
3390 switch (viftype) {
3391 case NL80211_IFTYPE_AP:
3392 case NL80211_IFTYPE_P2P_GO:
3393 prio = 3;
3394 break;
3395 case NL80211_IFTYPE_P2P_CLIENT:
3396 prio = 2;
3397 break;
3398 case NL80211_IFTYPE_STATION:
3399 prio = 1;
3400 break;
3401 default:
3402 WARN_ONCE(true, "viftype %d sta_id %d", viftype, sta->sta_id);
3403 prio = -1;
3404 }
3405
3406 return prio;
3407}
3408
3409/* Returns >0 if sta1 has a higher BFER priority compared to sta2 */
3410static int rs_bfer_priority_cmp(struct iwl_mvm_sta *sta1,
3411 struct iwl_mvm_sta *sta2)
3412{
3413 int prio1 = rs_bfer_priority(sta1);
3414 int prio2 = rs_bfer_priority(sta2);
3415
3416 if (prio1 > prio2)
3417 return 1;
3418 if (prio1 < prio2)
3419 return -1;
3420 return 0;
3421}
3422
3423static void rs_set_lq_ss_params(struct iwl_mvm *mvm,
3424 struct ieee80211_sta *sta,
3425 struct iwl_lq_sta *lq_sta,
3426 const struct rs_rate *initial_rate)
3427{
3428 struct iwl_lq_cmd *lq_cmd = &lq_sta->lq;
3429 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
3430 struct rs_bfer_active_iter_data data = {
3431 .exclude_sta = sta,
3432 .bfer_mvmsta = NULL,
3433 };
3434 struct iwl_mvm_sta *bfer_mvmsta = NULL;
3435 u32 ss_params = LQ_SS_PARAMS_VALID;
3436
3437 if (!iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta))
3438 goto out;
3439
Eyal Shapira878985ce2015-02-02 12:14:54 +02003440#ifdef CONFIG_MAC80211_DEBUGFS
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003441 /* Check if forcing the decision is configured.
3442 * Note that SISO is forced by not allowing STBC or BFER
3443 */
Eyal Shapira878985ce2015-02-02 12:14:54 +02003444 if (lq_sta->pers.ss_force == RS_SS_FORCE_STBC)
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003445 ss_params |= (LQ_SS_STBC_1SS_ALLOWED | LQ_SS_FORCE);
Eyal Shapira878985ce2015-02-02 12:14:54 +02003446 else if (lq_sta->pers.ss_force == RS_SS_FORCE_BFER)
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003447 ss_params |= (LQ_SS_BFER_ALLOWED | LQ_SS_FORCE);
3448
Eyal Shapira878985ce2015-02-02 12:14:54 +02003449 if (lq_sta->pers.ss_force != RS_SS_FORCE_NONE) {
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003450 IWL_DEBUG_RATE(mvm, "Forcing single stream Tx decision %d\n",
Eyal Shapira878985ce2015-02-02 12:14:54 +02003451 lq_sta->pers.ss_force);
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003452 goto out;
3453 }
Eyal Shapira878985ce2015-02-02 12:14:54 +02003454#endif
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003455
Eyal Shapira3d44eeb2015-01-16 22:37:04 +02003456 if (lq_sta->stbc_capable)
3457 ss_params |= LQ_SS_STBC_1SS_ALLOWED;
3458
3459 if (!lq_sta->bfer_capable)
3460 goto out;
3461
3462 ieee80211_iterate_stations_atomic(mvm->hw,
3463 rs_bfer_active_iter,
3464 &data);
3465 bfer_mvmsta = data.bfer_mvmsta;
3466
3467 /* This code is safe as it doesn't run concurrently for different
3468 * stations. This is guaranteed by the fact that calls to
3469 * ieee80211_tx_status wouldn't run concurrently for a single HW.
3470 */
3471 if (!bfer_mvmsta) {
3472 IWL_DEBUG_RATE(mvm, "No sta with BFER allowed found. Allow\n");
3473
3474 ss_params |= LQ_SS_BFER_ALLOWED;
3475 goto out;
3476 }
3477
3478 IWL_DEBUG_RATE(mvm, "Found existing sta %d with BFER activated\n",
3479 bfer_mvmsta->sta_id);
3480
3481 /* Disallow BFER on another STA if active and we're a higher priority */
3482 if (rs_bfer_priority_cmp(mvmsta, bfer_mvmsta) > 0) {
3483 struct iwl_lq_cmd *bfersta_lq_cmd = &bfer_mvmsta->lq_sta.lq;
3484 u32 bfersta_ss_params = le32_to_cpu(bfersta_lq_cmd->ss_params);
3485
3486 bfersta_ss_params &= ~LQ_SS_BFER_ALLOWED;
3487 bfersta_lq_cmd->ss_params = cpu_to_le32(bfersta_ss_params);
3488 iwl_mvm_send_lq_cmd(mvm, bfersta_lq_cmd, false);
3489
3490 ss_params |= LQ_SS_BFER_ALLOWED;
3491 IWL_DEBUG_RATE(mvm,
3492 "Lower priority BFER sta found (%d). Switch BFER\n",
3493 bfer_mvmsta->sta_id);
3494 }
3495out:
3496 lq_cmd->ss_params = cpu_to_le32(ss_params);
3497}
3498
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003499static void rs_fill_lq_cmd(struct iwl_mvm *mvm,
3500 struct ieee80211_sta *sta,
3501 struct iwl_lq_sta *lq_sta,
3502 const struct rs_rate *initial_rate)
3503{
3504 struct iwl_lq_cmd *lq_cmd = &lq_sta->lq;
Emmanuel Grumbach7ceb98a2014-07-28 12:59:45 +03003505 struct iwl_mvm_sta *mvmsta;
3506 struct iwl_mvm_vif *mvmvif;
3507
Eyal Shapira834437d2014-12-17 15:38:58 +02003508 lq_cmd->agg_disable_start_th = IWL_MVM_RS_AGG_DISABLE_START;
Emmanuel Grumbach7ceb98a2014-07-28 12:59:45 +03003509 lq_cmd->agg_time_limit =
Eyal Shapira834437d2014-12-17 15:38:58 +02003510 cpu_to_le16(IWL_MVM_RS_AGG_TIME_LIMIT);
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003511
3512#ifdef CONFIG_MAC80211_DEBUGFS
Eliad Pellerae969af2014-06-11 15:51:33 +03003513 if (lq_sta->pers.dbg_fixed_rate) {
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003514 rs_build_rates_table_from_fixed(mvm, lq_cmd,
3515 lq_sta->band,
Eliad Pellerae969af2014-06-11 15:51:33 +03003516 lq_sta->pers.dbg_fixed_rate);
Emmanuel Grumbach7ceb98a2014-07-28 12:59:45 +03003517 return;
3518 }
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003519#endif
Emmanuel Grumbach7ceb98a2014-07-28 12:59:45 +03003520 if (WARN_ON_ONCE(!sta || !initial_rate))
3521 return;
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003522
Eyal Shapirad8bafea2014-10-23 13:58:38 +03003523 rs_build_rates_table(mvm, sta, lq_sta, initial_rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003524
Johannes Berg859d9142015-06-01 17:11:11 +02003525 if (fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_LQ_SS_PARAMS))
Eyal Shapira3d44eeb2015-01-16 22:37:04 +02003526 rs_set_lq_ss_params(mvm, sta, lq_sta, initial_rate);
3527
Emmanuel Grumbach7ceb98a2014-07-28 12:59:45 +03003528 mvmsta = iwl_mvm_sta_from_mac80211(sta);
3529 mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
3530
3531 if (num_of_ant(initial_rate->ant) == 1)
3532 lq_cmd->single_stream_ant_msk = initial_rate->ant;
3533
3534 lq_cmd->agg_frame_cnt_limit = mvmsta->max_agg_bufsize;
3535
3536 /*
Sara Sharon0d365ae2015-03-31 12:24:05 +03003537 * In case of low latency, tell the firmware to leave a frame in the
Emmanuel Grumbach7ceb98a2014-07-28 12:59:45 +03003538 * Tx Fifo so that it can start a transaction in the same TxOP. This
3539 * basically allows the firmware to send bursts.
3540 */
Eyal Shapira1412ee32015-10-22 13:10:36 +03003541 if (iwl_mvm_vif_low_latency(mvmvif))
Emmanuel Grumbach7ceb98a2014-07-28 12:59:45 +03003542 lq_cmd->agg_frame_cnt_limit--;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003543
Emmanuel Grumbacha4db8482014-07-31 13:58:53 +03003544 if (mvmsta->vif->p2p)
3545 lq_cmd->flags |= LQ_FLAG_USE_RTS_MSK;
3546
Johannes Berg8ca151b2013-01-24 14:25:36 +01003547 lq_cmd->agg_time_limit =
Emmanuel Grumbach5b7ff612014-03-11 19:27:45 +02003548 cpu_to_le16(iwl_mvm_coex_agg_time_limit(mvm, sta));
Johannes Berg8ca151b2013-01-24 14:25:36 +01003549}
3550
3551static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
3552{
3553 return hw->priv;
3554}
3555/* rate scale requires free function to be implemented */
3556static void rs_free(void *mvm_rate)
3557{
3558 return;
3559}
3560
3561static void rs_free_sta(void *mvm_r, struct ieee80211_sta *sta,
3562 void *mvm_sta)
3563{
3564 struct iwl_op_mode *op_mode __maybe_unused = mvm_r;
3565 struct iwl_mvm *mvm __maybe_unused = IWL_OP_MODE_GET_MVM(op_mode);
3566
3567 IWL_DEBUG_RATE(mvm, "enter\n");
3568 IWL_DEBUG_RATE(mvm, "leave\n");
3569}
3570
3571#ifdef CONFIG_MAC80211_DEBUGFS
Eyal Shapira5fc0f762014-01-28 01:35:32 +02003572int rs_pretty_print_rate(char *buf, const u32 rate)
Eyal Shapira5aa33552013-11-23 01:06:36 +02003573{
3574
Eyal Shapira1a61b342013-11-09 02:11:46 +02003575 char *type, *bw;
3576 u8 mcs = 0, nss = 0;
3577 u8 ant = (rate & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS;
3578
3579 if (!(rate & RATE_MCS_HT_MSK) &&
3580 !(rate & RATE_MCS_VHT_MSK)) {
3581 int index = iwl_hwrate_to_plcp_idx(rate);
3582
3583 return sprintf(buf, "Legacy | ANT: %s Rate: %s Mbps\n",
Eyal Shapira560843f2014-01-05 21:04:19 +02003584 rs_pretty_ant(ant),
3585 index == IWL_RATE_INVALID ? "BAD" :
3586 iwl_rate_mcs[index].mbps);
Eyal Shapira1a61b342013-11-09 02:11:46 +02003587 }
3588
3589 if (rate & RATE_MCS_VHT_MSK) {
3590 type = "VHT";
3591 mcs = rate & RATE_VHT_MCS_RATE_CODE_MSK;
3592 nss = ((rate & RATE_VHT_MCS_NSS_MSK)
3593 >> RATE_VHT_MCS_NSS_POS) + 1;
3594 } else if (rate & RATE_MCS_HT_MSK) {
3595 type = "HT";
3596 mcs = rate & RATE_HT_MCS_INDEX_MSK;
Gregory Greenman3374c3a2016-12-21 16:18:44 +02003597 nss = ((rate & RATE_HT_MCS_NSS_MSK)
3598 >> RATE_HT_MCS_NSS_POS) + 1;
Eyal Shapira1a61b342013-11-09 02:11:46 +02003599 } else {
3600 type = "Unknown"; /* shouldn't happen */
3601 }
3602
3603 switch (rate & RATE_MCS_CHAN_WIDTH_MSK) {
3604 case RATE_MCS_CHAN_WIDTH_20:
3605 bw = "20Mhz";
3606 break;
3607 case RATE_MCS_CHAN_WIDTH_40:
3608 bw = "40Mhz";
3609 break;
3610 case RATE_MCS_CHAN_WIDTH_80:
3611 bw = "80Mhz";
3612 break;
3613 case RATE_MCS_CHAN_WIDTH_160:
3614 bw = "160Mhz";
3615 break;
3616 default:
3617 bw = "BAD BW";
3618 }
3619
Sara Sharon77e40942017-01-11 11:58:38 +02003620 return sprintf(buf, "%s | ANT: %s BW: %s MCS: %d NSS: %d %s%s%s%s\n",
Eyal Shapira5aa33552013-11-23 01:06:36 +02003621 type, rs_pretty_ant(ant), bw, mcs, nss,
Eyal Shapira1a61b342013-11-09 02:11:46 +02003622 (rate & RATE_MCS_SGI_MSK) ? "SGI " : "NGI ",
Sara Sharon77e40942017-01-11 11:58:38 +02003623 (rate & RATE_MCS_STBC_MSK) ? "STBC " : "",
Eyal Shapira1a61b342013-11-09 02:11:46 +02003624 (rate & RATE_MCS_LDPC_MSK) ? "LDPC " : "",
Sara Sharon77e40942017-01-11 11:58:38 +02003625 (rate & RATE_MCS_BF_MSK) ? "BF " : "");
Eyal Shapira1a61b342013-11-09 02:11:46 +02003626}
3627
Eyal Shapiraa0c38b22013-12-03 18:34:52 +02003628/**
3629 * Program the device to use fixed rate for frame transmit
3630 * This is for debugging/testing only
3631 * once the device start use fixed rate, we need to reload the module
3632 * to being back the normal operation.
3633 */
3634static void rs_program_fix_rate(struct iwl_mvm *mvm,
3635 struct iwl_lq_sta *lq_sta)
3636{
3637 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
3638 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
3639 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
3640
3641 IWL_DEBUG_RATE(mvm, "sta_id %d rate 0x%X\n",
Eliad Pellerae969af2014-06-11 15:51:33 +03003642 lq_sta->lq.sta_id, lq_sta->pers.dbg_fixed_rate);
Eyal Shapiraa0c38b22013-12-03 18:34:52 +02003643
Eliad Pellerae969af2014-06-11 15:51:33 +03003644 if (lq_sta->pers.dbg_fixed_rate) {
Emmanuel Grumbach7ceb98a2014-07-28 12:59:45 +03003645 rs_fill_lq_cmd(mvm, NULL, lq_sta, NULL);
Eliad Pellerae969af2014-06-11 15:51:33 +03003646 iwl_mvm_send_lq_cmd(lq_sta->pers.drv, &lq_sta->lq, false);
Eyal Shapiraa0c38b22013-12-03 18:34:52 +02003647 }
3648}
3649
Emmanuel Grumbach9d108492013-12-03 11:50:30 +02003650static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
3651 const char __user *user_buf, size_t count, loff_t *ppos)
3652{
3653 struct iwl_lq_sta *lq_sta = file->private_data;
3654 struct iwl_mvm *mvm;
3655 char buf[64];
3656 size_t buf_size;
3657 u32 parsed_rate;
3658
Eliad Pellerae969af2014-06-11 15:51:33 +03003659 mvm = lq_sta->pers.drv;
Emmanuel Grumbach9d108492013-12-03 11:50:30 +02003660 memset(buf, 0, sizeof(buf));
3661 buf_size = min(count, sizeof(buf) - 1);
3662 if (copy_from_user(buf, user_buf, buf_size))
3663 return -EFAULT;
3664
3665 if (sscanf(buf, "%x", &parsed_rate) == 1)
Eliad Pellerae969af2014-06-11 15:51:33 +03003666 lq_sta->pers.dbg_fixed_rate = parsed_rate;
Emmanuel Grumbach9d108492013-12-03 11:50:30 +02003667 else
Eliad Pellerae969af2014-06-11 15:51:33 +03003668 lq_sta->pers.dbg_fixed_rate = 0;
Emmanuel Grumbach9d108492013-12-03 11:50:30 +02003669
3670 rs_program_fix_rate(mvm, lq_sta);
3671
3672 return count;
3673}
3674
Johannes Berg8ca151b2013-01-24 14:25:36 +01003675static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
3676 char __user *user_buf, size_t count, loff_t *ppos)
3677{
3678 char *buff;
3679 int desc = 0;
3680 int i = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003681 ssize_t ret;
3682
3683 struct iwl_lq_sta *lq_sta = file->private_data;
Emmanuel Grumbach04e3a5d2015-10-28 09:47:41 +02003684 struct iwl_mvm_sta *mvmsta =
3685 container_of(lq_sta, struct iwl_mvm_sta, lq_sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003686 struct iwl_mvm *mvm;
3687 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Eyal Shapira5aa33552013-11-23 01:06:36 +02003688 struct rs_rate *rate = &tbl->rate;
Eyal Shapira16c426f2015-02-02 12:46:22 +02003689 u32 ss_params;
Emmanuel Grumbach04e3a5d2015-10-28 09:47:41 +02003690
Eliad Pellerae969af2014-06-11 15:51:33 +03003691 mvm = lq_sta->pers.drv;
Eyal Shapira1a61b342013-11-09 02:11:46 +02003692 buff = kmalloc(2048, GFP_KERNEL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003693 if (!buff)
3694 return -ENOMEM;
3695
3696 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
Eyal Shapira198266a2014-03-31 22:37:39 +03003697 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%lX\n",
Johannes Berg8ca151b2013-01-24 14:25:36 +01003698 lq_sta->total_failed, lq_sta->total_success,
3699 lq_sta->active_legacy_rate);
3700 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
Eliad Pellerae969af2014-06-11 15:51:33 +03003701 lq_sta->pers.dbg_fixed_rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003702 desc += sprintf(buff+desc, "valid_tx_ant %s%s%s\n",
Moshe Harela0544272014-12-08 21:13:14 +02003703 (iwl_mvm_get_valid_tx_ant(mvm) & ANT_A) ? "ANT_A," : "",
3704 (iwl_mvm_get_valid_tx_ant(mvm) & ANT_B) ? "ANT_B," : "",
3705 (iwl_mvm_get_valid_tx_ant(mvm) & ANT_C) ? "ANT_C" : "");
Johannes Berg8ca151b2013-01-24 14:25:36 +01003706 desc += sprintf(buff+desc, "lq type %s\n",
Eyal Shapira5aa33552013-11-23 01:06:36 +02003707 (is_legacy(rate)) ? "legacy" :
3708 is_vht(rate) ? "VHT" : "HT");
3709 if (!is_legacy(rate)) {
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02003710 desc += sprintf(buff + desc, " %s",
Eyal Shapira5aa33552013-11-23 01:06:36 +02003711 (is_siso(rate)) ? "SISO" : "MIMO2");
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02003712 desc += sprintf(buff + desc, " %s",
3713 (is_ht20(rate)) ? "20MHz" :
3714 (is_ht40(rate)) ? "40MHz" :
Gregory Greenman855f4922016-05-25 18:31:39 +03003715 (is_ht80(rate)) ? "80MHz" :
3716 (is_ht160(rate)) ? "160MHz" : "BAD BW");
Emmanuel Grumbach04e3a5d2015-10-28 09:47:41 +02003717 desc += sprintf(buff + desc, " %s %s %s %s\n",
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02003718 (rate->sgi) ? "SGI" : "NGI",
3719 (rate->ldpc) ? "LDPC" : "BCC",
Emmanuel Grumbach04e3a5d2015-10-28 09:47:41 +02003720 (lq_sta->is_agg) ? "AGG on" : "",
3721 (mvmsta->tlc_amsdu) ? "AMSDU on" : "");
Johannes Berg8ca151b2013-01-24 14:25:36 +01003722 }
3723 desc += sprintf(buff+desc, "last tx rate=0x%X\n",
3724 lq_sta->last_rate_n_flags);
3725 desc += sprintf(buff+desc,
Eyal Shapira1a61b342013-11-09 02:11:46 +02003726 "general: flags=0x%X mimo-d=%d s-ant=0x%x d-ant=0x%x\n",
Johannes Berg8ca151b2013-01-24 14:25:36 +01003727 lq_sta->lq.flags,
3728 lq_sta->lq.mimo_delim,
3729 lq_sta->lq.single_stream_ant_msk,
3730 lq_sta->lq.dual_stream_ant_msk);
3731
3732 desc += sprintf(buff+desc,
3733 "agg: time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
3734 le16_to_cpu(lq_sta->lq.agg_time_limit),
3735 lq_sta->lq.agg_disable_start_th,
3736 lq_sta->lq.agg_frame_cnt_limit);
3737
Eliad Peller2fd647f2014-03-13 17:21:36 +02003738 desc += sprintf(buff+desc, "reduced tpc=%d\n", lq_sta->lq.reduced_tpc);
Eyal Shapira16c426f2015-02-02 12:46:22 +02003739 ss_params = le32_to_cpu(lq_sta->lq.ss_params);
3740 desc += sprintf(buff+desc, "single stream params: %s%s%s%s\n",
3741 (ss_params & LQ_SS_PARAMS_VALID) ?
Eyal Shapiradb7c6892015-03-02 10:35:19 +02003742 "VALID" : "INVALID",
Eyal Shapira16c426f2015-02-02 12:46:22 +02003743 (ss_params & LQ_SS_BFER_ALLOWED) ?
Eyal Shapiradb7c6892015-03-02 10:35:19 +02003744 ", BFER" : "",
Eyal Shapira16c426f2015-02-02 12:46:22 +02003745 (ss_params & LQ_SS_STBC_1SS_ALLOWED) ?
Eyal Shapiradb7c6892015-03-02 10:35:19 +02003746 ", STBC" : "",
Eyal Shapira16c426f2015-02-02 12:46:22 +02003747 (ss_params & LQ_SS_FORCE) ?
Eyal Shapiradb7c6892015-03-02 10:35:19 +02003748 ", FORCE" : "");
Johannes Berg8ca151b2013-01-24 14:25:36 +01003749 desc += sprintf(buff+desc,
3750 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
3751 lq_sta->lq.initial_rate_index[0],
3752 lq_sta->lq.initial_rate_index[1],
3753 lq_sta->lq.initial_rate_index[2],
3754 lq_sta->lq.initial_rate_index[3]);
3755
3756 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
Johannes Bergcf4ef652013-12-17 11:34:25 +01003757 u32 r = le32_to_cpu(lq_sta->lq.rs_table[i]);
Eyal Shapira1a61b342013-11-09 02:11:46 +02003758
Johannes Bergcf4ef652013-12-17 11:34:25 +01003759 desc += sprintf(buff+desc, " rate[%d] 0x%X ", i, r);
3760 desc += rs_pretty_print_rate(buff+desc, r);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003761 }
3762
3763 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3764 kfree(buff);
3765 return ret;
3766}
3767
3768static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
3769 .write = rs_sta_dbgfs_scale_table_write,
3770 .read = rs_sta_dbgfs_scale_table_read,
3771 .open = simple_open,
3772 .llseek = default_llseek,
3773};
3774static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
3775 char __user *user_buf, size_t count, loff_t *ppos)
3776{
3777 char *buff;
3778 int desc = 0;
3779 int i, j;
3780 ssize_t ret;
Eyal Shapirad310e402013-08-11 18:43:47 +03003781 struct iwl_scale_tbl_info *tbl;
Eyal Shapira5aa33552013-11-23 01:06:36 +02003782 struct rs_rate *rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003783 struct iwl_lq_sta *lq_sta = file->private_data;
3784
3785 buff = kmalloc(1024, GFP_KERNEL);
3786 if (!buff)
3787 return -ENOMEM;
3788
3789 for (i = 0; i < LQ_SIZE; i++) {
Eyal Shapirad310e402013-08-11 18:43:47 +03003790 tbl = &(lq_sta->lq_info[i]);
Eyal Shapira5aa33552013-11-23 01:06:36 +02003791 rate = &tbl->rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003792 desc += sprintf(buff+desc,
Eyal Shapira6a524f42013-08-11 20:27:18 +03003793 "%s type=%d SGI=%d BW=%s DUP=0\n"
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003794 "index=%d\n",
Johannes Berg8ca151b2013-01-24 14:25:36 +01003795 lq_sta->active_tbl == i ? "*" : "x",
Eyal Shapira5aa33552013-11-23 01:06:36 +02003796 rate->type,
3797 rate->sgi,
Gregory Greenman855f4922016-05-25 18:31:39 +03003798 is_ht20(rate) ? "20MHz" :
3799 is_ht40(rate) ? "40MHz" :
3800 is_ht80(rate) ? "80MHz" :
3801 is_ht160(rate) ? "160MHz" : "ERR",
Eyal Shapira8fc7c582013-12-04 02:15:46 +02003802 rate->index);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003803 for (j = 0; j < IWL_RATE_COUNT; j++) {
3804 desc += sprintf(buff+desc,
3805 "counter=%d success=%d %%=%d\n",
Eyal Shapirad310e402013-08-11 18:43:47 +03003806 tbl->win[j].counter,
3807 tbl->win[j].success_counter,
3808 tbl->win[j].success_ratio);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003809 }
3810 }
3811 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3812 kfree(buff);
3813 return ret;
3814}
3815
3816static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
3817 .read = rs_sta_dbgfs_stats_table_read,
3818 .open = simple_open,
3819 .llseek = default_llseek,
3820};
3821
Eyal Shapira757cf23b2014-03-24 02:12:00 +02003822static ssize_t rs_sta_dbgfs_drv_tx_stats_read(struct file *file,
3823 char __user *user_buf,
3824 size_t count, loff_t *ppos)
3825{
3826 static const char * const column_name[] = {
3827 [RS_COLUMN_LEGACY_ANT_A] = "LEGACY_ANT_A",
3828 [RS_COLUMN_LEGACY_ANT_B] = "LEGACY_ANT_B",
3829 [RS_COLUMN_SISO_ANT_A] = "SISO_ANT_A",
3830 [RS_COLUMN_SISO_ANT_B] = "SISO_ANT_B",
3831 [RS_COLUMN_SISO_ANT_A_SGI] = "SISO_ANT_A_SGI",
3832 [RS_COLUMN_SISO_ANT_B_SGI] = "SISO_ANT_B_SGI",
3833 [RS_COLUMN_MIMO2] = "MIMO2",
3834 [RS_COLUMN_MIMO2_SGI] = "MIMO2_SGI",
3835 };
3836
3837 static const char * const rate_name[] = {
3838 [IWL_RATE_1M_INDEX] = "1M",
3839 [IWL_RATE_2M_INDEX] = "2M",
3840 [IWL_RATE_5M_INDEX] = "5.5M",
3841 [IWL_RATE_11M_INDEX] = "11M",
3842 [IWL_RATE_6M_INDEX] = "6M|MCS0",
3843 [IWL_RATE_9M_INDEX] = "9M",
3844 [IWL_RATE_12M_INDEX] = "12M|MCS1",
3845 [IWL_RATE_18M_INDEX] = "18M|MCS2",
3846 [IWL_RATE_24M_INDEX] = "24M|MCS3",
3847 [IWL_RATE_36M_INDEX] = "36M|MCS4",
3848 [IWL_RATE_48M_INDEX] = "48M|MCS5",
3849 [IWL_RATE_54M_INDEX] = "54M|MCS6",
3850 [IWL_RATE_MCS_7_INDEX] = "MCS7",
3851 [IWL_RATE_MCS_8_INDEX] = "MCS8",
3852 [IWL_RATE_MCS_9_INDEX] = "MCS9",
3853 };
3854
3855 char *buff, *pos, *endpos;
3856 int col, rate;
3857 ssize_t ret;
3858 struct iwl_lq_sta *lq_sta = file->private_data;
3859 struct rs_rate_stats *stats;
3860 static const size_t bufsz = 1024;
3861
3862 buff = kmalloc(bufsz, GFP_KERNEL);
3863 if (!buff)
3864 return -ENOMEM;
3865
3866 pos = buff;
3867 endpos = pos + bufsz;
3868
3869 pos += scnprintf(pos, endpos - pos, "COLUMN,");
3870 for (rate = 0; rate < IWL_RATE_COUNT; rate++)
3871 pos += scnprintf(pos, endpos - pos, "%s,", rate_name[rate]);
3872 pos += scnprintf(pos, endpos - pos, "\n");
3873
3874 for (col = 0; col < RS_COLUMN_COUNT; col++) {
3875 pos += scnprintf(pos, endpos - pos,
3876 "%s,", column_name[col]);
3877
3878 for (rate = 0; rate < IWL_RATE_COUNT; rate++) {
Eyal Shapiraf58220f2014-08-16 01:30:30 +03003879 stats = &(lq_sta->pers.tx_stats[col][rate]);
Eyal Shapira757cf23b2014-03-24 02:12:00 +02003880 pos += scnprintf(pos, endpos - pos,
3881 "%llu/%llu,",
3882 stats->success,
3883 stats->total);
3884 }
3885 pos += scnprintf(pos, endpos - pos, "\n");
3886 }
3887
3888 ret = simple_read_from_buffer(user_buf, count, ppos, buff, pos - buff);
3889 kfree(buff);
3890 return ret;
3891}
3892
3893static ssize_t rs_sta_dbgfs_drv_tx_stats_write(struct file *file,
3894 const char __user *user_buf,
3895 size_t count, loff_t *ppos)
3896{
3897 struct iwl_lq_sta *lq_sta = file->private_data;
Eyal Shapiraf58220f2014-08-16 01:30:30 +03003898 memset(lq_sta->pers.tx_stats, 0, sizeof(lq_sta->pers.tx_stats));
Eyal Shapira757cf23b2014-03-24 02:12:00 +02003899
3900 return count;
3901}
3902
3903static const struct file_operations rs_sta_dbgfs_drv_tx_stats_ops = {
3904 .read = rs_sta_dbgfs_drv_tx_stats_read,
3905 .write = rs_sta_dbgfs_drv_tx_stats_write,
3906 .open = simple_open,
3907 .llseek = default_llseek,
3908};
3909
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003910static ssize_t iwl_dbgfs_ss_force_read(struct file *file,
3911 char __user *user_buf,
3912 size_t count, loff_t *ppos)
3913{
3914 struct iwl_lq_sta *lq_sta = file->private_data;
3915 char buf[12];
3916 int bufsz = sizeof(buf);
3917 int pos = 0;
3918 static const char * const ss_force_name[] = {
3919 [RS_SS_FORCE_NONE] = "none",
3920 [RS_SS_FORCE_STBC] = "stbc",
3921 [RS_SS_FORCE_BFER] = "bfer",
3922 [RS_SS_FORCE_SISO] = "siso",
3923 };
3924
3925 pos += scnprintf(buf+pos, bufsz-pos, "%s\n",
Eyal Shapira878985ce2015-02-02 12:14:54 +02003926 ss_force_name[lq_sta->pers.ss_force]);
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003927 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
3928}
3929
3930static ssize_t iwl_dbgfs_ss_force_write(struct iwl_lq_sta *lq_sta, char *buf,
3931 size_t count, loff_t *ppos)
3932{
3933 struct iwl_mvm *mvm = lq_sta->pers.drv;
3934 int ret = 0;
3935
3936 if (!strncmp("none", buf, 4)) {
Eyal Shapira878985ce2015-02-02 12:14:54 +02003937 lq_sta->pers.ss_force = RS_SS_FORCE_NONE;
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003938 } else if (!strncmp("siso", buf, 4)) {
Eyal Shapira878985ce2015-02-02 12:14:54 +02003939 lq_sta->pers.ss_force = RS_SS_FORCE_SISO;
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003940 } else if (!strncmp("stbc", buf, 4)) {
3941 if (lq_sta->stbc_capable) {
Eyal Shapira878985ce2015-02-02 12:14:54 +02003942 lq_sta->pers.ss_force = RS_SS_FORCE_STBC;
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003943 } else {
3944 IWL_ERR(mvm,
3945 "can't force STBC. peer doesn't support\n");
3946 ret = -EINVAL;
3947 }
3948 } else if (!strncmp("bfer", buf, 4)) {
3949 if (lq_sta->bfer_capable) {
Eyal Shapira878985ce2015-02-02 12:14:54 +02003950 lq_sta->pers.ss_force = RS_SS_FORCE_BFER;
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003951 } else {
3952 IWL_ERR(mvm,
3953 "can't force BFER. peer doesn't support\n");
3954 ret = -EINVAL;
3955 }
3956 } else {
3957 IWL_ERR(mvm, "valid values none|siso|stbc|bfer\n");
3958 ret = -EINVAL;
3959 }
3960 return ret ?: count;
3961}
3962
3963#define MVM_DEBUGFS_READ_WRITE_FILE_OPS(name, bufsz) \
3964 _MVM_DEBUGFS_READ_WRITE_FILE_OPS(name, bufsz, struct iwl_lq_sta)
3965#define MVM_DEBUGFS_ADD_FILE_RS(name, parent, mode) do { \
3966 if (!debugfs_create_file(#name, mode, parent, lq_sta, \
3967 &iwl_dbgfs_##name##_ops)) \
3968 goto err; \
3969 } while (0)
3970
3971MVM_DEBUGFS_READ_WRITE_FILE_OPS(ss_force, 32);
3972
Johannes Bergdcbc17a2015-03-10 21:24:34 +01003973static void rs_add_debugfs(void *mvm, void *priv_sta, struct dentry *dir)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003974{
Johannes Bergdcbc17a2015-03-10 21:24:34 +01003975 struct iwl_lq_sta *lq_sta = priv_sta;
3976 struct iwl_mvm_sta *mvmsta;
3977
3978 mvmsta = container_of(lq_sta, struct iwl_mvm_sta, lq_sta);
3979
3980 if (!mvmsta->vif)
3981 return;
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003982
Eliad Pellerc6e1faa2014-06-15 12:02:20 +03003983 debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
3984 lq_sta, &rs_sta_dbgfs_scale_table_ops);
3985 debugfs_create_file("rate_stats_table", S_IRUSR, dir,
3986 lq_sta, &rs_sta_dbgfs_stats_table_ops);
3987 debugfs_create_file("drv_tx_stats", S_IRUSR | S_IWUSR, dir,
3988 lq_sta, &rs_sta_dbgfs_drv_tx_stats_ops);
3989 debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
3990 &lq_sta->tx_agg_tid_en);
3991 debugfs_create_u8("reduced_tpc", S_IRUSR | S_IWUSR, dir,
3992 &lq_sta->pers.dbg_fixed_txp_reduction);
Eyal Shapira1e9c62f2015-01-28 14:44:06 +02003993
3994 MVM_DEBUGFS_ADD_FILE_RS(ss_force, dir, S_IRUSR | S_IWUSR);
3995 return;
3996err:
3997 IWL_ERR((struct iwl_mvm *)mvm, "Can't create debugfs entity\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01003998}
3999
4000static void rs_remove_debugfs(void *mvm, void *mvm_sta)
4001{
Johannes Berg8ca151b2013-01-24 14:25:36 +01004002}
4003#endif
4004
4005/*
4006 * Initialization of rate scaling information is done by driver after
4007 * the station is added. Since mac80211 calls this function before a
4008 * station is added we ignore it.
4009 */
4010static void rs_rate_init_stub(void *mvm_r,
Simon Wunderlich3de805c2013-07-08 16:55:50 +02004011 struct ieee80211_supported_band *sband,
4012 struct cfg80211_chan_def *chandef,
4013 struct ieee80211_sta *sta, void *mvm_sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +01004014{
4015}
Johannes Berg631ad702014-01-20 23:29:34 +01004016
4017static const struct rate_control_ops rs_mvm_ops = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01004018 .name = RS_NAME,
Eyal Shapira1ebc8f22014-09-14 15:23:23 +03004019 .tx_status = rs_mac80211_tx_status,
Johannes Berg8ca151b2013-01-24 14:25:36 +01004020 .get_rate = rs_get_rate,
4021 .rate_init = rs_rate_init_stub,
4022 .alloc = rs_alloc,
4023 .free = rs_free,
4024 .alloc_sta = rs_alloc_sta,
4025 .free_sta = rs_free_sta,
Eyal Shapirab87c2172013-11-09 23:37:55 +02004026 .rate_update = rs_rate_update,
Johannes Berg8ca151b2013-01-24 14:25:36 +01004027#ifdef CONFIG_MAC80211_DEBUGFS
4028 .add_sta_debugfs = rs_add_debugfs,
4029 .remove_sta_debugfs = rs_remove_debugfs,
4030#endif
4031};
4032
4033int iwl_mvm_rate_control_register(void)
4034{
4035 return ieee80211_rate_control_register(&rs_mvm_ops);
4036}
4037
4038void iwl_mvm_rate_control_unregister(void)
4039{
4040 ieee80211_rate_control_unregister(&rs_mvm_ops);
4041}
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +03004042
4043/**
4044 * iwl_mvm_tx_protection - Gets LQ command, change it to enable/disable
Sara Sharon0d365ae2015-03-31 12:24:05 +03004045 * Tx protection, according to this request and previous requests,
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +03004046 * and send the LQ command.
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +03004047 * @mvmsta: The station
4048 * @enable: Enable Tx protection?
4049 */
Johannes Berge126b5d2013-06-28 13:39:18 +02004050int iwl_mvm_tx_protection(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta,
4051 bool enable)
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +03004052{
Johannes Berge126b5d2013-06-28 13:39:18 +02004053 struct iwl_lq_cmd *lq = &mvmsta->lq_sta.lq;
4054
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +03004055 lockdep_assert_held(&mvm->mutex);
4056
4057 if (enable) {
4058 if (mvmsta->tx_protection == 0)
Eyal Shapirad307ec82013-11-11 19:56:21 +02004059 lq->flags |= LQ_FLAG_USE_RTS_MSK;
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +03004060 mvmsta->tx_protection++;
4061 } else {
4062 mvmsta->tx_protection--;
4063 if (mvmsta->tx_protection == 0)
Eyal Shapirad307ec82013-11-11 19:56:21 +02004064 lq->flags &= ~LQ_FLAG_USE_RTS_MSK;
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +03004065 }
4066
Eyal Shapira9e680942013-11-09 00:16:16 +02004067 return iwl_mvm_send_lq_cmd(mvm, lq, false);
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +03004068}