iwlwifi: mvm: rs - don't use the shared antenna when BT load is high
[cascardo/linux.git] / drivers / net / wireless / iwlwifi / mvm / rs.c
1 /******************************************************************************
2  *
3  * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
4  * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of version 2 of the GNU General Public License as
8  * published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
18  *
19  * The full GNU General Public License is included in this distribution in the
20  * file called LICENSE.
21  *
22  * Contact Information:
23  *  Intel Linux Wireless <ilw@linux.intel.com>
24  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25  *
26  *****************************************************************************/
27 #include <linux/kernel.h>
28 #include <linux/skbuff.h>
29 #include <linux/slab.h>
30 #include <net/mac80211.h>
31
32 #include <linux/netdevice.h>
33 #include <linux/etherdevice.h>
34 #include <linux/delay.h>
35
36 #include <linux/workqueue.h>
37 #include "rs.h"
38 #include "fw-api.h"
39 #include "sta.h"
40 #include "iwl-op-mode.h"
41 #include "mvm.h"
42
43 #define RS_NAME "iwl-mvm-rs"
44
45 #define NUM_TRY_BEFORE_ANT_TOGGLE       1
46 #define RS_LEGACY_RETRIES_PER_RATE      1
47 #define RS_HT_VHT_RETRIES_PER_RATE      2
48 #define RS_HT_VHT_RETRIES_PER_RATE_TW   1
49 #define RS_INITIAL_MIMO_NUM_RATES       3
50 #define RS_INITIAL_SISO_NUM_RATES       3
51 #define RS_INITIAL_LEGACY_NUM_RATES     LINK_QUAL_MAX_RETRY_NUM
52 #define RS_SECONDARY_LEGACY_NUM_RATES   LINK_QUAL_MAX_RETRY_NUM
53 #define RS_SECONDARY_SISO_NUM_RATES     3
54 #define RS_SECONDARY_SISO_RETRIES       1
55
56 #define IWL_RATE_MAX_WINDOW             62      /* # tx in history window */
57 #define IWL_RATE_MIN_FAILURE_TH         3       /* min failures to calc tpt */
58 #define IWL_RATE_MIN_SUCCESS_TH         8       /* min successes to calc tpt */
59
60 /* max allowed rate miss before sync LQ cmd */
61 #define IWL_MISSED_RATE_MAX             15
62 #define RS_STAY_IN_COLUMN_TIMEOUT       (5*HZ)
63 #define RS_IDLE_TIMEOUT                 (5*HZ)
64
65 static u8 rs_ht_to_legacy[] = {
66         [IWL_RATE_MCS_0_INDEX] = IWL_RATE_6M_INDEX,
67         [IWL_RATE_MCS_1_INDEX] = IWL_RATE_9M_INDEX,
68         [IWL_RATE_MCS_2_INDEX] = IWL_RATE_12M_INDEX,
69         [IWL_RATE_MCS_3_INDEX] = IWL_RATE_18M_INDEX,
70         [IWL_RATE_MCS_4_INDEX] = IWL_RATE_24M_INDEX,
71         [IWL_RATE_MCS_5_INDEX] = IWL_RATE_36M_INDEX,
72         [IWL_RATE_MCS_6_INDEX] = IWL_RATE_48M_INDEX,
73         [IWL_RATE_MCS_7_INDEX] = IWL_RATE_54M_INDEX,
74         [IWL_RATE_MCS_8_INDEX] = IWL_RATE_54M_INDEX,
75         [IWL_RATE_MCS_9_INDEX] = IWL_RATE_54M_INDEX,
76 };
77
78 static const u8 ant_toggle_lookup[] = {
79         [ANT_NONE] = ANT_NONE,
80         [ANT_A] = ANT_B,
81         [ANT_B] = ANT_C,
82         [ANT_AB] = ANT_BC,
83         [ANT_C] = ANT_A,
84         [ANT_AC] = ANT_AB,
85         [ANT_BC] = ANT_AC,
86         [ANT_ABC] = ANT_ABC,
87 };
88
89 #define IWL_DECLARE_RATE_INFO(r, s, rp, rn)                           \
90         [IWL_RATE_##r##M_INDEX] = { IWL_RATE_##r##M_PLCP,             \
91                                     IWL_RATE_HT_SISO_MCS_##s##_PLCP,  \
92                                     IWL_RATE_HT_MIMO2_MCS_##s##_PLCP, \
93                                     IWL_RATE_VHT_SISO_MCS_##s##_PLCP, \
94                                     IWL_RATE_VHT_MIMO2_MCS_##s##_PLCP,\
95                                     IWL_RATE_##rp##M_INDEX,           \
96                                     IWL_RATE_##rn##M_INDEX }
97
98 #define IWL_DECLARE_MCS_RATE(s)                                           \
99         [IWL_RATE_MCS_##s##_INDEX] = { IWL_RATE_INVM_PLCP,                \
100                                        IWL_RATE_HT_SISO_MCS_##s##_PLCP,   \
101                                        IWL_RATE_HT_MIMO2_MCS_##s##_PLCP,  \
102                                        IWL_RATE_VHT_SISO_MCS_##s##_PLCP,  \
103                                        IWL_RATE_VHT_MIMO2_MCS_##s##_PLCP, \
104                                        IWL_RATE_INVM_INDEX,               \
105                                        IWL_RATE_INVM_INDEX }
106
107 /*
108  * Parameter order:
109  *   rate, ht rate, prev rate, next rate
110  *
111  * If there isn't a valid next or previous rate then INV is used which
112  * maps to IWL_RATE_INVALID
113  *
114  */
115 static const struct iwl_rs_rate_info iwl_rates[IWL_RATE_COUNT] = {
116         IWL_DECLARE_RATE_INFO(1, INV, INV, 2),   /*  1mbps */
117         IWL_DECLARE_RATE_INFO(2, INV, 1, 5),     /*  2mbps */
118         IWL_DECLARE_RATE_INFO(5, INV, 2, 11),    /*5.5mbps */
119         IWL_DECLARE_RATE_INFO(11, INV, 9, 12),   /* 11mbps */
120         IWL_DECLARE_RATE_INFO(6, 0, 5, 11),      /*  6mbps ; MCS 0 */
121         IWL_DECLARE_RATE_INFO(9, INV, 6, 11),    /*  9mbps */
122         IWL_DECLARE_RATE_INFO(12, 1, 11, 18),    /* 12mbps ; MCS 1 */
123         IWL_DECLARE_RATE_INFO(18, 2, 12, 24),    /* 18mbps ; MCS 2 */
124         IWL_DECLARE_RATE_INFO(24, 3, 18, 36),    /* 24mbps ; MCS 3 */
125         IWL_DECLARE_RATE_INFO(36, 4, 24, 48),    /* 36mbps ; MCS 4 */
126         IWL_DECLARE_RATE_INFO(48, 5, 36, 54),    /* 48mbps ; MCS 5 */
127         IWL_DECLARE_RATE_INFO(54, 6, 48, INV),   /* 54mbps ; MCS 6 */
128         IWL_DECLARE_MCS_RATE(7),                 /* MCS 7 */
129         IWL_DECLARE_MCS_RATE(8),                 /* MCS 8 */
130         IWL_DECLARE_MCS_RATE(9),                 /* MCS 9 */
131 };
132
133 enum rs_action {
134         RS_ACTION_STAY = 0,
135         RS_ACTION_DOWNSCALE = -1,
136         RS_ACTION_UPSCALE = 1,
137 };
138
139 enum rs_column_mode {
140         RS_INVALID = 0,
141         RS_LEGACY,
142         RS_SISO,
143         RS_MIMO2,
144 };
145
146 #define MAX_NEXT_COLUMNS 7
147 #define MAX_COLUMN_CHECKS 3
148
149 typedef bool (*allow_column_func_t) (struct iwl_mvm *mvm,
150                                      struct ieee80211_sta *sta,
151                                      struct iwl_scale_tbl_info *tbl);
152
153 struct rs_tx_column {
154         enum rs_column_mode mode;
155         u8 ant;
156         bool sgi;
157         enum rs_column next_columns[MAX_NEXT_COLUMNS];
158         allow_column_func_t checks[MAX_COLUMN_CHECKS];
159 };
160
161 static bool rs_ant_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
162                          struct iwl_scale_tbl_info *tbl)
163 {
164         return iwl_mvm_bt_coex_is_ant_avail(mvm, tbl->rate.ant);
165 }
166
167 static bool rs_mimo_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
168                           struct iwl_scale_tbl_info *tbl)
169 {
170         if (!sta->ht_cap.ht_supported)
171                 return false;
172
173         if (sta->smps_mode == IEEE80211_SMPS_STATIC)
174                 return false;
175
176         if (num_of_ant(mvm->fw->valid_tx_ant) < 2)
177                 return false;
178
179         if (!iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta))
180                 return false;
181
182         return true;
183 }
184
185 static bool rs_siso_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
186                           struct iwl_scale_tbl_info *tbl)
187 {
188         if (!sta->ht_cap.ht_supported)
189                 return false;
190
191         return true;
192 }
193
194 static bool rs_sgi_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
195                          struct iwl_scale_tbl_info *tbl)
196 {
197         struct rs_rate *rate = &tbl->rate;
198         struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
199         struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap;
200
201         if (is_ht20(rate) && (ht_cap->cap &
202                              IEEE80211_HT_CAP_SGI_20))
203                 return true;
204         if (is_ht40(rate) && (ht_cap->cap &
205                              IEEE80211_HT_CAP_SGI_40))
206                 return true;
207         if (is_ht80(rate) && (vht_cap->cap &
208                              IEEE80211_VHT_CAP_SHORT_GI_80))
209                 return true;
210
211         return false;
212 }
213
214 static const struct rs_tx_column rs_tx_columns[] = {
215         [RS_COLUMN_LEGACY_ANT_A] = {
216                 .mode = RS_LEGACY,
217                 .ant = ANT_A,
218                 .next_columns = {
219                         RS_COLUMN_LEGACY_ANT_B,
220                         RS_COLUMN_SISO_ANT_A,
221                         RS_COLUMN_MIMO2,
222                         RS_COLUMN_INVALID,
223                         RS_COLUMN_INVALID,
224                         RS_COLUMN_INVALID,
225                         RS_COLUMN_INVALID,
226                 },
227                 .checks = {
228                         rs_ant_allow,
229                 },
230         },
231         [RS_COLUMN_LEGACY_ANT_B] = {
232                 .mode = RS_LEGACY,
233                 .ant = ANT_B,
234                 .next_columns = {
235                         RS_COLUMN_LEGACY_ANT_A,
236                         RS_COLUMN_SISO_ANT_B,
237                         RS_COLUMN_MIMO2,
238                         RS_COLUMN_INVALID,
239                         RS_COLUMN_INVALID,
240                         RS_COLUMN_INVALID,
241                         RS_COLUMN_INVALID,
242                 },
243                 .checks = {
244                         rs_ant_allow,
245                 },
246         },
247         [RS_COLUMN_SISO_ANT_A] = {
248                 .mode = RS_SISO,
249                 .ant = ANT_A,
250                 .next_columns = {
251                         RS_COLUMN_SISO_ANT_B,
252                         RS_COLUMN_MIMO2,
253                         RS_COLUMN_SISO_ANT_A_SGI,
254                         RS_COLUMN_LEGACY_ANT_A,
255                         RS_COLUMN_LEGACY_ANT_B,
256                         RS_COLUMN_INVALID,
257                         RS_COLUMN_INVALID,
258                 },
259                 .checks = {
260                         rs_siso_allow,
261                         rs_ant_allow,
262                 },
263         },
264         [RS_COLUMN_SISO_ANT_B] = {
265                 .mode = RS_SISO,
266                 .ant = ANT_B,
267                 .next_columns = {
268                         RS_COLUMN_SISO_ANT_A,
269                         RS_COLUMN_MIMO2,
270                         RS_COLUMN_SISO_ANT_B_SGI,
271                         RS_COLUMN_LEGACY_ANT_A,
272                         RS_COLUMN_LEGACY_ANT_B,
273                         RS_COLUMN_INVALID,
274                         RS_COLUMN_INVALID,
275                 },
276                 .checks = {
277                         rs_siso_allow,
278                         rs_ant_allow,
279                 },
280         },
281         [RS_COLUMN_SISO_ANT_A_SGI] = {
282                 .mode = RS_SISO,
283                 .ant = ANT_A,
284                 .sgi = true,
285                 .next_columns = {
286                         RS_COLUMN_SISO_ANT_B_SGI,
287                         RS_COLUMN_MIMO2_SGI,
288                         RS_COLUMN_SISO_ANT_A,
289                         RS_COLUMN_LEGACY_ANT_A,
290                         RS_COLUMN_LEGACY_ANT_B,
291                         RS_COLUMN_INVALID,
292                         RS_COLUMN_INVALID,
293                 },
294                 .checks = {
295                         rs_siso_allow,
296                         rs_ant_allow,
297                         rs_sgi_allow,
298                 },
299         },
300         [RS_COLUMN_SISO_ANT_B_SGI] = {
301                 .mode = RS_SISO,
302                 .ant = ANT_B,
303                 .sgi = true,
304                 .next_columns = {
305                         RS_COLUMN_SISO_ANT_A_SGI,
306                         RS_COLUMN_MIMO2_SGI,
307                         RS_COLUMN_SISO_ANT_B,
308                         RS_COLUMN_LEGACY_ANT_A,
309                         RS_COLUMN_LEGACY_ANT_B,
310                         RS_COLUMN_INVALID,
311                         RS_COLUMN_INVALID,
312                 },
313                 .checks = {
314                         rs_siso_allow,
315                         rs_ant_allow,
316                         rs_sgi_allow,
317                 },
318         },
319         [RS_COLUMN_MIMO2] = {
320                 .mode = RS_MIMO2,
321                 .ant = ANT_AB,
322                 .next_columns = {
323                         RS_COLUMN_SISO_ANT_A,
324                         RS_COLUMN_MIMO2_SGI,
325                         RS_COLUMN_LEGACY_ANT_A,
326                         RS_COLUMN_LEGACY_ANT_B,
327                         RS_COLUMN_INVALID,
328                         RS_COLUMN_INVALID,
329                         RS_COLUMN_INVALID,
330                 },
331                 .checks = {
332                         rs_mimo_allow,
333                 },
334         },
335         [RS_COLUMN_MIMO2_SGI] = {
336                 .mode = RS_MIMO2,
337                 .ant = ANT_AB,
338                 .sgi = true,
339                 .next_columns = {
340                         RS_COLUMN_SISO_ANT_A_SGI,
341                         RS_COLUMN_MIMO2,
342                         RS_COLUMN_LEGACY_ANT_A,
343                         RS_COLUMN_LEGACY_ANT_B,
344                         RS_COLUMN_INVALID,
345                         RS_COLUMN_INVALID,
346                         RS_COLUMN_INVALID,
347                 },
348                 .checks = {
349                         rs_mimo_allow,
350                         rs_sgi_allow,
351                 },
352         },
353 };
354
355 static inline u8 rs_extract_rate(u32 rate_n_flags)
356 {
357         /* also works for HT because bits 7:6 are zero there */
358         return (u8)(rate_n_flags & RATE_LEGACY_RATE_MSK);
359 }
360
361 static int iwl_hwrate_to_plcp_idx(u32 rate_n_flags)
362 {
363         int idx = 0;
364
365         if (rate_n_flags & RATE_MCS_HT_MSK) {
366                 idx = rate_n_flags & RATE_HT_MCS_RATE_CODE_MSK;
367                 idx += IWL_RATE_MCS_0_INDEX;
368
369                 /* skip 9M not supported in HT*/
370                 if (idx >= IWL_RATE_9M_INDEX)
371                         idx += 1;
372                 if ((idx >= IWL_FIRST_HT_RATE) && (idx <= IWL_LAST_HT_RATE))
373                         return idx;
374         } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
375                 idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
376                 idx += IWL_RATE_MCS_0_INDEX;
377
378                 /* skip 9M not supported in VHT*/
379                 if (idx >= IWL_RATE_9M_INDEX)
380                         idx++;
381                 if ((idx >= IWL_FIRST_VHT_RATE) && (idx <= IWL_LAST_VHT_RATE))
382                         return idx;
383         } else {
384                 /* legacy rate format, search for match in table */
385
386                 u8 legacy_rate = rs_extract_rate(rate_n_flags);
387                 for (idx = 0; idx < ARRAY_SIZE(iwl_rates); idx++)
388                         if (iwl_rates[idx].plcp == legacy_rate)
389                                 return idx;
390         }
391
392         return IWL_RATE_INVALID;
393 }
394
395 static void rs_rate_scale_perform(struct iwl_mvm *mvm,
396                                   struct ieee80211_sta *sta,
397                                   struct iwl_lq_sta *lq_sta,
398                                   int tid);
399 static void rs_fill_lq_cmd(struct iwl_mvm *mvm,
400                            struct ieee80211_sta *sta,
401                            struct iwl_lq_sta *lq_sta,
402                            const struct rs_rate *initial_rate);
403 static void rs_stay_in_table(struct iwl_lq_sta *lq_sta, bool force_search);
404
405 /**
406  * The following tables contain the expected throughput metrics for all rates
407  *
408  *      1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
409  *
410  * where invalid entries are zeros.
411  *
412  * CCK rates are only valid in legacy table and will only be used in G
413  * (2.4 GHz) band.
414  */
415
416 static const u16 expected_tpt_legacy[IWL_RATE_COUNT] = {
417         7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0, 0, 0
418 };
419
420 /* Expected TpT tables. 4 indexes:
421  * 0 - NGI, 1 - SGI, 2 - AGG+NGI, 3 - AGG+SGI
422  */
423 static const u16 expected_tpt_siso_20MHz[4][IWL_RATE_COUNT] = {
424         {0, 0, 0, 0, 42, 0,  76, 102, 124, 159, 183, 193, 202, 216, 0},
425         {0, 0, 0, 0, 46, 0,  82, 110, 132, 168, 192, 202, 210, 225, 0},
426         {0, 0, 0, 0, 49, 0,  97, 145, 192, 285, 375, 420, 464, 551, 0},
427         {0, 0, 0, 0, 54, 0, 108, 160, 213, 315, 415, 465, 513, 608, 0},
428 };
429
430 static const u16 expected_tpt_siso_40MHz[4][IWL_RATE_COUNT] = {
431         {0, 0, 0, 0,  77, 0, 127, 160, 184, 220, 242, 250,  257,  269,  275},
432         {0, 0, 0, 0,  83, 0, 135, 169, 193, 229, 250, 257,  264,  275,  280},
433         {0, 0, 0, 0, 101, 0, 199, 295, 389, 570, 744, 828,  911, 1070, 1173},
434         {0, 0, 0, 0, 112, 0, 220, 326, 429, 629, 819, 912, 1000, 1173, 1284},
435 };
436
437 static const u16 expected_tpt_siso_80MHz[4][IWL_RATE_COUNT] = {
438         {0, 0, 0, 0, 130, 0, 191, 223, 244,  273,  288,  294,  298,  305,  308},
439         {0, 0, 0, 0, 138, 0, 200, 231, 251,  279,  293,  298,  302,  308,  312},
440         {0, 0, 0, 0, 217, 0, 429, 634, 834, 1220, 1585, 1760, 1931, 2258, 2466},
441         {0, 0, 0, 0, 241, 0, 475, 701, 921, 1343, 1741, 1931, 2117, 2468, 2691},
442 };
443
444 static const u16 expected_tpt_mimo2_20MHz[4][IWL_RATE_COUNT] = {
445         {0, 0, 0, 0,  74, 0, 123, 155, 179, 213, 235, 243, 250,  261, 0},
446         {0, 0, 0, 0,  81, 0, 131, 164, 187, 221, 242, 250, 256,  267, 0},
447         {0, 0, 0, 0,  98, 0, 193, 286, 375, 550, 718, 799, 878, 1032, 0},
448         {0, 0, 0, 0, 109, 0, 214, 316, 414, 607, 790, 879, 965, 1132, 0},
449 };
450
451 static const u16 expected_tpt_mimo2_40MHz[4][IWL_RATE_COUNT] = {
452         {0, 0, 0, 0, 123, 0, 182, 214, 235,  264,  279,  285,  289,  296,  300},
453         {0, 0, 0, 0, 131, 0, 191, 222, 242,  270,  284,  289,  293,  300,  303},
454         {0, 0, 0, 0, 200, 0, 390, 571, 741, 1067, 1365, 1505, 1640, 1894, 2053},
455         {0, 0, 0, 0, 221, 0, 430, 630, 816, 1169, 1490, 1641, 1784, 2053, 2221},
456 };
457
458 static const u16 expected_tpt_mimo2_80MHz[4][IWL_RATE_COUNT] = {
459         {0, 0, 0, 0, 182, 0, 240,  264,  278,  299,  308,  311,  313,  317,  319},
460         {0, 0, 0, 0, 190, 0, 247,  269,  282,  302,  310,  313,  315,  319,  320},
461         {0, 0, 0, 0, 428, 0, 833, 1215, 1577, 2254, 2863, 3147, 3418, 3913, 4219},
462         {0, 0, 0, 0, 474, 0, 920, 1338, 1732, 2464, 3116, 3418, 3705, 4225, 4545},
463 };
464
465 /* mbps, mcs */
466 static const struct iwl_rate_mcs_info iwl_rate_mcs[IWL_RATE_COUNT] = {
467         {  "1", "BPSK DSSS"},
468         {  "2", "QPSK DSSS"},
469         {"5.5", "BPSK CCK"},
470         { "11", "QPSK CCK"},
471         {  "6", "BPSK 1/2"},
472         {  "9", "BPSK 1/2"},
473         { "12", "QPSK 1/2"},
474         { "18", "QPSK 3/4"},
475         { "24", "16QAM 1/2"},
476         { "36", "16QAM 3/4"},
477         { "48", "64QAM 2/3"},
478         { "54", "64QAM 3/4"},
479         { "60", "64QAM 5/6"},
480 };
481
482 #define MCS_INDEX_PER_STREAM    (8)
483
484 static const char *rs_pretty_ant(u8 ant)
485 {
486         static const char * const ant_name[] = {
487                 [ANT_NONE] = "None",
488                 [ANT_A]    = "A",
489                 [ANT_B]    = "B",
490                 [ANT_AB]   = "AB",
491                 [ANT_C]    = "C",
492                 [ANT_AC]   = "AC",
493                 [ANT_BC]   = "BC",
494                 [ANT_ABC]  = "ABC",
495         };
496
497         if (ant > ANT_ABC)
498                 return "UNKNOWN";
499
500         return ant_name[ant];
501 }
502
503 static const char *rs_pretty_lq_type(enum iwl_table_type type)
504 {
505         static const char * const lq_types[] = {
506                 [LQ_NONE] = "NONE",
507                 [LQ_LEGACY_A] = "LEGACY_A",
508                 [LQ_LEGACY_G] = "LEGACY_G",
509                 [LQ_HT_SISO] = "HT SISO",
510                 [LQ_HT_MIMO2] = "HT MIMO",
511                 [LQ_VHT_SISO] = "VHT SISO",
512                 [LQ_VHT_MIMO2] = "VHT MIMO",
513         };
514
515         if (type < LQ_NONE || type >= LQ_MAX)
516                 return "UNKNOWN";
517
518         return lq_types[type];
519 }
520
521 static inline void rs_dump_rate(struct iwl_mvm *mvm, const struct rs_rate *rate,
522                                 const char *prefix)
523 {
524         IWL_DEBUG_RATE(mvm,
525                        "%s: (%s: %d) ANT: %s BW: %d SGI: %d LDPC: %d STBC: %d\n",
526                        prefix, rs_pretty_lq_type(rate->type),
527                        rate->index, rs_pretty_ant(rate->ant),
528                        rate->bw, rate->sgi, rate->ldpc, rate->stbc);
529 }
530
531 static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window)
532 {
533         window->data = 0;
534         window->success_counter = 0;
535         window->success_ratio = IWL_INVALID_VALUE;
536         window->counter = 0;
537         window->average_tpt = IWL_INVALID_VALUE;
538 }
539
540 static void rs_rate_scale_clear_tbl_windows(struct iwl_mvm *mvm,
541                                             struct iwl_scale_tbl_info *tbl)
542 {
543         int i;
544
545         IWL_DEBUG_RATE(mvm, "Clearing up window stats\n");
546         for (i = 0; i < IWL_RATE_COUNT; i++)
547                 rs_rate_scale_clear_window(&tbl->win[i]);
548
549         for (i = 0; i < ARRAY_SIZE(tbl->tpc_win); i++)
550                 rs_rate_scale_clear_window(&tbl->tpc_win[i]);
551 }
552
553 static inline u8 rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
554 {
555         return (ant_type & valid_antenna) == ant_type;
556 }
557
558 static int rs_tl_turn_on_agg_for_tid(struct iwl_mvm *mvm,
559                                       struct iwl_lq_sta *lq_data, u8 tid,
560                                       struct ieee80211_sta *sta)
561 {
562         int ret = -EAGAIN;
563
564         IWL_DEBUG_HT(mvm, "Starting Tx agg: STA: %pM tid: %d\n",
565                      sta->addr, tid);
566         ret = ieee80211_start_tx_ba_session(sta, tid, 5000);
567         if (ret == -EAGAIN) {
568                 /*
569                  * driver and mac80211 is out of sync
570                  * this might be cause by reloading firmware
571                  * stop the tx ba session here
572                  */
573                 IWL_ERR(mvm, "Fail start Tx agg on tid: %d\n",
574                         tid);
575                 ieee80211_stop_tx_ba_session(sta, tid);
576         }
577         return ret;
578 }
579
580 static void rs_tl_turn_on_agg(struct iwl_mvm *mvm, u8 tid,
581                               struct iwl_lq_sta *lq_data,
582                               struct ieee80211_sta *sta)
583 {
584         if (tid < IWL_MAX_TID_COUNT)
585                 rs_tl_turn_on_agg_for_tid(mvm, lq_data, tid, sta);
586         else
587                 IWL_ERR(mvm, "tid exceeds max TID count: %d/%d\n",
588                         tid, IWL_MAX_TID_COUNT);
589 }
590
591 static inline int get_num_of_ant_from_rate(u32 rate_n_flags)
592 {
593         return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
594                !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
595                !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
596 }
597
598 /*
599  * Static function to get the expected throughput from an iwl_scale_tbl_info
600  * that wraps a NULL pointer check
601  */
602 static s32 get_expected_tpt(struct iwl_scale_tbl_info *tbl, int rs_index)
603 {
604         if (tbl->expected_tpt)
605                 return tbl->expected_tpt[rs_index];
606         return 0;
607 }
608
609 /**
610  * rs_collect_tx_data - Update the success/failure sliding window
611  *
612  * We keep a sliding window of the last 62 packets transmitted
613  * at this rate.  window->data contains the bitmask of successful
614  * packets.
615  */
616 static int _rs_collect_tx_data(struct iwl_scale_tbl_info *tbl,
617                                int scale_index, int attempts, int successes,
618                                struct iwl_rate_scale_data *window)
619 {
620         static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1));
621         s32 fail_count, tpt;
622
623         /* Get expected throughput */
624         tpt = get_expected_tpt(tbl, scale_index);
625
626         /*
627          * Keep track of only the latest 62 tx frame attempts in this rate's
628          * history window; anything older isn't really relevant any more.
629          * If we have filled up the sliding window, drop the oldest attempt;
630          * if the oldest attempt (highest bit in bitmap) shows "success",
631          * subtract "1" from the success counter (this is the main reason
632          * we keep these bitmaps!).
633          */
634         while (attempts > 0) {
635                 if (window->counter >= IWL_RATE_MAX_WINDOW) {
636                         /* remove earliest */
637                         window->counter = IWL_RATE_MAX_WINDOW - 1;
638
639                         if (window->data & mask) {
640                                 window->data &= ~mask;
641                                 window->success_counter--;
642                         }
643                 }
644
645                 /* Increment frames-attempted counter */
646                 window->counter++;
647
648                 /* Shift bitmap by one frame to throw away oldest history */
649                 window->data <<= 1;
650
651                 /* Mark the most recent #successes attempts as successful */
652                 if (successes > 0) {
653                         window->success_counter++;
654                         window->data |= 0x1;
655                         successes--;
656                 }
657
658                 attempts--;
659         }
660
661         /* Calculate current success ratio, avoid divide-by-0! */
662         if (window->counter > 0)
663                 window->success_ratio = 128 * (100 * window->success_counter)
664                                         / window->counter;
665         else
666                 window->success_ratio = IWL_INVALID_VALUE;
667
668         fail_count = window->counter - window->success_counter;
669
670         /* Calculate average throughput, if we have enough history. */
671         if ((fail_count >= IWL_RATE_MIN_FAILURE_TH) ||
672             (window->success_counter >= IWL_RATE_MIN_SUCCESS_TH))
673                 window->average_tpt = (window->success_ratio * tpt + 64) / 128;
674         else
675                 window->average_tpt = IWL_INVALID_VALUE;
676
677         return 0;
678 }
679
680 static int rs_collect_tx_data(struct iwl_lq_sta *lq_sta,
681                               struct iwl_scale_tbl_info *tbl,
682                               int scale_index, int attempts, int successes,
683                               u8 reduced_txp)
684 {
685         struct iwl_rate_scale_data *window = NULL;
686         int ret;
687
688         if (scale_index < 0 || scale_index >= IWL_RATE_COUNT)
689                 return -EINVAL;
690
691         if (tbl->column != RS_COLUMN_INVALID) {
692                 struct lq_sta_pers *pers = &lq_sta->pers;
693
694                 pers->tx_stats[tbl->column][scale_index].total += attempts;
695                 pers->tx_stats[tbl->column][scale_index].success += successes;
696         }
697
698         /* Select window for current tx bit rate */
699         window = &(tbl->win[scale_index]);
700
701         ret = _rs_collect_tx_data(tbl, scale_index, attempts, successes,
702                                   window);
703         if (ret)
704                 return ret;
705
706         if (WARN_ON_ONCE(reduced_txp > TPC_MAX_REDUCTION))
707                 return -EINVAL;
708
709         window = &tbl->tpc_win[reduced_txp];
710         return _rs_collect_tx_data(tbl, scale_index, attempts, successes,
711                                    window);
712 }
713
714 /* Convert rs_rate object into ucode rate bitmask */
715 static u32 ucode_rate_from_rs_rate(struct iwl_mvm *mvm,
716                                   struct rs_rate *rate)
717 {
718         u32 ucode_rate = 0;
719         int index = rate->index;
720
721         ucode_rate |= ((rate->ant << RATE_MCS_ANT_POS) &
722                          RATE_MCS_ANT_ABC_MSK);
723
724         if (is_legacy(rate)) {
725                 ucode_rate |= iwl_rates[index].plcp;
726                 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
727                         ucode_rate |= RATE_MCS_CCK_MSK;
728                 return ucode_rate;
729         }
730
731         if (is_ht(rate)) {
732                 if (index < IWL_FIRST_HT_RATE || index > IWL_LAST_HT_RATE) {
733                         IWL_ERR(mvm, "Invalid HT rate index %d\n", index);
734                         index = IWL_LAST_HT_RATE;
735                 }
736                 ucode_rate |= RATE_MCS_HT_MSK;
737
738                 if (is_ht_siso(rate))
739                         ucode_rate |= iwl_rates[index].plcp_ht_siso;
740                 else if (is_ht_mimo2(rate))
741                         ucode_rate |= iwl_rates[index].plcp_ht_mimo2;
742                 else
743                         WARN_ON_ONCE(1);
744         } else if (is_vht(rate)) {
745                 if (index < IWL_FIRST_VHT_RATE || index > IWL_LAST_VHT_RATE) {
746                         IWL_ERR(mvm, "Invalid VHT rate index %d\n", index);
747                         index = IWL_LAST_VHT_RATE;
748                 }
749                 ucode_rate |= RATE_MCS_VHT_MSK;
750                 if (is_vht_siso(rate))
751                         ucode_rate |= iwl_rates[index].plcp_vht_siso;
752                 else if (is_vht_mimo2(rate))
753                         ucode_rate |= iwl_rates[index].plcp_vht_mimo2;
754                 else
755                         WARN_ON_ONCE(1);
756
757         } else {
758                 IWL_ERR(mvm, "Invalid rate->type %d\n", rate->type);
759         }
760
761         if (is_siso(rate) && rate->stbc) {
762                 /* To enable STBC we need to set both a flag and ANT_AB */
763                 ucode_rate |= RATE_MCS_ANT_AB_MSK;
764                 ucode_rate |= RATE_MCS_VHT_STBC_MSK;
765         }
766
767         ucode_rate |= rate->bw;
768         if (rate->sgi)
769                 ucode_rate |= RATE_MCS_SGI_MSK;
770         if (rate->ldpc)
771                 ucode_rate |= RATE_MCS_LDPC_MSK;
772
773         return ucode_rate;
774 }
775
776 /* Convert a ucode rate into an rs_rate object */
777 static int rs_rate_from_ucode_rate(const u32 ucode_rate,
778                                    enum ieee80211_band band,
779                                    struct rs_rate *rate)
780 {
781         u32 ant_msk = ucode_rate & RATE_MCS_ANT_ABC_MSK;
782         u8 num_of_ant = get_num_of_ant_from_rate(ucode_rate);
783         u8 nss;
784
785         memset(rate, 0, sizeof(*rate));
786         rate->index = iwl_hwrate_to_plcp_idx(ucode_rate);
787
788         if (rate->index == IWL_RATE_INVALID)
789                 return -EINVAL;
790
791         rate->ant = (ant_msk >> RATE_MCS_ANT_POS);
792
793         /* Legacy */
794         if (!(ucode_rate & RATE_MCS_HT_MSK) &&
795             !(ucode_rate & RATE_MCS_VHT_MSK)) {
796                 if (num_of_ant == 1) {
797                         if (band == IEEE80211_BAND_5GHZ)
798                                 rate->type = LQ_LEGACY_A;
799                         else
800                                 rate->type = LQ_LEGACY_G;
801                 }
802
803                 return 0;
804         }
805
806         /* HT or VHT */
807         if (ucode_rate & RATE_MCS_SGI_MSK)
808                 rate->sgi = true;
809         if (ucode_rate & RATE_MCS_LDPC_MSK)
810                 rate->ldpc = true;
811         if (ucode_rate & RATE_MCS_VHT_STBC_MSK)
812                 rate->stbc = true;
813
814         rate->bw = ucode_rate & RATE_MCS_CHAN_WIDTH_MSK;
815
816         if (ucode_rate & RATE_MCS_HT_MSK) {
817                 nss = ((ucode_rate & RATE_HT_MCS_NSS_MSK) >>
818                        RATE_HT_MCS_NSS_POS) + 1;
819
820                 if (nss == 1) {
821                         rate->type = LQ_HT_SISO;
822                         WARN_ON_ONCE(!rate->stbc && num_of_ant != 1);
823                 } else if (nss == 2) {
824                         rate->type = LQ_HT_MIMO2;
825                         WARN_ON_ONCE(num_of_ant != 2);
826                 } else {
827                         WARN_ON_ONCE(1);
828                 }
829         } else if (ucode_rate & RATE_MCS_VHT_MSK) {
830                 nss = ((ucode_rate & RATE_VHT_MCS_NSS_MSK) >>
831                        RATE_VHT_MCS_NSS_POS) + 1;
832
833                 if (nss == 1) {
834                         rate->type = LQ_VHT_SISO;
835                         WARN_ON_ONCE(!rate->stbc && num_of_ant != 1);
836                 } else if (nss == 2) {
837                         rate->type = LQ_VHT_MIMO2;
838                         WARN_ON_ONCE(num_of_ant != 2);
839                 } else {
840                         WARN_ON_ONCE(1);
841                 }
842         }
843
844         WARN_ON_ONCE(rate->bw == RATE_MCS_CHAN_WIDTH_160);
845         WARN_ON_ONCE(rate->bw == RATE_MCS_CHAN_WIDTH_80 &&
846                      !is_vht(rate));
847
848         return 0;
849 }
850
851 /* switch to another antenna/antennas and return 1 */
852 /* if no other valid antenna found, return 0 */
853 static int rs_toggle_antenna(u32 valid_ant, struct rs_rate *rate)
854 {
855         u8 new_ant_type;
856
857         if (!rate->ant || rate->ant > ANT_ABC)
858                 return 0;
859
860         if (!rs_is_valid_ant(valid_ant, rate->ant))
861                 return 0;
862
863         new_ant_type = ant_toggle_lookup[rate->ant];
864
865         while ((new_ant_type != rate->ant) &&
866                !rs_is_valid_ant(valid_ant, new_ant_type))
867                 new_ant_type = ant_toggle_lookup[new_ant_type];
868
869         if (new_ant_type == rate->ant)
870                 return 0;
871
872         rate->ant = new_ant_type;
873
874         return 1;
875 }
876
877 static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
878                                   struct rs_rate *rate)
879 {
880         if (is_legacy(rate))
881                 return lq_sta->active_legacy_rate;
882         else if (is_siso(rate))
883                 return lq_sta->active_siso_rate;
884         else if (is_mimo2(rate))
885                 return lq_sta->active_mimo2_rate;
886
887         WARN_ON_ONCE(1);
888         return 0;
889 }
890
891 static u16 rs_get_adjacent_rate(struct iwl_mvm *mvm, u8 index, u16 rate_mask,
892                                 int rate_type)
893 {
894         u8 high = IWL_RATE_INVALID;
895         u8 low = IWL_RATE_INVALID;
896
897         /* 802.11A or ht walks to the next literal adjacent rate in
898          * the rate table */
899         if (is_type_a_band(rate_type) || !is_type_legacy(rate_type)) {
900                 int i;
901                 u32 mask;
902
903                 /* Find the previous rate that is in the rate mask */
904                 i = index - 1;
905                 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
906                         if (rate_mask & mask) {
907                                 low = i;
908                                 break;
909                         }
910                 }
911
912                 /* Find the next rate that is in the rate mask */
913                 i = index + 1;
914                 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
915                         if (rate_mask & mask) {
916                                 high = i;
917                                 break;
918                         }
919                 }
920
921                 return (high << 8) | low;
922         }
923
924         low = index;
925         while (low != IWL_RATE_INVALID) {
926                 low = iwl_rates[low].prev_rs;
927                 if (low == IWL_RATE_INVALID)
928                         break;
929                 if (rate_mask & (1 << low))
930                         break;
931                 IWL_DEBUG_RATE(mvm, "Skipping masked lower rate: %d\n", low);
932         }
933
934         high = index;
935         while (high != IWL_RATE_INVALID) {
936                 high = iwl_rates[high].next_rs;
937                 if (high == IWL_RATE_INVALID)
938                         break;
939                 if (rate_mask & (1 << high))
940                         break;
941                 IWL_DEBUG_RATE(mvm, "Skipping masked higher rate: %d\n", high);
942         }
943
944         return (high << 8) | low;
945 }
946
947 static inline bool rs_rate_supported(struct iwl_lq_sta *lq_sta,
948                                      struct rs_rate *rate)
949 {
950         return BIT(rate->index) & rs_get_supported_rates(lq_sta, rate);
951 }
952
953 /* Get the next supported lower rate in the current column.
954  * Return true if bottom rate in the current column was reached
955  */
956 static bool rs_get_lower_rate_in_column(struct iwl_lq_sta *lq_sta,
957                                         struct rs_rate *rate)
958 {
959         u8 low;
960         u16 high_low;
961         u16 rate_mask;
962         struct iwl_mvm *mvm = lq_sta->pers.drv;
963
964         rate_mask = rs_get_supported_rates(lq_sta, rate);
965         high_low = rs_get_adjacent_rate(mvm, rate->index, rate_mask,
966                                         rate->type);
967         low = high_low & 0xff;
968
969         /* Bottom rate of column reached */
970         if (low == IWL_RATE_INVALID)
971                 return true;
972
973         rate->index = low;
974         return false;
975 }
976
977 /* Get the next rate to use following a column downgrade */
978 static void rs_get_lower_rate_down_column(struct iwl_lq_sta *lq_sta,
979                                           struct rs_rate *rate)
980 {
981         struct iwl_mvm *mvm = lq_sta->pers.drv;
982
983         if (is_legacy(rate)) {
984                 /* No column to downgrade from Legacy */
985                 return;
986         } else if (is_siso(rate)) {
987                 /* Downgrade to Legacy if we were in SISO */
988                 if (lq_sta->band == IEEE80211_BAND_5GHZ)
989                         rate->type = LQ_LEGACY_A;
990                 else
991                         rate->type = LQ_LEGACY_G;
992
993                 rate->bw = RATE_MCS_CHAN_WIDTH_20;
994
995                 WARN_ON_ONCE(rate->index < IWL_RATE_MCS_0_INDEX ||
996                              rate->index > IWL_RATE_MCS_9_INDEX);
997
998                 rate->index = rs_ht_to_legacy[rate->index];
999                 rate->ldpc = false;
1000         } else {
1001                 /* Downgrade to SISO with same MCS if in MIMO  */
1002                 rate->type = is_vht_mimo2(rate) ?
1003                         LQ_VHT_SISO : LQ_HT_SISO;
1004         }
1005
1006         if (num_of_ant(rate->ant) > 1)
1007                 rate->ant = first_antenna(mvm->fw->valid_tx_ant);
1008
1009         /* Relevant in both switching to SISO or Legacy */
1010         rate->sgi = false;
1011
1012         if (!rs_rate_supported(lq_sta, rate))
1013                 rs_get_lower_rate_in_column(lq_sta, rate);
1014 }
1015
1016 /* Simple function to compare two rate scale table types */
1017 static inline bool rs_rate_match(struct rs_rate *a,
1018                                  struct rs_rate *b)
1019 {
1020         bool ant_match;
1021
1022         if (a->stbc)
1023                 ant_match = (b->ant == ANT_A || b->ant == ANT_B);
1024         else
1025                 ant_match = (a->ant == b->ant);
1026
1027         return (a->type == b->type) && (a->bw == b->bw) && (a->sgi == b->sgi)
1028                 && ant_match;
1029 }
1030
1031 static u32 rs_ch_width_from_mac_flags(enum mac80211_rate_control_flags flags)
1032 {
1033         if (flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
1034                 return RATE_MCS_CHAN_WIDTH_40;
1035         else if (flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
1036                 return RATE_MCS_CHAN_WIDTH_80;
1037         else if (flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
1038                 return RATE_MCS_CHAN_WIDTH_160;
1039
1040         return RATE_MCS_CHAN_WIDTH_20;
1041 }
1042
1043 static u8 rs_get_tid(struct ieee80211_hdr *hdr)
1044 {
1045         u8 tid = IWL_MAX_TID_COUNT;
1046
1047         if (ieee80211_is_data_qos(hdr->frame_control)) {
1048                 u8 *qc = ieee80211_get_qos_ctl(hdr);
1049                 tid = qc[0] & 0xf;
1050         }
1051
1052         if (unlikely(tid > IWL_MAX_TID_COUNT))
1053                 tid = IWL_MAX_TID_COUNT;
1054
1055         return tid;
1056 }
1057
1058 void iwl_mvm_rs_tx_status(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
1059                           int tid, struct ieee80211_tx_info *info)
1060 {
1061         int legacy_success;
1062         int retries;
1063         int mac_index, i;
1064         struct iwl_lq_cmd *table;
1065         enum mac80211_rate_control_flags mac_flags;
1066         u32 ucode_rate;
1067         struct rs_rate rate;
1068         struct iwl_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
1069         u8 reduced_txp = (uintptr_t)info->status.status_driver_data[0];
1070         struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
1071         struct iwl_lq_sta *lq_sta = &mvmsta->lq_sta;
1072
1073         /* Treat uninitialized rate scaling data same as non-existing. */
1074         if (!lq_sta) {
1075                 IWL_DEBUG_RATE(mvm, "Station rate scaling not created yet.\n");
1076                 return;
1077         } else if (!lq_sta->pers.drv) {
1078                 IWL_DEBUG_RATE(mvm, "Rate scaling not initialized yet.\n");
1079                 return;
1080         }
1081
1082 #ifdef CONFIG_MAC80211_DEBUGFS
1083         /* Disable last tx check if we are debugging with fixed rate */
1084         if (lq_sta->pers.dbg_fixed_rate) {
1085                 IWL_DEBUG_RATE(mvm, "Fixed rate. avoid rate scaling\n");
1086                 return;
1087         }
1088 #endif
1089         /* This packet was aggregated but doesn't carry status info */
1090         if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
1091             !(info->flags & IEEE80211_TX_STAT_AMPDU))
1092                 return;
1093
1094         /*
1095          * Ignore this Tx frame response if its initial rate doesn't match
1096          * that of latest Link Quality command.  There may be stragglers
1097          * from a previous Link Quality command, but we're no longer interested
1098          * in those; they're either from the "active" mode while we're trying
1099          * to check "search" mode, or a prior "search" mode after we've moved
1100          * to a new "search" mode (which might become the new "active" mode).
1101          */
1102         table = &lq_sta->lq;
1103         ucode_rate = le32_to_cpu(table->rs_table[0]);
1104         rs_rate_from_ucode_rate(ucode_rate, info->band, &rate);
1105         if (info->band == IEEE80211_BAND_5GHZ)
1106                 rate.index -= IWL_FIRST_OFDM_RATE;
1107         mac_flags = info->status.rates[0].flags;
1108         mac_index = info->status.rates[0].idx;
1109         /* For HT packets, map MCS to PLCP */
1110         if (mac_flags & IEEE80211_TX_RC_MCS) {
1111                 /* Remove # of streams */
1112                 mac_index &= RATE_HT_MCS_RATE_CODE_MSK;
1113                 if (mac_index >= (IWL_RATE_9M_INDEX - IWL_FIRST_OFDM_RATE))
1114                         mac_index++;
1115                 /*
1116                  * mac80211 HT index is always zero-indexed; we need to move
1117                  * HT OFDM rates after CCK rates in 2.4 GHz band
1118                  */
1119                 if (info->band == IEEE80211_BAND_2GHZ)
1120                         mac_index += IWL_FIRST_OFDM_RATE;
1121         } else if (mac_flags & IEEE80211_TX_RC_VHT_MCS) {
1122                 mac_index &= RATE_VHT_MCS_RATE_CODE_MSK;
1123                 if (mac_index >= (IWL_RATE_9M_INDEX - IWL_FIRST_OFDM_RATE))
1124                         mac_index++;
1125         }
1126
1127         if (time_after(jiffies,
1128                        (unsigned long)(lq_sta->last_tx + RS_IDLE_TIMEOUT))) {
1129                 int t;
1130
1131                 IWL_DEBUG_RATE(mvm, "Tx idle for too long. reinit rs\n");
1132                 for (t = 0; t < IWL_MAX_TID_COUNT; t++)
1133                         ieee80211_stop_tx_ba_session(sta, t);
1134
1135                 iwl_mvm_rs_rate_init(mvm, sta, info->band, false);
1136                 return;
1137         }
1138         lq_sta->last_tx = jiffies;
1139
1140         /* Here we actually compare this rate to the latest LQ command */
1141         if ((mac_index < 0) ||
1142             (rate.sgi != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI)) ||
1143             (rate.bw != rs_ch_width_from_mac_flags(mac_flags)) ||
1144             (rate.ant != info->status.antenna) ||
1145             (!!(ucode_rate & RATE_MCS_HT_MSK) !=
1146              !!(mac_flags & IEEE80211_TX_RC_MCS)) ||
1147             (!!(ucode_rate & RATE_MCS_VHT_MSK) !=
1148              !!(mac_flags & IEEE80211_TX_RC_VHT_MCS)) ||
1149             (!!(ucode_rate & RATE_HT_MCS_GF_MSK) !=
1150              !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD)) ||
1151             (rate.index != mac_index)) {
1152                 IWL_DEBUG_RATE(mvm,
1153                                "initial rate %d does not match %d (0x%x)\n",
1154                                mac_index, rate.index, ucode_rate);
1155                 /*
1156                  * Since rates mis-match, the last LQ command may have failed.
1157                  * After IWL_MISSED_RATE_MAX mis-matches, resync the uCode with
1158                  * ... driver.
1159                  */
1160                 lq_sta->missed_rate_counter++;
1161                 if (lq_sta->missed_rate_counter > IWL_MISSED_RATE_MAX) {
1162                         lq_sta->missed_rate_counter = 0;
1163                         IWL_DEBUG_RATE(mvm,
1164                                        "Too many rates mismatch. Send sync LQ. rs_state %d\n",
1165                                        lq_sta->rs_state);
1166                         iwl_mvm_send_lq_cmd(mvm, &lq_sta->lq, false);
1167                 }
1168                 /* Regardless, ignore this status info for outdated rate */
1169                 return;
1170         } else
1171                 /* Rate did match, so reset the missed_rate_counter */
1172                 lq_sta->missed_rate_counter = 0;
1173
1174         if (!lq_sta->search_better_tbl) {
1175                 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1176                 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
1177         } else {
1178                 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
1179                 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1180         }
1181
1182         if (WARN_ON_ONCE(!rs_rate_match(&rate, &curr_tbl->rate))) {
1183                 IWL_DEBUG_RATE(mvm,
1184                                "Neither active nor search matches tx rate\n");
1185                 tmp_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1186                 rs_dump_rate(mvm, &tmp_tbl->rate, "ACTIVE");
1187                 tmp_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
1188                 rs_dump_rate(mvm, &tmp_tbl->rate, "SEARCH");
1189                 rs_dump_rate(mvm, &rate, "ACTUAL");
1190
1191                 /*
1192                  * no matching table found, let's by-pass the data collection
1193                  * and continue to perform rate scale to find the rate table
1194                  */
1195                 rs_stay_in_table(lq_sta, true);
1196                 goto done;
1197         }
1198
1199         /*
1200          * Updating the frame history depends on whether packets were
1201          * aggregated.
1202          *
1203          * For aggregation, all packets were transmitted at the same rate, the
1204          * first index into rate scale table.
1205          */
1206         if (info->flags & IEEE80211_TX_STAT_AMPDU) {
1207                 ucode_rate = le32_to_cpu(table->rs_table[0]);
1208                 rs_rate_from_ucode_rate(ucode_rate, info->band, &rate);
1209                 rs_collect_tx_data(lq_sta, curr_tbl, rate.index,
1210                                    info->status.ampdu_len,
1211                                    info->status.ampdu_ack_len,
1212                                    reduced_txp);
1213
1214                 /* Update success/fail counts if not searching for new mode */
1215                 if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN) {
1216                         lq_sta->total_success += info->status.ampdu_ack_len;
1217                         lq_sta->total_failed += (info->status.ampdu_len -
1218                                         info->status.ampdu_ack_len);
1219                 }
1220         } else {
1221         /*
1222          * For legacy, update frame history with for each Tx retry.
1223          */
1224                 retries = info->status.rates[0].count - 1;
1225                 /* HW doesn't send more than 15 retries */
1226                 retries = min(retries, 15);
1227
1228                 /* The last transmission may have been successful */
1229                 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
1230                 /* Collect data for each rate used during failed TX attempts */
1231                 for (i = 0; i <= retries; ++i) {
1232                         ucode_rate = le32_to_cpu(table->rs_table[i]);
1233                         rs_rate_from_ucode_rate(ucode_rate, info->band, &rate);
1234                         /*
1235                          * Only collect stats if retried rate is in the same RS
1236                          * table as active/search.
1237                          */
1238                         if (rs_rate_match(&rate, &curr_tbl->rate))
1239                                 tmp_tbl = curr_tbl;
1240                         else if (rs_rate_match(&rate, &other_tbl->rate))
1241                                 tmp_tbl = other_tbl;
1242                         else
1243                                 continue;
1244
1245                         rs_collect_tx_data(lq_sta, tmp_tbl, rate.index, 1,
1246                                            i < retries ? 0 : legacy_success,
1247                                            reduced_txp);
1248                 }
1249
1250                 /* Update success/fail counts if not searching for new mode */
1251                 if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN) {
1252                         lq_sta->total_success += legacy_success;
1253                         lq_sta->total_failed += retries + (1 - legacy_success);
1254                 }
1255         }
1256         /* The last TX rate is cached in lq_sta; it's set in if/else above */
1257         lq_sta->last_rate_n_flags = ucode_rate;
1258         IWL_DEBUG_RATE(mvm, "reduced txpower: %d\n", reduced_txp);
1259 done:
1260         /* See if there's a better rate or modulation mode to try. */
1261         if (sta->supp_rates[info->band])
1262                 rs_rate_scale_perform(mvm, sta, lq_sta, tid);
1263 }
1264
1265 /*
1266  * mac80211 sends us Tx status
1267  */
1268 static void rs_mac80211_tx_status(void *mvm_r,
1269                                   struct ieee80211_supported_band *sband,
1270                                   struct ieee80211_sta *sta, void *priv_sta,
1271                                   struct sk_buff *skb)
1272 {
1273         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1274         struct iwl_op_mode *op_mode = (struct iwl_op_mode *)mvm_r;
1275         struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
1276         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1277
1278         if (!ieee80211_is_data(hdr->frame_control) ||
1279             info->flags & IEEE80211_TX_CTL_NO_ACK)
1280                 return;
1281
1282         iwl_mvm_rs_tx_status(mvm, sta, rs_get_tid(hdr), info);
1283 }
1284
1285 /*
1286  * Begin a period of staying with a selected modulation mode.
1287  * Set "stay_in_tbl" flag to prevent any mode switches.
1288  * Set frame tx success limits according to legacy vs. high-throughput,
1289  * and reset overall (spanning all rates) tx success history statistics.
1290  * These control how long we stay using same modulation mode before
1291  * searching for a new mode.
1292  */
1293 static void rs_set_stay_in_table(struct iwl_mvm *mvm, u8 is_legacy,
1294                                  struct iwl_lq_sta *lq_sta)
1295 {
1296         IWL_DEBUG_RATE(mvm, "Moving to RS_STATE_STAY_IN_COLUMN\n");
1297         lq_sta->rs_state = RS_STATE_STAY_IN_COLUMN;
1298         if (is_legacy) {
1299                 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
1300                 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
1301                 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
1302         } else {
1303                 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
1304                 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
1305                 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
1306         }
1307         lq_sta->table_count = 0;
1308         lq_sta->total_failed = 0;
1309         lq_sta->total_success = 0;
1310         lq_sta->flush_timer = jiffies;
1311         lq_sta->visited_columns = 0;
1312 }
1313
1314 static int rs_get_max_allowed_rate(struct iwl_lq_sta *lq_sta,
1315                                    const struct rs_tx_column *column)
1316 {
1317         switch (column->mode) {
1318         case RS_LEGACY:
1319                 return lq_sta->max_legacy_rate_idx;
1320         case RS_SISO:
1321                 return lq_sta->max_siso_rate_idx;
1322         case RS_MIMO2:
1323                 return lq_sta->max_mimo2_rate_idx;
1324         default:
1325                 WARN_ON_ONCE(1);
1326         }
1327
1328         return lq_sta->max_legacy_rate_idx;
1329 }
1330
1331 static const u16 *rs_get_expected_tpt_table(struct iwl_lq_sta *lq_sta,
1332                                             const struct rs_tx_column *column,
1333                                             u32 bw)
1334 {
1335         /* Used to choose among HT tables */
1336         const u16 (*ht_tbl_pointer)[IWL_RATE_COUNT];
1337
1338         if (WARN_ON_ONCE(column->mode != RS_LEGACY &&
1339                          column->mode != RS_SISO &&
1340                          column->mode != RS_MIMO2))
1341                 return expected_tpt_legacy;
1342
1343         /* Legacy rates have only one table */
1344         if (column->mode == RS_LEGACY)
1345                 return expected_tpt_legacy;
1346
1347         ht_tbl_pointer = expected_tpt_mimo2_20MHz;
1348         /* Choose among many HT tables depending on number of streams
1349          * (SISO/MIMO2), channel width (20/40/80), SGI, and aggregation
1350          * status */
1351         if (column->mode == RS_SISO) {
1352                 switch (bw) {
1353                 case RATE_MCS_CHAN_WIDTH_20:
1354                         ht_tbl_pointer = expected_tpt_siso_20MHz;
1355                         break;
1356                 case RATE_MCS_CHAN_WIDTH_40:
1357                         ht_tbl_pointer = expected_tpt_siso_40MHz;
1358                         break;
1359                 case RATE_MCS_CHAN_WIDTH_80:
1360                         ht_tbl_pointer = expected_tpt_siso_80MHz;
1361                         break;
1362                 default:
1363                         WARN_ON_ONCE(1);
1364                 }
1365         } else if (column->mode == RS_MIMO2) {
1366                 switch (bw) {
1367                 case RATE_MCS_CHAN_WIDTH_20:
1368                         ht_tbl_pointer = expected_tpt_mimo2_20MHz;
1369                         break;
1370                 case RATE_MCS_CHAN_WIDTH_40:
1371                         ht_tbl_pointer = expected_tpt_mimo2_40MHz;
1372                         break;
1373                 case RATE_MCS_CHAN_WIDTH_80:
1374                         ht_tbl_pointer = expected_tpt_mimo2_80MHz;
1375                         break;
1376                 default:
1377                         WARN_ON_ONCE(1);
1378                 }
1379         } else {
1380                 WARN_ON_ONCE(1);
1381         }
1382
1383         if (!column->sgi && !lq_sta->is_agg)            /* Normal */
1384                 return ht_tbl_pointer[0];
1385         else if (column->sgi && !lq_sta->is_agg)        /* SGI */
1386                 return ht_tbl_pointer[1];
1387         else if (!column->sgi && lq_sta->is_agg)        /* AGG */
1388                 return ht_tbl_pointer[2];
1389         else                                            /* AGG+SGI */
1390                 return ht_tbl_pointer[3];
1391 }
1392
1393 static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
1394                                       struct iwl_scale_tbl_info *tbl)
1395 {
1396         struct rs_rate *rate = &tbl->rate;
1397         const struct rs_tx_column *column = &rs_tx_columns[tbl->column];
1398
1399         tbl->expected_tpt = rs_get_expected_tpt_table(lq_sta, column, rate->bw);
1400 }
1401
1402 static s32 rs_get_best_rate(struct iwl_mvm *mvm,
1403                             struct iwl_lq_sta *lq_sta,
1404                             struct iwl_scale_tbl_info *tbl,     /* "search" */
1405                             unsigned long rate_mask, s8 index)
1406 {
1407         struct iwl_scale_tbl_info *active_tbl =
1408             &(lq_sta->lq_info[lq_sta->active_tbl]);
1409         s32 success_ratio = active_tbl->win[index].success_ratio;
1410         u16 expected_current_tpt = active_tbl->expected_tpt[index];
1411         const u16 *tpt_tbl = tbl->expected_tpt;
1412         u16 high_low;
1413         u32 target_tpt;
1414         int rate_idx;
1415
1416         if (success_ratio > RS_SR_NO_DECREASE) {
1417                 target_tpt = 100 * expected_current_tpt;
1418                 IWL_DEBUG_RATE(mvm,
1419                                "SR %d high. Find rate exceeding EXPECTED_CURRENT %d\n",
1420                                success_ratio, target_tpt);
1421         } else {
1422                 target_tpt = lq_sta->last_tpt;
1423                 IWL_DEBUG_RATE(mvm,
1424                                "SR %d not thag good. Find rate exceeding ACTUAL_TPT %d\n",
1425                                success_ratio, target_tpt);
1426         }
1427
1428         rate_idx = find_first_bit(&rate_mask, BITS_PER_LONG);
1429
1430         while (rate_idx != IWL_RATE_INVALID) {
1431                 if (target_tpt < (100 * tpt_tbl[rate_idx]))
1432                         break;
1433
1434                 high_low = rs_get_adjacent_rate(mvm, rate_idx, rate_mask,
1435                                                 tbl->rate.type);
1436
1437                 rate_idx = (high_low >> 8) & 0xff;
1438         }
1439
1440         IWL_DEBUG_RATE(mvm, "Best rate found %d target_tp %d expected_new %d\n",
1441                        rate_idx, target_tpt,
1442                        rate_idx != IWL_RATE_INVALID ?
1443                        100 * tpt_tbl[rate_idx] : IWL_INVALID_VALUE);
1444
1445         return rate_idx;
1446 }
1447
1448 static u32 rs_bw_from_sta_bw(struct ieee80211_sta *sta)
1449 {
1450         if (sta->bandwidth >= IEEE80211_STA_RX_BW_80)
1451                 return RATE_MCS_CHAN_WIDTH_80;
1452         else if (sta->bandwidth >= IEEE80211_STA_RX_BW_40)
1453                 return RATE_MCS_CHAN_WIDTH_40;
1454
1455         return RATE_MCS_CHAN_WIDTH_20;
1456 }
1457
1458 /*
1459  * Check whether we should continue using same modulation mode, or
1460  * begin search for a new mode, based on:
1461  * 1) # tx successes or failures while using this mode
1462  * 2) # times calling this function
1463  * 3) elapsed time in this mode (not used, for now)
1464  */
1465 static void rs_stay_in_table(struct iwl_lq_sta *lq_sta, bool force_search)
1466 {
1467         struct iwl_scale_tbl_info *tbl;
1468         int active_tbl;
1469         int flush_interval_passed = 0;
1470         struct iwl_mvm *mvm;
1471
1472         mvm = lq_sta->pers.drv;
1473         active_tbl = lq_sta->active_tbl;
1474
1475         tbl = &(lq_sta->lq_info[active_tbl]);
1476
1477         /* If we've been disallowing search, see if we should now allow it */
1478         if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN) {
1479                 /* Elapsed time using current modulation mode */
1480                 if (lq_sta->flush_timer)
1481                         flush_interval_passed =
1482                                 time_after(jiffies,
1483                                            (unsigned long)(lq_sta->flush_timer +
1484                                                 RS_STAY_IN_COLUMN_TIMEOUT));
1485
1486                 /*
1487                  * Check if we should allow search for new modulation mode.
1488                  * If many frames have failed or succeeded, or we've used
1489                  * this same modulation for a long time, allow search, and
1490                  * reset history stats that keep track of whether we should
1491                  * allow a new search.  Also (below) reset all bitmaps and
1492                  * stats in active history.
1493                  */
1494                 if (force_search ||
1495                     (lq_sta->total_failed > lq_sta->max_failure_limit) ||
1496                     (lq_sta->total_success > lq_sta->max_success_limit) ||
1497                     ((!lq_sta->search_better_tbl) &&
1498                      (lq_sta->flush_timer) && (flush_interval_passed))) {
1499                         IWL_DEBUG_RATE(mvm,
1500                                        "LQ: stay is expired %d %d %d\n",
1501                                      lq_sta->total_failed,
1502                                      lq_sta->total_success,
1503                                      flush_interval_passed);
1504
1505                         /* Allow search for new mode */
1506                         lq_sta->rs_state = RS_STATE_SEARCH_CYCLE_STARTED;
1507                         IWL_DEBUG_RATE(mvm,
1508                                        "Moving to RS_STATE_SEARCH_CYCLE_STARTED\n");
1509                         lq_sta->total_failed = 0;
1510                         lq_sta->total_success = 0;
1511                         lq_sta->flush_timer = 0;
1512                         /* mark the current column as visited */
1513                         lq_sta->visited_columns = BIT(tbl->column);
1514                 /*
1515                  * Else if we've used this modulation mode enough repetitions
1516                  * (regardless of elapsed time or success/failure), reset
1517                  * history bitmaps and rate-specific stats for all rates in
1518                  * active table.
1519                  */
1520                 } else {
1521                         lq_sta->table_count++;
1522                         if (lq_sta->table_count >=
1523                             lq_sta->table_count_limit) {
1524                                 lq_sta->table_count = 0;
1525
1526                                 IWL_DEBUG_RATE(mvm,
1527                                                "LQ: stay in table clear win\n");
1528                                 rs_rate_scale_clear_tbl_windows(mvm, tbl);
1529                         }
1530                 }
1531
1532                 /* If transitioning to allow "search", reset all history
1533                  * bitmaps and stats in active table (this will become the new
1534                  * "search" table). */
1535                 if (lq_sta->rs_state == RS_STATE_SEARCH_CYCLE_STARTED) {
1536                         rs_rate_scale_clear_tbl_windows(mvm, tbl);
1537                 }
1538         }
1539 }
1540
1541 /*
1542  * setup rate table in uCode
1543  */
1544 static void rs_update_rate_tbl(struct iwl_mvm *mvm,
1545                                struct ieee80211_sta *sta,
1546                                struct iwl_lq_sta *lq_sta,
1547                                struct rs_rate *rate)
1548 {
1549         rs_fill_lq_cmd(mvm, sta, lq_sta, rate);
1550         iwl_mvm_send_lq_cmd(mvm, &lq_sta->lq, false);
1551 }
1552
1553 static enum rs_column rs_get_next_column(struct iwl_mvm *mvm,
1554                                          struct iwl_lq_sta *lq_sta,
1555                                          struct ieee80211_sta *sta,
1556                                          struct iwl_scale_tbl_info *tbl)
1557 {
1558         int i, j, max_rate;
1559         enum rs_column next_col_id;
1560         const struct rs_tx_column *curr_col = &rs_tx_columns[tbl->column];
1561         const struct rs_tx_column *next_col;
1562         allow_column_func_t allow_func;
1563         u8 valid_ants = mvm->fw->valid_tx_ant;
1564         const u16 *expected_tpt_tbl;
1565         u16 tpt, max_expected_tpt;
1566
1567         for (i = 0; i < MAX_NEXT_COLUMNS; i++) {
1568                 next_col_id = curr_col->next_columns[i];
1569
1570                 if (next_col_id == RS_COLUMN_INVALID)
1571                         continue;
1572
1573                 if (lq_sta->visited_columns & BIT(next_col_id)) {
1574                         IWL_DEBUG_RATE(mvm, "Skip already visited column %d\n",
1575                                        next_col_id);
1576                         continue;
1577                 }
1578
1579                 next_col = &rs_tx_columns[next_col_id];
1580
1581                 if (!rs_is_valid_ant(valid_ants, next_col->ant)) {
1582                         IWL_DEBUG_RATE(mvm,
1583                                        "Skip column %d as ANT config isn't supported by chip. valid_ants 0x%x column ant 0x%x\n",
1584                                        next_col_id, valid_ants, next_col->ant);
1585                         continue;
1586                 }
1587
1588                 for (j = 0; j < MAX_COLUMN_CHECKS; j++) {
1589                         allow_func = next_col->checks[j];
1590                         if (allow_func && !allow_func(mvm, sta, tbl))
1591                                 break;
1592                 }
1593
1594                 if (j != MAX_COLUMN_CHECKS) {
1595                         IWL_DEBUG_RATE(mvm,
1596                                        "Skip column %d: not allowed (check %d failed)\n",
1597                                        next_col_id, j);
1598
1599                         continue;
1600                 }
1601
1602                 tpt = lq_sta->last_tpt / 100;
1603                 expected_tpt_tbl = rs_get_expected_tpt_table(lq_sta, next_col,
1604                                                      rs_bw_from_sta_bw(sta));
1605                 if (WARN_ON_ONCE(!expected_tpt_tbl))
1606                         continue;
1607
1608                 max_rate = rs_get_max_allowed_rate(lq_sta, next_col);
1609                 if (WARN_ON_ONCE(max_rate == IWL_RATE_INVALID))
1610                         continue;
1611
1612                 max_expected_tpt = expected_tpt_tbl[max_rate];
1613                 if (tpt >= max_expected_tpt) {
1614                         IWL_DEBUG_RATE(mvm,
1615                                        "Skip column %d: can't beat current TPT. Max expected %d current %d\n",
1616                                        next_col_id, max_expected_tpt, tpt);
1617                         continue;
1618                 }
1619
1620                 IWL_DEBUG_RATE(mvm,
1621                                "Found potential column %d. Max expected %d current %d\n",
1622                                next_col_id, max_expected_tpt, tpt);
1623                 break;
1624         }
1625
1626         if (i == MAX_NEXT_COLUMNS)
1627                 return RS_COLUMN_INVALID;
1628
1629         return next_col_id;
1630 }
1631
1632 static int rs_switch_to_column(struct iwl_mvm *mvm,
1633                                struct iwl_lq_sta *lq_sta,
1634                                struct ieee80211_sta *sta,
1635                                enum rs_column col_id)
1636 {
1637         struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1638         struct iwl_scale_tbl_info *search_tbl =
1639                                 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1640         struct rs_rate *rate = &search_tbl->rate;
1641         const struct rs_tx_column *column = &rs_tx_columns[col_id];
1642         const struct rs_tx_column *curr_column = &rs_tx_columns[tbl->column];
1643         u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1644                   (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
1645         unsigned long rate_mask = 0;
1646         u32 rate_idx = 0;
1647
1648         memcpy(search_tbl, tbl, sz);
1649
1650         rate->sgi = column->sgi;
1651         rate->ant = column->ant;
1652
1653         if (column->mode == RS_LEGACY) {
1654                 if (lq_sta->band == IEEE80211_BAND_5GHZ)
1655                         rate->type = LQ_LEGACY_A;
1656                 else
1657                         rate->type = LQ_LEGACY_G;
1658
1659                 rate->bw = RATE_MCS_CHAN_WIDTH_20;
1660                 rate->ldpc = false;
1661                 rate_mask = lq_sta->active_legacy_rate;
1662         } else if (column->mode == RS_SISO) {
1663                 rate->type = lq_sta->is_vht ? LQ_VHT_SISO : LQ_HT_SISO;
1664                 rate_mask = lq_sta->active_siso_rate;
1665         } else if (column->mode == RS_MIMO2) {
1666                 rate->type = lq_sta->is_vht ? LQ_VHT_MIMO2 : LQ_HT_MIMO2;
1667                 rate_mask = lq_sta->active_mimo2_rate;
1668         } else {
1669                 WARN_ON_ONCE("Bad column mode");
1670         }
1671
1672         if (column->mode != RS_LEGACY) {
1673                 rate->bw = rs_bw_from_sta_bw(sta);
1674                 rate->ldpc = lq_sta->ldpc;
1675         }
1676
1677         search_tbl->column = col_id;
1678         rs_set_expected_tpt_table(lq_sta, search_tbl);
1679
1680         lq_sta->visited_columns |= BIT(col_id);
1681
1682         /* Get the best matching rate if we're changing modes. e.g.
1683          * SISO->MIMO, LEGACY->SISO, MIMO->SISO
1684          */
1685         if (curr_column->mode != column->mode) {
1686                 rate_idx = rs_get_best_rate(mvm, lq_sta, search_tbl,
1687                                             rate_mask, rate->index);
1688
1689                 if ((rate_idx == IWL_RATE_INVALID) ||
1690                     !(BIT(rate_idx) & rate_mask)) {
1691                         IWL_DEBUG_RATE(mvm,
1692                                        "can not switch with index %d"
1693                                        " rate mask %lx\n",
1694                                        rate_idx, rate_mask);
1695
1696                         goto err;
1697                 }
1698
1699                 rate->index = rate_idx;
1700         }
1701
1702         IWL_DEBUG_RATE(mvm, "Switched to column %d: Index %d\n",
1703                        col_id, rate->index);
1704
1705         return 0;
1706
1707 err:
1708         rate->type = LQ_NONE;
1709         return -1;
1710 }
1711
1712 static enum rs_action rs_get_rate_action(struct iwl_mvm *mvm,
1713                                          struct iwl_scale_tbl_info *tbl,
1714                                          s32 sr, int low, int high,
1715                                          int current_tpt,
1716                                          int low_tpt, int high_tpt)
1717 {
1718         enum rs_action action = RS_ACTION_STAY;
1719
1720         if ((sr <= RS_SR_FORCE_DECREASE) || (current_tpt == 0)) {
1721                 IWL_DEBUG_RATE(mvm,
1722                                "Decrease rate because of low SR\n");
1723                 return RS_ACTION_DOWNSCALE;
1724         }
1725
1726         if ((low_tpt == IWL_INVALID_VALUE) &&
1727             (high_tpt == IWL_INVALID_VALUE) &&
1728             (high != IWL_RATE_INVALID)) {
1729                 IWL_DEBUG_RATE(mvm,
1730                                "No data about high/low rates. Increase rate\n");
1731                 return RS_ACTION_UPSCALE;
1732         }
1733
1734         if ((high_tpt == IWL_INVALID_VALUE) &&
1735             (high != IWL_RATE_INVALID) &&
1736             (low_tpt != IWL_INVALID_VALUE) &&
1737             (low_tpt < current_tpt)) {
1738                 IWL_DEBUG_RATE(mvm,
1739                                "No data about high rate and low rate is worse. Increase rate\n");
1740                 return RS_ACTION_UPSCALE;
1741         }
1742
1743         if ((high_tpt != IWL_INVALID_VALUE) &&
1744             (high_tpt > current_tpt)) {
1745                 IWL_DEBUG_RATE(mvm,
1746                                "Higher rate is better. Increate rate\n");
1747                 return RS_ACTION_UPSCALE;
1748         }
1749
1750         if ((low_tpt != IWL_INVALID_VALUE) &&
1751             (high_tpt != IWL_INVALID_VALUE) &&
1752             (low_tpt < current_tpt) &&
1753             (high_tpt < current_tpt)) {
1754                 IWL_DEBUG_RATE(mvm,
1755                                "Both high and low are worse. Maintain rate\n");
1756                 return RS_ACTION_STAY;
1757         }
1758
1759         if ((low_tpt != IWL_INVALID_VALUE) &&
1760             (low_tpt > current_tpt)) {
1761                 IWL_DEBUG_RATE(mvm,
1762                                "Lower rate is better\n");
1763                 action = RS_ACTION_DOWNSCALE;
1764                 goto out;
1765         }
1766
1767         if ((low_tpt == IWL_INVALID_VALUE) &&
1768             (low != IWL_RATE_INVALID)) {
1769                 IWL_DEBUG_RATE(mvm,
1770                                "No data about lower rate\n");
1771                 action = RS_ACTION_DOWNSCALE;
1772                 goto out;
1773         }
1774
1775         IWL_DEBUG_RATE(mvm, "Maintain rate\n");
1776
1777 out:
1778         if ((action == RS_ACTION_DOWNSCALE) && (low != IWL_RATE_INVALID)) {
1779                 if (sr >= RS_SR_NO_DECREASE) {
1780                         IWL_DEBUG_RATE(mvm,
1781                                        "SR is above NO DECREASE. Avoid downscale\n");
1782                         action = RS_ACTION_STAY;
1783                 } else if (current_tpt > (100 * tbl->expected_tpt[low])) {
1784                         IWL_DEBUG_RATE(mvm,
1785                                        "Current TPT is higher than max expected in low rate. Avoid downscale\n");
1786                         action = RS_ACTION_STAY;
1787                 } else {
1788                         IWL_DEBUG_RATE(mvm, "Decrease rate\n");
1789                 }
1790         }
1791
1792         return action;
1793 }
1794
1795 static bool rs_stbc_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
1796                           struct iwl_lq_sta *lq_sta)
1797 {
1798         struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
1799         struct ieee80211_vif *vif = mvmsta->vif;
1800         bool sta_ps_disabled = (vif->type == NL80211_IFTYPE_STATION &&
1801                                 !vif->bss_conf.ps);
1802
1803         /* Our chip supports Tx STBC and the peer is an HT/VHT STA which
1804          * supports STBC of at least 1*SS
1805          */
1806         if (!lq_sta->stbc)
1807                 return false;
1808
1809         if (!mvm->ps_disabled && !sta_ps_disabled)
1810                 return false;
1811
1812         if (!iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta))
1813                 return false;
1814
1815         return true;
1816 }
1817
1818 static void rs_get_adjacent_txp(struct iwl_mvm *mvm, int index,
1819                                 int *weaker, int *stronger)
1820 {
1821         *weaker = index + TPC_TX_POWER_STEP;
1822         if (*weaker > TPC_MAX_REDUCTION)
1823                 *weaker = TPC_INVALID;
1824
1825         *stronger = index - TPC_TX_POWER_STEP;
1826         if (*stronger < 0)
1827                 *stronger = TPC_INVALID;
1828 }
1829
1830 static bool rs_tpc_allowed(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1831                            struct rs_rate *rate, enum ieee80211_band band)
1832 {
1833         int index = rate->index;
1834         bool cam = (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_CAM);
1835         bool sta_ps_disabled = (vif->type == NL80211_IFTYPE_STATION &&
1836                                 !vif->bss_conf.ps);
1837
1838         IWL_DEBUG_RATE(mvm, "cam: %d sta_ps_disabled %d\n",
1839                        cam, sta_ps_disabled);
1840         /*
1841          * allow tpc only if power management is enabled, or bt coex
1842          * activity grade allows it and we are on 2.4Ghz.
1843          */
1844         if ((cam || sta_ps_disabled) &&
1845             !iwl_mvm_bt_coex_is_tpc_allowed(mvm, band))
1846                 return false;
1847
1848         IWL_DEBUG_RATE(mvm, "check rate, table type: %d\n", rate->type);
1849         if (is_legacy(rate))
1850                 return index == IWL_RATE_54M_INDEX;
1851         if (is_ht(rate))
1852                 return index == IWL_RATE_MCS_7_INDEX;
1853         if (is_vht(rate))
1854                 return index == IWL_RATE_MCS_7_INDEX ||
1855                        index == IWL_RATE_MCS_8_INDEX ||
1856                        index == IWL_RATE_MCS_9_INDEX;
1857
1858         WARN_ON_ONCE(1);
1859         return false;
1860 }
1861
1862 enum tpc_action {
1863         TPC_ACTION_STAY,
1864         TPC_ACTION_DECREASE,
1865         TPC_ACTION_INCREASE,
1866         TPC_ACTION_NO_RESTIRCTION,
1867 };
1868
1869 static enum tpc_action rs_get_tpc_action(struct iwl_mvm *mvm,
1870                                          s32 sr, int weak, int strong,
1871                                          int current_tpt,
1872                                          int weak_tpt, int strong_tpt)
1873 {
1874         /* stay until we have valid tpt */
1875         if (current_tpt == IWL_INVALID_VALUE) {
1876                 IWL_DEBUG_RATE(mvm, "no current tpt. stay.\n");
1877                 return TPC_ACTION_STAY;
1878         }
1879
1880         /* Too many failures, increase txp */
1881         if (sr <= TPC_SR_FORCE_INCREASE || current_tpt == 0) {
1882                 IWL_DEBUG_RATE(mvm, "increase txp because of weak SR\n");
1883                 return TPC_ACTION_NO_RESTIRCTION;
1884         }
1885
1886         /* try decreasing first if applicable */
1887         if (weak != TPC_INVALID) {
1888                 if (weak_tpt == IWL_INVALID_VALUE &&
1889                     (strong_tpt == IWL_INVALID_VALUE ||
1890                      current_tpt >= strong_tpt)) {
1891                         IWL_DEBUG_RATE(mvm,
1892                                        "no weak txp measurement. decrease txp\n");
1893                         return TPC_ACTION_DECREASE;
1894                 }
1895
1896                 if (weak_tpt > current_tpt) {
1897                         IWL_DEBUG_RATE(mvm,
1898                                        "lower txp has better tpt. decrease txp\n");
1899                         return TPC_ACTION_DECREASE;
1900                 }
1901         }
1902
1903         /* next, increase if needed */
1904         if (sr < TPC_SR_NO_INCREASE && strong != TPC_INVALID) {
1905                 if (weak_tpt == IWL_INVALID_VALUE &&
1906                     strong_tpt != IWL_INVALID_VALUE &&
1907                     current_tpt < strong_tpt) {
1908                         IWL_DEBUG_RATE(mvm,
1909                                        "higher txp has better tpt. increase txp\n");
1910                         return TPC_ACTION_INCREASE;
1911                 }
1912
1913                 if (weak_tpt < current_tpt &&
1914                     (strong_tpt == IWL_INVALID_VALUE ||
1915                      strong_tpt > current_tpt)) {
1916                         IWL_DEBUG_RATE(mvm,
1917                                        "lower txp has worse tpt. increase txp\n");
1918                         return TPC_ACTION_INCREASE;
1919                 }
1920         }
1921
1922         IWL_DEBUG_RATE(mvm, "no need to increase or decrease txp - stay\n");
1923         return TPC_ACTION_STAY;
1924 }
1925
1926 static bool rs_tpc_perform(struct iwl_mvm *mvm,
1927                            struct ieee80211_sta *sta,
1928                            struct iwl_lq_sta *lq_sta,
1929                            struct iwl_scale_tbl_info *tbl)
1930 {
1931         struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv;
1932         struct ieee80211_vif *vif = mvm_sta->vif;
1933         struct ieee80211_chanctx_conf *chanctx_conf;
1934         enum ieee80211_band band;
1935         struct iwl_rate_scale_data *window;
1936         struct rs_rate *rate = &tbl->rate;
1937         enum tpc_action action;
1938         s32 sr;
1939         u8 cur = lq_sta->lq.reduced_tpc;
1940         int current_tpt;
1941         int weak, strong;
1942         int weak_tpt = IWL_INVALID_VALUE, strong_tpt = IWL_INVALID_VALUE;
1943
1944 #ifdef CONFIG_MAC80211_DEBUGFS
1945         if (lq_sta->pers.dbg_fixed_txp_reduction <= TPC_MAX_REDUCTION) {
1946                 IWL_DEBUG_RATE(mvm, "fixed tpc: %d\n",
1947                                lq_sta->pers.dbg_fixed_txp_reduction);
1948                 lq_sta->lq.reduced_tpc = lq_sta->pers.dbg_fixed_txp_reduction;
1949                 return cur != lq_sta->pers.dbg_fixed_txp_reduction;
1950         }
1951 #endif
1952
1953         rcu_read_lock();
1954         chanctx_conf = rcu_dereference(vif->chanctx_conf);
1955         if (WARN_ON(!chanctx_conf))
1956                 band = IEEE80211_NUM_BANDS;
1957         else
1958                 band = chanctx_conf->def.chan->band;
1959         rcu_read_unlock();
1960
1961         if (!rs_tpc_allowed(mvm, vif, rate, band)) {
1962                 IWL_DEBUG_RATE(mvm,
1963                                "tpc is not allowed. remove txp restrictions\n");
1964                 lq_sta->lq.reduced_tpc = TPC_NO_REDUCTION;
1965                 return cur != TPC_NO_REDUCTION;
1966         }
1967
1968         rs_get_adjacent_txp(mvm, cur, &weak, &strong);
1969
1970         /* Collect measured throughputs for current and adjacent rates */
1971         window = tbl->tpc_win;
1972         sr = window[cur].success_ratio;
1973         current_tpt = window[cur].average_tpt;
1974         if (weak != TPC_INVALID)
1975                 weak_tpt = window[weak].average_tpt;
1976         if (strong != TPC_INVALID)
1977                 strong_tpt = window[strong].average_tpt;
1978
1979         IWL_DEBUG_RATE(mvm,
1980                        "(TPC: %d): cur_tpt %d SR %d weak %d strong %d weak_tpt %d strong_tpt %d\n",
1981                        cur, current_tpt, sr, weak, strong,
1982                        weak_tpt, strong_tpt);
1983
1984         action = rs_get_tpc_action(mvm, sr, weak, strong,
1985                                    current_tpt, weak_tpt, strong_tpt);
1986
1987         /* override actions if we are on the edge */
1988         if (weak == TPC_INVALID && action == TPC_ACTION_DECREASE) {
1989                 IWL_DEBUG_RATE(mvm, "already in lowest txp, stay\n");
1990                 action = TPC_ACTION_STAY;
1991         } else if (strong == TPC_INVALID &&
1992                    (action == TPC_ACTION_INCREASE ||
1993                     action == TPC_ACTION_NO_RESTIRCTION)) {
1994                 IWL_DEBUG_RATE(mvm, "already in highest txp, stay\n");
1995                 action = TPC_ACTION_STAY;
1996         }
1997
1998         switch (action) {
1999         case TPC_ACTION_DECREASE:
2000                 lq_sta->lq.reduced_tpc = weak;
2001                 return true;
2002         case TPC_ACTION_INCREASE:
2003                 lq_sta->lq.reduced_tpc = strong;
2004                 return true;
2005         case TPC_ACTION_NO_RESTIRCTION:
2006                 lq_sta->lq.reduced_tpc = TPC_NO_REDUCTION;
2007                 return true;
2008         case TPC_ACTION_STAY:
2009                 /* do nothing */
2010                 break;
2011         }
2012         return false;
2013 }
2014
2015 /*
2016  * Do rate scaling and search for new modulation mode.
2017  */
2018 static void rs_rate_scale_perform(struct iwl_mvm *mvm,
2019                                   struct ieee80211_sta *sta,
2020                                   struct iwl_lq_sta *lq_sta,
2021                                   int tid)
2022 {
2023         int low = IWL_RATE_INVALID;
2024         int high = IWL_RATE_INVALID;
2025         int index;
2026         struct iwl_rate_scale_data *window = NULL;
2027         int current_tpt = IWL_INVALID_VALUE;
2028         int low_tpt = IWL_INVALID_VALUE;
2029         int high_tpt = IWL_INVALID_VALUE;
2030         u32 fail_count;
2031         enum rs_action scale_action = RS_ACTION_STAY;
2032         u16 rate_mask;
2033         u8 update_lq = 0;
2034         struct iwl_scale_tbl_info *tbl, *tbl1;
2035         u8 active_tbl = 0;
2036         u8 done_search = 0;
2037         u16 high_low;
2038         s32 sr;
2039         u8 prev_agg = lq_sta->is_agg;
2040         struct iwl_mvm_sta *sta_priv = (void *)sta->drv_priv;
2041         struct iwl_mvm_tid_data *tid_data;
2042         struct rs_rate *rate;
2043
2044         lq_sta->is_agg = !!sta_priv->agg_tids;
2045
2046         /*
2047          * Select rate-scale / modulation-mode table to work with in
2048          * the rest of this function:  "search" if searching for better
2049          * modulation mode, or "active" if doing rate scaling within a mode.
2050          */
2051         if (!lq_sta->search_better_tbl)
2052                 active_tbl = lq_sta->active_tbl;
2053         else
2054                 active_tbl = 1 - lq_sta->active_tbl;
2055
2056         tbl = &(lq_sta->lq_info[active_tbl]);
2057         rate = &tbl->rate;
2058
2059         if (prev_agg != lq_sta->is_agg) {
2060                 IWL_DEBUG_RATE(mvm,
2061                                "Aggregation changed: prev %d current %d. Update expected TPT table\n",
2062                                prev_agg, lq_sta->is_agg);
2063                 rs_set_expected_tpt_table(lq_sta, tbl);
2064                 rs_rate_scale_clear_tbl_windows(mvm, tbl);
2065         }
2066
2067         /* current tx rate */
2068         index = lq_sta->last_txrate_idx;
2069
2070         /* rates available for this association, and for modulation mode */
2071         rate_mask = rs_get_supported_rates(lq_sta, rate);
2072
2073         if (!(BIT(index) & rate_mask)) {
2074                 IWL_ERR(mvm, "Current Rate is not valid\n");
2075                 if (lq_sta->search_better_tbl) {
2076                         /* revert to active table if search table is not valid*/
2077                         rate->type = LQ_NONE;
2078                         lq_sta->search_better_tbl = 0;
2079                         tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
2080                         rs_update_rate_tbl(mvm, sta, lq_sta, &tbl->rate);
2081                 }
2082                 return;
2083         }
2084
2085         /* Get expected throughput table and history window for current rate */
2086         if (!tbl->expected_tpt) {
2087                 IWL_ERR(mvm, "tbl->expected_tpt is NULL\n");
2088                 return;
2089         }
2090
2091         /* TODO: handle rate_idx_mask and rate_idx_mcs_mask */
2092         window = &(tbl->win[index]);
2093
2094         /*
2095          * If there is not enough history to calculate actual average
2096          * throughput, keep analyzing results of more tx frames, without
2097          * changing rate or mode (bypass most of the rest of this function).
2098          * Set up new rate table in uCode only if old rate is not supported
2099          * in current association (use new rate found above).
2100          */
2101         fail_count = window->counter - window->success_counter;
2102         if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
2103             (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
2104                 IWL_DEBUG_RATE(mvm,
2105                                "(%s: %d): Test Window: succ %d total %d\n",
2106                                rs_pretty_lq_type(rate->type),
2107                                index, window->success_counter, window->counter);
2108
2109                 /* Can't calculate this yet; not enough history */
2110                 window->average_tpt = IWL_INVALID_VALUE;
2111
2112                 /* Should we stay with this modulation mode,
2113                  * or search for a new one? */
2114                 rs_stay_in_table(lq_sta, false);
2115
2116                 goto out;
2117         }
2118         /* Else we have enough samples; calculate estimate of
2119          * actual average throughput */
2120         if (window->average_tpt != ((window->success_ratio *
2121                         tbl->expected_tpt[index] + 64) / 128)) {
2122                 window->average_tpt = ((window->success_ratio *
2123                                         tbl->expected_tpt[index] + 64) / 128);
2124         }
2125
2126         /* If we are searching for better modulation mode, check success. */
2127         if (lq_sta->search_better_tbl) {
2128                 /* If good success, continue using the "search" mode;
2129                  * no need to send new link quality command, since we're
2130                  * continuing to use the setup that we've been trying. */
2131                 if (window->average_tpt > lq_sta->last_tpt) {
2132                         IWL_DEBUG_RATE(mvm,
2133                                        "SWITCHING TO NEW TABLE SR: %d "
2134                                        "cur-tpt %d old-tpt %d\n",
2135                                        window->success_ratio,
2136                                        window->average_tpt,
2137                                        lq_sta->last_tpt);
2138
2139                         /* Swap tables; "search" becomes "active" */
2140                         lq_sta->active_tbl = active_tbl;
2141                         current_tpt = window->average_tpt;
2142                 /* Else poor success; go back to mode in "active" table */
2143                 } else {
2144                         IWL_DEBUG_RATE(mvm,
2145                                        "GOING BACK TO THE OLD TABLE: SR %d "
2146                                        "cur-tpt %d old-tpt %d\n",
2147                                        window->success_ratio,
2148                                        window->average_tpt,
2149                                        lq_sta->last_tpt);
2150
2151                         /* Nullify "search" table */
2152                         rate->type = LQ_NONE;
2153
2154                         /* Revert to "active" table */
2155                         active_tbl = lq_sta->active_tbl;
2156                         tbl = &(lq_sta->lq_info[active_tbl]);
2157
2158                         /* Revert to "active" rate and throughput info */
2159                         index = tbl->rate.index;
2160                         current_tpt = lq_sta->last_tpt;
2161
2162                         /* Need to set up a new rate table in uCode */
2163                         update_lq = 1;
2164                 }
2165
2166                 /* Either way, we've made a decision; modulation mode
2167                  * search is done, allow rate adjustment next time. */
2168                 lq_sta->search_better_tbl = 0;
2169                 done_search = 1;        /* Don't switch modes below! */
2170                 goto lq_update;
2171         }
2172
2173         /* (Else) not in search of better modulation mode, try for better
2174          * starting rate, while staying in this mode. */
2175         high_low = rs_get_adjacent_rate(mvm, index, rate_mask, rate->type);
2176         low = high_low & 0xff;
2177         high = (high_low >> 8) & 0xff;
2178
2179         /* TODO: handle rate_idx_mask and rate_idx_mcs_mask */
2180
2181         sr = window->success_ratio;
2182
2183         /* Collect measured throughputs for current and adjacent rates */
2184         current_tpt = window->average_tpt;
2185         if (low != IWL_RATE_INVALID)
2186                 low_tpt = tbl->win[low].average_tpt;
2187         if (high != IWL_RATE_INVALID)
2188                 high_tpt = tbl->win[high].average_tpt;
2189
2190         IWL_DEBUG_RATE(mvm,
2191                        "(%s: %d): cur_tpt %d SR %d low %d high %d low_tpt %d high_tpt %d\n",
2192                        rs_pretty_lq_type(rate->type), index, current_tpt, sr,
2193                        low, high, low_tpt, high_tpt);
2194
2195         scale_action = rs_get_rate_action(mvm, tbl, sr, low, high,
2196                                           current_tpt, low_tpt, high_tpt);
2197
2198         /* Force a search in case BT doesn't like us being in MIMO */
2199         if (is_mimo(rate) &&
2200             !iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta)) {
2201                 IWL_DEBUG_RATE(mvm,
2202                                "BT Coex forbids MIMO. Search for new config\n");
2203                 rs_stay_in_table(lq_sta, true);
2204                 goto lq_update;
2205         }
2206
2207         switch (scale_action) {
2208         case RS_ACTION_DOWNSCALE:
2209                 /* Decrease starting rate, update uCode's rate table */
2210                 if (low != IWL_RATE_INVALID) {
2211                         update_lq = 1;
2212                         index = low;
2213                 } else {
2214                         IWL_DEBUG_RATE(mvm,
2215                                        "At the bottom rate. Can't decrease\n");
2216                 }
2217
2218                 break;
2219         case RS_ACTION_UPSCALE:
2220                 /* Increase starting rate, update uCode's rate table */
2221                 if (high != IWL_RATE_INVALID) {
2222                         update_lq = 1;
2223                         index = high;
2224                 } else {
2225                         IWL_DEBUG_RATE(mvm,
2226                                        "At the top rate. Can't increase\n");
2227                 }
2228
2229                 break;
2230         case RS_ACTION_STAY:
2231                 /* No change */
2232                 if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN)
2233                         update_lq = rs_tpc_perform(mvm, sta, lq_sta, tbl);
2234                 break;
2235         default:
2236                 break;
2237         }
2238
2239 lq_update:
2240         /* Replace uCode's rate table for the destination station. */
2241         if (update_lq) {
2242                 tbl->rate.index = index;
2243                 rs_update_rate_tbl(mvm, sta, lq_sta, &tbl->rate);
2244         }
2245
2246         rs_stay_in_table(lq_sta, false);
2247
2248         /*
2249          * Search for new modulation mode if we're:
2250          * 1)  Not changing rates right now
2251          * 2)  Not just finishing up a search
2252          * 3)  Allowing a new search
2253          */
2254         if (!update_lq && !done_search &&
2255             lq_sta->rs_state == RS_STATE_SEARCH_CYCLE_STARTED
2256             && window->counter) {
2257                 enum rs_column next_column;
2258
2259                 /* Save current throughput to compare with "search" throughput*/
2260                 lq_sta->last_tpt = current_tpt;
2261
2262                 IWL_DEBUG_RATE(mvm,
2263                                "Start Search: update_lq %d done_search %d rs_state %d win->counter %d\n",
2264                                update_lq, done_search, lq_sta->rs_state,
2265                                window->counter);
2266
2267                 next_column = rs_get_next_column(mvm, lq_sta, sta, tbl);
2268                 if (next_column != RS_COLUMN_INVALID) {
2269                         int ret = rs_switch_to_column(mvm, lq_sta, sta,
2270                                                       next_column);
2271                         if (!ret)
2272                                 lq_sta->search_better_tbl = 1;
2273                 } else {
2274                         IWL_DEBUG_RATE(mvm,
2275                                        "No more columns to explore in search cycle. Go to RS_STATE_SEARCH_CYCLE_ENDED\n");
2276                         lq_sta->rs_state = RS_STATE_SEARCH_CYCLE_ENDED;
2277                 }
2278
2279                 /* If new "search" mode was selected, set up in uCode table */
2280                 if (lq_sta->search_better_tbl) {
2281                         /* Access the "search" table, clear its history. */
2282                         tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
2283                         rs_rate_scale_clear_tbl_windows(mvm, tbl);
2284
2285                         /* Use new "search" start rate */
2286                         index = tbl->rate.index;
2287
2288                         rs_dump_rate(mvm, &tbl->rate,
2289                                      "Switch to SEARCH TABLE:");
2290                         rs_fill_lq_cmd(mvm, sta, lq_sta, &tbl->rate);
2291                         iwl_mvm_send_lq_cmd(mvm, &lq_sta->lq, false);
2292                 } else {
2293                         done_search = 1;
2294                 }
2295         }
2296
2297         if (done_search && lq_sta->rs_state == RS_STATE_SEARCH_CYCLE_ENDED) {
2298                 /* If the "active" (non-search) mode was legacy,
2299                  * and we've tried switching antennas,
2300                  * but we haven't been able to try HT modes (not available),
2301                  * stay with best antenna legacy modulation for a while
2302                  * before next round of mode comparisons. */
2303                 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
2304                 if (is_legacy(&tbl1->rate)) {
2305                         IWL_DEBUG_RATE(mvm, "LQ: STAY in legacy table\n");
2306
2307                         if (tid != IWL_MAX_TID_COUNT) {
2308                                 tid_data = &sta_priv->tid_data[tid];
2309                                 if (tid_data->state != IWL_AGG_OFF) {
2310                                         IWL_DEBUG_RATE(mvm,
2311                                                        "Stop aggregation on tid %d\n",
2312                                                        tid);
2313                                         ieee80211_stop_tx_ba_session(sta, tid);
2314                                 }
2315                         }
2316                         rs_set_stay_in_table(mvm, 1, lq_sta);
2317                 } else {
2318                 /* If we're in an HT mode, and all 3 mode switch actions
2319                  * have been tried and compared, stay in this best modulation
2320                  * mode for a while before next round of mode comparisons. */
2321                         if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2322                             (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2323                             (tid != IWL_MAX_TID_COUNT)) {
2324                                 tid_data = &sta_priv->tid_data[tid];
2325                                 if (tid_data->state == IWL_AGG_OFF) {
2326                                         IWL_DEBUG_RATE(mvm,
2327                                                        "try to aggregate tid %d\n",
2328                                                        tid);
2329                                         rs_tl_turn_on_agg(mvm, tid,
2330                                                           lq_sta, sta);
2331                                 }
2332                         }
2333                         rs_set_stay_in_table(mvm, 0, lq_sta);
2334                 }
2335         }
2336
2337 out:
2338         lq_sta->last_txrate_idx = index;
2339 }
2340
2341 struct rs_init_rate_info {
2342         s8 rssi;
2343         u8 rate_idx;
2344 };
2345
2346 static const struct rs_init_rate_info rs_init_rates_24ghz[] = {
2347         { -60, IWL_RATE_54M_INDEX },
2348         { -64, IWL_RATE_48M_INDEX },
2349         { -68, IWL_RATE_36M_INDEX },
2350         { -80, IWL_RATE_24M_INDEX },
2351         { -84, IWL_RATE_18M_INDEX },
2352         { -85, IWL_RATE_12M_INDEX },
2353         { -86, IWL_RATE_11M_INDEX },
2354         { -88, IWL_RATE_5M_INDEX  },
2355         { -90, IWL_RATE_2M_INDEX  },
2356         { S8_MIN, IWL_RATE_1M_INDEX },
2357 };
2358
2359 static const struct rs_init_rate_info rs_init_rates_5ghz[] = {
2360         { -60, IWL_RATE_54M_INDEX },
2361         { -64, IWL_RATE_48M_INDEX },
2362         { -72, IWL_RATE_36M_INDEX },
2363         { -80, IWL_RATE_24M_INDEX },
2364         { -84, IWL_RATE_18M_INDEX },
2365         { -85, IWL_RATE_12M_INDEX },
2366         { -87, IWL_RATE_9M_INDEX  },
2367         { S8_MIN, IWL_RATE_6M_INDEX },
2368 };
2369
2370 /* Choose an initial legacy rate and antenna to use based on the RSSI
2371  * of last Rx
2372  */
2373 static void rs_get_initial_rate(struct iwl_mvm *mvm,
2374                                 struct iwl_lq_sta *lq_sta,
2375                                 enum ieee80211_band band,
2376                                 struct rs_rate *rate)
2377 {
2378         int i, nentries;
2379         s8 best_rssi = S8_MIN;
2380         u8 best_ant = ANT_NONE;
2381         u8 valid_tx_ant = mvm->fw->valid_tx_ant;
2382         const struct rs_init_rate_info *initial_rates;
2383
2384         for (i = 0; i < ARRAY_SIZE(lq_sta->pers.chain_signal); i++) {
2385                 if (!(lq_sta->pers.chains & BIT(i)))
2386                         continue;
2387
2388                 if (lq_sta->pers.chain_signal[i] > best_rssi) {
2389                         best_rssi = lq_sta->pers.chain_signal[i];
2390                         best_ant = BIT(i);
2391                 }
2392         }
2393
2394         IWL_DEBUG_RATE(mvm, "Best ANT: %s Best RSSI: %d\n",
2395                        rs_pretty_ant(best_ant), best_rssi);
2396
2397         if (best_ant != ANT_A && best_ant != ANT_B)
2398                 rate->ant = first_antenna(valid_tx_ant);
2399         else
2400                 rate->ant = best_ant;
2401
2402         rate->sgi = false;
2403         rate->ldpc = false;
2404         rate->bw = RATE_MCS_CHAN_WIDTH_20;
2405
2406         rate->index = find_first_bit(&lq_sta->active_legacy_rate,
2407                                      BITS_PER_LONG);
2408
2409         if (band == IEEE80211_BAND_5GHZ) {
2410                 rate->type = LQ_LEGACY_A;
2411                 initial_rates = rs_init_rates_5ghz;
2412                 nentries = ARRAY_SIZE(rs_init_rates_5ghz);
2413         } else {
2414                 rate->type = LQ_LEGACY_G;
2415                 initial_rates = rs_init_rates_24ghz;
2416                 nentries = ARRAY_SIZE(rs_init_rates_24ghz);
2417         }
2418
2419         if (IWL_MVM_RS_RSSI_BASED_INIT_RATE) {
2420                 for (i = 0; i < nentries; i++) {
2421                         int rate_idx = initial_rates[i].rate_idx;
2422                         if ((best_rssi >= initial_rates[i].rssi) &&
2423                             (BIT(rate_idx) & lq_sta->active_legacy_rate)) {
2424                                 rate->index = rate_idx;
2425                                 break;
2426                         }
2427                 }
2428         }
2429
2430         IWL_DEBUG_RATE(mvm, "rate_idx %d ANT %s\n", rate->index,
2431                        rs_pretty_ant(rate->ant));
2432 }
2433
2434 /* Save info about RSSI of last Rx */
2435 void rs_update_last_rssi(struct iwl_mvm *mvm,
2436                          struct iwl_lq_sta *lq_sta,
2437                          struct ieee80211_rx_status *rx_status)
2438 {
2439         lq_sta->pers.chains = rx_status->chains;
2440         lq_sta->pers.chain_signal[0] = rx_status->chain_signal[0];
2441         lq_sta->pers.chain_signal[1] = rx_status->chain_signal[1];
2442         lq_sta->pers.chain_signal[2] = rx_status->chain_signal[2];
2443 }
2444
2445 /**
2446  * rs_initialize_lq - Initialize a station's hardware rate table
2447  *
2448  * The uCode's station table contains a table of fallback rates
2449  * for automatic fallback during transmission.
2450  *
2451  * NOTE: This sets up a default set of values.  These will be replaced later
2452  *       if the driver's iwl-agn-rs rate scaling algorithm is used, instead of
2453  *       rc80211_simple.
2454  *
2455  * NOTE: Run REPLY_ADD_STA command to set up station table entry, before
2456  *       calling this function (which runs REPLY_TX_LINK_QUALITY_CMD,
2457  *       which requires station table entry to exist).
2458  */
2459 static void rs_initialize_lq(struct iwl_mvm *mvm,
2460                              struct ieee80211_sta *sta,
2461                              struct iwl_lq_sta *lq_sta,
2462                              enum ieee80211_band band,
2463                              bool init)
2464 {
2465         struct iwl_scale_tbl_info *tbl;
2466         struct rs_rate *rate;
2467         u8 active_tbl = 0;
2468
2469         if (!sta || !lq_sta)
2470                 return;
2471
2472         if (!lq_sta->search_better_tbl)
2473                 active_tbl = lq_sta->active_tbl;
2474         else
2475                 active_tbl = 1 - lq_sta->active_tbl;
2476
2477         tbl = &(lq_sta->lq_info[active_tbl]);
2478         rate = &tbl->rate;
2479
2480         rs_get_initial_rate(mvm, lq_sta, band, rate);
2481         lq_sta->last_txrate_idx = rate->index;
2482
2483         WARN_ON_ONCE(rate->ant != ANT_A && rate->ant != ANT_B);
2484         if (rate->ant == ANT_A)
2485                 tbl->column = RS_COLUMN_LEGACY_ANT_A;
2486         else
2487                 tbl->column = RS_COLUMN_LEGACY_ANT_B;
2488
2489         rs_set_expected_tpt_table(lq_sta, tbl);
2490         rs_fill_lq_cmd(mvm, sta, lq_sta, rate);
2491         /* TODO restore station should remember the lq cmd */
2492         iwl_mvm_send_lq_cmd(mvm, &lq_sta->lq, init);
2493 }
2494
2495 static void rs_get_rate(void *mvm_r, struct ieee80211_sta *sta, void *mvm_sta,
2496                         struct ieee80211_tx_rate_control *txrc)
2497 {
2498         struct sk_buff *skb = txrc->skb;
2499         struct iwl_op_mode *op_mode __maybe_unused =
2500                         (struct iwl_op_mode *)mvm_r;
2501         struct iwl_mvm *mvm __maybe_unused = IWL_OP_MODE_GET_MVM(op_mode);
2502         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2503         struct iwl_lq_sta *lq_sta = mvm_sta;
2504
2505         /* TODO: handle rate_idx_mask and rate_idx_mcs_mask */
2506
2507         /* Treat uninitialized rate scaling data same as non-existing. */
2508         if (lq_sta && !lq_sta->pers.drv) {
2509                 IWL_DEBUG_RATE(mvm, "Rate scaling not initialized yet.\n");
2510                 mvm_sta = NULL;
2511         }
2512
2513         /* Send management frames and NO_ACK data using lowest rate. */
2514         if (rate_control_send_low(sta, mvm_sta, txrc))
2515                 return;
2516
2517         iwl_mvm_hwrate_to_tx_rate(lq_sta->last_rate_n_flags,
2518                                   info->band, &info->control.rates[0]);
2519
2520         info->control.rates[0].count = 1;
2521 }
2522
2523 static void *rs_alloc_sta(void *mvm_rate, struct ieee80211_sta *sta,
2524                           gfp_t gfp)
2525 {
2526         struct iwl_mvm_sta *sta_priv = (struct iwl_mvm_sta *)sta->drv_priv;
2527         struct iwl_op_mode *op_mode = (struct iwl_op_mode *)mvm_rate;
2528         struct iwl_mvm *mvm  = IWL_OP_MODE_GET_MVM(op_mode);
2529         struct iwl_lq_sta *lq_sta = &sta_priv->lq_sta;
2530
2531         IWL_DEBUG_RATE(mvm, "create station rate scale window\n");
2532
2533         lq_sta->pers.drv = mvm;
2534 #ifdef CONFIG_MAC80211_DEBUGFS
2535         lq_sta->pers.dbg_fixed_rate = 0;
2536         lq_sta->pers.dbg_fixed_txp_reduction = TPC_INVALID;
2537 #endif
2538         lq_sta->pers.chains = 0;
2539         memset(lq_sta->pers.chain_signal, 0, sizeof(lq_sta->pers.chain_signal));
2540
2541         return &sta_priv->lq_sta;
2542 }
2543
2544 static int rs_vht_highest_rx_mcs_index(struct ieee80211_sta_vht_cap *vht_cap,
2545                                        int nss)
2546 {
2547         u16 rx_mcs = le16_to_cpu(vht_cap->vht_mcs.rx_mcs_map) &
2548                 (0x3 << (2 * (nss - 1)));
2549         rx_mcs >>= (2 * (nss - 1));
2550
2551         if (rx_mcs == IEEE80211_VHT_MCS_SUPPORT_0_7)
2552                 return IWL_RATE_MCS_7_INDEX;
2553         else if (rx_mcs == IEEE80211_VHT_MCS_SUPPORT_0_8)
2554                 return IWL_RATE_MCS_8_INDEX;
2555         else if (rx_mcs == IEEE80211_VHT_MCS_SUPPORT_0_9)
2556                 return IWL_RATE_MCS_9_INDEX;
2557
2558         WARN_ON_ONCE(rx_mcs != IEEE80211_VHT_MCS_NOT_SUPPORTED);
2559         return -1;
2560 }
2561
2562 static void rs_vht_set_enabled_rates(struct ieee80211_sta *sta,
2563                                      struct ieee80211_sta_vht_cap *vht_cap,
2564                                      struct iwl_lq_sta *lq_sta)
2565 {
2566         int i;
2567         int highest_mcs = rs_vht_highest_rx_mcs_index(vht_cap, 1);
2568
2569         if (highest_mcs >= IWL_RATE_MCS_0_INDEX) {
2570                 for (i = IWL_RATE_MCS_0_INDEX; i <= highest_mcs; i++) {
2571                         if (i == IWL_RATE_9M_INDEX)
2572                                 continue;
2573
2574                         /* VHT MCS9 isn't valid for 20Mhz for NSS=1,2 */
2575                         if (i == IWL_RATE_MCS_9_INDEX &&
2576                             sta->bandwidth == IEEE80211_STA_RX_BW_20)
2577                                 continue;
2578
2579                         lq_sta->active_siso_rate |= BIT(i);
2580                 }
2581         }
2582
2583         if (sta->rx_nss < 2)
2584                 return;
2585
2586         highest_mcs = rs_vht_highest_rx_mcs_index(vht_cap, 2);
2587         if (highest_mcs >= IWL_RATE_MCS_0_INDEX) {
2588                 for (i = IWL_RATE_MCS_0_INDEX; i <= highest_mcs; i++) {
2589                         if (i == IWL_RATE_9M_INDEX)
2590                                 continue;
2591
2592                         /* VHT MCS9 isn't valid for 20Mhz for NSS=1,2 */
2593                         if (i == IWL_RATE_MCS_9_INDEX &&
2594                             sta->bandwidth == IEEE80211_STA_RX_BW_20)
2595                                 continue;
2596
2597                         lq_sta->active_mimo2_rate |= BIT(i);
2598                 }
2599         }
2600 }
2601
2602 #ifdef CONFIG_IWLWIFI_DEBUGFS
2603 static void iwl_mvm_reset_frame_stats(struct iwl_mvm *mvm,
2604                                       struct iwl_mvm_frame_stats *stats)
2605 {
2606         spin_lock_bh(&mvm->drv_stats_lock);
2607         memset(stats, 0, sizeof(*stats));
2608         spin_unlock_bh(&mvm->drv_stats_lock);
2609 }
2610
2611 void iwl_mvm_update_frame_stats(struct iwl_mvm *mvm,
2612                                 struct iwl_mvm_frame_stats *stats,
2613                                 u32 rate, bool agg)
2614 {
2615         u8 nss = 0, mcs = 0;
2616
2617         spin_lock(&mvm->drv_stats_lock);
2618
2619         if (agg)
2620                 stats->agg_frames++;
2621
2622         stats->success_frames++;
2623
2624         switch (rate & RATE_MCS_CHAN_WIDTH_MSK) {
2625         case RATE_MCS_CHAN_WIDTH_20:
2626                 stats->bw_20_frames++;
2627                 break;
2628         case RATE_MCS_CHAN_WIDTH_40:
2629                 stats->bw_40_frames++;
2630                 break;
2631         case RATE_MCS_CHAN_WIDTH_80:
2632                 stats->bw_80_frames++;
2633                 break;
2634         default:
2635                 WARN_ONCE(1, "bad BW. rate 0x%x", rate);
2636         }
2637
2638         if (rate & RATE_MCS_HT_MSK) {
2639                 stats->ht_frames++;
2640                 mcs = rate & RATE_HT_MCS_RATE_CODE_MSK;
2641                 nss = ((rate & RATE_HT_MCS_NSS_MSK) >> RATE_HT_MCS_NSS_POS) + 1;
2642         } else if (rate & RATE_MCS_VHT_MSK) {
2643                 stats->vht_frames++;
2644                 mcs = rate & RATE_VHT_MCS_RATE_CODE_MSK;
2645                 nss = ((rate & RATE_VHT_MCS_NSS_MSK) >>
2646                        RATE_VHT_MCS_NSS_POS) + 1;
2647         } else {
2648                 stats->legacy_frames++;
2649         }
2650
2651         if (nss == 1)
2652                 stats->siso_frames++;
2653         else if (nss == 2)
2654                 stats->mimo2_frames++;
2655
2656         if (rate & RATE_MCS_SGI_MSK)
2657                 stats->sgi_frames++;
2658         else
2659                 stats->ngi_frames++;
2660
2661         stats->last_rates[stats->last_frame_idx] = rate;
2662         stats->last_frame_idx = (stats->last_frame_idx + 1) %
2663                 ARRAY_SIZE(stats->last_rates);
2664
2665         spin_unlock(&mvm->drv_stats_lock);
2666 }
2667 #endif
2668
2669 /*
2670  * Called after adding a new station to initialize rate scaling
2671  */
2672 void iwl_mvm_rs_rate_init(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
2673                           enum ieee80211_band band, bool init)
2674 {
2675         int i, j;
2676         struct ieee80211_hw *hw = mvm->hw;
2677         struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
2678         struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap;
2679         struct iwl_mvm_sta *sta_priv;
2680         struct iwl_lq_sta *lq_sta;
2681         struct ieee80211_supported_band *sband;
2682         unsigned long supp; /* must be unsigned long for for_each_set_bit */
2683
2684         sta_priv = (struct iwl_mvm_sta *)sta->drv_priv;
2685         lq_sta = &sta_priv->lq_sta;
2686
2687         /* clear all non-persistent lq data */
2688         memset(lq_sta, 0, offsetof(typeof(*lq_sta), pers));
2689
2690         sband = hw->wiphy->bands[band];
2691
2692         lq_sta->lq.sta_id = sta_priv->sta_id;
2693
2694         for (j = 0; j < LQ_SIZE; j++)
2695                 rs_rate_scale_clear_tbl_windows(mvm, &lq_sta->lq_info[j]);
2696
2697         lq_sta->flush_timer = 0;
2698         lq_sta->last_tx = jiffies;
2699
2700         IWL_DEBUG_RATE(mvm,
2701                        "LQ: *** rate scale station global init for station %d ***\n",
2702                        sta_priv->sta_id);
2703         /* TODO: what is a good starting rate for STA? About middle? Maybe not
2704          * the lowest or the highest rate.. Could consider using RSSI from
2705          * previous packets? Need to have IEEE 802.1X auth succeed immediately
2706          * after assoc.. */
2707
2708         lq_sta->missed_rate_counter = IWL_MISSED_RATE_MAX;
2709         lq_sta->band = sband->band;
2710         /*
2711          * active legacy rates as per supported rates bitmap
2712          */
2713         supp = sta->supp_rates[sband->band];
2714         lq_sta->active_legacy_rate = 0;
2715         for_each_set_bit(i, &supp, BITS_PER_LONG)
2716                 lq_sta->active_legacy_rate |= BIT(sband->bitrates[i].hw_value);
2717
2718         /* TODO: should probably account for rx_highest for both HT/VHT */
2719         if (!vht_cap || !vht_cap->vht_supported) {
2720                 /* active_siso_rate mask includes 9 MBits (bit 5),
2721                  * and CCK (bits 0-3), supp_rates[] does not;
2722                  * shift to convert format, force 9 MBits off.
2723                  */
2724                 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2725                 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
2726                 lq_sta->active_siso_rate &= ~((u16)0x2);
2727                 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
2728
2729                 /* Same here */
2730                 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2731                 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
2732                 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2733                 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2734
2735                 lq_sta->is_vht = false;
2736                 if (mvm->cfg->ht_params->ldpc &&
2737                     (ht_cap->cap & IEEE80211_HT_CAP_LDPC_CODING))
2738                         lq_sta->ldpc = true;
2739
2740                 if (mvm->cfg->ht_params->stbc &&
2741                     (num_of_ant(mvm->fw->valid_tx_ant) > 1) &&
2742                     (ht_cap->cap & IEEE80211_HT_CAP_RX_STBC))
2743                         lq_sta->stbc = true;
2744         } else {
2745                 rs_vht_set_enabled_rates(sta, vht_cap, lq_sta);
2746                 lq_sta->is_vht = true;
2747
2748                 if (mvm->cfg->ht_params->ldpc &&
2749                     (vht_cap->cap & IEEE80211_VHT_CAP_RXLDPC))
2750                         lq_sta->ldpc = true;
2751
2752                 if (mvm->cfg->ht_params->stbc &&
2753                     (num_of_ant(mvm->fw->valid_tx_ant) > 1) &&
2754                     (vht_cap->cap & IEEE80211_VHT_CAP_RXSTBC_MASK))
2755                         lq_sta->stbc = true;
2756         }
2757
2758         if (IWL_MVM_RS_DISABLE_MIMO)
2759                 lq_sta->active_mimo2_rate = 0;
2760
2761         lq_sta->max_legacy_rate_idx = find_last_bit(&lq_sta->active_legacy_rate,
2762                                                     BITS_PER_LONG);
2763         lq_sta->max_siso_rate_idx = find_last_bit(&lq_sta->active_siso_rate,
2764                                                   BITS_PER_LONG);
2765         lq_sta->max_mimo2_rate_idx = find_last_bit(&lq_sta->active_mimo2_rate,
2766                                                    BITS_PER_LONG);
2767
2768         IWL_DEBUG_RATE(mvm,
2769                        "RATE MASK: LEGACY=%lX SISO=%lX MIMO2=%lX VHT=%d LDPC=%d STBC%d\n",
2770                        lq_sta->active_legacy_rate,
2771                        lq_sta->active_siso_rate,
2772                        lq_sta->active_mimo2_rate,
2773                        lq_sta->is_vht, lq_sta->ldpc, lq_sta->stbc);
2774         IWL_DEBUG_RATE(mvm, "MAX RATE: LEGACY=%d SISO=%d MIMO2=%d\n",
2775                        lq_sta->max_legacy_rate_idx,
2776                        lq_sta->max_siso_rate_idx,
2777                        lq_sta->max_mimo2_rate_idx);
2778
2779         /* These values will be overridden later */
2780         lq_sta->lq.single_stream_ant_msk =
2781                 first_antenna(mvm->fw->valid_tx_ant);
2782         lq_sta->lq.dual_stream_ant_msk = ANT_AB;
2783
2784         /* as default allow aggregation for all tids */
2785         lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
2786         lq_sta->is_agg = 0;
2787 #ifdef CONFIG_IWLWIFI_DEBUGFS
2788         iwl_mvm_reset_frame_stats(mvm, &mvm->drv_rx_stats);
2789 #endif
2790         rs_initialize_lq(mvm, sta, lq_sta, band, init);
2791 }
2792
2793 static void rs_rate_update(void *mvm_r,
2794                            struct ieee80211_supported_band *sband,
2795                            struct cfg80211_chan_def *chandef,
2796                            struct ieee80211_sta *sta, void *priv_sta,
2797                            u32 changed)
2798 {
2799         u8 tid;
2800         struct iwl_op_mode *op_mode  =
2801                         (struct iwl_op_mode *)mvm_r;
2802         struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
2803
2804         /* Stop any ongoing aggregations as rs starts off assuming no agg */
2805         for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++)
2806                 ieee80211_stop_tx_ba_session(sta, tid);
2807
2808         iwl_mvm_rs_rate_init(mvm, sta, sband->band, false);
2809 }
2810
2811 #ifdef CONFIG_MAC80211_DEBUGFS
2812 static void rs_build_rates_table_from_fixed(struct iwl_mvm *mvm,
2813                                             struct iwl_lq_cmd *lq_cmd,
2814                                             enum ieee80211_band band,
2815                                             u32 ucode_rate)
2816 {
2817         struct rs_rate rate;
2818         int i;
2819         int num_rates = ARRAY_SIZE(lq_cmd->rs_table);
2820         __le32 ucode_rate_le32 = cpu_to_le32(ucode_rate);
2821         u8 ant = (ucode_rate & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS;
2822
2823         for (i = 0; i < num_rates; i++)
2824                 lq_cmd->rs_table[i] = ucode_rate_le32;
2825
2826         rs_rate_from_ucode_rate(ucode_rate, band, &rate);
2827
2828         if (is_mimo(&rate))
2829                 lq_cmd->mimo_delim = num_rates - 1;
2830         else
2831                 lq_cmd->mimo_delim = 0;
2832
2833         lq_cmd->reduced_tpc = 0;
2834
2835         if (num_of_ant(ant) == 1)
2836                 lq_cmd->single_stream_ant_msk = ant;
2837
2838         lq_cmd->agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
2839 }
2840 #endif /* CONFIG_MAC80211_DEBUGFS */
2841
2842 static void rs_fill_rates_for_column(struct iwl_mvm *mvm,
2843                                      struct iwl_lq_sta *lq_sta,
2844                                      struct rs_rate *rate,
2845                                      __le32 *rs_table, int *rs_table_index,
2846                                      int num_rates, int num_retries,
2847                                      u8 valid_tx_ant, bool toggle_ant)
2848 {
2849         int i, j;
2850         __le32 ucode_rate;
2851         bool bottom_reached = false;
2852         int prev_rate_idx = rate->index;
2853         int end = LINK_QUAL_MAX_RETRY_NUM;
2854         int index = *rs_table_index;
2855
2856         for (i = 0; i < num_rates && index < end; i++) {
2857                 ucode_rate = cpu_to_le32(ucode_rate_from_rs_rate(mvm, rate));
2858                 for (j = 0; j < num_retries && index < end; j++, index++)
2859                         rs_table[index] = ucode_rate;
2860
2861                 if (toggle_ant)
2862                         rs_toggle_antenna(valid_tx_ant, rate);
2863
2864                 prev_rate_idx = rate->index;
2865                 bottom_reached = rs_get_lower_rate_in_column(lq_sta, rate);
2866                 if (bottom_reached && !is_legacy(rate))
2867                         break;
2868         }
2869
2870         if (!bottom_reached)
2871                 rate->index = prev_rate_idx;
2872
2873         *rs_table_index = index;
2874 }
2875
2876 /* Building the rate table is non trivial. When we're in MIMO2/VHT/80Mhz/SGI
2877  * column the rate table should look like this:
2878  *
2879  * rate[0] 0x400D019 VHT | ANT: AB BW: 80Mhz MCS: 9 NSS: 2 SGI
2880  * rate[1] 0x400D019 VHT | ANT: AB BW: 80Mhz MCS: 9 NSS: 2 SGI
2881  * rate[2] 0x400D018 VHT | ANT: AB BW: 80Mhz MCS: 8 NSS: 2 SGI
2882  * rate[3] 0x400D018 VHT | ANT: AB BW: 80Mhz MCS: 8 NSS: 2 SGI
2883  * rate[4] 0x400D017 VHT | ANT: AB BW: 80Mhz MCS: 7 NSS: 2 SGI
2884  * rate[5] 0x400D017 VHT | ANT: AB BW: 80Mhz MCS: 7 NSS: 2 SGI
2885  * rate[6] 0x4005007 VHT | ANT: A BW: 80Mhz MCS: 7 NSS: 1 NGI
2886  * rate[7] 0x4009006 VHT | ANT: B BW: 80Mhz MCS: 6 NSS: 1 NGI
2887  * rate[8] 0x4005005 VHT | ANT: A BW: 80Mhz MCS: 5 NSS: 1 NGI
2888  * rate[9] 0x800B Legacy | ANT: B Rate: 36 Mbps
2889  * rate[10] 0x4009 Legacy | ANT: A Rate: 24 Mbps
2890  * rate[11] 0x8007 Legacy | ANT: B Rate: 18 Mbps
2891  * rate[12] 0x4005 Legacy | ANT: A Rate: 12 Mbps
2892  * rate[13] 0x800F Legacy | ANT: B Rate: 9 Mbps
2893  * rate[14] 0x400D Legacy | ANT: A Rate: 6 Mbps
2894  * rate[15] 0x800D Legacy | ANT: B Rate: 6 Mbps
2895  */
2896 static void rs_build_rates_table(struct iwl_mvm *mvm,
2897                                  struct ieee80211_sta *sta,
2898                                  struct iwl_lq_sta *lq_sta,
2899                                  const struct rs_rate *initial_rate)
2900 {
2901         struct rs_rate rate;
2902         int num_rates, num_retries, index = 0;
2903         u8 valid_tx_ant = 0;
2904         struct iwl_lq_cmd *lq_cmd = &lq_sta->lq;
2905         bool toggle_ant = false;
2906
2907         memcpy(&rate, initial_rate, sizeof(rate));
2908
2909         valid_tx_ant = mvm->fw->valid_tx_ant;
2910         rate.stbc = rs_stbc_allow(mvm, sta, lq_sta);
2911
2912         if (is_siso(&rate)) {
2913                 num_rates = RS_INITIAL_SISO_NUM_RATES;
2914                 num_retries = RS_HT_VHT_RETRIES_PER_RATE;
2915         } else if (is_mimo(&rate)) {
2916                 num_rates = RS_INITIAL_MIMO_NUM_RATES;
2917                 num_retries = RS_HT_VHT_RETRIES_PER_RATE;
2918         } else {
2919                 num_rates = RS_INITIAL_LEGACY_NUM_RATES;
2920                 num_retries = RS_LEGACY_RETRIES_PER_RATE;
2921                 toggle_ant = true;
2922         }
2923
2924         rs_fill_rates_for_column(mvm, lq_sta, &rate, lq_cmd->rs_table, &index,
2925                                  num_rates, num_retries, valid_tx_ant,
2926                                  toggle_ant);
2927
2928         rs_get_lower_rate_down_column(lq_sta, &rate);
2929
2930         if (is_siso(&rate)) {
2931                 num_rates = RS_SECONDARY_SISO_NUM_RATES;
2932                 num_retries = RS_SECONDARY_SISO_RETRIES;
2933                 lq_cmd->mimo_delim = index;
2934         } else if (is_legacy(&rate)) {
2935                 num_rates = RS_SECONDARY_LEGACY_NUM_RATES;
2936                 num_retries = RS_LEGACY_RETRIES_PER_RATE;
2937         } else {
2938                 WARN_ON_ONCE(1);
2939         }
2940
2941         toggle_ant = true;
2942
2943         rs_fill_rates_for_column(mvm, lq_sta, &rate, lq_cmd->rs_table, &index,
2944                                  num_rates, num_retries, valid_tx_ant,
2945                                  toggle_ant);
2946
2947         rs_get_lower_rate_down_column(lq_sta, &rate);
2948
2949         num_rates = RS_SECONDARY_LEGACY_NUM_RATES;
2950         num_retries = RS_LEGACY_RETRIES_PER_RATE;
2951
2952         rs_fill_rates_for_column(mvm, lq_sta, &rate, lq_cmd->rs_table, &index,
2953                                  num_rates, num_retries, valid_tx_ant,
2954                                  toggle_ant);
2955
2956 }
2957
2958 static void rs_fill_lq_cmd(struct iwl_mvm *mvm,
2959                            struct ieee80211_sta *sta,
2960                            struct iwl_lq_sta *lq_sta,
2961                            const struct rs_rate *initial_rate)
2962 {
2963         struct iwl_lq_cmd *lq_cmd = &lq_sta->lq;
2964         struct iwl_mvm_sta *mvmsta;
2965         struct iwl_mvm_vif *mvmvif;
2966
2967         lq_cmd->agg_disable_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2968         lq_cmd->agg_time_limit =
2969                 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
2970
2971 #ifdef CONFIG_MAC80211_DEBUGFS
2972         if (lq_sta->pers.dbg_fixed_rate) {
2973                 rs_build_rates_table_from_fixed(mvm, lq_cmd,
2974                                                 lq_sta->band,
2975                                                 lq_sta->pers.dbg_fixed_rate);
2976                 return;
2977         }
2978 #endif
2979         if (WARN_ON_ONCE(!sta || !initial_rate))
2980                 return;
2981
2982         rs_build_rates_table(mvm, sta, lq_sta, initial_rate);
2983
2984         if (num_of_ant(initial_rate->ant) == 1)
2985                 lq_cmd->single_stream_ant_msk = initial_rate->ant;
2986
2987         mvmsta = iwl_mvm_sta_from_mac80211(sta);
2988         mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
2989
2990         if (num_of_ant(initial_rate->ant) == 1)
2991                 lq_cmd->single_stream_ant_msk = initial_rate->ant;
2992
2993         lq_cmd->agg_frame_cnt_limit = mvmsta->max_agg_bufsize;
2994
2995         /*
2996          * In case of low latency, tell the firwmare to leave a frame in the
2997          * Tx Fifo so that it can start a transaction in the same TxOP. This
2998          * basically allows the firmware to send bursts.
2999          */
3000         if (iwl_mvm_vif_low_latency(mvmvif)) {
3001                 lq_cmd->agg_frame_cnt_limit--;
3002
3003                 if (mvm->low_latency_agg_frame_limit)
3004                         lq_cmd->agg_frame_cnt_limit =
3005                                 min(lq_cmd->agg_frame_cnt_limit,
3006                                     mvm->low_latency_agg_frame_limit);
3007         }
3008
3009         if (mvmsta->vif->p2p)
3010                 lq_cmd->flags |= LQ_FLAG_USE_RTS_MSK;
3011
3012         lq_cmd->agg_time_limit =
3013                         cpu_to_le16(iwl_mvm_coex_agg_time_limit(mvm, sta));
3014 }
3015
3016 static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
3017 {
3018         return hw->priv;
3019 }
3020 /* rate scale requires free function to be implemented */
3021 static void rs_free(void *mvm_rate)
3022 {
3023         return;
3024 }
3025
3026 static void rs_free_sta(void *mvm_r, struct ieee80211_sta *sta,
3027                         void *mvm_sta)
3028 {
3029         struct iwl_op_mode *op_mode __maybe_unused = mvm_r;
3030         struct iwl_mvm *mvm __maybe_unused = IWL_OP_MODE_GET_MVM(op_mode);
3031
3032         IWL_DEBUG_RATE(mvm, "enter\n");
3033         IWL_DEBUG_RATE(mvm, "leave\n");
3034 }
3035
3036 #ifdef CONFIG_MAC80211_DEBUGFS
3037 int rs_pretty_print_rate(char *buf, const u32 rate)
3038 {
3039
3040         char *type, *bw;
3041         u8 mcs = 0, nss = 0;
3042         u8 ant = (rate & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS;
3043
3044         if (!(rate & RATE_MCS_HT_MSK) &&
3045             !(rate & RATE_MCS_VHT_MSK)) {
3046                 int index = iwl_hwrate_to_plcp_idx(rate);
3047
3048                 return sprintf(buf, "Legacy | ANT: %s Rate: %s Mbps\n",
3049                                rs_pretty_ant(ant),
3050                                index == IWL_RATE_INVALID ? "BAD" :
3051                                iwl_rate_mcs[index].mbps);
3052         }
3053
3054         if (rate & RATE_MCS_VHT_MSK) {
3055                 type = "VHT";
3056                 mcs = rate & RATE_VHT_MCS_RATE_CODE_MSK;
3057                 nss = ((rate & RATE_VHT_MCS_NSS_MSK)
3058                        >> RATE_VHT_MCS_NSS_POS) + 1;
3059         } else if (rate & RATE_MCS_HT_MSK) {
3060                 type = "HT";
3061                 mcs = rate & RATE_HT_MCS_INDEX_MSK;
3062         } else {
3063                 type = "Unknown"; /* shouldn't happen */
3064         }
3065
3066         switch (rate & RATE_MCS_CHAN_WIDTH_MSK) {
3067         case RATE_MCS_CHAN_WIDTH_20:
3068                 bw = "20Mhz";
3069                 break;
3070         case RATE_MCS_CHAN_WIDTH_40:
3071                 bw = "40Mhz";
3072                 break;
3073         case RATE_MCS_CHAN_WIDTH_80:
3074                 bw = "80Mhz";
3075                 break;
3076         case RATE_MCS_CHAN_WIDTH_160:
3077                 bw = "160Mhz";
3078                 break;
3079         default:
3080                 bw = "BAD BW";
3081         }
3082
3083         return sprintf(buf, "%s | ANT: %s BW: %s MCS: %d NSS: %d %s%s%s%s%s\n",
3084                        type, rs_pretty_ant(ant), bw, mcs, nss,
3085                        (rate & RATE_MCS_SGI_MSK) ? "SGI " : "NGI ",
3086                        (rate & RATE_MCS_HT_STBC_MSK) ? "STBC " : "",
3087                        (rate & RATE_MCS_LDPC_MSK) ? "LDPC " : "",
3088                        (rate & RATE_MCS_BF_MSK) ? "BF " : "",
3089                        (rate & RATE_MCS_ZLF_MSK) ? "ZLF " : "");
3090 }
3091
3092 /**
3093  * Program the device to use fixed rate for frame transmit
3094  * This is for debugging/testing only
3095  * once the device start use fixed rate, we need to reload the module
3096  * to being back the normal operation.
3097  */
3098 static void rs_program_fix_rate(struct iwl_mvm *mvm,
3099                                 struct iwl_lq_sta *lq_sta)
3100 {
3101         lq_sta->active_legacy_rate = 0x0FFF;    /* 1 - 54 MBits, includes CCK */
3102         lq_sta->active_siso_rate   = 0x1FD0;    /* 6 - 60 MBits, no 9, no CCK */
3103         lq_sta->active_mimo2_rate  = 0x1FD0;    /* 6 - 60 MBits, no 9, no CCK */
3104
3105         IWL_DEBUG_RATE(mvm, "sta_id %d rate 0x%X\n",
3106                        lq_sta->lq.sta_id, lq_sta->pers.dbg_fixed_rate);
3107
3108         if (lq_sta->pers.dbg_fixed_rate) {
3109                 rs_fill_lq_cmd(mvm, NULL, lq_sta, NULL);
3110                 iwl_mvm_send_lq_cmd(lq_sta->pers.drv, &lq_sta->lq, false);
3111         }
3112 }
3113
3114 static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
3115                         const char __user *user_buf, size_t count, loff_t *ppos)
3116 {
3117         struct iwl_lq_sta *lq_sta = file->private_data;
3118         struct iwl_mvm *mvm;
3119         char buf[64];
3120         size_t buf_size;
3121         u32 parsed_rate;
3122
3123         mvm = lq_sta->pers.drv;
3124         memset(buf, 0, sizeof(buf));
3125         buf_size = min(count, sizeof(buf) -  1);
3126         if (copy_from_user(buf, user_buf, buf_size))
3127                 return -EFAULT;
3128
3129         if (sscanf(buf, "%x", &parsed_rate) == 1)
3130                 lq_sta->pers.dbg_fixed_rate = parsed_rate;
3131         else
3132                 lq_sta->pers.dbg_fixed_rate = 0;
3133
3134         rs_program_fix_rate(mvm, lq_sta);
3135
3136         return count;
3137 }
3138
3139 static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
3140                         char __user *user_buf, size_t count, loff_t *ppos)
3141 {
3142         char *buff;
3143         int desc = 0;
3144         int i = 0;
3145         ssize_t ret;
3146
3147         struct iwl_lq_sta *lq_sta = file->private_data;
3148         struct iwl_mvm *mvm;
3149         struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
3150         struct rs_rate *rate = &tbl->rate;
3151         mvm = lq_sta->pers.drv;
3152         buff = kmalloc(2048, GFP_KERNEL);
3153         if (!buff)
3154                 return -ENOMEM;
3155
3156         desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
3157         desc += sprintf(buff+desc, "failed=%d success=%d rate=0%lX\n",
3158                         lq_sta->total_failed, lq_sta->total_success,
3159                         lq_sta->active_legacy_rate);
3160         desc += sprintf(buff+desc, "fixed rate 0x%X\n",
3161                         lq_sta->pers.dbg_fixed_rate);
3162         desc += sprintf(buff+desc, "valid_tx_ant %s%s%s\n",
3163             (mvm->fw->valid_tx_ant & ANT_A) ? "ANT_A," : "",
3164             (mvm->fw->valid_tx_ant & ANT_B) ? "ANT_B," : "",
3165             (mvm->fw->valid_tx_ant & ANT_C) ? "ANT_C" : "");
3166         desc += sprintf(buff+desc, "lq type %s\n",
3167                         (is_legacy(rate)) ? "legacy" :
3168                         is_vht(rate) ? "VHT" : "HT");
3169         if (!is_legacy(rate)) {
3170                 desc += sprintf(buff+desc, " %s",
3171                    (is_siso(rate)) ? "SISO" : "MIMO2");
3172                    desc += sprintf(buff+desc, " %s",
3173                                    (is_ht20(rate)) ? "20MHz" :
3174                                    (is_ht40(rate)) ? "40MHz" :
3175                                    (is_ht80(rate)) ? "80Mhz" : "BAD BW");
3176                    desc += sprintf(buff+desc, " %s %s %s\n",
3177                                    (rate->sgi) ? "SGI" : "NGI",
3178                                    (rate->ldpc) ? "LDPC" : "BCC",
3179                                    (lq_sta->is_agg) ? "AGG on" : "");
3180         }
3181         desc += sprintf(buff+desc, "last tx rate=0x%X\n",
3182                         lq_sta->last_rate_n_flags);
3183         desc += sprintf(buff+desc,
3184                         "general: flags=0x%X mimo-d=%d s-ant=0x%x d-ant=0x%x\n",
3185                         lq_sta->lq.flags,
3186                         lq_sta->lq.mimo_delim,
3187                         lq_sta->lq.single_stream_ant_msk,
3188                         lq_sta->lq.dual_stream_ant_msk);
3189
3190         desc += sprintf(buff+desc,
3191                         "agg: time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
3192                         le16_to_cpu(lq_sta->lq.agg_time_limit),
3193                         lq_sta->lq.agg_disable_start_th,
3194                         lq_sta->lq.agg_frame_cnt_limit);
3195
3196         desc += sprintf(buff+desc, "reduced tpc=%d\n", lq_sta->lq.reduced_tpc);
3197         desc += sprintf(buff+desc,
3198                         "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
3199                         lq_sta->lq.initial_rate_index[0],
3200                         lq_sta->lq.initial_rate_index[1],
3201                         lq_sta->lq.initial_rate_index[2],
3202                         lq_sta->lq.initial_rate_index[3]);
3203
3204         for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
3205                 u32 r = le32_to_cpu(lq_sta->lq.rs_table[i]);
3206
3207                 desc += sprintf(buff+desc, " rate[%d] 0x%X ", i, r);
3208                 desc += rs_pretty_print_rate(buff+desc, r);
3209         }
3210
3211         ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3212         kfree(buff);
3213         return ret;
3214 }
3215
3216 static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
3217         .write = rs_sta_dbgfs_scale_table_write,
3218         .read = rs_sta_dbgfs_scale_table_read,
3219         .open = simple_open,
3220         .llseek = default_llseek,
3221 };
3222 static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
3223                         char __user *user_buf, size_t count, loff_t *ppos)
3224 {
3225         char *buff;
3226         int desc = 0;
3227         int i, j;
3228         ssize_t ret;
3229         struct iwl_scale_tbl_info *tbl;
3230         struct rs_rate *rate;
3231         struct iwl_lq_sta *lq_sta = file->private_data;
3232
3233         buff = kmalloc(1024, GFP_KERNEL);
3234         if (!buff)
3235                 return -ENOMEM;
3236
3237         for (i = 0; i < LQ_SIZE; i++) {
3238                 tbl = &(lq_sta->lq_info[i]);
3239                 rate = &tbl->rate;
3240                 desc += sprintf(buff+desc,
3241                                 "%s type=%d SGI=%d BW=%s DUP=0\n"
3242                                 "index=%d\n",
3243                                 lq_sta->active_tbl == i ? "*" : "x",
3244                                 rate->type,
3245                                 rate->sgi,
3246                                 is_ht20(rate) ? "20Mhz" :
3247                                 is_ht40(rate) ? "40Mhz" :
3248                                 is_ht80(rate) ? "80Mhz" : "ERR",
3249                                 rate->index);
3250                 for (j = 0; j < IWL_RATE_COUNT; j++) {
3251                         desc += sprintf(buff+desc,
3252                                 "counter=%d success=%d %%=%d\n",
3253                                 tbl->win[j].counter,
3254                                 tbl->win[j].success_counter,
3255                                 tbl->win[j].success_ratio);
3256                 }
3257         }
3258         ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3259         kfree(buff);
3260         return ret;
3261 }
3262
3263 static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
3264         .read = rs_sta_dbgfs_stats_table_read,
3265         .open = simple_open,
3266         .llseek = default_llseek,
3267 };
3268
3269 static ssize_t rs_sta_dbgfs_drv_tx_stats_read(struct file *file,
3270                                               char __user *user_buf,
3271                                               size_t count, loff_t *ppos)
3272 {
3273         static const char * const column_name[] = {
3274                 [RS_COLUMN_LEGACY_ANT_A] = "LEGACY_ANT_A",
3275                 [RS_COLUMN_LEGACY_ANT_B] = "LEGACY_ANT_B",
3276                 [RS_COLUMN_SISO_ANT_A] = "SISO_ANT_A",
3277                 [RS_COLUMN_SISO_ANT_B] = "SISO_ANT_B",
3278                 [RS_COLUMN_SISO_ANT_A_SGI] = "SISO_ANT_A_SGI",
3279                 [RS_COLUMN_SISO_ANT_B_SGI] = "SISO_ANT_B_SGI",
3280                 [RS_COLUMN_MIMO2] = "MIMO2",
3281                 [RS_COLUMN_MIMO2_SGI] = "MIMO2_SGI",
3282         };
3283
3284         static const char * const rate_name[] = {
3285                 [IWL_RATE_1M_INDEX] = "1M",
3286                 [IWL_RATE_2M_INDEX] = "2M",
3287                 [IWL_RATE_5M_INDEX] = "5.5M",
3288                 [IWL_RATE_11M_INDEX] = "11M",
3289                 [IWL_RATE_6M_INDEX] = "6M|MCS0",
3290                 [IWL_RATE_9M_INDEX] = "9M",
3291                 [IWL_RATE_12M_INDEX] = "12M|MCS1",
3292                 [IWL_RATE_18M_INDEX] = "18M|MCS2",
3293                 [IWL_RATE_24M_INDEX] = "24M|MCS3",
3294                 [IWL_RATE_36M_INDEX] = "36M|MCS4",
3295                 [IWL_RATE_48M_INDEX] = "48M|MCS5",
3296                 [IWL_RATE_54M_INDEX] = "54M|MCS6",
3297                 [IWL_RATE_MCS_7_INDEX] = "MCS7",
3298                 [IWL_RATE_MCS_8_INDEX] = "MCS8",
3299                 [IWL_RATE_MCS_9_INDEX] = "MCS9",
3300         };
3301
3302         char *buff, *pos, *endpos;
3303         int col, rate;
3304         ssize_t ret;
3305         struct iwl_lq_sta *lq_sta = file->private_data;
3306         struct rs_rate_stats *stats;
3307         static const size_t bufsz = 1024;
3308
3309         buff = kmalloc(bufsz, GFP_KERNEL);
3310         if (!buff)
3311                 return -ENOMEM;
3312
3313         pos = buff;
3314         endpos = pos + bufsz;
3315
3316         pos += scnprintf(pos, endpos - pos, "COLUMN,");
3317         for (rate = 0; rate < IWL_RATE_COUNT; rate++)
3318                 pos += scnprintf(pos, endpos - pos, "%s,", rate_name[rate]);
3319         pos += scnprintf(pos, endpos - pos, "\n");
3320
3321         for (col = 0; col < RS_COLUMN_COUNT; col++) {
3322                 pos += scnprintf(pos, endpos - pos,
3323                                  "%s,", column_name[col]);
3324
3325                 for (rate = 0; rate < IWL_RATE_COUNT; rate++) {
3326                         stats = &(lq_sta->pers.tx_stats[col][rate]);
3327                         pos += scnprintf(pos, endpos - pos,
3328                                          "%llu/%llu,",
3329                                          stats->success,
3330                                          stats->total);
3331                 }
3332                 pos += scnprintf(pos, endpos - pos, "\n");
3333         }
3334
3335         ret = simple_read_from_buffer(user_buf, count, ppos, buff, pos - buff);
3336         kfree(buff);
3337         return ret;
3338 }
3339
3340 static ssize_t rs_sta_dbgfs_drv_tx_stats_write(struct file *file,
3341                                                const char __user *user_buf,
3342                                                size_t count, loff_t *ppos)
3343 {
3344         struct iwl_lq_sta *lq_sta = file->private_data;
3345         memset(lq_sta->pers.tx_stats, 0, sizeof(lq_sta->pers.tx_stats));
3346
3347         return count;
3348 }
3349
3350 static const struct file_operations rs_sta_dbgfs_drv_tx_stats_ops = {
3351         .read = rs_sta_dbgfs_drv_tx_stats_read,
3352         .write = rs_sta_dbgfs_drv_tx_stats_write,
3353         .open = simple_open,
3354         .llseek = default_llseek,
3355 };
3356
3357 static void rs_add_debugfs(void *mvm, void *mvm_sta, struct dentry *dir)
3358 {
3359         struct iwl_lq_sta *lq_sta = mvm_sta;
3360         debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
3361                             lq_sta, &rs_sta_dbgfs_scale_table_ops);
3362         debugfs_create_file("rate_stats_table", S_IRUSR, dir,
3363                             lq_sta, &rs_sta_dbgfs_stats_table_ops);
3364         debugfs_create_file("drv_tx_stats", S_IRUSR | S_IWUSR, dir,
3365                             lq_sta, &rs_sta_dbgfs_drv_tx_stats_ops);
3366         debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
3367                           &lq_sta->tx_agg_tid_en);
3368         debugfs_create_u8("reduced_tpc", S_IRUSR | S_IWUSR, dir,
3369                           &lq_sta->pers.dbg_fixed_txp_reduction);
3370 }
3371
3372 static void rs_remove_debugfs(void *mvm, void *mvm_sta)
3373 {
3374 }
3375 #endif
3376
3377 /*
3378  * Initialization of rate scaling information is done by driver after
3379  * the station is added. Since mac80211 calls this function before a
3380  * station is added we ignore it.
3381  */
3382 static void rs_rate_init_stub(void *mvm_r,
3383                               struct ieee80211_supported_band *sband,
3384                               struct cfg80211_chan_def *chandef,
3385                               struct ieee80211_sta *sta, void *mvm_sta)
3386 {
3387 }
3388
3389 static const struct rate_control_ops rs_mvm_ops = {
3390         .name = RS_NAME,
3391         .tx_status = rs_mac80211_tx_status,
3392         .get_rate = rs_get_rate,
3393         .rate_init = rs_rate_init_stub,
3394         .alloc = rs_alloc,
3395         .free = rs_free,
3396         .alloc_sta = rs_alloc_sta,
3397         .free_sta = rs_free_sta,
3398         .rate_update = rs_rate_update,
3399 #ifdef CONFIG_MAC80211_DEBUGFS
3400         .add_sta_debugfs = rs_add_debugfs,
3401         .remove_sta_debugfs = rs_remove_debugfs,
3402 #endif
3403 };
3404
3405 int iwl_mvm_rate_control_register(void)
3406 {
3407         return ieee80211_rate_control_register(&rs_mvm_ops);
3408 }
3409
3410 void iwl_mvm_rate_control_unregister(void)
3411 {
3412         ieee80211_rate_control_unregister(&rs_mvm_ops);
3413 }
3414
3415 /**
3416  * iwl_mvm_tx_protection - Gets LQ command, change it to enable/disable
3417  * Tx protection, according to this rquest and previous requests,
3418  * and send the LQ command.
3419  * @mvmsta: The station
3420  * @enable: Enable Tx protection?
3421  */
3422 int iwl_mvm_tx_protection(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta,
3423                           bool enable)
3424 {
3425         struct iwl_lq_cmd *lq = &mvmsta->lq_sta.lq;
3426
3427         lockdep_assert_held(&mvm->mutex);
3428
3429         if (enable) {
3430                 if (mvmsta->tx_protection == 0)
3431                         lq->flags |= LQ_FLAG_USE_RTS_MSK;
3432                 mvmsta->tx_protection++;
3433         } else {
3434                 mvmsta->tx_protection--;
3435                 if (mvmsta->tx_protection == 0)
3436                         lq->flags &= ~LQ_FLAG_USE_RTS_MSK;
3437         }
3438
3439         return iwl_mvm_send_lq_cmd(mvm, lq, false);
3440 }